diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e3d6620..b4a2078 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,10 +2,14 @@ name: Tests on: push: - branches-ignore: [main] + branches: [main] pull_request: branches: [main] +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} + cancel-in-progress: true + jobs: test: runs-on: ubuntu-latest diff --git a/bible/migrations/0003_add_translation_field.py b/bible/migrations/0003_add_translation_field.py new file mode 100644 index 0000000..b60f025 --- /dev/null +++ b/bible/migrations/0003_add_translation_field.py @@ -0,0 +1,40 @@ +# Generated by Django 6.0.7 on 2026-07-30 20:26 + +from django.db import migrations, models + + +def backfill_translations(apps, schema_editor): + # AddField's default only gives every existing row 'kjv' -- correct for + # the English rows, wrong for Romanian/Serbian, which were never KJV. + Verse = apps.get_model('bible', 'Verse') + Verse.objects.filter(language='ro').update(translation='rccv') + Verse.objects.filter(language='sr').update(translation='srp1865') + + +def unbackfill_translations(apps, schema_editor): + Verse = apps.get_model('bible', 'Verse') + Verse.objects.filter(language__in=('ro', 'sr')).update(translation='kjv') + + +class Migration(migrations.Migration): + + dependencies = [ + ('bible', '0002_load_scriptures'), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='verse', + unique_together=set(), + ), + migrations.AddField( + model_name='verse', + name='translation', + field=models.CharField(default='kjv', max_length=20), + ), + migrations.RunPython(backfill_translations, unbackfill_translations), + migrations.AlterUniqueTogether( + name='verse', + unique_together={('book', 'chapter', 'verse', 'language', 'translation')}, + ), + ] diff --git a/bible/migrations/0004_load_lxx2012_web.py b/bible/migrations/0004_load_lxx2012_web.py new file mode 100644 index 0000000..8b03997 --- /dev/null +++ b/bible/migrations/0004_load_lxx2012_web.py @@ -0,0 +1,46 @@ +from django.db import migrations + +from bible.parse import parse_usfx + +TRANSLATION = 'lxx2012-web' + +# Only these WEB books are used -- the rest of that file is WEB's own OT and +# Deuterocanon, which we don't want here since LXX2012 supplies the OT half +# of this pairing instead. +NT_BOOKS = { + 'MAT', 'MRK', 'LUK', 'JHN', 'ACT', 'ROM', '1CO', '2CO', 'GAL', 'EPH', + 'PHP', 'COL', '1TH', '2TH', '1TI', '2TI', 'TIT', 'PHM', 'HEB', 'JAS', + '1PE', '2PE', '1JN', '2JN', '3JN', 'JUD', 'REV', +} + + +def load_lxx2012_web(apps, schema_editor): + Verse = apps.get_model('bible', 'Verse') + + for verse in parse_usfx('data/eng-lxx2012_usfx.xml'): + if verse['chapter'] is None or verse['verse'] is None: + continue + Verse.objects.create(language='en', translation=TRANSLATION, **verse) + + for verse in parse_usfx('data/eng-web_usfx.xml'): + if verse['book'] not in NT_BOOKS: + continue + if verse['chapter'] is None or verse['verse'] is None: + continue + Verse.objects.create(language='en', translation=TRANSLATION, **verse) + + +def unload_lxx2012_web(apps, schema_editor): + Verse = apps.get_model('bible', 'Verse') + Verse.objects.filter(translation=TRANSLATION).delete() + + +class Migration(migrations.Migration): + + dependencies = [ + ('bible', '0003_add_translation_field'), + ] + + operations = [ + migrations.RunPython(load_lxx2012_web, unload_lxx2012_web), + ] diff --git a/bible/models.py b/bible/models.py index e842a01..275c6f6 100644 --- a/bible/models.py +++ b/bible/models.py @@ -18,8 +18,21 @@ class ReferenceParseError(Exception): pass +# The translation used when a caller doesn't specify one -- keeps every +# existing call site (which predates the translation field) resolving to +# exactly the same rows as before, per language. +DEFAULT_TRANSLATIONS = { + 'en': 'kjv', + 'ro': 'rccv', + 'sr': 'srp1865', +} + + class VerseManager(models.Manager): - def lookup_reference(self, reference, language='en'): + def lookup_reference(self, reference, language='en', translation=None): + if translation is None: + translation = DEFAULT_TRANSLATIONS[language] + conditionals = [] book = '' @@ -77,7 +90,7 @@ def lookup_reference(self, reference, language='en'): # Run the query expression = functools.reduce(operator.or_, conditionals) - return self.filter(language=language).filter(expression) + return self.filter(language=language, translation=translation).filter(expression) class Verse(models.Model): @@ -87,11 +100,12 @@ class Verse(models.Model): content = models.TextField() paragraph_start = models.BooleanField(default=False) language = models.CharField(max_length=10) + translation = models.CharField(max_length=20, default='kjv') objects = VerseManager() class Meta: - unique_together = 'book', 'chapter', 'verse', 'language' + unique_together = 'book', 'chapter', 'verse', 'language', 'translation' def __str__(self): blurb = textwrap.shorten(self.content, width=20, placeholder='...') diff --git a/bible/parse.py b/bible/parse.py index 597c9d3..59ac31d 100644 --- a/bible/parse.py +++ b/bible/parse.py @@ -8,6 +8,7 @@ def parse_usfx(filename): book, chapter, verse = None, None, None paragraph_start = False is_valid_content = False + was_valid_content = False strings = [] def make_verse(): @@ -59,6 +60,12 @@ def make_verse(): yield make_verse() verse = node.getAttribute('id') + if verse and '-' in verse: + # A verse bridge (e.g. "1-2"), where the source merges + # two verses into one printed unit -- store it under the + # first number rather than failing to parse an int; the + # combined text is already all in this one entry. + verse = verse.split('-')[0] is_valid_content = True case [pulldom.START_ELEMENT, 've']: yield make_verse() @@ -67,11 +74,20 @@ def make_verse(): case [pulldom.START_ELEMENT, 'p']: paragraph_start = True - # Footnote Element - case [pulldom.START_ELEMENT, 'f']: + # Footnote and cross-reference elements -- (cross-reference, + # e.g. WEB's "11:33 Daniel 6:22-23" pointing back to an OT + # parallel) is structurally the same kind of aside as + # (footnote), so it needs the same is_valid_content suppression; + # without it, the reference text gets appended straight into the + # verse content. + case [pulldom.START_ELEMENT, 'f' | 'x']: + was_valid_content = is_valid_content is_valid_content = False - case [pulldom.END_ELEMENT, 'f']: - is_valid_content = True + case [pulldom.END_ELEMENT, 'f' | 'x']: + # Restore whatever was in effect before the aside rather than + # assuming True -- these can appear in content (like Psalm + # title blocks) that isn't part of a verse. + is_valid_content = was_valid_content # Character content case [pulldom.CHARACTERS, _]: diff --git a/bible/tests/test_parse.py b/bible/tests/test_parse.py index 3491c0a..f58c3f4 100644 --- a/bible/tests/test_parse.py +++ b/bible/tests/test_parse.py @@ -6,5 +6,15 @@ class ParseTest(TestCase): def test_gen_9_23(self): expected = '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.' - verse = Verse.objects.get(book='GEN', chapter=9, verse=23, language='en') + verse = Verse.objects.get(book='GEN', chapter=9, verse=23, language='en', translation='kjv') self.assertEqual(expected, verse.content) + + def test_web_cross_references_stripped(self): + """WEB annotates verses with cross-reference elements (e.g. + pointing Heb 11:33 back to Daniel 6) that aren't part of the verse + text itself. These must not leak into the stored content the way + footnotes were already excluded.""" + expected = 'who through faith subdued kingdoms, worked out righteousness, obtained promises, stopped the mouths of lions,' + verse = Verse.objects.get(book='HEB', chapter=11, verse=33, language='en', translation='lxx2012-web') + self.assertEqual(expected, verse.content) + self.assertNotIn('Daniel', verse.content) diff --git a/calendarium/api.py b/calendarium/api.py index f605892..6604c5c 100644 --- a/calendarium/api.py +++ b/calendarium/api.py @@ -18,7 +18,7 @@ from pydantic import AnyUrl, AnyHttpUrl, conint, constr, validator from . import datetools, liturgics, views -from .datetools import Calendar, Tradition +from .datetools import Calendar, Tradition, Translation from orthocal.decorators import etag, etag_date, instrument_endpoint logger = logging.getLogger(__name__) @@ -162,9 +162,9 @@ class OembedSchema(Schema): def not_implemented_handler(request, exc): return api.create_response(request, {'message': 'Not Implemented'}, status=501) -async def _get_calendar_day(request, cal, tradition, year, month, day): +async def _get_calendar_day(request, cal, tradition, year, month, day, translation=None): try: - day = liturgics.Day(year, month, day, calendar=cal, tradition=tradition, language=request.LANGUAGE_CODE) + day = liturgics.Day(year, month, day, calendar=cal, tradition=tradition, language=request.LANGUAGE_CODE, translation=translation) except ValueError: # The date is out of range or invalid raise Http404 @@ -178,26 +178,32 @@ async def _get_calendar_day(request, cal, tradition, year, month, day): @api.get('{cal:cal}/{year:year}/{month:month}/{day:day}/', response=DaySchema) @instrument_endpoint @decorate_view(etag) -async def get_calendar_day(request, cal: Calendar, year: year, month: month, day: day): +async def get_calendar_day(request, cal: Calendar, year: year, month: month, day: day, translation: Translation = None): """Get information about the liturgical day for the given calendar and date. The *cal* path parameter should be `gregorian` or `julian`. The legacy `oca` or `rocor` will still work, but should be avoided for new code. This serves the Slavic/OCA tradition; see the `{tradition}/{cal}/...` routes below for the Greek tradition. + The optional *translation* query parameter selects the Bible translation + (`kjv` or `lxx2012-web`); it only affects English content and defaults to + `kjv` when omitted. """ - return await _get_calendar_day(request, cal, Tradition.Slavic, year, month, day) + return await _get_calendar_day(request, cal, Tradition.Slavic, year, month, day, translation) @api.get('{tradition:tradition}/{cal:cal}/{year:year}/{month:month}/{day:day}/', response=DaySchema) @instrument_endpoint @decorate_view(etag) -async def get_calendar_day_tradition(request, tradition: Tradition, cal: Calendar, year: year, month: month, day: day): +async def get_calendar_day_tradition(request, tradition: Tradition, cal: Calendar, year: year, month: month, day: day, translation: Translation = None): """Get information about the liturgical day for the given tradition, calendar, and date. The *tradition* path parameter should be `slavic` or `greek`. The legacy `oca`, `antiochian`, and `goa` will still work, but should be avoided for new code. The *cal* path parameter should be `gregorian` or `julian`. + The optional *translation* query parameter selects the Bible translation + (`kjv` or `lxx2012-web`); it only affects English content and defaults to + `kjv` when omitted. """ - return await _get_calendar_day(request, cal, tradition, year, month, day) + return await _get_calendar_day(request, cal, tradition, year, month, day, translation) async def _get_calendar_month(request, cal, tradition, year, month) -> List[DaySchemaLite]: days = [d async for d in liturgics.amonth_of_days(year, month, calendar=cal, tradition=tradition)] @@ -239,26 +245,32 @@ async def get_calendar_month_tradition(request, tradition: Tradition, cal: Calen @api.get('{cal:cal}/', response=DaySchema, summary='Get Today') @instrument_endpoint @decorate_view(etag_date) -async def get_calendar_default(request, cal: Calendar): +async def get_calendar_default(request, cal: Calendar, translation: Translation = None): """Get information about the current liturgical day for the given calendar. The timezone is Pacific Time. The *cal* path parameter should be `gregorian` or `julian`. The legacy `oca` or `rocor` will still work, but should be avoided for new code. This serves the Slavic/OCA tradition; see the `{tradition}/{cal}/` route below for the Greek tradition. + The optional *translation* query parameter selects the Bible translation + (`kjv` or `lxx2012-web`); it only affects English content and defaults to + `kjv` when omitted. """ dt = timezone.localtime() - return await _get_calendar_day(request, cal, Tradition.Slavic, dt.year, dt.month, dt.day) + return await _get_calendar_day(request, cal, Tradition.Slavic, dt.year, dt.month, dt.day, translation) @api.get('{tradition:tradition}/{cal:cal}/', response=DaySchema, summary='Get Today (by tradition)') @instrument_endpoint @decorate_view(etag_date) -async def get_calendar_default_tradition(request, tradition: Tradition, cal: Calendar): +async def get_calendar_default_tradition(request, tradition: Tradition, cal: Calendar, translation: Translation = None): """Get information about the current liturgical day for the given tradition and calendar. The timezone is Pacific Time. The *tradition* path parameter should be `slavic` or `greek`. The *cal* path parameter should be `gregorian` or `julian`. + The optional *translation* query parameter selects the Bible translation + (`kjv` or `lxx2012-web`); it only affects English content and defaults to + `kjv` when omitted. """ dt = timezone.localtime() - return await _get_calendar_day(request, cal, tradition, dt.year, dt.month, dt.day) + return await _get_calendar_day(request, cal, tradition, dt.year, dt.month, dt.day, translation) @api.get('oembed/calendar/', response=OembedSchema, exclude_none=True) @instrument_endpoint diff --git a/calendarium/datetools.py b/calendarium/datetools.py index c55231c..db75a3c 100644 --- a/calendarium/datetools.py +++ b/calendarium/datetools.py @@ -30,6 +30,26 @@ def cal_session_key(tradition): always Gregorian and shouldn't clobber a Slavic Julian/Gregorian choice.""" return f'cal_{tradition}' +class Translation(StrEnum): + KJV = 'kjv' + LXX2012WEB = 'lxx2012-web' + +def translation_session_key(language): + """Mirrors cal_session_key(tradition): translation choice is remembered + per-language, since it's only meaningful for English today.""" + return f'translation_{language}' + +# Display labels for every translation code that can appear in Verse rows, +# not just the ones selectable via the dropdown -- rccv/srp1865 are included +# so the "Scripture Readings (...)" heading is accurate for Romanian/Serbian +# too, instead of always showing "(KJV)" regardless of language. +TRANSLATION_LABELS = { + 'kjv': 'King James Version', + 'lxx2012-web': 'LXX2012 & WEB', + 'rccv': 'Romanian Corrected Cornilescu Version', + 'srp1865': 'Serbian (Karadžić/Daničić, 1865)', +} + class FastLevels(IntEnum): NoFast = 0 Fast = 1 diff --git a/calendarium/liturgics/day.py b/calendarium/liturgics/day.py index bc84e58..f2138ca 100644 --- a/calendarium/liturgics/day.py +++ b/calendarium/liturgics/day.py @@ -96,12 +96,12 @@ class Day: shared and lives here in the base class. """ - def __new__(cls, year, month, day, calendar=Calendar.Gregorian, tradition=Tradition.Slavic, language='en'): + def __new__(cls, year, month, day, calendar=Calendar.Gregorian, tradition=Tradition.Slavic, language='en', translation=None): if cls is Day: cls = _DAY_CLASSES[tradition] return super().__new__(cls) - def __init__(self, year, month, day, calendar=Calendar.Gregorian, tradition=Tradition.Slavic, language='en'): + def __init__(self, year, month, day, calendar=Calendar.Gregorian, tradition=Tradition.Slavic, language='en', translation=None): self.gregorian_date = date(year, month, day) if calendar == Calendar.Gregorian: @@ -123,6 +123,7 @@ def __init__(self, year, month, day, calendar=Calendar.Gregorian, tradition=Trad self.calendar = calendar self.pyear = _YEAR_CLASSES[tradition](pyear, calendar) self.language = language + self.translation = translation async def ainitialize(self): """Do the expensive stuff here to keep it out of the constructor.""" @@ -440,7 +441,7 @@ async def aget_readings(self, fetch_content=False): if hasattr(self, 'readings'): if fetch_content: for reading in self.readings: - await reading.pericope.aget_passage(language=self.language) + await reading.pericope.aget_passage(language=self.language, translation=self.translation) return self.readings @@ -505,7 +506,7 @@ async def aget_readings(self, fetch_content=False): self.readings = [] for reading in rows: if fetch_content: - await reading.pericope.aget_passage(language=self.language) + await reading.pericope.aget_passage(language=self.language, translation=self.translation) if -42 < self.pdist < -7 and self.feast_level < 7 and reading.source == 'Matins Gospel': # Place Lenten Matins Gospel at the top @@ -524,7 +525,7 @@ async def aget_abbreviated_readings(self, fetch_content=False): if hasattr(self, 'abbreviated_readings'): if fetch_content: for reading in self.abbreviated_readings: - await reading.pericope.aget_passage(language=self.language) + await reading.pericope.aget_passage(language=self.language, translation=self.translation) return self.abbreviated_readings @@ -586,7 +587,7 @@ async def aget_abbreviated_readings(self, fetch_content=False): if fetch_content: for reading in readings: - await reading.pericope.aget_passage(language=self.language) + await reading.pericope.aget_passage(language=self.language, translation=self.translation) self.abbreviated_readings = readings return readings diff --git a/calendarium/models.py b/calendarium/models.py index 7050e99..4bd390e 100644 --- a/calendarium/models.py +++ b/calendarium/models.py @@ -99,28 +99,31 @@ class Meta: def __str__(self): return self.display - async def aget_passage(self, language='en'): + async def aget_passage(self, language='en', translation=None): try: return self.passage except AttributeError: - self.passage = [verse async for verse in self.get_passage(language=language)] + self.passage = [verse async for verse in self.get_passage(language=language, translation=translation)] return self.passage - def get_passage(self, language='en'): + def get_passage(self, language='en', translation=None): match = re.match(r'Composite (\d+)', self.display) if match: return Composite.objects.filter( composite_num=match.group(1) ).annotate( - # Make the composite look like a Verse instance. + # Make the composite look like a Verse instance. Composite + # readings only have one hardcoded (KJV-sourced) content + # column, regardless of the requested translation. book=models.Value(''), chapter=models.Value(1), verse=models.Value(1), language=models.Value('en'), + translation=models.Value('kjv'), paragraph_start=models.Value(True), ) else: - return Verse.objects.lookup_reference(self.sdisplay, language=language) + return Verse.objects.lookup_reference(self.sdisplay, language=language, translation=translation) class Composite(models.Model): diff --git a/calendarium/templates/readings.html b/calendarium/templates/readings.html index 7cadd76..d10a356 100644 --- a/calendarium/templates/readings.html +++ b/calendarium/templates/readings.html @@ -25,9 +25,8 @@
- - - (beta) + +
@@ -81,7 +80,24 @@

Commemorations

-

Scripture Readings (KJV)

+ {% if day.language == "en" %} +

Scripture Readings

+ {% else %} +

Scripture Readings ({{ translation_label }})

+ {% endif %} + + {% if day.language == "en" %} +

+ +

+ {% endif %} {% for reading in day.readings %}
@@ -122,14 +138,19 @@

{{ reading.title|widont }}

function navigate(){ var cal = document.querySelector('input[name="calendar"]:checked').value; var tradition = document.querySelector('input[name="tradition"]:checked').value; - var urls = { - 'gregorian_slavic': '{% url "readings" tradition="slavic" cal="gregorian" year=date.year month=date.month day=date.day %}', - 'gregorian_greek': '{% url "readings" tradition="greek" cal="gregorian" year=date.year month=date.month day=date.day %}', - 'julian_slavic': '{% url "readings" tradition="slavic" cal="julian" year=date.year month=date.month day=date.day %}', - 'julian_greek': '{% url "readings" tradition="greek" cal="julian" year=date.year month=date.month day=date.day %}' - }; - var t = new Date().getTime(); - location.href = urls[cal + '_' + tradition] + '?t=' + t; + var translationSelect = document.getElementById('translation-select'); + var translation = translationSelect ? translationSelect.value : 'kjv'; + + // Reverse with real placeholder values (each a distinct, one-off path + // segment) and substitute them client-side, since the number of + // translations can grow and a per-combination URL map (as used above + // for cal/tradition) doesn't scale as well as a single template does. + var url = '{% url "readings" tradition="slavic" cal="gregorian" translation="kjv" year=date.year month=date.month day=date.day %}' + .replace('slavic', tradition) + .replace('gregorian', cal) + .replace('kjv', translation); + + location.href = url + '?t=' + new Date().getTime(); } function wire_toggles(){ @@ -142,6 +163,11 @@

{{ reading.title|widont }}

for (var i = 0; i < radios.length; i++) { radios[i].addEventListener('change', navigate); } + + var translationSelect = document.getElementById('translation-select'); + if (translationSelect) { + translationSelect.addEventListener('change', navigate); + } } document.addEventListener('DOMContentLoaded', wire_toggles) diff --git a/calendarium/tests/test_api.py b/calendarium/tests/test_api.py index 918761c..726ce23 100644 --- a/calendarium/tests/test_api.py +++ b/calendarium/tests/test_api.py @@ -43,6 +43,26 @@ def test_get_day_invalid(self): response = self.client.get(url, format='json') self.assertEqual(404, response.status_code) + def test_get_day_translation(self): + """The optional translation query parameter should change passage + content without needing a new route, defaulting to KJV when absent.""" + url = reverse('api:get_calendar_day', kwargs={ + 'cal': 'gregorian', + 'year': 2022, + 'month': 1, + 'day': 7, + }) + + kjv_response = self.client.get(url, format='json') + lxx_response = self.client.get(url, {'translation': 'lxx2012-web'}, format='json') + + kjv_gospel = kjv_response.json()['readings'][2] + lxx_gospel = lxx_response.json()['readings'][2] + + self.assertEqual(kjv_gospel['display'], 'John 1.29-34') + self.assertEqual(lxx_gospel['display'], 'John 1.29-34') + self.assertNotEqual(kjv_gospel['passage'][0]['content'], lxx_gospel['passage'][0]['content']) + def test_get_day_default(self): url = reverse('api:get_calendar_default', kwargs={'cal': 'gregorian'}) response = self.client.get(url, format='json') diff --git a/calendarium/tests/test_liturgics.py b/calendarium/tests/test_liturgics.py index e9f7280..dd28ea6 100644 --- a/calendarium/tests/test_liturgics.py +++ b/calendarium/tests/test_liturgics.py @@ -3,7 +3,7 @@ from django.test import TestCase from .. import datetools, liturgics, models -from ..datetools import Tradition +from ..datetools import Tradition, Translation from bible.models import Verse @@ -892,6 +892,46 @@ async def test_composite_fields(self): with self.subTest(field.name): self.assertTrue(hasattr(passage[0], field.name)) + async def test_translation_selection(self): + """Passing translation=Translation.LXX2012WEB should change the + wording of both Old and New Testament passages, while the default + (translation=None) should keep resolving to KJV, unchanged.""" + + # A Lenten weekday with a plain (non-Composite) Old Testament reading. + # fetch_content=True is required -- it's what actually threads + # Day.translation through to the passage fetch; calling + # pericope.aget_passage() directly afterwards would bypass that and + # re-resolve the default translation instead. + kjv_day = liturgics.Day(2023, 3, 30) + await kjv_day.ainitialize() + kjv_readings = await kjv_day.aget_readings(fetch_content=True) + self.assertEqual(kjv_readings[1].pericope.sdisplay, 'Gen 18.20-33') + kjv_genesis = kjv_readings[1].pericope.passage + + lxx_day = liturgics.Day(2023, 3, 30, translation=Translation.LXX2012WEB) + await lxx_day.ainitialize() + lxx_readings = await lxx_day.aget_readings(fetch_content=True) + lxx_genesis = lxx_readings[1].pericope.passage + + self.assertNotEqual(kjv_genesis[0].content, lxx_genesis[0].content) + self.assertEqual(kjv_genesis[0].translation, 'kjv') + self.assertEqual(lxx_genesis[0].translation, 'lxx2012-web') + + # A day with a plain Gospel reading, to confirm the New Testament + # half (WEB) is threaded through too, not just the Old Testament half. + kjv_day = liturgics.Day(2022, 1, 7) + await kjv_day.ainitialize() + kjv_readings = await kjv_day.aget_readings(fetch_content=True) + self.assertEqual(kjv_readings[2].pericope.sdisplay, 'John 1.29-34') + kjv_gospel = kjv_readings[2].pericope.passage + + web_day = liturgics.Day(2022, 1, 7, translation=Translation.LXX2012WEB) + await web_day.ainitialize() + web_readings = await web_day.aget_readings(fetch_content=True) + web_gospel = web_readings[2].pericope.passage + + self.assertNotEqual(kjv_gospel[0].content, web_gospel[0].content) + async def test_new_style_commemoration_on_civil_date_in_julian_mode(self): """Issue #146: modern (new_style) commemorations are recorded against the civil/Gregorian date and observed there by both Old- diff --git a/calendarium/tests/test_views.py b/calendarium/tests/test_views.py index 002df54..87dfa8d 100644 --- a/calendarium/tests/test_views.py +++ b/calendarium/tests/test_views.py @@ -6,7 +6,7 @@ from http.cookies import SimpleCookie from ..views import render_calendar_html -from ..datetools import Calendar +from ..datetools import Calendar, Translation class TestReadingsView(TestCase): @@ -60,6 +60,41 @@ def test_gregorian_404(self): response = self.client.get(url) self.assertEqual(response.status_code, 404) + def test_translation_default(self): + """Pages should default to lxx2012-web after visiting an lxx2012-web page.""" + url = reverse('readings', kwargs={ + 'tradition': 'slavic', + 'cal': 'gregorian', + 'translation': 'lxx2012-web', + 'year': 2022, + 'month': 1, + 'day': 7, + }) + response = self.client.get(url) + self.assertEqual(response.status_code, 200) + self.assertEqual(response.context['translation'], Translation.LXX2012WEB) + + url = reverse('index') + response = self.client.get(url) + self.assertEqual(response.status_code, 200) + self.assertEqual(response.context['translation'], Translation.LXX2012WEB) + + def test_translation_dropdown_shown_for_english_only(self): + """The translation dropdown only makes sense for English -- Romanian + and Serbian each still have exactly one translation.""" + url = reverse('readings', kwargs={ + 'cal': 'gregorian', + 'year': 2022, + 'month': 1, + 'day': 7, + }) + + response = self.client.get(url) + self.assertContains(response, 'id="translation-select"') + + response = self.client.get(url, headers={'Accept-Language': 'ro'}) + self.assertNotContains(response, 'id="translation-select"') + def test_greek_extra_sundays_overflow_does_not_500(self): """GreekYear.greek_extra_sundays can be 6 or 7 (roughly a quarter of all years -- e.g. the 2020 and 2023 cycles below), but diff --git a/calendarium/urls.py b/calendarium/urls.py index 022cf21..ff8fbf3 100644 --- a/calendarium/urls.py +++ b/calendarium/urls.py @@ -11,6 +11,7 @@ logger = logging.getLogger(__name__) urlpatterns = [ + path('readings///////', etag(views.readings_view), name='readings'), path('readings//////', etag(views.readings_view), name='readings'), path('readings/////', etag(views.readings_view), name='readings'), # Eventually we can remove this redirect, but we're still getting traffic here from crawlers. diff --git a/calendarium/views.py b/calendarium/views.py index d44806d..35b305b 100644 --- a/calendarium/views.py +++ b/calendarium/views.py @@ -12,23 +12,26 @@ from django.urls import reverse from django.utils import timezone +from bible.models import DEFAULT_TRANSLATIONS + from . import liturgics, models -from .datetools import Calendar, Tradition, cal_session_key +from .datetools import Calendar, Tradition, Translation, TRANSLATION_LABELS, cal_session_key, translation_session_key logger = logging.getLogger(__name__) -async def readings_view(request, cal=None, tradition=None, year=None, month=None, day=None): +async def readings_view(request, cal=None, tradition=None, translation=None, year=None, month=None, day=None): tradition = remember_tradition(request, tradition) cal = remember_cal(request, cal, tradition) + translation = remember_translation(request, translation, request.LANGUAGE_CODE) now = timezone.localtime().date() if year and month and day: try: - day = liturgics.Day(year, month, day, calendar=cal, tradition=tradition, language=request.LANGUAGE_CODE) + day = liturgics.Day(year, month, day, calendar=cal, tradition=tradition, language=request.LANGUAGE_CODE, translation=translation) except ValueError: raise Http404 else: - day = liturgics.Day(now.year, now.month, now.day, calendar=cal, tradition=tradition, language=request.LANGUAGE_CODE) + day = liturgics.Day(now.year, now.month, now.day, calendar=cal, tradition=tradition, language=request.LANGUAGE_CODE, translation=translation) await day.ainitialize() await day.aget_readings(fetch_content=True) @@ -46,6 +49,12 @@ async def readings_view(request, cal=None, tradition=None, year=None, month=None 'previous_nofollow': not is_indexable(previous_date), 'cal': cal, 'tradition': tradition, + 'translation': translation, + 'translation_label': TRANSLATION_LABELS[translation or DEFAULT_TRANSLATIONS[request.LANGUAGE_CODE]], + # Only the selectable (English) translations, not every code that can + # appear in Verse rows -- ro/sr each have one fixed translation with + # no dropdown, so rccv/srp1865 aren't offered as choices here. + 'translation_choices': [(t.value, TRANSLATION_LABELS[t.value]) for t in Translation], }) async def calendar_view(request, cal=None, tradition=None, year=None, month=None): @@ -148,6 +157,26 @@ def remember_tradition(request, tradition): return tradition +def remember_translation(request, translation, language): + if language != 'en': + # No user-facing choice yet for ro/sr -- let Day/lookup_reference + # resolve the per-language default regardless of session/URL state. + return None + + session_key = translation_session_key(language) + + if translation: + if translation != request.session.get(session_key, Translation.KJV): + request.session[session_key] = translation + + # Don't send vary on cookie header when we have an explicit translation. + # In this case, the session does not actually impact the content. + request.session.accessed = False + else: + translation = request.session.get(session_key, Translation.KJV) + + return translation + def is_indexable(dt): now = timezone.localtime().date() return abs(dt - now) <= timedelta(days=5*365) diff --git a/data/eng-lxx2012_usfx.xml b/data/eng-lxx2012_usfx.xml new file mode 100644 index 0000000..1c98401 --- /dev/null +++ b/data/eng-lxx2012_usfx.xml @@ -0,0 +1,83006 @@ +eng +- Brenton English Septuagint +Abbreviations +Abbreviations +Abbreviations +Abbr. +

ABBREVIATIONS AND SIGNS USED IN THE NOTES +

+

+ +Heb. + +for Hebrew. +Gr. +for Greek. +Lit.for Literally. +q. d.for +quasi dicat (a restatement or paraphrase). +Comp.for Compare. +A. V.for Authorised Version (also known as the King James Version). +Alex. + +for Alexandrine Text. +Ald.for Aldine Text. ++for Sign of addition. +for Sign of ommission. +sc.for +scilicet, that is to say. +
+- Brenton English Septuagint +Introduction +Introduction +Introduction +Introduction +

INTRODUCTION +

+

LXX 2012 Introduction +

+

The LXX 2012 is a spelling update of Brenton's 1870 English translation of the Greek Seputagint. While spelling and changing some word endings to more modern forms doesn't quite make this edition fully modern English, it does make it more readable to contemporary speakers of English. Because modern English lacks a distinct 2nd person plural pronoun that is universally accepted, we have translated “ye” as “you^”. This is like “you-all”, “y'all”, “you lot”, “yeunz”, “you guys”, or some similar regional dialect's version of this pronoun. +

+

Brenton's Introduction (1870) +

+

An Historical Account of the Septuagint Version +

+

The earliest version of the Old Testament Scriptures which is extant, or of which we possess any certain knowledge, is the translation executed at Alexandria in the third century before the Christian era: this version has been so habitually known by the name of the +Septuagint, that the attempt of some learned men in modern times to introduce the designation of the Alexandrian version (as more correct) has been far from successful. +

+

The history of the origin of this translation was embellished with various fables at so early a period, that it has been a work of patient critical research in later times to bring into plain light the facts which may be regarded as well authenticated. +

+

We need not wonder that but little is known with accuracy on this subject; for, with regard to the ancient versions of the Scriptures in general, we possess no information whatever as to the time or place of their execution, or by whom they were made: we simply find such versions in use at particular times, and thus we gather the fact that they must have been previously executed. If, then, our knowledge of the origin of the Septuagint be meagre, it is at least more extensive than that which we possess of other translations. +

+

After the conquests of Alexander had brought Egypt under Macedonian rule, the newly-founded city of Alexandria became especially a place where the Greek language, although by no means in its purest form, was the medium of written and spoken communication amongst the varied population there brought together. This Alexandrian dialect is the idiom in which the Septuagint version was made. +

+

Amongst other inhabitants of Alexandria the number of Jews was considerable: many appear to have settled there even from the first founding of the city, and it became the residence of many more during the reign of the first Ptolemy. Hence the existence of the sacred books of the Jews would easily become known to the Greek population. +

+

+

The earliest writer who gives an account of the Septuagint version is Aristobulus, a Jew who lived at the commencement of the second century b.c. He says that the version of the Law into Greek was completed under the reign of Ptolemy Philadelphus, and that Demetrius Phalereus had been employed about it. Now, Demetrius died about the beginning of the reign of Ptolemy Philadelphus, and hence it has been reasonably inferred that Aristobulus is a witness that the work of translation had been commenced under Ptolemy Soter. +

+

Different opinions have been formed as to what is intended by Aristobulus when he speaks of the +Law: some consider that he refers merely to the Pentateuch, while others extend the signification to the Old Testament Scriptures in general: the former opinion appears to be favoured by the strict meaning of the terms used; the latter by the mode in which the Jews often applied the name of Law to the whole of their sacred writings. +

+

The fact may, however, be regarded as certain, that prior to the year 285 +b.c. the Septuagint version had been commenced, and that in the reign of Ptolemy Philadelphus, either the books in general or at least an important part of them had been completed. +

+

The embellishments and fictitious additions which this account soon received might be scarcely worthy of notice in this place, were it not that they are intimately connected with the +authority which this version was once supposed to possess, and with the +name by which it is commonly known. +

+

A writer, who calls himself Aristeas, says that when Ptolemy Philadelphus was engaged in the formation of the Alexandrian Library, he was advised by Demetrius Phalereus to procure a translation of the sacred books of the Jews. The king accordingly, as a preliminary, purchased the freedom of more than one hundred thousand Jewish captives, and he then sent a deputation, of which Aristeas himself was one, to Eleazar the high-priest to request a copy of the Jewish Law and +seventy-two interpreters, six out of each tribe. To this the priest is represented to have agreed; and after the arrival of the translators and their magnificent reception by the king, they are said to have been conducted to an island by Demetrius, who wrote down the renderings on which they agreed by mutual conference; and thus the work is stated to have been completed in seventy-two days. The translators are then said to have received from the king most abundant rewards; and the Jews are stated to have asked permission to take copies of the version. +

+

Other additions were subsequently made to this story: some said that each translator was shut into a separate cell, and that all by divine inspiration made their versions word for word alike; others said that there were two in each cell, accompanied by an amanuensis; but at all events miracle and direct inspiration were supposed to be connected with the translation: hence we cannot wonder that the authority attached to this version in the minds of those who believed these stories was almost unbounded. +

+

The basis of truth which appears to be under this story seems to be, that it was an Egyptian king who caused the translation to be made, and that it was from the Royal Library at Alexandria that the Hellenistic Jews received the copies which they used. +

+

In examining the version itself, it bears manifest proof that it was not executed by Jews of Palestine, but by those of Egypt:—there are words and expressions which plainly denote its Alexandrian origin: this alone would be a sufficient demonstration that the narrative of Aristeas is a mere fiction. It may also be doubted whether in the year 285 +b.c. there were Jews in Palestine who had sufficient intercourse with the Greeks to have executed a translation into that language; for it must be borne in mind how recently they had become the subjects of Greek monarchs, and how differently they were situated from the Alexandrians as to the influx of Greek settlers. +

+

Some in rejecting the fabulous embellishments have also discarded +all connected with them: they have then sought to devise new hypotheses as to the origin of the version. Some have thus supposed that the translation was made by Alexandrian Jews for their own use, in order to meet a necessity which they had felt to have a version of the Scriptures in the tongue which had become vernacular to them. +

+

There would be, however, many difficulties in the way of this hypothesis. We would hardly suppose that in a space of thirty-five years the Alexandrian Jews had found such a translation needful or desirable: we must also bear in mind that we find at this period no trace of any versions having been made by Jews into the languages of other countries in which they had continued for periods much longer than that of their settlement at Alexandria. +

+

The most reasonable conclusion is, that the version was executed for the Egyptian king; and that the Hellenistic Jews afterwards used it as they became less and less familiar with the language of the original. +

+

If the expression of Aristobulus does not designate the whole of the books of the Old Testament as translated in the time of Ptolemy Philadelphus, the question arises, When, were the other books besides the Pentateuch turned into Greek? To this no definite answer could be given: we may however be certain that various interpreters were occupied in translating various parts, and in all probability the interval between the commencement and the conclusion of the work was not great. +

+

The variety of the translators is proved by the unequal character of the version: some books show that the translators were by no means competent to the task, while others, on the contrary, exhibit on the whole a careful translation. The Pentateuch is considered to be the part the best executed, while the book of Isaiah appears to be the very worst. +

+

In estimating the general character of the version, it must be remembered that the translators were Jews, full of traditional thoughts of their own as to the meaning of Scripture; and thus nothing short of a miracle could have prevented them from infusing into their version the thoughts which were current in their own minds. They could only translate passages as they themselves understood them. This is evidently the case when their work is examined. +

+

It would be, however, too much to say that they translated with dishonest intention; for it cannot be doubted that they wished to express their Scriptures truly in Greek, and that their deviations from accuracy may be simply attributed to the incompetency of some of the interpreters, and the tone of mental and spiritual feeling which was common to them all. +

+

One difficulty which they had to overcome was that of introducing theological ideas, which till then had only their proper terms in Hebrew, into a language of Gentiles, which till then had terms for no religious notions except those of heathens. Hence the necessity of using many words and phrases in new and appropriated senses. +

+

These remarks are not intended as depreciatory of the Septuagint version: their object is rather to show what difficulties the translators had to encounter, and why in some respects they failed; as well as to meet the thought which has occupied the minds of some, who would extol this version as though it possessed something resembling co-ordinate authority with the Hebrew text itself. +

+

One of the earliest of those writers who mention the Greek translation of the Scriptures, speaks also of the version as not fully adequate. The Prologue of Jesus the son of Sirach (written as many suppose +b.c. 130) to his Greek version of his grandfather’s work, states: οὐ γὰρ ἰσοδυναμεῖ αὐτὰ ἐν ἑαυτοῖς Ἑβραϊστὶ λεγόμενα, καὶ ὅταν μεταξθῇ εἰς ἑτέραν γλῶσσαν· οὐ μόνον δὲ ταῦτα, ἀλλὰ καὶ αὐτος ὁ νόμος καὶ αἱ προφητεῖαι, καὶ τὰ λοιπὰ τῶν βιβλὶων οὐ μικρὰν ἔχει τὴν διαφορὰν ἐν ἑαυτοῖς λεγόμενα: “For the same things expressed in Hebrew have not an equal force when translated into another language. Not only so, but even +the Law and +the prophecies and +the rest of the books differ not a little as to the things said in them.” The writer of this Prologue had come into Egypt from the Holy Land: he had undertaken the translation of his grandfather’s work into Greek, but in explanation of the difficulty which he had to encounter in this work, he refers to the defects found even in the version of the Law, the prophets, and the other books, of which he had previously spoken. Doubtless coming into Egypt he was more conscious of the defects of the Septuagint version than could have been the case with Egyptian Jews, who had used the translation commonly and habitually for a century and a quarter. +

+

At Alexandria the Hellenistic Jews used the version, and gradually attached to it the greatest possible authority: from Alexandria it spread amongst the Jews of the dispersion, so that at the time of our Lord’s birth it was the common form in which the Old Testament Scriptures had become diffused. +

+

In examining the Pentateuch of the Septuagint in connection with the Hebrew text, and with the copies preserved by the Samaritans in their crooked letters, it is remarkable that in very many passages the readings of the Septuagint accord with the Samaritan copies where they differ from the Jewish. We cannot here notice the various theories which have been advanced to account for this accordance of the Septuagint with the Samaritan copies of the Hebrew; indeed it is not very satisfactory to enter into the details of the subject, because no theory hitherto brought forward explains +all the facts, or meets +all the difficulties. To one point, however, we will advert, because it has not been sufficiently taken into account,—in the places in which the Samaritan and Jewish copies of the Hebrew text differ, +in important and material points, the Septuagint accords +much more with the Jewish than with the Samaritan copies, and in a good many points it introduces variations unknown to either. +

+

The Septuagint version having been current for about three centuries before the time when the books of the New Testament were written, it is not surprising that the Apostles should have used it more often than not in making citations from the Old Testament. They used it as an honestly-made version in pretty general use at the time when they wrote. They did not on every occasion give an authoritative translation of each passage +de novo, but they used what was already familiar to the ears of converted Hellenists, when it was sufficiently accurate to suit the matter in hand. In fact, they used it as did their contemporary Jewish writers, Philo and Josephus, but not, however, with the blind implicitness of the former. +

+

In consequence of the fact that the New Testament writers used on many occasions the Septuagint version, some have deduced a new argument for its +authority,—a theory which we might have thought to be sufficiently disproved by the defects of the version, which evince that it is merely a human work. But the fact that the New Testament writers used this version on many occasions supplies a new proof in opposition to the idea of its +authority, for in not a few places they do +not follow it, but they supply a version of their own which rightly represents the Hebrew text, although contradicting the Septuagint. +

+

The use, however, which the writers of the New Testament have made of the Septuagint version must always invest it with a peculiar interest; we thus see what honour God may be pleased to put on an honestly-made version, since we find that inspired writers often used such a version, when it was sufficiently near the original to suit the purpose for which it was cited, instead of rendering the Hebrew text +de novo on every occasion. +

+

Another important point on which the Septuagint stands in close connection with the New Testament is the general phraseology of the version,—a phraseology in which the traces of Hebrew elements are most marked, but with regard to which we should mistake greatly if we supposed that it +originated with the New Testament writers. Thus we may see that the study of the Septuagint is almost needful to any biblical scholar who wishes to estimate adequately the phraseology and +usus loquendi of the New Testament. +

+

Besides the direct citations in the New Testament in which the Septuagint is manifestly used, there are not a few passages in which it is clear that the train of expression has been formed on words and phrases of the Septuagint: thus an intimate acquaintance with this version becomes in a manner necessary on the part of an expositor who wishes to enter accurately into the scope of many parts of the New Testament. +

+

Thus, whatever may be our estimate of the defects found in the Septuagint—its inadequate renderings, its departures from the sense of the Hebrew, its doctrinal deficiencies owing to the limited apprehensions of the translators—there is no reason whatever for our neglecting the version, or not being fully alive to its real value and importance. +

+

After the diffusion of Christianity, copies of the Septuagint became widely dispersed amongst the new communities that were formed; so that before many years had elapsed this version must have been as much in the hands of Gentiles as of Jews. +

+

The veneration with which the Jews had treated this version (as is shown in the case of Philo and Josephus), gave place to a very contrary feeling when they found how it could be used against them in argument: hence they decried the version, and sought to deprive it of all authority. As the Gentile Christians were generally unacquainted with Hebrew, they were unable to meet the Jews on the ground which they now took; and as the Gentile Christians at this time believed the most extraordinary legends of the origin of the version, so that they fully embraced the opinions of its authority and inspiration, they necessarily regarded the denial on the part of the Jews of its accuracy, as little less than blasphemy, and as a proof of their blindness. +

+

+

In the course of the second century, three other complete versions of the Old Testament into Greek were executed: these are of importance in this place, because of the manner in which they were afterwards connected with the Septuagint. +

+

The first of the Greek versions of the Old Testament executed in the second century was that of +Aquila. He is described as a Jew or Jewish proselyte of Pontus, and the date commonly attributed to his version is about the year +a.d. 126. His translation is said to have been executed for the express purpose of opposing the authority of the Septuagint: his version was in consequence upheld by the Jews. His labour was evidently directed in opposing the passages which the Christians were accustomed to cite from the Septuagint as applicable to the Lord Jesus. The general characteristic of this version is bold literality of rendering: such an endeavour is made to render each Hebrew word and particle into Greek, that all grammar is often set at defiance, and not unfrequently the sense is altogether sacrificed. From the scrupulosity of Aquila in rendering each Hebrew word, his work, if we possessed it complete (and not merely in scattered fragments), would be of great value in textual criticism. +

+

+

Another Greek translator at a subsequent period in the second century was +Symmachus. He is described as an Ebionite, a kind of semi-Christian. His version seems to have been executed in good and pure Greek: perhaps he was the more particular in his attention to this in consequence of the mere barbarism of Aquila. +

+

+

A third translator in the same century was +Theodotion, an Ebionite like Symmachus, to whom he was probably anterior. His version is in many parts based on the Septuagint. He is less servile in his adherence to the words of the Hebrew than Aquila, although he is void of the freedom of Symmachus. His knowledge of Hebrew was certainly but limited, and without the Septuagint it is hardly probable that he could have undertaken this version. +

+

+

Thus, before the end of the second century there were, besides the Septuagint, three versions of the Old Testament in Greek, known to both Jews and Christians. All this could not fail in making the Old Testament Scriptures better known and more widely read. +

+

Although many Christians believed in the inspiration and authority of the Septuagint, yet this could not have been universally the case; otherwise the disuse of the real Septuagint version of the book of Daniel, and the adoption of that of Theodotion in its stead, could never have taken place. This must have arisen from an apprehension of the poverty and inaccuracy of the Septuagint in this book, so that another version similar in its general style was gladly adopted. +

+

+

We have now to speak of the labours of +Origen in connection with the text of the Septuagint. This learned and enterprising scholar, having acquired a knowledge of Hebrew, found that in many respects the copies of the Septuagint differed from the Hebrew text. It seems to be uncertain whether he regarded such differences as having arisen from mistakes on the part of copyists, or from errors of the original translators themselves. +

+

The object which he proposed to himself was not to restore the Septuagint to its original condition, nor yet to correct mere errors of translation simply as such, but to cause that the Church should possess a text of the Septuagint in which all +additions to the Hebrew should be marked with an +obelus, and in which all that the Septuagint omitted should be added from one of the other versions marked with an +asterisk. He also indicated readings in the Septuagint which were so incorrect that the passage ought to be changed for the corresponding one in another version. +

+

With the object of thus amending the Septuagint, he formed his great works, the Hexapla and Tetrapla; these were (as the names imply) works in which the page was divided respectively into six columns and into four columns. +

+

The Hexapla contained, 1st, the Hebrew text; 2nd, the Hebrew text expressed in Greek characters; 3rd, the version of Aquila; 4th, that of Symmachus; 5th, the Septuagint; 6th, Theodotion. The Tetrapla contained merely the four last columns. +

+

Besides these four versions of the entire Old Testament, Origen employed +three anonymous Greek versions of particular books; these are commonly called the +fifth, +sixth, and +seventh versions. Hence in the parts in which +two of these versions are added, the work was designated Octapla, and where all the three appeared, it was called Enneapla. +

+

References were then made from the column of the Septuagint to the other versions, so as to complete and correct it: for this purpose Theodotion was principally used. This recension by Origen has generally been called the +Hexaplar text. The Hexapla itself is said never to have been copied: what remains of the versions which it contained (mere fragments) was edited by Montfaucon in 1714, and in an abridged edition by Bahrdt in 1769–70. +

+

The Hexaplar text of the Septuagint was copied about half a century after Origen’s death by Pamphilus and Eusebius; it thus obtained a circulation; but the errors of copyists soon confounded the marks of addition and omission which Origen placed, and hence the text of the Septuagint became almost hopelessly mixed up with that of other versions. +

+

The Hexaplar text is best known from a Syriac version which was made from it; of this many books have been published from a MS. at Milan; other books are now in the British Museum amongst the rest of the Syriac treasures obtained from the Nitrian monasteries. This Syro-Hexaplar translation preserves the marks of the Greek text, and the references to the other translations. It may yet be made of great use in separating the readings which were introduced by Origen from those of an older date. +

+

There were two other early attempts to revise the Septuagint besides that of Origen. In the beginning of the fourth century, Lucian, a presbyter of Antioch, and Hesychius, an Egyptian bishop, undertook similar labours of the same kind. These two +recensions (which they were in the proper sense of the term) were much used in the Eastern Churches. +

+

+

From the fourth century and onward, we know of no definite attempt to revise the text of the Septuagint, or to correct the discrepancies of various copies. It is probable, however, that just as the text of the Greek New Testament became in a great measure fixed into the same form as we find it in the modern copies, something of the same kind must have been the case with the Septuagint. As to the Greek New Testament, this seems to have occurred about the eleventh century, when the mass of copies were written within the limits of the patriarchate of Constantinople. It is probable that certain copies approved at the metropolis, both politically and religiously, of those who used the Greek tongue, were tacitly taken as a kind of standard. +

+

We find amongst the members of the Eastern Churches who use the Greek language, that the Septuagint has been and is still so thoroughly received as authentic Scripture, that any effort to introduce amongst them versions which accurately represent the Hebrew (as has been attempted in modern times) has been wholly fruitless. +

+

Thus the Septuagint demands our attention, were it only from the fact that the whole circle of religious ideas and thoughts amongst Christians in the East has +always been moulded according to this version. Without an acquaintance with the Septuagint, numerous allusions in the writings of the Fathers become wholly unintelligible, and even important doctrinal discussions and difficulties (such even as some connected with the Arian controversy) become wholly unintelligible. +

+

As the Septuagint was held in such honour in the East, it is no cause for surprise that this version was the basis of the other translations which were made in early times into vernacular tongues. There was, however, also another reason;—the general ignorance of the original Hebrew amongst the early Christians prevented their forming their translations from the fountain itself. The especial exception to this remark is the Syriac version of the Old Testament formed at once from the Hebrew. +

+
+ +Genesis +GENESIS +Genesis +GEN +

GENESIS +

+ + +

In the beginning God made the heaven and the earth. + +But the earth was unsightly and unfurnished, and darkness was over the deep, and the Spirit of God moved over the water. + +And God said, Let there be light, and there was light. + +And God saw the light that it was good, and God divided between the light +1:4 +Gr. and between the darkness. Hebraism. +and the darkness. + +And God called the light Day, and the darkness he called Night, and there was evening and there was morning, the first day. + +And God said, Let there be a firmament in the midst of the water, and let it be a division between water and water, and it was so. + +And God made the firmament, and God divided between the water which was under the firmament and the water which was above the firmament. + +And God called the firmament Heaven, and God saw that it was good, and there was evening and there was morning, the second day. + +And God said, Let the water which is under the heaven be collected into one +1:9 +Gr. meeting + place, and let the dry land appear, and it was so. And the water which was under the heaven was collected into its places, +1:9 +Gr. their meetings + and the dry land appeared. + +And God called the dry land Earth, and the +1:10 +Gr. systems. + gatherings of the waters he called Seas, and God saw that it was good. + +And God said, Let the earth bring forth the herb of grass +1:11 +Gr. sowing. + bearing seed according to its kind +1:11 +Gr. λ Alex. + εἰς ὁμοιότητα. + and according to its likeness, and the fruit tree bearing fruit whose seed is in it, according to its kind on the earth, and it was so. + +And the earth brought forth the herb of grass bearing seed according to its kind and according to its likeness, and the fruit tree bearing fruit whose seed is in it, according to its kind on the earth, and God saw that it was good. + +And there was evening and there was morning, the third day. + +And God said, Let there be lights in the firmament of the heaven +1:14 +Gr. for light or shining. + to give light upon the earth, to divide between day and night, and let them be for signs and for seasons and for days and for years. + +And let them be for light in the firmament of the heaven, so as to shine upon the earth, and it was so. + +And God made the two great lights, the greater light for regulating the day and the lesser light for regulating the night, the stars also. + +And God placed them in the firmament of the heaven, so as to shine upon the earth, + +and to regulate day and night, and to divide between the light and the darkness. And God saw that it was good. + +And there was evening and there was morning, the fourth day. + +And God said, Let the waters bring forth reptiles +1:20 +lit, of living souls + having life, and winged creatures flying above the earth in the firmament of heaven, and it was so. + +And God made great +1:21 +Or, probably any large fish, or marine animals, whether cetaceous or not. + whales, and +1:21 +Gr. every soul of living reptiles. + every living reptile, which the waters brought forth according to their kinds, and every creature that flies with wings according to its kind, and God saw that they were good. + +And God blessed them saying, Increase and multiply and fill the waters in the seas, and let the creatures that fly be multiplied on the earth. + +And there was evening and there was morning, the fifth day. + +And God said, Let the earth bring forth the living +1:24 +Gr. soul. + creature according to its kind, quadrupeds and reptiles and wild beasts of the earth according to their kind, and it was so. + +And God made the wild beasts of the earth according to their kind, and cattle according to their kind, and all the reptiles of the earth according to their kind, and God saw that they were good. + +And God said, Let us make man according to our image and likeness, and let them have dominion over the fish of the sea, and over the flying creatures of heaven, and over the cattle and all the earth, and over all the reptiles that creep on the earth. + +And God made man, according to the image of God +1:27 +Matt 19:4 + he made him, male and female he made them. + +And God blessed them, saying, Increase and multiply, and fill the earth and subdue it, and have dominion over the fish of the seas and flying creatures of heaven, and all the cattle and all the earth, and all the reptiles that creep on the earth. + +And God said, Behold I have given to you every seed-bearing herb sowing seed which is upon all the earth, and every tree which has in itself the fruit of seed that is sown, to you it shall be for food. + +And to all the wild beasts of the earth, and to all the flying creatures of heaven, and to every reptile creeping on the earth, which has in itself the +1:30 +Gr. soul. + breath of life, even every green plant for food; and it was so. + +And God saw all the things that he had made, and, behold, they were very good. And there was evening and there was morning, the sixth day. + +

+ + +

And the heavens and the earth were finished, and the whole +2:1 +Or, order. See John 1:10. + world of them. + + +2:2 +Heb 4:4 + And God finished on the sixth day his works which he made, and he ceased on the seventh day from all his works which he made. + +And God blessed the seventh day and sanctified it, because in it he ceased from all his works which God +2:3 +Or, made in the beginning. See Acts 1:1. + began to do. + +This +is the book of the generation of heaven and earth, when +2:4 +Or, it took place. + they were made, in the day in which the Lord God made the heaven and the earth, + +and every herb of the field before it was on the earth, and all the grass of the field before it sprang up, for God had not rained on the earth, and there was not a man to cultivate it. + +But there rose a fountain out of the earth, and watered the whole face of the earth. + +And God formed the man +of dust of the earth, and breathed upon his face the breath of life, +2:7 +1 Cor 15:45 + and the man became a living soul. + +And God planted a garden eastward in Edem, and placed there the man whom he had formed. + +And God made to spring up also out of the earth every tree beautiful +2:9 +Gr. for sight. + to the eye and good for food, and the tree of life in the midst of the garden, and the tree of learning +2:9 +Or, that which is to be known. Comp. Rom 1:19. + the knowledge of good and evil. + +And a river proceeds out of Edem to water the garden, thence it divides itself into four heads. + +The name of the one, Phisom, this it is which encircles the whole land of Evilat, where there is gold. + +And the gold of that land is good, there also is carbuncle and emerald. + +And the name of the second river is Geon, this it is which encircles the whole land of Ethiopia. + +And the third river is Tigris, this is that which flows forth over against the Assyrians. And the fourth river is Euphrates. + +And the Lord God took the man whom he had formed, and placed him in the garden of Delight, to cultivate and keep it. + +And the Lord God gave a charge to Adam, saying, Of every tree which is in the garden you +2:16 +Or, eat for food. + may freely eat, + +but of the tree of the knowledge of good and evil—of it you⌃ shall not eat, but in whatever day you⌃ eat of it, you⌃ shall +2:17 +Or, die by death. + surely die. + +And the Lord God said, +It is not good that the man should be alone, let us make for him a help +2:18 +Gr. according to him. + suitable to him. + +And God formed yet farther out of the earth all the wild beasts of the field, and all the birds of the sky, and he brought them to Adam, to see what he would call them, and whatever Adam called any living creature, +2:19 +Gr. soul. + that was the name of it. + +And Adam +2:20 +Gr. called. + gave names to all the cattle and to all the birds of the sky, and to all the wild beasts of the field, but for Adam there was not found a help like to himself. + +And God brought a trance upon Adam, and he slept, and he took one of his ribs, and filled up the flesh instead thereof. + +And God +2:22 +Gr. built. + formed the rib which he took from Adam into a woman, and brought her to Adam. + +And Adam said, This now is bone +2:23 +Or, out of. See the force of ἐκ in Eph 5:30. + of my bones, and flesh of my flesh; she shall be called +2:23 +Or, wife. + woman, because she was taken out +2:23 +In the Heb. the reason of the name appears. She shall be called Issha because she was taken out of Ish. + of her husband. + +Therefore shall a man leave his father and his mother and shall +2:24 +Gr. be cemented. Mat 19:5. + cleave to his wife, and they two shall be one flesh. + +

+ + +

And the two were naked, both Adam and his wife, and were not ashamed. Now the serpent was the most crafty of all the brutes on the earth, which the Lord God made, and the serpent said to the woman, Therefore has God said, Eat not of every tree of the garden? + +And the woman said to the serpent, We may eat of the fruit of the trees of the garden, + +but of the fruit of the tree which is in the midst of the garden, God said, You⌃ shall not eat of it, neither shall you⌃ touch it, lest you⌃ die. + +And the serpent said to the woman, +3:4 +Gr. you⌃ shall not die by death. + You⌃ shall not surely die. + +For God knew that in whatever day you⌃ should eat of it your eyes would be opened, and you⌃ would be as gods, knowing good and evil. + +And the woman saw that the tree was good for food, and that it was pleasant to the eyes to look upon and beautiful to contemplate, and having taken of its fruit she ate, and she gave to her husband also with her, and they ate. + +And the eyes of both were opened, and they perceived that they were naked, and they sewed fig leaves together, and made themselves aprons to go round them. + +And they heard the voice of the Lord God walking in the garden in the afternoon; and both Adam and his wife hid themselves from the face of the Lord God in the midst of the trees of the garden. + +And the Lord God called Adam and said to him, Adam, where are you? + +And he said to him, I heard +3:10 +Or, the sound of you walking. + your voice as you walked in the garden, and I feared because I +3:10 +Gr. am. + was naked and I hid myself. + +And God said to him, Who told you that you were naked, unless you have eaten of the tree concerning which I charged you of it alone not to eat? + +And Adam said, The woman whom you gave to be with me—she gave me of the tree and I ate. + +And the Lord God said to the woman, Why have you done this? And the woman said, The serpent deceived me and I ate. + +And the Lord God said to the serpent, Because you have done this you are cursed above all cattle and all the brutes of the earth, on your breast and belly you shall go, and you shall eat earth all the days of your life. + +And I will put enmity between you and the woman and between your seed and her seed, he shall +3:15 +Gr. keep. Other readings of the passage are πλήξει and πλήξεις and τειρήσει and τειρήσεις. See Parkhurst in שֵׁנִי‏ + watch against your head, and you shall +3:15 +Gr. keep. Other readings of the passage are πλήξει and πλήξεις and τειρήσει and τειρήσεις. See Parkhurst in שֵׁנִי‏ + watch against his heel. + +And to the woman he said, I will greatly multiply your pains and your groanings; in pain you shall bring forth children, and your submission +3:16 +Gr. turning. + shall be to your husband, and he shall rule over you. + +And to Adam he said, Because you have listened to the voice of your wife, and eaten of the tree concerning which I charged you of it only not to eat—of that you have eaten, cursed +is the ground in your labors, in pain shall you eat of it all the days of your life. + +Thorns and thistles shall it bring forth to you, and you shall eat the herb of the field. + +In the sweat of your face shall you eat your bread until you return to the earth out of which you were taken, for earth you are and to earth you shall return. + +And Adam called the name of his wife +3:20 +Gr. Zoe. + Life, because she was the mother of all living. + +And the Lord God made for Adam and his wife garments of skin, and clothed them. + +And +3:22 +Alex. + the Lord. + God said, Behold, Adam is become as one of us, to know good and evil, and now lest at any time he stretch forth his hand, and take of the tree of life and eat, and +so he shall live forever— + +So the Lord God sent him forth out of the garden of Delight to cultivate the ground out of which he was taken. + +And he cast out Adam and caused him to dwell over against the garden of Delight, and stationed the cherubs and the fiery sword that turns about to keep the way of the tree of life. + +

+ + +

And Adam knew Eve his wife, and she conceived and brought forth Cain and said, I have gained a man through God. + +And she again bore his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground. + +And it was so +4:3 +Gr. after days. + after some time that Cain brought of the fruits of the earth a sacrifice to the Lord. + +And Abel +4:4 +Gr. he also. + also brought of the first born of his sheep and of his fatlings, and God looked upon Abel and his gifts, + +but Cain and his sacrifices he regarded not, and Cain was exceedingly sorrowful and his countenance fell. + +And the Lord God said to Cain, Why are you become very sorrowful and why is your countenance fallen? + +Have you not sinned if you have brought it rightly, but not rightly divided it? be still, to you shall be his submission, and you shall rule over him. + +And Cain said to Abel his brother, Let us go out into the plain; and it came to pass that when they were in the plain Cain rose up against Abel his brother, and killed him. + +And the Lord God said to Cain, Where is Abel your brother? and he said, I know not, am I my brother's keeper? + +And the Lord said, What have you done? the voice of your brother's blood cries to me out of the ground. + +And now you +are cursed from the earth which has opened her mouth to receive your brother's blood from your hand. + +When you till the earth, then it shall not continue to give its strength to you: you shall be groaning and trembling on the earth. + +And Cain said to the Lord God, My crime +is too great for me to be forgiven. + +If you cast me out this day from the face of the earth, +4:14 +Or, then shall I be. + and I shall be hidden from your presence, and I shall be groaning and trembling upon the earth, then it will be that any one that finds me shall kill me. + +And the Lord God said to him, Not so, any one that slays Cain shall +4:15 +Gr. pay seven penalties. + suffer sevenfold vengeance; and the Lord God set a mark upon Cain that no one that found him might kill him. + +So Cain went forth from the presence of God and lived in the land of Nod over against Edem. + +And Cain knew his wife, and having conceived she bore Enoch; and he +4:17 +Or, was building. + built a city; and he named the city after the name of his son, Enoch. + +And to Enoch was born Gaidad; and Gaidad begot Maleleel; and Maleleel begot Mathusala; and Mathusala begot Lamech. + +And Lamech took to himself two wives; the name of the one was Ada, and the name of the second Sella. + +And Ada bore Jobel; he was the father of those that dwell in tents, feeding cattle. + +And the name of his brother was Jubal; he it was who +4:21 +Gr. made known. + invented the lute and harp. + +And Sella +4:22 +Gr. she also. + also bore Thobel; he was a smith, a manufacturer both of brass and iron; and the sister of Thobel was Noema. + +And Lamech said to his wives, Ada and Sella, Hear my voice, you⌃ wives of Lamech, consider my words, because I have slain a man to my +4:23 +Gr. wound. + sorrow and a youth to my +4:23 +Gr. hurt. + grief. + +Because vengeance has been exacted seven times on Cain's behalf, on Lamech's +it shall be seventy times seven. + +And Adam knew Eve his wife, and she conceived and bore a son, and called his name Seth, saying, For God has raised up to me another seed instead of Abel, whom Cain killed. + +And Seth had a son, and he called his name Enos: he +4:26 +Or, trusted, q.d. had faith to call &c. + hoped to call on the name of the Lord God. + +

+ + +

This +is the genealogy +5:1 +Gr. book of generation. + of men in the day in which God made Adam; in the image of God he made him: + +male and female he made them, and blessed them; and he called +5:2 +Alex. their. + his name Adam, in the day in which he made them. + +And Adam lived two hundred and thirty years, and begot +a son after his +own form, and after his +own image, and he called his name Seth. + +And the days of Adam, which he lived after his begetting Seth, were seven hundred years; and he begot sons and daughters. + +And all the days of Adam which he lived were nine hundred and thirty years, and he died. + +Now Seth lived two hundred and five years, and begot Enos. + +And Seth lived after his begetting Enos, seven hundred and seven years, and he begot sons and daughters. + +And all the days of Seth were nine hundred and twelve years, and he died. + +And Enos lived one hundred and ninety years, and begot Cainan. + +And Enos lived after his begetting Cainan, seven hundred and fifteen years, and he begot sons and daughters. + +And all the days of Enos were nine hundred and five years, and he died. + +And Cainan lived one hundred and seventy years, and he begot Maleleel. + +And Cainan lived after his begetting Maleleel, seven hundred and forty years, and he begot sons and daughters. + +And all the days of Cainan were nine hundred and ten years, and he died. + +And Maleleel lived one hundred and sixty and five years, and he begot Jared. + +And Maleleel lived after his begetting Jared, seven hundred and thirty years, and he begot sons and daughters. + +And all the days of Maleleel were eight hundred and ninety and five years, and he died. + +And Jared lived one hundred and sixty and two years, and begot Enoch: + +and Jared lived after his begetting Enoch, eight hundred years, and he begot sons and daughters. + +And all the days of Jared were nine hundred and sixty and two years, and he died. + +And Enoch lived one hundred and sixty and five years, and became the father of Mathusala. + +And Enoch was well-pleasing to God after his begetting Mathusala, two hundred years, and he begot sons and daughters. + +And all the days of Enoch were three hundred and sixty and five years. + +And Enoch was well-pleasing to God, and was not found, because God translated him. + +And Mathusala lived +5:25 +Alex 187 years. + one hundred and sixty and seven years, and begot Lamech. + +And Mathusala lived after his begetting Lamech +5:26 +Alex 782. + eight hundred and two years, and begot sons and daughters. + +And all the days of Mathusala which he lived, were nine hundred and sixty and nine years, and he died. + +And Lamech lived one hundred and eighty and eight years, and begot a son. + +And he called his name Noe, saying, This one will cause us to cease from our works, and from the toils of our hands, and from the earth, which the Lord God has cursed. + +And Lamech lived after his begetting Noe, five hundred and sixty and five years, and begot sons and daughters. + +And all the days of Lamech were seven hundred and fifty-three years, and he died. + +

+ + +

And Noe was five hundred years old, and he begot three sons, Sem, +6:1 +Alex. Chaph. + Cham, and Japheth. And it came to pass when men began to be numerous upon the earth, and daughters were born to them, + +that the +6:2 +Alex. angels of God. + sons of God having seen the daughters of men that they were beautiful, took to themselves wives of all whom they chose. + +And the Lord God said, My Spirit shall certainly not remain among these men for ever, because they are flesh, but their days shall be one hundred and twenty years. + +Now the giants were upon the earth in those days; and after that when the sons of God were wont to go in to the daughters of men, they bore +children to them, those were the giants of old, the men of renown. + +And the Lord God, having seen that the wicked actions of men were multiplied upon the earth, and that every one in his heart was intently brooding over evil continually, + +then God laid it to heart that he had made man upon the earth, and he pondered +it deeply. + +And God said, I will blot out man whom I have made from the face of the earth, even man with cattle, and reptiles with flying creatures of the sky, for I am +6:7 +Gr. I have thought or reasoned. Alex. ἐθμώθην. I became angry. + grieved that I have made them. + +But Noe found grace before the Lord God. + +And these +are the generations of Noe. Noe was a just man; being perfect in his generation, Noe was well-pleasing to God. + +And Noe begot three sons, Sem, +6:10 +Alex. Chaph. + Cham, Japheth. + +But the earth was corrupted before God, and the earth was filled with iniquity. + +And the Lord God saw the earth, and it was corrupted; because all flesh had corrupted its way upon the earth. + +And the Lord God said to Noe, +6:13 +Gr. The time of every man. + A period of all men is come before me; because the earth has been filled with iniquity by them, and, behold, I destroy them and the earth. + +Make therefore for yourself an ark of square timber; you shall make the ark in +6:14 +Gr. nests. + compartments, and you shall pitch it within and without with pitch. + +And thus shall you make the ark; three hundred cubits the length of the ark, and fifty cubits the breadth, and thirty cubits the height of it. + +You shall narrow the ark in making it, and in a cubit above you shall finish it, and the door of the ark you shall make +6:16 +out of the side. + on the side; with lower, second, and third stories you shall make it. + +And behold I bring a +6:17 +Gr. flood, water. + flood of water upon the earth, to destroy all flesh in which is the breath of life under heaven, and whatever things are upon the earth shall die. + +And I will establish my covenant with you, and you shall enter into the ark, and your sons and your wife, and your sons' wives with you. + +And of all cattle and of all reptiles and of all wild beasts, even of all flesh, you shall bring by +6:19 +Gr. two, two. + pairs of all, into the ark, that you may feed them with yourself: male and female they shall be. + +Of all winged birds after their kind, and of all cattle after their kind, and of all reptiles creeping upon the earth after their kind, pairs of all shall come in to you, male and female to be fed with you. + +And you shall take to yourself of all kinds of food which you⌃ eat, and you shall gather them to yourself, and it shall be for you and them to eat. + +And Noe did all things whatever the Lord God commanded him, so did he. + +

+ + +

And the Lord God said to Noe, Enter you and all your +7:1 +Gr. house. + family into the ark, for you have I seen righteous before me in this generation. + +And of the clean cattle take in to you sevens, male and female, and of the unclean cattle pairs male and female. + +And of clean flying creatures of the sky sevens, male and female, and of all unclean flying creatures pairs, male and female, to maintain seed on all the earth. + +For yet seven days +having passed I bring rain upon the earth forty days and forty nights, and I will blot out every offspring which I have made from the face of all the earth. + +And Noe +did all things whatever the Lord God commanded him. + +And Noe was six hundred years old when the flood of water was upon the earth. + +And then went in Noe and his sons and his wife, and his sons' wives with him into the ark, because of the water of the flood. + +And of clean flying creatures and of unclean flying creatures, and of clean cattle and of unclean cattle, and of all things that creep upon the earth, + +pairs went in to Noe into the ark, male and female, as God commanded Noe. + +And it came to pass after the seven days that the water of the flood came upon the earth. + +In the six hundredth year of the life of Noe, in the second month, on the twenty-seventh day of the month, on this day all the fountains of the abyss were broken up, and the +7:11 +Or, bars, or, cataracts. + flood-gates of heaven were opened. + +And the rain was upon the earth forty days and forty nights. + +On that very day entered Noe, Sem, Cham, Japheth, the sons of Noe, and the wife of Noe, and the three wives of his sons with him into the ark. + +And all the wild beasts after their kind, and all cattle after their kind, and every reptile moving itself on the earth after its kind, and every flying bird after its kind, + +went in to Noe into the ark, pairs, male and female of all flesh in which is the breath of life. + +And they that entered went in male and female of all flesh, as God commanded Noe, and the Lord God shut the ark outside of him. + +And the flood was upon the earth forty days and forty nights, and the water abounded greatly and bore up the ark, and it was lifted on high from off the earth. + +And the water prevailed and abounded exceedingly upon the earth, and the ark was borne upon the water. + +And the water prevailed exceedingly upon the earth, and covered all the high mountains which were under heaven. + +Fifteen cubits upwards was the water raised, and it covered all the high mountains. + +And there died all flesh that moved upon the earth, of flying creatures and cattle, and of wild beasts, and every reptile moving upon the earth, and every man. + +And all things which have the breath of life, and whatever was on the dry land, died. + +And +God blotted out every offspring which was upon the face of the earth, both man and beast, and reptiles, and birds of the sky, and they were blotted out from the earth, and Noe was left alone, and those with him in the ark. + +And the water was raised over the earth one hundred and fifty days. + +

+ + +

And God remembered Noe, and all the wild beasts, and all the cattle, and all the birds, and all the reptiles that creep, as many as were with him in the ark, and God brought a wind upon the earth, and the water stayed. + +And the fountains of the deep were closed up, and the flood-gates of heaven, and the rain from heaven was withheld. + +And the water subsided, and went off the earth, and after one hundred and fifty days the water was diminished, and the ark rested in the seventh month, on the twenty-seventh day of the month, on the mountains of Ararat. + +And the water continued to decrease until the tenth month. + +And in the tenth month, on the first day of the month, the heads of the mountains were seen. + +And it came to pass after forty days Noe opened the window of the ark which he had made. + +And he sent forth +8:7 +Gr. the raven. + a raven; +8:7 +Alex. + to see if the water had ceased. + and it went forth and returned not until the water was dried from off the earth. + +And he sent +8:8 +Gr. the dove. + a dove after it to see if the water had ceased from off the earth. + +And the dove not having found rest for her feet, returned to him into the ark, because the water was on all the face of the earth, and he stretched out his hand and took her, and brought her to himself into the ark. + +And having waited yet seven other days, he again sent forth the dove from the ark. + +And the dove returned to him in the evening, and had a leaf of olive, a sprig in her mouth; and Noe knew that the water had ceased from off the earth. + +And having waited yet seven other days, he again sent forth the dove, and she did not return to him again any more. + +And it came to pass in the six hundred and first year of the life of Noe, in the first month, on the first day of the month, the water subsided from off the earth, and Noe opened the covering of the ark which he had made, and he saw that the water had subsided from the face of the earth. + +And in the second month the earth was dried, on the twenty-seventh day of the month. + +And the Lord God spoke to Noe, saying, + +Come out from the ark, you and your wife and your sons, and your sons' wives with you. + +And all the wild beasts as many as are with you, and all flesh both of birds and beasts, and every reptile moving upon the earth, bring forth with you: and increase you⌃ and multiply upon the earth. + +And Noe came forth, and his wife and his sons, and his sons' wives with him. + +And all the wild beasts and all the cattle and every bird, and every reptile creeping upon the earth after their kind, came forth out of the ark. + +And Noe built an altar to the Lord, and took of all clean beasts, and of all clean birds, and offered a whole burnt offering upon the altar. + +And the Lord God smelled a smell of sweetness, and the Lord God having considered, said, I will not any more curse the earth, because of the works of men, because the imagination of man is intently bent upon evil things from his youth, I will not therefore any more strike all living flesh as I have done. + +All the days of the earth, seed and harvest, cold and heat, summer and spring, shall not cease by day or night. + +

+ + +

And God blessed Noe and his sons, and said to them, Increase and multiply, and fill the earth and have dominion over it. + +And the dread and the fear of you shall be upon all the wild beasts of the earth, on all the birds of the sky, and on all things moving upon the earth, and upon all the fishes of the sea, I have placed them under your +9:2 +Gr. hands. + power. + +And every reptile which is living shall be to you for meat, I have given all things to you as the +9:3 +Gr. herbs of grass. + green herbs. + +But flesh with blood of life you⌃ shall not eat. + +For your blood of your lives will I require at the hand of all wild beasts, and I will require the life of man at the hand of +his brother man. + +He that sheds man's blood, instead of that blood shall his own be shed, for in the image of God I made man. + +But do you⌃ increase and multiply, and fill the earth, and have dominion over it. + +And God spoke to Noe, and to his sons with him, saying, + +And behold I establish my covenant with you, and with your seed after you, + +and with every +9:10 +Gr. living soul. + living creature with you, of birds and of beasts, and with all the wild beasts of the earth, as many as are with you, of all that come out of the ark. + +And I will establish my covenant with you and all flesh shall not any more die by the water of the flood, and there shall no more be a flood of water to destroy all the earth. + +And the Lord God said to Noe, This +is the sign of the covenant which I set between me and you, and between every living creature which is with you for perpetual generations. + +I set my bow in the cloud, and it shall be for a sign of covenant between me and the earth. + +And it shall be when I gather clouds upon the earth, that my bow shall be seen in the cloud. + +And I will remember my covenant, which is between me and you, and between every living soul in all flesh, and there shall no longer be water for a deluge, so as to blot out all flesh. + +And my bow shall be in the cloud, and I will look to remember the everlasting covenant between me and the earth, and between +every living soul in all flesh, which is upon the earth. + +And God said to Noe, This +is the sign of the covenant, which I have made between me +9:17 +Gr. and between. + and all flesh, which is upon the earth. + +Now the sons of Noe which came out of the ark, were Sem, Cham, Japheth. And Cham was father of Chanaan. + +These three are the sons of Noe, of these were men scattered over all the earth. + +And Noe began to be a husbandman, and he planted a vineyard. + +And he drank of the wine, and was drunk, and was naked in his house. + +And Cham the father of Chanaan saw the nakedness of his father, and he went out and told his two brothers without. + +And Sem and Japheth having taken a garment, put it on both their backs and went backwards, and covered the nakedness of their father; and their face +was backward, and they saw not the nakedness of their father. + +And Noe recovered from the wine, and knew all that his younger son had done to him. + +And he said, Cursed be the servant Chanaan, a slave shall he be to his brethren. + +And he said, Blessed +be the Lord God of Sem, and Chanaan shall be his bond-servant. + +May God make room for Japheth, and let him dwell in the habitations of Sem, and let Chanaan be his servant. + +And Noe lived after the flood three hundred and fifty years. + +And all the days of Noe were nine hundred and fifty years, and he died. + +

+ + +

Now these +are the generations of the sons of Noe, Sem, Cham, Japheth; and sons were born to them after the flood. + +The sons of Japheth, Gamer, and Magog, and Madoi, and Jovan, and Elisa, and Thobel, and Mosoch, and Thiras. + +And the sons of Gamer, Aschanaz, and Riphath, and Thorgama. + +And the sons of Jovan, Elisa, and Tharseis, Cetians, Rhodians. + +From these were the islands of the Gentiles divided in their land, each according to his tongue, in their tribes and in their nations. + +And the sons of Cham, Chus, and Mesrain, Phud, and Chanaan. + +And the sons of Chus, Saba, and Evila, and Sabatha, and Rhegma, and Sabathaca. And the sons of Rhegma, Saba, and Dadan. + +And Chus begot Nebrod: he began to be a giant upon the earth. + +He was a giant hunter before the Lord God; therefore they say, As Nebrod the giant hunter before the Lord. + +And the beginning of his kingdom was Babylon, and Orech, and Archad, and Chalanne, in the land of Senaar. + +Out of that land came Assur, and built Ninevi, and the city Rhooboth, and Chalach, + +and Dase between Ninevi and Chalach: this is the great city. + +And Mesrain begot the Ludiim, and the Nephthalim, and the Enemetiim, and the Labiim, + +and the Patrosoniim, and the Chasmoniim (whence came forth Phylistiim) and the Gaphthoriim. + +And Chanaan begot Sidon his firstborn, and the Chettite, + +and the Jebusite, and the Amorite, and the Girgashite, + +and the Evite, and the Arukite, and the Asennite, + +and the Aradian, and the Samarean, and the Amathite; and after this the tribes of the Chananites were dispersed. + +And the boundaries of the Chananites were from Sidon till one comes to Gerara and Gaza, till one comes to Sodom and Gomorrha, Adama and Seboim, as far as Dasa. + +There +were the sons of Cham in their tribes according to their tongues, in their countries, and in their nations. + +And to Sem himself also were children born, the father of all the sons of Heber, the brother of Japheth the elder. + +Sons of Sem, Elam, and Assur, and Arphaxad, and Lud, and Aram, and Cainan. + +And sons of Aram, Uz, and Ul, and Gater, and Mosoch. + +And Arphaxad begot Cainan, and Cainan begot Sala. And Sala begot Heber. + +And to Heber were born two sons, the name of the one, Phaleg, because in his days the earth was divided, and the name of his brother Jektan. + +And Jektan begot Elmodad, and Saleth, and Sarmoth, and Jarach, + +and Odorrha, and Aibel, and Decla, + +Eval, and Abimael, and Saba, + +and Uphir, and Evila, and Jobab, all these were the sons of Jektan. + +And their dwelling was from Masse, till one comes to Saphera, a mountain of the east. + +These were the sons of Sem in their tribes, according to their tongues, in their countries, and in their nations. + +These are the tribes of the sons of Noe, according to their generations, according to their nations: of them were +10:32 +Or, simply Gentiles + the islands of the Gentiles scattered over the earth after the flood. + +

+ + +

And all the earth was one lip, and there was one language to all. + +And it came to pass as they moved from the east, they found a plain in the land of Senaar, and they lived there. + +And a man said to his neighbor, Come, let us make bricks and bake them with fire. And the brick was to them for stone, and their mortar was bitumen. + +And they said, Come, let us build to ourselves a city and tower, whose top shall be to heaven, and let us make to ourselves a name, before we are scattered abroad upon the face of all the earth. + +And the Lord came down to see the city and the tower, which the sons of men built. + +And the Lord said, Behold, +there is one race, and one lip of all, and they have begun to do this, and now nothing shall fail from them of all that they may have undertaken to do. + +Come, and having gone down let us there confound their tongue, that they may not understand each the voice of his neighbor. + +And the Lord scattered them thence over the face of all the earth, and they left off building the city and the tower. + +On this account its name was called Confusion, because there the Lord confounded the languages of all the earth, and thence the Lord scattered them upon the face of all the earth. + +And these +are the generations of Sem: and Sem was one hundred years old when he begot Arphaxad, the second year after the flood. + +And Sem lived, after he had begotten Arphaxad, five hundred years, and begot sons and daughters, and died. + +And Arphaxad lived one hundred and thirty-five years, and begot Cainan. + +And Arphaxad lived after he had begotten Cainan, +11:13 +Alex 430 years. + four hundred years, and begot sons and daughters, and died. And Cainan lived one hundred and thirty years and begot Sala; and Canaan lived after he had begotten Sala, three hundred and thirty years, and begot sons and daughters, and died. + +And Sala lived one hundred and thirty years, and begot Heber. + +And Sala lived after he had begotten Heber, three hundred and thirty years, and begot sons and daughters, and died. + +And Heber lived one hundred and thirty-four years, and begot Phaleg. + +And Heber lived after he had begotten Phaleg +11:17 +Alex 370 years. + two hundred and seventy years, and begot sons and daughters, and died. + +And Phaleg lived one hundred and thirty years, and begot Ragau. + +And Phaleg lived after he had begotten Ragau, two hundred and nine years, and begot sons and daughters, and died. + +And Ragau lived one hundred thirty and two years, and begot Seruch. + +And Raau lived after he had begotten Seruch, two hundred and seven years, and begot sons and daughters, and died. + +And Seruch lived one hundred and thirty years, and begot Nachor. + +And Seruch lived after he had begotten Nachor, two hundred years, and begot sons and daughters, and died. + +And Nachor lived +11:24 +Alex 79 years. + one hundred and seventy-nine years, and begot Tharrha. + +And Nachor lived after he had begotten Tharrha, +11:25 +Alex 129 years. + one hundred and twenty-five years, and begot sons and daughters, and he died. + +And Tharrha lived seventy years, and begot Abram, and Nachor, and Arrhan. + +And these +are the generations of Tharrha. Tharrha begot Abram and Nachor, and Arrhan; and Arrhan begot Lot. + +And Arrhan died in the presence of Tharrha his father, in the land in which he was born, in the country of the Chaldees. + +And Abram and Nachor took to themselves wives, the name of the wife of Abram was Sara, +11:29 +There seems to be no note of the date of Abram's marriage with Sara. + and the name of the wife of Nachor, Malcha, daughter of Arrhan, and he was the father of Malcha, the father of Jescha. + +And Sara was barren, and did not bear children. + +And Tharrha took Abram his son, and Lot the son Arrhan, the son of his son, and Sara his daughter-in-law, the wife of Abram his son, and led them forth out of the land of the Chaldees, to go into the land of Chanaan, and they came as far as Charrhan, and he lived there. + +And all the days of Tharrha in the land of Charrhan were two hundred and five years, and Tharrha died in Charrhan. + +

+ + +

And the Lord said to Abram, Go forth out of your land and out of your kindred, and out of the house of your father, and come into the land which I will show you. + +And I will make you a great nation, and I will bless you and magnify your name, and you shall be blessed. + +And I will bless those that bless you, and curse those that curse you, and in you shall all the tribes of the earth be blessed. + +And Abram went as the Lord spoke to him, and Lot departed with him, and Abram was seventy-five years old, when he went out of Charrhan. + +And Abram took Sara his wife, and Lot the son of his brother, and all their possessions, as many as they had got, and every soul which they had got in Charrhan, and they went forth to go into the land of Chanaan. +12:5 +Alex. + and came into the land of Chanaan. So the Heb. + + +And Abram traversed the land lengthwise as far as the place Sychem, to the high oak, and the Chananites then inhabited the land. + +And the Lord appeared to Abram, and said to him, I will give this land to your seed. And Abram built an altar there to the Lord who appeared to him. + +And he departed thence to the mountain eastward of Baethel, and there he pitched his tent in Baethel near the sea, and Aggai toward the east, and there he built an altar to the Lord, and called on the name of the Lord. + +And Abram departed and went and encamped in the wilderness. + +And there was a famine in the land, and Abram went down to Egypt to sojourn there, because the famine prevailed in the land. + +And it came to pass when Abram drew near to enter into Egypt, Abram said to Sara his wife, I know that you are a fair woman. + +It shall come to pass then that when the Egyptians shall see you, they shall say, This is his wife, and they shall kill me, but they shall save you alive. + +Say, therefore, I am his sister, that it may be well with me on account of you, and my soul shall live because of you. + +And it came to pass when Abram entered into Egypt—the Egyptians having seen his wife that she was very beautiful— + +that the princes of Pharao saw her, and praised her to Pharao and brought her into the house of Pharao. + +And they treated Abram well on her account, and he had sheep, and calves, and asses, and menservants, and women-servants, and mules, and camels. + +And God afflicted Pharao with great and severe afflictions, and his house, because of Sara, Abram's wife. + +And Pharao having called Abram, said, What is this you have done to me, that you did not tell me that she was your wife? + +Therefore did you say, She is my sister? and I took her for a wife to myself; and now, behold, your wife is before you, take her and go quickly away. + +And Pharao gave charge to men concerning Abram, to join in sending him forward, and his wife, and all that he had. +12:20 +Alex. + and Lot with him. + + +

+ + +

And Abram went up out of Egypt, he and his wife, and all that he had, and Lot with him, into the wilderness. + +And Abram was very rich in cattle, and silver, and gold. + +And he went +to the place whence he came, into the wilderness as far as Baethel, as far as the place where his tent was before, between Baethel and Aggai, + +to the place of the altar, +13:4 +Alex. where he made or pitched his tent. + which he built there at first, and Abram there called on the name of the Lord. + +And Lot who went out with Abram had sheep, and oxen, +13:5 +Alex. cattle. + and tents. + +And the land was not large enough for them to live together, because their possessions were great; and the land was not large enough for them to live together. + +And there was a strife between the herdmen of Abram's cattle, and the herdmen of Lot's cattle, and the Chananites and the Pherezites then inhabited the land. + +And Abram said to Lot, Let there not be a strife between me and you, and between my herdmen and your herdmen, for we are +13:8 +Gr. men, brethren. + brethren. + +Behold! is not the whole land before you? Separate yourself from me; if you +go to the left, I will go to the right, and if you go to the right, I will go to the left. + +And Lot having lifted up his eyes, observed all the country round about Jordan, that it was all watered, before God overthrew Sodom and Gomorrha, as the garden of the Lord, and as the land of Egypt, until you come to Zogora. + +And Lot chose for himself all the country round Jordan, and Lot went from the east, and they were separated each from his brother. And Abram lived in the land of Chanaan. + +And Lot lived in a city of the neighbouring people, and pitched his tent in Sodom. + +But the men of Sodom were evil, and exceedingly sinful before God. + +And God said to Abram after Lot was separated from him, Look up with your eyes, and behold from the place where you now are northward and southward, and eastward and seaward; + +for all the land which you see, I will give it to you and to your seed for ever. + +And I will make your seed like the +13:16 +Gr. sand. + dust of the earth; if any one is able to number the dust of the earth, then shall your seed be numbered. + +Arise and traverse the land, both in the length of it and in the breadth; for to you will I give it, and to your seed for ever. + +And Abram having +13:18 +Or, having lived at a distance. + removed his tent, came and lived by the oak of Mambre, which was in Chebrom, and he there built an altar to the Lord. + +

+ + +

And it came to pass in the reign of Amarphal king of Sennaar, and Arioch king of Ellasar, that Chodollogomor king of Elam, and Thargal king of nations, + +made war with Balla king of Sodom, and with Barsa king of Gomorrha, and with Sennaar, king of Adama, and with Symobor king of Seboim and the king of Balac, this is Segor. + +All these +14:3 +Gr. agreed. + met with one consent at the salt valley; this is +now the sea of salt. + +Twelve years they served Chodollogomor, and the thirteenth year they revolted. + +And in the fourteenth year came Chodollogomor, and the kings with him, and cut to pieces the giants in Astaroth, and Carnain, and strong nations with them, and the Ommaeans in the city Save. + +And the Chorrhaeans in the mountains of Seir, to the turpentine tree of Pharan, which is in the desert. + +And having turned back they came to the well of judgment; this is Cades, and they cut in pieces all the princes of Amalec, and the Amorites dwelling in Asasonthamar. + +And the king of Sodom went out, and the king of Gomorrha, and king of Adama, and king of Seboim, and king of Balac, this is Segor, and they set themselves in array against them for war in the salt valley, + +against Chodollogomor king of Elam, and Thargal king of nations, and Amarphal king of Sennaar, and Arioch king of Ellasar, the four kings against the five. + +Now the salt valley +consists of slime-pits. And the king of Sodom fled and the king of Gomorrha, and they fell in there: and they that were left fled to the mountain country. + +And they took all the cavalry of Sodom and Gomorrha, and all their provisions, and departed. + +And they took also Lot the son of Abram's brother, and his baggage, and departed, for he lived in Sodom. + +And one of them that had been rescued came and told Abram the +14:13 +Gr. passer. Heb. [Heb. here] + Hebrew; and he lived by the oak of Mamre the Amorite the brother of Eschol, and the brother of Aunan, who were confederates with Abram. + +And Abram having heard that Lot his nephew had been taken captive, numbered his own home-born +servants three hundred and eighteen, and pursued after them to Dan. + +And he came upon them by night, he and his servants, and he struck them and pursued them as far as Choba, which is on the left of Damascus. + +And he recovered all the cavalry of Sodom, and he recovered Lot his nephew, and all his possessions, and the women and the people. + +And the king of Sodom went out to meet him, after he returned from the slaughter of Chodollogomor, and the kings with him, to the valley of Saby; this was the plain of the kings. + +And Melchisedec king of Salem brought forth loaves and wine, and he was the priest of the most high God. + +And he blessed Abram, and said, Blessed be Abram of the most high God, who made heaven and earth, + +and blessed be the most high God who delivered your enemies into your +14:20 +Gr. under hand to you. + power. And Abram gave him the tithe of all. + +And the king of Sodom said to Abram, Give me the men, and take the +14:21 +Or, cavalry. Heb. + horses to yourself. + +And Abram said to the king of Sodom, I will stretch out my hand to the Lord the most high God, who made the heaven and the earth, + + +that I will not take from all your goods from a string to a shoe-latchet, lest you should say, I have made Abram rich. + +Except what things the young men have eaten, and the portion of the men that went with me, Eschol, Aunan, Mambre, these shall take a portion. + +

+ + +

And after these things the word of the Lord came to Abram in a vision, saying, Fear not, Abram, I shield you, your reward shall be very great. + +And Abram said, Master +and Lord, what will you give me? whereas I am departing without a child, but the son of Masek my home-born female slave, this Eliezer of Damascus +is my heir. + +And Abram said, +I am grieved since you have given me no seed, but my home-born +servant shall succeed me. + +And immediately there was a voice of the Lord to him, saying, This shall not be your heir; but he that shall come out of you shall be your heir. + +And he brought him out and said to him, Look up now to heaven, and count the stars, if you shall be able to number them fully, and he said, +15:5 +Rom 4:18 + Thus shall your seed be. + + +15:6 +Rom 4:3 + And Abram believed God, and it was counted to him for righteousness. + +And he said to him, I am God that brought you out of the land of the Chaldeans, so as to give you this land to inherit. + +And he said, Master +and Lord, how shall I know that I shall inherit it? + +And he said to him, Take for me an heifer in her third year, and a she-goat in her third year, and a ram in his third year, and a dove and a pigeon. + +So he took to him all these, and divided them in the midst, and set them opposite to each other, but the birds he did not divide. + +And birds came down upon the bodies, +even upon the divided parts of them, and Abram +15:11 +Or, drove them away. The LXX. seem to have read ישנ for שינ + sat down by them. + +And about sunset a trance fell upon Abram, and behold! a great gloomy terror falls upon him. + +And it was said to Abram, You shall surely know that your seed shall be a sojourner in a land not their own, and they shall enslave them, and afflict them, and humble them four hundred years. + +And the nation whoever they shall serve I will judge; and after this, they shall come forth hither with much +15:14 +Lit. baggage. + property. + +But you shall depart to your fathers in peace, nourished in a good old age. + +And in the fourth generation they shall return hither, for the sins of the Amorites are not yet filled up, even until now. + +And when the sun was about to set, there was a flame, and behold a smoking furnace and lamps of fire, which passed between these divided pieces. + +In that day the Lord made a covenant with Abram, saying, To your seed I will give this land, from the river of Egypt to the great river Euphrates. + +The Kenites, and the Kenezites, and the Kedmoneans, + +and the Chettites, and the Pherezites, and the Raphaim, + +and the Amorites, and the Chananites, and the Evites, and the Gergesites, and the Jebusites. + +

+ + +

And Sara the wife of Abram bore him no children; and she had an Egyptian maid, whose name was Agar. + +And Sara said to Abram, Behold, the Lord has restrained me from bearing, go therefore in to my maid, that I may get children for myself through her. And Abram listened to the voice of Sara. + +So Sara the wife of Abram having taken Agar the Egyptian her handmaid, after Abram had lived ten years in the land of Chanaan, gave her to Abram her husband as a wife to him. + +And he went in to Agar, and she conceived, and saw that she was with child, and her mistress was dishonored before her. + +And Sara said to Abram, I am injured by you; I gave my handmaid into your bosom, and when I saw that she was with child, I was dishonored before her. The Lord judge between me and you. + +And Abram said to Sara, Behold your handmaid is in your hands, use her as it may seem good to you. And Sara afflicted her, and she fled from her face. + +And an angel of the Lord found her by the fountain of water in the wilderness, by the fountain in the way to Sur. + +And the angel of the Lord said to her, Agar, Sara's maid, whence come you, and wither go you? and she said, I am fleeing from the face of my mistress Sara. + +And the angel of the Lord said to her, Return to your mistress, and submit yourself under her hands. + +And the angel of the Lord said to her, I will surely multiply your seed, and it shall not be numbered for multitude. + +And the angel of the Lord said to her, Behold you are with child, and shall bear a son, and shall call his name Ismael, for the Lord has listened to your humiliation. + +He shall be a wild man, his hands against all, and the hands of all against him, and he shall dwell in the presence of all his brethren. + +And she called the name of the Lord God who spoke to her, You are God who sees me; for she said, For I have openly seen him that appeared to me. + +Therefore she called the well, The well of him whom I have openly seen; behold it is between Cades and Barad. + +And Agar bore a son to Abram; and Abram called the name of his son which Agar bore to him, Ismael. + +And Abram was eighty-six years old, when Agar bore Ismael to Abram. + +

+ + +

And Abram was ninety-nine years old, and the Lord appeared to Abram and said to him, I am your God, be well-pleasing before me, and be blameless. + +And I will establish my covenant between me and you, and I will multiply you exceedingly. + +And Abram fell upon his face, and God spoke to him, saying, + +And I, behold! my covenant +is with you, and you shall be a father of a multitude of nations. + +And your name shall no more be called Abram, but your name shall be Abraam, +17:5 +Rom 4:17 + for I have made you a father of many nations. + +And I will increase you very exceedingly, and I will make nations of you, and kings shall come out of you. + +And I will establish my covenant between you and your seed after you, to their generations, for an everlasting covenant, to be your God, and +the God of your seed after you. + +And I will give to you and to your seed after you the land wherein you sojourn, even all the land of Chanaan for an everlasting possession, and I will be to them a God. + +And God said to Abraam, You also shall fully keep my covenant, you and your seed after you for their generations. + +And this +is the covenant which you shall fully keep between me and you, and between your seed after you for their generations; every male of you shall be circumcised. + +And you⌃ shall be circumcised in the flesh of your foreskin, and it shall be for a sign of a covenant between me and you. + +And the child of eight days +old shall be circumcised by you, every male throughout your generations, and +the servant born in the house and he that is bought with money, of every son of a stranger, who is not of your seed. + +He that is born in your house, and he that is bought with money shall be surely circumcised, and my covenant shall be on your flesh for an everlasting covenant. + +And the uncircumcised male, who shall not be circumcised in the flesh of his foreskin on the eighth day, that soul shall be utterly destroyed from its family, for he has broken my covenant. + +And God said to Abraam, Sara your wife—her name shall not be called Sara, Sarrha shall be her name. + +And I will bless her, and give you a son of her, and I will bless him, and he shall become nations, and kings of nations shall be of him. + +And Abraam fell upon his face, and laughed; and spoke in his heart, saying, Shall there be a child to one who is one hundred years old, and shall Sarrha who is ninety years old, bear? + +And Abraam said to God, Let this Ismael live before you. + +And God said to Abraam, Yes, behold, Sarrha your wife shall bear you a son, and you shall call his name Isaac; and I will establish my covenant with him, for an everlasting covenant, to be a God to him and to his seed after him. + +And concerning Ismael, behold, I have heard you, and, behold, I have blessed him, and will increase him and multiply him exceedingly; twelve nations shall he beget, and I will make him a great nation. + +But I will establish my covenant with Isaac, whom Sarrha shall bear to you at this time, in the next year. + +And he left off speaking with him, and God went up from Abraam. + +And Abraam took Ismael his son, and all his home-born +servants, and all those bought with money, and every male of the men in the house of Abraam, and he circumcised their foreskins in the time of that day, according as God spoke to him. + +And Abraam was ninety-nine years old, when he was circumcised in the flesh of his foreskin. + +And Ismael his son was thirteen years old when he was circumcised in the flesh of his foreskin. + +And at the period of that day, Abraam was circumcised, and Ismael his son, + +and all the men of his house, both those born in the house, and those bought with money of foreign nations. + +

+ + +

And God appeared to him by the oak of Mambre, as he sat by the door of his tent at noon. + +And he lifted up his eyes and saw, and behold! three men stood before him; and having seen them he ran to meet them from the door of his tent, and did obeisance to the ground. + +And he said, Lord, if indeed I have found grace in your sight, pass not by your servant. + +Let water now be brought, and let them wash your feet, and do you⌃ refresh +yourselves under the tree. + +And I will bring bread, and you⌃ shall eat, and after this you⌃ shall depart on your journey, on account of which +refreshment you⌃ have turned aside to your servant. And he said, So do, as you have said. + +And Abraam hasted to the tent to Sarrha, and said to her, Hasten, and knead three measures of fine flour, and make cakes. + +And Abraam ran to the kine, and took a young calf, tender and good, and gave it to his servant, and he hasted to dress it. + +And he took butter and milk, and the calf which he had dressed; and he set them before them, and they did eat, and he stood by them under the tree. + +And he said to him, Where is Sarrha your wife? And he answered and said, Behold! in the tent. + +And he said, +18:10 +Rom 9:9 + I will return and come to you according to this period seasonably, and Sarrha your wife shall have a son; and Sarrha heard at the door of the tent, being behind him. + +And Abraam and Sarrha were old, advanced in days, and the custom of women ceased with Sarrha. + +And Sarrha laughed in herself, saying, +18:12 +Gr. The difference turns on the word Heb. pleasure. Gr until now. + The thing has not as yet happened to me, even until now, and my lord is old. + +And the Lord said to Abraam, Why is it that Sarrha has laughed in herself, saying, Shall I then indeed bear? but I am grown old. + +Shall anything be impossible with the Lord? At this time I will return to you seasonably, and Sarrha shall have a son. + +But Sarrha denied, saying, I did not laugh, for she was afraid. And he said to her, Nay, but you did laugh. + +And the men having risen up from thence looked towards Sodom and Gomorrha. And Abraam went with them, attending them on their journey. + +And the Lord said, Shall I hide from Abraam my servant what things I intend to do? + +But Abraam shall become a great and populous nation, and in him shall all the nations of the earth be blest. + +For I know that he will order his sons, and his house after him, and they will keep the ways of the Lord, to do justice and judgment, that the Lord may bring upon Abraam all things whatever he has spoken to him. + +And the Lord said, The cry of Sodom and Gomorrha has been increased towards me, and their sins are very great. + +I will therefore go down and see, if they completely +18:21 +Gr. συντελόῦνται. Heb. A.V. have done altogether. + correspond with the cry which comes to me, and if not, that I may know. + +And the men having departed thence, came to Sodom; and Abraam was still standing before the Lord. + +And Abraam drew near and said, Wouldest you destroy the righteous with the wicked, and shall the righteous be as the wicked? + +Should there be fifty righteous in the city, will you destroy them? will you not spare the whole place for the sake of the fifty righteous, if they be in it? + +By no means shall you do as this thing +is so as to destroy the righteous with the wicked, so the righteous shall be as the wicked: by no means. You that judge the whole earth, shall you not do right? + +And the Lord said, If there should be in Sodom fifty righteous in the city, I will spare the whole city, and the whole place for their sakes. + +And Abraam answered and said, Now I have begun to speak to my Lord, and I am earth and ashes. + +But if the fifty righteous should be diminished to forty-five, will you destroy the whole city because of the five +lacking? And he said, I will not destroy it, if I should find there forty-five. + +And he continued to speak to him still, and said, But if there should be found there forty? And he said, I will not destroy it for the forty's sake. + +And he said, Will there be anything +against me, Lord, if I shall speak? but if there be found there thirty? And he said, I will not destroy it for the thirty's sake. + +And he said, Since I am able to speak to the Lord, what if there should be found there twenty? And he said, I will not destroy it, if I should find there twenty. + +And he said, Will there be anything +against me, Lord, if I speak yet once? but if there should be found there ten? And he said, I will not destroy it for the ten's sake. + +And the Lord departed, when he left off speaking to Abraam, and Abraam returned to his place. + +

+ + +

And the two angels came to Sodom at evening. And Lot sat by the gate of Sodom, and Lot having seen them, rose up to meet them, and he worshipped with his face to the ground, and said, + +Behold! +my lords, turn aside to the house of your servant, and rest from your journey, and wash your feet, and having risen early in the morning you⌃ shall depart on your journey. And they said, Nay, but we will lodge in the street. + +And he constrained them, and they turned aside to him, and they entered into his house, and he made a feast for them, and baked unleavened cakes for them, and they did eat. + +But before they went to sleep, the men of the city, the Sodomites, compassed the house, both young and old, all the people together. + +And they called out Lot, and said to him, Where are the men that went in to you this night? bring them out to us that we may be with them. + +And Lot went out to them to the porch, and he shut the door after him, + +and said to them, By no means, brethren, do not act villanously. + +But I have two daughters, who have not known a man. I will bring them out to you, and do you⌃ use them as it may please you, only do not injury to these men, to avoid which they came under the shelter of my +19:8 +Lit. beams. + roof. + +And they said to him, Stand back there, you came in to sojourn, was it also to judge? Now then we would harm you more than them. And they pressed hard on the man, even Lot, and they drew near to break the door. + +And the men stretched forth their hands and drew Lot in to them into the house, and shut the door of the house. + +And they struck the men that were at the door of the house with blindness, both small and great, and they were wearied with seeking the door. + +And the men said to Lot, Have you here sons-in-law, or sons or daughters, or if you have any other friend in the city, bring them out of this place. + + +19:13 +See Note, Lam 3:21. + For we are going to destroy this place; for their cry has been raised up before the Lord, and the Lord has sent us to destroy +19:13 +αὐτήν. Scil. πόλιν. + it. + +And Lot went out, and spoke to his sons-in-law who had married his daughters, and said, Rise up, and depart out of this place, for the Lord is about to destroy the city; but he seemed to be speaking absurdly before his sons-in-law. + +But when it was morning, the angels hastened Lot, saying, Arise and take your wife, and your two daughters whom you have, and go forth; lest you also be destroyed with the iniquities of the city. + +And they were troubled, and the angels laid hold on his hand, and the hand of his wife, and the hands of his two daughters, in that the Lord spared him. + +And it came to pass when they brought them out, that they said, Save your own life by all means; look not round to that which is behind, nor stay in all the country round about, escape to the mountain, lest perhaps you be overtaken together with them. + +And Lot said to them, I pray, Lord, + +since your servant has found mercy before you, and you have magnified your righteousness, in what you do towards me that my soul may live, —but I shall not be able to escape to the mountain, lest perhaps the calamity overtake me and I die. + +Behold this city is near for me to escape there, which is a small one, and there shall I be preserved, is it not little? and my soul shall live because of you. + +And he said to him, Behold, I have had respect to +19:21 +Gr. your countenance. + you also about this thing, that I should not overthrow the city about which you have spoken. + +Hasten therefore to escape there, for I shall not be able to do anything until you are come there; therefore he called the name of that city, Segor. + +The sun was risen upon the earth, when Lot entered into Segor. + +And the Lord rained on Sodom and Gomorrha brimstone and fire from the Lord out of heaven. + +And he overthrew these cities, and all the country round about, and all that lived in the cities, and the plants springing out of the ground. + +And his wife looked back, and she became a pillar of salt. + +And Abraam rose up early to go to the place, where he had stood before the Lord. + +And he looked towards Sodom and Gomorrha, and towards the surrounding country, and saw, and behold a flame went up from the earth, as the smoke of a furnace. + +And it came to pass that when God destroyed all the cities of the region round about, God remembered Abraam, and sent Lot out of the midst of the overthrow, when the Lord overthrew those cities in which Lot lived. + +And Lot went up out of Segor, and lived in the mountain, he and his two daughters with him, for he feared to dwell in Segor; and he lived in a cave, he and his two daughters with him. + +And the elder said to the younger, Our father is old, and there is no one on the earth who shall come in to us, as it is fit in all the earth. + +Come and let us make our father drink wine, and let us sleep with him, and let us raise up seed from our father. + +So they made their father drink wine in that night, and the elder went in and lay with her father that night, and he knew not when he slept and when he rose up. + +And it came to pass on the morrow, that the elder said to the younger, Behold, I slept yesternight with our father, let us make him drink wine in this night also, and do you go in and sleep with him, and let us raise up seed of our father. + +So they made their father drink wine in that night also, and the younger went in and slept with her father, and he knew not when he slept, nor when he arose. + +And the two daughters of Lot conceived by their father. + +And the elder bore a son and called his name Moab, saying, +He is of my father. This is the father of the Moabites to this present day. + +And the younger also bore a son, and called his name Amman, saying, The son of my family. This is the father of the Ammanites to this present day. + +

+ + +

And Abraam removed thence to the southern country, and lived between Cades and Sur, and sojourned in Gerara. + +And Abraam said concerning Sarrha his wife, She is my sister, for he feared to say, She is my wife, lest at any time the men of the city should kill him for her sake. So Abimelech king of Gerara sent and took Sarrha. + +And God came to Abimelech by night in sleep, and said, Behold, you die for the woman, whom you have taken, whereas she has lived with a husband. + +But Abimelech had not touched her, and he said, Lord, will you destroy an ignorantly +sinning and just nation? + +Said he not to me, She is my sister, and said she not to me, He is my brother? with a pure heart and in the righteousness of my hands have I done this. + +And God said to him in sleep, Yes, I knew that you did this with a pure heart, and I spared you, so that you should not sin against me, therefore I suffered you not to touch her. + +But now return the man his wife; for he is a prophet, and shall pray for you, and you shall live; but if you restore her not, know that you shall die and all your. + +And Abimelech rose early in the morning, and called all his servants, and he spoke all these words in their ears, and all the men feared exceedingly. + +And Abimelech called Abraam and said to him, What is this that you have done to us? Have we sinned against you, that you have brought upon me and upon my kingdom a great sin? You have done to me a deed, which no one ought to do. + +And Abimelech said to Abraam, What have you seen in +me that you have done this? + +And Abraam said, Why I said, Surely there is not the worship of God in this place, and they will kill me because of my wife. + +For truly she is my sister by my father, but not by my mother, and she became my wife. + +And it came to pass when God brought me forth out of the house of my father, that I said to her, This righteousness you shall perform to me, in every place into which we may enter, say of me, He is my brother. + +And Abimelech took a thousand +20:14 +Gr. didrachma. + pieces of silver, and sheep, and calves, and servants, and maidservants, and gave them to Abraam, and he returned him Sarrha his wife. + +And Abimelech said to Abraam, Behold, my land is before you, dwell wherever it may please you. + +And to Sarrha he said, Behold, I have given your brother a thousand pieces of silver, those shall be to you for the price of your countenance, and to all the women with you, and speak the truth in all things. + +And Abraam prayed to God, and God healed Abimelech, and his wife, and his women servants, and they bore children. + +Because the Lord had fast closed from without every womb in the house of Abimelech, because of Sarrha Abraam's wife. + +

+ + +

And the Lord visited Sarrha, as he said, and the Lord did to Sarrha, as he spoke. + +And she conceived and bore to Abraam a son in old age, at the set time according as the Lord spoke to him. + +And Abraam called the name of his son that was born to him, whom Sarrha bore to him, Isaac. + +And Abraam circumcised Isaac on the eighth day, as God commanded him. + +And Abraam was one hundred years old when Isaac his son was born to him. + +And Sarrha said, The Lord has made laughter for me, for whoever shall hear shall rejoice with me. + +And she said, Who shall say to Abraam that Sarrha suckles a child? for I have born a child in my old age. + +And the child grew and was weaned, and Abraam made a great feast the day that his son Isaac was weaned. + +And Sarrha having seen the son of Agar the Egyptian who was born to Abraam, sporting with Isaac her son, + +then she said to Abraam, +21:10 +Gal 4:30 + Cast out this bondwoman and her son, for the son of this bondwoman shall not inherit with my son Isaac. + +But the +21:11 +Gr. Gr. saying, or matter. + word appeared very hard before Abraam concerning his son. + +But God said to Abraam, Let it not be hard before you concerning the child, and concerning the bondwoman; in all things whatever Sarrha shall say to you, hear her voice, for +21:12 +Rom 9:7 + in Isaac shall your seed be called. + +And moreover I will make the son of this bondwoman a great nation, because he is your seed. + +And Abraam rose up in the morning and took loaves and a skin of water, and gave +them to Agar, and he put the child on her shoulder, and sent her away, and she having departed wandered in the wilderness +21:14 +Or, near Beersheba. + near the well of the oath. + +And the water failed out of the skin, and she cast the child under a fir tree. + +And she departed and sat down opposite him at a distance, as it were a bow-shot, for she said, Surely I can’t see the death of my child: and she sat opposite him, and the child cried aloud and wept. + +And God heard the voice of the child from the place where he was, and an angel of God called Agar out of heaven, and said to her, What is it, Agar? fear not, for God has heard the voice of the child from the place where he is. + +Rise up, and take the child, and hold him in your hand, for I will make him a great nation. + +And God opened her eyes, and she saw a well +21:19 +Or, Gr. living. + of springing water; and she went and filled the skin with water, and gave the child drink. + +And God was with the child, and he grew and lived in the wilderness, and became an archer. + +And he lived in the wilderness, and his mother took him a wife out of Pharan of Egypt. + +And it came to pass at that time that Abimelech spoke, and Ochozath +21:22 +Not in the Heb. friend of bridegroom, or attendant at marriage. + his friend, and Phichol the chief captain of his host, to Abraam, saying, God is with you in all things, whatever you may do. + +Now therefore swear to me by God that you will not injure me, nor my seed, nor my name, but according to the righteousness which I have performed with you you shall deal with me, and with the land in which you have sojourned. + +And Abraam said, I will swear. + +And Abraam reproved Abimelech because of the wells of water, which the servants of Abimelech took away. + +And Abimelech said to him, I know not who has done this thing to you, neither did you tell it me, neither heard I it but only today. + +And Abraam took sheep and calves, and gave them to Abimelech, and both made a covenant. + +And Abraam set seven ewe-lambs by themselves. + +And Abimelech said to Abraam, What are these seven ewe-lambs which you have set alone? + +And Abraam said, You shall receive the seven ewe-lambs of me, that they may be for me as a witness, that I dug this well. + +Therefore he named the name of that place, The Well of the Oath, for there they both swore. + +And they made a covenant at the well of the oath. And there rose up Abimelech, Ochozath his friend, and Phichol the commander-in-chief of his army, and they returned to the land of the Phylistines. + +And Abraam planted a field at the well of the oath, and called there on the name of the Lord, the everlasting God. + +And Abraam sojourned in the land of the Phylistines many days. + +

+ + +

And it came to pass after these things that God tempted Abraam, and said to him, Abraam, Abraam; and he said, Behold! I +am here. + +And he said, Take your son, the beloved one, whom you have loved—Isaac, and go into the high land, and offer him there for a whole burnt offering on one of the mountains which I will tell you of. + +And Abraam rose up in the morning and saddled his ass, and he took with him two servants, and Isaac his son, and having split wood for a whole burnt offering, he arose and departed, and came to the place of which God spoke to him, + +on the third day; and Abraam having +22:4 +Lit. look up with. + lifted up his eyes, saw the place afar off. + +And Abraam said to his servants, Sit you⌃ here with the ass, and I and the lad will proceed thus far, and having worshipped we will return to you. + +And Abraam took the wood of the whole burnt offering, and laid it on Isaac his son, and he took into his hands both the fire and the +22:6 +μάχαιραν, a short dagger used both for defence and sacrifice, etc. + knife, and the two went together. + +And Isaac said to Abraam his father, Father. And he said, What is it, son? And he said, Behold the fire and the wood, where is the sheep for a whole burnt offering? + +And Abraam said, God will provide himself a sheep for a whole burnt offering, +my son. And both having gone together, + +came to the place which God spoke of to him; and there Abraam built the altar, and laid the wood on it, and having bound the feet of Isaac his son together, he laid him on the altar upon the wood. + +And Abraam stretched forth his hand to take the knife to kill his son. + +And an angel of the Lord called him out of heaven, and said, Abraam, Abraam. And he said, Behold, I +am here. + +And he said, Lay not your hand upon the child, neither do anything to him, for now I know that you fear God, and for my sake you have not spared your beloved son. + +And Abraam lifted up his eyes and saw, and behold! a ram caught by his horns in a +22:13 +Heb. in a thicket. + plant of Sabec; and Abraam went and took the ram, and offered him up for a whole burnt offering in the place of Isaac his son. + +And Abraam called the name of that place, The Lord has seen; that they might say today, In the mount the Lord was seen. + +And an angel of the Lord called Abraam the second time out of heaven, saying, I have sworn by myself, says the Lord, because you have done this thing, and on my account have not spared your beloved son, + + +22:16 +Heb 6:14 + surely blessing I will bless you, and multiplying I will multiply your seed as the stars of heaven, and as the sand which is by the shore of the sea, and your seed shall inherit the cities of their enemies. + +And +22:17 +Acts 3:25 + in your seed shall all the nations of the earth be blessed, because you have listened to my voice. + +And Abraam returned to his servants, and they arose and went together to the well of the oath; and Abraam lived at the well of the oath. + +And it came to pass after these things, that it was reported to Abraam, +22:19 +Men, understood. + saying, Behold, Melcha herself too has born sons to Nachor your brother, + +Uz the firstborn, and Baux his brother, and Camuel the father of the Syrians, and Chazad, and + +Azav and Phaldes, and Jeldaph, and Bathuel, and Bathuel begot Rebecca; + +these are eight sons, which Melcha bore to Nachor the brother of Abraam. + +And his concubine whose name was Rheuma, she also bore Tabec, and Taam, and Tochos, and Mocha. + +

+ + +

And the life of Sarrha was one hundred and twenty-seven years. + +And Sarrha died in the city of Arboc, which is in the valley, this is Chebron in the land of Chanaan; and Abraam came to lament for Sarrha and to mourn. + +And Abraam stood up from before his dead; and Abraam spoke to the sons of Chet, saying, + +I am a sojourner and a stranger among you, give me therefore possession of a burying-place among you, and I will bury my dead away from me. + +And the sons of Chet answered to Abraam, saying, Not so, Sir, + +but hear us; you are in the midst of us a king from God; bury your dead in our choice sepulchres, for not one of us will by any means withhold his sepulchre from you, so that you should not bury your dead there. + +And Abraam rose up and did obeisance to the people of the land, to the sons of Chet. + +And Abraam spoke to them, saying, If you⌃ have it in your mind that I should bury my dead out of my sight, listen to me, and speak for me to Ephron the son Saar. + +And let him give me the double cave which he has, which is in a part of his field, let him give it me for the money it is worth for possession of a burying-place among you. + +Now Ephron was sitting in the midst of the children of Chet, and Ephron the Chettite answered Abraam and spoke in the hearing of the sons of Chet, and of all who entered the city, saying, + + +23:11 +Gr. be with me. + Attend to me, my lord, and hear me, I give to you the field and the cave which is in it; I have given it you before all my country men; bury your dead. + +And Abraam did obeisance before the people of the land. + +And he said in the ears of Ephron before the people of the land, Since you are on my side, hear me; take the price of the field from me, and I will bury my dead there. + +But Ephron answered Abraam, saying, + +Nay, my lord, I have heard indeed, the land +is worth four hundred silver didrachmas, but what can this be between me and you? nay, do you bury your dead. + +And Abraam listened to Ephron, and Abraam rendered to Ephron the money, which he mentioned in the ears of the sons of Chet, four hundred didrachmas of silver approved with merchants. + +And the field of Ephron, which was in Double Cave, which is opposite Mambre, the field and the cave, which was in it, and every tree which was in the field, and whatever is in its borders round about, were made sure in its borders round about, were made sure + +to Abraam for a possession, before the sons of Chet, and all that entered into the city. + +After this Abraam buried Sarrha his wife in the Double Cave of the field, which is opposite Mambre, this is Chebron in the land of Chanaan. + +So the field and the cave which was in it were made sure to Abraam for possession of a burying place, by the sons of Chet. + +

+ + +

And Abraam was old, advanced in days, and the Lord blessed Abraam in all things. + +And Abraam said to his servant the elder of his house, who had rule over all his possessions, Put your hand under my thigh, + +and I will adjure you by the Lord the God of heaven, and the God of the earth, that you take not a wife for my son Isaac from the daughters of the Chananites, with whom I dwell, in the midst of them. + +But you shall go instead to my country, where I was born, and to my tribe, and you shall take from thence a wife for my son Isaac. + +And the servant said to him, Shall I carry back your son to the land whence you came forth, +24:5 +See the use of μή ποτε in a somewhat similar case, 2 Tim 2:25. + if haply the woman should not be willing to return with me to this land? + +And Abraam said to him, Take heed to yourself that you carry not my son back there. + +The Lord the God of heaven, and the God of the earth, who took me out of my father's house, and out of the land whence I sprang, who spoke to me, and who swore to me, saying, I will give this land to you and to your seed, he shall send his angel before you, and you shall take a wife to my son from thence. + +And if the woman should not be willing to come with you into this land, you shall be clear from my oath, only carry not my son there again. + +And the servant put his hand under the thigh of his master Abraam, and swore to him concerning this matter. + +And the servant took ten camels of his master's camels, and +he took of all the goods of his master with him, and he arose and went into Mesopotamia to the city of Nachor. + +And he +24:11 +Heb. caused to kneel down. Gr. caused to sleep. + rested his camels without the city by the well of water towards evening, when damsels go forth to draw water. + +And he said, O Lord God of my master Abraam, prosper my way before me to day, and deal mercifully with my master Abraam. + +Behold! I stand by the well of water, and the daughters of them that inhabit the city come forth to draw water. + +And it shall be, the virgin to whoever I shall say, Incline your water-pot, that I may drink, and she shall say, Drink you, and I will give your camels drink, until they shall have done drinking—even this one you have prepared for your servant Isaac, and hereby shall I know that you have dealt mercifully with my master Abraam. + +And it came to pass before he had done speaking in his mind, that behold, Rebecca the daughter of Bathuel, the son of Melcha, the wife of Nachor, and +the same +24:15 +i.e. Nachor. + the brother of Abraam, came forth, having a water-pot on her shoulders. + +And the virgin was very beautiful in appearance, she was a virgin, a man had not known her; and she went down to the well, and filled her water-pot, and came up. + +And the servant ran up to meet her, and said, Give me a little water to drink out of your pitcher; + +and she said, Drink, Sir; and she hasted, and let down the pitcher upon her arm, and gave him to drink, till he ceased drinking. + +And she said, I will also draw water for your camels, till they shall all have drunk. + +And she hasted, and emptied the water-pot into the trough, and ran to the well to draw again, and drew water for all the camels. + +And the man took great notice of her, and remained silent to know whether the Lord had made his way prosperous or not. + +And it came to pass when all the camels ceased drinking, that the man took golden ear-rings, each of a drachm weight, and he +put two bracelets on her hands, their weight was ten pieces of gold. + +And he asked her, and said, Whose daughter are you? Tell me if there is room for us to lodge with your father. + +And she said to him, I am the daughter of Bathuel the son of Melcha, whom she bore to Nachor. + +And she said to him, We have both straw and much provender, and a place for resting. + +And the man being well pleased, worshipped the Lord, + +and said, Blessed be the Lord the God of my master Abraam, who has not suffered his righteousness to fail, nor his truth from my master, and the Lord has brought me prosperously to the house of the brother of my lord. + +And the damsel ran and reported to the house of her mother according to these words. + +And Rebecca had a brother whose name was Laban; and Laban ran out to meet the man, to the well. + +And it came to pass when he saw the ear-rings and the bracelets on the hands of his sister, and when he heard the words of Rebecca his sister, saying, Thus the man spoke to me, that he went to the man, as he stood by the camels at the well. + +And he said to him, Come in hither, you blessed of the Lord, why stand you without, whereas I have prepared the house and a place for the camels? + +And the man entered into the house, and unloaded the camels, and gave the camels straw and provender, and water to wash his feet, and the feet of the men that were with him. + +And he set before them loaves to eat; but he said, I will not eat, until I have +24:33 +Gr. spoken my words. + told my errand. And he said, Speak on. + +And he said, I am a servant of Abraam; + +and the Lord has blessed my master greatly, and he is exalted, and he has given him sheep, and calves, and silver, and gold, servants and servant-maids, camels, and asses. + +And Sarrha my master's wife bore one son to my master after he had grown old; and he gave him whatever he had. + +And my master caused me to swear, saying, You shall not take a wife to my son of the daughters of the Chananites, among whom I sojourn in their land. + +But you shall go to the house of my father, and to my tribe, and you shall take thence a wife for my son. + +And I said to my master, Haply the woman will not go with me. + +And he said to me, The Lord God to whom I have been acceptable in his presence, himself shall send out his angel with you, and shall prosper your journey, and you shall take a wife for my son of my tribe, and of the house of my father. + +Then shall you be clear from my curse, for whenever you shall have come to my tribe, and they shall not give her to you, then shall you be clear from my oath. + +And having come this day to the well, I said, Lord God of my master Abraam, if you prosper my journey on which I am now going, + +behold, I stand by the well of water, and the daughters of the men of the city come forth to draw water, and it shall be +that the damsel to whom I shall say, Give me a little water to drink out of your pitcher, + +and she shall say to me, Both drink you, and I will draw water for your camels, this +shall be the wife whom the Lord has prepared for his own servant Isaac; and hereby shall I know that you have wrought mercy with my master Abraam. + +And it came to pass before I had done speaking in my mind, straightway Rebecca came forth, having her pitcher on her shoulders; and she went down to the well, and drew water; and I said to her, Give me to drink. + +And she hasted and let down her pitcher on her arm +24:46 +Gr. from herself. + from her head, and said, Drink you, and I will give your camels drink; and I drank, and she gave the camels drink. + +And I asked her, and said, Whose daughter are you? tell me; and she said, I am daughter of Bathuel the son of Nachor, whom Melcha bore to him; and I put on her the ear-rings, and the bracelets on her hands. + +And being well-pleased I worshipped the Lord, and I blessed the Lord the God of my master Abraam, who has prospered me in a true way, so that I should take the daughter of my master's brother for his son. + +If then you⌃ +will deal mercifully and justly with my lord, +tell me, and if not, tell me, that I may turn to the right hand or to the left. + +And Laban and Bathuel answered and said, This matter has come forth from the Lord, we shall not be able to answer you bad or good. + +Behold, Rebecca is before you, take her and +24:51 +Gr. run away. + go away, and let her be wife to the son of your master, as the Lord has said. + +And it came to pass when the servant of Abraam heard these words, he bowed himself to the Lord down to the earth. + +And the servant having brought forth jewels of silver and gold and raiment, gave them to Rebecca, and gave gifts to her brother, and to her mother. + +And both he and the men with him ate and drank and went to sleep. And he arose in the morning and said, Send me away, that I may go to my master. + +And her brethren and her mother said, Let the virgin remain with us about ten days, and after that she shall depart. + +But he said to them, Hinder me not, for the Lord has prospered my journey for me; send me away, that I may depart to my master. + +And they said, Let us call the damsel, and enquire at her mouth. + +And they called Rebecca, and said to her, Will you go with this man? and she said, I will go. + +So they sent forth Rebecca their sister, and her goods, and the servant of Abraam, and his attendants. + +And they blessed Rebecca, and said to her, You are our sister; become you thousands of myriads, and let your seed possess the cities of their enemies. + +And Rebecca rose up and her maidens, and they mounted the camels and went with the man; and the servant having taken up Rebecca, departed. + +And Isaac went through the wilderness to the well of the vision, and he lived in the land toward the south. + +And Isaac went forth into the plain toward evening to meditate; and having lifted up his eyes, he saw camels coming. + +And Rebecca lifted up her eyes, and saw Isaac; and she alighted briskly from the camel, + +and said to the servant, Who is that man that walks in the plain to meet us? And the servant said, This is my master; and she took her veil and covered herself. + +And the servant told Isaac all +24:66 +Lit. all the words which. Hebraism. + that he had done. + +And Isaac went into the house of his mother, and took Rebecca, and she became his wife, and he loved her; and Isaac was comforted for Sarrha his mother. + +

+ + +

And Abraam again took a wife, whose name was Chettura. + +And she bore to him Zombran, and Jezan, and Madal, and Madiam, and Jesboc, and Soie. + +And Jezan begot Saba and Dedan. And the sons of Dedan were the Assurians and the Latusians, and Laomim. + +And the sons of Madiam +were Gephar and Aphir, and Enoch, and Abeida, and Eldaga; all these were sons of Chettura. + +But Abraam gave all his possessions to Isaac his son. + +But to the sons of his concubines Abraam gave gifts, and he sent them away from his son Isaac, while he was yet living, to the east into the country of the east. + +And these +were the years of the days of the life of Abraam as many as he lived, one hundred and seventy-five years. + +And Abraam failing died in a good old age, an old man and full of days, and was added to his people. + +And Isaac and Ismael his sons buried him in the double cave, in the field of Ephron the son of Saar the Chettite, which is over against Mambre: + + +even the field and the cave which Abraam bought of the sons of Chet; there they buried Abraam and Sarrha his wife. + +And it came to pass after Abraam was dead, that God blessed Isaac his son, and Isaac lived by the well of the vision. + +And these +are the generations of Ismael the son of Abraam, whom Agar the Egyptian the handmaid of Sarrha bore to Abraam. + +And these +are the names of the sons of Ismael, according to the names of their generations. The firstborn of Ismael, Nabaioth, and Kedar, and Nabdeel, and Massam, + +and Masma, and Duma, and Masse, + +and Choddan, and Thaeman, and Jetur, and Naphes, and Kedma. + +These +are the sons of Ismael, and these are their names in their tents and in their dwellings, twelve princes according to their nations. + +And these +are the years of the life of Ismael, one hundred and thirty-seven years; and he failed and died, and was added to his +25:17 +Gr. family. + fathers. + +And he lived from Evilat to Sur, which is opposite Egypt, until one comes to the Assyrians; he lived in the presence of all his brethren. + +And these +are the generations of Isaac the son of Abraam. + +Abraam begot Isaac. And Isaac was forty years old when he took as wife Rebecca, daughter of Bathuel the Syrian, out of Syrian Mesopotamia, sister of Laban the Syrian. + +And Isaac prayed the Lord concerning Rebecca his wife, because she was barren; and the Lord heard him, and his wife Rebecca conceived in her womb. + +And the babes leaped within her; and she said, If it will be so with me, why is this to me? And she went to enquire of the Lord. + +And the Lord said to her, There are two nations in your womb, and two peoples shall be separated from your belly, and one people shall excel the other, and the +25:23 +Gr. the greater shall serve the less. Rom 9:12. + elder shall serve the younger. + +And the days were fulfilled that she should be delivered, and she had twins in her womb. + +And the first came out red, hairy all over like a skin; and she called his name Esau. + +And after this came forth his brother, and his hand took hold of the heel of Esau; and she called his name Jacob. And Isaac was sixty years old when Rebecca bore them. + +And the lads grew, and Esau was a man skilled in hunting, dwelling in the country, and Jacob a simple man, dwelling in a house. + +And Isaac loved Esau, because his venison was his food, but Rebecca loved Jacob. + +And Jacob cooked pottage, and Esau came from the plain, fainting. + +And Esau said to Jacob, Let me taste of that red pottage, because I am fainting; therefore his name was called Edom. + +And Jacob said to Esau, Sell me this day your birthright. + +And Esau said, Behold, I am going to die, and for what good does this birthright +belong to me? + +And Jacob said to him, Swear to me this day; and he swore to him; and Esau sold his birthright to Jacob. + +And Jacob gave bread to Esau, and pottage of lentiles; and he ate and drank, and he arose and departed; so Esau slighted his birthright. + +

+ + +

And there was a famine in the land, besides the former famine, which was in the time of Abraam; and Isaac went to Abimelech the king of the Phylistines to Gerara. + +And the Lord appeared to him and said, Go not down to Egypt, but dwell in the land, which I shall tell you of. + +And sojourn in this land; and I will be with you, and bless you, for I will give to you and to your seed all this land; and I will establish my oath which I swore to your father Abraam. + +And I will multiply your seed as the stars of heaven; and I will give to your seed all this land, and all the nations of the earth shall be blest in your seed. + +Because Abraam your father listened to my voice, and kept my injunctions, and my commandments, and my ordinances, and my statutes. + +And Isaac lived in Gerara. + +And the men of the place questioned him concerning Rebecca his wife, and he said, She is my sister, for he feared to say, She is my wife, lest at any time the men of the place should kill him because of Rebecca, because she was +26:7 +Gr. fair of countenance. + fair. + +And he remained there a long time, and Abimelech the king of Gerara leaned to look through the window, and saw Isaac sporting with Rebecca his wife. + +And Abimelech called Isaac, and said to him, Is she then your wife? why have you said, She is my sister? And Isaac said to him, +I did so, for I said, Lest at any time I die on her account. + +And Abimelech said to him, Why have you done this to us? one of my kindred +26:10 +q.d. had almost. + within a little had lain with your wife, and you would have brought +a sin of ignorance upon us. + +And Abimelech charged all his people, saying Every man that touches this man and his wife shall be liable to death. + +And Isaac sowed in that land, and he found in that year barley one hundred-fold, and the Lord blessed him. + +And the man was exalted, and advancing he increased, till he became very great. + +And he had cattle of sheep, and cattle of oxen, and many tilled lands, and the Phylistines envied him. + +And all the wells which the servants of his father had dug in the time of his father, the Phylistines stopped them, and filled them with earth. + +And Abimelech said to Isaac, Depart from us, for you are become much mightier than we. + +And Isaac departed thence, and rested in the valley of Gerara, and lived there. + +And Isaac dug again the wells of water, which the servants of his father Abraam had dug, and the Phylistines had stopped them, after the death of his father Abraam; and he gave them names, according to the names by which his father named them. + +And the servants of Isaac dug in the valley of Gerara, and they found there a well of living water. + +And the shepherds of Gerara strove with the shepherds of Isaac, saying that the water was theirs; and they called the name of the well, Injury, for they injured him. + +And having departed thence he dug another well, and they strove also for that; and he named the name of it, Enmity. + +And he departed thence and dug another well; and they did not strive about that; and he named the name of it, Room, saying, Because now the Lord has made room for us, and has increased us upon the earth. + +And he went up thence to the well of the oath. + +And the Lord appeared to him in that night, and said, I am the God of Abraam your father; fear not, for I am with you, and I will bless you, and multiply your seed for the sake of Abraam your father. + +And he built there an altar, and called on the name of the Lord, and there he pitched his tent, and there the servants of Isaac dug a well in the valley of Gerara. + +And Abimelech came to him from Gerara, and so did Ochozath his +26:26 +q.d. he that gives away in marriage. + friend, and Phichol the commander-in-chief of his army. + +And Isaac said to them, Therefore have you⌃ come to me? whereas you⌃ hated me, and sent me away from you. + +And they said, We have surely seen that the Lord was with you, and we said, Let there be an oath between us and you, and we will make a covenant with you, + +that you shall do no wrong by us, as we have not abhorred you, and according as we have treated you well, and have sent you forth peaceably; and now you are blessed of the Lord. + +And he made a feast for them, and they ate and drank. + +And they arose in the morning, and swore each to his neighbor; and Isaac sent them forth, and they departed from him in safety. + +And it came to pass in that day, that the servants of Isaac came and told him of the well which they had dug; and they said, We have not found water. + +And he called it, Oath: therefore he called the name of that city, the Well of Oath, until this day. + +And Esau was forty years old; and he took as wife Judith the daughter of Beoch the +26:34 +Alex. Hivite. + Chettite, and Basemath, daughter of Helon the Chettite. + +And they were provoking to Isaac and Rebecca. + +

+ + +

And it came to pass after Isaac was old, that his eyes were dimmed so that he could not see; and he called Esau, his elder son, and said to him, My son; and he said, Behold, I +am here. + +And he said, Behold, I am grown old, and know not the day of my death. + +Now then take the weapons, both your quiver and your bow, and go into the plain, and get me venison, + +and make me meats, as I like them, and bring them to me that I may eat, that my soul may bless you, before I die. + +And Rebecca heard Isaac speaking to Esau his son; and Esau went to the plain to procure venison for his father. + +And Rebecca said to Jacob her younger son, Behold, I heard your father speaking to Esau your brother, saying, + +Bring me venison, and prepare me meats, that I may eat and bless you before the Lord before I die. + +Now then, my son, listen to me, as I command you. + +And go to the cattle and take for me thence two kids, tender and good, and I will make them meats for your father, as he likes. + +And you shall bring them in to your father, and he shall eat, that your father may bless you before he dies. + +And Jacob said to his mother Rebecca, Esau my brother is a hairy man, and I a smooth man. + +Peradventure my father may feel me, and I shall be before him as one ill-intentioned, and I shall bring upon me a curse, and not a blessing. + +And his mother said to him, On me be your curse, son; only listen to my voice, and go and bring +them me. + +So he went and took and brought them to his mother; and his mother made meats, as his father liked +them. + +And Rebecca having taken the fine raiment of her elder son Esau which was with her in the house, put it on Jacob her younger son. + +And she put on his arms the skins of the kids, and on the bare parts of his neck. + +And she gave the meats, and the loaves which she had prepared, into the hands of Jacob her son. + +And he brought +them to his father, and said, Father; and he said, Behold I +am here; who are you, son? + +And Jacob said to his father, I, Esau your firstborn, have done as you told me; rise, sit, and eat of my venison, that your soul may bless me. + +And Isaac said to his son, What is this which you have quickly found? And he said, That which the Lord your God presented before me. + +And Isaac said to Jacob, Draw near to me, and I will feel you, son, if you are my son Esau or not. + +And Jacob drew near to his father Isaac, and he felt him, and said, The voice +is Jacob's voice, but the hands +are the hands of Esau. + +And he knew him not, for his hands were as the hands of his brother Esau, hairy; and he blessed him, + +and he said, Are you my son Esau? and he said, I +am. + +And he said, Bring hither, and I will eat of your venison, son, that my soul may bless you; and he brought +it near to him, and he ate, and he brought him wine, and he drank. + +And Isaac his father said to him, Draw near to me, and kiss me, son. + +And he drew near and kissed him, and smelled the smell of his garments, and blessed him, and said, Behold, the smell of my son is as the smell of an abundant field, which the Lord has blessed. + +And may God give you of the dew of heaven, and of the fatness of the earth, and abundance of corn and wine. + +And let nations serve you, and princes bow down to you, and be you lord of your brother, and the sons of your father shall do you reverence; accursed is he that curses you, and blessed is he that blesses you. + +And it came to pass after Isaac had ceased blessing his son Jacob, it even came to pass, just when Jacob had gone out from the presence of Isaac his father, that Esau his brother came in from his hunting. + +And he also had made meats and brought them to his father; and he said to his father, Let my father arise and eat of his son's venison, that your soul may bless me. + +And Isaac his father said to him, Who are you? And he said, I am your firstborn son Esau. + +And Isaac was amazed with very great amazement, and said, Who then is it that has procured venison for me and brought it to me? and I have eaten of all before you came, and I have blessed him, and he shall be blessed. + +And it came to pass when Esau heard the words of his father Isaac, he cried out with a great and very bitter cry, and said, Bless, I pray you, me also, father. + +And he said to him, Your brother has come with subtlety, and taken your blessing. + +And he said, Rightly was his name called Jacob, for behold! this second time has he supplanted me; he has both taken my birthright, and now he has taken my blessing; and Esau said to his father, Have you not left a blessing for me, father? + +And Isaac answered and said to Esau, If I have made him your lord, and have made all his brethren his servants, and have strengthened him with corn and wine, what then shall I do for you, son? + +And Esau said to his father, Have you +only one blessing, father? Bless, I pray you, me also, father. And +27:38 +Heb. — Isaac being troubled. + Isaac being troubled, Esau cried aloud and wept. + +And Isaac his father answered and said to him, Behold, your dwelling shall be of the fatness of the earth, and of the dew of heaven from above. + +And you shall live by your sword, and shall serve your brother; and there shall be +a time when you shall break and loosen his yoke from off your neck. + +And Esau was angry with Jacob because of the blessing, with which his father blessed him; and Esau said in his mind, Let the days of my father's mourning draw near, that I may kill my brother Jacob. + +And the words of Esau her elder son were reported to Rebecca, and she sent and called Jacob her younger son, and said to him, Behold, Esau your brother threatens you to kill you. + +Now then, my son, hear my voice, and rise and depart quickly into Mesopotamia to Laban my brother into Charran. + +And dwell with him certain days, until your brother's anger + +and rage depart from you, and he forget what you have done to him; and I will send and fetch you thence, lest at any time I should be bereaved of you both in one day. + +And Rebecca said to Isaac, I am weary of my life, because of the daughters of the sons of Chet; if Jacob shall take a wife of the daughters of this land, therefore should I live? + +

+ + +

And Isaac having called for Jacob, blessed him, and charged him, saying, You shall not take a wife of the daughters of the Chananites. + +Rise and depart quickly into Mesopotamia, to the house of Bathuel the father of your mother, and take to yourself thence a wife of the daughters of Laban your mother's brother. + +And may my God bless you, and increase you, and multiply you, and you shall become gatherings of nations. + +And may he give you the blessing of my father Abraam, even to you and to your seed after you, to inherit the land of your sojourning, which God gave to Abraam. + +So Isaac sent away Jacob, and he went into Mesopotamia to Laban the son of Bethuel the Syrian, the brother of Rebecca the mother of Jacob and Esau. + +And Esau saw that Isaac blessed Jacob, and sent him away to Mesopotamia of Syria as he blessed him, to take to himself a wife thence, and +that he charged him, saying, You shall not take a wife of the daughters of the Chananites; + +and +that Jacob listened to his father and his mother, and went to Mesopotamia of Syria. + +And Esau also having seen that the daughters of Chanaan were evil before his father Isaac, + +Esau went to Ismael, and took Maeleth the daughter of Ismael, the son of Abraam, the sister of Nabeoth, a wife in addition to his +other wives. + +And Jacob went forth from the well of the oath, and departed into Charrhan. + +And came to a certain place and slept there, for the sun had gone down; and he took +one of the stones of the place, and put it at his head, and lay down to sleep in that place, + +and dreamed, and behold a ladder fixed on the earth, whose top reached to heaven, and the angels of God ascended and descended on it. + +And the Lord +28:13 +Gr. was established. + stood upon it, and said, I am the God of your father Abraam, and the God of Isaac; fear not, the land on which you lie, to you will I give it, and to your seed. + +And your seed shall be as the sand of the earth; and it shall spread abroad to the sea, and the south, and the north, and to the east; and in you and in your seed shall all the tribes of the earth be blessed. + +And behold I am with you to preserve you continually in all the way wherein you shall go; and I will bring you back to this land; for I will not desert you, until I have done all that I have said to you. + +And Jacob awaked out of his sleep, and said, The Lord is in this place, and I knew it not. + +And he was afraid, and said, How fearful is this place! this is none other than the house of God, and this is the gate of heaven. + +And Jacob rose up in the morning, and took the stone +28:18 +Lit. put under. See 1 Tim 3:15. + he +had laid there by his head, and he set it up +as a pillar, and poured oil on the top of it. + +And he called the name of that place, the House of God; and the name of the city before was Ulam-luz. + +And Jacob vowed a vow, saying, If the Lord God will be with me, and guard me throughout on this journey, on which I am going, and give me bread to eat, and raiment to put on, + +and bring me back in safety to the house of my father, then shall the Lord be for a God to me. + +And this stone, which I have set up for a pillar, shall be to me a house of God; and of all whatever you shall give me, I will tithe a tenth for you. + +

+ + +

And Jacob +29:1 +Gr. having lifted up his feet, went, etc. + started and went to the land of the east to Laban, the son of Bathuel the Syrian, and the brother of Rebecca, mother of Jacob and Esau. + +And he looks, and behold! a well in the plain; and there were there three flocks of sheep resting at it, for out of that well they watered the flocks, but there was a great stone at the mouth of the well. + +And there were all the flocks gathered, and they used to roll away the stone from the mouth of the well, and water the flocks, and set the stone again in its place on the mouth of the well. + +And Jacob said to them, Brethren, whence are you⌃? and they said, We are of Charrhan. + +And he said to them, Know you⌃ Laban, the son of Nachor? and they said, We do know +him. + +And he said to them, Is he well? And they said, He is well. And behold Rachel his daughter came with the sheep. + +And Jacob said, it is yet high day, it is not yet time that the flocks be gathered together; water you⌃ the flocks, and depart and feed them. + +And they said, We shall not be able, until all the shepherds be gathered together, and they shall roll away the stone from the mouth of the well, then we will water the flocks. + +While he was yet speaking to them, behold, Rachel the daughter of Laban came with her father's sheep, for she fed the sheep of her father. + +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 came and rolled away the stone from the mouth of the well, and watered the sheep of Laban, his mother's brother. + +And Jacob kissed Rachel, and cried with a loud voice and wept. + +And he told Rachel that he was the near relative of her father, and the son of Rebecca; and she ran and reported to her father according to these words. + +And it came to pass when Laban heard the name of Jacob, his sister's son, he ran to meet him, and embraced and kissed him, and brought him into his house; and he told Laban all these sayings. + +And Laban said to him, You are of my bones and of my flesh; and he was with him a +29:14 +Gr. month of days. + full month. + +And Laban said to Jacob, Surely you shall not serve me for nothing, because you are my brother; tell me what your reward is to be. + +Now Laban had two daughters, the name of the elder was Lea, and the name of the younger, Rachel. + +And the eyes of Lea were weak. But Rachel was beautiful in appearance, and exceedingly fair in countenance. + +And Jacob loved Rachel, and said, I will serve you seven years for your younger daughter Rachel. + +And Laban said to him, +It is better that I should give her to you, than that I should give her to another man; dwell with me. + +And Jacob served for Rachel seven years, and they were before him as a few days, by reason of his loving her. + +And Jacob said to Laban, Give me my wife, for my days are fulfilled, that I may go in to her. + +And Laban gathered together all the men of the place, and made a marriage-feast. + +And it was even, and he took his daughter Lea, and brought her in to Jacob, and Jacob went in to her. + +And Laban gave to his daughter Lea, Zelpha his handmaid, as a handmaid for her. + +And it was morning, and behold it was Lea; and Jacob said to Laban, What is this that you have done to me? did I not serve you for Rachel? and therefore have you deceived me? + +And Laban answered, It is not done thus in our country, to give the younger before the elder. + +Fulfil then her sevens, and I will give to you her also in return for your labor, which you labor with me, yet seven other years. + +And Jacob did so, and fulfilled her sevens; and Laban gave him his daughter Rachel to wife. + +And Laban gave to his daughter his handmaid Balla, for a handmaid to her. + +And he went in to Rachel; and he loved Rachel more than Lea; and he served him seven other years. + +And when the Lord God saw that Lea was hated, he opened her womb; but Rachel was barren. + +And Lea conceived and bore a son to Jacob; and she called his name, Ruben; saying, Because the Lord has looked on my humiliation, and has given me a son, now then my husband will love me. + +And she conceived again, and bore a second son to Jacob; and she said, Because the Lord has heard that I am hated, he has given to me this one also; and she called his name, Simeon. + +And she conceived yet again, and bore a son, and said, In the present time my husband will be with me, for I have born him three sons; therefore she called his name, Levi. + +And having conceived yet again, she bore a son, and said, Now yet again this time will I give thanks to the Lord; therefore she called his name, Juda; and ceased bearing. + +

+ + +

And Rachel having perceived that she bore Jacob no children, was jealous of her sister; and said to Jacob, Give me children; and if not, I shall die. + +And Jacob was angry with Rachel, and said to her, Am I in the place of God, who has deprived you of the fruit of the womb? + +And Rachel said to Jacob, Behold my handmaid Balla, go in to her, and she shall bear upon my knees, and I also shall have children by her. + +And she gave him Balla her maid, for a wife to him; and Jacob went in to her. + +And Balla, Rachel's maid, conceived, and bore Jacob a son. + +And Rachel said, God has given judgment for me, and listened to my voice, and has given me a son; therefore she called his name, Dan. + +And Balla, Rachel's maid, conceived yet again, and bore a second son to Jacob. + +And Rachel said, God has helped me, and I contended with my sister and prevailed; and she called his name, Nephthalim. + +And Lea saw that she ceased from bearing, and she took Zelpha her maid, and gave her to Jacob for a wife; and he went in to her. + +And Zelpha the maid of Lea conceived, and bore Jacob a son. + +And Lea said, +It is happily: and she called his name, Gad. + +And Zelpha the maid of Lea conceived yet again, and bore Jacob a second son. + +And Lea said, I am blessed, for the women will pronounce me blessed; and she called his name, Aser. + +And Ruben went in the day of barley harvest, and found apples of mandrakes in the field, and brought them to his mother Lea; and Rachel said to Lea her sister, Give me of your son's mandrakes. + +And Lea said, +Is it not enough for you that you have taken my husband, will you also take my son's mandrakes? And Rachel said, Not so: let him lie with you tonight for your son's mandrakes. + +And Jacob came in out of the field at even; and Lea went forth to meet him, and said, You shall come in to me this day, for I have hired you for my son's mandrakes; and he lay with her that night. + +And God listened to Lea, and she conceived, and bore Jacob a fifth son. + +And Lea said, God has given me my reward, because I gave my maid to my husband; and she called his name Issachar, which is, Reward. + +And Lea conceived again, and bore Jacob a sixth son. + +And Lea said, God has given me a good gift in this time; my husband will choose me, for I have born him six sons: and she called his name, Zabulon. + +And after this she bore a daughter; and she called her name, Dina. + +And God remembered Rachel, and God listened to her, and he opened her womb. + +And she conceived, and bore Jacob a son; and Rachel said, God has taken away my reproach. + +And she called his name Joseph, saying, Let God add to me another son. + +And it came to pass when Rachel had born Joseph, Jacob said to Laban, Send me away, that I may go to my place and to my land. + +Restore my wives and my children, for whom I have served you, that I may depart, for you know the service wherewith I have served you. + +And Laban said to him, If I have found grace in your sight, +30:27 +Stay you, perhaps understood. Heb. I have argued that, etc. + I would augur +well, for the Lord has blessed me at your coming in. + +Appoint +30:28 +Lit. your wages to or with me. + me your wages, and I will give +them. + +And Jacob said, You know in what things I have served you, and how many cattle of your are with me. + +For it was little you had before my time, and it is increased to a multitude, and the Lord God has blessed you +30:30 +So A.V. but Gr. and Heb. literally, at my foot. + since my coming; now then, when shall I set up also my own house? + +And Laban said to him, What shall I give you? and Jacob said to him, You shall not give me anything; if you will do this thing for me, I will again tend your flocks and keep them. + +Let all your sheep pass by today, and separate thence every grey sheep among the rams, and every one that is speckled and spotted among the goats—this shall be my reward. + +And my righteousness shall +30:33 +Listen to or obey me. + answer for me on the morrow, for it is my reward before you: whatever shall not be spotted and speckled among the goats, and grey among the rams, shall be stolen with me. + +And Laban said to him, Let it be according to your word. + +And he separated in that day the spotted and speckled he-goats, and all the spotted and speckled she-goats, and all that was grey among the rams, and every one that was white among them, and he gave them into the hand of his sons. + +And he set a distance of a three days' journey between them +30:36 +Gr. and between. Hebraism. + and Jacob. And Jacob tended the cattle of Laban that were left behind. + +And Jacob took to himself green rods of storax tree and walnut and plane tree; and Jacob peeled in them white stripes; and as +30:37 +Apparently the nom. absol. + he drew off the green, the white stripe which he had made appeared alternate on the rods. + +And he laid the rods which he had peeled, in the hollows of the watering-troughs, that whenever the cattle should come to drink, as they should have come to drink before the rods, the cattle might conceive at the rods. + +So the cattle conceived at the rods, and the cattle brought forth +young speckled, and streaked and spotted with ash-colored +spots. + +And Jacob separated the lambs, and set before the sheep a speckled ram, and every variegated one among the lambs, and he separated flocks for himself alone, and did not mingle them with the sheep of Laban. + +And it came to pass in the time wherein the cattle became pregnant, conceiving in the belly, Jacob put the rods before the cattle in the troughs, that they might conceive by the rods. +30:41 +The meaning of the Hebrew seems to be, when the cattle were weak from any cause. The LXX. by assigning the yeaning time as the cause, have obscured the passage. Of course Jacob would not put them in then. + + +But he did not put them in +indiscriminately whenever the cattle happened to bring forth, but the unmarked ones were Laban's, and the marked ones were Jacob's. + +And the man became very rich, and he had many cattle, and oxen, and servants, and maidservants, and camels, and asses. + +

+ + +

And Jacob heard the words of the sons of Laban, saying, Jacob has taken all that was our father's, and of our father's property has he gotten all this glory. + +And Jacob saw the countenance of Laban, and behold it was not toward him as +31:2 +Gr. yesterday and the day before. Hebraism. + before. + +And the Lord said to Jacob, Return to the land of your father, and to your family, and I will be with you. + +And Jacob sent and called Lea and Rachel to the plain where the flocks were. + +And he said to them, I see the face of your father, that it is not toward me as before, but the God of my father was with me. + +And you⌃ too know that with all my might I have served your father. + +But your father deceived me, and changed my wages for the ten lambs, yet God gave him not +power to hurt me. + +If he should say thus, The speckled shall be your reward, then all the cattle would bear speckled; and if he should say, The white shall be your reward, then would all the cattle bear white. + +So God has taken away all the cattle of your father, and given them to me. + +And it came to pass when the cattle conceived and were with young, that I saw with my eyes in sleep, and behold the he-goats and the rams leaping on the sheep and the she-goats, speckled and variegated and spotted with ash-colored spots. + +And the angel of God said to me +31:11 +Lit. in sleep. + in a dream, Jacob; and I said, What is it? + +And he said, Look up with your eyes, and behold the he-goats and the rams leaping on the sheep and the she-goats, speckled and variegated and spotted with ash-colored spots; for I have seen all things that Laban does to you. + +I am God that appeared to you in the place of God where you anointed a pillar to me, and vowed to me there a vow; now then arise and depart out of this land, depart into the land of your nativity, and I will be with you. + +And Rachel and Lea answered and said to him, Have we yet a part or inheritance in the house of our father? + +Are we not considered strangers by him? for he has sold us, and quite devoured our money. + +All the wealth and the glory which God has taken from our father, it shall be our's and our children's; now then do whatever God has said to you. + +And Jacob arose and took his wives and his children up on the camels; + +and he took away all his possessions and all his store, which he had gotten in Mesopotamia, and all that belonged to him, to depart to Isaac his father in the land of Chanaan. + +And Laban went to shear his sheep; and Rachel stole her father's images. + +And Jacob hid +the matter from Laban the Syrian, so as not to tell him that he ran away. + +And he departed himself and all that belonged to him, and passed over the river, and went into the mountain Galaad. + +But it was told Laban the Syrian on the third day, that Jacob was fled. + +And having taken his brethren with him, he pursued after him seven days' journey, and overtook him on Mount Galaad. + +And God came to Laban the Syrian in sleep by night, and said to him, Take heed to yourself that you speak not at any time to Jacob evil things. + +And Laban overtook Jacob; and Jacob pitched his tent in the mountain; and Laban stationed his brothers in the mount Galaad. + +And Laban said to Jacob, What have you done? therefore did you run away secretly, and pillage me, and lead away my daughters as captives taken with the sword? + +Whereas if you had told me, I would have sent you away with mirth, and with songs, and timbrels, and harp. + +And I was not counted worthy to embrace my children and my daughters; now then you have wrought foolishly. + +And now my hand has power to hurt you; but the God of your father spoke to me yesterday, saying, Take heed to yourself that you speak not evil words to Jacob. + +Now then go on your way, for you have earnestly desired to depart to the house of your father; therefore have you stolen my gods? + +And Jacob answered and said to Laban, Because I was afraid; for I said, Lest at any time you should take away your daughters from me, and all my possessions. + +And Jacob said, With whoever you shall find your gods, he shall not live in the presence of our brethren; take notice of what I have of your property, and take it; and he observed nothing with him, but Jacob knew not that his wife Rachel had stolen them. + +And Laban went in and searched in the house of Lea, and found +them not; and he went out of the house of Lea, and searched in the house of Jacob, and in the house of the two maidservants, and found them not; and he went also into the house of Rachel. + +And Rachel took the idols, and cast them among the camel's packs, and sat upon them. + +And she said to her father, Be not indignant, Sir; I can’t rise up before you, for it is with me according to the manner of women. Laban searched in all the house, and found not the images. + +And Jacob was angry, and strove with Laban; and Jacob answered and said to Laban, What is my injustice, and what my sin, that you have pursued after me, + +and that you have searched all the furniture of my house? what have you found of all the furniture of your house? set it here between your relations and my relations, and let them decide between us two. + +These twenty years have I been with you; your sheep, and your she-goats have not failed in bearing; I devoured not the rams of your cattle. + +That which was taken of beasts I brought not to you; I made good of myself the thefts of the day, and the thefts of the night. + +I was parched with heat by day, and +chilled with frost by night, and my sleep departed from my eyes. + +These twenty years have I been in your house; I served you fourteen years for your two daughters, and six years among your sheep, and you did falsely rate my wages for ten lambs. + +Unless I had the God of my father Abraam, and the fear of Isaac, now you would have sent me away empty; God saw my humiliation, and the labor of my hands, and rebuked you yesterday. + +And Laban answered and said to Jacob, The daughters are my daughters, and the sons my sons, and the cattle are my cattle, and all things which you see are mine, and +the property of my daughters; what shall I do to them today, or their children which they bore? + +Now then come, let me make a covenant, both I and you, and it shall be for a witness between me and you; and he said to him, Behold, there is no one with us; behold, God is witness between me and you. + +And Jacob having taken a stone, set it up for a pillar. + +And Jacob said to his brethren, Gather stones; and they gathered stones and made a heap, and ate there upon the heap; and Laban said to him, This heap witnesses between me and you today. + +And Laban called it, the Heap of Testimony; and Jacob called it, the Witness Heap. + +And Laban said to Jacob, Behold this heap, and the pillar, which I have set between me and you; this heap witnesses, and this pillar witnesses; therefore its name was called, the Heap witnesses. + +And the vision of which he said—Let God look to it between me and you, because we are about to depart from each other, — + +If you shall humble my daughters, if you should take wives in addition to my daughters, see, there is no one with us looking on. God +is witness between me and you. + +And Laban said to Jacob, Behold, this heap, and this pillar are a witness. + +For if I should not cross over to you, neither should you cross over to me, for mischief beyond this heap and this pillar. + +The God of Abraam and the God of Nachor judge between us; and Jacob swore by the Fear of his father Isaac. + +And he offered a sacrifice in the mountain, and called his brethren, and they ate and drank, and slept in the mountain. + +And Laban rose up in the morning, and kissed his sons and his daughters, and blessed them; and Laban having turned back, departed to his place. + +

+ + +

And Jacob departed for his journey; and having looked up, he saw the +32:1 +Gr. camp + host of God encamped; and the angels of God met him. + +And Jacob said, when he saw them, This is the Camp of God; and he called the name of that place, Encampments. + +And Jacob sent messengers before him to Esau his brother to the land of Seir, to the country of Edom. + +And he charged them, saying, Thus shall you⌃ say to my lord Esau: Thus says your servant Jacob; I have sojourned with Laban and tarried until now. + +And there were born to me oxen, and asses, and sheep, and menservants and women-servants; and I sent to tell my lord Esau, that your servant might find grace in your sight. + +And the messengers returned to Jacob, saying, We came to your brother Esau, and behold! he comes to meet you, and four hundred men with him. + +And Jacob was greatly terrified, and was perplexed; and he divided the people that was with him, and the cows, and the camels, and the sheep, into two camps. + +And Jacob said, If Esau should come to one camp, and strike it, the other camp shall be in safety. + +And Jacob said, God of my father Abraam, and God of my father Isaac, O Lord, you +are he that said to me, Depart quickly to the land of your birth, and I will do you good. + +Let there be to me a sufficiency of all the justice and all the truth which you have wrought with your servant; for with this my staff I passed over this Jordan, and now I am become two camps. + +Deliver me from the hand of my brother, from the hand of Esau, for I am afraid of him, lest haply he should come and strike me, and the mother upon the children. + +But you said, I will do you good, and will make your seed as the sand of the sea, which shall not be numbered for multitude. + +And he slept there that night, and took of the gifts which he carried +with him, and sent out to Esau his brother, + +two hundred she-goats, twenty he-goats, two hundred sheep, twenty rams, + +milch camels, and their foals, thirty, forty kine, ten bulls, twenty asses, and ten colts. + +And he gave them to his servants +each drove apart; and he said to his servants, Go on before me, and put a space between drove and drove. + +And he charged the first, saying, If Esau my brother meet you, and he ask you, saying, Whose are you? and whither would you go, and whose are these possessions advancing before you? + +You shall say, Your servant Jacob's; he has sent gifts to my lord Esau, and behold! he is behind us. + +And he charged the first and the second and the third, and all that went before him after these flocks, saying, Thus shall you⌃ speak to Esau when you⌃ find him; + +and you⌃ shall say, Behold your servant Jacob comes after us. For he said, I will propitiate his countenance with the gifts going before his presence, and afterwards I will behold his face, for perhaps he will accept +32:20 +Gr. my face. + me. + +So the presents went on before him, but he himself lodged that night in the camp. + +And he rose up in that night, and took his two wives and his two servant-maids, and his eleven children, and crossed over the ford of Jaboch. + +And he took them, and passed over the torrent, and brought over all his possessions. + +And Jacob was left alone; and a man wrestled with him till the morning. + +And he saw that he prevailed not against him; and he touched the broad part of his thigh, and the broad part of Jacob's thigh was benumbed in his wrestling with him. + +And he said to him, Let me go, for the day has dawned; but he said, I will not let you go, except you bless me. + +And he said to him, What is your name? and he answered, Jacob. + +And he said to him, Your name shall no longer be called Jacob, but Israel shall be your name; for you have prevailed with God, and shall be mighty with men. + +And Jacob asked and said, Tell me your name; and he said, Therefore do you ask after my name? and he blessed him there. + +And Jacob called the name of that place, the Face of God; for, +said he, +I have seen God face to face, and my life was preserved. + +And the sun rose upon him, when he passed the Face of God; and he halted upon his thigh. + +Therefore the children of Israel will by no means eat of the sinew which was benumbed, which is on the broad part of the thigh, until this day, because +the angel touched the broad part of the thigh of Jacob—even the sinew which was benumbed. + +

+ + +

And Jacob +33:1 +Gr. looked up with. + lifted up his eyes, and saw, and behold! Esau his brother coming, and four hundred men with him; and Jacob divided the children to Lea and to Rachel, and the two handmaidens. + +And he put the two handmaidens and their children with the first, and Lea and her children behind, and Rachel and Joseph last. + +But he advanced himself before them, and did reverence to the ground seven times, until he drew near to his brother. + +And Esau ran on to meet him, and embraced him, and fell on his neck, and kissed him; and they both wept. + +And Esau looked up and saw the women and the children, and said, What are these to you? And he said, The children with which God has mercifully blessed your servant. + +And the maidservants and their children drew near and did reverence. + +And Lea and her children drew near and did reverence; and after this drew near Rachel and Joseph, and did reverence. + +And he said, What are these things to you, all these companies that I have met? And he said, That your servant might find grace in your sight, my lord. + +And Esau said, I have much, my brother; keep your own. + +And Jacob said, If I have found grace in your sight, receive the gifts through my hands; therefore have I seen your face, as if any one should see the face of God, and you shall be well-pleased with me. + +Receive my blessings, which I have brought you, because God has had mercy on me, and I have all things; and he constrained him, and he took +them. + +And he said, Let us depart, and proceed right onward. + +And he said to him, My lord knows, that the children are very tender, and the flocks and the herds with me are with young; if then I shall drive them hard one day, all the cattle will die. + +Let my lord go on before his servant, and I shall have strength on the road according to the ease of the journey before me, and according to the +33:14 +Gr. foot. + strength of the children, until I come to my lord to Seir. + +And Esau said, I will leave with you some of the people who are with me. And he said, Why so? it is enough that I have found favor before you, +my lord. + +And Esau returned on that day on his journey to Seir. + +And Jacob departs to his tents; and he made for himself there habitations, and for his cattle he made booths; therefore he called the name of that place, Booths. + +And Jacob came to Salem, a city of Secima, which is in the land of Chanaan, when he departed out of Mesopotamia of Syria, and +33:18 +Or, pitched his tent. Alex. παρενέβαλε, for which probably παρενέλαβε is a mere mistake. So Bos and P. Junius thought. + took up a position in front of the city. + +And he bought the portion of the field, where he pitched his tent, of Emmor the father of Sychem, for one hundred lambs. + +And he set up there an altar, and called on the God of Israel. + +

+ + +

And Dina, the daughter of Lea, whom she bore to Jacob, went forth to observe the daughters of the inhabitants. + +And Sychem the son of Emmor the +34:2 +Alex. the chorrhæan. + Evite, the ruler of the land, saw her, and took her and lay with her, and humbled her. + +And he was attached to the soul of Dina the daughter of Jacob, and he loved the damsel, and he spoke +34:3 +Lit. spoke according to the heart of the damsel — to her. A literal version of the Hebrew. + kindly to the damsel. + +Sychem spoke to Emmor his father, saying, Take for me this damsel to wife. + +And Jacob heard that the son of Emmor had defiled Dina his daughter (now his sons were with his cattle in the plain). And Jacob was silent until they came. + +And Emmor the father of Sychem went forth to Jacob, to speak to him. + +And the sons of Jacob came from the plain; and when they heard, the men were deeply pained, and it was very grievous to them, because +the man wrought folly in Israel, having lain with the daughter of Jacob, and so it +34:7 +Lit. shall not be. + must not be. + +And Emmor spoke to them, saying, Sychem my son has chosen in his heart your daughter; give her therefore to him for a wife, + +and intermarry with us. Give us your daughters, and take our daughters for your sons. + +And dwell in the midst of us; and, behold, the land is spacious before you, dwell in it, and trade, and get possessions in it. + +And Sychem said to her father and to her brothers, I would find grace before you, and we will give whatever you⌃ shall name. + +Multiply +your demand of dowry very much, and I will give accordingly as you⌃ shall say to me, only you⌃ shall give me this damsel for a wife. + +And the sons of Jacob answered to Sychem and Emmor his father craftily, and spoke to them, because they had defiled Dina their sister. + +And Symeon and Levi, the brothers of Dina, said to them, We shall not be able to do this thing, to give our sister to a man who is uncircumcised, for it is a reproach to us. + +Only on these terms will we conform to you, and dwell among you, if you⌃ also will be as we are, in that every male of you be circumcised. + +And we will give our daughters to you, and we will take of your daughters for wives to us, and we will dwell with you, and we will be as one race. + +But if you⌃ will not listen to us to be circumcised, we will take our daughter and depart. + +And the words pleased Emmor, and Sychem the son of Emmor. + +And the young man delayed not to do this +34:19 +Gr. word. + thing, for he was much attached to Jacob's daughter, and he was the most honorable of all in his father's house. + +And Emmor and Sychem his son came to the gate of their city, and spoke to the men of their city, saying, + +These men are peaceful, let them dwell with us upon the land, and let them trade in it, and behold the land is extensive before them; we will take their daughters to us for wives, and we will give them our daughters. + +Only on these terms will the men conform to us to dwell with us so as to be one people, if every male of us be circumcised, as they also are circumcised. + +And shall not their cattle and their +34:23 +Gr. quadrupeds. + herds, and their possessions, be ours? only in this let us conform to them, and they will dwell with us. + +And all that went in at the gate of their city listened to Emmor and Sychem his son, and they were circumcised in the flesh of their foreskin every male. + +And it came to pass on the third day, when they were in pain, the two sons of Jacob, Symeon and Levi, Dina's brethren, took each man his sword, and came upon the city securely, and killed every male. + +And they killed Emmor and Sychem his son with the edge of the sword, and took Dina out of the house of Sychem, and went forth. + +But the sons of Jacob came upon the +34:27 +Or, slain, which seems frequently the sense in LXX. + wounded, and ravaged the city wherein they had defiled Dina their sister. + +And their sheep, and their oxen, and their asses they took, and all things whatever were in the city, and whatever were in the plain. + +And they took captive all the persons of them, and all their store, and their wives, and plundered both whatever things there were in the city, and whatever things there were in the houses. + +And Jacob said to Symeon and Levi, You⌃ have made me hateful so that I should be evil to all the inhabitants of the land, both among the Chananites and the Pherezites, and I am few in number; they will gather themselves against me and cut me in pieces, and I shall be utterly destroyed, and my house. + +And they said, Nay, but shall they treat our sister as an harlot? + +

+ + +

And God said to Jacob, Arise, go up to the place, Baethel, and dwell there; and make there an altar to the God that appeared to you, when you fled from the face of Esau your brother. + +And Jacob said to his house, and to all that were with him, Remove the strange gods that are with you from the midst of you, and purify yourselves, and change your clothes. + +And let us rise and go up to Baethel, and let us there make an altar to God who listened to me in the day of calamity, who was with me, and preserved me throughout in the journey, by which I went. + +And they gave to Jacob the strange gods, which were in their hands, and the ear-rings which were in their ears, and Jacob hid them under the turpentine tree which is in Secima, and +35:4 +Or, lost. + destroyed them to this day. + +So Israel departed from Secima, and the fear of God was upon the cities round about them, and they did not pursue after the children of Israel. + +And Jacob came to Luza, which is in the land of Chanaan, which is Baethel, he and all the people that were with him. + +And he built there an altar, and called the name of the place Baethel; for there God appeared to him, when he fled from the face of his brother Esau. + +And Deborrha, Rebecca's nurse, died, and was buried below Baethel under the oak; and Jacob called its name, The Oak of Mourning. + +And God appeared to Jacob once more in Luza, when he came out of Mesopotamia of Syria, and God blessed him. + +And God said to him, Your name shall not be called Jacob, but Israel shall be your name; and he called his name Israel. + +And God said to him, I am your God; increase and multiply; for nations and gatherings of nations shall be of you, and kings shall come out of your loins. + +And the land which I gave to Abraam and Isaac, I have given it to you; and it shall come to pass that I will give this land also to your seed after you. + +And God went up from him from the place where he spoke with him. + +And Jacob set up a pillar in the place where God spoke with him, +even a pillar of stone; and offered a libation upon it, and poured oil upon it. + +And Jacob called the name of the place in which God spoke with him, Baethel. + + +35:16 +Note. — The words between brackets form the 21st verse of this chapter in the Hebrew. + [And Jacob removed from Baethel, and pitched his tent beyond the tower of Gader,] and it came to pass when he drew near to Chabratha, to enter into Ephratha, Rachel travailed; and in her travail she was in hard labor. + +And it came to pass in her hard labor, that the midwife said to her, Be of good courage, for you shall also have this son. + +And it came to pass in her giving up the ghost (for she was dying), that she called his name, The son of my pain; but his father called his name Benjamin. + +So Rachel died, and was buried in the way of the course of Ephratha, this is Bethleem. + +And Jacob set up a pillar on her tomb; this is the pillar on the tomb of Rachel, until this day. + +And it came to pass when Israel lived in that land, that Ruben went and lay with Balla, the concubine of his father Jacob; and Israel heard, and the thing appeared grievous before him. + +And the sons of Jacob were twelve. + +The sons of Lea, the firstborn of Jacob; Ruben, Symeon, Levi, Judas, Issachar, Zabulon. + +And the sons of Rachel; Joseph and Benjamin. + +And the sons of Balla, the handmaid of Rachel; Dan and Nephthalim. + +And the sons of Zelpha, the handmaid of Lea; Gad and Aser. These +are the sons of Jacob, which were born to him in Mesopotamia of Syria. + +And Jacob came to Isaac his father to Mambre, to a city of the plain; this is Chebron in the land of Chanaan, where Abraam and Isaac sojourned. + +And the days of Isaac which he lived were one hundred and eighty years. + +And Isaac gave up the ghost and died, and was laid to his family, old and full of days; and Esau and Jacob his sons buried him. + +

+ + +

And these +are the generations of Esau; this is Edom. + +And Esau took to himself wives of the daughters of the Chananites; Ada, the daughter of Aelom the Chettite; and Olibema, daughter of Ana the son of Sebegon, the Evite; + +and Basemath, daughter of Ismael, sister of Nabaioth. + +And Ada bore to him Eliphas; and Basemath bore Raguel. + +And Olibema bore Jeus, and Jeglom, and Core; these +are the sons of Esau, which were born to him in the land of Chanaan. + +And Esau took his wives, and his sons, and his daughters, and all the persons of his house, and all his possessions, and all his cattle, and all that he had got, and all things whatever he had acquired in the land of Chanaan; and Esau went forth from the land of Chanaan, from the face of his brother Jacob. + +For their substance was too great for them to dwell together; and the land of their sojourning could not bear them, because of the abundance of their possessions. + +And Esau lived in mount Seir; Esau, he is Edom. + +And these +are the generations of Esau, the father of Edom in the mount Seir. + +And these +are the names of the sons of Esau. Eliphas, the son of Ada, the wife of Esau; and Raguel, the son of Basemath, wife of Esau. + +And the sons of Eliphas were Thaeman, Omar, Sophar, Gothom, and Kenez. + +And Thamna was a concubine of Eliphaz, the son of Esau; and she bore Amalec to Eliphas. These +are the sons of Ada, the wife of Esau. + +And these +are the sons of Raguel; Nachoth, Zare, Some, and Moze. These were the sons of Basemath, wife of Esau. + +And these +are the sons of Olibema, the daughter of Ana, the son of Sebegon, the wife of Esau; and she bore to Esau, Jeus, and Jeglom, and Core. + +These +are the chiefs of the son of Esau, +even the sons of Eliphas, the firstborn of Esau; chief Thaeman, chief Omar, chief Sophar, chief Kenez, + +chief Core, chief Gothom, chief Amalec. These +are the chiefs of Eliphas, in the land of Edom; these are the sons of Ada. + +And these +are the sons of Raguel, the son of Esau; chief Nachoth, chief Zare, chief Some, chief Moze. These +are the chiefs of Raguel, in the land of Edom; these are the sons of Basemath, wife of Esau. + +And these +are the sons of Olibema, wife of Esau; chief Jeus, chief Jeglom, chief Core. These +are the chiefs of Olibema, daughter of Ana, wife of Esau. + +These +are the sons of Esau, and these are the chiefs; these are the sons of Edom. + +And these +are the sons of Seir, the Chorrhite, who inhabited the land; Lotan, Sobal, Sebegon, Ana, + +and Deson, and Asar, and Rison. These +are the chiefs of the Chorrhite, the son of Seir, in the land of Edom. + +And the sons of Lotan +were Chorrhi and Haeman; and the sister of Lotan, Thamna. + +And these +are the sons of Sobal; Golam, and Manachath, and Gaebel, and Sophar, and Omar. + +And these +are the sons of Sebegon; Aie, and Ana; this is the Ana who found Jamin in the wilderness, when he tended the beasts of his father Sebegon. + +And these +are the sons of Ana; Deson—and Olibema +was daughter of Ana. + +And these +are the sons of Deson; Amada, and Asban, and Ithran, and Charrhan. + +And these +are the sons of Asar; Balaam, and Zucam, and Jucam. + +And these +are the sons of Rison; Hos, and Aran. + +And these +are the chiefs of Chorri; chief Lotan, chief Sobal, chief Sebegon, chief Ana, + +chief Deson, chief Asar, chief Rison. These +are the chiefs of Chorri, in their principalities in the land of Edom. + +these +are the kings which reigned in Edom, before a king reigned in Israel. + +And Balac, son of Beor, reigned in Edom; and the name of his city +was Dennaba. + +And Balac died; and Jobab, son of Zara, from Bosorrha reigned in his stead. + +And Jobab died; and Asom, from the land of the Thaemanites, reigned in his stead. + +And Asom died; and Adad son of Barad, who cut off Madiam in the plain of Moab, ruled in his stead; and the name of his city was Getthaim. + +And Adad died; and Samada of Massecca reigned in his stead. + +Samada died; and Saul of Rhooboth by the river reigned in his stead. + +And Saul died; and Ballenon the son of Achobor reigned in his stead. + +And Ballenon the son of Achobor died; and Arad the son of Barad reigned in his stead; and the name of his city was Phogor; and the name of his wife was Metebeel, daughter of Matraith, son of Maizoob. + +These +are the names of the chiefs of Esau, in their tribes, according to their place, in their countries, and in their nations; chief Thamna, chief Gola, chief Jether, + +chief Olibema, chief Helas, chief Phinon, + +chief Kenez, chief Thaeman, chief Mazar, + +chief Magediel, chief Zaphoin. These are the chiefs of Edom in their dwelling-places in the land of their possession; this is Esau, the father of Edom. + +And Jacob lived in the land where his father sojourned, in the land of Chanaan. + +

+ + +

And these are the generations of Jacob. And Joseph was seventeen years old, feeding the sheep of his father with his brethren, being young; with the sons of Balla, and with the sons of Zelpha, the wives of his father; +37:1-2 +Or, according to some copies, they brought an evil report of Joseph, etc. + and Joseph brought to Israel their father their evil reproach. + +And Jacob loved Joseph more than all his sons, because he was to him the son of old age; and he made for him a coat of many colors. + +And his brethren having seen that his father loved him more than all his sons, hated him, and could not speak anything peaceful to him. + +And Joseph dreamed a dream, and reported it to his brethren. + +And he said to them, Hear this dream which I have dreamed. + +I thought you⌃ were binding sheaves in the middle of the field, and my sheaf stood up and was erected, and your sheaves turned round, and did obeisance to my sheaf. + +And his brethren said to him, Shall you indeed reign over us, or shall you indeed be lord over us? And they hated him still more for his dreams and for his words. + +And he +37:9 +Gr. saw. + dreamed another dream, and related it to his father, and to his brethren, and said, Behold, I have dreamed another dream: as it were the sun, and the moon, and the eleven stars did me reverence. + +And his father rebuked him, and said to him, What is this dream which you have dreamed? shall indeed both I and your mother and your brethren come and bow before you to the earth? + +And his brethren envied him; but his father observed the saying. + +And his brethren went to feed the sheep of their father to Sychem. + +And Israel said to Joseph, Do not your brethren feed their flock in Sychem? Come, I will send you to them; and he said to him, Behold, I +am here. + +And Israel said to him, Go and see if your brethren and the sheep are well, and bring me word; and he sent him out of the valley of Chebron, and he came to Sychem. + +And a man found him wandering in the field; and the man asked him, saying, What seek you? + +And he said, I am seeking my brethren; tell me where they feed +their flocks. + +And the man said to him, They have departed hence, for I heard them saying, Let us go to Dothaim; and Joseph went after his brethren, and found them in Dothaim. + +And they spied him from a distance before he drew near to them, and they wickedly took counsel to kill him. + +And each said to his brother, Behold, that dreamer comes. + +Now then come, let us kill him, and cast him into one of the pits; and we will say, An evil wild beast has devoured him; and we shall see what his dreams will be. + +And Ruben having heard it, rescued him out of their hands, and said, Let us not +37:21 +Gr. strike him to the life. + kill him. + +And Ruben said to them, Shed not blood; cast him into one of these pits in the wilderness, but do not lay +your hands upon him; that he might rescue him out of their hands, and restore him to his father. + +And it came to pass, when Joseph came to his brethren, that they stripped Joseph of his many-coloured coat that was upon him. + +And they took him and cast him into the pit; and the pit was empty, it had not water. + +And they sat down to eat bread; and having lifted up their eyes they saw, and behold, Ismaelitish travellers came from Galaad, and their camels were heavily loaded with spices, and resin, and +37:25 +Gr. stacte. + myrrh; and they went to bring them to Egypt. + +And Judas said to his brethren, What profit is it if we kill our brother, and conceal his blood? + +Come, let us sell him to these Ismaelites, but let not our hands be upon him, because he is our brother and our flesh; and his brethren listened. + +And the men, the merchants of Madian, went by, and they drew and lifted Joseph out of the pit, and sold Joseph to the Ismaelites for twenty pieces of gold; and they brought Joseph down into Egypt. + +And Ruben returned to the pit, and sees not Joseph in the pit; and he tore his garments. + +And he returned to his brethren and said, The boy is not; and I, whither am I yet to go? + +And having taken the coat of Joseph, they killed a kid of the goats, and stained the coat with the blood. + +And they sent the coat of many colors; and they brought it to their father, and said, This have we found; know if it be your son's coat or no. And he recognized it, and said, It is my son's coat, an evil wild beast has devoured him; a wild beast has carried off Joseph. + +And Jacob tore his clothes, and put sackcloth on his loins, and mourned for his son many days. + +And all his sons and his daughters gathered themselves together, and came to comfort him; but he would not be comforted, saying, I will go down to my son mourning to Hades; and his father wept for him. + +And the Madianites sold Joseph into Egypt; to Petephres, the eunuch of Pharao, captain of the guard. + +

+ + +

And it came to pass at that time that Judas went down from his brethren, and came as far as to a certain man of Odollam, whose name was Iras. + +And Judas saw there the daughter of a Chananitish man, whose name was Sava; and he took her, and went in to her. + +And she conceived and bore a son, and called his name, Er. + +And she conceived and bore a son again; and called his name, Aunan. + +And she again bore a son; and called his name, Selom: and she was in Chasbi when she bore them. + +And Judas took a wife for Er his firstborn, whose name was Thamar. + +And Er, the firstborn of Judas, was wicked before the Lord; and God killed him. + +And Judas said to Aunan, Go in to your brother's wife, and marry her as her brother-in-law, and raise up seed to your brother. + +And Aunan, knowing that the seed should not be his—it came to pass when he went in to his brother's wife, that he spilled +it upon the ground, so that he should not give seed to his brother's wife. + +And his doing this appeared evil before God; and he killed him also. + +And Judas said to Thamar, his daughter-in-law, Sit you a widow in the house of your father-in-law, until Selom my son be grown; for he said, lest he also die as his brethren; and Thamar departed, and sat in the house of her father. + +And the days were fulfilled, and Sava the wife of Judas died; and Judas, being comforted, went to them that sheared his sheep, himself and Iras his Shepherd the Odollamite, to Thamna. + +And it was told Thamar his daughter-in-law, saying, Behold, your father-in-law goes up to Thamna, to shear his sheep. + +And having taken off the garments of her widowhood from her, she put on a veil, and ornamented her face, and sat by the gates of Aenan, which is in the way to Thamna, for she saw that Selom was grown; but he gave her not to him for a wife. + +And when Judas saw her, he thought her to be a harlot; for she covered her face, and he knew her not. + +And he went out of his way to her, and said to her, Let me come in to you; for he knew not that she was his daughter-in-law; and she said, What will you give me if you should come in to me? + +And he said, I will send you a kid of the goats from my flock; and she said, +Well, if you will give me an earnest, until you send it. + +And he said, What is the earnest that I shall give you? and she said, Your ring, and your bracelet, and the staff in your hand; and he gave them to her, and went in to her, and she conceived by him. + +And she arose and departed, and took her veil from off her, and put on the garments of her widowhood. + +And Judas sent the kid of the goats by the hand of his shepherd the Odollamite, to receive the pledge from the woman; and he found her not. + +And he asked the men of the place, Where is the harlot who was in Aenan by the wayside? and they said, There was no harlot here. + +And he returned to Judas, and said, I have not found her; and the men of the place say, There is no harlot here. + +And Judas said, Let her have them, but let us not be ridiculed; I sent this kid, but you have not found her. + +And it came to pass after three months, that it was told Judas, saying, Thamar your daughter-in-law has grievously played the harlot, and behold she is with child by whoredom; and Judas said, Bring her out, and let her be burnt. + +And as they were bringing her, she sent to her father-in-law, saying, I am with child by the man whose these things are; and she said, See whose is this ring and bracelet and staff. + +And Judas knew +them, and said, Thamar is cleared rather than I, forasmuch as I gave her not to Selom my son: and he knew her not again. + +And it came to pass when she was in labor, that she also had twins in her womb. + +And it came to pass as she was bringing forth, one thrust forth his hand, and the midwife having taken hold of it, bound upon his hand a scarlet +thread, saying, This one shall come out first. + +And when he drew back his hand, then immediately came forth his brother; and she said, Why has the barrier been cut through because of you? and she called his name, Phares. + +And after this came forth his brother, on whose hand was the scarlet thread; and she called his name, Zara. + +

+ + +

And Joseph was brought down to Egypt; and Petephres the eunuch of Pharao, the39:1 +Gr. chief cook. The same Hebrew word signifies a cook, who was also a butcher; and a guardsman, who was also an executioner. + captain of the guard, an Egyptian, bought him of the hands of the Ismaelites, who brought him down there. + +And the Lord was with Joseph, and he was a prosperous man; and he was in the house with his lord the Egyptian. + +And his master knew that the Lord was with him, and the Lord prospers in his hands whatever he happens to do. + +And Joseph found grace in the presence of his lord, and was well-pleasing to him; and he set him over his house, and all that he had he gave into the hand of Joseph. + +And it came to pass after that he was set over his house, and over all that he had, that the Lord blessed the house of the Egyptian for Joseph's sake; and the blessing of the Lord was on all his possessions in the house, and in his field. + +And he committed all that he had into the hands of Joseph; and he knew not of anything that belonged to him, save the bread which he himself ate. And Joseph was handsome in form, and exceedingly beautiful in countenance. + +And it came to pass after these things, that his master's wife cast her eyes upon Joseph, and said, Lie with me. + +But he would not; but said to his master's wife, If because of me my master knows nothing in his house, and has given into my hands all things that belong to him: + +and in this house there is nothing above me, nor has anything been kept back from me, but you, because you are his wife—how then shall I do this wicked thing, and sin against God? + +And when she talked with Joseph day by day, and he listened not to her to sleep with her, so as to be with her, + + +39:11 +Lit. there happened such a day, and, etc. + it came to pass on a certain day, that Joseph went into the house to do his business, and there was no one of the household within. + +And she caught hold of him by his clothes, and said, Lie with me; and having left his clothes in her hands, he fled, and went forth. + +And it came to pass, when she saw that he had left his clothes in her hands, and fled, and gone forth, + +that she called those that were in the house, and spoke to them, saying, See, he has brought in to us a Hebrew servant to mock us—he came in to me, saying, Lie with me, and I cried with a loud voice. + +And when he heard that I lifted up my voice and cried, having left his clothes with me, he fled, and went forth out. + +So she leaves the clothes by her, until the master came to his house. + +And she spoke to him according to these words, saying, The Hebrew servant, whom you brought in to us, came in to me to mock me, and said to me, I will lie with you. + +And when he heard that I lifted up my voice and cried, having left his clothes with me, he fled and departed forth. + +And it came to pass, when his master heard all the words of his wife, that she spoke to him, saying, Thus did your servant to me, that he was very angry. + +And his master took Joseph, and cast him into the prison, into the place where the king's prisoners are kept, there in the prison. + +And the Lord was with Joseph, and poured down mercy upon him; and he gave him favor in the sight of the chief keeper of the prison. + +And the chief keeper of the prison gave the prison into the hand of Joseph, and all the prisoners +39:22 +Lit. men led away to prison or punishment. + as many as were in the prison; and all things whatever they do there, he did them. + +Because of him the chief keeper of the prison knew nothing, for all things were in the hand of Joseph, because the Lord was with him; and whatever things he did, the Lord made them to prosper in his hands. + +

+ + +

And it came to pass after these things, that the chief cupbearer of the king of Egypt and the chief baker trespassed against their lord the king of Egypt. + +And Pharao was angry with his two eunuchs, with his chief cupbearer, and with his chief baker. + +And he put them in ward, into the prison, into the place whereinto Joseph had been led. + +And the chief keeper of the prison committed them to Joseph, and he stood by them; and they were +some days in the prison. + +And they both +40:5 +Gr. saw. + had a dream in one night; and the vision of the dream of the chief cupbearer and chief baker, who belonged to the king of Egypt, who were in the prison, was this. + +Joseph went in to them in the morning, and saw them, and they had been troubled. + +And he asked the eunuchs of Pharao who were with him in the prison with his master, saying, Why is it that your countenances are sad today? + +And they said to him, We have seen a dream, and there is no interpreter of it. And Joseph said to them, Is not the interpretation of them through god? tell +them than to me. + +And the chief cupbearer related his dream to Joseph, and said, In my +40:9 +Gr. sleep. + dream a vine was before me. + +And in the vine +were three stems; and it budding shot forth blossoms; the clusters of grapes were ripe. + +And the cup of Pharao was in my hand; and I took the bunch of grapes, and squeezed it into the cup, and gave the cup into Pharao's hand. + +And Joseph said to him, This is the interpretation of it. The three stems are three days. + +Yet three days and Pharao shall remember your office, and he shall restore you to your place of chief cupbearer, and you shall give the cup of Pharao into his hand, according to your former high place, as you were wont to be cupbearer. + +But remember me of yourself, when it shall be well with you, and you shall deal mercifully with me, and you shall make mention of me to Pharao, and you shall bring me forth out of this dungeon. + +For surely I was stolen away out of the land of the Hebrews, and here I have done nothing, but they have cast me into this pit. + +And the chief baker saw that he interpreted aright; and he said to Joseph, I also saw a dream, and I thought I took up on my head three baskets of mealy food. + +And in the upper basket there was the work of the baker of every kind which Pharao eats; and the fowls of the air ate them out of the basket that was on my head. + +And Joseph answered and said to him, This is the interpretation of it; The three baskets are three days. + +Yet three days, and Pharao shall take away your head from off you, and shall hang you on a tree, and the birds of the sky shall eat your flesh from off you. + +And it came to pass on the third day that it was Pharao's birth-day, and he made a banquet for all his servants, and he remembered the office of the cupbearer and the office of the baker in the midst of his servants. + +And he restored the chief cupbearer to his office, and he gave the cup into Pharao's hand. + +And he hanged the chief baker, as Joseph, interpreted to them. + +Yet did not the chief cupbearer remember Joseph, but forgot him. + +

+ + +

And it came to pass after two +41:1 +Gr. years of days. + full years that Pharao had a dream. He thought he stood upon +the bank of the river. + +And behold, there came up as it were out of the river seven cows, fair in appearance, and choice of flesh, and they fed on the sedge. +41:2 +The Hebrew word which the LXX. have here written in Greek characters without translating it, is rendered in the place A.V. by meadow, in Job 8.11, the only other passage where it occurs, by flag. + + +And other seven cows came up after these out of the river, ill-favoured and lean-fleshed, and fed by the +other cows on the bank of the river. + +And the seven ill-favoured and lean cows devoured the seven well-favoured and choice-fleshed cows; and Pharao awoke. + +And he dreamed again. And, behold, seven ears came up on one stalk, choice and good. + +And, behold, seven ears thin and blasted with the wind, grew up after them. + +And the seven thin ears and blasted with the wind devoured the seven choice and full ears; and Pharao awoke, and it was a dream. + +And it was morning, and his soul was troubled; and he sent and called all the interpreters of Egypt, and all her wise men; and Pharao related to them his dream, and there was no one to +41:8 +Or, tell. + interpret it to Pharao. + +And the chief cupbearer spoke to Pharao, saying, I this day remember my fault: + +Pharao was angry with his servants, and put us in prison in the house of the captain of the guard, both me and the chief baker. + +And we +41:11 +Gr. saw. + had a dream both in one night, I and he; we saw, each according to his dream. + +And there was there with us a young man, a Hebrew servant of the captain of the guard; and we related to him +our dreams, and he interpreted +them to us. + +And it came to pass, as he interpreted them to us, so also it happened, both that I was restored to my office, and that he was hanged. + +And Pharao having sent, called Joseph; and they brought him out from the prison, and shaved him, and changed his dress, and he came to Pharao. + +And Pharao said to Joseph, I have seen a vision, and there is no one to interpret it; but I have heard +41:15 +Gr. men saying. + say concerning you that you did hear dreams and interpret them. + +And Joseph answered Pharao and said, Without God an answer of safety shall not be given to Pharao. + +And Pharao spoke to Joseph, saying, In my dream I thought I stood by the bank of the river; + +and there came up as it were out of the river, seven cows well-favoured and choice-fleshed, and they fed on the sedge. + +And behold seven other cows came up after them out of the river, evil and ill-favoured and lean-fleshed, such that I never saw worse in all the land of Egypt. + +And the seven ill-favoured and thin cows ate up the seven first good and choice cows. + +And they went into their bellies; and +41:21 +Gr. they were. + it was not perceptible that they had gone into their bellies, and their appearance was ill-favoured, as also at the beginning; and after I awoke I slept, + +and saw again in my sleep, and as it were seven ears came up on one stem, full and good. + +And other seven ears, thin and blasted with the wind, sprang up close to them. + +And the seven thin and blasted ears devoured the seven fine and full ears: so I spoke to the interpreters, and there was no one to explain it to me. + +And Joseph said to Pharao, The dream of Pharao is one; whatever God does, he has shown to Pharao. + +The seven good cows are seven years, and the seven good ears are seven years; the dream of Pharao is one. + +And the seven thin kine that came up after them are seven years; and the seven thin and blasted ears are seven years; there shall be seven years of famine. + +And as for the word which I have told Pharao, whatever God intends to do, he has shown to Pharao: + +behold, for seven years there is coming great plenty in all the land of Egypt. + +But there shall come seven years of famine after these, and they shall forget the plenty that shall be in all Egypt, and the famine shall consume the land. + +And the plenty shall not be known in the land by reason of the famine that shall be after this, for it shall be very grievous. + +And concerning the repetition of the dream to Pharao twice, +it is because the saying which is from God shall be true, and God will hasten to accomplish it. + +Now then, look out a wise and prudent man, and set him over the land of Egypt. + +And let Pharao make and appoint local governors over the land; and let them take up a fifth part of all the produce of the land of Egypt for the seven years of the plenty. + +And let them gather all the food of these seven good years that are coming, and let the corn be gathered under the hand of Pharao; let food be kept in the cities. + +And the stored food shall be for the land against the seven years of famine, which shall be in the land of Egypt; and the land shall not be utterly destroyed by the famine. + +And the word was pleasing in the sight of Pharao, and in the sight of all his servants. + +And Pharao said to all his servants, Shall we find such a man as this, who has the Spirit of God in him? + +And Pharao said to Joseph, Since God has showed you all these things, there is not a wiser or more prudent man than you. + +You shall be over my house, and all my people shall be obedient to your +41:40 +Gr. mouth. + word; only in the throne will I excel you. + +And Pharao said to Joseph, Behold, I set you this day over all the land of Egypt. + +And Pharao took his ring off his hand, and put it on the hand of Joseph, and put on him a robe of fine linen, and put a necklace of gold about his neck. + +And he mounted him on the second of his chariots, and a herald made proclamation before him; and he set him over all the land of Egypt. + +And Pharao said to Joseph, I am Pharao; without you no one shall lift up his hand on all the land of Egypt. + +And Pharao called the name of Joseph, Psonthomphanech; and he gave him Aseneth, the daughter of Petephres, priest of Heliopolis, to wife. + +And Joseph was thirty years old when he stood before Pharao, king of Egypt. And Joseph went out from the presence of Pharao, and went through all the land of Egypt. + +And the land produced, in the seven years of plenty, +whole handfuls +of corn. + +And he gathered all the food of the seven years, in which was the plenty in the land of Egypt; and he laid up the food in the cities; the food of the fields of a city round about it he laid up in it. + +And Joseph gathered very much corn as the sand of the sea, until it could not be numbered, for there was no number +of it. + +And to Joseph were born two sons, before the seven years of famine came, which Aseneth, the daughter of Petephres, priest of Heliopolis, bore to him. + +And Joseph called the name of the firstborn, Manasse; for God, +said he, has made me forget all my toils, and all +41:51 +Gr. things belong to my father. + my father's house. + +And he called the name of the second, Ephraim; for God, +said he, has increased me in the land of my humiliation. + +And the seven years of plenty passed away, which were in the land of Egypt. + +And the seven years of famine began to come, as Joseph said; and there was a famine in all the land; but in all the land of Egypt there was bread. + +And all the land of Egypt was hungry; and the people cried to Pharao for bread. And Pharao said to all the Egyptians, Go to Joseph, and do whatever he shall tell you. + +And the famine was on the face of all the earth; and Joseph opened all the granaries, and sold to all the Egyptians. + +And all countries came to Egypt to buy of Joseph, for the famine prevailed in all the earth. + +

+ + +

And Jacob having seen that there was a sale +of corn in Egypt, said to his sons, Why are you⌃ indolent? + +Behold, I have heard that there is corn in Egypt; go down there, and buy for us a little food, that we may live, and not die. + +And the ten brethren of Joseph went down to buy corn out of Egypt. + +But +Jacob sent not Benjamin, the brother of Joseph, with his brethren; for he said, Lest, haply, disease befall him. + +And the sons of Israel came to buy with those that came, for the famine was in the land of Chanaan. + +And Joseph was ruler of the land; he sold to all the people of the land. And the brethren of Joseph, having come, did reverence to him, +bowing with the face to the ground. + +And when Joseph saw his brethren, he knew them, and estranged himself from them, and spoke hard words to them; and said to them, Whence are you⌃ come? And they said, Out of the land of Chanaan, to buy food. + +And Joseph knew his brethren, but they knew not him. + +And Joseph remembered his dream, which he saw; and he said to them, You⌃ are spies; to observe the marks of the land are you⌃ come. + +But they said, Nay, Sir, we your servants are come to buy food; + +we are all sons of one man; we are peaceful, your servants are not spies. + +And he said to them, Nay, but you⌃ are come to observe the marks of the land. + +And they said, We your servants are twelve brethren, in the land of Chanaan; and, behold, the youngest is with our father today, but the other one is not. + +And Joseph said to them, This is it that I spoke to you, saying, you⌃ are spies; + +herein shall you⌃ be manifested; by the health of Pharao, you⌃ shall not depart hence, unless your younger brother come here. + +Send one of you, and take your brother; and go you⌃ to prison, till your words be clear, whether you⌃ speak the truth or not; but, if not, by the health of Pharao, verily you⌃ are spies. + +And he put them in prison three days. + +And he said to them on the third day, This do, and you⌃ shall live, for I fear God. + +If you⌃ be peaceful, let one of your brethren be detained in prison; but go you⌃, and carry back the +42:19 +Gr. the purchase of your gift of corn. + corn you⌃ have purchased. + +And bring your younger brother to me, and your words shall be believed; but, if not, you⌃ shall die. And they did so. + +And each said to his brother, Yes, indeed, for we are in fault concerning our brother, when we disregarded the anguish of his soul, when he implored us, and we listened not to him; and therefore has this affliction come upon us. + +And Ruben answered them, saying, Did I not speak to you, saying, Hurt not the boy, and you⌃ heard me not? and, behold, his blood is required. + +But they knew not that Joseph +42:23 +Gr. heard them. + understood them; for there was an interpreter between them. + +And Joseph turned away from them, and wept; and again he came to them, and spoke to them; and he took Symeon from them, and bound him before their eyes. + +And Joseph gave orders to fill their vessels with corn, and to return their money to each into his sack, and to give them provision for the way; and it was so done to them. + +And having put the corn on the asses, they departed thence. + +And one having opened his sack to give his asses fodder, at the place where they rested, saw also his bundle of money, for it was on the mouth of his sack. + +And he said to his brethren, My money has been restored to me, and behold this is in my sack. And their heart was wonder-struck, and they were troubled, saying one to another, What is this that God has done to us? + +And they came to their father, Jacob, into the land of Chanaan, and reported to him all that had happened to them, saying, + +The man, the lord of the land, spoke harsh words to us, and put us in prison as spies of the land. + +And we said to him, We are men of peace, we are not spies. + +We are twelve brethren, sons of our father; one is not, and the youngest is with his father today in the land of Chanaan. + +And the man, the lord of the land, said to us, Herein shall I know that you⌃ are peaceful; leave one brother here with me, and having taken the corn you⌃ have purchased for your family, depart. + +And bring to me your younger brother; then I shall know that you⌃ are not spies, but that you⌃ are men of peace: and I will restore you your brother, and you⌃ shall trade in the land. + +And it came to pass as they were emptying their sacks, there was each man's bundle of money in his sack; and they and their father saw their bundles of money, and they were afraid. + +And their father Jacob said to them, You⌃ have bereaved me. Joseph is not, Symeon is not, and will you⌃ take Benjamin? all these things have come upon me. + +And Ruben spoke to his father, saying, Slay my two sons, if I bring him not to you; give him into my hand, and I will bring him back to you. + +But he said, My son shall not go down with you, because his brother is dead, and he only has been left; and +suppose it shall come to pass that he is afflicted by the way by which you⌃ go, then you⌃ shall bring down my old age with sorrow to Hades. + +

+ + +

But the famine prevailed in the land. + +And it came to pass, when they had finished eating the corn which they had brought out of Egypt, that their father said to them, Go again; buy us a little food. + +And Judas spoke to him, saying, The man, the lord of the country, positively testified to us, saying, You⌃ shall not see my face, unless your younger brother be with you. + +If, then, you send our brother with us, we will go down, and buy you food; + +but if you send not our brother with us, we will not go: for the man spoke to us, saying, You⌃ shall not see my face, unless your younger brother be with you. + +And Israel said, Why did you⌃ harm me, inasmuch as you⌃ told the man that you⌃ had a brother? + +And they said, The man closely questioned us about our family also, saying, Does your father yet live, and have you⌃ a brother? and we answered him according to this question: did we know that he would say to us, Bring your brother? + +And Judas said to his father Israel, Send the boy with me, and we will arise and go, that we may live and not die, both we and you, and our store. + +And I engage for him; at my hand do you require him; if I bring him not to you, and place him before you, I shall be guilty toward you for ever. + +For if we had not tarried, we should now have returned twice. + +And Israel, their father, said to them, If it be so, do this; take of the fruits of the earth in your vessels, and carry down to the man presents of gum and honey, and frankincense, and stacte, and turpentine, and walnuts. + +And take double money in your hands, and the money that was returned in your sacks, carry back with you, lest perhaps it is a mistake. + +And take your +43:13 +Gr. one. + brother; and arise, go down to the man. + +And my God give you favor in the sight of the man, and send away your other brother, and Benjamin, for I accordingly as I have been bereaved, am bereaved. + +And the men having taken these presents, and the double money, took in their hands also Benjamin; and they rose up and went down to Egypt, and stood before Joseph. + +And Joseph saw them and his brother Benjamin, born of the same mother; and he said to the steward of his household, Bring the men into the house, and kill beasts and make ready, for the men are to eat bread with me at noon. + +And the man did as Joseph said; and he brought the men into the house of Joseph. + +And the men, when they perceived that they were brought into the house of Joseph, said, We are brought in because of the money that was returned in our sacks at the first; even in order to inform against us, and lay it to our charge; to take us for servants, and our asses. + +And having approached the man who was over the house of Joseph, they spoke to him in the porch of the house, + +saying, We pray +you, Sir; we came down at first to buy food. + +And it came to pass, when we came to unlade, and opened our sacks, +there was also this money of each in his sack; we have now brought back our money by weight in our hands. + +And we have brought other money with us to buy food; we know not who put the money into our sacks. + +And he said to them, +God deal mercifully with you; be not afraid; your God, and the God of your fathers, has given you treasures in your sacks, and +43:23 +q.d. I am satisfied with the money you have given me, both as to quality and quantity. + I have enough of your good money. And he brought Symeon out to them. + +And he brought water to wash their feet; and gave provender to their asses. + +And they prepared their gifts, until Joseph came at noon, for they heard that he was going to dine there. + +And Joseph entered into the house, and they brought him the gifts which they had in their hands, into the house; and they did him reverence with their face to the ground. + +And he asked them, How are you⌃? and he said to them, Is your father, the old man of whom you⌃ spoke, well? Does he yet live? + +And they said, Your servant our father is well; he is yet alive. And he said, Blessed be that man by God; —and they bowed, and did him reverence. + +And Joseph +43:29 +Gr. having looked up with, etc. + lifted up his eyes, and saw his brother Benjamin, born of the same mother; and he said, Is this your younger brother, whom you⌃ spoke of bringing to me? and he said, God have mercy on you, my son. + +And Joseph was troubled, for his bowels yearned over his brother, and he sought to weep; and he went into his chamber, and wept there. + +And he washed his face and came out, and refrained himself, and said, Set on bread. + +And they set on +bread for him alone, and for them by themselves, and for the Egyptians feasting with him by themselves, for the Egyptians could not eat bread with the Hebrews, for it is an abomination to the Egyptians. + +And they sat before him, the firstborn according to his seniority, and the younger according to his youth; and the men +43:33 +Gr. were amazed. + looked with amazement every one at his brother. + +And they took their portions from him to themselves; but Benjamin's portion was +43:34 +Gr. was magnified beyond the portions of all five times in comparison of theirs. + five times as much as the portions of +the others. And they drank and were filled with drink with him. + +

+ + +

And Joseph charged the steward of his house, saying, Fill the men's sacks with food, as much as they can carry, and put the money of each in the mouth of his sack. + +And put my silver cup into the sack of the youngest, and the price of his corn. And it was done according to the word of Joseph, as he said. + +The morning dawned, and the men were sent away, they and their asses. + +And when they had gone out of the city, +and were not far off, then Joseph said to his steward, Arise, and pursue after the men; and you shall overtake them, and say to them, Why have you⌃ returned evil for good? + +Why have you⌃ stolen my silver cup? is it not this +44:5 +Gr. in which. + out of which my lord drinks? and he divines augury with it; you⌃ have accomplished evil in that which you⌃ have done. + +And he found them, and spoke to them according to these words. + +And they said to him, Why does our lord speak according to these words? far be it from your servants to do according to this word. + +If we brought back to you out of the land of Chanaan the money which we found in our sacks, how should we steal silver or gold out of the house of your lord? + +With whoever of your servants you shall find the cup, let him die; and, moreover, we will be servants to our lord. + +And he said, Now then it shall be as you⌃ say; with whoever the cup shall be found, he shall be my servant, and you⌃ shall be clear. + +And they hasted, and took down every man his sack on the ground, and they opened every man his sack. + +And he searched, beginning from the oldest, until he came to the youngest; and he found the cup in Benjamin's sack. + +And they tore their garments, and laid each man his sack on his ass, and returned to the city. + +And Judas and his brethren came in to Joseph, while he was yet there, and fell on the ground before him. + +And Joseph said to them, What is this thing that you⌃ have done? know you⌃ not that a man such as I can surely divine? + +And Judas said, What shall we answer to our lord, or what shall we say, or wherein should we be justified? +44:16 +Gr. but. + whereas God has revealed the unrighteousness of your servants; behold, we are slaves to our lord, both we and he with whom the cup has been found. + +And Joseph said, Far be it from me to do this thing; the man with whom the cup has been found, he shall be my servant; but do you⌃ go up with safety to your father. + +And Judas drew near him, and said, I pray, Sir, let your servant speak a word before you, and be not angry with your servant, for you are next to Pharao. + +Sir, you asked your servants, saying, Have you⌃ a father or a brother? + +And we said to +my lord, We have a father, an old man, and he has a son of his old age, a young one, and his brother is dead, and he alone has been left behind to his mother, and his father loves him. + +And you said to your servants, Bring him down to me, and I will take care of him. + +And we said to +my lord, The child will not be able to leave his father; but if he should leave his father, he will die. + +But you said to your servants, Except your younger brother come down with you, you⌃ shall not see my face again. + +And it came to pass, when we went up to your servant our father, we reported to him the words of our lord. + +And our father said, Go again, and buy us a little food. + +And we said, We shall not be able to go down; but if our younger brother go down with us, we will go down; for we shall not be able to see the man's face, our younger brother not being with us. + +And your servant our father said to us, You⌃ know that my wife bore me two +sons; + +and one is departed from me; and you⌃ said that he was devoured of wild beasts, and I have not seen him until now. + +If then you⌃ take this one also from my presence, and an affliction happen to him by the way, then shall you⌃ bring down my old age with sorrow to +44:29 +Gr. Hades. + the grave. + +Now then, if I should go in to your servant, and our father, and the boy should not be with us, (and his life depends on this +lad's life) + +—it shall even come to pass, when he sees the boy is not with us, +that he will die, and your servants will bring down the old age of your servant, and our father, with sorrow to the grave. +44:31 +Gr. Hades. + + +For your servant has received the boy +in charge from his father, saying, If I bring him not to you, and place him before you, I shall be guilty towards my father for ever. + +Now then I will remain a servant with you instead of the lad, a domestic of my lord; but let the lad go up with his brethren. + +For how shall I go up to my father, the lad not being with us? lest I behold the evils which will befall my father. + +

+ + +

And Joseph could not refrain himself when all were standing by him, but said, Dismiss all from me; and no one stood near Joseph, when he made himself known to his brethren. + +And he uttered his voice with weeping; and all the Egyptians heard, and it was reported to the house of Pharao. + +And Joseph said to his brethren, I am Joseph; does my father yet live? And his brethren could not answer him, for they were troubled. + +And Joseph said to his brethren, Draw near to me; and they drew near; and he said, I am your brother Joseph, whom you⌃ sold into Egypt. + +Now then be not grieved, and let it not seem hard to you that you⌃ sold me hither, for God sent me before you for life. + +For this second year there is famine on the earth, and there are yet five years remaining, in which there is to be neither plowing, nor mowing. + +For God sent me before you, that there might be left to you a remnant upon the earth, even to nourish a great remnant of you. + +Now then you⌃ did not send me hither, but God; and he has made me as a father of Pharao, and lord of all his house, and ruler of all the land of Egypt. + +Hasten, therefore, and go up to my father, and say to him, These things says your son Joseph; God has made me lord of all the land of Egypt; come down therefore to me, and wait not. + +And you shall dwell in the land of Gesem of Arabia; and you shall be near me, you and your sons, and your sons' sons, your sheep and your oxen, and whatever things are your. + +And I will nourish you there: for the famine is yet for five years; lest you be consumed, and your sons, and all your possessions. + +Behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaks to you. + +Report, therefore, to my father all my glory in Egypt, and all things that you⌃ have seen, and make haste and bring down my father hither. + +And he fell on his brother Benjamin's neck, and wept on him; and Benjamin wept on his neck. + +And he kissed all his brethren, and wept on them; and after these things his brethren spoke to him. + +And the report was carried into the house of Pharao, saying, Joseph's brethren are come; and Pharao was glad, and his household. + +And Pharao said to Joseph, Say to your brethren, Do this; fill your wagons, and depart into the land of Chanaan. + +And take up your father, and your possessions, and come to me; and I will give you of all the goods of Egypt, and you⌃ shall eat the marrow of the land. + +And do you charge them thus; that they should take for them wagons out of the land of Egypt, for your little ones, and for your wives; and take up your father, and come. + +And be not sparing in regard to your property, for all the good of Egypt shall be yours. + +And the children of Israel did so; and Joseph gave to them wagons, according to the words spoken by king Pharao; and he gave them provision for the journey. + +And he gave to them all two sets of raiment apiece; but to Benjamin he gave three hundred pieces of gold, and five changes of raiment. + +And to his father he sent +presents at the same rate, and ten asses, bearing some of all the good things of Egypt, and ten mules, bearing bread for his father for your journey. + +And he sent away his brethren, and they went; and he said to them, Be not angry by the way. + +And they went up out of Egypt, and came into the land of Chanaan, to Jacob their father. + +And they reported to him, saying, Your son Joseph is living, and he is ruler over all the land of Egypt; and Jacob was +45:26 +Gr. amazed in mind. + amazed, for he did not believe them. + +But they spoke to him all the words uttered by Joseph, whatever he said to them; and having seen the chariots which Joseph sent to take him up, the spirit of Jacob their father revived. + +And Israel said, It is a great thing for me if Joseph my son is yet alive. I will go and see him before I die. + +

+ + +

And Israel departed, he and all that he had, and came to the well of the oath; and he offered sacrifice to the God of his father Isaac. + +And God spoke to Israel in a night vision, saying, Jacob, Jacob; and he said, What is it? + +And he says to him, I am the God of your fathers; fear not to go down into Egypt, for I will make you there a great nation. + +And I will go down with you into Egypt, and I will bring you up at the end; and Joseph shall put his hands on your eyes. + +And Jacob rose up from the well of the oath; and the sons of Israel took up their father, and the baggage, and their wives on the wagons, which Joseph sent to take them. + +And they took up their goods, and all their property, which they had gotten in the land of Chanaan; they came into the land of Egypt, Jacob, and all his seed with him. + +The sons, and the sons of his sons with him; +his daughters, and the daughters of his daughters; and he brought all his seed into Egypt. + +And these are the names of the sons of Israel that went into Egypt with their father Jacob—Jacob and his sons. The firstborn of Jacob, Ruben. + +And the sons of Ruben; Enoch, and Phallus, Asron, and Charmi. + +and the sons of Symeon; Jemuel, and Jamin, and Aod, and Achin, and Saar, and Saul, the son of a Chananitish woman. + +And the sons of Levi; Gerson, Cath, and Merari. + +And the sons of Judas; Er, and Aunan, and Selom, and Phares, and Zara: and Er and Aunan died in the land of Chanaan. + +And the sons of Phares +were Esron, and Jemuel. And the sons of Issachar; Thola, and Phua, and Asum, and Sambran. + +And the sons of Zabulun, Sered, and Allon, and Achoel. + +These +are the sons of Lea, which she bore to Jacob in Mesopotamia of Syria, and Dina his daughter; all the souls, sons and daughters, thirty-three. + +And the sons of Gad; Saphon, and Angis, and Sannis, and Thasoban, and Aedis, and Aroedis, and Areelis. + +And the sons of Aser; Jemna, Jessua, and Jeul, and Baria, and Sara their sister. And the sons of Baria; Chobor, and Melchiil. + +These +are the sons of Zelpha, which Laban gave to his daughter Lea, who bore these to Jacob, sixteen souls. + +And the sons of Rachel, the wife of Jacob; Joseph, and Benjamin. + +And there were sons born to Joseph in the land of Egypt, whom Aseneth, the daughter of Petephres, priest of Heliopolis, bore to him, +even Manasses and Ephraim. And there were sons born to Manasses, which the Syrian concubine bore to him, +even Machir. And Machir begot Galaad. And the sons of Ephraim, the brother of Manasses; Sutalaam, and Taam. And the sons of Sutalaam; Edom. + +and the sons of Benjamin; Bala, and Bochor, and Asbel. And the sons of Bala were Gera, and Noeman, and Anchis, and Ros, and Mamphim. And Gera begot Arad. + +These +are the sons of Rachel, which she bore to Jacob; all the souls eighteen. + +And the sons of Dan; Asom. + +And the sons of Nephthalim; Asiel, and Goni, and Issaar, and Sollem. + +These +are the sons of Balla, whom Laban gave to his daughter Rachel, who bore these to Jacob; all the souls, seven. + +And all the souls that came with Jacob into Egypt, who came out of his +46:26 +Gr. thighs. + loins, besides the wives of the sons of Jacob, +even all the souls were sixty-six. + +And the sons of Joseph, who were born to him in the land of Egypt, were nine souls; all the souls of the house of Jacob who came with Joseph into Egypt, were seventy-five souls. + +And he sent Judas before him to Joseph, to meet him to the city of +46:28 +Heb. Goshen. + Heroes, into the land of Ramesses. + +And Joseph having +46:29 +Gr. yoked. + made ready his chariots, went up to meet Israel his father, at the city of Heroes; and having appeared to him, fell on his neck, and wept with +46:29 +Gr. fat. + abundant weeping. + +And Israel said to Joseph, After this I will +gladly die, since I have seen your face, for you are yet living. + +And Joseph said to his brethren, I will go up and tell Pharao, and will say to him, My brethren, and my father's house, who were in the land of Chanaan, are come to me. + +And the men are shepherds; for they have been feeders of cattle, and they have brought with them their cattle, and their kine, and all their property. + +If then Pharao call you, and say to you, What is you occupation? + +You⌃ shall say, We your servants are herdsmen from our youth until now, both we and our fathers: that you⌃ may dwell in the land of Gesem of Arabia, for every shepherd is an abomination to the Egyptians. + +

+ + +

And Joseph came and told Pharao, +saying, My father, and my brethren, and their cattle, and their oxen, and all their possessions, are come out of the land of Chanaan, and behold, they are in the land of Gesem. + +And he took of his brethren five men, and set them before Pharao. + +And Pharao said to the brethren of Joseph, What is your occupation? and they said to Pharao, Your servants are shepherds, both we and our father. + +And they said to Pharao, We are come to sojourn in the land, for there is no pasture for the flocks of your servants, for the famine has prevailed in the land of Chanaan; now then, +47:4 +Or, let us dwell. See 1 Tim 6:8. + we will dwell in the land of Gesem. And Pharao said to Joseph, Let them dwell in the land of Gesem; and if you know that there are among them able men, make them overseers of my cattle. So Jacob and his sons came into Egypt, to Joseph; and Pharao, king of Egypt, heard +of it. + +And Pharao spoke to Joseph, saying, Your father, and your brethren, are come to you. + +Behold, the land of Egypt is before you; settle your father and your brethren in the best land. + +And Joseph brought in Jacob his father, and set him before Pharao; and Jacob blessed Pharao. + +And Pharao said to Jacob, How many are the years of the days of your life? + +And Jacob said to Pharao, The days of the years of my life, wherein I sojourn, are one hundred and thirty years; few and evil have been the days of the years of my life, they have not attained to the days of the life of my fathers, in which days they sojourned. + +And Jacob blessed Pharao, and departed from him. + +And Joseph settled his father and his brethren, and gave them a possession in the land of Egypt, in the best land, in the land of Ramesses, as Pharao commanded. + +And Joseph gave provision to his father, and his brethren, and to all the house of his father, corn for each person. + +And there was no corn in all the land, for the famine prevailed greatly; and the land of Egypt, and the land of Chanaan, fainted for the famine. + +And Joseph gathered all the money that was found in the land of Egypt, and the land of Chanaan, +in return for the corn which they bought, and he distributed corn to them; and Joseph brought all the money into the house of Pharao. + +And all the money failed out of the land of Egypt, and out of the land of Chanaan; and all the Egyptians came to Joseph, saying, Give us bread, and why do we die in your presence? for our money is spent. + +And Joseph said to them, Bring your cattle, and I will give you bread for your cattle, if your money is spent. + +And they brought their cattle to Joseph; and Joseph gave them bread in return for their horses, and for their sheep, and for their oxen, and for their asses; and Joseph maintained them with bread for all their cattle in that year. + +And that year passed, and they came to him in the second year, and said to him, Must we then be consumed from before our lord? for if our money has failed, and our possessions, and our cattle, +brought to you our lord, and there has not been left to us before our lord more than our own bodies and our land, +we are indeed destitute. + +In order, then, that we die not before you, and the land be made desolate, buy us and our land for bread, and we and our land will be servants to Pharao: give seed that we may sow, and live and not die, so our land shall not be made desolate. + +And Joseph bought all the land of the Egyptians, for Pharao; for the Egyptians sold their land to Pharao; for the famine prevailed against them, and the land became Pharao's. + +And he brought the people into bondage to him, for servants, from one extremity of Egypt to the other, + +except only the land of the priests; Joseph bought not this, for Pharao gave a portion in the way of gift to the priests; and they ate their portion which Pharao gave them; therefore they sold not their land. + +And Joseph said to all the Egyptians, Behold, I have bought you and your land this day for Pharao; take seed for you, and sow the land. + +And there shall be the fruits of it; and you⌃ shall give the fifth part to Pharao, and the four +remaining parts shall be for yourselves, for seed for the earth, and for food for you, and all that are in your houses. + +And they said, You have saved us; we have found favor before our lord, and we will be servants to Pharao. + +And Joseph appointed it to them for an ordinance until this day; to reserve a fifth part for Pharao, on the land of Egypt, except only the land of the priests, that was not Pharao's. + +And Israel lived in Egypt, in the land of Gesem, and they gained an inheritance upon it; and they increased and multiplied very greatly. + +And Jacob survived seventeen years in the land of Egypt; and Jacob's days of the years of his life were one hundred and forty-seven years. + +and the days of Israel drew near for him to die: and he called his son Joseph, and said to him, If I have found favor before you, put your hand under my thigh, and you shall execute mercy and truth toward me, so as not to bury me in Egypt. + +But I will sleep with my fathers, and you shall carry me up out of Egypt, and bury me in their sepulchre. And he said, I will do according to your word. + +And he said, Swear to me; and he swore to him. And Israel did reverence, leaning on the top of his staff. + +

+ + +

And it came to pass after these things, that it was reported to Joseph, Behold, your father is ill; and, having taken his two sons, Manasse and Ephraim, he came to Jacob. + +And it was reported to Jacob, saying, Behold, your son Joseph comes to you; and Israel having strengthened himself, sat upon the bed. + +And Jacob said to Joseph, My God appeared to me in Luza, in the land of Chanaan, and blessed me, + +and said to me, Behold, I will increase you, and multiply you, and will make of you multitudes of nations; and I will give this land to you, and to your seed after you, for an everlasting possession. + +Now then your two sons, who were born to you in the land of Egypt, before I came to you into Egypt, are mine; Ephraim and Manasse, as Ruben and Symeon they shall be mine. + +And the children which you shall beget hereafter, shall be in the name of their brethren; they shall be named after their inheritances. + +And as for me, when I came out of Mesopotamia of Syria, Rachel, your mother, died in the land of Chanaan, as I drew near to the horse-course of Chabratha of the land +of Chanaan, so as to come to Ephratha; and I buried her in the road of the course; this is Bethlehem. + +And when Israel saw the sons of Joseph, he said, Who are these to you? + +And Joseph said to his father, They are my sons, whom God gave me here; and Jacob said, Bring me them, that I may bless them. + +Now the eyes of Israel were dim through age, and he could not see; and he brought them near to him, and he kissed them, and embraced them. + +And Israel said to Joseph, Behold, I have not been deprived of +seeing your face, and behold! God has showed me your seed also. + +And Joseph brought them out from +between his knees, and they did reverence to him, with their face to the ground. + +And Joseph took his two sons, both Ephraim in his right hand, but on the left of Israel, and Manasse on his left hand, but on the right of Israel, and brought them near to him. + +But Israel having stretched out his right hand, laid it on the head of Ephraim, and he was the younger; and his left hand on the head of Manasse, +guiding his hands crosswise. + +And he blessed them and said, The God in whose sight my fathers were well pleasing, +even Abraam and Isaac, the God who continues to feed me from my youth until this day; + +the angel who delivers me from all evils, bless these boys, and my name shall be called upon them, and the name of my fathers, Abraam and Isaac; and let them be increased to a great multitude on the earth. + +And Joseph having seen that his father put his right hand on the head of Ephraim—it seemed grievous to him; and Joseph took hold of the hand of his father, to remove it from the head of Ephraim to the head of Manasse. + +And Joseph said to his father, Not so, father; for this is the firstborn; lay your right-hand upon his head. + +And he would not, but said, I know it, son, I know it; he also shall be a people, and he shall be exalted, but his younger brother shall be greater than he, and his seed shall become a multitude of nations. + +And he blessed them in that day, saying, In you shall Israel be blessed, saying, God make you as Ephraim and Manasse; and he set Ephraim before Manasse. + +And Israel said to Joseph, Behold, I die; and God shall be with you, and restore you to the land of your fathers. + +And I give to you Sicima, a select portion above your brethren, which I took out of the hand of the Amorites with my sword and bow. + +

+ + +

And Jacob called his sons, and said to them, + +Assemble yourselves, that I may tell you what shall happen to you in the last days. Gather yourselves together, and hear me, sons of Jacob; hear Israel, hear your father. + +Ruben, you +49:3 +Or, you my firstborn, etc., nom. and voc. not being always regularly distinguished in the LXX. See Heb 1:8 ὁ θεὸς. + +are my firstborn, you my strength, and the first of my children, hard to be endured, +hard and self-willed. + +You were insolent like water, burst not forth with violence, for you went up to the bed of your father; then you defiled the couch, whereupon you went up. + +Symeon and Levi, brethren, accomplished the injustice of their cutting off. + +Let not my soul come into their counsel, and let not my inward parts contend in their conspiracy, for in their wrath they killed men, and in their passion they houghed a bull. + +Cursed be their wrath, for it was willful, and their anger, for it was +49:7 +more lit. hardened or aggravated. + cruel: I will divide them in Jacob, and scatter them in Israel. + +Juda, your brethren have praised you, and your hands shall be on the back of your enemies; your father's sons shall do you reverence. + + +49:9 +The terminations of proper names are occasionally varied. + Juda is a lion's whelp: from the tender plant, my son, you are gone up, having couched you lie as a lion, and as a whelp; who shall stir him up? + +A ruler shall not fail from Juda, nor a prince from his +49:10 +Gr. thighs. + loins, until there come the things stored up for him; and he is the expectation of nations. + +Binding his foal to the vine, and the foal of his ass to the branch +of it, he shall wash his robe in wine, and his garment in the blood of the grape. + +His eyes shall be more cheering than wine, and his teeth whiter than milk. + +Zabulon shall dwell on the coast, and he +shall be by a haven of ships, and shall extend to Sidon. + +Issachar has desired that which is good; resting between the inheritances. + +And having seen the resting place that it was good, and the land that it was fertile, he subjected his shoulder to labor, and became a husbandman. + +Dan shall judge his people, as one tribe too in Israel. + +And let Dan be a serpent in the way, besetting the path, biting the heel of the horse (and the rider shall fall backward), + +waiting for the salvation of the Lord. + +Gad, a plundering troop shall plunder him; but he shall plunder him, +pursuing him closely. + +Aser, his bread +shall be fat; and he shall yield dainties to princes. + +Nephthalim is a spreading stem, bestowing beauty on its fruit. + +Joseph is a son increased; my dearly loved son is increased; my youngest son, turn to me. + +Against whom men taking evil counsel reproached +him, and the archers pressed hard upon him. + +But their bow and arrows were mightily consumed, and the sinews of their arms were slackened by the hand of the mighty one of Jacob; thence is he that strengthened Israel from the God of your father; + +and my God helped you, and he blessed you with the blessing of heaven from above, and the blessing of the earth possessing all things, because of the blessing of the breasts and of the womb, + +the blessings of your father and your mother—it has prevailed above the blessing of the lasting mountains, and beyond the blessings of the everlasting hills; they shall be upon the head of Joseph, and upon the head of the brothers of whom he took the lead. + +Benjamin, as a ravening wolf, shall eat still in the morning, and at evening he gives food. + +All these +are the twelve sons of Jacob; and their father spoke these words to them, and he blessed them; he blessed each of them according to his blessing. + +And he said to them, I am added to my people; you⌃ shall bury me with my fathers in the cave, which is in the field of Ephron the Chettite, + +in the double cave which is opposite Mambre, in the land of Chanaan, the cave which Abraam bought of Ephron the Chettite, for a possession of a sepulchre. + +There they buried Abraam and Sarrha his wife; there they buried Isaac, and Rebecca his wife; there they buried Lea; + +in the portion of the field, and of the cave that was in it, +purchased of the sons of Chet. + +And Jacob ceased giving charges to his sons; and having lifted up his feet on the bed, he died, and was gathered to his people. + +

+ + +

And Joseph fell upon his father's face, and wept on him, and kissed him. + +And Joseph commanded his servants the embalmers to embalm his father; and the embalmers embalmed Israel. + +And they fulfilled forty days for him, for so are the days of embalming numbered; and Egypt mourned for him seventy days. + +And when the days of mourning were past, Joseph spoke to the princes of Pharao, saying, If I have found favor in your sight, speak concerning me in the ears of Pharao, saying, + +My father adjured me, saying, In the sepulchre which I dug for myself in the land of Chanaan, there you shall bury me; now then I will go up and bury my father, and return again. + +And Pharao said to Joseph, Go up, bury your father, as he constrained you to swear. + +So Joseph went up to bury his father; and all the servants of Pharao went up with him, and the elders of his house, and all the elders of the land of Egypt. + +And all the household of Joseph, and his brethren, and all the house of his father, and his kindred; and they left behind the sheep and the oxen in the land of Gesem. + +And there went up with him also chariots and horsemen; and there was a very great company. + +And they came to the threshing floor of Atad, which is beyond Jordan; and they bewailed him with a great and very sore lamentation; and he made a mourning for his father seven days. + +And the inhabitants of the land of Chanaan saw the mourning at the floor of Atad, and said, This is a great mourning to the Egyptians; therefore he called its name, The mourning of Egypt, which is beyond Jordan. + +And thus his sons did to him. + +So his sons carried him up into the land of Chanaan, and buried him in the double cave, which cave Abraam bought for possession of a burying place, of Ephrom the Chettite, before Mambre. + +And Joseph returned to Egypt, he and his brethren, and those that had gone up with him to bury his father. + +And when the brethren of Joseph saw that their father was dead, they said, +Let us take heed, lest at any time Joseph remember evil against us, and recompense to us all the evils which we have done against him. + +And they came to Joseph, and said, Your father adjured +us before his death, saying, + +Thus say you⌃ to Joseph, Forgive them their injustice and their sin, forasmuch as they have done you evil; and now +50:17 +Gr. accept. + pardon the injustice of the servants of the God of your father. And Joseph wept while they spoke to him. + +And they came to him and said, We, these +persons, are your servants. + +And Joseph said to them, Fear not, for I am God's. + +You⌃ took counsel against me for evil, but God took counsel for me for good, that +the matter might be as +it is today, and much people might be fed. + +And he said to them, Fear not, I will maintain you, and your families: and he comforted them, and spoke kindly to them. + +And Joseph lived in Egypt, he and his brethren, and all the family of his father; and Joseph lived one hundred and ten years. + +And Joseph saw the children of Ephraim to the third generation; and the sons of Machir the son of Manasse were borne on the +50:23 +Gr. thighs. + sides of Joseph. + +And Joseph spoke to his brethren, saying, I die, and God will surely visit you, and will bring you out of this land to the land concerning which God swore to our fathers, Abraam, Isaac, and Jacob. + +And Joseph adjured the sons of Israel, saying, At the visitation with which God shall visit you, then you⌃ shall carry up my bones hence with you. + +And Joseph died, aged one hundred and ten years; and +50:26 +Gr. buried him. + they prepared his corpse, and put him in a coffin in Egypt. + +

+
+ +Exodus +EXODUS +Exodus +EXO +

EXODUS +

+ + +

These are the names of the sons of Israel that came into Egypt together with Jacob their father; they came in each with their whole family. + +Ruben, Simeon, Levi, Judas, + +Issachar, Zabulon, Benjamin, + +Dan and Nephthalim, Gad and Aser. + +But Joseph was in Egypt. And all the souls +born of Jacob were seventy-five. + +And Joseph died, and all his brethren, and all that generation. + +And the children of Israel increased and multiplied, and became numerous and grew exceedingly strong, and the land multiplied them. + +And there arose up another king over Egypt, who knew not Joseph. + +And he said to his nation, Behold, the race of the children of Israel is a great multitude, and is stronger than we: + +come then, let us deal craftily with them, lest at any time they be increased, and whenever war shall happen to us, these also shall be added to our enemies, and having prevailed against us in war, they will depart out of the land. + +And he set over them taskmasters, who should afflict them in their works; and they built strong cities for Pharao, both Pitho, and Ramesses, and On, which is Heliopolis. + +But as they humbled them, by so much they multiplied, and grew exceedingly strong; and the Egyptians greatly abhorred the children of Israel. + +And the Egyptians tyrannized over the children of Israel by force. + +And they embittered their life by hard labors, in the clay and in brick-making, and all the works in the plains, according to all the works, wherein they caused them to serve with violence. + +And the king of the Egyptians spoke to the midwives of the Hebrews; the name of the one was, Sepphora; and the name of the second, Phua. + +And he said, When you⌃ do the office of midwives to the Hebrew women, and they are about to be delivered, if it be a male, kill it; but if a female, save it. + +But the midwives feared God, and did not as the king of Egypt appointed them; and they saved the male children alive. + +And the king of Egypt called the midwives, and said to them, Why is it that you⌃ have done this thing, and saved the male children alive? + +And the midwives said to Pharao, The Hebrew women are not as the women of Egypt, for they are delivered before the midwives go in to them. So they bore children. + +And God did well to the midwives, and the people multiplied, and grew very strong. + +And as the midwives feared God, they established for themselves families. + +And Pharao charged all his people, saying, Whatever male +child shall be born to the Hebrews, cast into the river; and every female, save it alive. + +

+ + +

And there was a certain man of the tribe of Levi, who took as wife one of the daughters of Levi. + +And she conceived, and bore a male child; and having seen that he was fair, they hid him three months. + +And when they could no longer hide him, his mother took for him an ark, and besmeared it with +2:3 +i.e. +a peculiar kind, more resembling vegetable pitch + bitumen, and cast the child into it, and put it in the ooze by the river. + +And his sister was watching from a distance, to learn what would happen to him. + +And the daughter of Pharao came down to the river to bathe; and her maids walked by the river's side, and having seen the ark in the ooze, she sent her maid, and took it up. + +And having opened it, she sees the babe weeping in the ark: and the daughter of Pharao had compassion on it, and said, This +is one of the Hebrew's children. + +And his sister said to the daughter of Pharao, Will you that I call to you a nurse of the Hebrews, and shall she suckle the child for you? + +And the daughter of Pharao said, Go: and the young woman went, and called the mother of the child. + +And the daughter of Pharao said to her, Take care of this child, and suckled it for me, and I will give you the wages; and the woman took the child, and suckled it. + +And when the boy was grown, she brought him to the daughter of Pharao, and he became her son; and she called his name, Moses, saying, I took him out of the water. + +And it came to pass in that length of time, that Moses having grown, went out to his brethren the sons of Israel: and having noticed their distress, he sees an Egyptian striking a certain Hebrew of his brethren the children of Israel. + +And having looked round this way and that way, he sees no one; and he struck the Egyptian, and hid him in the sand. + +And having gone out the second day he sees two Hebrew men fighting; and he says to the injurer, Therefore smite you your neighbor? + +And he said, Who made you a ruler and a judge over us? will you kill me as you yesterday killed the Egyptian? Then Moses was alarmed, and said, If +it be thus, this matter has become known. + +And Pharao heard this matter, and sought to kill Moses; and Moses departed from the presence of Pharao, and lived in the land of Madiam; and having come into the land of Madiam, he sat on the well. + +And the priest of Madiam had seven daughters, feeding the flock of their father Jothor; and they came and drew water until they filled their pitchers, to water the flock of their father Jothor. + +And the shepherds came, and were driving them away; and Moses rose up and rescued them, and drew water for them, and watered their sheep. + +And they came to Raguel their father; and he said to them, Why have you⌃ come so quickly today? + +And they said, An Egyptian delivered us from the shepherds, and drew water for us and watered our sheep. + +And he said to his daughters, And where is he? and why have you⌃ left the man? call him therefore, that he may eat bread. + +And Moses was established with the man, and he gave Sepphora his daughter to Moses to wife. + +And the woman conceived and bore a son, and Moses called his name Gersam, saying, I am a sojourner in a strange land. + +And in those days after a length of time, the king of Egypt died; and the children of Israel groaned because of their tasks, and cried, and their cry because of their tasks went up to God. + +And God heard their groanings, and God remembered his covenant made with Abraam and Isaac and Jacob. + +And God looked upon the children of Israel, and was made known to them. + +

+ + +

And Moses was feeding the flock of Jothor his father-in-law, the priest of Madiam; and he brought the sheep near to the wilderness, and came to the mount of Choreb. + +And an angel of the Lord appeared to him in +3:2 +Gr. +fire of flame. + flaming fire out of the bush, and he sees that the bush burns with fire, —but the bush was not consumed. + +And Moses said, I will go near and see this great sight, why the bush is not consumed. + +And when the Lord saw that he drew near to see, the Lord called him out of the bush, saying, Moses, Moses; and he said, What is it? + +And he said, Draw not near hither: loose your sandals from off your feet, for the place whereon you stand is holy ground. + +And he said, +3:6 +Matt 22:32 + I am the God of your father, the God of Abraam, and the God of Isaac, and the God of Jacob; and Moses turned away his face, for he was afraid to gaze at God. + +And the Lord said to Moses, I have surely seen the affliction of my people that is in Egypt, and I have heard their cry +caused by their taskmasters; for I know their affliction. + +And I have come down to deliver them out of the hand of the Egyptians, and to bring them out of that land, and to bring them into a good and wide land, into a land flowing with milk and honey, into the place of the Chananites, and the Chettites, and Amorites, and Pherezites, and Gergesites, and Evites, and Jebusites. + +And now, behold, the cry of the children of Israel is come to me, and I have seen the affliction with which the Egyptians afflict them. + +And now come, I will send you to Pharao king of Egypt, and you shall bring out my people the children of Israel from the land of Egypt. + +And Moses said to God, Who am I, that I should go to Pharao king of Egypt, and that I should bring out the children of Israel from the land of Egypt? + +And God spoke to Moses, saying, I will be with you, and this shall be the sign to you that I shall send you forth, —when you bring out my people out of Egypt, then you⌃ shall serve God in this mountain. + +And Moses said to God, Behold, I shall go forth to the children of Israel, and shall say to them, The God of our fathers has sent me to you; and they will ask me, What is his name? What shall I say to them? + +And God spoke to Moses, saying, I am THE BEING; and he said, Thus shall you⌃ say to the children of Israel, THE BEING has sent me to you. + +And God said again to Moses, Thus shall you say to the sons of Israel, The Lord God of our fathers, the God of Abraam, and God of Isaac, and God of Jacob, has sent me to you: this is my name for ever, and my memorial to generations of generations. + +Go then and gather the elders of the children of Israel, and you shall say to them, The Lord God of our fathers has appeared to me, the God of Abraam, and God of Isaac, and God of Jacob, saying, I have surely looked upon you, and upon all the things which have happened to you in Egypt. + +And he said, I will bring you up out of the affliction of the Egyptians to the land of the Chananites and the Chettites, and Amorites and Pherezites, and Gergesites, and Evites, and Jebusites, to a land flowing with milk and honey. + +And they shall listen to your voice, and you and the elders of Israel shall go in to Pharao king of Egypt, and you shall say to him, The God of the Hebrews has called us; we will go then a journey of three days into the wilderness, that we may sacrifice to our God. + +But I know that Pharao king of Egypt will not let you go, save with a mighty hand; + +and I will stretch out my hand, and strike the Egyptians with all my wonders, which I shall work among them, and after that he will send you forth. + +And I will give this people favor in the sight of the Egyptians, and whenever you⌃ shall escape, you⌃ shall not depart empty. + +But +every woman shall ask of her neighbor and fellow lodger, articles of gold and silver, and apparel; and you⌃ shall put them upon your sons and upon your daughters, —and spoil you⌃ the Egyptians. + +

+ + +

And Moses answered and said, If they believe me not, and do not listen to my voice (for they will say, God has not appeared to you), what shall I say to them? + +And the Lord said to him, What is this thing that is in your hand? and he said, A rod. + +And he said, Cast it on the ground: and he cast it on the ground, and it became a serpent, and Moses fled from it. + +And the Lord said to Moses, Stretch forth your hand, and take hold of its tail: so he stretched forth his hand and took hold of the tail, + +and it became a rod in his hand, —that they may believe you, that the God of your fathers has appeared to you, the God of Abraam, and God of Isaac, and God of Jacob. + +And the Lord said again to him, Put your hand into your bosom; and he put his hand into his bosom, and brought his hand out of his bosom, and his hand became as snow. + +And he said again, Put your hand into your bosom; and he put his hand into his bosom, and brought his hand out of his bosom, and it was again restored to the complexion of his +other flesh. + +And if they will not believe you, nor listen to the voice of the first sign, they will believe you +because of the voice of the second sign. + +And it shall come to pass if they will not believe you for these two signs, and will not listen to your voice, that you shall take of the water of the river and pour it upon the dry land, and the water which you shall take from the river shall be blood upon the dry land. + +And Moses said to the Lord, I pray, Lord, I have not been sufficient in +4:10 +Gr. +before yesterday, neither before the third day. former times, neither from the time that you have begun to speak to your servant: I am weak in speech, and slow-tongued. + +And the Lord said to Moses, Who has given a mouth to man, and who has made the very hard of hearing, and the deaf, the seeing and the blind? have not I, God? + +And now go and I will open your mouth, and will +4:12 +See 1 Cor 2:16. +Gr. + instruct you in what you shall say. + +And Moses said, I pray you, Lord, appoint another able +person whom you shall send. + +And the Lord was greatly angered against Moses, and said, Behold! is not Aaron the Levite your brother? I know that he will surely speak to you; and, behold, he will come forth to meet you, and beholding you he will rejoice within himself. + +And you shall speak to him; and you shall put my words into his mouth, and I will open your mouth and his mouth, and I will instruct you in what you⌃ shall do. + +And he shall speak for you to the people, and he shall be your mouth, and you shall be for him in things pertaining to God. + +And this rod that was turned into a serpent you shall take in your hand, wherewith you shall work miracles. + +And Moses went and returned to Jothor his father-in-law, and says, I will go and return to my brethren in Egypt, and will see if they are yet living. And Jothor said to Moses, Go in health. And in those days after some time, the king of Egypt died. + +And the Lord said to Moses in Madiam, Go, depart into Egypt, for all that sought your life are dead. + +And Moses took his wife and his children, and mounted them on the beasts, and returned to Egypt; and Moses took the rod +which he had from God in his hand. + +And the Lord said to Moses, When you go and return to Egypt, see—all the miracles I have +4:21 +Lit. +put into your hands. + charged you with, you shall work before Pharao: and I will harden his heart, and he shall certainly not send away the people. + +And you shall say to Pharao, These things says the Lord, Israel +is my firstborn. + +And I said to you, Send away my people, that they may serve me: now if you will not send them away, see, I will kill your firstborn son. + +And it came to pass +that the angel of the Lord met him by the way in the inn, and sought to kill him. + +and Sepphora having taken a stone cut off the foreskin of her son, and fell at his feet and said, The blood of the circumcision of my son is staunched: + +and he departed from him, because she said, The blood of the circumcision of my son is staunched. + +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 they kissed each other. + +And Moses reported to Aaron all the words of the Lord, which he sent, and all the things which he charged him. + +And Moses and Aaron went and gathered the elders of the children of Israel. + +And Aaron spoke all these words, which God spoke to Moses, and wrought the miracles before the people. + +and the people believed and rejoiced, because God visited the children of Israel, and because he saw their affliction: and the people bowed and worshipped. + +

+ + +

And after this went in Moses and Aaron to Pharao, and they said to him, These things says the Lord God of Israel, Send my people away, that they may keep a feast to me in the wilderness. + +And Pharao said, Who is he that I should listen to his voice, so that I should send away the children of Israel? I do not know the Lord, and I +5:2 +Gr. +do not let, etc. + will not let Israel go. + +And they say to him, The God of the Hebrews has called us to him: we will go therefore a three days' journey into the wilderness, that we may sacrifice to the Lord our God, lest at any time death or slaughter happen to us. + +And the king of Egypt said to them, Why do you⌃, Moses and Aaron, turn the people from their works? depart each of you to your works. + +And Pharao said, Behold now, the people is very numerous; let us not then give them rest from their work. + +And Pharao gave orders to the taskmasters of the people and the accountants, saying, + +You⌃ shall no longer give straw to the people for brick-making as yesterday and the third day; but let them go themselves, and collect straw for themselves. + +And you shall impose on them daily the rate of brick-making which they perform: you shall not abate anything, for they are idle; therefore have they cried, saying, Let us arise and do sacrifice to our God. + +Let the works of these men be made grievous, and let them care for these things, and not care for vain words. + +And the taskmasters and the accountants hastened them, and they spoke to the people, saying, thus says Pharao, I +will give you straw no longer. + +Go you⌃, yourselves, get for yourselves straw wherever you⌃ can find it, for nothing is diminished from your rate. + +So the people were dispersed in all the land of Egypt, to gather stubble for straw. + +and the taskmasters hastened them, saying, Fulfil your regular daily tasks, even as when straw was given you. + +And the accountants of the race of the children of Israel, who were set over them by the masters of Pharao, were scourged, +5:14 +supplied from the +Hebrew + +[and questioned,] men saying, Why have you⌃ not fulfilled your rates of brick work as yesterday and the third day, today also? + +And the accountants of the children of Israel went in and cried to Pharao, saying, Why do you act thus to your servants? + +Straw is not given to your servants, and they tell us to make brick; and behold your servants have been scourged: you will therefore injure your people. + +And he said to them, You⌃ are idle, you⌃ are idlers: therefore you⌃ say, Let us go +and do sacrifice to our God. + +Now then go and work, for straw shall not be given to you, yet you⌃ shall return the rate of bricks. + +And the accountants of the children of Israel saw themselves in an evil plight, +men saying, You⌃ shall not fail +5:19 +Gr. +from the brick-making +to deliver +that which belongs to each day. + to deliver the daily rate of the brick-making. + +And they met Moses and Aaron coming forth to meet them, as they came forth from Pharao. + +And they said to them, The Lord look upon you and judge you, for you⌃ have made our savor abominable before Pharao, and before his servants, to put a sword into his hands to kill us. + +And Moses turned to the Lord, and said, I pray, Lord, why have you afflicted this people? and therefore have you sent me? + +For from the time that I went to Pharao to speak in your name, he has afflicted this people, and you have not delivered your people. + +

+ + +

And the Lord said to Moses, Now you shall see what I will do to Pharao; for he shall send them forth with a mighty hand, and with a high arm shall he cast them out of his land. + +And God spoke to Moses and said to him, I +am the +6:2 +Or, +The Lord. + Lord. + +And I appeared to Abraam and Isaac and Jacob, being their God, but I did not manifest to them my name Lord. + +And I established my covenant with them, to give them the land of the Chananites, the land wherein they sojourned, in which also they lived as strangers. + +And I listened to the groaning of the children of Israel (the affliction with which the Egyptians enslave them) and I remembered the covenant with you. +6:5 +Lit. +your covenant. + +Go, speak to the children of Israel, saying, I +am the Lord; and I will lead you forth from the tyranny of the Egyptians, and I will deliver you from bondage, and I will ransom you with a high arm, and great judgment. + +And I will take you to me a people for myself, and will be your God; and you⌃ shall know that I am the Lord your God, who brought you out from the tyranny of the Egyptians. + +And I will bring you into the land concerning which I stretched out my hand to give it to Abraam and Isaac and Jacob, and I will give it you for an inheritance: I +am the Lord. + +And Moses spoke thus to the sons of Israel, and they listened not to Moses for faint-heartedness, and for their hard tasks. + +And the Lord spoke to Moses, saying, + +Go in, speak to Pharao king of Egypt, that he send forth the children of Israel out of his land. + +And Moses spoke before the Lord, saying, Behold, the children of Israel listened not to me, and how shall Pharao listen to me? and I am not eloquent. + +And the Lord spoke to Moses and Aaron, and gave them a charge to Pharao king of Egypt, that he should send forth the children of Israel out of the land of Egypt. + +And these are the heads of the houses of their families: the sons of Ruben the firstborn of Israel; Enoch and Phallus, Asron, and Charmi, this is the kindred of Ruben. + +And the sons of Symeon, Jemuel and Jamin, and Aod, and Jachin and Saar, and Saul the son of a Phoenician woman, these are the families of the sons of Symeon. + +And these are the names of the sons of Levi according to their kindred, Gedson, Caath, and Merari; and the years of the life of Levi were one hundred and thirty-seven. + +And these are the sons of Gedson, Lobeni and Semei, the houses of their family. And the sons of Caath, + +Ambram and Issaar, Chebron, and Oziel; and the years of the life of Caath were a +6:18 +Alex. +130 years. + hundred and thirty-three years. + +And the sons of Merari, Mooli, and Omusi, these are the houses of the families of Levi, according to their kindred. + +And Ambram took as wife Jochabed the daughter of his father's brother, and she bore to him both Aaron and Moses, and Mariam their sister: and the years of the life of Ambram were a +6:20 +Alex. +136 years. + hundred and thirty-two years. + +And the sons of Issaar, Core, and Naphec, and Zechri. + +And the sons of Oziel, Misael, and Elisaphan, and Segri. + +And Aaron took to himself to wife Elisabeth daughter of Aminadab sister of Naasson, and she bore to him both Nadab and Abiud, and Eleazar and Ithamar. + +And the sons of Core, Asir, and Elkana, and Abiasar, these are the generations of Core. + +And Eleazar the son of Aaron took to himself for a wife +one of the daughters of Phutiel, and she bore to him Phinees. These are the heads of the family of the Levites, according to their generations. + +This is Aaron and Moses, whom God told to bring out the children of Israel out of the land of Egypt with their forces. + +These are they that spoke with Pharao king of Egypt, and Aaron himself and Moses brought out the children of Israel from the land of Egypt, + +in the day in which the Lord spoke to Moses in the land of Egypt; + +then the Lord spoke to Moses, saying, I am the Lord: speak to Pharao king of Egypt whatever I say to you. + +And Moses said before the Lord, Behold, I am not able in speech, and how shall Pharao listen to me? + +

+ + +

And the Lord spoke to Moses, saying, Behold, I have made you a god to Pharao, and Aaron your brother shall be your +7:1 +Or, +spokesman; for the use of this word in a wide sense, see Tit. 1:12. + prophet. + +And you shall say to him all things that I charge you, and Aaron your brother shall speak to Pharao, that he should send forth the children of Israel out of his land. + +And I will harden the heart of Pharao, and I will multiply my signs and wonders in the land of Egypt. + +And Pharao will not listen to you, and I will lay my hand upon Egypt; and will bring out my people the children of Israel with my power out of the land of Egypt with great vengeance. + +And all the Egyptians shall know that I am the Lord, stretching out my hand upon Egypt, and I will bring out the children of Israel out of the midst of them. + +And Moses and Aaron did as the Lord commanded them, so did they. + +And Moses was eighty years old, and Aaron his brother was eighty-three years old, when he spoke to Pharao. + +And the Lord spoke to Moses and Aaron, saying, + +Now if Pharao should speak to you, saying, Give us a sign or a wonder, then shall you say to your brother Aaron, Take your rod and cast it upon the ground before Pharao, and before his servants, and it shall become a serpent. + +And Moses and Aaron went in before Pharao, and +before his servants, and they did so, as the Lord commanded them; and Aaron cast down his rod before Pharao, and before his servants, and it became a serpent. + +But Pharao called together the wise men of Egypt, and the sorcerers, and the charmers also of the Egyptians did likewise with their sorceries. + +And they cast down each +7:12 +Gr. +their. + his rod, and they became serpents, but the rod of Aaron swallowed up their rods. + +and the heart of Pharao was hardened, and he listened not to them, as the Lord charged them. + +and the Lord said to Moses, The heart of Pharao is made hard, so that he should not let the people go. + +Go to Pharao early in the morning: behold, he goes forth to the water; and you shall meet him on the bank of the river, and you shall take in your hand the rod that was turned into a serpent. + +And you shall say to him, The Lord God of the Hebrews has sent me to you, saying, Send my people away, that they may serve me in the wilderness, and, behold, hitherto you have not listened. + +These things says the Lord: Hereby shall you know that I am the Lord: behold, I strike with the rod that is in my hand on the water which is in the river, and it shall change it into blood. + +And the fish that are in the river shall die, and the river shall stink thereupon, and the Egyptians shall not be able to drink water from the river. + +And the Lord said to Moses, Say to your brother Aaron, Take your rod in your hand, and stretch forth your hand over the waters of Egypt, and over their rivers, and over their canals, and over their ponds, and over all their standing water, and it shall become blood: and there was blood in all the land of Egypt, both in vessels of wood and of stone. + +and Moses and Aaron did so, as the Lord commanded them; and +Aaron having lifted up +his hand with his rod, struck the water in the river before Pharao, and before his servants, and changed all the water in the river into blood. + +And the fish in the river died, and the river stank thereupon; and the Egyptians could not drink water from the river, and the blood was in all the land of Egypt. + +And the charmers also of the Egyptians did so with their sorceries; and the heart of Pharao was hardened, and he did not listen to them, even as the Lord said. + +And Pharao turned and entered into his house, nor did he fix his attention even on this thing. + +And all the Egyptians dug round about the river, so as to drink water, for they could not drink water from the river. + +and seven days were fulfilled after the Lord has struck the river. + +

+ + +

And the Lord said to Moses, Go in to Pharao, and you shall say to him, These things says the Lord: send forth my people, that they may serve me. + +And if you will not send them forth, behold, I afflict all your borders with frogs: + +and the river shall teem with frogs, and they shall go up and enter into your houses, and into your bed-chambers, and upon your beds, and upon the houses of your servants, and of your people and on your dough, and on your ovens. + +And upon you, and upon your servants, and upon your people, shall the frogs come up. + +And the Lord said to Moses, Say to Aaron your brother, Stretch forth with the hand your rod over the rivers, and over the canals, and over the pools, and bring up the frogs. + +And Aaron stretched forth his hand over the waters of Egypt, and brought up the frogs: and the frog was brought up, and covered the land of Egypt. + +And the charmers of the Egyptians also did likewise with their sorceries, and brought up the frogs on the land of Egypt. + +And Pharao called Moses and Aaron, and said, Pray for me to the Lord, and let him take away the frogs from me and from my people; and I will send them away, and they shall sacrifice to the Lord. + +And Moses said to Pharao, Appoint me +a time when I shall pray for you, and for your servants, and for your people, to cause the frogs to disappear from you, and from your people, and from your houses, only in the river shall they be left behind. + +And he said, On the morrow: he said therefore, As you have said; that you may know, that there is no other +God but the Lord. + +And the frogs shall be removed away from you, and from your houses and from the villages, and from your servants, and from your people, only in the river they shall be left. + +And Moses and Aaron went forth from Pharao, and Moses cried to the Lord concerning the restriction of the frogs, as Pharao appointed him. + +And the Lord did as Moses said, and the frogs died out of the houses, and out of the villages, and out of the fields. + +And they gathered them together in heaps, and the land stank. + +And when Pharao saw that there was relief, his heart was hardened, and he did not listen to them, as the Lord spoke. + +And the Lord said to Moses, Say to Aaron, Stretch forth your rod with your hand and strike the dust of the earth; and there shall be lice both upon man, and upon quadrupeds, and in all the land of Egypt. + +So Aaron stretched out his rod with his hand, and struck the dust of the earth; and the lice were on men and on quadrupeds, and in all the dust of the earth there were lice. + +And the charmers also did so with their sorceries, to bring forth the louse, and they could not. And the lice were both on the men and on the quadrupeds. + +So the charmers said to Pharao, This is the finger of God. But the heart of Pharao was hardened, and he listened not to them, as the Lord said. + +And the Lord said to Moses, Rise up early in the morning, and stand before Pharao: and behold, he will go forth to the water, and you shall say to him, These things says the Lord: Send away my people, that they may serve me in the wilderness. + +And if you will not let my people go, behold, I send upon you, and upon your servants, and upon your people, and upon your houses, the dog-fly; and the houses of the Egyptians shall be filled with the dog-fly, even throughout the land upon which they are. + +and I will distinguish marvelously in that day the land of Gesem, on which my people dwell, in which the dog-fly shall not be: that you may know that I am the Lord the God of all the earth. + +And I will put a difference between my people and your people, and on the morrow shall this be on the land. And the Lord did thus. + +And the dog-fly came in abundance into the houses of Pharao, and into the houses of his servants, and into all the land of Egypt; and the land was destroyed by the dog-fly. + +And Pharao called Moses and Aaron, saying, Go and sacrifice to the Lord your God in the land. + +And Moses said, It can’t be so, for we shall sacrifice to the Lord our God the abominations of the Egyptians; for if we sacrifice the abominations of the Egyptians before them, we shall be stoned. + +We will go a journey of three days into the wilderness, and we will sacrifice to the Lord our God, as the Lord said to us. + +And Pharao said, I +will let you go, and do you⌃ sacrifice to your God in the wilderness, but do not go very far away: pray then for me to the Lord. + +And Moses said, I then will go forth from you and pray to God, and the dog-fly shall depart both from your servants, and from your people to-morrow. Do not you, Pharao, deceive again, so as not to send the people away to do sacrifice to the Lord. + +And Moses went out from Pharao, and prayed to God. + +And the Lord did as Moses said, and removed the dog-fly from Pharao, and from his servants, and from his people, and there was not one left. + +And Pharao hardened his heart, even on this occasion, and he would not send the people away. + +

+ + +

And the Lord said to Moses, Go in to Pharao, and you shall say to him, These things says the Lord God of the Hebrews; Send my people away that they may serve me. + +If however you will not send my people away, but yet detain them: + +behold, the hand of the Lord shall be upon your cattle in the fields, both on the horses, and on the asses, and on the camels and oxen and sheep, a very great +9:3 +Or, +death. + mortality. + +And I will make a marvelous distinction in that time between the cattle of the Egyptians, and the cattle of the children of Israel: nothing shall die of all that is of the children's of Israel. + +And God fixed a limit, saying, To-morrow the Lord will do this thing on the land. + +And the Lord did this thing on the next day, and all the cattle of the Egyptians died, but of the cattle of the children of Israel there died not one. + +And when Pharao saw, that of all the cattle of the children of Israel there died not one, the heart of Pharao was hardened, and he did not let the people go. + +And the Lord spoke to Moses and Aaron, saying, Take you handfuls of ashes of the furnace, and let Moses scatter it toward heaven before Pharao, and before his servants. + +And let it become dust over all the land of Egypt, and there shall be upon men and upon beasts sore blains breaking forth both on men and on beasts, in all the land of Egypt. + +So he took of the ashes of the furnace before Pharao, and Moses scattered it toward heaven, and it became sore blains breaking forth both on men and on beasts. + +And the sorcerers could not stand before Moses because of the sores, for the sores were on the sorcerers, and in all the land of Egypt. + +And the Lord hardened Pharao's heart, and he listened not to them, as the Lord appointed. + +And the Lord said to Moses, Rise up early in the morning, and stand before Pharao; and you shall say to him, These things says the Lord God of the Hebrews, Send away my people that they may serve me. + +For at this present time do I send forth all my plagues into your heart, and the heart of your servants and of your people; that you may know that there is not another such as I in all the earth. + +For now I will stretch forth my hand and strike you and kill your people, and you shall be consumed from off the earth. + +And +9:16 +See Rom 9:17. + for this purpose have you been preserved, that I might display in you my strength, and that my name might be published in all the earth. + +Do you then yet exert yourself to hinder my people, so as not to let them go? + +Behold, to-morrow at this hour I will rain a very great hail, such as has not been in Egypt, from the time it was created until this day. + +Now then hasten to gather your cattle, and all that you have in the fields; for all the men and cattle as many as shall be found in the fields, and shall not enter into a house, (but the hail shall fall upon them,) shall die. + +He of the servants of Pharao that feared the word of the Lord, gathered his cattle into the houses. + +And he that did not attend in his mind to the word of the Lord, left the cattle in the fields. + +And the Lord said to Moses, Stretch out your hand to heaven, and there shall be hail on all the land of Egypt, both on the men and on the cattle, and on all the herbage on the land. + +And Moses stretched forth his hand to heaven, and the Lord sent thunderings +9:23 +Gr. +voices. + and hail; and the fire ran along upon the ground, and the Lord rained hail on all the land of Egypt. + +So there was hail and flaming fire mingled with hail; and the hail was very great, such as was not in Egypt, from the time there was a nation upon it. + +And the hail struck in all the land of Egypt both man and beast, and the hail struck all the grass in the field, and the hail broke in pieces all the trees in the field. + +Only in the land of Gesem where the children of Israel were, the hail was not. + +And Pharao sent and called Moses and Aaron, and said to them, I have sinned this time: the Lord +is righteous, and I and my people are wicked. + +Pray then for me to the Lord, and let him cause the thunderings of God to +9:28 +Gr. +cease from being. + cease, and the hail and the fire, and I will send you forth and you⌃ shall remain no longer. + +And Moses said to him, When I shall have departed from the city, I will stretch out my hands to the Lord, and the thunderings shall cease, and the hail and the rain shall be no longer, that you may know that the earth +is the Lord's. + +But as for you and your servants, I know that you⌃ have not yet feared the Lord. + +And the flax and the barley were struck, for the barley was +9:31 +Or, +in the ear. + advanced, and the flax was seeding. + +But the wheat and the rye were not struck, for they were late. + +And Moses went forth from Pharao out of the city, and stretched out his hands to the Lord, and the thunders ceased and the hail, and the rain did not drop on the earth. + +And when Pharao saw that the rain and the hail and the thunders ceased, he continued to sin; and +he hardened his heart, and the heart of his servants. + +And the heart of Pharao was hardened, and he did not send forth the children of Israel, as the Lord said to Moses. + +

+ + +

And the Lord spoke to Moses, saying, Go in to Pharao: for I have hardened his heart and the heart of his servants, that these signs may come upon them; in order + +that you⌃ may relate in the ears of your children, and to your children's children, in how many things I have mocked the Egyptians, and my wonders which I wrought among them; and you⌃ shall know that I +am the Lord. + +And Moses and Aaron went in before Pharao, and they said to him, These things says the Lord God of the Hebrews, How long do you refuse to reverence me? Send my people away, that they may serve me. + +But if you will not send my people away, behold, at this hour to-morrow I will bring an abundance of locusts upon all your coasts. + +And they shall cover the face of the earth, and you shall not be able to see the earth; and they shall devour all that is left of the abundance of the earth, which the hail has left you, and shall devour every tree that grows for you on the land. + +And your houses shall be filled, and the houses of your servants, and all the houses in all the land of the Egyptians; things which your fathers have never seen, nor their forefathers, from the day that they were upon the earth until this day. And Moses turned away and departed from Pharao. + +And the servants of Pharao say to him, How long shall this be a snare to us? send away the men, that they may serve their God; will you know that Egypt is destroyed? + +And they brought back both Moses and Aaron to Pharao; and he said to them, Go and serve the Lord your God; but who are they that are going with you? + +And Moses said, We will go with the young and the old, with our sons, and daughters, and sheep, and oxen, for it is a feast of the Lord. + +And he said to them, So let the Lord be with you: as I +will send you away, +must I send away you store also? see that +10:10 +i.e. +moral evil, but another reading is πρόκειται, which is nearer to the Hebrew. + evil is attached to you. + +Not so, but let the men go and serve God, for this you⌃ yourselves seek; and they cast them out from the presence of Pharao. + +And the Lord said to Moses, Stretch out your hand over the land of Egypt, and let the locust come up on the land, and it shall devour every herb of the land, and all the fruit of the trees, which the hail left. + +And Moses lifted up his rod towards heaven, and the Lord brought a south wind upon the earth, all that day and all that night: the morning dawned, and the south wind brought up the locusts, + +and brought them up over all the land of Egypt. And they rested in very great abundance over all the borders of Egypt. Before them there were not such locusts, neither after them shall there be. + +And they covered the face of the earth, and the land was wasted, and they devoured all the herbage of the land, and all the fruit of the trees, which was left by the hail: there was no green thing left on the trees, nor on all the herbage of the field, in all the land of Egypt. + +And Pharao hasted to call Moses and Aaron, saying, I have sinned before the Lord your God, and against you; + + +10:17 +Gr. +accept or allow. + pardon therefore my sin yet this time, and pray to the Lord your God, and let him take away from me this death. + +And Moses went forth from Pharao, and prayed to God. + +And the Lord brought in the opposite direction a strong wind from the sea, and took up the locusts and cast them into the Red Sea, and there was not one locust left in all the land of Egypt. + +And the Lord hardened the heart of Pharao, and he did not send away the children of Israel. + +And the Lord said to Moses, Stretch out your hand to heaven, and let there be darkness over the land of Egypt—darkness that may be felt. + +And Moses stretched out his hand to heaven, and there was +10:22 +Gr. +darkness, blackness. + darkness very black, even a storm over all the land of Egypt three days. + +And for three days no man saw his brother, and no man rose up from his bed for three days: but all the children of Israel had light in all the places where they were. + +And Pharao called Moses and Aaron, saying, Go, serve the Lord your God, only +10:24 +Gr. +be left of. + leave your sheep and your oxen, and let your store depart with you. + +And Moses said, Nay, but you shall give to us whole burnt offerings and sacrifices, which we will sacrifice to the Lord our God. + +And our cattle shall go with us, and we will not leave a hoof behind, for of them we will take to serve the Lord our God: but we know not in what manner we shall serve the Lord our God, until we arrive there. + +But the Lord hardened the heart of Pharao, and he would not let them go. + +And Pharao says, Depart from me, beware of seeing my face again, for in what day you shall appear before me, you shall die. + +And Moses says, You have said, I will not appear in your presence again. + +

+ + +

And the Lord said to Moses, I will yet bring one plague upon Pharao and upon Egypt, and after that he will send you forth thence; and whenever he sends you forth with every thing, he will indeed drive you out. + +Speak therefore secretly in the ears of the people, and let every one ask of his neighbor jewels of silver and gold, and raiment. + +And the Lord gave his people favor in the sight of the Egyptians, and they lent to them; and the man Moses was very great before the Egyptians, and before Pharao, and before his servants. + +And Moses said, These things says the Lord, About midnight I go forth into the midst of Egypt. + +And every firstborn in the land of Egypt shall die, from the firstborn of Pharao that sits on the throne, even to the firstborn of the woman-servant that is by the mill, and to the firstborn of all cattle. + +And there shall be a great cry through all the land of Egypt, such as has not been, and such shall not be repeated any more. + +But among all the children of Israel shall not a dog snarl with his tongue, either at man or beast; that you may know how wide a distinction the Lord will make between the Egyptians and Israel. + +And all these your servants shall come down to me, and do me reverence, saying, Go forth, you and all the people over whom you preside, and afterwards I will go forth. + +And Moses went forth from Pharao with wrath. And the Lord said to Moses, Pharao will not listen to you, that I may greatly multiply my signs and wonders in the land +of Egypt. + +And Moses and Aaron wrought all these signs and wonders in the land +of Egypt before Pharao; and the Lord hardened the heart of Pharao, and he did not listen to send forth the children of Israel out of the land of Egypt. + +

+ + +

And the Lord spoke to Moses and Aaron in the land of Egypt, saying, + +This month +shall be to you the beginning of months: it is the first to you among the months of the year. + +Speak to all the congregation of the children of Israel, saying, On the tenth of this month let them take each man a +12:3 +πρόβατον, sheep +generally +but ver. 5 seems to show that the word +lamb. is admissable in this passage. + lamb according to the houses of their families, every man a lamb for his household. + +And if they be few in a household, so that there are not enough for the lamb, he shall take with himself his neighbor that lives near to him, —as to the number of souls, every one according to that which suffices him shall make a reckoning for the lamb. + +It shall be to you a lamb unblemished, a male of a year old: you⌃ shall take it of the lambs and the kids. + +And it shall be kept by you till the fourteenth of this month, and all the multitude of the congregation of the children of Israel shall kill it toward evening. + +And they shall take of the blood, and shall put it on the two door-posts, and on the lintel, in the houses in which soever they shall eat them. + +And they shall eat the flesh in this night roast with fire, and they shall eat unleavened +bread with bitter herbs. + +You⌃ shall not eat of it raw nor sodden in water, but only roast with fire, the head with the feet and the appurtenances. + +Nothing shall be left of it till the morning, and a bone of it you⌃ shall not break; but that which is left of it till the morning you⌃ shall burn with fire. + +And thus shall you⌃ eat it: your loins girded, and your sandals on your feet, and your staves in your hands, and you⌃ shall eat it in haste. It is a passover to the Lord. + +and I will go throughout the land of Egypt in that night, and will strike every firstborn in the land of Egypt both man and beast, and on all the gods of Egypt will I execute vengeance: I +am the Lord. + +And the blood shall be for a sign to you on the houses in which you⌃ are, and I will see the blood, and will protect you, and there shall not be on you the plague of destruction, when I +12:13 +Or, +strike the land +Hebraism. + strike in the land of Egypt. + +And this day shall be to you a memorial, and you⌃ shall keep it a feast to the Lord through all your generations; you⌃ shall keep it a feast for a perpetual ordinance. + +Seven days you⌃ shall eat unleavened bread, and from the first day you⌃ shall utterly remove leaven from your houses: whoever shall eat leaven, that soul shall be utterly destroyed from Israel, from the first day until the seventh day. + +And the first day shall be called holy, and the seventh day shall be a +12:16 +Gr. +called holy. + holy convocation to you: you⌃ shall do no servile work on them, only as many things as will +necessarily be done by every soul, this only shall be done by you. + +And you⌃ shall keep this commandment, for on this day will I bring out your force out of the land of Egypt; and you⌃ shall make this day a perpetual ordinance for you throughout your generations. + +Beginning the fourteenth day of the first month, you⌃ shall eat unleavened bread from evening, till the twenty-first day of the month, till evening. + +Seven days leaven shall not be found in your houses; whoever shall eat anything leavened, that soul shall be cut off from the congregation of Israel, both among the occupiers of the land and the original inhabitants. + +You⌃ shall eat nothing leavened, but in every habitation of yours you⌃ shall eat unleavened bread. + +And Moses called all the elders of the children of Israel, and said to them, Go away and take to yourselves a lamb according to your kindred, and kill the passover. + +And you⌃ shall take a bunch of hyssop, and having dipped it into some of the blood that is by the door, you⌃ shall touch the lintel, and +shall put it upon both door-posts, even of the blood which is by the door; but you⌃ shall not go out every one from the door of his house till the morning. + +And the Lord shall pass by to strike the Egyptians, and shall see the blood upon the lintel, and upon both the door-posts; and the Lord shall pass by the door, and shall not suffer the destroyer to enter into your houses to strike +you. + +And keep you⌃ this thing as an ordinance for yourself and for your children for ever. + +And if you⌃ should enter into the land, which the Lord shall give you, as he has spoken, keep this service. + +And it shall come to pass, if your sons say to you, What is this service? + +that you⌃ shall say to them, This passover is a sacrifice to the Lord, as he defended the houses of the children of Israel in Egypt, when he struck the Egyptians, but delivered our houses. + +And the people bowed and worshipped. And the children of Israel departed and did as the Lord commanded Moses and Aaron, so did they. + +And it came to pass at midnight that the Lord struck all the firstborn in the land of Egypt, from the firstborn of Pharao that sat on the throne, to the firstborn of the captive-maid in the dungeon, and the firstborn of all cattle. + +And Pharao rose up by night, and his servants, and all the Egyptians; and there was a great cry in all the land of Egypt, for there was not a house in which there was not one dead. + +And Pharao called Moses and Aaron by night, and said to them, Rise and depart from my people, both you⌃ and the children of Israel. Go and serve the Lord your God, even as you⌃ say. + +And take with you your sheep, and your oxen: bless me also, I pray you. + +And the Egyptians constrained the people, so that they cast them out of the land with haste, for they said, We all shall die. + +And the people took their dough before their +12:34 +Gr. +lumps of meal. + meal was leavened, bound up +as it was in their garments, on their shoulders. + +And the children of Israel did as Moses commanded them, and they asked of the Egyptians articles of silver and gold and apparel. + +And the Lord gave his people favor in the sight of the Egyptians, and they lent to them; and they spoiled the Egyptians. + +And the children Israel +12:37 +Gr. +having departed. + departed from Ramesses to Socchoth, to +the full number of six hundred thousand footmen, even men, besides the baggage. + +And a great mixed +company went up with them, and sheep and oxen and very much cattle. + +And they baked the dough which they brought out of Egypt, unleavened cakes, for it had not been leavened; for the Egyptians cast them out, and they could not remain, neither did they prepare provision for themselves for the journey. + +And the sojourning of the children of Israel, +12:40 +Gr. +which. + while they sojourned in the land of Egypt and the land of Chanaan, +was four hundred and thirty years. + +And it came to pass after the four hundred and thirty years, all the forces of the Lord came forth out of the land of Egypt by night. + + +12:42 +ὥστε seems to be given for ל, instead of 'when he brought,' etc. + It is a watch kept to the Lord, so that he should bring them out of the land of Egypt; that very night is a watch kept to the Lord, so that it should be to all the children of Israel to their generations. + +And the Lord said to Moses and Aaron, This is the law of the passover: no stranger shall eat of it. + +And every slave or servant bought with money—him you shall circumcise, and then shall he eat of it. + +A sojourner or hireling shall not eat of it. + +In one house shall it be eaten, and you⌃ shall not carry of the flesh out from the house; +12:46 +John 19:36 + and a bone of it you⌃ shall not break. + +All the congregation of the children of Israel shall keep it. + +And if any proselyte shall come to you to keep the passover to the Lord, you shall circumcise every male of him, and then shall he approach to sacrifice it, and he shall be even as the original inhabitant of the land; no uncircumcised person shall eat of it. + +There shall be one law to the native, and to the proselyte coming among you. + +And the children of Israel did as the Lord commanded Moses and Aaron for them, so they did. + +And it came to pass in that day that the Lord brought out the children of Israel from the land of Egypt with their forces. + +

+ + +

And the Lord spoke to Moses, saying, + + +13:2 +Luke 2:23 + Sanctify to me every firstborn, first produced, opening every womb among the children of Israel both of man and beast: it is mine. + +And Moses said to the people, Remember this day, in which you⌃ came forth out of the land of Egypt, out of the house of bondage, for with a strong hand the Lord brought you forth thence; and leaven shall not be eaten. + +For on this day you⌃ go forth in the month of new +corn. + +And it shall come to pass when the Lord your God shall have brought you into the land of the Chananites, and the Chettites, and Amorites, and Evites, and Jebusites, and Gergesites, and Pherezites, which he swore to your fathers to give you, a land flowing with milk and honey, that you shall perform this service in this month. + +Six days you⌃ shall eat unleavened bread, and on the seventh day is a feast to the Lord. + +Seven days shall you⌃ eat unleavened bread; nothing leavened shall be seen with you, neither shall you have leaven in all your borders. + +And you shall tell your son in that day, saying, Therefore the Lord +13:8 +Gr. +did thus to me. + dealt thus with me, as I was going out of Egypt. + +And it shall be to you a sign upon your hand and a memorial before your eyes, that the law of the Lord may be in your mouth, for with a strong hand the Lord God brought you out of Egypt. + +And preserve you⌃ this law according to the times of the seasons, +13:10 +Gr. +from days to days. +Hebraism. from year to year. + +And it shall come to pass when the Lord your God shall bring you into the land of the Chananites, as he swore to your fathers, and shall give it you, + +that you shall +13:12 +Or, +separate. + set apart every +offspring opening the womb, the males to the Lord, every one that opens the womb out of the herds or among your cattle, as many as you shall have: you shall sanctify the males to the Lord. + +Every +offspring opening the womb of the ass you shall change for a sheep; and if you will not change it, you shall redeem it: every firstborn of man of your sons shall you redeem. + +And if your son should ask you hereafter, saying, What is this? then you shall say to him, With a strong hand the Lord brought us out of Egypt, out of the house of bondage. + +And when Pharao hardened +his heart so as not to send us away, he killed every firstborn in the land of Egypt, both the firstborn of man and the firstborn of beast; therefore do I sacrifice every +offspring that opens the womb, the males to the Lord, and every firstborn of my sons I will redeem. + +And it shall be for a sign upon your hand, and immovable before your eyes, for with a strong hand the Lord brought you out of Egypt. + +And when Pharao sent forth the people, God led them not by the way of the land of the Phylistines, because it was near; for God said, Lest at any time the people repent when they see war, and return to Egypt. + +And God led the people round by the way to the wilderness, to the Red Sea: and in the fifth generation the children of Israel went up out of the land of Egypt. + +And Moses took the bones of Joseph with him, for he had solemnly adjured the children of Israel, saying, God will surely visit you, and you⌃ shall carry up my bones hence with you. + +And the children of Israel departed from Socchoth, and encamped in Othom by the wilderness. + +And God led them, in the day by a pillar of cloud, to show them the way, and in the night by a pillar of fire. + +And the pillar of cloud failed not by day, nor the pillar of fire by night, before all the people. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and let them turn and encamp before the village, between Magdol and the sea, opposite Beel-sepphon: before them shall you encamp by the sea. + +And Pharao will say to his people, As for these children of Israel, they are wandering in the land, for the wilderness has shut them in. + +And I will harden the heart of Pharao, and he shall pursue after them; and I will be glorified in Pharao, and in all his host, and all the Egyptians shall know that I am the Lord. And they did so. + +And it was reported to the king of the Egyptians that the people had fled: and the heart of Pharao was turned, and that of his servants against the people; and they said, What is this that we have done, to let the children of Israel go, so that they should not serve us? + +So Pharao yoked his chariots, and led off all his people with himself: + +having also taken six hundred chosen chariots, and all the cavalry of the Egyptians, and rulers over all. + +And the Lord hardened the heart of Pharao king of Egypt, and of his servants, and he pursued after the children of Israel; and the children of Israel went forth with a high hand. + +And the Egyptians pursued after them, and found them encamped by the sea; and all the cavalry and the chariots of Pharao, and the horsemen, and his host +were before the village, over against Beel-sepphon. + +And Pharao approached, and the children of Israel having +14:10 +Gr. +having, etc. with their eyes. + looked up, saw, and the Egyptians encamped behind them: and they were very greatly terrified, and the children of Israel cried to the Lord; + +and said to Moses, Because there were no graves in the land of Egypt, have you brought us forth to kill +us in the wilderness? What is this that you have done to us, having brought us out of Egypt? + +Is not this the word which we spoke to you in Egypt, saying, Let us alone that we may serve the Egyptians? for it is better for us to serve the Egyptians than to die in this wilderness. + +And Moses said to the people, Be of good courage: stand and see the salvation which is from the Lord, which he will work for us this day; for as you⌃ have seen the Egyptians today, you⌃ shall see them again no more for ever. + +The Lord shall fight for you, and you⌃ shall hold your peace. + +and the Lord said to Moses, Why do you cry to me? speak to the children of Israel, and let them +14:15 +Gr. +harness or yoke the horses again. + proceed. + +And do you lift up +14:16 +Or, +your hand with your rod; but another reading is τὴν ῥάβδον. + your rod, and stretch forth your hand over the sea, and divide it, and let the children of Israel enter into the midst of the sea on the dry land. + +And behold! I will harden the heart of Pharao and of all the Egyptians, and they shall go in after them; and I will be glorified upon Pharao, and on all his host, and on his chariots and his horses. + +And all the Egyptians shall know that I am the Lord, when I am glorified upon Pharao and upon his chariots and his horses. + +And the angel of God that went before the camp of the children of Israel removed and went behind, and the pillar of the cloud also removed from before them and stood behind them. + +And it went between the camp of the Egyptians and the camp of Israel, and stood; and there was darkness and blackness; and the night passed, and they came not near to one another during the whole night. + +And Moses stretched forth his hand over the sea, and the Lord carried back the sea with a strong south wind all the night, and made the sea dry, and the water was divided. + +And the children of Israel went into the midst of the sea on the dry land, and the water of it was a wall on the right hand and a wall on the left. + +And the Egyptians pursued them and went in after them, and every horse of Pharao, and his chariots, and his horsemen, into the midst of the sea. + +And it came to pass in the morning watch that the Lord looked forth on the camp of the Egyptians through the pillar of fire and cloud, and troubled the camp of the Egyptians, + +and bound the axle-trees of their chariots, and caused them to go with difficulty; and the Egyptians said, Let us flee from the face of Israel, for the Lord fights for them against the Egyptians. + +And the Lord said to Moses, Stretch forth your hand over the sea, and let the water be turned back to its place, and let it cover the Egyptians +coming both upon the chariots and the riders. + +And Moses stretched forth his hand over the sea, and the water returned to its place toward day; and the Egyptians fled +14:27 +Lit. +under. + from the water, and the Lord shook off the Egyptians in the midst of the sea. + +and the water returned and covered the chariots and the riders, and all the forces of Pharao, who entered after them into the sea: and there was not left of them even one. + +But the children of Israel went along dry land in the midst of the sea, and the water was to them a wall on the right hand, and a wall on the left. + +So the Lord delivered Israel in that day from the hand of the Egyptians, and Israel saw the Egyptians dead by the shore of the sea. + +And Israel saw the mighty hand, the +things which the Lord did to the Egyptians; and the people feared the Lord, and they believed God and Moses his servant. + +

+ + +

Then sang Moses and the children of Israel this song to God, and spoke, saying, Let us sing to the Lord, for he is very greatly glorified: horse and rider he has thrown into the sea. + +He was to me a helper and protector for salvation: this is my God and I will glorify him; my father's God, and I will exalt him. + +The Lord bringing wars to nothing, the Lord +is his name. + +He has cast the chariots of Pharao and his host into the sea, the chosen mounted captains: they were swallowed up in the Red Sea. + +He covered them with the sea: they sank to the depth like a stone. + +Your right hand, O God, has been glorified in strength; your right hand, O God, has broken the enemies. + +And in the abundance of your glory you have broken the adversaries to pieces: you sent forth your wrath, it devoured them as stubble. + +And by the breath of your anger the water parted asunder; the waters were congealed as a wall, the waves were congealed in the midst of the sea. + +The enemy said, I will pursue, I will overtake, I will divide the spoils; I will satisfy my soul, I will destroy with my sword, my hand shall have dominion. + +You sent forth your wind, the sea covered them; they sank like lead in the mighty water. + +Who is like to you among the gods, O Lord? who is like to you? glorified in holiness, marvelous in glories, doing wonders. + +You stretched forth your right hand, the earth swallowed them up. + +You have guided in your righteousness this your people whom you have redeemed, by your strength you have called them into your holy resting-place. + +The nations heard and were angry, pangs have seized on the dwellers among the Phylistines. + +Then the princes of Edom, and the chiefs of the Moabites hasted; trembling took hold upon them, all the inhabitants of Chanaan melted away. + +Let trembling and fear fall upon them; by the greatness of your arm, let them become as stone; till your people pass over, O Lord, till this your people pass over, whom you have purchased. + +Bring them in and plant them in the mountain of their inheritance, in your prepared habitation, which you, O Lord, have prepared; the sanctuary, O Lord, which your hands have made ready. + +The Lord +15:18 +Gr. +reigning. + reigns for ever and ever and ever. + +For the horse of Pharao went in with the chariots and horsemen into the sea, and the Lord brought upon them the water of the sea, but the children of Israel walked through dry land in the midst of the sea. + +And Mariam the prophetess, the sister of Aaron, having taken a timbrel in her hand—then there went forth all the women after her with timbrels and dances. + +And Mariam led them, saying, Let us sing to the Lord, for he has been very greatly glorified: the horse and rider has he cast into the sea. + +So Moses brought up the children of Israel from the Red Sea, and brought them into the wilderness of Sur; and they went three days in the wilderness, and found no water to drink. + +and they came to Merrha, and could not drink of Merrha, for it was bitter; therefore he named the name of that place, Bitterness. + +And the people murmured against Moses, saying, What shall we drink? + +And Moses cried to the Lord, and the Lord showed him a tree, and he cast it into the water, and the water was sweetened: there he established to him ordinances and judgments, and there he proved him, + +and said, If you will indeed hear the voice of the Lord your God, and do things pleasing before him, and will listen to his commands, and keep all his ordinances, no disease which I have brought upon the Egyptians will I bring upon you, for I am the Lord your God that heals you. + +And they came to Aelim, and there were there twelve fountains of water, and seventy stems of palm-trees; and they encamped there by the waters. + +

+ + +

And they departed from Aelim, and all the congregation of the children of Israel came to the wilderness of Sin, which is between Aelim and Sina; and on the fifteenth day, in the second month after their departure from the land of Egypt, + +all the congregation of the children of Israel murmured against Moses and Aaron. + +And the children of Israel said to them, Would we had died struck by the Lord in the land of Egypt, when we sat by the flesh-pots, and ate bread to satiety! for you⌃ have brought us out into this wilderness, to kill all this congregation with hunger. + +And the Lord said to Moses, Behold, I +will rain bread upon you out of heaven: and the people shall go forth, and they shall gather their daily portion for the day, that I may try them whether they will walk in my law or not. + +And it shall come to pass on the sixth day that they shall prepare whatever they have brought in, and it shall be double of what they shall have gathered for the day, daily. + +And Moses and Aaron said to all the congregation of the children of Israel, At even you⌃ shall know that the Lord has brought you out of the land of Egypt; + +and in the morning you⌃ shall see the glory of the Lord, inasmuch as he hears your murmuring against God; and who are we, that you⌃ continue to murmur against us? + +And Moses said, +This shall be when the Lord gives you in the evening flesh to eat, and bread in the morning to satiety, because the Lord has heard your murmuring, which you⌃ murmur against us: and what are we? for your murmuring is not against us, but against God. + +And Moses said to Aaron, Say to all the congregation of the children of Israel, Come near before God; for he has heard your murmuring. + +And when Aaron spoke to all the congregation of the children of Israel, and they turned toward the wilderness, then the glory of the Lord appeared in a cloud. + +And the Lord spoke to Moses, saying, + +I have heard the murmuring of the children of Israel: speak to them, saying, Towards evening you⌃ shall eat flesh, and in the morning you⌃ shall be satisfied with bread; and you⌃ shall know that I am the Lord your God. + +And it was evening, and quails came up and covered the camp: + +in the morning it came to pass as the dew ceased round about the camp, that, behold, on the face of the wilderness +was a small thing like white coriander seed, as frost upon the earth. + +And when the children of Israel saw it, they said one to another, What is this? for they knew not what it was; and Moses said to them, + +This +is the bread which the Lord has given you to eat. This is that which the Lord has appointed: gather of it each man for his family, a homer for each person, +16:16 +Gr. +by the head. + according to the number of your souls, gather each of you with his fellow-lodgers. + +And the children of Israel did so, and gathered some much and some less. + +And having measured the homer +full, +16:18 +2 Cor 8:15 + he that gathered much had nothing over, and he that had gathered less had no lack; each gathered +16:18 +i.e. +just sufficient for. + according to the need of those who belonged to him. + +And Moses said to them, Let no man leave of it till the morning. + +But they did not listen to Moses, but some left of it till the morning; and it bred worms and stank: and Moses was irritated with them. + +And they gathered it every morning, each man what he needed, and when the sun waxed hot it melted. + +And it came to pass on the sixth day, they gathered double what was needed, two homers for one +man; and all the chiefs of the synagogue went in and reported it to Moses. + +And Moses said to them, Is not this the word which the Lord spoke? To-morrow +is the sabbath, a holy rest to the Lord: bake that you⌃ will bake, and seethe that you⌃ will seethe, and all that is over leave to be laid by for the morrow. + +And they left of it till the morning, as Moses commanded them; and it stank not, neither was there a worm in it. + +And Moses said, Eat +that today, for today is a sabbath to the Lord: +it shall not be found in the plain. + +Six days you⌃ shall gather it, and on the seventh day is a sabbath, for there shall be none on that +day. + +And it came to pass on the seventh day +that some of the people went forth to gather, and found none. + +And the Lord said to Moses, How long are you⌃ unwilling to listen to my commands and my law? + +See, for the Lord has given you this day +as the sabbath, therefore he has given you on the sixth day the bread of two days: you⌃ shall sit each of you in your houses; let no one go forth from his place on the seventh day. + +And the people kept sabbath on the seventh day. + +And the children of Israel called the name of it Man; and it was as white coriander seed, and the taste of it as a wafer with honey. + +And Moses said, This +is the thing which the Lord has commanded, Fill an homer with manna, to be laid up for your generations; that they may see the bread which you⌃ ate in the wilderness, when the Lord led you forth out of the land of Egypt. + +And Moses said to Aaron, Take a golden pot, and cast into it one full homer of manna; and you shall lay it up before God, to be kept for your generations, + +as the Lord commanded Moses: and Aaron laid it up before the testimony to be kept. + +And the children of Israel ate manna forty years, until they came to the +16:35 +Gr. +οἰκοuμένη. + land they ate the manna, until they came to the region of Phoenicia. + +Now the homer was the tenth part of three measures. + +

+ + +

And all the congregation of the children of Israel departed from the wilderness of Sin, according to their encampments, by the word of the Lord; and they encamped in Raphidin: and there was no water for the people to drink. + +And the people reviled Moses, saying, Give us water, that we may drink; and Moses said to them, Why do you⌃ revile me, and why tempt you⌃ the Lord? + +And the people thirsted there for water, and there the people murmured against Moses, saying, Why is this? have you brought us up out of Egypt to kill us and our children and our cattle with thirst? + +And Moses cried to the Lord, saying, What shall I do to this people? yet a little while and they will stone me. + +And the Lord said to Moses, Go before this people, and take to yourself of the elders of the people; and the rod with which you struck the river, take in your hand, and you shall go. + +Behold, I stand there before you +come, on the rock in Choreb, and you shall strike the rock, and water shall come out from it, and the people shall drink. And Moses did so before the sons of Israel. + +And he called the name of that place, Temptation, and Reviling, because of the reviling of the children of Israel, and because they tempted the Lord, saying, Is the Lord among us or not? + +And Amalec came and fought with Israel in Raphidin. + +And Moses said to Joshua, Choose out for yourself mighty men, and go forth and set the army in array against Amalec to-morrow; and, behold, I +shall stand on the top of the hill, and the rod of God +will be in my hand. + +And Joshua did as Moses said to him, and he went out and set the army in array against Amalec, and Moses and Aaron and Or went up to the top of the hill. + +And it came to pass, when Moses lifted up his hands, Israel prevailed; and when he let down his hands, Amalec prevailed. + +But the hands of Moses were heavy, and they took a stone and put it under him, and he sat upon it; and Aaron and Or supported his hands one on this side and the other on that, and the hands of Moses were supported till the going down of the sun. + +And Joshua routed Amalec and all his people with the slaughter of the sword. + +And the Lord said to Moses, Write this for a memorial in a book, and +17:14 +Gr. +give. + speak +this in the ears of Joshua; for I will utterly blot out the memorial of Amalec from +17:14 +Gr. +the +part +under heaven. + under heaven. + +And Moses built an altar to the Lord, and called the name of it, The Lord my Refuge. + +For with a secret hand the Lord wages war upon Amalec to all generations. + +

+ + +

And Jothor the priest of Madiam, the father-in-law of Moses, heard of all that the Lord did to his people Israel; for the Lord brought Israel out of Egypt. + +And Jothor the father-in-law of Moses, took Sepphora the wife of Moses after she had been sent away, + +and her two sons: the name of the one was Gersam, +his father saying, I was a sojourner in a strange land; — + +and the name of the second Eliezer, saying, For the God of my father +is my helper, and he has rescued me out of the hand of Pharao. + +And Jothor the father-in-law of Moses, and his sons and his wife, went forth to Moses into the wilderness, where he encamped on the mount of God. + +And it was told Moses, saying, Behold, your father-in-law Jothor is coming to you, and your wife and two sons with him. + +And Moses went forth to meet his father-in-law, and did him reverence, and kissed him, and they embraced each other, and he brought them into the tent. + +And Moses related to his father-in-law all things that the Lord did to Pharao and all the Egyptians for Israel's sake, and all the labor that had befallen them in the way, and that the Lord had rescued them out of the hand of Pharao, and out of the hand of the Egyptians. + +And Jothor was amazed at all the good things which the Lord did to them, forasmuch as he rescued them out of the hand of the Egyptians and out of the hand of Pharao. + +And Jothor said, Blessed be the Lord, because he has rescued them out of the hand of the Egyptians and out of the hand of Pharao. + +Now know I that the Lord is great above all gods, because of this, +18:11 +The meaning appeaars to be, The Lord showed his superiority on this occasion, when the enemy attacked the Israelites. + wherein they attacked them. + +And Jothor the father-in-law of Moses took whole burnt offerings and sacrifices for God, for Aaron and all the elders of Israel came to eat bread with the father-in-law of Moses before God. + +And it came to pass after the morrow that Moses sat to judge the people, and all the people stood by Moses from morning till evening. + +And Jothor having seen all that +Moses +18:14 +Gr. +does. + did to the people, says, What is this that you do to the people? therefore sit you alone, and all the people stand by you from morning till evening? + +And Moses says to his father-in-law, Because the people come to me to seek judgment from God. + +For whenever there is a dispute among them, and they come to me, I give judgment upon each, and I teach them the ordinances of God and his law. + +And the father-in-law of Moses said to him, You do not this thing rightly, + +you will wear away with intolerable weariness, both those and all this people which is with you: this thing is hard, you will not be able to endure it yourself alone. + +Now then listen to me, and I will advise you, and God shall be with you: be you to the people in the things pertaining to God, and you shall bring their +18:19 +Gr. +words. + matters to God. + +And you shall testify to them the ordinances of God and his law, and you shall show to them the ways in which they shall walk, and the works which they shall do. + +And do you look out for yourself out of all the people able men, fearing God, righteous men, hating pride, and you shall set over +18:21 +Gr. +them. + the people captains of thousands and captains of hundreds, and captains of fifties, and captains of tens. + +And they shall judge the people at all times, and the too burdensome matter they shall bring to you, but they shall judge the smaller cases; so they shall relieve you and help you. + +If you will do this thing, God shall strengthen you, and you shall be able to attend, and all this people shall come with peace into +18:23 +Gr. +his own. + their own place. + +And Moses listened to the voice of his father-in-law, and did whatever he said to him. + +And Moses chose out able men out of all Israel, and he made them captains of thousands and captains of hundreds, and captains of fifties and captains of tens over +18:25 +Gr. +them. + the people. + +And they judged the people at all times; and every too burdensome matter they brought to Moses, but every light matter they judged themselves. + +And Moses dismissed his father-in-law, and he returned to his own land. + +

+ + +

And in the third month of the departure of the children of Israel out of the land of Egypt, on the same day, they came into the wilderness of Sina. + +And they departed from Raphidin, and came into the wilderness of Sina, and there Israel encamped before the mountain. + +And Moses went up to the mount of God, and God called him out of the mountain, saying, These things shall you say to the house of Jacob, and you shall report them to the children of Israel. + +You⌃ have seen all that I have done to the Egyptians, and I took you up as upon eagles' wings, and I brought you near to myself. + +And now if you⌃ will indeed hear my voice, and keep my covenant, you⌃ shall be to me a peculiar people above all nations; for the whole earth is mine. + +And you⌃ shall be to me a royal priesthood and a holy nation: these words shall you speak to the children of Israel. + +And Moses came and called the elders of the people, and he set before them all these words, which God appointed them. + +And all the people answered with one accord, and said, All things that God has spoken, we will do and listen to: and Moses reported these words to God. + +And the Lord said to Moses, Behold! I come to you in a pillar of a cloud, that the people may hear me speaking to you, and may believe you for ever: and Moses reported the words of the people to the Lord. + +And the Lord said to Moses, Go down and solemnly charge the people, and sanctify them today and to-morrow, and let them wash their garments. + +And let them be ready against the third day, for on the third day the Lord will descend upon mount Sina before all the people. + +And you shall separate the people round about, saying, Take heed to yourselves that you⌃ go not up into the mountain, nor touch any part of it: every one that touches the mountain shall surely die. + +A hand shall not touch it, for +every one that touches shall be stoned with stones or shot through with a dart, whether beast or whether man, it shall not live: when the voices and trumpets and cloud depart from off the mountain, they shall come up on the mountain. + +And Moses went down from the mountain to the people, and sanctified them, and they washed their clothes. + +And he said to the people, Be ready: for three days come not near to a woman. + +And it came to pass on the third day, as the morning drew near, there were voices and lightnings and a dark cloud on mount Sina: the voice of the trumpet sounded loud, and all the people in the camp trembled. + +And Moses led the people forth out of the camp to meet God, and they stood by under the camp. + +The mount of Sina was altogether on a smoke, because God had descended upon it in fire; and the smoke went up as the smoke of a furnace, and the people were exceedingly amazed. + +And the sounds of the trumpet were waxing very much louder. Moses spoke, and God answered him with a voice. + +And the Lord came down upon mount Sina on the top of the mountain; and the Lord called Moses to the top of the mountain, and Moses went up. + +And God spoke to Moses, saying, Go down, and solemnly charge the people, lest at any time they draw near to God to gaze, and a multitude of them fall. + +And let the priests that draw near to the Lord God sanctify themselves, +19:22 +Gr. +change. ἀπαλλατέω is used in this sense elsewhere. +q.d. +lest he remove by destroying. + destroy some of them. + +And Moses said to God, The people will not be able to approach to the mount of Sina, for you have solemnly charged us, saying, Set bounds to the mountain and sanctify it. + +And the Lord said to him, Go, descend, and come up you and Aaron with you; but let not the priests and the people +19:24 +See Luke 16. 16, which perhaps refers to this passage. +q.d. +remove by destroying. + force their way to come up to God, lest the Lord destroy some of them. + +And Moses went down to the people, and spoke to them. + +

+ + +

And the Lord spoke all these words, saying: + +I am the Lord your God, who brought you out of the land of Egypt, out of the house of bondage. + +You shall have no other gods beside me. + +You shall not make to yourself an idol, nor likeness of anything, whatever things are in the heaven above, and whatever are in the earth beneath, and whatever are in the waters under the earth. + +You shall not bow down to them, nor serve them; for I am the Lord your God, a jealous God, recompensing the sins of the fathers upon the children, to the third and fourth generation to them that hate me, + +and bestowing mercy on them that love me to thousands +of them, and on them that keep my commandments. + +You shall not take the name of the Lord your God in vain; for the Lord your God will not acquit him that takes his name in vain. + +Remember the sabbath day to keep it holy. + +Six days you shall labor, and shall perform all your work. + +But on the seventh day is the sabbath of the Lord your God; on it you shall do no work, you, nor your son, nor your daughter, your servant nor your maidservant, your ox nor your ass, nor any cattle of yours, nor the stranger that sojourns with you. + +For in six days the Lord made the heaven and the earth, and the sea and all things in them, and rested on the seventh day; therefore the Lord blessed the seventh day, and hallowed it. + + +20:12 +Matt 15:4 + Honor your father and your mother, that it may be well with you, and that you may live long on the good land, which the Lord your God gives to you. + + +20:13 +Matt 5:27 + You shall not commit adultery. + + +20:14 +Mark 10:19 + You shall not steal. + + +20:15 +Matt 5:21 + You shall not kill. + +You shall not bear false witness against your neighbor. + +You shall not covet your neighbor's wife; you shall not covet your neighbor's house; nor his field, nor his servant, nor his maid, nor his ox, nor his ass, nor any of his cattle, nor whatever belongs to your neighbor. + +And all the people perceived the +20:18 +Or, +saw the lightening, +Lit. +saw the voice. + thundering, and the flashes, and the voice of the trumpet, and the mountain smoking; and all the people feared and stood afar off, + +and said to Moses, Speak you to us, and let not God speak to us, lest we die. + +And Moses says to them, Be of good courage, for God is come to you to try you, that his fear may be among you, that you⌃ sin not. + +And the people stood afar off, and Moses went into the darkness where God was. + +And the Lord said to Moses, Thus shall you say to the house of Jacob, and you shall report it to the children of Israel, You⌃ have seen that I have spoken to you from heaven. + +You⌃ shall not make to yourselves gods of silver, and gods of gold you⌃ shall not make to yourselves. + +You⌃ shall make to me an altar of earth; and upon it you⌃ shall sacrifice your whole burnt offerings, and your peace-offerings, and your sheep and your calves in every place, where I shall record my name; and I will come to you and bless you. + +And if you will make to me an altar of stones, you shall not build them hewn +stones; for you have lifted up your tool upon them, and they are defiled. + +You shall not go up to my altar by steps, that you may not uncover your nakedness upon it. + +

+ + +

And these +are the ordinances which you shall set before them. + +If you buy a Hebrew servant, six years shall he serve you, and in the seventh year he shall go forth free for nothing. + +If he should have come in alone, he shall also go forth alone; and if his wife should have gone in together with him, his wife also shall go out. + +Moreover, if his master give him a wife, and she have +born him sons or daughters, the wife and the children shall be his master's; and he shall go forth alone. + +And if the servant should answer and say, I love my master and wife and children, I +21:5 +Gr. +do not run away. + will not go away free; + +his master shall bring him to the judgment-seat of God, and then shall he bring him to the door, —to the door-post, and his master shall bore his ear through with an awl, and he shall serve him for ever. + +And if any one sell his daughter as a domestic, she shall not depart as the maidservants depart. + +If she be not pleasing to her master, +21:8 +Gr. +who has. + after she has betrothed herself to him, he shall let her go free; but he is not at liberty to sell her to a foreign nation, because he has trifled with her. + +And if he should have betrothed her to his son, he shall do to her according to the right of daughters. + +And if he take another to himself, he shall not deprive her of necessaries and her apparel, and her companionship +with him. + +And if he will not do these three things to her, she shall go out free without money. + +And if any man strike another and he die, let him be certainly put to death. + +But as for him that did it not willingly, but God delivered him into his hands, I will give you a place whither the slayer may flee. + +And if any one lie in wait for his neighbor to kill him by craft, and he go for refuge, you shall take him from my altar to put him to death. + +Whoever smites his father or his mother, let him be certainly put to death. + +He that reviles his father or his mother shall surely die. + +Whosoever shall steal one of the children of Israel, and prevail over him and sell him, and he be found with him, let him +21:17 +Matt 15:4 + certainly die. + +And if two men revile each other and strike the one the other with a stone or his fist, and he die not, but be laid upon his bed; + +if the man arise and walk abroad on his staff, he that struck him shall be clear; only he shall pay for his loss of time, and for his healing. + +And if a man strike his man-servant or his maidservant, with a rod, and +the party die under his hands, he shall be surely punished. + +But if +the servant continue to live a day or two, let not +the master be punished; for he is his money. + +And if two men strive and strike a woman with child, and her child be born imperfectly formed, he shall be forced to pay a penalty: as the woman's husband may lay upon him, he shall pay with a valuation. + +But if it be perfectly formed, he shall give life for life, + + +21:24 +Matt 5:38 + eye for eye, tooth for tooth, hand for hand, foot for foot, + +burning for burning, wound for wound, stripe for stripe. + +And if one strike the eye of his man-servant, or the eye of his maidservant, and put it out, he shall let them go free for their eye's sake. + +And if he should strike out the tooth of his man-servant, or the tooth of his maidservant, he shall send them away free for their tooth's sake. + +And if a bull gore a man or woman and +21:28 +Or, +heor +she die. + they die, the bull shall be stoned with stones, and his flesh shall not be eaten; but the owner of the bull shall be clear. + +But if the bull should have been given to goring in former time, and men should have told his owner, and he have not removed him, but he should have slain a man or woman, the bull shall be stoned, and his owner shall die also. + +And if a ransom should be imposed on him, he shall pay for the ransom of his soul as much as they shall lay upon him. + +And if +the bull gore a son or daughter, let them do to him according to this ordinance. + +And if the bull gore a man-servant or maidservant, he shall pay to their master thirty silver didrachmas, and the bull shall be stoned. + +And if any one open a pit or dig a cavity in stone, and cover it not, and an ox or an ass fall in there, + +the owner of the pit shall make compensation; he shall give money to their owner, and the dead shall be his own. + +And if any man's bull gore the bull of his neighbor, and it die, they shall sell the living bull and divide the money, and they shall divide the dead bull. + +But if the bull be known to have been given to goring in time past, and they have testified to his owner, and he have not removed him, he shall repay bull for bull, but the dead shall be his own. + +

+ + +

And if one steal +22:1 +Gr. +a calf. + an ox or a sheep, and kill it or sell it, he shall pay five calves for a calf, and four sheep for a sheep. + +And if the thief be found in the breach +made by himself and be struck and die, there shall not be blood shed for him. + +But if the sun be risen upon him, he is guilty, he shall die instead; and if +22:3 +Gr. +he. + a thief have nothing, let him be sold in compensation for what he has stolen. + +And if the thing stolen be left and be in his hand alive, whether ox or sheep, he shall restore them two-fold. + +And if any one should feed down a field or a vineyard, and should send in his beast to feed down another field, he shall make compensation of his own field according to his produce; and if he shall have fed down the whole field, he shall pay for compensation the best of his own field and the best of his vineyard. + +And if fire have gone forth and caught thorns, and should also set on fire threshing-floors or ears of corn or a field, he that kindled the fire shall make compensation. + +And if any one give to his neighbor money or goods to keep, and they be stolen out of the man's house, if the thief be found he shall repay double. + +But if the thief be not found, the master of the house shall come forward before God, and shall swear that surely he has not wrought wickedly in +22:8 +Gr. +over. + regard of any part of his neighbor's deposit, + +according to every injury alleged, both concerning a calf, and an ass, and a sheep, and a garment, and every alleged loss, whatever in fact it may be, —the judgment of both shall proceed before God, and he that is convicted by God shall repay to his neighbor double. + +And if any one give to his neighbor to keep a calf or sheep or any beast, and it be wounded or die or be taken, and no one know, + +an oath of God shall be between both, +each swearing that he has surely not at all been guilty in the matter of his neighbor's deposit; and so his master shall +22:11 +Gr. +accept him. + hold him guiltless, and he shall not make compensation. + +And if it be stolen from him, he shall make compensation to the owner. + +And if it be seized of beasts, he shall bring him to +witness the prey, and he shall not make compensation. + +And if any one borrow +ought of his neighbor, and it be wounded or die or be carried away, and the owner of it be not with it, he shall make compensation. + +But if the owner be with it, he shall not make compensation: but if it be a +22:15 +Qu. +If the borrower be a hireling, he shall have the ruined beast instead of his hire? + hired thing, there shall be +a compensation to him instead of his hire. + +And if any one deceive a virgin that is not betrothed, and lie with her, he shall surely endow her for a wife to himself. + +And if her father positively refuse, and will not consent to give her to him for a wife, he shall pay +22:17 +Gr. +money. + compensation to her father according to the amount of the dowry of virgins. + +You⌃ shall not save the lives of sorcerers. + +Every one that lies with a beast you⌃ shall surely put to death. + +He that sacrifices to any gods but to the Lord alone, shall be destroyed by death. + +And you⌃ shall not hurt a stranger, nor afflict him; for you⌃ were strangers in the land of Egypt. + +You⌃ shall hurt no widow or orphan. + +And if you⌃ should afflict them by ill-treatment, and they should cry aloud to me, I will surely hear their voice. + +And I will be very angry, and will kill you with the sword, and your wives shall be widows and your children orphans. + +And if you should lend money to your poor brother who is by you, you shall not be hard upon him you shall not exact usury of him. + +And if you take your neighbor's garment for a pledge, you shall restore it to him before sunset. + +For this is his clothing, this is the only covering of his nakedness; wherein shall he sleep? If then he shall cry to me, I will listen to him, for I am merciful. + + +22:28 +Acts 23:5 + You shall not revile the gods, nor speak ill of the ruler of your people. + +You shall not keep back the first fruits of your threshing floor and press. The firstborn of your sons you shall give to me. + +So shall you do with your calf and your sheep and your ass; seven days shall it be under the mother, and the eighth day you shall give it to me. + +And you⌃ shall be holy men to me; and you⌃ shall not eat flesh taken of beasts, you⌃ shall cast it to the dog. + +

+ + +

You shall not receive a vain report: you shall not agree with the unjust +man to become an unjust witness. + +You shall not associate with the multitude for evil; you shall not join yourself with a multitude to turn aside with the majority so as to shut out judgment. + +And you shall not spare a poor man in judgment. + +And if you meet your enemy's ox or his ass going astray, you shall turn them back and restore them to him. + +And if you see your enemy's ass fallen under its burden, you shall not pass by it, but shall help to raise it with him. + +You shall not wrest the sentence of the poor in his judgment. + +You shall abstain from every unjust thing: you shall not kill the innocent and just, and you shall not justify the wicked for gifts. + +And you shall not receive gifts; for gifts blind the eyes of the seeing, and corrupt just words. + +And you⌃ shall not afflict a stranger, for you⌃ know the heart of a stranger; for you⌃ were yourselves strangers in the land of Egypt. + +Six years you shall sow your land, and gather in the fruits of it. + +But in the seventh year you shall let it rest, and leave it, and the poor of your nation shall feed; and the wild beasts of the field shall eat that which remains: thus shall you do to your vineyard and to your oliveyard. + +Six days shall you do your works, and on the seventh day there shall be rest, that your ox and your ass may rest, and that the son of your maidservant and the stranger may be refreshed. + +Observe all things whatever I have commanded you; and you⌃ shall make no mention of the name of other gods, neither shall they be heard out of your mouth. + +Keep you⌃ a feast to me three times in the year. + +Take heed to keep the feast of unleavened bread: seven days you⌃ shall eat unleavened bread, as I charged you at the season of the month of new +corn, for in it you came out of Egypt: you shall not appear before me empty. + +And you shall keep the feast of the harvest of first fruits of your labors, whatever you shall have sown in your field, and the feast of completion at the end of the year in the gathering in of your +23:16 +Gr. +works. + fruits out of your field. + +Three times in the year shall all your males appear before the Lord your God. + +For when I shall have cast out the nations from before you, and shall have widened your borders, you shall not offer the blood of my +23:18 +Gr. +incense offering. + sacrifice with leaven, neither must the fat of my feast abide till the morning. + +You shall bring the first-offerings of the first fruits of your land into the house of the Lord your God. You shall not seethe a lamb in its mother's milk. + +And, behold, I send my angel before your face, that he may keep you in the way, that he may bring you into the land which I have prepared for you. + +Take heed to yourself and listen to him, and disobey him not; for he will not give way to you, for my name is on him. + +If you⌃ will indeed hear my voice, and if you will do all the things I shall charge you with, and keep my covenant, you⌃ shall be to me a peculiar people above all nations, for the whole earth is mine; and you⌃ shall be to me a royal priesthood, and a holy nation: these words shall you⌃ speak to the children of Israel, If you⌃ shall indeed hear my voice, and do all the things I shall tell you, I will be an enemy to your enemies, and an adversary to your adversaries. + +For my angel shall go as your leader, and shall bring you to the Amorite, and Chettite, and Pherezite, and Chananite, and Gergesite, and Evite, and Jebusite, and I will destroy them. + +You shall not worship their gods, nor serve them: you shall not do according to their works, but shall utterly destroy them, and break to pieces their pillars. + +And you shall serve the Lord your God, and I will bless your bread and your wine and your water, and I will turn away sickness from you. + +There shall not be on your land one that is impotent or barren. I will surely fulfil the number of your days. + +And I will send terror before you, and I will strike with amazement all the nations to which you shall come, and I will make all your enemies to flee. + +And I will send hornets before you, and you shall cast out the Amorites and the Evites, and the Chananites and the Chettites from you. + +I will not cast them out in one year, lest the land become desolate, and the beasts of the field multiply against you. + +By little +and little I will cast them out from before you, until you shall be increased and inherit the earth. + +And I will set your borders from the Red Sea, to the sea of the Phylistines, and from the wilderness to the great river Euphrates; and I will give into your hand those that dwell in the land, and will cast them out from you. + +You shall make no covenant with them and their gods. + +And they shall not dwell in your land, lest they cause you to sin against me; for if you should serve their gods, these will be an offense to you. + +

+ + +

And to Moses he said, Go up to the Lord, you and Aaron and Nadab and Abiud, and seventy of the elders of Israel: and they shall worship the Lord from a distance. + +And Moses alone shall draw near to God; and they shall not draw near, and the people shall not come up with them. + +And Moses went in and related to the people all the words of God and the ordinances; and all the people answered with one voice, saying, All the words which the Lord has spoken, we will do and +24:3 +Lit. +listen. + be obedient. + +And Moses wrote all the words of the Lord; and Moses rose up early in the morning, and built an altar under the mountain, and +set up twelve stones for the twelve tribes of Israel. + +And he sent forth the young men of the children of Israel, and they offered whole burnt offerings, and they sacrificed young calves as a peace-offering to God. + +And Moses took half the blood and poured it into bowls, and half the blood he poured out upon the altar. + +And he took the book of the covenant and read it in the ears of the people, and they said, All things whatever the Lord has spoken we will do and listen therein. + +And +24:8 +Heb 9:19 + Moses took the blood and sprinkled it upon the people, and said, Behold the blood of the covenant, which the Lord has made with you concerning all these words. + +And Moses went up, and Aaron, and Nadab and Abiud, and seventy of the elders of Israel. + +And they saw the place where the God of Israel stood; and under his feet was as it were a work of sapphire slabs, and as it were the appearance of the firmament of heaven in its purity. + +And of the chosen ones of Israel there was not even one missing, and they appeared in +24:11 +i. e. +where God was. + the place of God, and did eat and drink. + +And the Lord said to Moses, Come up to me into the mountain, and be there; and I will give you the tables of stone, the law and the commandments, which I have written to give them laws. + +And Moses rose up and Joshua his attendant, and they went up into the mount of God. + +And to the elders they said, Rest there till we return to you; and behold, Aaron and Or are with you: if any man have a cause to be tried, let them go to them. + +And Moses and Joshua went up to the mountain, and the cloud covered the mountain. + +And the glory of God came down upon the mount Sina, and the cloud covered it six days; and the Lord called Moses on the seventh day out of the midst of the cloud. + +And the appearance of the glory of the Lord was as burning fire on the top of the mountain, before the children of Israel. + +And Moses went into the midst of the cloud, and went up to the mountain, and was there in the mountain forty days and forty nights. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and take first fruits of all, who may be disposed in their heart to give; and you⌃ shall take my first fruits. + +And this is the offering which you⌃ shall take of them; gold and silver and brass, + +and blue, and purple, and double scarlet, and fine spun linen, and goats' hair, + +and rams' skins dyed red, and blue skins, and incorruptible wood, + +and oil for the light, incense for anointing oil, and for the composition of incense, + +and sardius stones, and stones for the carved work of the +25:7 +Lit. +shoulder-piece. + breast-plate, and the full-length robe. + +And you shall make me a sanctuary, and I will appear among you. + +And you shall make for me according to all things which I show you in the mountain; even the pattern of the tabernacle, and the pattern of all its furniture: so shall you make it. + +And you shall make the ark of testimony of incorruptible wood; the length of two cubits and a half, and the breadth of a cubit and a half, and the height of a cubit and a half. + +And you shall gild it with pure gold, you shall gild it within and without; and you shall make for it golden wreaths twisted round about. + +And you shall cast for it four golden rings, and shall put them on the four sides; two rings on the one side, and two rings on the other side. + +And you shall make staves +of incorruptible wood, and shall gild them with gold. + +And you shall put the staves into the rings on the sides of the ark, to bear the ark with them. + +The staves shall remain fixed in the rings of the ark. + +And you shall put into the ark the testimonies which I shall give you. + +And you shall make a propitiatory, a lid of pure gold; the length of two cubits and a half, and the breadth of a cubit and a half. + +And you shall make two cherubs graven in gold, and you shall put them on both sides of the propitiatory. + +They shall be made, one cherub on this side, and another cherub on the other side of the propitiatory; and you shall make the two cherubs on the two sides. + +The cherubs shall stretch forth their wings above, overshadowing the propitiatory with their wings; and their faces shall be toward each other, the faces of the cherubs shall be toward the propitiatory. + +And you shall set the propitiatory on the ark above, and you shall put into the ark the testimonies which I shall give you. + +And I will make myself known to you from thence, and I will speak to you above the propitiatory between the two cherubs, which are upon the ark of testimony, even in all things which I shall charge you concerning the children of Israel. + +And you shall make a golden table of pure gold, in length two cubits, and in breadth a cubit, and in height a cubit and a half. + +And you shall make for it golden wreaths twisted round about, and you shall make for it a crown of an hand-breadth round about. + +And you shall make a twisted wreath for the crown round about. + +And you shall make four golden rings; and you shall put the four rings upon the four parts of its feet under the crown. + +And the rings shall be for bearings for the staves, that they may bear the table with them. + +And you shall make the staves of incorruptible wood, and you shall gild them with pure gold; and the table shall be borne with them. + +And you shall make its dishes and its censers, and its bowls, and its cups, with which you shall offer drink-offerings: of pure gold shall you make them. + +And you shall set upon the table show bread before me continually. + +And you shall make a candlestick of pure gold; you shall make the candlestick of graven work: its stem and its branches, and its bowls and its knops and its lilies shall be +25:31 +Gr. +of it. + of one piece. + +And six branches proceeding sideways, three branches of the candlestick from one side of it, and three branches of the candlestick from the other side. + +And three bowls fashioned like almonds, on each branch a knop and a lily; so to the six branches proceeding from the candlestick, + +and in the candlestick four bowls fashioned like almonds, in each branch knops and the flowers +25:34 +Gr. +of it. + of the same. + +A knop under two branches out of it, and a knop under four branches out of it; so to the six branches proceeding from the candlestick; and in the candlestick four bowls fashioned like almonds. + +Let the knops and the branches be of one piece, altogether graven of one piece of pure gold. + +And you shall make its seven lamps: and you shall set on +it the lamps, and they shall shine from one front. + +And you shall make its funnel and its snuff-dishes of pure gold. + +All these articles +shall be a talent of pure gold. + +See, you shall make them +25:40 +Heb 8:5 + according to the pattern showed you in the mount. + +

+ + +

And you shall make the tabernacle, ten curtains of fine linen spun, and blue and purple, and scarlet spun +with cherubs; you shall make them with work of a weaver. + +The length of one curtain shall be eight and twenty cubits, and one curtain shall be the breadth of four cubits: there shall be the same measure to all the curtains. + +And the five curtains shall be joined one to another, and +the other five curtains shall be closely connected the one with the other. + +And you shall make for them loops of blue on the edge of one curtain, on one side for the coupling, and so shall you make on the edge of the outer curtain for the second coupling. + +Fifty loops shall you make for one curtain, and fifty loops shall you make on the part of the curtain answering to the coupling of the second, opposite +each other, corresponding to each other +26:5 +i.e. +at each coupling. + at each point. + +And you shall make fifty golden rings; and you shall join the curtains to each other with the rings, and it shall be one tabernacle. + +And you shall make for a covering of the tabernacle skins with the hair on, you shall make them eleven skins. + +The length of one skin thirty cubits, and the breadth of one skin four cubits: there shall be the same measure to the eleven skins. + +And you shall join the five skins together, and the six skins together; and you shall double the sixth skin in front of the tabernacle. + +And you shall make fifty loops on the border of one skin, which is in the midst for the joinings; and you shall make fifty loops on the edge of the second skin that joins it. + +And you shall make fifty brazen rings; and you shall join the rings by the loops, and you shall join the skins, and they shall be one. + +And you shall fix at the end that which is over in the skins of the tabernacle; the half of the skin that is left shall you fold over, according to the overplus of the skins of the tabernacle; you shall fold it over behind the tabernacle. + +A cubit on this side, and a cubit on that side of that which remains of the skins, of the length of the skins of the tabernacle: it shall be folding over the sides of the tabernacle on this side and that side, that it may cover it. + +And you shall make for a covering of the tabernacle rams' skins dyed red, and blue skins as coverings above. + +And you shall make the posts of the tabernacle of incorruptible wood. + +Of ten cubits shall you make one post, and the breadth of one post of a cubit and a half. + +Two joints shall you make in one post, answering the one to the other: so shall you do to all the posts of the tabernacle. + +And you shall make posts to the tabernacle, twenty posts on the north side. + +And you shall make to the twenty posts forty silver sockets; two sockets to one post on both its sides, and two sockets to the other post on both its sides. + +And for the next side, toward the south, twenty posts, + +and their forty silver sockets: two sockets to one post on both its sides, and two sockets to the other post on both its sides. + +And on the back of the tabernacle at the part which is toward the +west you shall make six posts. + +And you shall make two posts on the corners of the tabernacle behind. + +And it shall be equal below, they shall be equal toward the same part from the heads to one joining; so shall you make to both the two corners, let them be equal. + +And there shall be eight posts, and their sixteen silver sockets; two sockets to one post on both its sides, and two sockets to the other post. + +And you shall make bars of incorruptible wood; five to one post on one side of the tabernacle, + +and five bars to one post on the second side of the tabernacle, and five bars to the hinder posts, on the side of the tabernacle toward the sea. + +And let the bar in the middle between the posts go through from the one side to the other side. + +And you shall gild the posts with gold; and you shall make golden rings, into which you shall introduce the bars, and you shall gild the bars with gold. + +And you shall set up the tabernacle according to the pattern showed you in the mount. + +And you shall make a veil of blue and purple and scarlet woven, and fine linen spun: you shall make it cherubs +in woven work. + +And you shall set it upon four posts of incorruptible wood overlaid with gold; and their tops +shall be gold, and their four sockets +shall be of silver. + +And you shall put the veil on the posts, and you shall carry in there within the veil the ark of the testimony; and the veil shall make a separation for you between the holy and the holy of holies. + +And you shall screen with the veil the ark of the testimony in the holy of holies. + +And you shall set the table outside the veil, and the candlestick opposite the table on the south side of the tabernacle; and you shall put the table on the north side of the tabernacle. + +And you shall make a screen for the door of the tabernacle of blue, and purple, and spun scarlet and fine linen spun, the work of the embroiderer. + +And you shall make for the veil five posts, and you shall gild them with gold; and their capitals shall be gold; and you shall cast for them five brazen sockets. + +

+ + +

And you shall make an altar of incorruptible wood, of five cubits in the length, and five cubits in the breadth; the altar shall be square, and the height of it shall be of three cubits. + +And you shall make the horns on the four corners; the horns shall be of the +27:2 +Gr. +of it. + same piece, and you shall overlay them with brass. + +And you shall make a rim for the altar; and its covering and its cups, and its flesh hooks, and its fire-pan, and all its vessels shall you make of brass. + +And you shall make for it a brazen grate with network; and you shall make for the grate four brazen rings under the four sides. + +And you shall put them below under the grate of the altar, and the grate shall extend to the middle of the altar. + +And you shall make for the altar staves of incorruptible wood, and you shall overlay them with brass. + +And you shall put the staves into the rings; and let the staves be on the sides of the altar to carry it. + +You shall make it hollow with boards: according to what was showed you in the mount, so you shall make it. + +And you shall make a court for the tabernacle, curtains of the court of fine linen spun on the south side, the length of one hundred cubits for one side. + +And their pillars twenty, and twenty brazen sockets +27:10 +Gr. +of. + for them, and their rings and their clasps of silver. + +Thus +shall there be to the side toward the north curtains of one hundred cubits in length; and their pillars twenty, and their sockets twenty of brass, and the rings and the clasps of the pillars, and their sockets overlaid with silver. + +And in the breadth of the tabernacle toward the west curtains of fifty cubits, their pillars ten and their sockets ten. + +And in the breadth of the tabernacle toward the south, curtains of fifty cubits; their pillars ten, and their sockets ten. + +And the height of the curtains +shall be of fifty cubits for the one side +of the gate; their pillars three, and their sockets three. + +And +for the second side the height of the curtains +shall be of fifteen cubits; their pillars three, and their sockets three. + +And a veil for the door of the court, the height +of it of twenty cubits of blue linen, and of purple, and spun scarlet, and of fine linen spun with the art of the embroiderer; their pillars four, and their sockets four. + +All the pillars of the court round about overlaid with silver, and their capitals silver and their brass sockets. + +And the length of the court +shall be one hundred +cubits on each side, and the breadth fifty on each side, and the height five cubits of fine linen spun, and their sockets of brass. + +And all the furniture and all the instruments and the pins of the court +shall be of brass. + +And do you charge the children of Israel, and let them take for you refined pure olive-oil beaten to burn for light, that a lamp may burn continually + +in the tabernacle of the testimony, without the veil that is +27:21 +Gr. +over. + before the +ark of the covenant, shall Aaron and his sons burn it from evening until morning, before the Lord: it is a perpetual ordinance +27:21 +Gr. +to. + throughout your generations of the children of Israel. + +

+ + +

And do you take to yourself both Aaron your brother, and his sons, even +them of the children of Israel; so that Aaron, and Nadab and Abiud, and Eleazar and Ithamar, sons of Aaron, may minister to me. + +And you shall make holy apparel for Aaron your brother, for honor and glory. + +And speak you to all those who are wise in understanding, whom I have filled with the spirit of wisdom and perception; and they shall make the holy apparel of Aaron for the sanctuary, in which +apparel he shall minister to me as priest. + +And these are the garments which they shall make: the breast-plate, and the shoulder-piece, and the full-length robe, and the tunic with a fringe, and the tire, and the girdle; and they shall make holy garments for Aaron and his sons to minister to me as priests. + +And they shall take the gold, and the blue, and the purple, and the scarlet, and the fine linen. + +And they shall make the shoulder-piece of fine linen spun, the woven work of the embroiderer. + + +28:7 +i. e. +the work, +or, +he, +i. e. +Aaron. + It shall have two shoulder-pieces joined together, fastened on the two sides. + +And the woven work of the shoulder-pieces which is upon +28:8 +Or, +him. + it, shall be of one piece according to the work, of pure gold and blue and purple, and spun scarlet and fine twined linen. + +And you shall take the two stones, the stones of emerald, and you shall grave on them the names of the children of Israel. + +Six names on the first stone, and the other six names on the second stone, according to their births. + + +It shall be the work of the stone-engraver's art; as the graving of a seal you shall engrave the two stones with the names of the children of Israel. + +And you shall put the two stones on the shoulders of the shoulder-piece: they are memorial-stones for the children of Israel: and Aaron shall bear the names of the children of Israel before the Lord on his two shoulders, a memorial for them. + +And you shall make +28:13 +Gr. +little shields. + circlets of pure gold; + +and you shall make two fringes of pure gold, variegated with flowers wreathen work; and you shall put the wreathen fringes on the circlets, fastening them on their shoulder-pieces in front. + +And you shall make the oracle of judgment, the work of the embroiderer: in keeping with the ephod, you shall make it of gold, and blue and purple, and spun scarlet, and fine linen spun. + +You shall make it square: it shall be double; of a span the length of it, and of a span the breadth. + +And you shall interweave with it a texture of four rows of stone; there shall be a row of stones, a sardius, a topaz, and emerald, the first row. + +And the second row, a carbuncle, a sapphire, and a jasper. + +And the third row, a ligure, an agate, an amethyst: + +and the fourth row, a chrysolite, and a beryl, and an onyx stone, set round with gold, bound together with gold: let them be according to their row. + +And let the stones of the names of the children of Israel be twelve according to their names, engravings as of seals: let them be for the twelve tribes each according to the name. + +And you shall make on the oracle woven fringes, a chain-work of pure gold. + +And Aaron shall take the names of the children of Israel, on the oracle of judgment on his breast; a memorial before God for him as he goes into the sanctuary. + +And you shall put the fringes on the oracle of judgment; you shall put the wreaths on both sides of the oracle, + +and you shall put the two circlets on both the shoulders of the ephod in front. + +And you shall put the +28:26 +i. e. +in +Heb. Urim and Thummim; +Lit. +lights and perfections. + Manifestation and the Truth on the oracle of judgment; and it shall be on the breast of Aaron, when he goes into the holy place before the Lord; and Aaron shall bear the judgments of the children of Israel on his breast before the Lord continually. + +And you shall make the full-length tunic all of blue. + +And the opening of it shall be in the middle having a fringe round about the opening, the work of the weaver, woven together in the joining of the same piece that it might not be torn. + +And under the fringe of the robe below you shall make as it were pomegranates of a flowering pomegranate tree, of blue, and purple, and spun scarlet, and fine linen spun, under the fringe of the robe round about: golden pomegranates of the same shape, and bells round about between these. + +A bell by the side of a golden pomegranate, and flower-work on the fringe of the robe round about. + +And the sound of Aaron shall be audible when he ministers, as he goes into the sanctuary before the Lord, and as he goes out, that he die not. + +And you shall make a plate +of pure gold, and you shall grave on it +as the graving of a signet, Holiness of the Lord. + +And you shall put it on the spun blue cloth, and it shall be on the mitre: it shall be in the front of the mitre. + +And it shall be on the forehead of Aaron; and Aaron shall bear away the sins of their holy things, all that the children of Israel shall sanctify of every gift of their holy things, and it shall be on the forehead of Aaron continually acceptable for them before the Lord. + +And the fringes of the garments +shall be of fine linen; and you shall make a tire of fine linen, and you shall make a girdle, the work of the embroiderer. + +And for the sons of Aaron you shall make tunics and girdles, and you shall make for them tires for honor and glory. + +And you shall put them on Aaron your brother, and his sons with him, and you shall anoint them and +28:37 +Or, +consecrate them. + fill their hands: and you shall sanctify them, that they may minister to me in the priest's office. + +And you shall make for them linen drawers to cover the nakedness of their flesh; they shall reach from the loins to the thighs. + +And Aaron shall have them, and his sons, whenever they enter into the tabernacle of witness, or when they shall advance to the altar of the sanctuary to minister, so they shall not bring sin upon themselves, lest they die: +it is a perpetual statute for him, and for his seed after him. + +

+ + +

And these are the things which you shall do to them: you shall sanctify them, so that they shall serve me in the priesthood; and you shall take one young calf from the herd, and two unblemished rams; + +and unleavened loaves kneaded with oil, and unleavened cakes anointed with oil: you shall make them +of fine flour of wheat. + +And you shall put them on one basket, and you shall offer them on the basket, and the young calf and the two rams. + +And you shall bring Aaron and his sons to the doors of the tabernacle of testimony, and you shall wash them with water. + +And having taken the garments, you shall put on Aaron your brother both the full-length robe and the ephod and the oracle; and you shall join for him the oracle to the ephod. + +And you shall put the mitre on his head; and you shall put the plate, +even the Holiness, on the mitre. + +And you shall take of the anointing oil, and you shall pour it on his head, and shall anoint him, + +and you shall bring his sons, and put garments on them. + +And you shall gird them with the girdles, and put the tires upon them, and they shall have a priestly office to me for ever; and you shall +29:9 +Or, +consecrate them. +Lit. +make perfect the hands. + fill the hands of Aaron and the hands of his sons. + +And you shall bring the calf to the door of the tabernacle of witness; and Aaron and his sons shall lay their hands on the head of the calf, before the Lord, by the doors of the tabernacle of witness. + +And you shall kill the calf before the Lord, by the doors of the tabernacle of witness. + +And you shall take of the blood of the calf, and put it on the horns of the altar with your finger, but all the rest of the blood you shall pour out at the foot of the altar. + +And you shall take all the fat that is on the belly, and the lobe of the liver, and the two kidneys, and the fat that is upon them, and shall put them upon the altar. + +But the flesh of the calf, and his skin, and his dung, shall you burn with fire without the camp; for it is an +offering on account of sin. + +And you shall take one ram, and Aaron and his sons shall lay their hands on the head of the ram. + +And you shall kill it, and take the blood and pour it on the altar round about. + +And you shall divide the ram by his several limbs, and you shall wash the inward parts and the feet with water, and you shall put them on the divided parts with the head. + +And you shall offer the whole ram on the altar, a whole burnt offering to the Lord for a sweet smelling savor: it is an offering of incense to the Lord. + +And you shall take the second ram, and Aaron and his sons shall lay their hands on the head of the ram. + +And you shall kill it, and take of the blood of it, and put it on the tip of Aaron's right ear, and on the thumb of his right hand, and on the great toe of his right foot, and on the tips of the right ears of his sons, and on the thumbs of their right hands, and on the great toes of their right feet. + +And you shall take of the blood from the altar, and of the anointing oil; and you shall sprinkle it upon Aaron and on his garments, and on his sons and on his sons' garments with him; and he shall be sanctified and his apparel, and his sons and his sons' apparel with him: but the blood of the ram you shall pour round about upon the altar. + +And you shall take from the ram its fat, both the fat that covers the belly, and the lobe of the liver, and the two kidneys, and the fat that is upon them, and the right shoulder, for this is a +29:22 +Gr. +an accomplishment. +q.d. +a filling of the hands. + consecration. + +And one cake +made with oil, and one cake from the basket of unleavened bread set forth before the Lord. + +And you shall put them all on the hands of Aaron, and on the hands of his sons, and you shall +29:24 +Gr. +separate them for a separation. +Heb. wave them for a wave offering. + separate them as a separate offering before the Lord. + +And you shall take them from their hands, and shall offer them up on the altar of whole burnt offering for a sweet smelling savor before the Lord: it is an offering to the Lord. + +And you shall take the breast from the ram of consecration which is Aaron's, and you shall separate it as a separate offering before the Lord, and it shall be to you for a portion. + +And you shall sanctify the separated breast and the shoulder of removal which has been separated, and which has been removed from the ram of consecration, of the portion of Aaron and of +that of his sons. + +And it shall be a perpetual statute of the children of Israel to Aaron and his sons, for this is a separate offering; and it shall be a +29:28 +Or, +heave-offering. +Heb. + special offering from the children of Israel, from the peace-offerings of the children of Israel, a special offering to the Lord. + +And the apparel of the sanctuary which is Aaron's shall be his son's after him, for them to be anointed in them, and to fill their hands. + +The priest his successor from among his sons who shall go into the tabernacle of witness to minister in the holies, shall put them on seven days. + +And you shall take the ram of consecration, and you shall boil the flesh in the holy place. + +And Aaron and his sons shall eat the flesh of the ram, and the loaves in the basket, by the doors of the tabernacle of witness. + +They shall eat the offerings with which they were sanctified to fill their hands, to sanctify them; and a stranger shall not eat of them, for they are holy. + +And if +anything be left of the flesh of the sacrifice of consecration and of the loaves until the morning, you shall burn the remainder with fire: it shall not be eaten, for it is a holy thing. + +And thus shall you do for Aaron and for his sons according to all things that I have commanded you; seven days shall you fill their hands. + +And you shall sacrifice the calf of the sin-offering on the day of purification, and you shall purify the altar when you do +29:36 +Gr. +sanctify. + perform consecration upon it, and you shall anoint it so as to sanctify it. + +Seven days shall you purify the altar and sanctify it; and the altar shall be most holy, every one that touches the altar shall be hallowed. + +And these are the offerings which you shall offer upon the altar; two unblemished lambs of a year old daily on the altar continually, a constant offering. + +One lamb you shall offer in the morning, and the second lamb you shall offer in the evening. + +And a tenth measure of fine flour mingled with the fourth part of an hin of beaten oil, and a drink-offering the fourth part of a hin of wine for one lamb. + +And you shall offer the second lamb in the evening, after the manner of the morning-offering, and according to the drink-offering +29:41 +Gr. +of it. + of the morning lamb; you shall offer it an offering to the Lord for a sweet smelling savor, + +a perpetual sacrifice +29:42 +Gr. +to. + throughout your generations, at the door of the tabernacle of witness before the Lord; wherein I will be known to you from thence, so as to speak to you. + +And I will there give orders to the children of Israel, and I will be sanctified in my glory. + +And I will sanctify the tabernacle of testimony and the altar, and I will sanctify Aaron and his sons, to minister as priests to me. + +And I will be +29:45 +Or, +named. + called upon among the children of Israel, and will be their God. + +And they shall know that I am the Lord their God, who brought them forth out of the land of Egypt, to be +29:46 +Or, +named. + called upon by them, and to be their God. + +

+ + +

And you shall make the altar of incense of incorruptible wood. + +And you shall make it a cubit in length, and a cubit in breadth: it shall be square; and the height of it shall be of two cubits, its horns shall be +30:2 +Gr. +of it. + of the same piece. + +And you shall gild its grate with pure gold, and its sides round about, and its horns; and you shall make for it a wreathen border of gold roundabout. + +And you shall make under its wreathen border two rings of pure gold; you shall make it to the two corners on the two sides, and they shall be bearings for the staves, so as to bear it with them. + +And you shall make the staves of incorruptible wood, and shall gild them with gold. + +And you shall set it before the veil that is over the ark of the testimonies, wherein I will make myself known to you from thence. + +And Aaron shall burn upon it fine compound incense every morning; whenever he trims the lamps he shall burn incense upon it. + +And when Aaron lights the lamps in the evening, he shall burn incense upon it; a constant incense-offering always before the Lord for their generations. + +And you shall not offer strange incense upon it, +nor an offering made by fire, +nor a sacrifice; and you shall not pour a drink-offering upon it. + +And once in the year Aaron shall make atonement +30:10 +Gr. +on it, on its horns. + on its horns, he shall purge it with the blood of purification for their generations: it is most holy to the Lord. + +And the Lord spoke to Moses, saying, + +If you take account of the children of Israel in the surveying of them, and they shall give every one a ransom for his soul to the Lord, then there shall not be among them a +30:12 +Gr. +fall. + destruction in the visiting of them. + +And this is what they shall give, as many as pass the survey, half a didrachm which is according to the didrachm of the sanctuary: twenty oboli +go to the didrachm, but the half of the didrachm is the offering to the Lord. + +Every one that passes the survey from twenty years old and upwards shall give the offering to the Lord. + +The rich shall not give more, and the poor shall not give less than the half didrachm in giving the offering to the Lord, to make atonement for your souls. + +And you shall take the money of the offering from the children of Israel, and shall give it for the service of the tabernacle of testimony; and it shall be to the children of Israel a memorial before the Lord, to make atonement for your souls. + +And the Lord spoke to Moses, saying, + +Make a brazen laver, and a brazen base for it, +30:18 +Gr. +so as to wash one's self. + for washing; and you shall put it between the tabernacle of witness and the altar, and you shall pour forth water into it. + +And Aaron and his sons shall wash their hands and their feet with water from it. + +Whenever they shall go into the tabernacle of witness, they shall wash themselves with water, so they shall not die, whenever they advance to the altar to do service and to offer the whole burnt offerings to the Lord. + +They shall wash their hands and feet with water, whenever they shall go into the tabernacle of witness; they shall wash themselves with water, that they die not; and it shall be for them a perpetual statute, for him and his +30:21 +Gr. +generations. + posterity after him. + +And the Lord spoke to Moses, saying, + +Do you also take sweet herbs, the flower of choice myrrh five hundred shekels, and the half of this two hundred and fifty shekels of sweet smelling cinnamon, and two hundred and fifty shekels of sweet smelling calamus, + +and of +30:24 +Gr. +iris. + cassia five hundred shekels of the sanctuary, and a hin of olive oil. + +And you shall make it a holy anointing oil, a perfumed ointment +tempered by the art of the perfumer: it shall be a holy anointing oil. + +And you shall anoint with it the tabernacle of witness, and the ark of the tabernacle of witness, + +and all its furniture, and the candlestick and all its furniture, and the altar of incense, + +and the altar of whole burnt offerings and all its furniture, and the table and all its furniture, and the laver. + +And you shall sanctify them, and they shall be most holy: every one that touches them shall be hallowed. + +And you shall anoint Aaron and his sons, and sanctify them that they may minister to me as priests. + +And you shall speak to the children of Israel, saying, This shall be to you a holy anointing oil throughout your generations. + +On man's flesh it shall not be poured, and you⌃ shall not make +any for yourselves according to this composition: it is holy, and shall be holiness to you. + +Whosoever shall make it in like manner, and whoever shall give of it to a stranger, shall be destroyed from among his people. + +And the Lord said to Moses, Take for yourself sweet herbs, stacte, onycha, sweet galbanum, and transparent frankincense; there shall be +30:34 +Gr. +equal to equal. + an equal weight of each. + +And they shall make with it perfumed incense, tempered with the art of a perfumer, a pure holy work. + +And of these you shall beat some small, and you shall put it before the testimonies in the tabernacle of testimony, whence I will make myself known to you: it shall be to you a most holy incense. + +You⌃ shall not make any for yourselves according to this composition; it shall be to you a holy thing for the Lord. + +Whosoever shall make any in like manner, so as +30:38 +Gr. +to smell in it. +Hebraism. to smell it, shall perish from his people. + +

+ + +

And the Lord spoke to Moses, saying, + +Behold, I have called by name Beseleel the son of Urias the son of Or, of the tribe of Juda. + +And I have filled him +with a divine spirit of wisdom, and understanding, and knowledge, to invent in every work, + +and to frame works, to labor in gold, and silver, and brass, and blue, and purple, and spun scarlet, + +and works in stone, and for artificers' work in wood, to work at all works. + +And I have +31:6 +Gr. +given. + appointed him and Eliab the +son of Achisamach of the tribe of Dan, and to every one understanding in heart I have given understanding; and they shall +31:6 +Or, +work in, or at. One reading is ποιήσοθσι. + make all things as many as I have appointed you, — + +the tabernacle of witness, and the ark of the covenant, and the propitiatory that is upon it, and the furniture of the tabernacle, + +and the altars, and the table and all its furniture, + +and the pure candlestick and all its furniture, and the laver and its base, + +and Aaron's robes of ministry, and the robes of his sons to minister to me as priests, + +and the anointing oil and the compound incense of the sanctuary; according to all that I have commanded you shall they make them. + +And the Lord spoke to Moses, saying, + +Do you also charge the children of Israel, saying, Take heed and keep my sabbaths; +for they are a sign with me and among you throughout your generations, that you⌃ may know that I am the Lord that sanctifies you. + +And you⌃ shall keep the sabbaths, because this is holy to the Lord for you; he that profanes it shall surely be put to death: every one who shall do a work on it, that soul shall be destroyed from the midst of his people. + +Six days you shall do works, but the seventh day is the sabbath, a holy rest to the Lord; every one who shall do a work on the seventh day shall be put to death. + +And the children of Israel shall keep the sabbaths, to observe them throughout their generations. + +It is a perpetual covenant with me and the children of Israel, it is a perpetual sign with me; for in six days the Lord made the heaven and the earth, and on the seventh day he ceased, and rested. + +And he gave to Moses when he left off speaking to him in mount Sina the two tables of testimony, tables of stone written +upon with the finger of God. + +

+ + +

+32:1 +Acts 7:40 + And when the people saw that Moses delayed to come down from the mountain, the people combined against Aaron, and said to him, Arise and make us gods who shall go before us; for this Moses, the man who brought us forth out of the land of Egypt—we do not know what is become of him. + +And Aaron says to them, Take off the golden ear-rings which are in the ears of your wives and daughters, and bring them to me. + +And all the people took off the golden ear-rings that were in their ears, and brought them to Aaron. + +And he received them at their hands, and formed them with a graving tool; and he made them a molten calf, and said, These +are your gods, O Israel, which have brought you up out of the land of Egypt. + +And Aaron having seen it built an altar before it, and Aaron made proclamation saying, To-morrow +is a feast of the Lord. + +And having risen early on the morrow, he +32:6 +Gr. +Set upon the altar. + offered whole burnt offerings, and offered a peace-offering; and +32:6 +1 Cor 10:7 + the people sat down to eat and drink, and rose up to play. + +And the Lord spoke to Moses, saying, Go quickly, descend hence, for your people whom you brought out of the land of Egypt have transgressed; + +they have quickly gone out of the way which you commanded; they have made for themselves a calf, and worshipped it, and sacrificed to it, and said, + +These are your gods, O Israel, who brought you up out of the land of Egypt. + +And now let me alone, and I will be very angry with them and consume them, and I will make you a great nation. + +And Moses prayed before the Lord God, and said, Therefore, O Lord, are you very angry with your people, whom you brought out of the land of Egypt with great strength, and with your high arm? + + +Take heed lest at any time the Egyptians speak, saying, With evil intent he brought them out to kill them in the mountains, and to consume them from off the earth; cease from your wrathful anger, and be merciful to the sin of your people, + +remembering Abraam and Isaac and Jacob your servants, to whom you have sworn by yourself, and have spoken to them, saying, I will greatly multiply your seed as the stars of heaven for multitude, and all this land which you spoke of to give to them, so that they shall possess it for ever. + +And the Lord was +32:14 +Gr. +do. + prevailed upon to preserve his people. + +And Moses turned and went down from the mountain, and the two tables of testimony were in his hands, tables of stone written on both their sides: they were written within and without. + +And the tables were the work of God, and the writing the writing of God written on the tables. + +And Joshua having heard the voice of the people crying, says to Moses, There is a noise of war in the camp. + +And +Moses says, It is not the voice of them that begin the battle, nor the voice of them that begin +the cry of defeat, but the voice of them that begin +the banquet of wine do I hear. + +And when he drew near to the camp, he sees the calf and the dances; and Moses being very angry cast the two tables out of his hands, and broke them to pieces under the mountain. + +And having taken the calf which they made, he consumed it with fire, and ground it very small, and scattered it on the water, and made the children of Israel to drink it. + +And Moses said to Aaron, What has this people done to you, that you have brought upon them a great sin? + +And Aaron said to Moses, Be not angry, +my lord, for you know the impetuosity of this people. + +For they say to me, Make us gods, which shall go before us; for as for this man Moses, who brought us out of Egypt, we do not know what is become of him. + +And I said to them, If any one has golden ornaments, take them off; and they gave them me, and I cast them into the fire, and there came out this calf. + +And when Moses saw that the people was scattered, —for Aaron +had scattered them +so as to be a rejoicing to their enemies, — + +then stood Moses at the gate of the camp, and said, Who is on the Lord's side? let him come to me. Then all the sons of Levi came to him. + +And he says to them, Thus says the Lord God of Israel, Put every one his sword on his thigh, and go through and return from gate to gate through the camp, and kill every one his brother, and every one his neighbor, and every one him that is nearest to him. + +And the sons of Levi did as Moses spoke to them, and there fell of the people in that day to the +number of three thousand men. + +And Moses said to them, You⌃ have filled your hands this day to the Lord each one on his son or on his brother, so that blessing should be given to you. + +And it came to pass after the morrow +had begun, that Moses said to the people, You⌃ have sinned a great sin; and now I will go up to God, that I may make atonement for your sin. + +And Moses returned to the Lord and said, I pray, O Lord, this people has sinned a great sin, and they have made for themselves golden gods. + +And now if you will forgive their sin, forgive +it; and if not, blot me out of your book, which you have written. + +And the Lord said to Moses, If any one has sinned against me, I will blot them out of my book. + +And now go, descend, and lead this people into the place of which I spoke to you: behold, my angel shall go before your face; and in the day when I shall visit I will bring upon them their sin. + +And the Lord struck the people for the making the calf, which Aaron made. + +

+ + +

And the Lord said to Moses, Go forward, go up hence, you and your people, whom you brought out of the land of Egypt, into the land which I swore to Abraam, and Isaac, and Jacob, saying, I will give it to your seed. + +And I will send at the same time my angel before your face, and he shall cast out the Amorite and the Chettite, and the Pherezite and Gergesite, and Evite, and Jebusite, and Chananite. + +And I will bring you into a land flowing with milk and honey; for I will not go up with you, because you are a stiff-necked people, lest I consume you by the way. + +And the people having heard this +33:4 +Gr. +evil. + grievous saying, mourned in mourning apparel. + +For the Lord said to the children of Israel, You⌃ are a stiff-necked people; take heed lest I bring on you another plague, and destroy you: now then put off your glorious apparel, and +your ornaments, and I will show you what I will do to you. + +So the sons of Israel took off their ornaments and their array +33:6 +Gr. +from. + at the mount of Choreb. + +And Moses took his tabernacle and pitched it without the camp, at a distance from the camp; and it was called the Tabernacle of Testimony: and it came to pass +that every one that sought the Lord went forth to the tabernacle which was without the camp. + +And whenever Moses went into the tabernacle without the camp, all the people stood every one watching by the doors of his tent; and when Moses departed, they took notice until he entered into the tabernacle. + +And when Moses entered into the tabernacle, the pillar of the cloud descended, and stood at the door of the tabernacle, and +God talked to Moses. + +And all the people saw the pillar of the cloud standing by the door of the tabernacle, and all the people stood and worshipped every one at the door of his tent. + +And the Lord spoke to Moses face to face, as if one should speak to his friend; and he retired into the camp: but his servant Joshua the son of Naue, a young man, departed not forth from the tabernacle. + +And Moses said to the Lord, Behold! you say to me, Lead on this people; but you have not showed me whom you will send with me, but you have said to me, I know you above all, and you have favor with me. + +If then I have found favor in your sight, reveal yourself to me, that I may evidently see you; that I may find favor in your sight, and that I may know that this great nation +is your people. + +And he says, I myself will go before you, and give you rest. + +And he says to him, If you go not up with us yourself, bring me not up hence. + +And how shall it be surely known, that both I and this people have found favor with you, except only if you go with us? So both I and your people shall be glorified beyond all the nations, as many as are upon the earth. + +And the Lord said to Moses, I will also do for you this thing, which you have spoken; for you have found grace before me, and I know you above all. + +And +Moses says, Manifest yourself to me. + +And +God said, I will pass by before you with my glory, and I will call by my name, the Lord, before you; and +33:19 +Rom 9:15 + I will have mercy on whom I will have mercy, and will have pity on whom I will have pity. + +And +God said, You shall not be able to see my face; for no man shall see my face, and live. + +And the Lord said, Behold, +there is a place by me: you shall stand upon the rock; + +and when my glory shall pass by, then I will put you into a hole of the rock; and I will cover you over with my hand, until I shall have passed by. + +And I will remove my hand, and then shall you see my back parts; but my face shall not appear to you. + +

+ + +

And the Lord said to Moses, Hew for yourself two tables of stone, as also the first were, and come up to me to the mountain; and I will write upon the tables the words, which were on the first tables, which you broke. + +And be ready by the morning, and you shall go up to the mount Sina, and shall stand there for me on the top of the mountain. + +And let no one go up with you, nor be seen in all the mountain; and let not the sheep and oxen feed near that mountain. + +And +Moses hewed two tables of stone, as also the first were; and Moses having arisen early, went up to the mount Sina, as the Lord appointed him; and Moses took the two tables of stone. + +And the Lord descended in a cloud, and stood near him there, and called +34:5 +Or, +the name of the Lord, +Hebraism. +Another reading is ἐν ὀνόματι + by the name of the Lord. + +And the Lord passed by before his face, and proclaimed, The Lord God, pitiful and merciful, longsuffering and very compassionate, and true, + +and keeping justice and mercy for thousands, taking away iniquity, and unrighteousness, and sins; and he will not clear the guilty; bringing the iniquity of the fathers upon the children, and to the children's children, to the third and fourth generation. + +And Moses hasted, and bowed to the earth and worshipped; + +and said, If I have found grace before you, let my Lord go with us; for the people is stiff-necked: and you shall take away our sins and our iniquities, and we will be yours. + +And the Lord said to Moses, Behold, I establish a covenant for you in the presence of all your people; I will do glorious things, which have not been done in all the earth, or in any nation; and all the people among whom you are shall see the works of the Lord, that they are wonderful, which I will do for you. + +Do you take heed to all things whatever I command you: behold, I cast out before your face the Amorite and the Chananite and the Pherezite, and the Chettite, and Evite, and Gergesite and Jebusite: + +take heed to yourself, lest at any time you make a covenant with the dwellers on the land, into which you are entering, lest it be to you a stumbling block among you. + +You⌃ shall destroy their altars, and break in pieces their pillars, and you⌃ shall cut down their groves, and the graven images of their gods you⌃ shall burn with fire. + +For you⌃ shall not worship strange gods, for the Lord God, a jealous name, is a jealous God; + +lest at any time you make a covenant with the dwellers on the land, and they go a whoring after their gods, and sacrifice to their gods, and they call you, and you should eat of their feasts, + +and you should take of their daughters to your sons, and you should give of your daughters to their sons; and your daughters should go a whoring after their gods, and your sons should go a whoring after their gods. + +And you shall not make to yourself molten gods. + +And you shall keep the feast of unleavened bread: seven days shall you eat unleavened bread, as I have charged you, at the season in the month of new +corn; for in the month of new +corn you came out from Egypt. + +The males +are mine, everything that opens the womb; every firstborn of +34:19 +Gr. +of a calf. + oxen, and +every firstborn of sheep. + +And the firstborn of an ass you shall redeem with a sheep, and if you will not redeem it you shall pay a price: every firstborn of your sons shall you redeem: you shall not appear before me empty. + +Six days you shall work, but on the seventh day you shall rest: +there shall be rest in seed time and harvest. + +And you shall +34:22 +Gr. +make. + keep to me the feast of weeks, the beginning of wheat harvest; and the feast of ingathering in the middle of the year. + +Three times in the year shall every male of yours appear before the Lord the God of Israel. + +For when I shall have cast out the nations before your face, and shall have enlarged your coasts, no one shall desire your land, whenever you may go up to appear before the Lord your God, three times in the year. + +You shall not +34:25 +Gr. +kill. + offer the blood of my +34:25 +Gr. +incense-offerings. + sacrifices +34:25 +Gr. +upon. + with leaven, neither shall the sacrifices of the feast of the passover +34:25 +Gr. +sleep. + remain till the morning. + +The first fruits of your land shall you put into the house of the Lord your God: you shall not boil a lamb in his mother's milk. + +And the Lord said to Moses, Write these words for yourself, for on these words I have established a covenant with you and with Israel. + +And Moses was there before the Lord forty days, and forty nights; he did not eat bread, and he did not drink water; and he wrote upon the tables these words of the covenant, the ten sayings. + +And when Moses went down from the mountain, +34:29 +Gr. +and. + +there were the two tables in the hands of Moses, —as then he went down from the mountain, Moses knew not that the appearance of the skin of his face was glorified, when +34:29 +Gr. +he. + God spoke to him. + +And Aaron and all the elders of Israel saw Moses, and the appearance of the skin of his face was made glorious, and they feared to approach him. + +And Moses called them, and Aaron and all the rulers of the synagogue turned towards him, and Moses spoke to them. + +And afterwards all the children of Israel came to him, and he commanded them all things, whatever the Lord had commanded him in the mount of Sina. + +And when he ceased speaking to them, he put a veil on his face. + +And whenever Moses went in before the Lord to speak to him, he took off the veil till he went out, and he went forth and spoke to all the children of Israel whatever the Lord commanded him. + +And the children of Israel saw the face of Moses, that it was glorified; and Moses put the veil over his face, till he went in to speak with him. + +

+ + +

And Moses gathered all the congregation of the children of Israel together, and said, These are the words which the Lord has spoken for +you to do them. + +Six days shall you perform works, but on the seventh day +shall be rest—a holy sabbath—a rest for the Lord: every one that does work on it, let him die. + +You⌃ shall not burn a fire in any of your dwellings on the sabbath-day; I +am the Lord. + +And Moses spoke to all the congregation of the children of Israel, saying, This +is the thing which the Lord has appointed you, saying, + +Take of yourselves an offering for the Lord: every one that engages in his heart +35:5 +Gr. +they shall. + shall bring the first fruits to the Lord; gold, silver, brass, + +blue, purple, double scarlet spun, and fine linen spun, and goats' hair, + +and rams' skins dyed red, and skins +dyed blue, and incorruptible wood, + +and sardine stones, and stones for engraving for the +35:8 +Or, +ephod. + shoulder-piece and full-length robe. + +And every man that is wise in heart among you, let him come and work all things whatever the Lord has commanded. + +The tabernacle, and the cords, and the coverings, and the rings, and the bars, and the posts, + +and the ark of the testimony, and its staves, and its propitiatory, and the veil, + +and the curtains of the court, and its posts, + +and the emerald stones, + +and the incense, and the anointing oil, + +and the table and all its furniture, + +and the candlestick for the light and all its furniture, + +and the altar and all its furniture; + +and the holy garments of Aaron the priest, and the garments in which they shall do service; + +and the garments of priesthood for the sons of Aaron and the anointing oil, and the compound incense. + +And all the congregation of the children of Israel went out from Moses. And they brought, they whose heart prompted them, and they to whoever it seemed good in their mind, each and offering: + +and they brought an offering to the Lord for all the works of the tabernacle of witness, and all its services, and for all the robes of the sanctuary. + +And the men, even every one to whom it seemed good in his heart, brought from the women, +even brought seals and ear-rings, and finger-rings, and +35:22 +Or, +chains. + necklaces, and bracelets, every article of gold. + +And all as many as brought ornaments of gold to the Lord, and with whoever fine linen was found; and they brought skins +dyed blue, and rams' skins dyed red. + +And every one that offered an offering +35:24 +Gr. +they brought. + brought silver and brass, the offerings to the Lord; and +they with whom was found incorruptible wood; and they brought +offerings for all the works of the preparation. + +And every woman skilled in her heart to spin with her hands, +35:25 +Gr. +they brought. + brought spun +articles, the blue, and purple, and scarlet and fine linen. + +And all the women to whom it seemed good in their heart in their wisdom, spun the goats' hair. + +And the rulers brought the emerald stones, and the stones for setting in the ephod, and the oracle, + +and the compounds both for the anointing oil, and the composition of the incense. + +And every man and woman whose mind inclined them to come in and do all the works as many as the Lord appointed them to do by Moses—they the children of Israel brought an offering to the Lord. + +And Moses said to the children of Israel, Behold, God has called by name Beseleel the +son of Urias the +son of Or, of the tribe of Juda, + +and has filled him with a divine spirit of wisdom and understanding, and knowledge of all things, + +to labor +35:32 +i. e. +as a master workman. + skillfully in all works of cunning workmanship, to form the gold and the silver and the brass, + +and to work in stone, and to fashion the wood, and to work in every work of wisdom. + +And +God gave improvement in understanding both to him, and to Eliab the +son of Achisamach of the tribe of Dan. + +And +God filled them with wisdom, understanding +and perception, to understand to work all the works of the sanctuary, and to weave the woven and embroidered work with scarlet and fine linen, to do all work of curious workmanship +and embroidery. + +

+ + +

And Beseleel wrought, and Eliab and every one wise in understanding, to whom was given wisdom and knowledge, to understand to do all the works according to the holy offices, according to all things which the Lord appointed. + +And Moses called Beseleel and Eliab, and all that had wisdom, to whom God gave knowledge in +their heart, and all who were freely willing to come forward to the works, to perform them. + +And they received from Moses all the offerings, which the children of Israel brought for all the works of the sanctuary to do them; and they continued to receive the gifts brought, from those who brought them in the morning. + +And there came all the wise men who wrought the works of the sanctuary, each according to his own work, which they wrought. + +And +36:5 +Another reading is εἱπαν, but there is occasionally confusion of number in LXX.; the singular being several times used for the plural. + one said to Moses, The people bring an abundance +too great in proportion to all the works which the Lord has appointed +them to do. + +And Moses commanded, and proclaimed in the camp, saying, Let neither man nor woman any longer labor for the offerings of the sanctuary; and the people were restrained from bringing any more. + +And they had +36:7 +Gr. +works. + materials sufficient for making the furniture, and they left some besides. + +And every wise one among those that wrought made the robes of the holy places, which belong to Aaron the priest, as the Lord commanded Moses. + +And +36:9 +Or, +they. + he made the ephod of gold, and blue, and purple, and spun scarlet, and fine linen twined. + +And the plates were divided, the threads of gold, so as to interweave with the blue and purple, and with the spun scarlet, and the fine linen twined, they made it a woven work; + +shoulder-pieces joined from both sides, a work woven by mutual twisting of the parts into +36:11 +Gr. +itself. + one another. + +They made it of the same material according to the making of it, of gold, and blue, and purple, and spun scarlet, and fine linen twined, as the Lord commanded Moses; + +and they made the two emerald stones clasped together and set in gold, graven and cut after the cutting of a seal with the names of the children of Israel; + +and he put them on the shoulder-pieces of the ephod, +as stones of memorial of the children of Israel, as the Lord appointed Moses. + +And they made the oracle, a work woven with embroidery, according to the work of the ephod, of gold, and blue, and purple, and spun scarlet, and fine linen twined. + +They made the oracle square +and double, the length of a span, and the breadth of a span, —double. + +And there was interwoven with it a woven work of four rows of stones, a series of stones, the first row, a sardius and topaz and emerald; + +and the second row, a carbuncle and sapphire and jasper; + +and the third row, a ligure and agate and amethyst; + +and the fourth row a chrysolite and beryl and onyx set round about with gold, and fastened with gold. + +And the stones were twelve according to the names of the children of Israel, graven according to their names +36:21 +Gr. +for seals. + like seals, each according to his own name for the twelve tribes. + +And they made on the oracle turned wreaths, wreathen work, of pure gold, + +and they made two golden circlets and two golden rings. + +And they put the two golden rings on both the +upper corners of the oracle; + +and they put the golden wreaths on the rings on both sides of the oracle, and the two wreaths into the two couplings. + +And they put them on the two circlets, and they put them on the shoulders of the ephod opposite +each other in front. + +And they made two golden rings, and put them on the two projections on the top of the oracle, and on the top of the hinder part of the ephod within. + +And they made two golden rings, and put them on both the shoulders of the ephod under it, in front by the coupling above the connexion of the ephod. + +And he fastened the oracle by the rings that were on it to the rings of the ephod, which were fastened with +a string of blue, joined together with the woven work of the ephod; that the oracle should not be loosed from the ephod, as the Lord commanded Moses. + +And they made the tunic under the ephod, woven work, all of blue. + +And the opening of the tunic in the midst woven closely together, the opening having a fringe round about, that it might not be torn. + +And they made on the border of the tunic below pomegranates as of a flowering pomegranate tree, of blue, and purple, and spun scarlet, and fine linen twined. + +And they made golden bells, and put the bells on the border of the tunic round about between the pomegranates: + +a golden bell and a pomegranate on the border of the tunic round about, for the ministration, as the Lord commanded Moses. + +And they made vestments of fine linen, a woven work, for Aaron and his sons, + +and the tires of fine linen, and the mitre of fine linen, and the drawers of fine linen twined; + +and their girdles of fine linen, and blue, and purple, and scarlet spun, the work of an embroiderer, according as the Lord commanded Moses. + +And they made the golden plate, a dedicated thing of the sanctuary, of pure gold; + +and he wrote upon it graven letters +as of a seal, Holiness to the Lord. + +And they put it on the border of blue, so that it should be on the mitre above, as the Lord commanded Moses. + +

+ + +

And they made ten curtains for the tabernacle; + +of eight and twenty cubits the length of one curtain: the same +measure was to all, and the breadth of one curtain was of four cubits. + +And they made the veil of blue, and purple, and spun scarlet, and fine linen twined, the woven work with cherubs. + +And they put it on four posts of incorruptible +wood overlaid with gold; and their capitals were gold, and their four sockets were silver. + +And they made the veil of the door of the tabernacle of witness of blue, and purple, and spun scarlet, and fine linen twined, woven work with cherubs, + +and their posts five, and the rings; and they gilded their capitals and their clasps with gold, and they had five sockets of brass. + +And they made the court toward the south; the curtains of the court of fine linen twined, one hundred +cubits +37:7 +Or, +on each side. + every way, + +and their posts twenty, and their sockets twenty; + +and on the north side one hundred every way, and on the south side one hundred every way, and their posts twenty and their sockets twenty. + +And on the west side curtains of fifty cubits, their posts ten and their sockets ten. + +And on the east side curtains of fifty cubits of fifteen cubits behind, + +and their pillars three, and their sockets three. + +And at the second back on this side and on that by the gate of the court, curtains of fifteen cubits, their pillars three and their sockets three; + +all the curtains of the tabernacle of fine linen twined. + +And the sockets of their pillars of brass, and their hooks of silver, and their capitals overlaid with silver, and all the posts of the court overlaid with silver: + +and the veil of the gate of the court, the work of an embroiderer of blue, and purple, and spun scarlet, and fine linen twined; the length of twenty cubits, and the height and the breadth of five cubits, made equal to the curtains of the court; + +and their pillars four, and their sockets four of brass, and their hooks of silver, and their capitals overlaid with silver. + +And all the pins of the court round about of brass, and they +were overlaid with silver. + +And this was the +37:19 +Or, +appointment. + construction of the tabernacle of witness, accordingly as it was appointed to Moses; so that the public service should belong to the Levites, through Ithamar the son of Aaron the priest. + +And Beseleel the son of Urias of the tribe of Juda, did as the Lord commanded Moses. + +And Eliab the son of Achisamach of the tribe of Dan +was there, who was chief artificer in the woven works and needle-works and embroideries, +37:21 +Gr. +to weave. + in weaving with the scarlet and fine linen. + +

+ + +

And Beseleel made the ark, + +and overlaid it with pure gold within and without; + +and he cast for it four golden rings, two on the one side, and two on the other, + +wide +enough for the staves, so that men should bear +38:4 +Gr. +it. + the ark with them. + +And he made the propitiatory over the ark of pure gold, + +and the two cherubs of gold; + +one cherub on the one end of the propitiatory, and another cherub on the other end of the propitiatory, + +overshadowing the propitiatory with their wings. + +And he made the +38:9 +i. e. +table of show bread. + set table of pure gold, + +and cast for it four rings: two on the one side and two on the other side, broad, so that +men should lift it with the staves in them. +38:10 +i. e. +the rings. + + +And he made the staves of the ark and of the table, and gilded them with gold. + +And he made the furniture of the table, both the dishes, and the censers, and the cups, and the bowls with which he +38:12 +Gr. +will. + should offer drink-offerings, of gold. + +And he made the candlestick which gives light, of gold; + +the stem solid, and the branches from both its sides; + +and blossoms proceeding from its branches, three on this side, and three on the other, made equal to each other. + +And +as to their lamps, which are on the ends, +38:16 +Gr. +knops like walnuts. + knops +proceeded from them; and sockets proceeding from them, that the lamps might be upon them; and the seventh socket, on the top of the candlestick, on the summit above, entirely of solid gold. + +And on +38:17 +Gr. +it. + the candlestick seven golden lamps, and its snuffers gold, and its +38:17 +Or, +snuff-dishes; but the word seems to mean the instruments with which oil was poured into the lamp. + funnels gold. + +He overlaid the posts +with silver, and cast for +38:18 +Gr. +the post. + each post golden rings, and gilded the bars with gold; and he gilded the posts of the veil with gold, and made the hooks of gold. + +He made also the rings of the tabernacle of gold; and the rings of the court, and the rings for drawing out the veil above of brass. + +He cast the silver capitals of the tabernacle, and the brazen capitals of the door of the tabernacle, and the gate of the court; and he made silver hooks for the posts, he overlaid them with silver on the posts. + +He made the pins of the tabernacle and the pins of the court of brass. + +He made the brazen altar of the brazen censers, which belonged to the men engaged in sedition with the gathering of Core. + +He made all the vessels of the altar and its +38:23 +Or, +firepan. + grate, and its base, and its bowls, and the brazen flesh hooks. + +He made an appendage for the altar of network under the grate, beneath it as far as the middle of it; and he fastened to it four brazen rings on the four parts of the appendage of the altar, wide +enough for the bars, so as to bear the altar with them. + +He made the holy anointing oil and the composition of the incense, the pure work of the perfumer. + +He made the brazen laver, and the brazen base of it of the mirrors of the women that fasted, who fasted by the doors of the tabernacle of witness, in the day in which he set it up. + +And he made the laver, that +38:27 +Gr. +of it. + at it Moses and Aaron and his sons might wash their hands and their feet: when they went into the tabernacle of witness, or whenever they should advance to the altar to do service, they washed +38:27 +Gr. +of it. + at it, as the Lord commanded Moses. + +

+ + +

All the gold that was employed for the works according to all the fabrication of the holy things, was of the gold of the +39:1 +Gr. +first fruits. + offerings, twenty-nine talents, and +39:1 +Alex. +730 shekels. + seven hundred and twenty shekels according to the holy shekel. + +And the offering of silver from the men that were numbered of the congregation one hundred talents, and a thousand seven hundred and seventy-five shekels, one drachm apiece, even the half shekel, according to the holy shekel. + +Every one that passed the survey from twenty years old and upwards to the +number of six hundred thousand, and three thousand five hundred and fifty. + +And the hundred talents of silver went to the casting of the hundred capitals of the tabernacle, and to the capitals of the veil; + +one hundred capitals to the hundred talents, a talent to a chapiter. + +And the thousand seven hundred and seventy-five shekels he formed into hooks for the pillars, and he gilt their capitals and adorned them. + +And the brass of the offering +was +39:7 +Alex. +470 talents. + seventy talents, and +39:7 +Alex. +2400 shekels. + a thousand five hundred shekels; + +and they made of it the bases of the door of the tabernacle of witness, + +and the bases of the court round about, and the bases of the gate of the court, and the pins of the tabernacle, and the pins of the court round about; + +and the brazen appendage of the altar, and all the vessels of the altar, and all the instruments of the tabernacle of witness. + +And the children of Israel did as the Lord commanded Moses, so did they. + +And of the gold that remained of the offering they made vessels to minister with before the Lord. + +And the blue that was left, and the purple, and the scarlet they made +into garments of ministry for Aaron, so that he should minister with them in the sanctuary; + +and they brought the garments to Moses, and the tabernacle, and its furniture, its bases and its bars and the posts; + +and the ark of the covenant, and its bearers, and the altar and all its furniture. + +And they made the anointing oil, and the incense of composition, and the pure candlestick, + +and its lamps, lamps for burning, and oil for the light, + +and the table of show bread, and all its furniture, and the show bread upon it, + +and the garments of the sanctuary which belong to Aaron, and the garments of his sons, for the priestly ministry; + +and the curtains of the court, and the posts, and the veil of the door of the tabernacle, and the gate of the court, + +and all the vessels of the tabernacle and all its instruments: and the skins, even rams' skins dyed red, and the blue coverings, and the coverings of the other things, and the pins, and all the instruments for the works of the tabernacle of witness. + +Whatsoever things the Lord appointed Moses, so did the children of Israel make all the +39:22 +Or, +store, posession, etc.; as in Gen. 43. + furniture. + +And Moses saw all the works; and they had done them all as the Lord commanded Moses, so had they made them; and Moses blessed them. + +

+ + +

And the Lord spoke to Moses, saying, + +On the first day of the first month, at the new moon, you shall set up the tabernacle of witness, + +and you shall place +in it the ark of the testimony, and shall cover the ark with the veil, + +and you shall bring in the table and shall set forth +40:4 +Setting forth of it. + that which is to be set forth on it; and you shall bring in the candlestick and place its lamps on it. + +And you shall place the golden altar, to burn incense before the ark; and you shall put a covering of a veil on the door of the tabernacle of witness. + +And you shall put the altar of burnt offerings by the doors of the tabernacle of witness, and you shall set up the tabernacle round about, and you shall hallow all that belongs to it round about. + +And you shall take the anointing oil, and shall anoint the tabernacle, and all things in it; and shall sanctify it, and all its furniture, and it shall be holy. + +And you shall anoint the altar of burnt offerings, and all its furniture; and you shall hallow the altar, and the altar shall be most holy. + +And you shall bring Aaron and his sons to the doors of the tabernacle of witness, and you shall wash them with water. + +And you shall put on Aaron the holy garments, and you shall anoint him, and you shall sanctify him, and he shall minister to me as priest. + +And you shall bring up his sons, and shall put garments on them. + +And you shall anoint them as you did anoint their father, and they shall minister to me as priests; and it shall be that they shall have an +40:15 +See 1 John 2. 27; The anointing remains etc. + everlasting anointing of priesthood, throughout their generations. + +And Moses did all things whatever the Lord commanded him, so did he. + +And it came to pass in the first month, in the second year after their going forth out of Egypt, at the new moon, that the tabernacle was set up. + +And Moses set up the tabernacle, and put on the capitals, and put the bars into their places, and set up the posts. + +And he stretched out the curtains over the tabernacle, and put the veil of the tabernacle on it above as the Lord commanded Moses. + +And he took the testimonies, and put them into the ark; and he put the staves +40:20 +Gr. +under. + by the sides of the ark. + +And he brought the ark into the tabernacle, and put on +it the covering of the veil, and covered the ark of the testimony, as the Lord commanded Moses. + +And he put the table in the tabernacle of witness, on the north side without the veil of the tabernacle. + +And he put on it the show bread before the Lord, as the Lord commanded Moses. + +And he put the candlestick into the tabernacle of witness, on the side of the tabernacle toward the south. + +And he put on it its lamps before the Lord, as the Lord had commanded Moses. + +And he put the golden altar in the tabernacle of witness before the veil; + +and he burnt on it incense of composition, as the Lord commanded Moses. + +And he put the altar of the burnt offerings by the doors of the tabernacle. + +And he set up the court round about the tabernacle and the altar; and Moses accomplished all the works. + +And the cloud covered the tabernacle of witness, and the tabernacle was filled with the glory of the Lord. + +And Moses was not able to enter into the tabernacle of testimony, because the cloud overshadowed it, and the tabernacle was filled with the glory of the Lord. + +And when the cloud went up from the tabernacle, the children of Israel +40:36 +Gr. +harnessed again. + prepared to depart with their baggage. + +And if the cloud went not up, they did not prepare to depart, till the day when the cloud went up. + +For a cloud was on the tabernacle by day, and fire was on it by night before all Israel, in all their +40:38 +Or, +preparations etc. + journeyings. + +

+
+ +Leviticus +LEVITICUS +Leviticus +LEV +

LEVITICUS +

+ + +

And the Lord called Moses again and spoke to him out of the tabernacle of witness, saying, Speak to the children of Israel, and you shall say to them, + +If +any man of you shall bring gifts to the Lord, you⌃ shall bring your gifts of the cattle and of the oxen and of the sheep. + +If his gift be a whole burnt offering, he shall bring an unblemished male of the herd to the door of the tabernacle of witness, he shall bring it as acceptable before the Lord. + +And he shall lay his hand on the head of the burnt offering as a thing acceptable for him, to make atonement for him. + +And they shall kill the calf before the Lord; and the sons of Aaron the priests shall bring the blood, and they shall pour the blood round about on the altar, which +is at the doors of the tabernacle of witness. + +And having flayed the whole burnt offering, they shall divide it by its limbs. + +And the sons of Aaron the priests shall put fire on the altar, and shall pile wood on the fire. + +And the sons of Aaron the priests shall pile up the divided parts, and the head, and the fat on the wood on the fire, +the wood which is on the altar. + +And the entrails and the feet they shall wash in water, and the priests shall put all on the altar: it is a burnt offering, a sacrifice, a smell of sweet savor to the Lord. + +And if his gift +be of the sheep to the Lord, or of the lambs, or of the kids for whole burnt offerings, he shall bring it a male without blemish. + +And he shall lay his hand on its head; and they shall kill it by the side of the altar, toward the north before the Lord, and the sons of Aaron the priests shall pour its blood on the altar round about. + +And they shall divide it by its limbs, and its head and its fat, and the priests shall pile them up on the wood which is on the fire, on the altar. + +And they shall wash the entrails and the feet with water, and the priest shall bring all the +parts and put them on the altar: it is a burnt offering, a sacrifice, a smell of sweet savor to the Lord. + +And if he bring his gift, a burnt offering to the Lord, of birds, then shall he bring his gift of doves or pigeons. + +And the priest shall bring it to the altar, and shall wring off its head; and the priest shall put it on the altar, and shall wring out the blood at the bottom of the altar. + +And he shall take away the crop with the feathers, and shall cast it forth by the altar toward the east to the place of the ashes. + +And he shall break it off from the wings and shall not separate it, and the priest shall put it on the altar on the wood which is on the fire: it is a burnt offering, a sacrifice, a sweet smelling savor to the Lord. + +

+ + +

And if a soul bring a gift, a sacrifice to the Lord, his gift shall be fine flour; and he shall pour oil upon it, and shall put frankincense on it: it is a sacrifice. + +And he shall bring it to the priests the sons of Aaron: and having taken from it a handful of the fine flour with the oil, and all its frankincense, then the priest shall put the memorial of it on the altar: +it is a sacrifice, an odour of sweet savor to the Lord. + +And the remainder of the sacrifice shall be for Aaron and his sons, a most holy portion from the sacrifices of the Lord. + +And if he bring as a gift a sacrifice baked from the oven, a gift to the Lord of fine flour, +he shall bring unleavened bread kneaded with oil, and unleavened cakes anointed with oil. + +And if your gift +be a sacrifice from a pan, it is fine flour mingled with oil, unleavened +offerings. + +And you shall break them into fragments and pour oil upon them: it is a sacrifice to the Lord. + +And if your gift be a sacrifice from the hearth, it shall be made of fine flour with oil. + +And he shall offer the sacrifice which he shall make of these to the Lord, and shall bring it to the priest. + +And the priest shall approach the altar, and shall take away from the sacrifice a memorial of it, and the priest shall place it on the altar: a burnt offering, a smell of sweet savor to the Lord. + +And that which is left of the sacrifice +shall be for Aaron and his sons, most holy from the burnt offerings of the Lord. + +You⌃ shall not leaven any sacrifice which you⌃ shall bring to the Lord; for +as to any leaven, or any honey, you⌃ shall not bring of it to offer a gift to the Lord. + +You⌃ shall bring them in the way of fruits to the Lord, but they shall not be offered on the altar for a sweet smelling savor to the Lord. + +And every gift of your sacrifice shall be seasoned with salt; omit not the salt of the covenant of the Lord from your sacrifices: on every gift of yours you⌃ shall offer salt to the Lord your God. + +And if you would offer a sacrifice of first fruits to the Lord, +it shall be new grains ground +and roasted for the Lord; so shall you bring the sacrifice of the first fruits. + +And you shall pour oil upon it, and shall put frankincense on it: it is a sacrifice. + +And the priest shall offer the memorial of it +taken from the grains with the oil, and all its frankincense: it is a burnt offering to the Lord. + +

+ + +

And if his gift to the Lord be a peace-offering, if he should bring it of the oxen, whether it be male or whether it be female, he shall bring it unblemished before the Lord. + +And he shall lay his hands on the head of the gift, and shall kill it before the Lord, by the doors of the tabernacle of witness. And the priests the sons of Aaron shall pour the blood on the altar of burnt offerings round about. + +And they shall bring of the peace-offering a burnt sacrifice to the Lord, the fat covering the belly, and all the fat on the belly. + +And the two kidneys and the fat that is upon them; he shall take away that which is on the thighs, and the caul above the liver together with the kidneys. + +And the priests the sons of Aaron shall offer them on the altar on the burnt offering, on the wood which is on the fire upon the altar: +it is a burnt offering, a smell of sweet savor to the Lord. + +And if his gift be of the sheep, a peace-offering to the Lord, male or female, he shall bring it unblemished. + +If he bring a lamb for his gift, he shall bring it before the Lord. + +And he shall lay his hands on the head of his offering, and shall kill it by the doors of the tabernacle of witness; and the priests the sons of Aaron shall pour out the blood on the altar round about. + +And he shall bring of the peace-offering a burnt sacrifice to the Lord: the fat and the hinder part unblemished he shall take away with the loins, and having taken away all the fat that covers the belly, and all the fat that is on the belly, + +and both the kidneys and the fat that is upon them, +and that which is on the thighs, and the caul which is on the liver with the kidneys, + +the priest shall offer these on the altar: +it is a sacrifice of sweet savor, a burnt offering to the Lord. + +And if his offering be of the goats, then shall he bring it before the Lord. + +And he shall lay his hands on its head; and they shall kill it before the Lord by the doors of the tabernacle of witness; and the priests the sons of Aaron shall pour out the blood on the altar round about. + +And he shall offer of it a burnt offering to the Lord, +even the fat that covers the belly, and all the fat that is on the belly. + +And both the kidneys, and all the fat that is upon them, that which is upon the thighs, and the caul of the liver with the kidneys, shall he take away. + +And the priest shall offer it upon the altar: +it is a burnt offering, a smell of sweet savor to the Lord. All the fat +belongs to the Lord. + + +It is a perpetual statute throughout your generations, in all your habitations; you⌃ shall eat no fat and no blood. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, saying, If a soul shall sin unwillingly before the Lord, in any of the commandments of the Lord concerning things which he ought not to do, and shall do some of them; + +if the anointed priest sin so as to cause the people to sin, then shall he bring for his sin, which he has sinned, an unblemished calf of the herd to the Lord for his sin. + +And he shall bring the calf to the door of the tabernacle of witness before the Lord, and he shall put his hand on the head of the calf before the Lord, and shall kill the calf in the presence of the Lord. + +And the anointed priest who has been consecrated having received of the blood of the calf, shall then bring it into the tabernacle of witness. + +And the priest shall dip his finger into the blood, and sprinkle of the blood seven times before the Lord, over against the holy veil. + +And the priest shall put of the blood of the calf on the horns of the altar of the compound incense which is before the Lord, which is in the tabernacle of witness; and all the blood of the calf shall he pour out by the foot of the altar of whole burnt offerings, which is by the doors of the tabernacle of witness. + +and all the fat of the calf of the sin-offering shall he take off from it; the fat that covers the inwards, and all the fat that is on the inwards, + +and the two kidneys, and the fat that is upon them, which is on the thighs, and the caul that is on the liver with the kidneys, them shall he take away, + +as he takes it away from the calf of the sacrifice of peace-offering, so shall the priest offer it on the altar of burnt offering. + +And +they shall take the skin of the calf, and all his flesh with the head and the extremities and the belly and the dung, + +and they shall carry out the whole calf out of the camp into a clean place, where they pour out the ashes, and they shall consume it there on wood with fire: it shall be burnt on the ashes poured out. + +And if the whole congregation of Israel trespass ignorantly, and a thing should escape the notice of the congregation, and they should do one thing forbidden of any of the commands of the Lord, which ought not to be done, and should transgress: + +and the sin wherein they have sinned should become known to them, then shall the congregation bring an unblemished calf of the herd for a sin-offering, and they shall bring it to the doors of the tabernacle of witness. + +And the elders of the congregation shall lay their hands on the head of the calf before the Lord, and they shall kill the calf before the Lord. + +And the anointed priest shall bring in of the blood of the calf into the tabernacle of witness. + +And the priest shall dip his finger into some of the blood of the calf, and shall sprinkle it seven times before the Lord, in front of the veil of the sanctuary. + +And the priest shall put some of the blood on the horns of the altar of the incense of composition, which is before the Lord, which is in the tabernacle of witness; and he shall pour out all the blood at the bottom of the altar of whole burnt offerings, which is by the door of the tabernacle of witness. + +And he shall take away all the fat from it, and shall offer it up on the altar. + +And he shall do to the calf as he did to the calf of the sin-offering, so shall it be done; and the priest shall make atonement for them, and the trespass shall be forgiven them. + +And they shall carry forth the calf whole without the camp, and they shall burn the calf as they burnt the former calf: it is the sin-offering of the congregation. + +And if a ruler sin, and break one of all the commands of the Lord his God, +doing the thing which ought not to be done, unwillingly, and shall sin and trespass, + +and his trespass wherein he has sinned, be known to him, then shall he offer for his gift a kid of the goats, a male without blemish. + +And he shall lay his hand on the head of the kid, and they shall kill it in the place where they kill the +victims for whole burnt offerings before the Lord; it is a sin-offering. + +And the priest shall put some of the blood of the sin-offering with his finger on the horns of the altar of whole burnt offering; and he shall pour out all its blood by the bottom of the altar of whole burnt offerings. + +And he shall offer up all his fat on the altar, as the fat of the sacrifice of peace-offering; and the priest shall make atonement for him concerning his sin, and it shall be forgiven him. + +And if a soul of the people of the land should sin unwillingly, in doing a thing +contrary to any of the commandments of the Lord, which ought not to be done, and shall transgress, + +and his sin should be known to him, wherein he has sinned, then shall he bring a kid of the goats, a female without blemish shall he bring for his sin, which he has sinned. + +And he shall lay his hand on the head of his sin-offering, and they shall kill the kid of the sin-offering in the place where they kill the +victims for whole burnt offerings. + +And the priest shall take of its blood with his finger, and shall put it on the horns of the altar of whole burnt offerings; and all its blood he shall pour forth by the foot of the altar. + +And he shall take away all the fat, as the fat is taken away from the sacrifice of peace-offering, and the priest shall offer it on the altar for a smell of sweet savor to the Lord; and the priest shall make atonement for him, and +his sin shall be forgiven him. + +And if he should offer a lamb for his sin-offering, he shall offer it a female without blemish. + +And he shall lay his hand on the head of the sin-offerings, and they shall kill it in the place where they kill the +victims for whole burnt offerings. + +And the priest shall take of the blood of the sin-offering with his finger, and shall put it on the horns of the altar of whole burnt offerings, and he shall pour out all its blood by the bottom of the altar of whole burnt offering. + +And he shall take away all his fat, as the fat of the lamb of the sacrifice of peace-offering is taken away, and the priest shall put it on the altar for a whole burnt offering to the Lord; and the priest shall make atonement for him for the sin which he sinned, and it shall be forgiven him. + +

+ + +

And if a soul sin, and hear the voice of swearing, and he is a witness or has seen or been conscious, if he do not report it, he shall bear his iniquity. + +That soul which shall touch any unclean thing, or carcass, or +that which is unclean being taken of beasts, or the dead bodies of abominable +reptiles which are unclean, or carcasses of unclean cattle, + +or should touch the uncleanness of a man, or whatever kind, which he may touch and be defiled by, and it should have escaped him, but afterwards he should know, —then he shall have transgressed. + +That unrighteous soul, which determines with his lips to do evil or to do good according to whatever a man may determine with an oath, and it shall have escaped his notice, and he shall +afterwards know +it, and +so he should sin in some one of these things: + +—then shall he declare his sin in the things wherein he has sinned by that sin. + +And he shall bring for his transgressions against the Lord, for his sin which he has sinned, a ewe lamb of the flock, or a kid of the goats, for a sin-offering; and the priest shall make an atonement for him for his sin which he has sinned, and his sin shall be forgiven him. + +And if he can’t afford a sheep, he shall bring for his sin which he has sinned, two turtledoves or two young pigeons to the Lord; one for a sin-offering, and the other for a burnt offering. + +And he shall bring them to the priest, and the priest shall bring the sin-offering first; and the priest shall pinch off the head from the neck, and shall not divide the body. + +And he shall sprinkle of the blood of the sin-offering on the side of the altar, but the rest of the blood he shall drop at the foot of the altar, for it is a sin-offering. + +And he shall make the second a whole burnt offering, as it is fit; and the priest shall make atonement for his sin which he has sinned, and it shall be forgiven him. + +And if he can’t afford a pair of turtledoves, or two young pigeons, then shall he bring as his gift for his sin, the tenth part of an ephah of fine flour for a sin-offering; he shall not pour oil upon it, nor shall he put frankincense upon it, because it is a sin-offering. + +And he shall bring it to the priest; and the priest having taken a handful of it, shall lay the memorial of it on the altar of whole burnt offerings to the Lord; it is a sin-offering. + +And the priest shall make atonement for him for his sin, which he has sinned in one of these things, and it shall be forgiven him; and that which is left shall be the priest's, as an offering of fine flour. + +And the Lord spoke to Moses, saying, + +The soul which shall be really unconscious, and shall sin unwillingly in any of the holy things of the Lord, shall even bring to the Lord for his transgression, a ram of the flock without blemish, valued according to shekels of silver according to the shekel of the sanctuary, for his +transgression wherein he transgressed. + +And he shall make compensation for that wherein he has sinned in the holy things; and he shall add the fifth part to it, and give it to the priest; and the priest shall make atonement for him with the ram of transgression, and +his sin shall be forgiven him. + +And the soul which shall sin, and do one thing +against any of the commandments of the Lord, which it is not right to do, and has not known it, and shall have transgressed, and shall have contracted guilt, + +he shall even bring a ram without blemish from the flock, +valued at a price of silver for his transgression to the priest; and the priest shall make atonement for his trespass of ignorance, wherein he ignorantly trespassed, and he knew it not; and it shall be forgiven him. + +For he has surely been guilty of transgression before the Lord. + +

+ + +

And the Lord spoke to Moses, saying, + +The soul which shall have sinned, and willfully overlooked the commandments of the Lord, and shall have dealt falsely in the affairs of his neighbor in the matter of a deposit, or concerning fellowship, or concerning plunder, or has in anything wronged his neighbor, + +or has found that which was lost, and shall have lied concerning it, and shall have sworn unjustly concerning +any one of all the things, whatever a man may do, so as to sin hereby; + +it shall come to pass, whenever he shall have sinned, and transgressed, that he shall restore the plunder which he has seized, or +redress the injury which he has committed, or restore the deposit which was entrusted to him, or the lost article which he has found of any kind, about which he swore unjustly, he shall even restore it in full; and he shall add to it a fifth part besides; he shall restore it to him whose it is in the day in which he happens to be convicted. + +And he shall bring to the Lord for his trespass, a ram of the flock, without blemish, of value to the amount of the thing in which he trespassed. + +And the priest shall make atonement for him before the Lord, and he shall be forgiven for any one of all the things which he did and trespassed in it. + +And the Lord spoke to Moses, saying, + +Charge Aaron and his sons, saying, + +This +is the law of whole burnt offering; this is the whole burnt offering in its burning on the altar all the night till the morning; and the fire of the altar shall burn on it, it shall not be put out. + +And the priest shall put on the linen tunic, and he shall put the linen drawers on his body; and shall take away that which has been thoroughly burnt, which the fire shall have consumed, even the whole burnt offering from the altar, and he shall put it near the altar. + +And he shall put off his robe, and put on another robe, and he shall take forth the offering that has been burnt without the camp into a clean place. + +And the fire on the altar shall be kept burning on it, and shall not be extinguished; and the priest shall burn on it wood every morning, and shall heap on it the whole burnt offering, and shall lay on it the fat of the peace-offering. + +And the fire shall always burn on the altar; it shall not be extinguished. + +This is the law of the sacrifice, which the sons of Aaron shall bring near before the Lord, before the altar. + +And he shall take from it a handful of the fine flour of the sacrifice with its oil, and with all its frankincense, which are upon the sacrifice; and he shall offer up on the altar a burnt offering as a sweet smelling savor, a memorial of it to the Lord. + +And Aaron and his sons shall eat that which is left of it: it shall be eaten without leaven in a holy place, they shall eat it in the court of the tabernacle of witness. + +It shall not be baked with leaven. I have given it as a portion to them of the burnt offerings of the Lord: it is most holy, as the offering for sin, and as the offering for trespass. + +Every male of the priests shall eat it: it is a perpetual ordinance throughout your generations of the burnt offerings of the Lord; whoever shall touch them shall be hallowed. + +And the Lord spoke to Moses, saying, + +This is the gift of Aaron and of his sons, which they shall offer to the Lord in the day in which you shall anoint him; the tenth of an ephah of fine flour for a sacrifice continually, the half of it in the morning, and the half of it in the evening. + +It shall be made with oil in a frying-pan; he shall offer it kneaded +and in rolls, an offering of fragments, an offering of a sweet savor to the Lord. + +The anointed priest who is in his place, +one of his sons, shall offer it: it is a perpetual statute, it shall all be consumed. + +And every sacrifice of a priest shall be thoroughly burnt, and shall not be eaten. + +And the Lord spoke to Moses, saying, + +Speak to Aaron and to his sons, saying, This is the law of the sin-offering; —in the place where they kill the whole burnt offering, they shall kill the sin-offerings before the Lord: they are most holy. + +The priest that offers it shall eat it: in a holy place it shall be eaten, in the court of the tabernacle of witness. + +Every one that touches the flesh of it shall be holy, and on whoever’s garment any of its blood shall have been sprinkled, whoever shall have it sprinkled, shall be washed in the holy place. + +And the earthen vessel, in whichever it shall have been sodden, shall be broken; and if it shall have been sodden in a brazen vessel, he shall scour it and wash it with water. + +Every male among the priests shall eat it: it is most holy to the Lord. + +And no offerings for sin, of whose blood there shall be brought any into the tabernacle of witness to make atonement in the holy place, shall be eaten: they shall be burned with fire. + +And this +is the law of the ram for the trespass-offering; it is most holy. + +In the place where they kill the whole burnt offering, they shall kill the ram of the trespass-offering before the Lord, and he shall pour out the blood at the bottom of the altar round about. + +And he shall offer all the fat from it; and the loins, and all the fat that covers the inwards, and all the fat that is upon the inwards, + +and the two kidneys, and the fat that is upon them, that which is upon the thighs, and the caul upon the liver with the kidney, he shall take them away. + +And the priest shall offer them on the altar a burnt offering to the Lord; it is for trespass. + +Every male of the priest shall eat them, in the holy place they shall eat them: they are most holy. + +As the sin-offering, so also +is the trespass-offering. There is one law of them; the priest who shall make atonement with it, his it shall be. + +And +as for the priest who offers a man's whole burnt offering, the skin of the whole burnt offering which he offers, shall be his. + +And every sacrifice which shall be prepared in the oven, and every one which shall be prepared on the hearth, or on a frying-pan, it is the property of the priest that offers it; it shall be his. + +And every sacrifice made up with oil, or not made up +with oil, shall belong to the sons of Aaron, an equal portion to each. + +

+ + +

This +is the law of the sacrifice of peace-offering, which they shall bring to the Lord. + +If a man should offer it for praise, then shall he bring, for the sacrifice of praise, loaves of fine flour made up with oil, and unleavened cakes anointed with oil, and fine flour kneaded with oil. + +With leavened bread he shall offer his gifts, with the peace-offering of praise. + +And he shall bring one of all his gifts, a separate offering to the Lord: it shall belong to the priest who pours forth the blood of the peace-offering. + +And the flesh of the sacrifice of the peace-offering of praise shall be his, and it shall be eaten in the day in which it is offered: they shall not leave of it till the morning. + +And if it be a vow, or he offer his gift of his own will, on whatever day he shall offer his sacrifice, it shall be eaten, and on the morrow. + +And that which is left of the flesh of the sacrifice till the third day, shall be consumed with fire. + +And if he do at all eat of the flesh on the third day, it shall not be accepted for him that offers: it shall not be reckoned to him, it is pollution; and whatever soul shall eat of it, shall bear his iniquity. + +And whatever flesh shall have touched any unclean thing, it shall not be eaten, it shall be consumed with fire; every one that is clean shall eat the flesh. + +And whatever soul shall eat of the flesh of the sacrifice of the peace-offering which is the Lord's, and his uncleanness be upon him, that soul shall perish from his people. + +And whatever soul shall touch any unclean thing, either of the uncleanness of a man, or of unclean quadrupeds, or any unclean abominable thing, and shall eat of the flesh of the sacrifice of the peace-offering, which is the Lord's, that soul shall perish from his people. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, saying, You⌃ shall eat no fat of oxen or sheep or goats. + +And the fat of such animals as have died of themselves, or have been seized of beasts, may be employed for any work; but it shall not be eaten for food. + +Every one that eats fat off the beasts, from which he will bring a burnt offering to the Lord—that soul shall perish from his people. + +You⌃ shall eat no blood in all your habitations, either of beasts or of birds. + +Every soul that shall eat blood, that soul shall perish from his people. + +And the Lord spoke to Moses, saying, + +You shall also speak to the children of Israel, saying, He that offers a sacrifice of peace-offering, shall bring his gift to the Lord also from the sacrifice of peace-offering. + +His hands shall bring the burnt offerings to the Lord; the fat which is on the breast and the lobe of the liver, he shall bring them, so as to set them for a gift before the Lord. + +And the priest shall offer the fat upon the altar, and the breast shall be Aaron's and his sons, + +and you⌃ shall give the right shoulder for a choice piece to the priest of your sacrifices of peace-offering. + +He that offers the blood of the peace-offering, and the fat, of the sons of Aaron, his shall be the right shoulder for a portion. + +For I have taken the wave-breast and shoulder of separation from the children of Israel from the sacrifices of your peace-offerings, and I have given them to Aaron the priest and his sons, a perpetual ordinance +due from the children of Israel. + +This is the anointing of Aaron, and the anointing of his sons, +their portion of the burnt offerings of the Lord, in the day in which he brought them forward to minister as priests to the Lord; + +as the Lord commanded to give to them in the day in which he anointed them of the sons of Israel, a perpetual statute through their generations. + +This +is the law of the whole burnt offerings, and of sacrifice, and of sin-offering, and of offering for transgression, and of the sacrifice of consecration, and of the sacrifice of peace-offering; + +as the Lord commanded Moses in the mount Sina, in the day in which he commanded the children of Israel to offer their gifts before the Lord in the wilderness of Sina. + +

+ + +

And the Lord spoke to Moses, saying, + +Take Aaron and his sons, and his robes and the anointing oil, and the calf for the sin-offering, and the two rams, and the basket of unleavened bread, + +and assemble the whole congregation at the door of the tabernacle of witness. + +And Moses did as the Lord appointed him, and he assembled the congregation at the door of the tabernacle of witness. + +And Moses said to the congregation, This is the thing which the Lord has commanded you to do. + +And Moses brought near Aaron and his sons, and washed them with water, + +and put on him the coat, and girded him with the girdle, and clothed him with the tunic, and put on him the ephod; + +and girded him +with a girdle according to the make of the ephod, and clasped him closely with it: and put upon it the oracle, and put upon the oracle the Manifestation and the Truth. + +And he put the mitre on his head, and put upon the mitre in front the golden plate, the most holy thing, as the Lord commanded Moses. + +And Moses took of the anointing oil, + +and sprinkled of it seven times on the altar; and anointed the altar, and hallowed it, and all things on it, and the laver, and its foot, and sanctified them; and anointed the tabernacle and all its furniture, and hallowed it. + +And Moses poured of the anointing oil on the head of Aaron; and he anointed him and sanctified him. + +And Moses brought the sons of Aaron near, and put on them coats and girded them with girdles, and put on them bonnets, as the Lord commanded Moses. + +And Moses brought near the calf for the sin-offering, and Aaron and his sons laid their hands on the head of the calf of the sin-offering. + +And he killed it; and Moses took of the blood, and put it on the horns of the altar round about with his finger; and he purified the altar, and poured out the blood at the bottom of the altar, and sanctified it, to make atonement upon it. + +And Moses took all the fat that was upon the inwards, and the lobe on the liver, and both the kidneys, and the fat that was upon them, and Moses offered them on the altar. + +But the calf, and his hide, and his flesh, and his dung, he burnt with fire without the camp, as the Lord commanded Moses. + +And Moses brought near the ram for a whole burnt offering, and Aaron and his sons laid their hands on the head of the ram. And Moses killed the ram: and Moses poured the blood on the altar round about. + +And he divided the ram by its limbs, and Moses offered the head, and the limbs, and the fat; and he washed the belly and the feet with water. + +And Moses offered up the whole ram on the altar: it is a whole burnt offering for a sweet smelling savor; it is a burnt offering to the Lord, as the Lord commanded Moses. + +And Moses brought the second ram, the ram of consecration, and Aaron and his sons laid their hands on the head of the ram, and +he killed him; + +and Moses took of his blood, and put it upon the tip of Aaron's right ear, and on the thumb of his right hand, and on the great toe of his right foot. + +And Moses brought near the sons of Aaron; and Moses put of the blood on the tips of their right ears, and on the thumbs of their right hands, and on the great toes of their right feet, and Moses poured out the blood on the altar round about. + +And he took the fat, and the rump, and the fat on the belly, and the lobe of the liver, and the two kidneys, and the fat that is upon them, and the right shoulder. + +And from the basket of consecration, which was before the Lord, he also took one unleavened loaf, and one loaf made with oil, and one cake; and put +them upon the fat, and the right shoulder: + +and put them all on the hands of Aaron, and upon the hands of his sons, and offered them up for a wave-offering before the Lord. + +And Moses took them at their hands, and Moses offered them on the altar, on the whole burnt offering of consecration, which is a smell of sweet savor: it is a burnt offering to the Lord. + +And Moses took the breast, and separated it for a heave-offering before the Lord, from the ram of consecration; and it became Moses' portion, as the Lord commanded Moses. + +And Moses took of the anointing oil, and of the blood that was on the altar, and sprinkled it on Aaron, and on his garments, and his sons, and the garments of his sons with him. + +And he sanctified Aaron and his garments, and his sons, and the garments of his sons with him. + +And Moses said to Aaron and to his sons, Boil the flesh in the tent of the tabernacle of witness in the holy place; and there you⌃ shall eat it and the loaves in the basket of consecration, as it has been appointed me, +the Lord saying, Aaron and his sons shall eat them. + +And that which is left of the flesh and of the loaves burn you⌃ with fire. + +And you⌃ shall not go out from the door of the tabernacle of witness for seven days, until the day be fulfilled, the day of your consecration; for in seven days shall he consecrate you, + +as he did in this day on which the Lord commanded me to do so, to make an atonement for you. + +And you⌃ shall remain seven days at the door of the tabernacle of witness, day and night; you⌃ shall observe the ordinances of the Lord, that you⌃ die not; for so has the Lord God commanded me. + +And Aaron and his sons performed all these commands which the Lord commanded Moses. + +

+ + +

And it came to pass on the eighth day, that Moses called Aaron and his sons, and the elders of Israel, + +and Moses said to Aaron, Take to yourself a young calf of the herd for a sin-offering, and a ram for a whole burnt offering, unblemished, and offer them before the Lord. + +And speak to the elders of Israel, saying, Take one kid of the goats for a sin-offering, and a young calf, and a lamb of a year old for a whole burnt offering, spotless, + +and a calf and a ram for a peace offering before the Lord, and fine flour mingled with oil, for today the Lord will appear among you. + +And they took as Moses commanded them before the tabernacle of witness, and all the congregation drew near, and they stood before the Lord. + +And Moses said, This is the thing which the Lord has spoken; do +it, and the glory of the Lord shall appear among you. + +And Moses said to Aaron, Draw near to the altar, and offer your sin-offering, and your whole burnt offering, and make atonement for yourself, and for your house; and offer the gifts of the people, and make atonement for them, as the Lord commanded Moses. + +And Aaron drew near to the altar, and killed the calf of his sin-offering. + +And the sons of Aaron brought the blood to him, and he dipped his finger into the blood, and put it on the horns of the altar, and he poured out the blood at the bottom of the altar. + +And he offered up on the altar the fat and the kidneys and the lobe of the liver of the sin-offering, according as the Lord commanded Moses. + +And the flesh and the hide he burnt with fire outside of the camp. + +And he killed the whole burnt offering; and the sons of Aaron brought the blood to him, and he poured it on the altar round about. + +And they brought the whole burnt offering, according to its pieces; them and the head he put upon the altar. + +And he washed the belly and the feet with water, and he put them on the whole burnt offering on the altar. + +And he brought the gift of the people, and took the goat of the sin-offering of the people, and killed it, and purified it as also the first. + +And he brought the whole burnt offering, and offered it in due form. + +And he brought the sacrifice and filled his hands with it, and laid it on the altar, besides the morning whole burnt offering. + +And he killed the calf, and the ram of the sacrifice of peace-offering of the people; and the sons of Aaron brought the blood to him, and he poured it out on the altar round about. + +And +he took the fat of the calf, and the hind quarters of the ram, and the fat covering the belly, and the two kidneys, and the fat upon them, and the caul on the liver. + +And he put the fat on the breasts, and offered the fat on the altar. + +And Aaron separated the breast and the right shoulder as a choice-offering before the Lord, as the Lord commanded Moses. + +And Aaron lifted up his hands on the people and blessed them; and after he had offered the sin-offering, and the whole burnt offerings, and the peace-offerings, he came down. + +And Moses and Aaron entered into the tabernacle of witness. And they came out and blessed all the people, and the glory of the Lord appeared to all the people. + +And fire came forth from the Lord, and devoured the offerings on the altar, both the whole burnt offerings and the fat; and all the people saw, and were amazed, and fell upon their faces. + +

+ + +

And the two sons of Aaron, Nadab and Abiud, took each his censer, and put fire therein, and threw incense thereon, and offered strange fire before the Lord, which the Lord did not command them, + +and fire came forth from the Lord, and devoured them, and they died before the Lord. + +And Moses said to Aaron, This is the thing which the Lord spoke, saying, I will be sanctified among them that draw near to me, and I will be glorified in the whole congregation; and Aaron was pricked +in his heart. + +And Moses called Misadae, and Elisaphan, sons of Oziel, sons of the brother of Aaron's father, and said to them, Draw near and take your brethren from before the sanctuary out of the camp. + +And they came near and took them in their coats out of the camp, as Moses said. + +And Moses said to Aaron, and Eleazar and Ithamar his sons that were left, You⌃ shall not make bare your heads, and you⌃ shall not tear your garments; that you⌃ die not, and +so there should be wrath on all the congregation: but your brethren, +even all the house of Israel, shall lament for the burning, with which they were burnt by the Lord. + +And you⌃ shall not go forth from the door of the tabernacle of witness, that you⌃ die not; for the Lord's anointing oil +is upon you: and they did according to the word of Moses. + +And the Lord spoke to Aaron, saying, + +You⌃ shall not drink wine nor strong drink, you and your sons with you, whenever you⌃ enter into the tabernacle of witness, or when you⌃ approach the altar, so shall you⌃ not die; +it is a perpetual statute for your generations, + +to distinguish between sacred and profane, and between clean and unclean, + +and to teach the children of Israel all the statutes, which the Lord spoke to them by Moses. + +And Moses said to Aaron, and to Eleazar and Ithamar, the sons of Aaron who survived, Take the sacrifice that is left of the burnt offerings of the Lord, and you⌃ shall eat unleavened bread by the altar: it is most holy. + +And you⌃ shall eat it in the holy place; for this is a statute for you and a statute for your sons, of the burnt offerings to the Lord; for so it has been commanded me. + +And you⌃ shall eat the breast of separation, and the shoulder of the choice-offering in the holy place, you and your sons and your house with you; for it has been given as an ordinance for you and an ordinance for your sons, of the sacrifices of peace-offering of the children of Israel. + +They shall bring the shoulder of the choice-offering, and the breast of the separation upon the burnt offerings of the fat, to separate for a separation before the Lord; and it shall be a perpetual ordinance for you and your sons and your daughters with you, as the Lord commanded Moses. + +And Moses diligently sought the goat of the sin-offering, but it had been consumed by fire; and Moses was angry with Eleazar and Ithamar the sons of Aaron that were left, saying, + +Why did you⌃ not eat the sin-offering in the holy place? for because it is most holy he has given you this to eat, that you⌃ might take away the sin of the congregation, and make atonement for them before the Lord. + +For the blood of it was not brought into the holy place: you⌃ shall eat it within, before +the Lord, as the Lord commanded me. + +And Aaron spoke to Moses, saying, If they have brought near today their sin-offerings, and their whole burnt offerings before the Lord, and these events have happened to me, and +yet I should eat today of the sin-offerings, would it be pleasing to the Lord? + +And Moses heard +it, and it pleased him. + +

+ + +

And the Lord spoke to Moses and Aaron, saying, + +Speak you⌃ to the sons of Israel, saying, These are the beasts which you⌃ shall eat of all beasts that are upon the earth. + +Every beast parting the hoof and making divisions of two claws, and chewing the cud among beasts, these you⌃ shall eat. + +But of these you⌃ shall not eat, of those that chew the cud, and of those that part the hoofs, and divide claws; the camel, because it chews the cud, but does not divide the hoof, this is unclean to you. + +And the rabbit, because it chews the cud, but does not divide the hoof, this is unclean to you. + +And the hare, because it does not chew the cud, and does not divide the hoof, this is unclean to you. + +And the swine, because this +animal divides the hoof, and makes claws of the hoof, and it does not chew the cud, is unclean to you. + +You⌃ shall not eat of their flesh, and you⌃ shall not touch their carcasses; these are unclean to you. + +And these +are what you⌃ shall eat of all that are in the waters: all things that have fins and scales in the waters, and in the seas, and in the brooks, these you⌃ shall eat. + +And all things which have not fins or scales in the water, or in the seas, and in the brooks, of all which the waters produce, and of every soul living in the water, are an abomination; and they shall be abominations to you. + +You⌃ shall not eat of their flesh, and you⌃ shall abhor their carcasses. + +And all things that have not fins or scales of those that are in the waters, these are an abomination to you. + +And these are the things which you⌃ shall abhor of birds, and they shall not be eaten, they are an abomination: the eagle and the ossifrage, and the sea-eagle. + +And the vulture, and the kite, and the like to it; + +and the sparrow, and the owl, and the cormorant, and the like to it: + +and every raven, and the birds like it, and the hawk and his like, + +and the night-raven and the cormorant and the stork, + +and the red-bill, and the pelican, and swan, + +and the heron, and the lapwing, and the like to it, and the hoopoe and the bat. + +And all winged creatures that creep, which go upon four feet, are abominations to you. + +But these you⌃ shall eat of the creeping winged animals, which go upon four feet, which have legs above their feet, to leap with on the earth. + +And these of them you⌃ shall eat: the caterpillar and his like, and the attacus and his like, and the cantharus and his like, and the locust and his like. + +Every creeping thing from among the birds, which has four feet, is an abomination to you. + +And by these you⌃ shall be defiled; every one that touches their carcasses shall be unclean till the evening. + +And every one that takes of their dead bodies shall wash his garments, and shall be unclean till the evening. + +And whichever among the beasts divides the hoof and makes claws, and does not chew the cud, shall be unclean to you; every one that touches their dead bodies shall be unclean till evening. + +And every one among all the wild beasts that moves upon its fore feet, which goes on all four, is unclean to you; every one that touches their dead bodies shall be unclean till evening. + +And he that takes of their dead bodies shall wash his garments, and shall be unclean till evening: these are unclean to you. + +And these +are unclean to you of reptiles upon the earth, the weasel, and the mouse, and the lizard, + +the ferret, and the chameleon, and the evet, and the newt, and the mole. + +These are unclean to you of all the reptiles which are on the earth; every one who touches their carcasses shall be unclean till evening. + +And on whatever one of their dead bodies shall fall it shall be unclean; whatever wooden vessel, or garment, or skin, or sack it may be, every vessel in which work should be done, shall be dipped in water, and shall be unclean till evening; and +then it shall be clean. + +And every earthen vessel into which one of these things shall fall, whatever is inside it, shall be unclean, and it shall be broken. + +And all food that is eaten, on which water shall come +from such a vessel, shall be unclean; and every beverage which is drunk in any +such vessel, shall be unclean. + +And every thing on which there shall fall of their dead bodies shall be unclean; ovens and stands for jars shall be broken down: these are unclean, and they shall be unclean to you. + +Only +if the water be of fountains of water, or a pool, or confluence of water, it shall be clean; but he that touches their carcasses shall be unclean. + +And if one of their carcasses should fall upon any sowing seed which shall be sown, it shall be clean. + +But if water be poured on any seed, and one of their dead bodies fall upon it, it is unclean to you. + +And if one of the cattle die, which it is lawful for you to eat, he that touches their carcasses shall be unclean till evening. + +And he that eats of their carcasses shall wash his garments, and be unclean till evening; and he that carries any of their carcasses shall wash his garments, and bathe himself in water, and be unclean till evening. + +And every reptile that creeps on the earth, this shall be an abomination to you; it shall not be eaten. + +And every +animal that creeps on its belly, and every one that goes on four +feet continually, which abounds with feet among all the reptiles creeping upon the earth—you⌃ shall not eat it, for it is an abomination to you. + +And you⌃ shall not defile your souls with any of the reptiles that creep upon the earth, and you⌃ shall not be polluted with them, and you⌃ shall not be unclean by them. + +For I am the Lord your God; and you⌃ shall be sanctified, and you⌃ shall be holy, because I the Lord your God am holy; and you⌃ shall not defile your souls with any of the reptiles creeping upon the earth. + +For I am the Lord who brought you up out of the land of Egypt to be your God; and you⌃ shall be holy, for I the Lord am holy. + +This is the law concerning beasts and birds and every living creature moving in the water, and every living creature creeping on the earth; + +to distinguish between the unclean and the clean; and between those that bring forth alive, such as should be eaten, and those that bring forth alive, such as should not be eaten. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, Whatsoever woman shall have conceived and born a male child shall be unclean seven days, she shall be unclean according to the days of separation for her monthly courses. + +And on the eighth day she shall circumcise the flesh of his foreskin. + +And for thirty-three days she shall continue in her unclean blood; she shall touch nothing holy, and shall not enter the sanctuary, until the days of her purification be fulfilled. + +But if she should have born a female child, then she shall be unclean twice seven days, according to the time of her monthly courses; and for sixty-six days shall she remain in her unclean blood. + +And when the days of her purification shall have been fulfilled for a son or a daughter, she shall bring a lamb of a year old without blemish for a whole burnt offering, and a young pigeon or turtle-dove for a sin-offering to the door of the tabernacle of witness, to the priest. + +And he shall present it before the Lord, and the priest shall make atonement for her, and shall purge her from the fountain of her blood; this is the law of her who bears a male or a female. + +And if she can’t afford a lamb, then shall she take two turtledoves or two young pigeons, one for a whole burnt offering, and one for a sin-offering; and the priest shall make atonement for her, and she shall be purified. + +

+ + +

And the Lord spoke to Moses and Aaron, saying, + +If any man should have in the skin of his flesh a bright clear spot, and there should be in the skin of his flesh a plague of leprosy, he shall be brought to Aaron the priest, or to one of his sons the priests. + +And the priest shall view the spot in the skin of his flesh; and +if the hair in the spot be changed +to white, and the appearance of the spot be below the skin of the flesh, it is a plague of leprosy; and the priest shall look upon it, and pronounce him unclean. + +But if the spot be clear and white in the skin of his flesh, yet the appearance of it be not deep below the skin, and its hair have not changed +itself for white hair, but it is dark, then the priest shall separate +him that has the spot seven days; + +and the priest shall look on the spot the seventh day; and, behold, +if the spot remains before him, +if the spot has not spread in the skin, then the priest shall separate him the second time seven days. + +And the priest shall look upon him the second time on the seventh day; and, behold, +if the spot be dark, +and the spot have not spread in the skin, then the priest shall pronounce him clean; for it is a +mere mark, and the man shall wash his garments and be clean. + +But if the bright spot should have changed and spread in the skin, after the priest has seen him for the purpose of purifying him, then shall he appear the second time to the priest, + +and the priest shall look upon him; and, behold, +if the mark have spread in the skin, then the priest shall pronounce him unclean: it is a leprosy. + +And if a man have a plague of leprosy, then he shall come to the priest; + +and the priest shall look, and, behold, if it is a white spot in the skin, and it has changed the hair to white, and +there be some of the sound part of the quick flesh in the sore— + +it is a leprosy waxing old in the skin of the flesh; and the priest shall pronounce him unclean, and shall separate him, because he is unclean. + +And if the leprosy should have come out very evidently in the skin, and the leprosy should cover all the skin of the patient from the head to the feet, wherever the priest shall look; + +then the priest shall look, and, behold, the leprosy has covered all the skin of the flesh; and the priest shall pronounce him clean of the plague, because it has changed all to white, it is clean. + +But on whatever day the quick flesh shall appear on him, he shall be pronounced unclean. + +And the priest shall look upon the sound flesh, and the sound flesh shall prove him to be unclean; for it is unclean, it is a leprosy. + +But if the sound flesh be restored and changed +to white, then shall he come to the priest; + +and the priest shall see +him, and, behold, +if the plague is turned white, then the priest shall pronounce the patient clean: he is clean. + +And if the flesh should have become an ulcer in his skin, and should be healed, + +and there should be in the place of the ulcer a white sore, or +one looking white and bright, or fiery, and it shall be seen by the priest; + +then the priest shall look, and, behold, if the appearance be beneath the skin, and its hair has changed to white, then the priest shall pronounce him unclean; because it is a leprosy, it has broken out in the ulcer. + +But if the priest look, and behold there is no white hair on it, and it be not below the skin of the flesh, and it be dark-colored; then the priest shall separate him seven days. + +But if it manifestly spread over the skin, then the priest shall pronounce him unclean: it is a plague of leprosy; it has broken out in the ulcer. + +But if the bright spot should remain in its place and not spread, it is the scar of the ulcer; and the priest shall pronounce him clean. + +And if the flesh be in his skin +in a state of fiery inflammation, and there should be in his skin the part which is healed of the inflammation, bright, clear, and white, suffused with red or very white; + +then the priest shall look upon him, and, behold, +if the hair being white is changed to a bright color, and its appearance is lower than the skin, it is a leprosy; it has broken out in the inflammation, and the priest shall pronounce him unclean: it is a plague of leprosy. + +But if the priest should look, and, behold, there is not in the bright spot any white hair, and it should not be lower than the skin, and it should be dark, then the priest shall separate him seven days. + +And the priest shall look upon him on the seventh day; and if the spot be much spread in the skin, then the priest shall pronounce him unclean: it is a plague of leprosy, it has broken out in the ulcer. + +But if the bright spot remain stationary, and be not spread in the skin, but +the sore should be dark, it is a scar of inflammation; and the priest shall pronounce him clean, for it is the mark of the inflammation. + +And if a man or a woman have in them a plague of leprosy in the head or the beard; + +then the priest shall look on the plague, and, behold, +if the appearance of it be beneath the skin, and in it there be thin yellowish hair, then the priest shall pronounce him unclean: it is a scurf, it is a leprosy of the head or a leprosy of the beard. + +And if the priest should see the plague of the scurf, and, behold, the appearance of it be not beneath the skin, and there is no yellowish hair in it, then the priest shall set apart +him that has the plague of the scurf seven days. + +And the priest shall look at the plague on the seventh day; and, behold, +if the scurf be not spread, and there be no yellowish hair on it, and the appearance of the scurf is not hollow under the skin; + +then the skin shall be shaven, but the scurf shall not be shaven; and the priest shall set aside the person having the scurf the second time for seven days. + +And the priest shall see the scurf on the seventh day; and, behold, +if the scurf is not spread in the skin after the man's being shaved, and the appearance of the scurf is not hollow beneath the skin, then the priest shall pronounce him clean; and he shall wash his garments, and be clean. + +But if the scurf be indeed spread in the skin after he has been purified, + +then the priest shall look, and, behold, +if the scurf be spread in the skin, the priest shall not examine concerning the yellow hair, for he is unclean. + +But if the scurf remain before +him in its place, and a dark hair should have arisen in it, the scurf is healed: he is clean, and the priest shall pronounce him clean. + +And if a man or woman should have in the skin of their flesh spots of a bright whiteness, + +then the priest shall look; and, behold, there +being bright spots of a bright whiteness in the skin of their flesh, it is a tetter; it burst forth in the skin of his flesh; he is clean. + +And if any one's head should lose the hair, he is +only bald, he is clean. + +And if his head should lose the hair in front, he is forehead bald: he is clean. + +And if there should be in his baldness of head, or his baldness of forehead, a white or fiery plague, it is leprosy in his baldness of head, or baldness of forehead. + +And the priest shall look upon him, and, behold, if the appearance of the plague be white or inflamed in his baldness of head or baldness in front, as the appearance of leprosy in the skin of his flesh, + +he is a leprous man: the priest shall surely pronounce him unclean, his plague is in his head. + +And the leper in whom the plague is, let his garments be ungirt, and his head uncovered; and let him have a covering put upon his mouth, and he shall be called unclean. + +All the days in which the plague shall be upon him, being unclean, he shall be +esteemed unclean; he shall dwell apart, his place of sojourn shall be without the camp. + +And if a garment have in it the plague of leprosy, a garment of wool, or a garment of flax, + +either in the warp or in the woof, or in the linen, or in the woollen threads, or in a skin, or in any workmanship of skin, + +and the plague be greenish or reddish in the skin, or in the garment, either in the warp, or in the woof, or in any utensil of skin, it is a plague of leprosy, and he shall show it to the priest. + +And the priest shall look upon the plague, and the priest shall set apart +that which has the plague seven days. + +And the priest shall look upon the plague on the seventh day; and if the plague be spread in the garment, either in the warp or in the woof, or in the skin, in whatever things skins may be used in their workmanship, the plague is a confirmed leprosy; it is unclean. + +He shall burn the garment, either the warp or woof in woollen garments or in flaxen, or in any utensil of skin, in which there may be the plague; because it is a confirmed leprosy; it shall be burnt with fire. + +And if the priest should see, and the plague be not spread in the garments, either in the warp or in the woof, or in any utensil of skin, + +then the priest shall give directions, and +one shall wash that on which there may have been the plague, and the priest shall set it aside a second time for seven days. + +And the priest shall look upon it after the plague has been washed; and +if this, even the plague, has not changed its appearance, and the plague does not spread, it is unclean; it shall be burnt with fire: it is fixed in the garment, in the warp, or in the woof. + +And if the priest should look, and the spot be dark after it has been washed, he shall tear it off from the garment, either from the warp or from the woof, or from the skin. + +And if it should still appear in the garment, either in the warp or in the woof, or in any article of skin, it is a leprosy bursting forth: that wherein is the plague shall be burnt with fire. + +And the garment, or the warp, or the woof, or any article of skin, which shall be washed, and the plague depart from it, shall also be washed again, and shall be clean. + +This is the law of the plague of leprosy of a woollen or linen garment, either of the warp, or woof, or any leather article, to pronounce it clean or unclean. + +

+ + +

And the Lord spoke to Moses, saying, + +This is the law of the leper: in whatever day he shall have been cleansed, then shall he be brought to the priest. + +And the priest shall come forth out of the camp, and the priest shall look, and, behold, the plague of the leprosy is removed from the leper. + +And the priest shall give directions, and they shall take for him that is cleansed two clean live birds, and cedar wood, and spun scarlet, and hyssop. + +And the priest shall give direction, and they shall kill one bird over an earthen vessel over running water. + +And as for the living bird he shall take it, and the cedar wood, and the spun scarlet, and the hyssop, and he shall dip them and the living bird into the blood of the bird that was slain over running water. + +And he shall sprinkle seven times upon him that was cleansed of his leprosy, and he shall be clean; and he shall let go the living bird into the field. + +and the man that has been cleansed shall wash his garments, and shall shave off all his hair, and shall wash himself in water, and shall be clean; and after that he shall go into the camp, and shall remain out of his house seven days. + +And it shall come to pass on the seventh day, he shall shave off all his hair, his head and his beard, and his eye-brows, even all his hair shall he shave; and he shall wash his garments, and wash his body with water, and shall be clean. + +And on the eighth day he shall take two lambs without spot of a year old, and one ewe lamb without spot of a year old, and three-tenths of fine flour for sacrifice kneaded with oil, and one small cup of oil. + +And the priest that cleanses shall present the man under purification, and these +offerings before the Lord, at the door of the tabernacle of witness. + +And the priest shall take one lamb, and offer him for a trespass-offering, and the cup of oil, and set them apart for a special offering before the Lord. + +and they shall kill the lamb in the place where they kill the whole burnt offerings, and the sin-offerings, in the holy places; for it is a sin-offering: as the trespass-offering, it belongs to the priest, it is most holy. + +And the priest shall take of the blood of the trespass-offering, and the priest shall put it on the tip of the right ear of the person under cleansing, and on the thumb of his right hand, and on the great toe of his right foot. + +And the priest shall take of the cup of oil, and shall pour it upon his own left hand. + +And he shall dip with the finger of his right hand +into some of the oil that is in his left hand, and he shall sprinkle with his finger seven times before the Lord. + +And the remaining oil that is in his hand, the priest shall put on the tip of the right ear of him that is under cleansing, and on the thumb of his right hand, and on the great toe of his right foot, on the place of the blood of the trespass-offering. + +And the remaining oil that is on the hand of the priest, the priest shall put on the head of the cleansed +leper, and the priest shall make atonement for him before the Lord. + +And the priest shall sacrifice the sin-offering, and the priest shall make atonement for the person under purification +to cleanse him from his sin, and afterwards the priest shall kill the whole burnt offering. + +And the priest shall offer the whole burnt offering, and the sacrifice upon the altar before the Lord; and the priest shall make atonement for him, and he shall be cleansed. + +And if he should be poor, and can’t afford so much, he shall take one lamb for his transgression for a separate-offering, so as to make propitiation for him, and a tenth deal of fine flour mingled with oil for a sacrifice, and one cup of oil, + +and two turtledoves, or two young pigeons, as he can afford; and the one shall be for a sin-offering, and the other for a whole burnt offering. + +And he shall bring them on the eighth day, to purify him, to the priest, to the door of the tabernacle of witness before the Lord. + +And the priest shall take the lamb of the trespass-offering, and the cup of oil, and place them for a set-offering before the Lord. + +And he shall kill the lamb of the trespass-offering; and the priest shall take of the blood of the trespass-offering, and put it on the tip of the right ear of him that is under purification, and on the thumb of his right hand, and on the great toe of his right foot. + +And the priest shall pour of the oil on his own left hand. + +And the priest shall sprinkle with the finger of his right hand some of the oil that is in his left hand seven times before the Lord. + +And the priest shall put of the oil that is on his hand on the tip of the right ear of him that is under purification, and on the thumb of his right hand, and on the great toe of his right foot, on the place of the blood of the trespass-offering. + +And that which is left of the oil which is on the hand of the priest he shall put on the head of him that is purged, and the priest shall make atonement for him before the Lord. + +And he shall offer one of the turtledoves or of the young pigeons, as he can afford it, + +the one for a sin-offering, the other for a whole burnt offering with the meat-offering, and the priest shall make an atonement before the Lord for him that is under purification. + +This is the law for him in whom is the plague of leprosy, and who can’t afford the offerings for his purification. + +And the Lord spoke to Moses and Aaron, saying, + +Whenever you⌃ shall enter into the land of the Chananites, which I give you for a possession, and I shall put the plague of leprosy in the houses of the land of your possession; + +then the owner of the house shall come and report to the priest, saying, I have seen as it were a plague in the house. + +And the priest shall give orders to remove the furniture of the house, before the priest comes in to see the plague, and +thus none of the things in the house shall become unclean; and afterwards the priest shall go in to examine the house. + +And he shall look on the plague, and, behold, +if the plague is in the walls of the house, +he will see greenish or reddish cavities, and the appearance of them +will be beneath the surface of the walls. + +And the priest shall come out of the house to the door of the house, and the priest shall separate the house seven days. + +And the priest shall return on the seventh day and view the house; and, behold, +if the plague is spread in the walls of the house, + +then the priest shall give orders, and they shall take away the stones in which the plague is, and shall cast them out of the city into an unclean place. + +And they shall scrape the house within round about, and shall pour out the dust scraped off outside the city into an unclean place. + +And they shall take other scraped stones, and put them in the place of the +former stones, and they shall take other plaster and plaster the house. + +And if the plague should return again, and break out in the house after they have taken away the stones and after the house is scraped, and after it has been plastered, + +then the priest shall go in and see if the plague is spread in the house: it is a confirmed leprosy in the house, it is unclean. + +And they shall take down the house, and its timbers and its stones, and they shall carry out all the mortar without the city into an unclean place. + +And he that goes into the house at any time, during its separation, shall be unclean until evening. + +And he that sleeps in the house shall wash his garments, and be unclean until evening; and he that eats in the house shall wash his garments, and be unclean until evening. + +and if the priest shall arrive and enter and see, and behold the plague be not at all spread in the house after the house has been plastered, then the priest shall declare the house clean, because the plague is healed. + +And he shall take to purify the house two clean living birds, and cedar wood, and spun scarlet, and hyssop. + +And he shall kill one bird in an earthen vessel over running water. + +And he shall take the cedar wood, and the spun scarlet, and the hyssop, and the living bird; and shall dip it into the blood of the bird slain over running water, and with them he shall sprinkle the house seven times. + +and he shall purify 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 spun scarlet. + +And he shall let the living bird go out of the city into the field, and shall make atonement for the house, and it shall be clean. + +This +is the law concerning every plague of leprosy and scurf, + +and of the leprosy of a garment, and of a house, + +and of a sore, and of a clear spot, and of a shining one, + +and of declaring in what day it is unclean, and in what day it shall be purged: this +is the law of the leprosy. + +

+ + +

And the Lord spoke to Moses and Aaron, saying, + +Speak to the children of Israel, and you shall say to them, Whatever man shall have an issue out of his body, his issue is unclean. + +And this +is the law of his uncleanness; whoever has a gonorrhoea out of his body, this is his uncleanness in him by reason of the issue, by which, his body is affected through the issue: all the days of the issue of his body, by which his body is affected through the issue, there is his uncleanness. + +Every bed on which he that has the issue shall happen to lie, is unclean; and every seat on which he that has the issue may happen to sit, shall be unclean. + +And the man who shall touch his bed, shall wash his garments, and bathe himself in water, and shall be unclean till evening. + +And whoever sits on the seat on which he that has the issue may have sat, shall wash his garments, and bathe himself in water, and shall be unclean until evening. + +And he that touches the skin of him that has the issue, shall wash his garments and bathe himself in water, and shall be unclean till evening. + +And if he that has the issue should spit upon one that is clean, +that person shall wash his garments, and bathe himself in water, and be unclean until evening. + +And every ass's saddle, on which the man with the issue shall have mounted, shall be unclean till evening. + +And every one that touches whatever shall have been under him shall be unclean until evening; and he that takes them up shall wash his garments, and bathe himself in water, and shall be unclean until evening. + +And whoever he that has the issue shall touch, if he have not rinsed his hands in water, he shall wash his garments, and bathe his body in water, and shall be unclean until evening. + +And the earthen vessel which he that has the issue shall happen to touch, shall be broken; and a wooden vessel shall be washed with water, and shall be clean. + +and if he that has the issue should be cleansed of his issue, then shall he number to himself seven days for his purification; and he shall wash his garments, and bathe his body in water, and shall be clean. + +And on the eighth day he shall take to himself two turtledoves or two young pigeons, and he shall bring them before the Lord to the doors of the tabernacle of witness, and shall give them to the priest. + +And the priest shall offer them one for a sin-offering, and the other for a whole burnt offering; and the priest shall make atonement for him before the Lord for his issue. + +And the man whose seed of copulation shall happen to go forth from him, shall then wash his whole body, and shall be unclean until evening. + +And every garment, and every skin on which there shall be the seed of copulation shall both be washed with water, and be unclean until evening. + +And a woman, if a man shall lie with her with seed of copulation—they shall both bathe themselves in water and shall be unclean until evening. + +And the woman whoever shall have an issue of blood, when her issue shall be in her body, shall be seven days in her separation; every one that touches her shall be unclean until evening. + +And every thing whereon she shall lie in her separation, shall be unclean; and whatever she shall sit upon, shall be unclean. + +And whoever shall touch her bed shall wash his garments, and bathe his body in water, and shall be unclean until evening. + +and every one that touches any vessel on which she shall sit, shall wash his garments and bathe himself in water, and shall be unclean until evening. + +And whether it be while she is on her bed, or on a seat which she may happen to sit upon when he touches her, he shall be unclean till evening. + +And if any one shall lie with her, and her uncleanness be upon him, he shall be unclean seven days; and every bed on which he shall have lain shall be unclean. + +And if a woman have an issue of blood many days, not in the time of her separation; if the blood should also flow after her separation, all the days of the issue of her uncleanness +shall be as the days of her separation: she shall be unclean. + +And every bed on which she shall lie all the days of her flux shall be to her as the bed of her separation, and every seat whereon she shall sit shall be unclean according to the uncleanness of her separation. + +Every one that touches it shall be unclean; and he shall wash his garments, and bathe his body in water, and shall be unclean till evening. + +But if she shall be cleansed from her flux, then she shall number to herself seven days, and afterwards she shall be esteemed clean. + +And on the eighth day she shall take two turtledoves, or two young pigeons, and shall bring them to the priest, to the door of the tabernacle of witness. + +And the priest shall offer one for a sin-offering, and the other for a whole burnt offering, and the priest shall make atonement for her before the Lord for her unclean flux. + +And you⌃ shall cause the children of Israel to beware of their uncleannesses; so they shall not die for their uncleanness, in polluting my tabernacle that is among them. + +This is the law of the man who has an issue, and if one discharge seed of copulation, so that he should be polluted by it. + +And +this is the law for her that has the issue of blood in her separation, and as to the person who has an issue of seed, in his issue: +it is a law for the male and the female, and for the man who shall have lain with her that is set apart. + +

+ + +

And the Lord spoke to Moses after the two sons of Aaron died in bringing strange fire before the Lord, so they died. + +And the Lord said to Moses, Speak to Aaron your brother, and let him not come in at all times into the holy place within the veil before the propitiatory, which is upon the ark of the testimony, and he shall not die; for I will appear in a cloud on the propitiatory. + +Thus shall Aaron enter into the holy place; with a calf of the herd for a sin-offering, and +having a ram for a whole burnt offering. + +And he shall put on the consecrated linen tunic, and he shall have on his flesh the linen drawers, and shall gird himself with a linen girdle, and shall put on the linen cap, they are holy garments; and he shall bathe all his body in water, and shall put them on. + +And he shall take of the congregation of the children of Israel two kids of the goats for a sin-offering, and one lamb for a whole burnt offering. + +And Aaron shall bring the calf for his own sin-offering, and shall make atonement for himself and for his house. + +And he shall take the two goats, and place them before the Lord by the door of the tabernacle of witness. + +and Aaron shall cast lots upon the two goats, one lot for the Lord, and the other for the scape-goat. + +And Aaron shall bring forward the goat on which the lot for the Lord fell, and shall offer him for a sin-offering. + +and the goat upon which the lot of the scape-goat came, he shall present alive before the Lord, to make atonement upon him, so as to send him away as a scape-goat, and he shall send him into the wilderness. + +And Aaron shall bring the calf for his sin, and he shall make atonement for himself and for his house, and he shall kill the calf for his sin-offering. + +And he shall take his censer full of coals of fire off the altar, which is before the Lord; and he shall fill his hands with fine compound incense, and shall bring it within the veil. + +And he shall put the incense on the fire before the Lord, and the smoke of the incense shall cover the mercy-seat over the tables of testimony, and he shall not die. + +And he shall take of the blood of the calf, and sprinkle with his finger on the mercy-seat eastward: before the mercy-seat shall he sprinkle seven times of the blood with his finger. + +And he shall kill the goat for the sin-offering that is for the people, before the Lord; and he shall bring in of its blood within the veil, and shall do with its blood as he did with the blood of the calf, and shall sprinkle its blood on the mercy-seat, in front of the mercy-seat. + +and he shall make atonement for the sanctuary on account of the uncleanness of the children of Israel, and for their trespasses in the matter of all their sins; and thus shall he do to the tabernacle of witness established among them in the midst of their uncleanness. + +and there shall be no man in the tabernacle of witness, when he goes in to make atonement in the holy place, until he shall have come out; and he shall make atonement for himself, and for his house, and for all the congregation of the children of Israel. + +And he shall come forth to the altar that is before the Lord, and he shall make atonement upon it; and he shall take of the blood of the calf, and of the blood of the goat, and shall put it on the horns of the altar round about. + +And he shall sprinkle some of the blood upon it seven times with his finger, and shall purge it, and hallow it from the uncleanness of the children of Israel. + +And he shall finish making atonement for the sanctuary and for the tabernacle of witness, and for the altar; and he shall make a cleansing for the priests, and he shall bring the living goat; + +and Aaron shall lay his hands on the head of the live goat, and he shall declare over him all the iniquities of the children of Israel, and all their unrighteousness, and all their sins; and he shall lay them upon the head of the live goat, and shall send him by the hand of a ready man into the wilderness. + +And the goat shall bear their unrighteousnesses upon him into a desert land; and Aaron shall send away the goat into the wilderness. + +And Aaron shall enter into the tabernacle of witness, and shall put off the linen garment, which he had put on, as he entered into the holy place, and shall lay it by there. + +And he shall bathe his body in water in the holy place, and shall put on his raiment, and shall go out and offer the whole burnt offering for himself and the whole burnt offering for the people: and shall make atonement for himself and for his house, and for the people, as for the priests. + +And he shall offer the fat for the sin-offering on the altar. + +And he that sends forth the goat that has been set apart to be let go, shall wash his garments, and bathe his body in water, and afterwards shall enter into the camp. + +And the calf for the sin-offering, and the goat for the sin-offering, whose blood was brought in to make atonement in the holy place, they shall carry forth out of the camp, and burn them with fire, even their skins and their flesh and their dung. + +And he that burns them shall wash his garments, and bathe his body in water, and afterwards he shall enter into the camp. + +And this shall be a perpetual statute for you; in the seventh month, on the tenth day of the month, you⌃ shall humble your souls, and shall do no work, the native and the stranger who abides among you. + +For in this day he shall make an atonement for you, to cleanse you from all your sins before the Lord, and you⌃ shall be purged. + +This shall be to you a most holy sabbath, a rest, and you⌃ shall humble your souls; it is a perpetual ordinance. + +The priest whoever they shall anoint shall make atonement, and whoever they shall consecrate to exercise the priestly office after his father; and he shall put on the linen robe, the holy garment. + +And he shall make atonement for the most holy place, and the tabernacle of witness; and he shall make atonement for the altar, and for the priests; and he shall make atonement for all the congregation. + +And this shall be to you a perpetual statute to make atonement for the children of Israel for all their sins: it shall be done once in the year, as the Lord commanded Moses. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to Aaron and to his sons, and to all the children of Israel, and you shall say to them, This is the word which the Lord has commanded, saying, + +Every man of the children of Israel, or of the strangers dwelling among you, who shall kill a calf, or a sheep, or a goat in the camp, or who shall kill it out of the camp, + +and shall not bring it to the door of the tabernacle of witness, so as to sacrifice it for a whole burnt offering or peace-offering to the Lord to be acceptable for a sweet smelling savor: and whoever shall kill it without, and shall not bring it to the door of the tabernacle of witness, so as to offer it as a gift to the Lord before the tabernacle of the Lord; blood shall be imputed to that man, he has shed blood; that soul shall be cut off from his people. + +That the children of Israel may offer their sacrifices, all that they shall kill in the fields, and bring them to the Lord to the doors of the tabernacle of witness to the priest, and they shall sacrifice them as a peace-offering to the Lord. + +And the priest shall pour the blood on the altar round about before the Lord by the doors of the tabernacle of witness, and shall offer the fat for a sweet smelling savor to the Lord. + +And they shall no longer offer their sacrifices to vain +gods after which they go a whoring; it shall be a perpetual statute to you for your generations. + +And you shall say to them, Whatever man of the children of Israel, or of the sons of the proselytes dwelling among you, shall offer a whole burnt offering or a sacrifice, + +and shall not bring it to the door of the tabernacle of witness to sacrifice it to the Lord, that man shall be destroyed from among his people. + +And whatever man of the children of Israel, or of the strangers dwelling among you, shall eat any blood, I will even set my face against that soul that eats blood, and will destroy it from its people. + +For the life of flesh is its blood, and I have given it to you on the altar to make atonement for your souls; for its blood shall make atonement for the soul. + +Therefore I said to the children of Israel, No soul of you shall eat blood, and the stranger that abides among you shall not eat blood. + +And whatever man of the children of Israel, or of the strangers dwelling among you shall take any animal in hunting, beast, or bird, which is eaten, then shall he pour out the blood, and cover it in the dust. + +For the blood of all flesh is its life; and I said to the children of Israel, You⌃ shall not eat the blood of any flesh, for the life of all flesh is its blood: every one that eats it shall be destroyed. + +And every soul which eats that which has died of itself, or is taken of beasts, either among the natives or among the strangers, shall wash his garments, and bathe himself in water, and shall be unclean until evening: then shall he be clean. + +But if he do not wash his garments, and do not bathe his body in water, then shall he bear his iniquity. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, I +am the Lord your God. + +You⌃ shall not do according to the devices of Egypt, in which you⌃ lived: and according to the devices of the land of Chanaan, into which I bring you, you⌃ shall not do; and you⌃ shall not walk in their ordinances. + +You⌃ shall observe my judgments, and shall keep my ordinances, and shall walk in them: I +am the Lord your God. + +So you⌃ shall keep all my ordinances, and all my judgments, and do them; which if a man do, he shall live in them: I +am the Lord your God. + +No man shall draw near to any of his near kindred to uncover their nakedness; I +am the Lord. + +You shall not uncover the nakedness of your father, or the nakedness of your mother, for she is your mother; you shall not uncover her nakedness. + +You shall not uncover the nakedness of your father's wife; it is your father's nakedness. + +The nakedness of your sister by your father or by your mother, born at home or abroad, their nakedness you shall not uncover. + +The nakedness of your son's daughter, or your daughter's daughter, their nakedness you shall not uncover; because it is your nakedness. + +You shall not uncover the nakedness of the daughter of your father's wife; she is your sister by the same father: you shall not uncover her nakedness. + +You shall not uncover the nakedness of your father's sister, for she is near akin to your father. + +You shall not uncover the nakedness of your mother's sister, for she is near akin to your mother. + +You shall not uncover the nakedness of your father's brother, and you shall not go in to his wife; for she is your relation. + +You shall not uncover the nakedness of your daughter-in-law, for she is your son's wife, you shall not uncover her nakedness. + +You shall not uncover the nakedness of your brother's wife: it is your brother's nakedness. + +The nakedness of a woman and her daughter shall you not uncover; her son's daughter, and her daughter's daughter, shall you not take, to uncover their nakedness, for they are your kinswomen: it is impiety. + +You shall not take a wife in addition to her sister, as a rival, to uncover her nakedness in opposition to her, while she is yet living. + +And you shall not go in to a woman under separation for her uncleanness, to uncover her nakedness. + +And you shall not lie with your neighbor's wife, to defile yourself with her. + +And you shall not give of your seed to serve a ruler; and you shall not profane my holy name; I +am the Lord. + +And you shall not lie with a man as with a woman, for it is an abomination. + +Neither shall you lie with any quadruped for copulation, to be polluted with it: neither shall a woman present herself before any quadruped to have connexion with it; for it is an abomination. + +Do not defile yourselves with any of these things; for in all these things the nations are defiled, which I drive out before you, + +and the land is polluted; and I have recompensed their iniquity to them because of it, and the land is aggrieved with them that dwell upon it. + +And you⌃ shall keep all my statutes and all my ordinances, and you⌃ shall do none of these abominations; neither the native, nor the stranger that joins himself with you: + +(for all these abominations the men of the land did who were before you, and the land was defiled,) + +and lest the land be aggrieved with you in your polluting it, as it was aggrieved with the nations before you. + +For whoever shall do any of these abominations, the souls that do them shall be destroyed from among their people. + +And you⌃ shall keep my ordinances, that you⌃ may not do any of the abominable practices, which have taken place before your time: and you⌃ shall not be polluted in them; for I +am the Lord your God. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the congregation of the children of Israel, and you shall say to them, You⌃ shall be holy; for I the Lord your God +am holy. + +Let every one of you reverence his father and his mother; and you⌃ shall keep my sabbaths: I +am the Lord your God. + +You⌃ shall not follow idols, and you⌃ shall not make to yourselves molten gods: I +am the Lord your God. + +And if you⌃ will sacrifice a peace-offering to the Lord, you⌃ shall offer it acceptable from yourselves. + +In what day soever you⌃ shall sacrifice it, it shall be eaten; and on the following day, and if any of it should be left till the third day, it shall be thoroughly burnt with fire. + +And if it should be at all eaten on the third day, it is unfit for sacrifice: it shall not be accepted. + +And he that eats it shall bear his iniquity, because he has profaned the holy things of the Lord; and the souls that eat it shall be destroyed from among their people. + +And when you⌃ reap the harvest of your land, you⌃ shall not complete the reaping of your field with exactness, and you shall not gather that which falls from your reaping. + +And you shall not go over the gathering of your vineyard, neither shall you gather the remaining grapes of your vineyard: you shall leave them for the poor and the stranger: I am the Lord your God. + +You⌃ shall not steal, you⌃ shall not lie, neither shall one bear false witness as an informer against his neighbor. + +And you⌃ shall not swear unjustly by my name, and you⌃ shall not profane the holy name of your God: I am the Lord your God. + +You shall not injure your neighbor, neither do you rob +him, neither shall the wages of your hireling remain with you until the morning. + +You shall not revile the deaf, neither shall you put a stumbling block in the way of the blind; and you shall fear the Lord your God: I am the Lord your God. + +You shall not act unjustly in judgment: you shall not accept the person of the poor, nor admire the person of the mighty; with justice shall you judge your neighbor. + +You shall not walk deceitfully among your people; you shall not rise up against the blood of your neighbor: I am the Lord your God. + +You shall not hate your brother in your heart: you shall in any wise rebuke your neighbor, so you shall not bear sin on his account. + +And your hand shall not avenge you; and you shall not be angry with the children of your people; and you shall love your neighbor as yourself; I am the Lord. + +You⌃ shall observe my law: you shall not let your cattle gender with one of a different kind, and you shall not sow your vineyard with diverse seed; and you shall not put upon yourself a mingled garment woven of two +materials. + +And if any one lie carnally with a woman, and she should be a home-servant kept for a man, and she has not been ransomed, +and her freedom has not been given to her, they shall be visited +with punishment; but they shall not die, because she was not set at liberty. + +And he shall bring for his trespass to the Lord to the door of the tabernacle of witness, a ram for a trespass-offering. + +And the priest shall make atonement for him with the ram of the trespass-offering, before the Lord, for the sin which he sinned; and the sin which he sinned shall be forgiven him. + +And whenever you⌃ shall enter into the land which the Lord your God gives you, and shall plant any fruit tree, then shall you⌃ purge away its uncleanness; its fruit shall be three years uncleansed to you, it shall not be eaten. + +And in the fourth year all its fruit shall be holy, a subject of praise to the Lord. + +And in the fifth year you⌃ shall eat the fruit, its produce is an increase to you. I am the Lord your God. + +Eat not on the mountains, nor shall you⌃ employ auguries, nor divine by inspection of birds. + +You⌃ shall not make a round cutting of the hair of your head, nor disfigure your beard. + +And you⌃ shall not make cuttings in your body for a +dead body, and you⌃ shall not inscribe on yourselves any marks. I am the Lord your God. + +You shall not profane your daughter to prostitute her; so the land shall not go a whoring, and the land be filled with iniquity. + +You⌃ shall keep my sabbaths, and reverence my sanctuaries: I am the Lord. + +You⌃ shall not attend to those who have in them divining spirits, nor attach yourselves to enchanters, to pollute yourselves with them: I am the Lord your God. + +You shall rise up before the hoary head, and honor the face of the old man, and shall fear your God: I am the Lord your God. + +And if there should come to you a stranger in your land, you⌃ shall not afflict him. + +The stranger that comes to you shall be among you as the native, and you shall love him as yourself; for you⌃ were strangers in the land of Egypt: I am the Lord your God. + +You⌃ shall not act unrighteously in judgment, in measures and weights and scales. + +There shall be among you just balances and just weights and just liquid measure. I am the Lord your God, who brought you out of the land of Egypt. + +And you⌃ shall keep all my law and all my ordinances, and you⌃ shall do them: I am the Lord your God. + +

+ + +

And the Lord spoke to Moses, saying, + +You shall also say to the children of Israel, If +there shall be any of the children of Israel, or of those who have become proselytes in Israel, who shall give of his seed to Moloch, let him be surely put to death; the nation upon the land shall stone him with stones. + +And I will set my face against that man, and will cut him off from his people, because he has given of his seed to Moloch, to defile my sanctuary, and profane the name of them that are consecrated to me. + +And if the natives of the land should in anyway overlook that man in giving of his seed to Moloch, so as not to put him to death; + +then will I set my face against that man and his family, and I will destroy him, and all who have been of one mind with him, so that he should go a whoring to the princes, from their people. + +And the soul that shall follow those who have in them divining spirits, or enchanters, so as to go a whoring after them; I will set my face against that soul, and will destroy it from among its people. + +And you⌃ shall be holy, for I the Lord your God +am holy. + +And you⌃ shall observe my ordinances, and do them: I +am the Lord that sanctifies you. + +Every man who shall speak evil of his father or of his mother, let him die the death; has he spoken evil of his father or his mother? he shall be guilty. + +Whatever man shall commit adultery with the wife of a man, or whoever shall commit adultery with the wife of his neighbor, let them die the death, the adulterer and the adulteress. + +And if any one should lie with his father's wife, he has uncovered his father's nakedness: let them both die the death, they are guilty. + +And if any one should lie with his daughter-in-law, let them both be put to death; for they have wrought impiety, they are guilty. + +And whoever shall lie with a male as with a woman, they have both wrought abomination; let them die the death, they are guilty. + +Whosoever shall take a woman and her mother, it is iniquity: they shall burn him and them with fire; so there shall not be iniquity among you. + +And whoever shall lie with a beast, let him die the death; and you⌃ shall kill the beast. + +And whatever woman shall approach any beast, so as to have connexion with it, you⌃ shall kill the woman and the beast: let them die the death, they are guilty. + +Whosoever shall take his sister by his father or by his mother, and shall see her nakedness, and she see his nakedness, it is a reproach: they shall be destroyed before the children of their family; he has uncovered his sister's nakedness, they shall bear their sin. + +And whatever man shall lie with a woman that is set apart +for a flux, and shall uncover her nakedness, he has uncovered her fountain, and she has uncovered the flux of her blood: they shall both be destroyed from among their generation. + +And you shall not uncover the nakedness of your father's sister, or of the sister of your mother; for that man has uncovered the nakedness of one near akin: they shall bear their iniquity. + +Whosoever shall lie with his near kinswoman, has uncovered the nakedness of one near akin to him: they shall die childless. + +Whoever shall take his brother's wife, it is uncleanness; he has uncovered his brother's nakedness; they shall die childless. + +And keep you⌃ all my ordinances, and my judgments; and you⌃ shall do them, and the land shall not be aggrieved with you, into which I bring you to dwell upon it. + +And walk you⌃ not in the customs of the nations which I drive out from before you; for they have done all these things, and I have abhorred them: + +and I said to you, You⌃ shall inherit their land, and I will give it to you for a possession, +even a land flowing with milk and honey: I +am the Lord your God, who have separated you from all people. + +And you⌃ shall make a distinction between the clean and the unclean cattle, and between clean and unclean birds; and you⌃ shall not defile your souls with cattle, or with birds, or with any creeping things of the earth, which I have separated for you by reason of uncleanness. + +And you⌃ shall be holy to me; because I the Lord your God +am holy, who separated you from all nations, to be mine. + +And +as for a man or woman whoever of them shall have in them a divining spirit, or be an enchanter, let them both die the death: you⌃ shall stone them with stones, they are guilty. + +

+ + +

And the Lord spoke to Moses, saying, Speak to the priests the sons of Aaron, and you shall tell them +that they shall not defile themselves in their nation for the dead, + +but +they may mourn for a relative who is very near to them, for a father and mother, and sons and daughters, for a brother, + +and for a virgin sister that is near to one, that is not espoused to a man; for these one shall defile himself. + +He shall not defile himself suddenly among his people to profane himself. + +And you⌃ shall not shave your head for the dead with a baldness on the top; and they shall not shave their beard, neither shall they make gashes on their flesh. + +They shall be holy to their God, and they shall not profane the name of their God; for they offer the sacrifices of the Lord as the gifts of their God, and they shall be holy. + +They shall not take a woman who is a harlot and profaned, or a woman put away from her husband; for he is holy to the Lord his God. + +And you shall hallow him; he offers the gifts of the Lord your God: he shall be holy, for I the Lord that sanctify them +am holy. + +And if the daughter of a priest should be profaned to go a whoring, she profanes the name of her father: she shall be burnt with fire. + +And the priest that is chief among his brethren, the oil having been poured upon the head of the anointed one, and he having been consecrated to put on the garments, shall not take the mitre off his head, and shall not rend his garments: + +neither shall he go in to any dead body, neither shall he defile himself for his father or his mother. + +And he shall not go forth out of the sanctuary, and he shall not profane the sanctuary of his God, because the holy anointing oil of God +is upon him: I +am the Lord. + +He shall take for a wife a virgin of his own tribe. + +But a widow, or one that is put away, or profaned, or a harlot, these he shall not take; but he shall take for a wife a virgin of his own people. + +And he shall not profane his seed among his people: I +am the Lord that sanctifies him. + +And the Lord spoke to Moses, saying, + +Say to Aaron, A man of your tribe throughout your generations, who shall have a blemish on him, shall not draw near to offer the gifts of his God. + +No man who has a blemish on him shall draw near; a man blind, lame, with his nose disfigured, or his ears cut, + +a man who has a broken hand or a broken foot, + +or humpbacked, or blear-eyed, or that has lost his eye-lashes, or a man who has a malignant ulcer, or tetter, or one that has lost a testicle. + +Whoever of the seed of Aaron the priest has a blemish on him, shall not draw near to offer sacrifices to your God, because he has a blemish on him; he shall not draw near to offer the gifts of God. + +The gifts of God +are most holy, and he shall eat of the holy things. + +Only he shall not approach the veil, and he shall not draw near to the altar, because he has a blemish; and he shall not profane the sanctuary of his God, for I am the Lord that sanctifies them. + +And Moses spoke to Aaron and his sons, and to all the children of Israel. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to Aaron and to his sons, and let them take heed concerning the holy things of the children of Israel, so they shall not profane my holy name in any of the things which they consecrate to me: I +am the Lord. + +Say to them, Every man throughout your generations, whoever of all your seed shall approach to the holy things, whatever the children of Israel shall consecrate to the Lord, while his uncleanness is upon him, that soul shall be cut off from me: I +am the Lord your God. + +And the man of the seed of Aaron the priest, if he should have leprosy or issue of the reins, shall not eat of the holy things, until he be cleansed; and he that touches any uncleanness of a dead body, or the man whose seed of copulation shall have gone out from him, + +or whoever shall touch any unclean reptile, which will defile him, or +who shall touch a man, whereby he shall defile him according to all his uncleanness: + +whatever soul shall touch them shall be unclean until evening; he shall not eat of the holy things, unless he bathe his body in water, + +and the sun go down, and then he shall be clean; and then shall he eat of all the holy things, for they are his bread. + +He shall not eat that which dies of itself, or is taken of beasts, so that he should be polluted by them: I +am the Lord. + +And they shall keep my ordinances, that they do not bear iniquity because of them, and die because of them, if they shall profane them: I +am the Lord God that sanctifies them. + +And no stranger shall eat the holy things: one that sojourns with a priest, or a hireling, shall not eat the holy things. + +But if a priest should have a soul purchased for money, he shall eat of his bread; and they that are born in his house, they also shall eat of his bread. + +And if the daughter of a priest should marry a stranger, she shall not eat of the offerings of the sanctuary. + +And if the daughter of priest should be a widow, or put away, and have no seed, she shall return to her father's house, as in her youth: she shall eat of her father's bread, but no stranger shall eat of it. + +And the man who shall ignorantly eat holy things, shall add the fifth part to it, and give the holy thing to the priest. + +And they shall not profane the holy things of the children of Israel, which they offer to the Lord. + +So should they bring upon themselves the iniquity of trespass in their eating their holy things: for I +am the Lord that sanctifies them. + +And the Lord spoke to Moses, saying, + +Speak to Aaron and his sons, and to all the congregation of Israel, and you shall say to them, Any man of the children of Israel, or of the strangers that abide among them in Israel, who shall offer his gifts according to all their confession and according to all their choice, whatever they may bring to the Lord for whole burnt offerings— + +your free will offerings +shall be males without blemish of the herds, or of the sheep, or of the goats. + +They shall not bring to the Lord anything that has a blemish in it, for it shall not be acceptable for you. + +And whatever man shall offer a peace-offering to the Lord, discharging a vow, or in the way of free will offering, or an offering in your feasts, of the herds or of the sheep, it shall be without blemish for acceptance: there shall be no blemish in it. + +One that is blind, or broken, or has its tongue cut out, or is troubled with warts, or has a malignant ulcer, or tetters, they shall not offer these to the Lord; neither shall you⌃ offer any of them for a burnt offering on the altar of the Lord. + +And a calf or a sheep with the ears cut off, or that has lost its tail, you shall kill them for yourself; but they shall not be accepted for your vow. + +That which has broken testicles, or is crushed or gelt or mutilated, —you shall not offer them to the Lord, neither shall you⌃ sacrifice them upon your land. + +Neither shall you⌃ offer the gifts of your God of all these things by the hand of a stranger, because there is corruption in them, a blemish in them: these shall not be accepted for you. + +And the Lord spoke to Moses, saying, + +As for a calf, or a sheep, or a goat, whenever it is born, then shall it be seven days under its mother; and on the eighth day and after they shall be accepted for sacrifices, a burnt offering to the Lord. + +And a bullock and a ewe, it and its young, you shall not kill in one day. + +And if you should offer a sacrifice, a vow of rejoicing to the Lord, you⌃ shall offer it so as to be accepted for you. + +In that same day it shall be eaten; you⌃ shall not leave of the flesh till the morrow: I am the Lord. + +And you⌃ shall keep my commandments and do them. + +And you⌃ shall not profane the name of the Holy One, and I will be sanctified in the midst of the children of Israel. I +am the Lord that sanctifies you, + +who brought you out of the land of Egypt, to be your God: I +am the Lord. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, The feasts of the Lord which you⌃ shall call holy assemblies, these are my feasts. + +Six days shall you do works, but on the seventh day is the sabbath; a rest, a holy convocation to the Lord: you shall not do any work, it is a sabbath to the Lord in all your dwellings. + +These +are the feasts to the Lord, holy convocations, which you⌃ shall call in their seasons. + +In the first month, on the fourteenth day of the month, between the evening times is the Lord's passover. + +And on the fifteenth day of this month is the feast of unleavened bread to the Lord; seven days shall you⌃ eat unleavened bread. + +And the first day shall be a holy convocation to you: you⌃ shall do no servile work. + +And you⌃ shall offer whole burnt offerings to the Lord seven days; and the seventh day shall be a holy convocation to you: you⌃ shall do no servile work. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, When you⌃ shall enter into the land which I give you, and reap the harvest of it, then shall you⌃ bring a sheaf, the first fruits of your harvest, to the priest; + +and he shall lift up the sheaf before the Lord, to be accepted for you. On the morrow of the first day the priest shall lift it up. + +And you⌃ shall offer on the day on which you⌃ bring the sheaf, a lamb without blemish of a year old for a whole burnt offering to the Lord. + +And its meat-offering two tenth portions of fine flour mingled with oil: it is a sacrifice to the Lord, a smell of sweet savor to the Lord, and its drink-offering the fourth part of a hin of wine. + +And you⌃ shall not eat bread, or the new parched corn, until this same day, until you⌃ offer the sacrifices to your God: +it is a perpetual statute throughout your generations in all your dwellings. + +And you⌃ shall number to yourselves from the day after the sabbath, from the day on which you⌃ shall offer the sheaf of the heave-offering, seven full weeks: + +until the morrow after the last week you⌃ shall number fifty days, and shall bring a new meat-offering to the Lord. + +You⌃ shall bring from your dwelling loaves, as a heave-offering, two loaves: they shall be of two tenth portions of fine flour, they shall be baked with leaven of the first fruits to the Lord. + +And you⌃ shall bring with the loaves seven unblemished lambs of a year old, and one calf of the herd, and two rams without blemish, and they shall be a whole burnt offering to the Lord: and their meat-offerings and their drink-offerings +shall be a sacrifice, a smell of sweet savor to the Lord. + +And they shall sacrifice one kid of the goats for a sin-offering, and two lambs of a year old for a peace-offering, with the loaves of the first fruits. + +And the priest shall place them with the loaves of the first fruits an offering before the Lord with the two lambs, they shall be holy to the Lord; they shall belong to the priest that brings them. + +And you⌃ shall call this day a convocation: it shall be holy to you; you⌃ shall do no servile work on it: it is a perpetual ordinance throughout your generations in all your habitations. + +And when you⌃ shall reap the harvest of your land, you⌃ shall not fully reap the remainder of the harvest of your field when you reap, and you shall not gather that which falls from your reaping; you shall leave it for the poor and the stranger: I +am the Lord your God. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, saying, In the seventh month, on the first day of the month, you⌃ shall have a rest, a memorial of trumpets: it shall be to you a holy convocation. + +You⌃ shall do no servile work, and you⌃ shall offer a whole burnt offering to the Lord. + +And the Lord spoke to Moses, saying, + +Also on the tenth day of this seventh month is a day of atonement: it shall be a holy convocation to you; and you⌃ shall humble your souls, and offer a whole burnt offering to the Lord. + +You⌃ shall do no work on this self-same day: for this is a day of atonement for you, to make atonement for you before the Lord your God. + +Every soul that shall not be humbled in that day, shall be cut off from among its people. + +And every soul which shall do work on that day, that soul shall be destroyed from among its people. + +You⌃ shall do no manner of work: it is a perpetual statute throughout your generations in all your habitations. + +It shall be a holy sabbath to you; and you⌃ shall humble your souls, from the ninth day of the month: from evening to evening you⌃ shall keep your sabbaths. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, saying, On the fifteenth day of this seventh month, there shall be a feast of tabernacles seven days to the Lord. + +And on the first day shall be a holy convocation; you⌃ shall do no servile work. + +Seven days shall you⌃ offer whole burnt offerings to the Lord, and the eighth-day shall be a holy convocation to you; and you⌃ shall offer whole burnt offerings to the Lord: it is a time of release, you⌃ shall do no servile work. + +These +are the feasts to the Lord, which you⌃ shall call holy convocations, to offer burnt offerings to the Lord, whole burnt offerings and their meat-offerings, and their drink-offerings, that for each day on its day: + +besides the sabbaths of the Lord, and besides your gifts, and besides all your vows, and besides your free will offerings, which you⌃ shall give to the Lord. + +And on the fifteenth day of this seventh month, when you⌃ shall have completely gathered in the fruits of the earth, you⌃ shall keep a feast to the Lord seven days; on the first day there shall be a rest, and on the eighth day a rest. + +And on the first day you⌃ shall take goodly fruit of trees, and branches of palm trees, and thick boughs of trees, and willows, and branches of osiers from the brook, to rejoice before the Lord your God seven days in the year. + + +It is a perpetual statute for your generations: in the seventh month you⌃ shall keep it. + +Seven days you⌃ shall dwell in tabernacles: every native in Israel shall dwell in tents, + +that your posterity may see, that I made the children of Israel to dwell in tents, when I brought them out of the land of Egypt: I +am the Lord your God. + +And Moses recounted the feasts of the Lord to the children of Israel. + +

+ + +

And the Lord spoke to Moses, saying, + +Charge the children of Israel, and let them take for you pure olive oil beaten for the light, to burn a lamp continually, + +outside the veil in the tabernacle of witness; and Aaron and his sons shall burn it from evening until morning before the Lord continually, a perpetual statute throughout your generations. + +You⌃ shall burn the lamps on the pure lamp-stand before the Lord till the morrow. + +And you⌃ shall take fine flour, and make of it twelve loaves; each loaf shall be of two tenth parts. + +And you⌃ shall put them +in two rows, each row +containing six loaves, on the pure table before the Lord. + +And you⌃ shall put on +each row pure frankincense and salt; and +these things shall be for loaves for a memorial, set forth before the Lord. + +On the sabbath-day they shall be set forth before the Lord continually before the children of Israel, for an everlasting covenant. + +And they shall be for Aaron and his sons, and they shall eat them in the holy place: for this is their most holy portion of the offerings made to the Lord, a perpetual statute. + +And there went forth a son of an Israelitish woman, and he was son of an Egyptian man among the sons of Israel; and they fought in the camp, the son of the Israelitish woman, and a man who was an Israelite. + +And the son of the Israelitish woman named THE NAME and curse; and they brought him to Moses: and his mother's name was Salomith, daughter of Dabri of the tribe of Dan. + +And they put him in ward, to judge him by the command of the Lord. + +And the Lord spoke to Moses, saying, + +Bring forth him that cursed outside the camp, and all who heard shall lay their hands upon his head, and all the congregation shall stone him. + +And speak to the sons of Israel, and you shall say to them, Whosoever shall curse God shall bear his sin. + +And he that names the name of the Lord, let him die the death: let all the congregation of Israel stone him with stones; whether he be a stranger or a native, let him die for naming the name of the Lord. + +And whoever shall strike a man and he die, let him die the death. + +And whoever shall strike a beast, and it shall die, let him render life for life. + +And whoever shall inflict a blemish on his neighbor, as he has done to him, so shall it be done to himself in return; + +bruise for bruise, eye for eye, tooth for tooth: as any one may inflict a blemish on a man, so shall it be rendered to him. + +Whosoever shall strike a man, and he shall die, let him die the death. + +There shall be one judgment for the stranger and the native, for I +am the Lord your God. + +And Moses spoke to the children of Israel, and they brought him that had cursed out of the camp, and stoned him with stones: and the children of Israel did as the Lord commanded Moses. + +

+ + +

And the Lord spoke to Moses in the mount Sina, saying, + +Speak to the children of Israel, and you shall say to them, Whenever you⌃ shall have entered into the land, which I give to you, then the land shall rest which I give to you, for its sabbaths to the Lord. + +Six years you shall sow your field, and six years you shall prune your vine, and gather in its fruit. + +But in the seventh year +shall be a sabbath, it shall be a rest to the land, a sabbath to the Lord: you shall not sow your field, and you shall not prune your vine. + +And you shall not gather the spontaneous produce of your field, and you shall not gather fully the grapes of your dedication: it shall be a year of rest to the land. + +And the sabbaths of the land shall be food for you, and for your man-servant, and for your maidservant, and your hireling, and the stranger that abides with you. + +And for your cattle, and for the wild beats that are in your land, shall every fruit of it be for food. + +And you shall reckon to yourself seven sabbaths of years, seven times seven years; and they shall be to you seven weeks of years, nine and forty years. + +In the seventh month, on the tenth day of the month, you⌃ shall make a proclamation with the sound of a trumpet in all your land; on the day of atonement you⌃ shall make a proclamation with a trumpet in all your land. + +And you⌃ shall sanctify the year, the fifties year, and you⌃ shall proclaim a release upon the land to all that inhabit it; it shall be given a year of release, a jubilee for you; and each one shall depart to his possession, and you⌃ shall go each to his family. + +This is a jubilee of release, the year shall be to you the fifties year: you⌃ shall not sow, nor reap the produce that comes of itself from the land, neither shall you⌃ gather its dedicated fruits. + +For it is a jubilee of release; it shall be holy to you, you⌃ shall eat its fruits off the fields. + +In the year of the release +even the jubilee of it, shall +each one return to his possession. + +And if you should sell a possession to your neighbor, or if you should buy of your neighbor, let not a man oppress his neighbor. + +According to the number of years after the jubilee shall you buy of your neighbor, according to the number of years of the fruits shall he sell to you. + +According as +there may be a greater number of years he shall increase +the value of his possession, and according as +there may be a less number of years he shall lessen +the value of his possession; for according to the number of his crops, so shall he sell to you. + +Let not a man oppress his neighbor, and you shall fear the Lord your God: I am the Lord your God. + +And you⌃ shall keep all my ordinances, and all my judgments; and do you⌃ observe them, and you⌃ shall keep them, and dwell securely in the land. + +And the land shall yield her increase, and you⌃ shall eat to fullness, and shall dwell securely in it. + +And if you⌃ should say, What shall we eat in this seventh year, if we do not sow nor gather in our fruits? + +Then will I send my blessing upon you in the sixth year, and the land shall produce its fruits for three years. + +And you⌃ shall sow in the eighth year, and eat old fruits till the ninth year: until its fruit come, you⌃ shall eat old fruits of the old. + +And the land shall not be sold for a permanence; for the land is mine, because you⌃ are strangers and sojourners before me. + +And in every land of your possession, you⌃ shall allow ransoms for the land. + +And if your brother who is with you be poor, and should have sold +part of his possession, and his kinsman who is near to him come, then he shall redeem the possession which his brother has sold. + +And if one have no near kinsman, and he prosper with his hand, and he find sufficient money, +even his ransom; + +then shall he calculate the years of his sale, and he shall give what is due to the man to whom he sold it, and he shall return to his possession. + +But if his hand have not prospered sufficiently, so as that he should restore the money to him, then he that bought the possessions shall have them till the sixth year of the release; and it shall go out in the release, and the owner shall return to his possession. + +And if any one should sell an inhabited house in a walled city, then there shall be the ransom of it, until +the time is fulfilled: its time of ransom shall be a full year. + +And if it be not ransomed until there be completed of its time a full year, the house which is in the walled city shall be surely confirmed to him that bought it, throughout his generations; and it shall not go out in the release. + +But the houses in the villages which have not a wall round about them, shall be reckoned as the fields of the country: they shall always be redeemable, and they shall go out in the release. + +And the cities of the Levites, the houses of the cities in their possession, shall be always redeemable to the Levites. + +And if any one shall redeem a house of the Levites, then shall their sale of the houses of their possession go out in the release; because the houses of the cities of the Levites are their possession in the midst of the children of Israel. + +And the lands set apart for their cities shall not be sold, because this is their perpetual possession. + +And if your brother who is with you become poor, and he fail in resources with you, you shall help him as a stranger and a sojourner, and your brother shall live with you. + +You shall not receive from him interest, nor increase: and you shall fear your God: I +am the Lord: and your brother shall live with you. + +You shall not lend your money to him at interest, and you shall not lend your meat to him to be returned with increase. + +I +am the Lord your God, who brought you out of the land of Egypt, to give you the land of Chanaan, so as to be your God. + +And if your brother by you be lowered, and be sold to you, he shall not serve you with the servitude of a slave. + +He shall be with you as a hireling or a sojourner, he shall work for you till the year of release: + +and he shall go out in the release, and his children with him; and he shall go to his family, he shall hasten back to his patrimony. + +Because these are my servants, whom I brought out of the land of Egypt; such an one shall not be sold as a +common servant. + +You shall not oppress him with labor, and shall fear the Lord your God. + +And whatever number of menservants and maidservants you shall have, you shall purchase male and female servants from the nations that are round about you. + +And of the sons of the sojourners that are among you, of these you⌃ shall buy and of their relations, all that shall be in your lands; let them be to you for a possession. + +And you⌃ shall distribute them to your children after you, and they shall be to you permanent possessions for ever: but of your brethren the children of Israel, one shall not oppress his brother in labors. + +And if a stranger or sojourner with you wax rich, and your brother in distress be sold to the stranger or the sojourner that is with you, or to a proselyte by extraction; + +after he is sold to him there shall be redemption for him, one of his brethren shall redeem him. + +A brother of his father, or a son of his father's brother shall redeem him; or let one of his near kin of his tribe redeem him, and if he should be rich and redeem himself, + +then shall he calculate with his purchaser from the year that he sold himself to him until the year of release: and the money of his purchase shall be as that of a hireling, he shall be with him from year to year. + +And if any have a greater number of years +than enough, according to these he shall pay his ransom out of his purchase-money. + +And if but a little time be left of the years to the year of release, then shall he reckon to him according to his years, and shall pay his ransom + +as a hireling; he shall be with him from year to year; you shall not oppress him with labor before you. + +And if he do not pay his ransom accordingly, he shall go out in the year of his release, he and his children with him. + +For the children of Israel are my servants: they are my attendants, whom I brought out of the land of Egypt. + +

+ + +

I +am the Lord your God: you⌃ shall not make to yourselves gods made with hands, or graven; neither shall you⌃ rear up a pillar for yourselves, neither shall you⌃ set up a stone +for an object in your land to worship it: I am the Lord your God. + +You⌃ shall keep my sabbaths, and reverence my sanctuaries: I am the Lord. + +If you⌃ will walk in my ordinances, and keep my commandments, and do them, + +then will I give you the rain in its season, and the land shall produce its fruits, and the trees of the field shall yield their fruit. + +And your threshing time shall overtake the vintage, and your vintage shall overtake your seed time; and you⌃ shall eat your bread to the full; and you⌃ shall dwell safely upon your land, and war shall not go through your land. + +And I will give peace in your land, and you⌃ shall sleep, and none +shall make you afraid; and I will destroy the evil beasts out of your land, + +and you⌃ shall pursue your enemies, and they shall fall before you with slaughter. + +And five of you shall chase one hundred, and one hundred of you shall chase tens of thousands; and your enemies shall fall before you by the sword. + +And I will look upon you, and increase you, and multiply you, and establish my covenant with you. + +And you⌃ shall eat that which is old and very old, and bring forth the old to make way for the new. + +And I will set my tabernacle among you, and my soul shall not abhor you; + +and I will walk among you, and be your God, and you⌃ shall be my people. + +I am the Lord your God, who brought you out of the land of Egypt, where you⌃ were slaves; and I broke the band of your yoke, and brought you forth openly. + +But if you⌃ will not listen to me, nor obey these my ordinances, + +but disobey them, and your soul should loathe my judgments, so that you⌃ should not keep all my commands, so as to break my covenant, + +then will I do thus to you: I will even bring upon you perplexity and the itch, and the fever that causes your eyes to waste away, and +disease that consumes your life; and you⌃ shall sow your seeds in vain, and your enemies shall eat them. + +And I will set my face against you, and you⌃ shall fall before your enemies, and they that hate you shall pursue you; and you⌃ shall flee, no one pursuing you. + +And if you⌃ still refuse to listen to me, then will I chasten you yet more even seven times for your sins. + +And I will break down the haughtiness of your pride; and I will make your heaven iron, and your earth as it were brass. + +And your strength shall be in vain; and your land shall not yield its seed, and the tree of your field shall not yield its fruit. + +And if after this you⌃ should walk perversely, and not be willing to obey me, I will further bring upon you seven plagues according to your sins. + +And I will send upon you the wild beasts of the land, and they shall devour you, and shall consume your cattle: and I will make you few in number, and your ways shall be desolate. + +And if hereupon you⌃ are not corrected, but walk perversely towards me, + +I also will walk with you with a perverse spirit, and I also will strike you seven times for your sins. + +And I will bring upon you a sword avenging the cause of +my covenant, and you⌃ shall flee for refuge to your cities; and I will send out death against you, and you⌃ shall be delivered into the hands of your enemies. + +When I afflict you with famine of bread, then ten women shall bake your loaves in one oven, and they shall render your loaves by weight; and you⌃ shall eat, and not be satisfied. + +And if hereupon you⌃ will not obey me, but walk perversely towards me, + +then will I walk with you with a froward mind, and I will chasten you sevenfold according to your sins. + +And you⌃ shall eat the flesh of your sons, and the flesh of your daughters shall you⌃ eat. + +And I will render your pillars desolate, and will utterly destroy your wooden +images made with hands; and I will lay your carcasses on the carcasses of your idols, and my soul shall loathe you. + +And I will lay your cities waste, and I will make your sanctuaries desolate, and I will not smell the savor of your sacrifices. + +And I will lay your land desolate, and your enemies who dwell in it shall wonder at it. + +And I will scatter you among the nations, and the sword shall come upon you and consume you; and your land shall be desolate, and your cities shall be desolate. + +Then the land shall enjoy its sabbaths all the days of its desolation. + +And you⌃ shall be in the land of your enemies; then the land shall keep its sabbaths, and the land shall enjoy its sabbaths all the days of its desolation: it shall keep sabbaths which it kept not among your sabbaths, when you⌃ lived in it. + +And to those who are left of you I will bring bondage into their heart in the land of their enemies; and the sound of a shaken leaf shall chase them, and they shall flee as fleeing from war, and shall fall when none pursues them. + +And brother shall disregard brother as in war, when none pursues; and you⌃ shall not be able to withstand your enemies. + +And you⌃ shall perish among the Gentiles, and the land of your enemies shall devour you. + +And those who are left of you shall perish, because of their sins, and because of the sins of their fathers: in the land of their enemies shall they consume away. + +And they shall confess their sins, and the sins of their fathers, that they have transgressed and neglected me, and that they have walked perversely before me, + +and I walked with them with a perverse mind; and I will destroy them in the land of their enemies: then shall their uncircumcised heart be ashamed, and then shall they acquiesce in +the punishment of their sins. + +And I will remember the covenant of Jacob, and the covenant of Isaac, and the covenant of Abraam will I remember. + +And I will remember the land, and the land shall be left of them; then the land shall enjoy her sabbaths, when it is deserted through them: and they shall accept +the punishment of their iniquities, because they neglected my judgments, and in their soul loathed my ordinances. + +And yet not even thus, while they were in the land of their enemies, did I overlook them, nor did I loathe them so as to consume them, to break my covenant made with them; for I am the Lord their God. + +And I will remember their former covenant, when I brought them out of the land of Egypt, out of the house of bondage before the nation, to be their God; I am the Lord. + +These are my judgments and my ordinances, and the law which the Lord gave between himself and the children of Israel, in the mount Sina, by the hand of Moses. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, Whosoever shall vow a vow as the valuation of his soul for the Lord, + +the valuation of a male from twenty years old to sixty years old shall be his valuation shall be fifty didrachmas of silver by the standard of the sanctuary. + +And the valuation of a female shall be thirty didrachmas. + +And if it be from five years old to twenty, the valuation of a male shall be twenty didrachmas, and of a female ten didrachmas. + +And from a month old to five years old, the valuation of a male shall be five didrachmas, and of a female, three didrachmas of silver. + +And if from sixty year +old and upward, if it be a male, his valuation shall be fifteen didrachmas of silver, and if a female, ten didrachmas. + +And if the man be too poor for the valuation, he shall stand before the priest; and the priest shall value him: according to what the man who has vowed can afford, the priest shall value him. + +And if it be from the cattle that are offered as a gift to the Lord, whoever shall offer one of these to the Lord, it shall be holy. + +He shall not change it, a good for a bad, or a bad for a good; and if he do at all change it, a beast for a beast, it and the substitute shall be holy. + +And if it be any unclean beast, of which none are offered as a gift to the Lord, he shall set the beast before the priest. + +And the priest shall make a valuation between the good and the bad, and accordingly as the priest shall value it, so shall it stand. + +And if +the worshipper will at all redeem it, he shall add the fifth part to its value. + +And whatever man shall consecrate his house as holy to the Lord, the priest shall make a valuation of it between the good and the bad: as the priest shall value it, so shall it stand. + +And if he that has sanctified it should redeem his house, he shall add to it the fifth part of the money of the valuation, and it shall be his. + +And if a man should hallow to the Lord a part of the field of his possession, then the valuation shall be according to its seed, fifty didrachmas of silver for a homer of barley. + +And if he should sanctify his field from the year of release, it shall stand according to his valuation. + +And if he should sanctify his field in the latter time after the release, the priest shall reckon to him the money for the remaining years, until the +next year of release, and it shall be deducted as an equivalent from his full valuation. + +And if he that sanctified the field would redeem it, he shall add to its value the fifth part of the money, and it shall be his. + +And if he do not redeem the field, but should sell the field to another man, he shall not after redeem it. + +But the field shall be holy to the Lord after the release, as separated land; the priest shall have possession of it. + +And if he should consecrate to the Lord of a field which he has bought, which is not of the field of his possession, + +the priest shall reckon to him the full valuation from the year of release, and he shall pay the valuation in that day +as holy to the Lord. + +And in the year of release the land shall be restored to the man of whom the other bought it, whose the possession of the land was. + +And every valuation shall be by holy weights: the didrachm shall be twenty oboli. + +And every firstborn which shall be produced among your cattle shall be the Lord's, and no man shall sanctify it: whether calf or sheep, it is the Lord's. + +But if he should redeem an unclean beast, according to its valuation, then he shall add the fifth part to it, and it shall be his; and if he redeem it not, it shall be sold according to its valuation. + +And every dedicated thing which a man shall dedicate to the Lord of all that he has, whether man or beast, or of the field of his possession, he shall not sell it, nor redeem it: every devoted thing shall be most holy to the Lord. + +And whatever shall be dedicated of men, shall not be ransomed, but shall be surely put to death. + +Every tithe of the land, both of the seed of the land, and of the fruit of trees, is the Lord's, holy to the Lord. + +And if a man should at all redeem his tithe, he shall add the fifth part to it, and it shall be his. + +And every tithe of oxen, and of sheep, and whatever may come in numbering under the rod, the tenth shall be holy to the Lord. + +You shall not change a good for a bad, or a bad for a good; and if you should at all change it, its equivalent also shall be holy, it shall not be redeemed. + +These are the commandments which the Lord commanded Moses for the sons of Israel in mount Sina. + +

+
+ +Numbers +NUMBERS +Numbers +NUM +

NUMBERS +

+ + +

And the Lord spoke to Moses in the wilderness of Sina, in the tabernacle of witness, on the first day of the second month, in the second year of their departure from the land of Egypt, saying, + +Take the sum of all the congregation of Israel according to their kindred, according to the houses of their fathers' families, according to their number by their names, according to their heads: every male + +from twenty years old and upwards, every one that goes forth in the +1:3 +Gr. +force. + forces of Israel, take account of them with their strength; you and Aaron take account of them. + +And with you there shall be each one of the rulers according to the tribe of each: they shall be according to the houses of their families. + +And these are the names of the men who shall be present with you; of the tribe of Ruben, Elisur the son of Sediur. + +Of Symeon, Salamiel the son of Surisadai. + +Of Juda, Naasson the son of Aminadab. + +Of Issachar, Nathanael the son of Sogar. + +Of Zabulon, Eliab the son of Chaelon. + +Of the sons of Joseph, of Ephraim, Elisama the son of Emiud: of Manasses, Gamaliel the son of Phadasur. + +Of Benjamin, Abidan the son of Gadeoni. + +Of Dan, Achiezer the son of Amisadai. + +Of Aser, Phagaiel the son of Echran. + +Of Gad, Elisaph the son of Raguel. + +Of Nephthali, Achire the son of Aenan. + +These were famous men of the congregation, heads of the tribes according to their families: these are heads of thousands in Israel. + +And Moses and Aaron took these men who were called by name. + +And they assembled all the congregation on the first day of the month in the second year; and they +1:18 +ἄξονες dicebantur olim tabulae publicae; atque inde ἐπαξοοῦ, quod videtur esse, +in tabulas referre. L. Bos. registered them after their lineage, after their families, after the number of their names, from twenty years old and upwards, every male according to their +1:18 +Gr. +head or poll. + number: + +as the Lord commanded Moses, so they were numbered in the wilderness of Sina. + +And the sons of Ruben the firstborn of Israel according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their heads, were—all males from twenty years old and upward, every one that went out with the host— + +the numbering of them of the tribe of Ruben, was forty-six thousand and four hundred. + +For the children of Symeon according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes out with the host, + +the numbering of them of the tribe of Symeon, was fifty-nine thousand and three hundred. + +For the sons of Juda according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes forth with the host, + +the numbering of them of the tribe of Juda, was seventy-four thousand and six hundred. + +For the sons of Issachar according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes forth with the host, + +the numbering of them of the tribe of Issachar, was fifty-four thousand and four hundred. + +For the sons of Zabulon according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes out with the host, + +the numbering of them of the tribe of Zabulon, was fifty-seven thousand and +1:29 +Alex. +500. + four hundred. + +For the sons of Joseph, the sons of Ephraim, according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes out with the host, + +the numbering of them of the tribe of Ephraim, was forty thousand and five hundred. + +For the sons of Manasse according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes out with the host, + +the numbering of them of the tribe of Manasse, was thirty-two thousand and two hundred. + +For the sons of Benjamin according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, every male from twenty years old and upward, every one that goes forth with the host, + +the numbering of them of the tribe of Benjamin, was thirty-five thousand and four hundred. + +For the sons of Gad according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes forth with the host, + +the numbering of them of the tribe of Gad, was forty and five thousand and six hundred and fifty. + +For the sons of Dan according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, all males from twenty years old and upward, every one that goes forth with the host, + +the numbering of them of the tribe of Dan, was sixty and two thousand and seven hundred. + +For the sons of Aser according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, every male from twenty years old and upward, every one that goes forth with the host, + +the numbering of them of the tribe of Aser, was forty and one thousand and five hundred. + +For the sons of Nephthali according to their kindred, according to their divisions, according to the houses of their families, according to the number of their names, according to their polls, every male from twenty years old and upward, every one who goes forth with the host, + +the numbering of them of the tribe of Nephthali, was fifty-three thousand and four hundred. + +This is the numbering which Moses and Aaron and the rulers of Israel, being twelve men, conducted: there was a man for each tribe, they were according to the tribe of the houses of their family. + +And the whole numbering of the children of Israel with their host from twenty years old and upward, every one that goes out to set himself in battle array in Israel, came to + +six hundred thousand and three thousand and five hundred and fifty. + +But the Levites of the tribe of their family were not counted among the children of Israel. + +And the Lord spoke to Moses, saying, + +See, you shall not muster the tribe of Levi, and you shall not take their numbers, in the midst of the children of Israel. + +And do you set the Levites over the tabernacle of witness, and over all its furniture, and over all things that are in it; and they shall do service in it, and they shall encamp round about the tabernacle. + +And in removing the tabernacle, the Levites shall take it down, and in pitching the tabernacle they shall set it up: and let the stranger that advances +to touch it die. + +And the children of Israel shall encamp, every man in his own order, and every man according to his +1:52 +Or, +headship, +i.e. +according to the situation of his captain or prince. + company, with their host. + +But let the Levites encamp round about the tabernacle of witness fronting it, and +so there shall be no sin among the children of Israel; and the Levites themselves shall keep the guard of the tabernacle of witness. + +And the children of Israel did according to all that the Lord commanded Moses and Aaron, so did they. + +

+ + +

And the Lord spoke to Moses and Aaron, saying, + +Let the children of Israel encamp fronting +each other, every man keeping his own rank, according to +their standards, according to the houses of their families; the children of Israel shall encamp round about the tabernacle of witness. + +And they that encamp first toward the east +shall be the order of the camp of Juda with their host, and the prince of the sons of Juda, Naasson the son of Aminadab. + +His forces that were numbered, were seventy-four thousand and six hundred. + +And they that encamp next +shall be of the tribe of Issachar, and the prince of the sons of Issachar +shall be Nathanael the son of Sogar. + +His forces that were numbered, were fifty-four thousand and four hundred. + +And they that encamp next +shall be of the tribe of Zabulon, and the prince of the sons of Zabulon +shall be Eliab the son of Chaelon. + +His forces that were numbered, were fifty-seven thousand and four hundred. + +All that were numbered of the camp of Juda were one hundred and eighty thousand and six thousand and four hundred: they shall move first with their forces. + + +This is the order of the camp of Ruben; their forces +shall be toward the south, and the prince of the children of Ruben +shall be Elisur the son of Sediur. + +His forces that were numbered, were forty-six thousand and five hundred. + +And they that encamp next to him +shall be of the tribe of Symeon, and the prince of the sons of Symeon +shall be Salamiel the son of Surisadai. + +His forces that were numbered, were fifty-nine thousand and three hundred. + +And they that encamp next to them +shall be the tribe of Gad; and the prince of the sons of Gad, Elisaph the son of Raguel. + +His forces that were numbered, were forty-five thousand and six hundred and fifty. + +All who were numbered of the camp of Ruben, were one hundred and fifty-one thousand and four hundred and fifty: they with their forces shall proceed in the second place. + +And +then the tabernacle of witness shall be set forward, and the camp of the Levites +shall be between the camps; as they shall encamp, so also shall they commence their march, each one next in order to his fellow according to their companies. + +The station of the camp of Ephraim +shall be +2:18 +Gr. +by the sea. + westward with their forces, and the head of the children of Ephraim +shall be Elisama the son of Emiud. + +His forces that were numbered, are forty thousand and five hundred. + +And they that encamp next +shall be of the tribe of Manasse, and the prince of the sons of Manasse, Gamaliel the son of Phadassur. + +His forces that were numbered, were thirty-two thousand and two hundred. + +And they that encamp next +shall be of the tribe of Benjamin, and the prince of the sons of Benjamin, Abidan the son of Gadeoni. + +His forces that were numbered, were thirty-five thousand and four hundred. + +All that were numbered of the camp of Ephraim, were one hundred and eight thousand and one hundred: they with their forces shall set out third. + +The order of the camp of Dan +shall be northward with their forces; and the prince of the sons of Dan, Achiezer the son of Amisadai. + +His forces that were numbered, were sixty-two thousand and seven hundred. + +And they that encamp next to him +shall be the tribe of Aser; and the prince of the sons of Aser, Phagiel the son of Echran. + +His forces that were numbered, were forty-one thousand and five hundred. + +And they that encamp next +shall be of the tribe of Nephthali; and the prince of the children of Nephthali, Achire son Aenan. + +His forces that were numbered were fifty-three thousand and four hundred. + +All that were numbered of the camp of Dan, +were one hundred and fifty-seven thousand and six hundred: they shall set out last according to their order. + +This +is the numbering of the children of Israel according to the houses of their families: all the numbering of the camps with their forces, +was six hundred and three thousand, five hundred and fifty. + +But the Levites were not numbered with them, as the Lord commanded Moses. + +And the children of Israel did all things that the Lord commanded Moses; thus they encamped in their order, and thus they began their march in succession each according to their divisions, according to the houses of their families. + +

+ + +

And these +are the generations of Aaron and Moses, in the day in which the Lord spoke to Moses in mount Sina. + +And these +are the names of the sons of Aaron; Nadab the firstborn; and Abiud, Eleazar and Ithamar. + +These +are the names of the sons of Aaron, the anointed priests whom they +3:3 +Gr. +accomplished their hands to minister: according to the Hebrew idiom, +filled +their hands. + consecrated to the priesthood. + +And Nadab and Abiud died before the Lord, when they offered strange fire before the Lord, in the wilderness of Sina; and they had no children; and Eleazar and Ithamar ministered in the priests' office with Aaron their father. + +And the Lord spoke to Moses, saying, + +Take the tribe of Levi, and you shall set them before Aaron the priest, and they shall minister to him, + +and shall keep his charges, and the charges of the children of Israel, before the tabernacle of witness, to do the works of the tabernacle. + +And they shall keep all the furniture of the tabernacle of witness, and the charges of the children of Israel as to all the works of the tabernacle. + +And you shall give the Levites to Aaron, and to his sons the priests; they are given for a gift to me of the children of Israel. + +And you shall appoint Aaron and his sons over the tabernacle of witness; and they shall keep their charge of priesthood, and all things belonging to the altar, and within the veil; and the stranger that touches them shall die. + +And the Lord spoke to Moses, saying, + +Behold, I have taken the Levites from the midst of the children of Israel, instead of every male that opens the womb from among the children of Israel: they shall be their ransom, and the Levites shall be mine. + +For every firstborn +is mine; in the day in which I struck every firstborn in the land of Egypt, I sanctified to myself every firstborn in Israel: both of man and beast, they shall be mine: I +am the Lord. + +And the Lord spoke to Moses in the wilderness of Sina, saying, + +Take the number of the sons of Levi, according to the houses of their families, according to their divisions; number you⌃ them every male from a month old and upwards. + +And Moses and Aaron numbered them by the +3:16 +Gr. +voice. + word of the Lord, as the Lord commanded them. + +And these were the sons of Levi by their names; Gedson, Caath, and Merari. + +And these +are the names of the sons of Gedson according to their families; Lobeni and Semei: + +and the sons of Caath according to their families; Amram and Issaar, Chebron and Oziel: + +and the sons of Merari according to their families, Mooli and Musi; these are the families of the Levites according to the houses of their families. + +To Gedson belongs the family of Lobeni, and the family of Semei: these are the families of Gedson. + +The numbering of them according to the number of every male from a month old and upwards, their numbering +was seven thousand and five hundred. + +And the sons of Gedson shall encamp westward behind the tabernacle. + +And the ruler of the household of the family of Gedson +was Elisaph the son of Dael. + +And the charge of the sons of Gedson in the tabernacle of witness +was the tent and the veil, and the covering of the door of the tabernacle of witness, + +and the curtains of the court, and the veil of the door of the court, which is by the tabernacle, and the remainder of all its works. + +To Caath +belonged one division, that of Amram, and another division, that of Issaar, and another division, that of Chebron, and another division, that of Oziel: these are the divisions of Caath, according to number. + +Every male from a month old and upward, eight thousand and six hundred, keeping the charges of the holy things. + +The families of the sons of Caath, shall encamp beside the tabernacle toward the south. + +And the chief of the house of the families of the divisions of Caath, +was Elisaphan the son of Oziel. + +And their charge +was the ark, and the table, and the candlestick, and the altars, and all the vessels of the sanctuary wherewith they do holy service, and the veil, and all their works. + +And the chief over the chief of the Levites, +was Eleazar the son of Aaron the priest, appointed to keep the charges of the holy things. + +To Merari +belonged the family of Mooli, and the family of Musi: these are the families of Merari. + +The mustering of them according to number, every male from a month old and upwards, +was six thousand and fifty. + +And the head of the house of the families of the division of Merari, was Suriel the son of Abichail: they shall encamp by the side of the tabernacle northwards. + +The oversight of the charge of the sons of Merari +included the capitals of the tabernacle, and its bars, and its pillars, and its sockets, and all their furniture, and their works, + +and the pillars of the court round about, and their bases, and their pins, and their cords. + +They that encamp before the tabernacle of witness on the east +shall be Moses and Aaron and his sons, keeping the charges of the sanctuary according to the charges of the children of Israel; and the stranger that touches them, shall die. + +All the numbering of the Levites, whom Moses and Aaron numbered by the word of the Lord, according to their families, every male from a month old and upwards, +were two and twenty thousand. + +And the Lord spoke to Moses, saying, Count every firstborn male of the children of Israel from a month old and upwards, and take the number by name. + +And you shall take the Levites for me—I +am the Lord—instead of all the firstborn of the sons of Israel, and the cattle of the Levites instead of all the firstborn among the cattle of the children of Israel. + +And Moses counted, as the Lord commanded him, every firstborn among the children of Israel. + +And all the male firstborn in number by name, from a month old and upwards, were according to their numbering twenty-two thousand and two hundred and seventy-three. + +And the Lord spoke to Moses, saying, + +Take the Levites instead of all the firstborn of the sons of Israel, and the cattle of the Levites instead of their cattle, and the Levites shall be mine; I +am the Lord. + +And for the ransoms of the two hundred and seventy-three which exceed the Levites in number of the firstborn of the sons of Israel; + +you shall even take five shekels a head; you shall take them according to the holy didrachm, twenty oboli to the shekel. + +And you shall give the money to Aaron and to his sons, the ransom of those who exceed in number among them. + +And Moses took the silver, the ransom of those that exceeded in number +3:49 +i.e. +the number redeemed by the Levites. + the redemption of the Levites. + +He took the silver from the firstborn of the sons of Israel, a thousand three hundred and sixty-five shekels, according to the holy shekel. + +And Moses gave the ransom of them that were over to Aaron and his sons, by the +3:51 +Gr. +voice. + word of the Lord, as the Lord commanded Moses. + +

+ + +

And the Lord spoke to Moses and Aaron, saying, + +Take the sum of the children of Caath from the midst of the sons of Levi, after their families, according to the houses of their fathers' households; + +from twenty-five years old and upward until fifty years, every one that goes in to minister, to do all the works in the tabernacle of witness. + +And these are the works of the sons of Caath in the tabernacle of witness; it is most holy. + +And Aaron and his sons shall go in, when the camp is about to move, and shall take down the shadowing veil, and shall cover with it the ark of the testimony. + +And they shall put on it a cover, even a blue skin, and put on it above a garment all of blue, and shall put the staves through +the rings. + +And they shall put on the table set forth for show-bread a cloth all of purple, and the dishes, and the censers, and the cups, and the vessels with which one offers drink-offerings; and the continual loaves shall be upon it. + +And they shall put upon it a scarlet cloth, and they shall cover it with a blue covering of skin, and they shall put the staves into it. + +And they shall take a blue covering, and cover the candlestick that gives light, and its lamps, and its snuffers, and its funnels, and all the vessels of oil with which they minister. + +And they shall put it, and all its vessels, into a blue skin cover; and they shall put it on bearers. + +And they shall put a blue cloth for a cover on the golden altar, and shall cover it with a blue skin cover, and put in its staves. + +And they shall take all the instruments of service, with which they minister in the sanctuary: and shall place them in a cloth of blue, and shall cover them with blue skin covering, and put them upon staves. + +And he shall put the covering on the altar, and they shall cover it with a cloth all of purple. + +And they shall put upon it all the vessels with which they minister upon it, and the fire-pans, and the flesh hooks, and the cups, and the cover, and all the vessels of the altar; and they shall put on it a blue cover of skins, and shall put in its staves; and they shall take a purple cloth, and cover the laver and its foot, and they shall put it into a blue cover of skin, and put it on bars. + +And Aaron and his sons shall finish covering the holy things, and all the holy vessels, when the camp begins to move; and afterwards the sons of Caath shall go in to take up +the furniture; but shall not touch the holy things, lest they die: these shall the sons of Caath bear in the tabernacle of witness. + +Eleazar the son of Aaron the priest is overseer—the oil of the light, and the incense of composition, and the daily meat-offering and the anointing oil, are his charge; even the oversight of the whole tabernacle, and all things that are in it in the holy place, in all the works. + +And the Lord spoke to Moses and Aaron, saying, + +You⌃ shall not destroy the family of Caath from the tribe out of the midst of the Levites. + +This do you⌃ to them, and they shall live and not die, when they approach the holy of holies: Let Aaron and his sons advance, and they shall place them each in his post for bearing. + +And +so they shall by no means go in to look suddenly upon the holy things, and die. + +And the Lord spoke to Moses, saying, + +Take the sum of the children of Gedson, and these according to the houses of their lineage, according to their families. + +Take the number of them from five and twenty years old and upwards until the age of fifty, every one that goes in to minister, to do his business in the tabernacle of witness. + +This +is the public service of the family of Gedson, to minister and to bear. + +And +4:25 +Gr. +it, +i.e. +the family. + they shall bear the skins of the tabernacle, and the tabernacle of witness, and its veil, and the blue cover that was on it above, and the cover of the door of the tabernacle of witness. + +And all the curtains of the court which were upon the tabernacle of witness, and the appendages, and all the vessels of service that they minister with they shall attend to. + +According to the direction of Aaron and his sons shall be the ministry of the sons of Gedson, in all their ministries, and in all their works; and you shall take account of them by name in all things borne by them. + +This is the service of the sons of Gedson in the tabernacle of witness, and their charge by the hand of Ithamar the son of Aaron the priest. + +The sons of Merari according to their families, according to the houses of their lineage, take you⌃ the number of them. + +Take the number of them from five and twenty years old and upwards until fifty years old, every one that goes in to perform the services of the tabernacle of witness. + +And these are the charges of the things borne by them according to all their works in the tabernacle of witness: they shall bear the capitals of the tabernacle, and the bars, and its pillars, and its sockets, and the veil, and +there shall be their sockets, and their pillars, and the curtain of the door of the tabernacle. + +And they shall bear the pillars of the court round about, and +there shall be their sockets, and +they shall bear the pillars of the veil of the door of the court, and their sockets and their pins, and their cords, and all their furniture, and all their instruments of service: take you⌃ their number by name, and all the articles of the charge of the things borne by them. + +This is the ministration of the family of the sons of Merari in all their works in the tabernacle of witness, by the hand of Ithamar the son of Aaron the priest. + +And Moses and Aaron and the rulers of Israel took the number of the sons of Caath according to their families, according to the houses of their lineage; + +from five and twenty years old and upwards to the age of fifty years, every one that goes in to minister and do service in the tabernacle of witness. + +And the numbering of them according to their families was two thousand, +4:36 +Alex. +350. + seven hundred and fifty. + +This is the numbering of the family of Caath, every one that ministers in the tabernacle of witness, as Moses and Aaron numbered them by the word of the Lord, by the hand of Moses. + +And the sons of Gedson were numbered according to their families, according to the houses of their lineage, + +from five and twenty years old and upward till fifty years old, every one that goes in to minister and to do the services in the tabernacle of witness. + +And the numbering of them according to their families, according to the houses of their lineage, +was two thousand six hundred and thirty. + +This +is the numbering of the family of the sons of Gedson, every one who ministers in the tabernacle of witness; whom Moses and Aaron numbered by the word of the Lord, by the hand of Moses. + +And also the family of the sons of Merari were numbered according to their divisions, according to the house of their fathers; + +from five and twenty years old and upward till fifty years old, every one that goes in to minister in the services of the tabernacle of witness. + +And the numbering of them according to their families, according to the houses of their lineage, +was three thousand and two hundred. + +This +is the numbering of the family of the sons of Merari, whom Moses and Aaron numbered by the +4:45 +Gr. +voice. + word of the Lord, by the hand of Moses. + +All that were numbered, whom Moses and Aaron and the rulers of Israel numbered, +namely, the Levites, according to their families and according to the houses of their lineage, + +from five and twenty years old and upward till fifty years old, every one that goes in to the +4:47 +Gr. +work. + service of the works, and the +charge of the things that are carried in the tabernacle of witness. + +And they that were numbered were eight thousand +4:48 +Alex. +450 + five hundred and eighty. + +He reviewed them by the word of the Lord by the hand of Moses, appointing each man severally over their +respective work, and over their burdens; and they were numbered, as the Lord commanded Moses. + +

+ + +

And the Lord spoke to Moses, saying, + +Charge the children of Israel, and let them send forth out of the camp every leper, and every one who has a discharge, and every one who is unclean from a +5:2 +Gr. +soul. + dead body. + +Whether male or female, send them forth out of the camp; and they shall not defile their camps in which I dwell among them. + +And the children of Israel did so, and sent them out of the camp: as the Lord said to Moses, so did the children of Israel. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, saying, Every man or woman who shall commit any sin that is common to man, or if that soul shall in anyway have neglected the commandment and transgressed; + +that person shall confess the sin which he has committed, and shall make satisfaction for his trespass: he +shall pay the principal, and shall add to it the fifth part, and shall make restoration to him against whom he has trespassed. + +But if a man have no near kinsman, so as to make satisfaction for his trespass to him, the trespass-offering paid to the Lord shall be for the priest, besides the ram of atonement, by which he shall make atonement with it for him. + +And every first fruits in all the sanctified things among the children of Israel, whatever they shall offer to the Lord, shall be for the priest himself. + +And the hallowed things of every man shall be his; and whatever man shall give +any thing to the priest, the gift shall be his. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, Whosesoever wife shall transgress against him, and slight and despise him, + +and +supposing any one shall lie with her carnally, and the thing shall be hid from the eyes of her husband, and she should conceal it and be herself defiled, and there be no witness with her, and she should not be taken; + +and there should come upon him a spirit of jealousy, and he should be jealous of his wife, and she be defiled; or there should come upon him a spirit of jealousy, and he should be jealous of his wife, and she should not be defiled; + +then shall the man bring his wife to the priest, and shall bring his gift for her, the tenth part of an ephah of barley-meal: he shall not pour oil upon it, neither shall he put frankincense upon it; for it is a sacrifice of jealousy, a sacrifice of memorial, recalling sin to remembrance. + +And the priest shall bring her, and cause her to stand before the Lord. + +And the priest shall take pure running water in an earthen vessel, and he shall take of the dust that is on the floor of the tabernacle of witness, and the priest having taken it shall cast it into the water. + +And the priest shall cause the woman to stand before the Lord, and shall uncover the head of the woman, and shall put into her hands the sacrifice of memorial, the sacrifice of jealousy; and in the hand of the priest shall be the water of this conviction that brings the curse. + +And the priest shall adjure her, and shall say to the woman, If no one has lain with you, and if you have not transgressed so as to be polluted, being under the power of your husband, be free from this water of the conviction that causes the curse. + +But if being a married woman you have transgressed, or been polluted, and any one has lain with you, beside your husband: + +then the priest shall adjure the woman by the oaths of this curse, and the priest shall say to the woman, The Lord bring you into a curse and under an oath in the midst of your people, in that the Lord should cause your thigh to rot and your belly to swell; + +and this water bringing the curse shall enter into your womb to cause your belly to swell, and your thigh to rot. And the woman shall say, So be it, So be it. + +And the priest shall write these curses in a book, and shall blot them out +5:23 +Gr. +in. + with the water of the conviction that brings the curse. + +And he shall cause the woman to drink the water of the conviction that brings the curse; and the water of the conviction that brings the curse shall enter into her. + +And the priest shall take from the hand of the woman the sacrifice of jealousy, and shall present the sacrifice before the Lord, and shall bring it to the altar. + +And the priest shall take a handful of the sacrifice as a memorial of it, and shall offer it up upon the altar; and afterwards he shall cause the woman to drink the water. + +And it shall come to pass, if she be defiled, and have altogether escaped the notice of her husband, then the water of the conviction that brings the curse shall enter into her; and she shall swell in her belly, and her thigh shall rot, and the woman shall be for a curse in the midst of her people. + +But if the woman have not been polluted, and be clean, then shall she be guiltless and shall +5:28 +Gr. +give out seed. + conceive seed. + +This is the law of jealousy, wherein a married woman should happen to transgress, and be defiled; + +or in the case of a man on whoever the spirit of jealousy should come, and he should be jealous of his wife, and he should place his wife before the Lord, and the priest shall execute towards her all this law. + +Then the man shall be clear from sin, and that woman shall bear her sin. + +

+ + +

And the Lord spoke to Moses, saying, + +speak to the children of Israel, and you shall say to them, Whatsoever man or woman shall specially vow a vow to separate oneself with purity to the Lord, + +he shall purely abstain from wine and strong drink; and he shall drink no vinegar of wine or vinegar of strong drink; and whatever is made of the grape he shall not drink; neither shall he eat fresh grapes or raisins, + +all the days of his vow: he shall eat no one of all the things that come from the vine, wine from the grape-stones to the +6:4 +Gr. +grape-stones. + husk, + +all the days of his separation:—a razor shall not come upon his head, until the days be fulfilled which he vowed to the Lord: he shall be holy, cherishing the +6:5 +Gr. +a head of hair +even + hair, etc. + long hair of the head, + +all the days of his vow to the Lord: he shall not come near to any dead body, + +to his father or his mother, or to his brother or his sister; he shall not defile himself for them, when they have died, because the vow of God is upon him on his head. + +All the days of his vow he shall be holy to the Lord. + +And if any one should die suddenly by him, immediately the head of his vow shall be defiled; and he shall shave his head in whatever day he shall be purified: on the seventh day he shall be shaved. + +And on the eighth day he shall bring two turtledoves, or two young pigeons, to the priest, to the doors of the tabernacle of witness. + +And the priest shall offer one for a sin-offering; and the other for a whole burnt offering; and the priest shall make atonement for him in the things wherein he sinned respecting the dead body, and he shall sanctify his head in that day, + +in which he was consecrated to the Lord, +all the days of his vow; and he shall bring a lamb of a year old for a trespass-offering; and the former days shall not be reckoned, because the head of his vow was polluted. + +And this is the law of him that has vowed: in whatever day he shall have fulfilled the days of his vow, he shall himself bring his gift to the doors of the tabernacle of witness. + +And he shall bring his gift to the Lord; one he-lamb of a year old without blemish for a whole burnt offering, and one ewe-lamb of a year old without blemish for a sin-offering, and one ram without blemish for a peace-offering; + +and a basket of unleavened bread of fine flour, +even loaves kneaded with oil, and unleavened cakes anointed with oil, and their meat-offering, and their drink-offering. + +And the priest shall bring them before the Lord, and shall offer his sin-offering, and his whole burnt offering. + +And he shall offer the ram as a sacrifice of peace-offering to the Lord with the basket of unleavened bread; and the priest shall offer its meat-offering and its drink-offering. + +And he that has vowed shall shave the head of his consecration by the doors of the tabernacle of witness, and shall put the hairs on the fire which is under the sacrifice of peace-offering. + +And the priest shall take the sodden shoulder of the ram, and one unleavened loaf from the basket, and one unleavened cake, and shall put them on the hands of the votary after he has shaved off his +6:19 +Gr. +his vow, compare Acts 18:18. + + +And the priest shall present them as an offering before the Lord; it shall be the holy portion for the priest beside the breast of the heave-offering and beside the shoulder of the wave-offering: and afterwards the votary shall drink wine. + +This is the law of the votary who shall have vowed to the Lord his gift to the Lord, concerning his vow, besides what he may be able to afford according to the value of his vow, which he may have vowed according to the law of separation. + +And the Lord spoke to Moses, saying, + +Speak to Aaron and to his sons, saying, Thus you⌃ shall bless the children of Israel, saying to them, + +The Lord bless you and keep you; + +the Lord make his face to shine upon you, and have mercy upon you; + +the Lord lift up his countenance upon you, and give you peace. + +And they shall put my name upon the children of Israel, and I the Lord will bless them. + +

+ + +

And it came to pass in the day in which Moses finished +7:1 +Gr. +so as to set up. + the setting-up of the tabernacle, that he anointed it, and consecrated it, and all its furniture, and the altar and all its furniture, he even anointed them, and consecrated them. + +And the princes of Israel brought +gifts, twelve princes of their fathers' houses: these were the heads of tribes, these are they that presided over the numbering. + +And they brought their gift before the Lord, six covered wagons, and twelve oxen; a wagon from two princes, and a calf from each: and they brought them before the tabernacle. + +And the Lord spoke to Moses, saying, + +Take of them, and they shall be for the works of the services of the tabernacle of witness: and you shall give them to the Levites, to each one according to his ministration. + +And Moses took the wagons and the oxen, and gave them to the Levites. + +And he gave two wagons and four oxen to the sons of Gedson, according to their ministrations. + +And four wagons and eight oxen he gave to the sons of Merari according to their ministrations, by Ithamar the son of Aaron the priest. + +But to the sons of Caath he gave them not, because they have the ministrations of the sacred things: they shall bear them on their shoulders. + +And the rulers brought +gifts for the dedication of the altar, in the day in which he anointed it, and the rulers brought their gifts before the altar. + +And the Lord said to Moses, One chief each day, they shall offer their gifts a chief each day for the dedication of the altar. + +And he that offered his gift on the first day, was Naasson the son of Aminadab, prince of the tribe of Juda. + +And he brought his gift, one silver charger of one hundred and thirty shekels was its weight, one silver bowl, of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat-offering. + +One +7:14 +Gr. +one censer of ten golden +weights. + + golden censer of ten shekels full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering; + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he goats, five ewe-lambs of a year old: this +was the gift of Naasson the son of Aminadab. + +On the second day Nathanael son of Sogar, the prince of the tribe of Issachar, brought +his offering. + +And he brought his gift, one silver charger, its weight one hundred and thirty shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat-offering. + +One censer of ten golden shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice, a peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Nathanael the son of Sogar. + +On the third day the prince of the sons of Zabulon, Eliab the son of Chaelon. + + +He brought his gift, one silver charger, its weight one hundred and thirty shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat-offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Eliab the son of Chaelon. + +On the fourth day Elisur the son of Sediur, the prince of the children of Ruben. + + +He brought his gift, one silver charger, its weight one hundred and thirty shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat-offering. + +One golden censer of ten shekels full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Elisur the son of Sediur. + +On the fifth day the prince of the children of Symeon, Salamiel the son of Surisadai. + + +He brought his gift, one silver charger, its weight one hundred and thirty shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat-offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Salamiel the son of Surisadai. + +On the sixth day the prince of the sons of Gad, Elisaph the son of Raguel. + + +He brought his gift, one silver charger, its weight one hundred and thirty shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Elisaph the son of Raguel. + +On the seventh day the prince of the sons of Ephraim, Elisama the son of Emiud. + + +He brought his gift, one silver charger, its weight was one hundred and thirty shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat-offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Elisama the son of Emiud. + +On the eighth day the prince of the sons of Manasse, Gamaliel the son of Phadassur. + + +He brought his gift, one silver charger, its weight one hundred and thirty shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour mingled with oil for a meat-offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Gamaliel the son of Phadassur. + +On the ninth day the prince of the sons of Benjamin, Abidan the son of Gadeoni. + + +He brought his gift, one silver charger, its weight one hundred and thirty +shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour mingled with oil for a meat-offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Abidan the son of Gadeoni. + +On the tenth day the prince of the sons of Dan, Achiezer the son of Amisadai. + + +He brought his gift, one silver charger, its weight one hundred and thirty +shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour kneaded with oil for a meat-offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old. This +was the gift of Achiezer the son of Amisadai. + +On the eleventh day the prince of the sons of Aser, Phageel the son of Echran. + + +He brought his gift, one silver charger, its weight one hundred and thirty +shekels, one silver bowl of seventy shekels according to the holy shekel; both full of fine flour mingled with oil for a meat-offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Phageel the son of Echran. + +On the twelfth day the prince of the sons of Nephthali, Achire the son of Aenan. + + +He brought his gift, one silver charger, its weight one hundred and thirty shekels; one silver bowl of seventy shekels according to the holy shekel; both full of fine flour mingled with oil for a meat offering. + +One golden censer of ten shekels, full of incense. + +One calf of the herd, one ram, one he-lamb of a year old for a whole burnt offering, + +and one kid of the goats for a sin-offering. + +And for a sacrifice of peace-offering, two heifers, five rams, five he-goats, five ewe-lambs of a year old: this +was the gift of Achire the son of Aenan. + +This was the dedication of the altar in the day in which +Moses anointed it, by the princes of the sons of Israel; twelve silver chargers, twelve silver bowls, twelve golden censers: + + +7:85 +Gr. +one. + each charger of one hundred and thirty shekels, and each bowl of seventy shekels: all the silver of the vessels +was two thousand four hundred shekels, the shekels according to the holy shekel. + +Twelve golden censers full of incense: all the gold of the shekels, one hundred and twenty shekels. + +All the +7:87 +Gr. +cows. +cattle for whole burnt offerings, twelve calves, twelve rams, twelve he-lambs of a year old, and their meat-offerings, and their drink-offerings: and twelve kids of the goats for sin-offering. + +All the cattle for a sacrifice of peace-offering, twenty-four heifers, sixty rams, sixty he-goats of a year old, sixty ewe-lambs of a year old without blemish: this is the dedication of the altar, after that +Moses +7:88 +Gr. +filled his hands. + consecrated +Aaron, and after he anointed him. + +When Moses went into the tabernacle of witness to speak to +7:89 +Gr. +him. + God, then he heard the voice of the Lord speaking to him from off the mercy-seat, which is upon the ark of the testimony, between the two cherubs; and he spoke to him. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to Aaron, and you shall say to him, Whenever you shall set the lamps in order, the seven lamps shall give light opposite the candlestick. + +And Aaron did so: on one side opposite the candlestick he lighted its lamps, as the Lord appointed Moses. + +And this +is the +8:4 +Or, +Appointment, or arrangement. + construction of the candlestick: +it is solid, golden—its stem, and its lilies—all solid: according to the pattern which the Lord showed Moses, so he made the candlestick. + +And the Lord spoke to Moses, saying, + +Take the Levites out of the midst of the children of Israel, and you shall purify them. + +And thus shall you perform their purification: you shall sprinkle them with water of purification, and a razor shall come upon the whole of their body, and they shall wash their garments, and shall be clean. + +And they shall take one calf of the herd, and its meat-offering, fine flour mingled with oil: and you shall take a calf of a year old of the herd for a sin-offering. + +And you shall bring the Levites before the tabernacle of witness; and you shall assemble all the congregation of the sons of Israel. + +And you shall bring the Levites before the Lord; and the sons of Israel shall lay their hands upon the Levites. + +And Aaron shall separate the Levites for a gift before the Lord from the children of Israel: and they shall be prepared +8:11 +Gr. +so as to perform. + to perform the works of the Lord. + +And the Levites shall lay their hands on the heads of the calves; and you shall offer one for a sin-offering, and the other for a whole burnt offering to the Lord, to make atonement for them. + +And you shall set the Levites before the Lord, and before Aaron, and before his sons; and you shall give them as a gift before the Lord. + +And you shall separate the Levites from the midst of the sons of Israel, and they shall be mine. + +And afterwards the Levites shall go in to perform the works of the tabernacle of witness; and you shall purify them, and present them before the Lord. + +For these are given to me for a present out of the midst of the children of Israel: I have taken them to myself instead of all the firstborn of the sons of Israel that open every womb. + +For every firstborn among the children of Israel +is mine, whether of man or beast: in the day in which I struck every firstborn in the land of Egypt, I sanctified them to myself. + +And I took the Levites in the place of every firstborn among the children of Israel. + +And I gave the Levites presented as a gift to Aaron and his sons out of the midst of the children of Israel, to do the service of the children of Israel in the tabernacle of witness, and to make atonement for the children of Israel: thus there shall be none among the sons of Israel to draw near to the holy things. + +And Moses and Aaron, and all the congregation of the children of Israel, did to the Levites as the Lord commanded Moses concerning the Levites, so the sons of Israel did to them. + +So the Levites purified themselves and washed their garments; and Aaron presented them as a gift before the Lord, and Aaron made atonement for them to purify them. + +And afterwards the Levites went in to minister in their service in the tabernacle of witness before Aaron, and before his sons; as the Lord appointed Moses concerning the Levites, so they did to them. + +And the Lord spoke to Moses, saying, + +This is the +ordinance for the Levites; From five and twenty years old and upward, they shall go in to +8:24 +Gr. +do the work. + minister in the tabernacle of witness. + +And from fifty years old +the Levites shall cease from the ministry, and shall not work any longer. + +And his brother shall serve in the tabernacle of witness to keep charges, but he shall not do works: so shall you do to the Levites in their charges. + +

+ + +

And the Lord spoke to Moses in the wilderness of Sina in the second year after they had gone forth from the land of Egypt, in the first month, saying, + +Speak, and let the children of Israel keep the passover in its season. + +On the fourteenth day of the first month at even, you shall keep it in its season; you shall keep it according to its law, and according to its ordinance. + +And Moses ordered the children of Israel to sacrifice the passover, + +on the fourteenth day of the first month in the wilderness of Sina, as the Lord appointed Moses, so the children of Israel did. + +And there came men who were unclean by reason of a dead body, and they were not able to keep the passover on that day; and they came before Moses and Aaron on that day. + +And those men said to +9:7 +Gr. +him. + Moses, We are unclean by reason of the dead body of a man: shall we therefore fail to offer the gift to the Lord in its season in the midst of the children of Israel? + +And Moses said to them, stand there, and I will hear what charge the Lord will give concerning you. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, saying, Whatever man shall be unclean by reason of a dead body, or on a journey far off, among you, or among your posterity; he shall then keep the passover to the Lord, + +in the second month, on the fourteenth day; in the evening they shall offer it, with unleavened bread and bitter herbs shall they eat it. + +They shall not leave of it until the morrow, and they shall not break a bone of it; they shall sacrifice it according to the ordinance of the passover. + +And whatever man shall be clean, and is not far off on a journey, and shall fail to keep the passover, that soul shall be cut off from his people, because he has not offered the gift to the Lord in its season: that man shall bear his iniquity. + +And if there should come to you a stranger in your land, and should keep the passover to the Lord, he shall keep it according to the law of the passover and according to its ordinance: there shall be one law for you, both for the stranger, and for the native of the land. + +And in the day in which the tabernacle was pitched the cloud covered the tabernacle, the +9:15 +Gr. +house. + place of the testimony; and in the evening there was upon the tabernacle as the appearance of fire till the morning. + +So it was continually: the cloud covered it by day, and the appearance of fire by night. + +And when the cloud went up from the tabernacle, then after that the children of Israel departed; and in whatever place the cloud rested, there the children of Israel encamped. + +The children of Israel shall encamp by the command of the Lord, and by the command of the Lord they shall remove: all the days in which the cloud overshadows the tabernacle, the children of Israel shall encamp. And whenever the cloud shall be drawn over the tabernacle for many days, then the children of Israel shall keep the charge of God, and they shall not remove. + +And it shall be, whenever the cloud overshadows the tabernacle +9:19 +Gr. +days by number. + a number of days, they shall encamp by the word of the Lord, and shall remove by the command of the Lord. + +And it shall come to pass, whenever the cloud shall remain from the evening till the morning, and in the morning the cloud shall go up, then shall they remove by day or by night. + +When the cloud continues +9:21 +Or, +more than a month. + a full month overshadowing the tabernacle, the children of Israel shall encamp, and shall not depart. + +For they shall depart by the command of the Lord: - they kept the charge of the Lord by the command of the Lord by the hand of Moses. + +

+ + +

And the Lord spoke to Moses, saying, + +Make to yourself two silver trumpets: you shall make them of beaten work; and they shall be to you for the purpose of calling the assembly, and of removing the +10:2 +i.e. +the successive encampments. + camps. + +And you shall sound with them, and all the congregation shall be gathered to the door of the tabernacle of witness. + +And if they shall sound with one, all the rulers even the princes of Israel shall come to you. + +And you⌃ shall sound an alarm, and the camps pitched eastward shall begin to move. + +And you⌃ shall sound a second alarm, and the camps pitched southward shall move; and you⌃ shall sound a third alarm, and the camps pitched westward shall move forward; and you⌃ shall sound a fourth alarm, and they that encamp toward the north shall move forward: they shall sound an alarm at their departure. + +And whenever you⌃ shall gather the assembly, you⌃ shall sound, but not an alarm. + +And the priests the sons of Aaron shall sound with the trumpets; and it shall be a perpetual ordinance for you throughout your generations. + +And if you⌃ shall go forth to war in your land against your enemies that are opposed to you, then shall you⌃ sound with the trumpets; and you⌃ shall be had in remembrance before the Lord, and you⌃ shall be saved from your enemies. + +And in the days of your gladness, and in your feasts, and in your new moons, you⌃ shall sound with the trumpets at your whole burnt offerings, and at the sacrifices of your peace-offerings; and there shall be a memorial for you before your God: I +am the Lord your God. + +And it came to pass in the second year, in the second month, on the twentieth day of the month, the cloud went up from the tabernacle of witness. + +And the children of Israel set forward with their baggage in the wilderness of Sina; and the cloud rested in the wilderness of Pharan. + +And the first rank departed by the word of the Lord by the hand of Moses. + +And they first set in motion the order of the camp of the children of Juda with their host; and over their host +was Naasson, son of Aminadab. + +And over the host of the tribe of the sons of Issachar, +was Nathanael son of Sogar. + +And over the host of the tribe of the sons of Zabulon, +was Eliab the son of Chaelon. + +And they shall take down the tabernacle, and the sons of Gedson shall set forward, and the sons of Merari, who bear the tabernacle. + +And the order of the camp of Ruben set forward with their host; and over their host +was Elisur the son of Sediur. + +And over the host of the tribe of the sons of Symeon, +was Salamiel son of Surisadai. + +And over the host of the tribe of the children of Gad, +was Elisaph the son of Raguel. + +And the sons of Caath shall set forward bearing the holy things, and +10:21 +i.e. +the Gershonites and the Merarites. +A.V. +margin. +the others shall set up the tabernacle until they arrive. + +And the order of the camp of Ephraim shall set forward with their forces; and over their forces +was Elisama the son of Semiud. + +And over the forces of the tribes of the sons of Manasse, +was Gamaliel the +son of Phadassur. + +And over the forces of the tribe of the children of Benjamin, +was Abidan the +son of Gadeoni. + +And the order of the camp of the sons of Dan shall set forward the last of all the camps, with their forces: and over their forces +was Achiezer the +son of Amisadai. + +And over the forces of the tribe of the sons of Aser, +was Phageel the son of Echran. + +And over the forces of the tribe of the sons of Nephthali, +was Achire the son of Aenan. + +These +are the armies of the children of Israel; and they set forward with their forces. + +And Moses said to Obab the son of Raguel the Madianite, the father-in-law of Moses, We are going forward to the place concerning which the Lord said, This will I give to you: Come with us, and we will do you good, for the Lord has spoken good concerning Israel. + +And he said to him, I will not go, but +I will go to my land and to my kindred. + +And he said, Leave us not, because you have been with us in the wilderness, and you shall be an elder among us. + +And it shall come to pass if you will go with us, it shall even come to pass that in whatever things the Lord shall do us good, we will also do you good. + +And they departed from the mount of the Lord a three days' journey; and the ark of the covenant of the Lord went before them a three days' journey to provide rest for them. + +And the cloud overshadowed them by day, when they departed from the camp. + +And it came to pass when the ark set forward, that Moses said, Arise, O Lord, and let your enemies be scattered: let all that hate you flee. + +And in the resting he said, Turn again, O Lord, the thousands +and tens of thousands in Israel. + +

+ + +

And the people murmured sinfully before the Lord; and the Lord heard +them and was very angry; and fire was kindled among them from the Lord, and devoured a part of the camp. + +And the people cried to Moses: and Moses prayed to the Lord, and the fire was quenched. + +And the name of that place was called +11:3 +Heb. Taberah. + Burning; for a fire was kindled among them from the Lord. + +And the mixed multitude among them lusted +11:4 +Gr. +lusted a lust. + exceedingly; and they and the children of Israel sat down and wept and said, Who shall give us flesh to eat? + +We remember the fish, which we ate in Egypt freely; and the cucumbers, and the +11:5 +Or, +pumpkins. + melons, and the leeks, and the garlic, and the onions. + +But now our soul is dried up; our eyes +turn to nothing but to the manna. + +And the manna is as coriander seed, and the appearance of it the appearance of hoarfrost. + +And the people went through the field, and gathered, and ground it in the mill, or pounded it in a mortar, and baked it in a pan, and made cakes of it; and the sweetness of it was as the taste +of wafer made with oil. + +And when the dew came upon the camp by night, the manna came down upon it. + +And Moses heard them weeping by their families, every one in his door: and the Lord was very angry; and the thing was evil in the sight of Moses. + +And Moses said to the Lord, Why have you afflicted your servant, and why have I not found grace in your sight, that you should lay the weight of this people upon me? + +Have I conceived all this people, or have I born them? that you say to me, Take them into your bosom, as a nurse would take her suckling, into the land which you swore to their fathers? + +Whence have I flesh to give to all this people? for they weep to me, saying, Give us flesh, that we may eat. + +I shall not be able to bear this people alone, for this thing is too heavy for me. + +And if you do thus to me, kill me utterly, if I have found favor with you, that I may not see my affliction. + +And the Lord said to Moses, Gather me seventy men from the elders of Israel, whom you yourself know that they are the elders of the people, and their scribes; and you shall bring them to the tabernacle of witness, and they shall stand there with you. + +And I will go down, and speak there with you; and I will take of the spirit that is upon you, and will put it upon them; and they shall bear together with you the +11:17 +Or, +impetus. + burden of the people, and you shall not bear them alone. + +And to the people you shall say, Purify yourselves for the morrow, and you⌃ shall eat flesh; for you⌃ wept before the Lord, saying, Who shall give us flesh to eat? for it +11:18 +Gr. +is. + was well with us in Egypt: and the Lord shall allow you to eat flesh, and you⌃ shall eat flesh. + +You⌃ shall not eat one day, nor two, nor five days, nor ten days, nor twenty days; + +you⌃ shall eat for +11:20 +Gr. +a month of days. + a full month, until +the flesh come out at your nostrils; and it shall be +11:20 +Lit. +cholera. + nausea to you, because you⌃ disobeyed the Lord, who is among you, and wept before him, saying, What had we to do to come out of Egypt? + +And Moses said, The people among whom I am are six hundred thousand footmen; and you said, I will give them flesh to eat, and they shall eat a whole month. + +Shall sheep and oxen be slain for them, and shall it suffice them? or shall all the fish of the sea be gathered together for them, and shall it suffice them? + +And the Lord said to Moses, Shall not the hand of the Lord be fully sufficient? now shall you know whether my word shall +11:23 +Gr. +will overtake you. + come to pass to you or not. + +And Moses went out, and spoke the words of the Lord to the people; and he gathered seventy men of the elders of the people, and he set them round about the tabernacle. + +And the Lord came down in a cloud, and spoke to him, and took of the spirit that was upon him, and put it upon the seventy men that were elders; and when the spirit rested upon them, they prophesied and ceased. + +And there were two men left in the camp, the name of the one was Eldad, and the name of the other Modad; and the spirit rested upon them, and these were of the number of them that were enrolled, but they did not come to the tabernacle; and they prophesied in the camp. + +And a young man ran and told Moses, and spoke, saying, Eldad and Modad prophesy in the camp. + +And Joshua the son of Naue, who attended on Moses, the chosen one, said, +My lord Moses, forbid them. + +And Moses said to him, Are you jealous on my account? and would that all the Lord's people were prophets; whenever the Lord shall put his spirit upon them. + +And Moses departed into the camp, himself and the elders of Israel. + +And there went forth a wind from the Lord, and brought quails over from the sea; and it brought them down upon the camp a day's journey on this side, and a day's journey on that side, round about the camp, as it were two cubits from the earth. + +And the people rose up all the day, and all the night, and all the next day, and gathered quails; he that gathered +11:32 +Gr. +little. + least, gathered ten +11:32 +Gr. +cors. + measures; and they +11:32 +Gr. +refreshed refreshments to themselves. +Heb. spread a spreading. וישמחו שמוח + refreshed themselves round about the camp. + +The flesh was yet between their teeth, before it failed, when the Lord was angry with the people, and the Lord struck the people with a very great plague. + +And the name of that place was called the Graves of Lust; for there they buried the people that lusted. + +The people departed from the +11:35 +Heb. קכווה החאוה Kibroth-hattaavah. + Graves of Lust to Aseroth; and the people +11:35 +Gr. +were in. + halted at Aseroth. + +

+ + +

And Mariam and Aaron spoke against Moses, because of the Ethiopian woman whom Moses took; for he had taken an Ethiopian woman. + +And they said, Has the Lord spoken to Moses only? has he not also spoken to us? and the Lord heard it. + +And the man Moses was very meek beyond all the men that were upon the earth. + +And the Lord said immediately to Moses and Aaron and Mariam, Come forth +12:4 +Gr. +the three. + all three of you to the tabernacle of witness. + +And the three came forth to the tabernacle of witness; and the Lord descended in a pillar of a cloud, and stood at the door of the tabernacle of witness; and Aaron and Mariam were called; and both came forth. + +And he said to them, Hear my words: If there should be of you a prophet to the Lord, I will be made known to him in a vision, and in sleep will I speak to him. + +My servant Moses +is not so; he is faithful in all my house. + +I will speak to him mouth to mouth apparently, and not in dark speeches; and he has seen the glory of the Lord; and why were you⌃ not afraid to speak against my servant Moses? + +And the great anger of the Lord +was upon them, and he departed. + +And the cloud departed from the tabernacle; and, behold, Mariam was leprous, +white as snow; and Aaron looked upon Mariam, and, behold, she +was leprous. + +And Aaron said to Moses, I beseech you, my lord, do not lay sin upon us, for we were ignorant wherein we sinned. + +Let her not be as it were like death, as an abortion coming out of his mother's womb, when +the disease devours the half of the flesh. + +And Moses cried to the Lord, saying, O God, I beseech you, heal her. + +And the Lord said to Moses, If her father had only spit in her face, +12:14 +Gr. +will. + would she not be ashamed seven days? let her be set apart seven days without the camp, and afterwards she shall come in. + +And Mariam was separated without the camp seven days; and the people moved not forward till Mariam was cleansed. + +

+ + +

And afterwards the people set forth from Aseroth, and encamped in the wilderness of Pharan. + +And the Lord spoke to Moses, saying, + +Send for you men, and let them spy the land of the Chananites, which I give to the sons of Israel for a possession; one man for a tribe, you shall send them away according to their families, every one of them a prince. + +And Moses sent them out of the wilderness of Pharan by the word of the Lord; all these +were the princes of the sons of Israel. + +And these +are their names: of the tribe of Ruben, Samuel the son of Zachur. + +Of the tribe of Symeon, Saphat the son of Suri. + +Of the tribe of Judah, Chaleb the son of Jephonne. + +Of the tribe of Issachar, Ilaal the son of Joseph. + +Of the tribe of Ephraim, Ause the son of Naue. + +Of the tribe of Benjamin, Phalti the son of Raphu. + +Of the tribe of Zabulon, Gudiel the son of Sudi. + +Of the tribe of Joseph of the sons of Manasse, Gaddi the son of Susi. + +Of the tribe of Dan, Amiel the son of Gamali. + +Of the tribe of Aser, Sathur the son of Michael. + +Of the tribe of Nephthali, Nabi the son of Sabi. + +Of the tribe of Gad, Gudiel the son of Macchi. + +These +are the names of the men whom Moses sent to spy out the land; and Moses called Ause the son of Naue, Joshua. + +And Moses sent them to spy out the land of Chanaan, and said to them, Go up by this wilderness; and you⌃ shall go up to the mountain, + +and you⌃ shall see the land, what it is, and the people that dwells on it, whether it is strong or weak, or +whether they are few or many. + +And what the land is on which they dwell, +whether it is good or bad; and what the cities are wherein these dwell, whether they dwell in walled +cities or unwalled. + +And what the land is, whether rich or +13:21 +Gr. q. d. +neglected + poor; whether there are trees in it or no: and you⌃ shall persevere and take of the fruits of the land: and the days +were the days of spring, the forerunners of the grape. + +And they went up and surveyed the land from the wilderness of Sin to Rhoob, as men go in to Aemath. + +And they went up by the wilderness, and departed as far as Chebron; and there +was Achiman, and Sessi, and Thelami, the progeny of Enach. Now Chebron was built seven years before Tanin of Egypt. + +And they came to the valley of the cluster and surveyed it; and they cut down thence a bough and one cluster of grapes upon it, and bore it on staves, and +they took of the pomegranates and the figs. + +And they called that place, The valley of the cluster, because of the cluster which the children of Israel cut down from thence. + +And they returned from thence, having surveyed the land, after forty days. + +And they proceeded and came to Moses and Aaron and all the congregation of the children of Israel, to the wilderness of Pharan Cades; and they brought word to them and to all the congregation, and they showed the fruit of the land: + +and they reported to him, and said, We came into the land into which you sent us, a land flowing with milk and honey; and this is the fruit of it. + +Only the nation that dwells upon it is bold, and they have very great and strong walled towns, and we saw there the children of Enach. + +And Amalec dwells in the land toward the south: and the Chettite and the Evite, and the Jebusite, and the Amorite dwells in the hill country: and the Chananite dwells by the sea, and by the river Jordan. + +And Chaleb stayed the people from speaking +13:31 +Or, +to. + before Moses, and said to him, Nay, but we will go up by all means, and will inherit it, for we shall surely prevail against them. + +But the men that went up together with him said, We +13:32 +Gr. +do not. + will not go up, for we shall not by any means be able to go up against the nation, for it is much stronger than we. + +And they brought a horror of that land which they surveyed upon the children of Israel, saying, The land which we passed by to survey it, is a land that eats up its inhabitants; and all the people whom we saw in it are men of extraordinary stature. + +And there we saw the giants; and we were before them as locusts, yes even so were we before them. + +

+ + +

And all the congregation lifted up their voice and cried; and the people wept all that night. + +And all the children of Israel murmured against Moses and Aaron; and all the congregation said to them, + +Would we had died in the land of Egypt! or in this wilderness, would we had died! and why does the Lord bring us into this land to fall in war? our wives and our children shall be for a prey: now then it is better to return into Egypt. + +And they said one to another, Let us make a ruler, and return into Egypt. + +And Moses and Aaron fell upon their face before all the congregation of the children of Israel. + +But Joshua the +son of Naue, and Chaleb the +son of Jephonne, of +the number of them that spied out the land, tore their garments, + +and spoke to all the congregation of the children of Israel, saying, The land which we surveyed is indeed extremely good. + +If the Lord choose us, he will bring us into this land, and give it us; a land which flows with milk and honey. + +Only depart not from the Lord; and fear you⌃ not the people of the land, for they are meat for us; for the season +of prosperity is departed from them, but the Lord +is among us: fear them not. + +And all the congregation bade stone them with stones; and the glory of the Lord appeared in the cloud on the tabernacle of witness to all the children of Israel. + +And the Lord said to Moses, How long does this people provoke me? and how long do they +14:11 +Gr. +not believe me. + refuse to believe me for all the signs which I have wrought among them? + +I will strike them with death, and destroy them; and I will make of you and of your father's house a great nation, and much greater than this. + +And Moses said to the Lord, So Egypt shall hear, for you have brought up this people from them by your might. + +Moreover all the dwellers upon this land have heard that you are Lord in the midst of this people, who, O Lord, are seen +by them face to face, and your cloud rests upon them, and you go before them by day in a pillar of a cloud, and by night in a pillar of fire. + +And +if you shall destroy this nation as one man; then all the nations that have heard your name shall speak, saying, + +Because the Lord could not bring this people into the land which he swore to them, he has overthrown them in the wilderness. + +And now, O Lord, let your strength be exalted, as you spoke, saying, + +The Lord +is longsuffering and merciful, and true, removing transgressions and iniquities and sins, and he will by no means clear the guilty, visiting the sins of the fathers upon the children to the third and fourth generation. + +Forgive this people their sin according to your great mercy, as you were favourable to them from Egypt until now. + +And the Lord said to Moses, I am gracious to them according to your word. + +But +as I live and my name is living, so the glory of the Lord shall fill all the earth. + +For all the men who see my glory, and the signs which I wrought in Egypt, and in the wilderness, and have tempted me this tenth time, and have not listened to my voice, + +surely they shall not see the land, which I swore to their fathers; but their children which are with me here, as many as know not good or evil, every inexperienced youth, to them will I give the land; but none who have provoked me shall see it. + +But my servant Chaleb, because there was another spirit in him, and he followed me, I will bring him into the land into which he entered, and his seed shall inherit it. + +But Amalec and the Chananite dwell in the valley: to-morrow turn and depart for the wilderness by the way of the Red Sea. + +And the Lord spoke to Moses and Aaron, saying, + +How long +shall I endure this wicked congregation? I have heard their murmurings against me, +even the murmuring of the children of Israel, which they have murmured concerning you. + +Say to them, +As I live, says the Lord: surely as you⌃ spoke into my ears, so will I do to you. + +Your carcasses shall fall in this wilderness; and all those of you that were reviewed, and those of you that were numbered from twenty years old and upward, all that murmured against me, + +you⌃ shall not enter into the land for which I stretched out my hand to establish you upon it; except only Chaleb the son of Jephonne, and Joshua the +son of Naue. + +And your little ones, who you⌃ said should be a prey, them will I bring into the land; and they shall inherit the land, +14:31 +Gr. +from which you⌃ turned away. + which you⌃ rejected. + +And your carcasses shall fall in this wilderness. + +And your sons shall be fed in the wilderness forty years, and they shall bear your fornication, until your carcasses be consumed in the wilderness. + +According to the number of the days during which you⌃ spied the land, forty days, a day for a year, you⌃ shall bear your sins forty years, and you⌃ shall know my fierce anger. + +I the Lord have spoken, Surely will I do thus to this evil congregation +14:35 +See ἐπισύστασις 2. Cor 11:28. + that has risen up together against me: in this wilderness they shall be utterly consumed, and there they shall die. + +And the men whom Moses sent to spy out the land, and who came and murmured against it to the assembly so as to bring out evil words concerning the land, — + +the men that spoke evil reports against the land, even died of the plague before the Lord. + +And Joshua the son of Naue and Chaleb the son of Jephonne +still lived of those men that went to spy out the land. + +And Moses spoke these words to all the children of Israel; and the people mourned exceedingly. + +And they rose early in the morning and went up to the top of the mountain, saying, Behold, we +14:40 +Gr. +these men. + that are here will go up to the place of which the Lord has spoken, because we have sinned. + +And Moses said, Why do you⌃ transgress the word of the Lord? you⌃ shall not prosper. + +Go not up, for the Lord is not with you; so shall you⌃ fall before the face of your enemies. + +For Amalec and the Chananite +are there before you, and you⌃ shall fall by the sword; because you⌃ have disobeyed the Lord and turned aside, and the Lord will not be among you. + +And having forced their passage, they went up to the top of the mountain; but the ark of the covenant of the Lord and Moses stirred not out of the camp. + +And Amalec and the Chananite that lived in that mountain came down, and routed them, and destroyed them to Herman; and they returned to the camp. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, When you⌃ are come into the land of your habitation, which I give to you, + +and you will offer whole burnt offerings to the Lord, a whole burnt offering or a meat-offering to +15:3 +Gr. +magnify. + perform a vow, or a free-will offering, or to offer in your feasts a sacrifice of sweet savor to the Lord, whether of the herd or the flock: + +then he that offers his gift to the Lord shall bring a meat-offering of fine flour, a tenth part of an ephah mingled with oil, even with the fourth part of a hin. + +And for a drink-offering you⌃ shall offer the fourth part of a hin on the whole burnt offering, or on the meat-offering: for every lamb you shall offer so much, as a sacrifice, a smell of sweet savor to the Lord. + +And for a ram, when you⌃ offer it as a whole burnt offering or as a sacrifice, you shall prepare as a meat-offering two tenths of fine flour mingled with oil, the third part of a hin. + +And you⌃ shall offer for a smell of sweet savor to the Lord wine for a drink-offering, the third part of a hin. + +And if you⌃ sacrifice +a bullock from the herd for a whole burnt offering or for a sacrifice, to perform a vow or a peace-offering to the Lord, + +then +the worshipper shall offer upon the calf a meat-offering, three tenth deals of fine flour mingled with oil, +even the half of a hin. + +And wine for a drink-offering the half of a hin, a sacrifice for a smell of sweet savor to the Lord. + +Thus shall you do to one calf or to one ram, or to one lamb of the sheep or kid of the goats. + +According to the number of what you⌃ shall offer, so shall you⌃ do to each one, according to their number. + +Every native of the country shall do thus to offer such things as sacrifices for a smell of sweet savor to the Lord. + +And if there should be a stranger among you in your land, or one who should be born to you among your generations, and he will offer a sacrifice, a smell of sweet savor to the Lord—as you⌃ do, so the +whole congregation shall offer to the Lord. + +There shall be one law for you and for the strangers dwelling among you, a perpetual law for your generations: as you⌃ +are, so shall the stranger be before the Lord. + +There shall be one law and one ordinance for you, and for the stranger that abides among you. + +And the Lord spoke to Moses, saying, + +Speak to the sons of Israel, and you shall say to them, When you⌃ are entering into the land, into which I bring you, + +then it shall come to pass, when you⌃ shall eat of the bread of the land, you⌃ shall separate a wave-offering, a special offering to the Lord, the first fruits of your dough. + +You⌃ shall offer your bread a heave-offering: as a heave-offering from the threshing floor, so shall you⌃ separate it, + +even the first fruits of your dough, and you⌃ shall give the Lord a heave-offering throughout your generations. + +But whenever you⌃ shall transgress, and not perform all these commands, which the Lord spoke to Moses; + +as the Lord appointed you by the hand of Moses, from the day which the Lord appointed you and forward throughout your generations, + +then it shall come to pass, if a trespass be committed unwillingly, unknown to the congregation, then shall all the congregation offer a calf of the herd without blemish for a whole burnt offering of sweet savor to the Lord, and its meat-offering and its drink-offering according to the ordinance, and one kid of the goats for a sin-offering. + +And the priest shall make atonement for all the congregation of the children of Israel, and +the trespass shall be forgiven them, because it is involuntary; and they have brought their gift, a burnt offering to the Lord for their trespass before the Lord, even for their involuntary sins. + +And it shall be forgiven as respects all the congregation of the children of Israel, and the stranger that is dwelling among you, because +it is involuntary to all the people. + +And if one soul sin unwillingly, he shall bring one she-goat of a year old for a sin-offering. + +And the priest shall make atonement for the soul that committed the trespass unwillingly, and that sinned unwillingly before the Lord, to make atonement for him. + +There shall be one law for the native among the children of Israel, and for the stranger that abides among them, whoever shall commit a trespass unwillingly. + +And whatever soul either of the natives or of the strangers shall do any thing with a presumptuous hand, he will provoke God; that soul shall be cut off from his people, + +for he has set at nothing the word of the Lord and broken his commands: that soul shall be utterly destroyed, his sin +is upon him. + +And the children of Israel were in the wilderness, and they found a man gathering sticks on the sabbath-day. + +And they who found him gathering sticks on the sabbath-day brought him to Moses and Aaron, and to all the congregation of the children of Israel. + +And they placed him in custody, for they did not determine what they should do to him. + +And the Lord spoke to Moses, saying, Let the man be by all means put to death: +do you⌃ all the congregation, stone him with stones. + +And all the congregation brought him forth out of the camp; and all the congregation stoned him with stones outside the camp, as the Lord commanded Moses. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall tell them; and let them make for themselves fringes upon the borders of their garments throughout their generations: and you⌃ shall put upon the fringes of the borders a lace of blue. + +And it shall be on your fringes, and you⌃ shall look on them, and you⌃ shall remember all the commands of the Lord, and do them: and you⌃ shall not turn back after your imaginations, and after +the sight of your eyes in the things after which you⌃ go a whoring; + +that you⌃ may remember and perform all my commands, and you⌃ shall be holy to your God. + +I +am the Lord your God that brought you out of the land of Egypt, to be your God: I +am the Lord your God. + +

+ + +

And Core the son of Isaar the son of Caath the son of Levi, and Dathan and Abiron, sons of Eliab, and Aun the son of Phaleth the son of Ruben, spoke; + +and rose up before Moses, and two hundred and fifty men of the sons of Israel, chiefs of the assembly, chosen councillors, and men of renown. + +They rose up against Moses and Aaron, and said, Let it be enough for you that all the congregation +are holy, and the Lord +is among them; and why do you⌃ set up yourselves against the congregation of the Lord? + +And when Moses heard it, he fell on his face. + +And he spoke to Core and all his assembly, saying, God has visited and known those that are his and who are holy, and has brought them to himself; and whom he has chosen for himself, he has brought to himself. + +This do you⌃: take to yourselves censers, Core and all his company; + +and put fire on them, and put incense on them before the Lord to-morrow; and it shall come to pass that the man whom the Lord has chosen, he shall be holy: let it be enough for you, you⌃ sons of Levi. + +And Moses said to Core, Listen to me, you⌃ sons of Levi. + +Is it a little thing for you, that the God of Israel has separated you from the congregation of Israel, and brought you near to himself to minister in the services of the tabernacle of the Lord, and to stand before the tabernacle to minister for them? + +And he has brought you near and all your brethren the sons of Levi with you, and do you⌃ seek to be priests also? + +Thus +it is with you and all your congregation which is gathered together against God: and who is Aaron, that you⌃ murmur against him? + +And Moses sent to call Dathan and Abiron sons of Eliab; and they said, We +16:12 +Gr. +do not. + will not go up. + +Is it a little thing that you have brought us up +16:13 +Some read, out of. + to a land flowing with milk and honey, to kill us in the wilderness, +and that you altogether rule over us? + +You are a prince, and have you brought us into a land flowing with milk and honey, and have you given us an inheritance of land and vineyards? would you have +16:14 +Gr. +cut out. + put out the eyes of those men? we +16:14 +Gr. +do not. + will not go up. + +And Moses was exceeding indignant, and said to the Lord, Do you take no heed to their sacrifice: I have not taken away +16:15 +חפד for חפוד + the desire of any one of them, neither have I hurt any one of them. + +And Moses said to Core, Sanctify your company, and be ready before the Lord, you and Aaron and they, to-morrow. + +And take each man his censer, and you⌃ shall put incense upon them, and shall bring each one his censer before the Lord, two hundred and fifty censers, and you and Aaron shall bring each his censer. + +And each man took his censer, and they put on them fire, and laid incense on them; and Moses and Aaron stood by the doors of the tabernacle of witness. + +And Core raised up against them all his company by the door of the tabernacle of witness; and the glory of the Lord appeared to all the congregation. + +And the Lord spoke to Moses and Aaron, saying, + +Separate your selves from the midst of this congregation, and I will consume them at once. + +And they fell on their faces, and said, O God, the God of spirits and of all flesh, if one man has sinned, +shall the wrath of the Lord +be upon the whole congregation? + +And the Lord spoke to Moses, saying, + +Speak to the congregation, saying, Depart from the company of Core round about. + +And Moses rose up and went to Dathan and Abiron, and all the elders of Israel went with him. + +And he spoke to the congregation, saying, Separate yourselves from the tents of these stubborn men, and touch nothing that belongs to them, lest you⌃ be consumed with them in all their sin. + +And they stood aloof from the tent of Core round about; and Dathan and Abiron went forth and stood by the doors of their tents, and their wives and their children and their store. + +And Moses said, Hereby shall you⌃ know that the Lord has sent me to perform all these works, that +I have not +done them of myself. + +If these men shall die according to the death of all men, if also their visitation shall be according to the visitation of all men, then the Lord has not sent me. + +But if the Lord shall show by a +16:30 +Or, +vision. Some copies read χάσματι + wonder, and the earth shall open her mouth and swallow them up, and their houses, and their tents, and all that belongs to them, and they shall go down alive into Hades, then you⌃ shall know that these men have provoked the Lord. + +And when he ceased speaking all these words, the ground clave asunder beneath them. + +And the ground opened, and swallowed them up, and their houses, and all the men that were with Core, and their cattle. + +And they went down and all that they had, alive into Hades; and the ground covered them, and they perished from the midst of the congregation. + +And all Israel round about them fled from the sound of them, for +16:34 +Gr. +saying. + they said, Lest the earth swallow us up +also. + +And fire went forth from the Lord, and devoured the two hundred and fifty men that offered incense. + +And the Lord said to Moses, + +and to Eleazar the son of Aaron the priest, Take up the brazen censers out of the midst of the men that have been burnt, and scatter the strange fire yonder, for they have sanctified the censers + +of these sinners against their own souls, and do you make them beaten plates a covering to the altar, because they were brought before the Lord and hallowed; and they became a sign to the children of Israel. + +And Eleazar the son of Aaron the priest took the brazen censers, which the men who had been burnt brought near, and they put them as a covering on the altar: + +a memorial to the children of Israel that no stranger might draw near, who is not of the seed of Aaron, to offer incense before the Lord; so he shall not be as Core and as they that conspired with him, as the Lord spoke to him by the hand of Moses. + +And the children of Israel murmured the next day against Moses and Aaron, saying, You⌃ have killed the people of the Lord. + +And it came to pass when the congregation combined against Moses and Aaron, that they ran impetuously to the tabernacle of witness; and the cloud covered it, and the glory of the Lord appeared. + +And Moses and Aaron went in, in front of the tabernacle of witness. + +And the Lord spoke to Moses and Aaron, saying, + +Depart out of the midst of this congregation, and I will consume them at once: and they fell upon their faces. + +And Moses said to Aaron, Take a censer, and put on it fire from the altar, and put incense on it, and carry it away quickly into the camp, and make atonement for them; for wrath is gone forth from the presence of the Lord, it has begun to destroy the people. + +And Aaron took as Moses spoke to him, and ran among the congregation, for already the plague had begun among the people; and he put on incense, and made an atonement for the people. + +And he stood between the dead and the living, and the plague ceased. + +And they that died in the plague were fourteen thousand and seven hundred, besides those that died on account of Core. + +And Aaron returned to Moses to the door of the tabernacle of witness, and the plague ceased. + +

+ + +

And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and take +17:2 +Gr. +a rod + rods of them, according to the houses of their families, a rod from all their princes, according to the houses of their families, twelve rods, and write the name of each on his rod. + +And write the name of Aaron on the rod of Levi; for it is one rod +for each: they shall give +them according to the tribe of the house of their families. + +And you shall put them in the tabernacle of witness, before the testimony, where I will be made known to you. + +And it shall be, the man whom I shall choose, his rod shall blossom; and I will remove from me the murmuring of the children of Israel, which they murmur against you. + +And Moses spoke to the children of Israel, and all their chiefs gave him a rod +each, for one chief a rod, according to the house of their families, twelve rods; and the rod of Aaron +was in the midst of the rods. + +And Moses laid up the rods before the Lord in the tabernacle of witness. + +And it came to pass on the morrow, that Moses and Aaron went into the tabernacle of witness; and, behold, the rod of Aaron for the house of Levi blossomed, and put forth a bud, and bloomed blossoms and produced almonds. + +And Moses brought forth all the rods from before the Lord to all the sons of Israel; and they looked, and each one took his rod. + +And the Lord said to Moses, Lay up the rod of Aaron before the testimonies to be kept as a sign for the children of the disobedient; and let their murmuring cease from me, and they shall not die. + +And Moses and Aaron did as the Lord commanded Moses, so did they. + +And the children of Israel spoke to Moses, saying, Behold, we are cut off, we are destroyed, we are consumed. + +Every one that touches the tabernacle of the Lord, dies: shall we die utterly? + +

+ + +

And the Lord spoke to Aaron, saying, You and your sons and your father's house shall bear the sins of the holy things, and you and your sons shall bear the iniquity of your priesthood. + +And take to yourself your brethren the tribe of Levi, the family of your father, and let them be joined to you, and let them minister to you; and you and your sons with you +shall minister before the tabernacle of witness. + +And they shall keep your charges, and the charges of the tabernacle; only they shall not approach the holy vessels and the altar, so both they and you shall not die. + +And they shall be joined to you, and shall keep the charges of the tabernacle of witness, in all the services of the tabernacle; and a stranger shall not approach to you. + +And you⌃ shall keep the charges of the holy things, and the charges of the altar, and +so there shall not be anger +18:5 +Gr. +in. + among the children of Israel. + +And I have taken your brethren the Levites out of the midst of the children of Israel, a present given to the Lord, to minister in the services of the tabernacle of witness. + +And you and your sons after you shall keep up your priestly ministration, according to the whole manner of the altar, and that which is within the veil; and you⌃ shall minister in the services as the office of your priesthood; and the stranger that comes near shall die. + +And the Lord said to Aaron, And, behold, I have given you the charge of the first fruits of all things consecrated to me by the children of Israel; and I have given them to you as an honor, and to your sons after you for a perpetual ordinance. + +And let this be to you from all the holy things that are consecrated +to me, even the burnt offerings, from all their gifts, and from all their sacrifices, and from every trespass-offering of theirs, and from all their sin-offerings, whatever things they give to me of all their holy things, they shall be yours and your sons'. + +In the most holy place shall you⌃ eat them; every male shall eat them, you and your sons: they shall be holy to you. + +And this shall be to you of the first fruits of their gifts, of all the +18:11 +Heb. חנפה. Such appears its general meaning. + wave-offerings of the children of Israel; to you have I given them and to your sons and your daughters with you, a perpetual ordinance; every clean person in your house shall eat them. + +Every first-offering of oil, and every first-offering of wine, their first fruits of corn, whatever they may give to the Lord, to you have I given them. + +All the first fruits that are in their land, whatever they shall offer to the Lord, shall be yours: every clean person in your house shall eat them. + +Every devoted thing among the children of Israel shall be yours. + +And every thing that opens the womb of all flesh, whatever they bring to the Lord, whether man or beast, shall be yours: only the firstborn of men shall be surely redeemed, and you shall redeem the firstborn of unclean cattle. + +And the redemption of them +shall be from a month old; their valuation of five shekels—it is twenty oboli according to the holy shekel. + +But you shall not redeem the firstborn +18:17 +i. e. +among. But μόσχος is used elsewhere in the LXX. for horned cattle old enough to breed. + of calves and the firstborn of sheep and the firstborn of goats; they are holy: and you shall pour their blood upon the altar, and you shall offer the fat as a burnt offering for a smell of sweet savor to the Lord. + +And the flesh shall be yours, as also the breast of the wave-offering and as the right shoulder, it shall be yours. + +Every special offering of the holy things, whatever the children of Israel shall specially offer to the Lord, I have given to you and to your sons and to your daughters with you, a perpetual ordinance: it is a covenant +18:19 +Gr. +of perpetual salt. + of salt for ever before the Lord, for you and your seed after you. + +And the Lord said to Aaron, You shall have no inheritance in their land, neither shall you have any portion among them; for I +am your portion and your inheritance in the midst of the children of Israel. + +And, behold, I have given to the sons of Levi every tithe in Israel for an inheritance for their services, whenever they perform ministry in the tabernacle of witness. + +And the children of Israel shall no more draw near to the tabernacle of witness to incur fatal guilt. + +And the Levite himself shall perform the service of the tabernacle of witness; and they shall bear their iniquities, it is a perpetual statute throughout their generations; and in the midst of the children of Israel they shall not receive an inheritance. + +Because I have given as a distinct portion to the Levites for an inheritance the tithes of the children of Israel, whatever they shall offer to the Lord; therefore I said to them, In the midst of the children of Israel they shall have no inheritance. + +And the Lord spoke to Moses, saying, + +You shall also speak to the Levites, and shall say to them, If you⌃ take the tithe from the children of Israel, which I have given you from them for an inheritance, then shall you⌃ separate from it a heave-offering to the Lord, a tenth of the tenth. + +And your heave-offerings shall be reckoned to you as corn from the floor, and an offering from the wine-press. + +So shall you⌃ also separate them from all the offerings of the Lord out of all your tithes, whatever you⌃ shall receive from the children of Israel; and you⌃ shall give of them an offering to the Lord to Aaron the priest. + +Of all your gifts you⌃ shall offer an offering to the Lord, and of every first-fruit the consecrated part from it. + +And you shall say to them, When you⌃ shall offer the first fruits from it, then shall it be reckoned to the Levites as produce from the threshing floor, and as produce from the wine-press. + +And you⌃ shall eat it in any place, you⌃ and your families; for this is your reward for your services in the tabernacle of witness. + +And you⌃ shall not bear sin by reason of it, +18:32 +Or, +because you⌃ shall + for you⌃ shall have offered an offering of first fruits from it, and you⌃ shall not profane the holy things of the children of Israel, that you⌃ die not. + +

+ + +

And the Lord spoke to Moses and Aaron, saying, + +This is the constitution of the law, as the Lord has commanded, saying, Speak to the sons of Israel, and let them take for you a red heifer without spot, which has no spot on her, and on which no yoke has been put. + +And you shall give her to Eleazar the priest; and they shall bring her out of the camp into a clean place, and shall kill her before his face. + +And Eleazar shall take of her blood, and sprinkle of her blood seven times in front of the tabernacle of witness. + +And they shall burn her to ashes before him; and her skin and her flesh and her blood, with her dung, shall be consumed. + +And the priest shall take cedar wood and hyssop and scarlet wool, and they shall cast them into the midst of the burning of the heifer. + +And the priest shall wash his garments, and bathe his body in water, and afterwards he shall go into the camp, and the priest shall be unclean till evening. + +And he that burns her shall wash his garments, and bathe his body, and shall be unclean till evening. + +And a clean man shall gather up the ashes of the heifer, and lay them up in a clean place outside the camp; and they shall be for the congregation of the children of Israel to keep: it is the water of sprinkling, a purification. + +And he that gathers up the ashes of the heifer shall wash his garments, and shall be unclean until evening; and it shall be a perpetual statute for the children of Israel and for the strangers joined to them. + +He that touches the dead body of any man, shall be unclean seven days. + +He shall be purified on the third day and the seventh day, and shall be clean; but if he be not purged on the third day and the seventh day, he shall not be clean. + +Every one that touches the carcass of the person of a man, if he should have died, and +the other not have been purified, has defiled the tabernacle of the Lord: that soul shall be cut off from Israel, because the water of sprinkling has not been sprinkled upon him; he is unclean; his uncleanness is yet upon him. + +And this +is the law; if a man die in a house, every one that goes into the house, and all things in the house, shall be unclean seven days. + +And every open vessel which has not a covering bound upon it, shall be unclean. + +And every one who shall touch a man slain by violence, or a corpse, or human bone, or sepulchre, shall be unclean seven days. + +And they shall take for the unclean of the burnt ashes of purification, and they shall pour upon them running water into a vessel. + +And a clean man shall take hyssop, and dip it into the water, and sprinkle it upon the house, and the furniture, and all the souls that are therein, and upon him that touched the human bone, or the slain man, or the corpse, or the tomb. + +And the clean man shall sprinkle +the water on the unclean on the third day and on the seventh day, and on the seventh day he shall purify himself; and +the other shall wash his garments, and bathe himself in water, and shall be unclean until evening. + +And whatever man shall be defiled and shall not purify himself, that soul shall be cut off from the midst of the congregation, because he has defiled the holy things of the Lord, because the water of sprinkling has not been sprinkled upon him; he is unclean. + +And it shall be to you a perpetual statute; and he that sprinkles the water of sprinkling shall wash his garments; and he that touches the water of sprinkling shall be unclean until evening. + +And whatever the unclean man shall touch shall be unclean, and the soul that touches it shall be unclean till evening. + +

+ + +

And the children of Israel, +even the whole congregation, came into the wilderness of Sin, in the first month, and the people abode in Cades; and Mariam died there, and was buried there. + +And there was no water for the congregation: and they gathered themselves together against Moses and Aaron. + +And the people reviled Moses, saying, Would we had died in the destruction of our brethren before the Lord! + +And therefore have you⌃ brought up the congregation of the Lord into this wilderness, to kill us and our cattle? + +And therefore +is this? You⌃ have brought us up out of Egypt, that we should come into this evil place; a place where there is no sowing, neither figs, nor vines, nor pomegranates, neither is there water to drink. + +And Moses and Aaron went from before the assembly to the door of the tabernacle of witness, and they fell upon their faces; and the glory of the Lord appeared to them. + +And the Lord spoke to Moses, saying, + +Take your rod, and call the assembly, you and Aaron your brother, and speak you⌃ to the rock before them, and it shall give forth its waters; and you⌃ shall bring forth for them water out of the rock, and give drink to the congregation and their cattle. + +And Moses took his rod which was before the Lord, as the Lord commanded. + +And Moses and Aaron assembled the congregation before the rock, and said to them, Hear me, you⌃ disobedient ones; must we bring you water out of this rock? + +And Moses lifted up his hand and struck the rock with his rod twice; and much water came forth, and the congregation drank, and their cattle. + +And the Lord said to Moses and Aaron, Because you⌃ have not believed me to sanctify me before the children of Israel, therefore you⌃ shall not bring this congregation into the land which I have given them. + +This is the water of Strife, because the children of Israel spoke insolently before the Lord, and he was sanctified in them. + +And Moses sent messengers from Cades to the king of Edom, saying, Thus says your brother Israel; You know all the distress that has +20:14 +Gr. +found us + come upon us. + +And +how our fathers went down into Egypt, and we sojourned in Egypt many days, and the Egyptians afflicted us and our fathers. + +And we cried to the Lord, and the Lord heard our voice, and sent an angel and brought us out of Egypt; and now we are in the city of Cades, at the extremity of your coasts. + +We will pass through your land: we will not go through the fields, nor through the vineyards, nor will we drink water out of your cistern: we will go by the king's highway; we will not turn aside to the right hand or to the left, until we have passed your borders. + +And Edom said to him, You shall not pass through me, and if otherwise, I will go forth to meet you in war. + +And the children of Israel say to him, We will pass by the mountain; and if I and my cattle drink of your water, I will pay you: but it is no matter of importance, we will go by the mountain. + +And he said, You shall not pass through me; and Edom went forth to meet him with a great host, and a mighty hand. + +So Edom refused to allow Israel to pass through his borders, and Israel turned away from him. + +And they departed from Cades; and the children of Israel, even the whole congregation, came to Mount Or. + +And the Lord spoke to Moses and Aaron in mount Or, on the borders of the land of Edom, saying, + +Let Aaron be added to his people; for you⌃ shall certainly not go into the land which I have given the children of Israel, because you⌃ provoked me at the water of strife. + +Take Aaron, and Eleazar his son, and bring them up to the mount Or before all the congregation; + +and take Aaron's apparel from off him, and put it on Eleazar his son: and let Aaron die there and be added to +his people. + +And Moses did as the Lord commanded him, and took him up to mount Or, before all the congregation. + +And he took Aaron's garments off him, and put them on Eleazar his son, and Aaron died on the top of the mountain; and Moses and Eleazar came down from the mountain. + +And all the congregation saw that Aaron was dead: and they wept for Aaron thirty days, +even all the house of Israel. + +

+ + +

And Arad the Chananitish king who lived by the wilderness, heard that Israel came by the way of Atharin; and he made war on Israel, and carried off +21:1 +Gr. +a captivity of them. + some of them captives. + +And Israel vowed a vow to the Lord, and said, If you will deliver this people into my power, I will devote it and its cities +to you. + +And the Lord listened to the voice of Israel, and delivered the Chananite into his power; and +Israel devoted him and his cities, and they called the name of that place +21:3 +Gr. +devoted thing. + Anathema. + +And having departed from mount Or by the way +leading to the Red Sea, they compassed the land of Edom, and the people lost courage by the way. + +And the people spoke against God and against Moses, saying, Why is this? Have you brought us ought of Egypt to kill us in the wilderness? for there is not bread nor water; and our soul loathes this light bread. + +And the Lord sent among the people deadly serpents, and they bit the people, and much people of the children of Israel died. + +And the people came to Moses and said, We have sinned, for we have spoken against the Lord, and against you: pray therefore to the Lord, and let him take away the serpent from us. + +And Moses prayed to the Lord for the people; and the Lord said to Moses, Make you a serpent, and put it on a signal-staff; and it shall come to pass that whenever a serpent shall bite a man, every one +so bitten that looks upon it shall live. + +And Moses made a serpent of brass, and put it upon a signal-staff: and it came to pass that whenever a serpent bit a man, and he looked on the brazen serpent, he lived. + +And the children of Israel departed, and encamped in Oboth. + +And having departed from Oboth, they encamped in Achalgai, on the farther side in the wilderness, which is opposite Moab, toward the east. + +And thence they departed, and encamped in the valley of Zared. + +And they departed thence and encamped on the other side of Arnon in the wilderness, +the country which extends from the coasts of the +21:13 +Gr. +Amorite + Amorites; for Arnon is the borders of Moab, between Moab and the Amorites. + +Therefore it is said in a book, A war of the Lord has set on fire Zoob, and the brooks of Arnon. + +And he has appointed brooks to cause Er to dwell +there; and it lies near to the coasts of Moab. + +And thence +they came to the well; this +is the well of which the Lord said to Moses, Gather the people, and I will give them water to drink. + +Then Israel sang this song at the well, Begin +to sing +21:17 +Gr. +of the well for it + of the well; + +the princes digged it, the kings of the nations in their kingdom, in their lordship sank it in the rock: and +they went from the well to Manthanain, + +and from Manthanain to Naaliel, and from Naaliel to Bamoth, and from Bamoth to +21:19 +Or, +Jané but the reading is uncertain. + Janen, which is in the plain of Moab +as seen from the top of the quarried +rock that looks toward the wilderness. + +And Moses sent ambassadors to Seon king of the Amorites, with peaceful words, saying, + +We will pass through your land, we will go by the road; we will not turn aside to the field or to the vineyard. + +We will not drink water out of your well; we will go by the king's highway, until we have past your boundaries. + +And Seon did not allow Israel to pass through his borders, and Seon gathered all his people, and went out to set the battle in array against Israel into the wilderness; and he came to Jassa, and set the battle in array against Israel. + +And Israel struck him with the slaughter of the sword, and they became possessors of his land, from Arnon to Jaboc, as far as the children of Amman, for Jazer is the borders of the children of Amman. + +And Israel took all their cities, and Israel lived in all the cities of the Amorites, in Esebon, and in all cities belonging to it. + +For Esebon is the city of Seon king of the Amorites; and he before fought against the king of Moab, and they took all his land, from Aroer to Arnon. + +Therefore say they who deal in dark speeches, Come to Esebon, that the city of Seon may be built and prepared. + +For a fire has gone forth from Esebon, a flame from the city of Seon, and has consumed as far as Moab, and devoured the pillars of Arnon. + +Woe to you, Moab; you are lost, you people of Chamos: their sons are sold for preservation, and their daughters are captives to Seon king of the Amorites. + +And their seed shall perish +from Esebon to Daebon; and their women have yet farther kindled a fire against Moab. + +And Israel lived in all the cities of the Amorites. + +And Moses sent to spy out Jazer; and they took it, and its villages, and cast out the Amorite that lived there. + +And having returned, they went up the road that leads to Basan; and Og the king of Basan went forth to meet them, and all his people to war to Edrain. + +And the Lord said to Moses, Fear him not; for I have delivered him and all his people, and all his land, into your hands; and you shall do to him as you did to Seon king of the Amorites, who lived in Esebon. + +And he struck him and his sons, and all his people, until he left none of his to be taken alive; and they inherited his land. + +

+ + +

And the children of Israel departed, and encamped on the west of Moab by Jordan toward Jericho. + +And when Balac son of Sepphor saw all that Israel did to the Amorite, + +then Moab feared the people exceedingly because they were many; and Moab was grieved +22:3 +q. d. +because of +hebraism. before the face of the children of Israel. + +And Moab said to the elders of Madiam, Now shall this assembly lick up all that are round about us, as a calf would lick up the green +herbs of the field:—and Balac son of Sepphor was king of Moab at that time. + +And he sent ambassadors to Balaam the son of Beor, to Phathura, which is on a river of the land of the sons of his people, to call him, saying, Behold, a people is come out of Egypt, and behold it has covered the face of the earth, and it has encamped close to me. + +And now come, curse me this people, for it is stronger than we; if we may be able to strike some of them, and I will cast them out of the land: for I know that whoever you do bless, they are blessed, and whoever you do curse, they are cursed. + +And the elders of Moab went, and the elders of Madiam, and their divining +instruments were in their hands; and they came to Balaam, and spoke to him the words of Balac. + +And he said to them, Tarry here the night, and I will answer you the things which the Lord shall say to me; and the princes of Moab stayed with Balaam. + +And God came to Balaam, and said to him, Who are these men with you? + +And Balaam said to God, Balac son of Sepphor, king of Moab, sent them to me, saying, + +Behold, a people has come forth out of Egypt, and has covered the face of the land, and it has encamped near to me; and now come, curse it for me, if indeed I shall be able to strike it, and cast it out of the land. + +And God said to Balaam, You shall not go with them, neither shall you curse the people; for they are blessed. + +And Balaam rose up in the morning, and said to the princes of Balac, Depart quickly to your lord; God does not permit me to go with you. + +And the princes of Moab rose, and came to Balac, and said, Balaam will not come with us. + +And Balac yet again sent more princes and more honorable than they. + +And they came to Balaam, and they say to him, Thus says Balac the son of Sepphor: I beseech you, delay not to come to me. + +For I will greatly honor you, and will do for you whatever you shall say; come then, curse me this people. + +And Balaam answered and said to the princes of Balac, If Balac would give me his house full of silver and gold, I shall not be able to go beyond the word of the Lord God, to make it little or great in my mind. + +And now do you⌃ also wait here this night, and I shall know what the Lord will yet say to me. + +And God came to Balaam by night, and said to him, If these men are come to call you, rise and follow them; nevertheless the word which I shall speak to you, it shall you do. + +And Balaam rose up in the morning, and saddled his ass, and went with the princes of Moab. + +And God was very angry because he went; and the angel of the Lord rose up to withstand him. Now he had mounted his ass, and his two servants were with him. + +And when the ass saw the angel of God standing opposite in the way, and his sword drawn in his hand, then the ass turned aside out of the way, and went into the field; and +Balaam struck the ass with his staff to direct her in the way. + +And the angel of the Lord stood in the avenues of the vines, a fence +being on this side and a fence on that. + +And when the ass saw the angel of God, she thrust herself against the wall, and crushed Balaam's foot against the wall, and he struck her again. + +And the angel of the Lord went farther, and came and stood in a narrow place where it was impossible to turn to the right or the left. + +And when the ass saw the angel of God, she +22:27 +Gr. +sat down. + lay down under Balaam; and Balaam was angry, and struck the ass with his staff. + +And God opened the mouth of the ass, and she says to Balaam, What have I done to you, that you have struck me this third time? + +And Balaam said to the ass, Because you have mocked me; and if I +had had a sword in my hand, I would now have killed you. + +And the ass says to Balaam, +Am not I your ass on which you have ridden since your youth till this day? did I ever do thus to you, utterly disregarding +you? and he said, No. + +And God opened the eyes of Balaam, and he sees the angel of the Lord withstanding +him in the way, and his sword drawn in his hand, and he stooped down and worshipped on his face. + +And the angel of God said to him, Why have you struck your ass this third time? and, behold, I came out to withstand you, for your way was not seemly before me; and when the ass saw me, she turned away from me this third time. + +And if she had not turned out of the way, surely now, I should have slain you, and should have saved her alive. + +And Balaam said to the angel of the Lord, I have sinned, for I did not know that you were standing opposite in the way to meet +me; and now if it shall not be pleasing to you +for me to go on, I will return. + +And the angel of the Lord said to Balaam, Go with the men: nevertheless the word which I shall speak to you, that you shall take heed to speak. And Balaam went with the princes of Balac. + +And when Balac heard that Balaam was come, he went out to meet him, to a city of Moab, which is on the borders of Arnon, which is on the +extreme part of the borders. + +And Balac said to Balaam, Did I not send to you to call you? why have you not come to me? shall I not indeed be able to honor you? + +And Balaam said to Balac, Behold, I am now come to you: shall I be able to say anything? the word which God shall put into my mouth, that I shall speak. + +And Balaam went with Balac, and they came to +22:39 +Or, +cities of villages. +Heb. + the cities of streets. + +And Balac offered sheep and calves, and sent to Balaam and to his princes who were with him. + +And it was morning; and Balac took Balaam, and brought him up to the pillar of Baal, and showed him thence a part of the people. + +

+ + +

And Balaam said to Balac, Build me here seven altars, and prepare me here seven calves, and seven rams. + +And Balac did as Balaam told him; and he offered up a calf and a ram on +every altar. + +And Balaam said to Balac, Stand by your sacrifice, and I will go and see if God +23:3 +Gr. +appear to me in meeting + will appear to me and meet me, and the word which he shall show me, I will report to you. And Balac stood by his sacrifice. + +And Balaam went to enquire of God; and he went straight forward, and God appeared to Balaam; and Balaam said to him, I have prepared the seven altars, and have offered a calf and a ram on +every altar. + +And God put a word into the mouth of Balaam, and said, you shall return to Balac, and thus shall you speak. + +And he returned to him, and moreover he stood over his whole burnt offerings, and all the princes of Moab with him; and the Spirit of God came upon him. + +And he took up his parable, and said, Balac king of Moab sent for me out of Mesopotamia, out of the mountains of the east, saying, Come, curse me Jacob, and Come, call for a curse for me upon Israel. + +How can I curse whom the Lord curses not? or how can I devote whom God devotes not? + +For from the top of the mountains I shall see him, and from the hills I shall observe him: behold, the people shall dwell alone, and shall not be reckoned among the nations. + +Who has exactly calculated the seed of Jacob, and who shall number the families of Israel? let my soul die with the souls of the righteous, and let my seed be as their seed. + +And Balac said to Balaam, What have you done to me? I called you to curse my enemies, and behold you have greatly blessed +them. + +And Balaam said to Balac, Whatsoever the Lord shall put into my mouth, shall I not take heed to speak this? + +And Balac said to him, Come yet with me to another place where you shall not see +23:13 +Gr. +him +or +it + the people, but only you shall see a part of them, and shall not see them all; and curse me them from thence. + +And he took him to a high place of the field to the top of the quarried +rock, and he built there seven altars, and offered a calf and a ram on +every altar. + +And Balaam said to Balac, Stand by your sacrifice, and I will go to enquire of God. + +And God met Balaam, and put a word into his mouth, and said, return to Balac, and thus shall you speak. + +And he returned to him: and he also was standing by his whole burnt sacrifice, and all the princes of Moab with him; and Balac said to him, What has the Lord spoken? + +And he took up his parable, and said, rise up, Balac, and hear; listen as a witness, you son of Sepphor. + +God is not as man to waver, nor as the son of man to be threatened; shall he say and not perform? shall he speak and not keep +to his word? + +Behold, I have received +commandment to bless: I will bless, and not turn back. + +There shall not be trouble in Jacob, neither shall sorrow be seen in Israel: the Lord his God +is with him, the glories of rulers +are in him. + +It was God who brought him out of Egypt; he has as it were the glory of a unicorn. + +For there is no divination +23:23 +against + in Jacob, nor enchantment in Israel; in season it shall be told to Jacob and Israel +23:23 +or, +what shall God perform? + what God shall perform. + +Behold, the people shall rise up as a lion's whelp, and shall exalt himself as a lion; he shall not lie down till he have eaten the prey, and he shall drink the blood of the slain. + +And Balac said to Balaam, Neither curse +23:25 +Gr. +him. + the people at all for me, nor bless them at all. + +And Balaam answered and said to Balac, Spoke I not to you, saying, Whatsoever thing God shall speak to me, that will I do? + +And Balac said to Balaam, Come +and I will remove you to another place, if it shall please God, and curse me them from thence. + +And Balac took Balaam to the top of Phogor, which extends to the wilderness. + +And Balaam said to Balac, build me here seven altars, and prepare me here seven calves, and seven rams. + +And Balac did as Balaam told him, and offered a calf and a ram on +every altar. + +

+ + +

And when Balaam saw that it pleased God to bless Israel, he did not go according to his custom to meet the omens, but turned his face toward the wilderness. + +And Balaam lifted up his eyes, and sees Israel encamped by their tribes; and the Spirit of God came upon him. + +And he took up his parable and said, Balaam son of Beor says, the man who sees truly says, + +he says who hears the oracle of the Mighty One, who saw a vision of God in sleep; his eyes were opened: + +How goodly +are your habitations, Jacob, and your tents, Israel! + +as shady groves, and as gardens by a river, and as tents which God pitched, and as cedars by the waters. + +There shall come a man out of his seed, and he shall rule over many nations; and the kingdom of Gog shall be exalted, and his kingdom shall be increased. + +God led him out of Egypt; he has as it were the glory of a unicorn: he shall consume the nations of his enemies, and he shall +24:8 +Gr. +suck the marrow out of their fat +bones drain their marrow, and with his darts he shall shoot through the enemy. + +He lay down, he rested as a lion, and as a young lion; who shall stir him up? they that bless you are blessed, and they that curse you are cursed. + +And Balac was angry with Balaam, and clapped his hands together; and Balac said to Balaam, I called you to curse my enemy, and behold you have decidedly blessed +him this third time. + +Now therefore flee to your place: I said, I will honor you, but now the Lord has deprived you of glory. + +And Balaam said to Balac, Did I not speak to your messengers also whom you sent to me, saying, + +If Balac should give me his house full of silver and gold, I shall not be able to +24:13 +or, +go beyond + transgress the word of the Lord to make it good or bad by myself; whatever things God shall say, them will I speak. + +And now, behold, I return to my place; come, I will advise you of what this people shall do to your people in the last days. + +And he took up his parable and said, Balaam the son of Beor says, the man who sees truly says, + +hearing the oracles of God, +24:16 +Gr. +knowing knowledge + receiving knowledge from the Most High, and having seen a vision of God in sleep; his eyes were +24:16 +Or, +unveiled + opened. + +I will point to him, but not now; I bless him, but he draws not near: a star shall rise out of Jacob, a man shall spring out of Israel; and shall crush the princes of Moab, and shall spoil all the sons of Seth. + +And Edom shall be an inheritance, and Esau his enemy shall be an inheritance +of Israel, and Israel wrought valiantly. + +And +one shall arise out of Jacob, and destroy out of the city him that escapes. + +And having seen Amalec, he took up his parable and said, Amalec +is the first of the nations; yet his seed shall perish. + +And having seen the Kenite, he took up his parable and said, your dwelling-place +is strong; yet though you should put your nest in a rock, + +and though Beor should have a +24:22 +Gr. +nest of cunning + skillfully contrived hiding-place, the Assyrians shall carry you away captive. + +And he looked upon Og, and took up his parable and said, Oh, oh, who shall live, when God shall +24:23 +Gr. +put + do these things? + +And one shall come forth from the hands of the Citians, and shall afflict Assur, and shall afflict the +24:24 +Or, +men of Heber. + Hebrews, and they shall perish together. + +And Balaam rose up and departed and returned to his place, and Balac went +24:25 +Gr. q. d. +chez lui + to his own home. + +

+ + +

And Israel sojourned in Sattin, and the people +25:1 +Heb. חלל to begin and to profane etc. + profaned itself by going a-whoring after the daughters of Moab. + +And they called them to the sacrifices of their idols; and the people ate of their sacrifices, and worshipped their idols. + +And Israel consecrated themselves to Beel-phegor; and the Lord was very angry with Israel. + +And the Lord said to Moses, Take all the princes of the people, and +25:4 +Or, +put them to shame. See Heb. 6.6 + make them examples +of judgment for the Lord in the face of the sun, and the anger of the Lord shall be turned away from Israel. + +And Moses said to the tribes of Israel, Slay you⌃ every one his friend that is consecrated to Beel-phegor. + +And, behold, a man of the children of Israel came and brought his brother to a Madianitish woman before Moses, and before all the congregation of the children of Israel; and they were weeping at the door of the tabernacle of witness. + +And Phinees the son of Eleazar, the son of Aaron the priest, saw it, and rose out of the midst of the congregation, and took a +25:7 +Gr. +dagger. + javelin in his hand, + +and went in after the Israelitish man into the +25:8 +Gr. +furnace, κάμινον. Trom renders +lupanar. +Heb. +הקכה. + chamber, and pierced them both through, both the Israelitish man, and the woman through her womb; and the plague was stayed from the children of Israel. + +And those that died in the plague were four and twenty thousand. + +And the Lord spoke to Moses, saying, + +Phinees the son of Eleazar the son of Aaron the priest has caused my wrath to cease from the children of Israel, when I was exceedingly jealous +25:11 +Or, +with +Or, +against them. +Hebraism among them, and I did not consume the children of Israel in my jealousy. + +Thus do you say +to him, Behold, I give him a covenant of peace: + +and he and his seed after him shall have a perpetual covenant of priesthood, because he was zealous for his God, and made atonement for the children of Israel. + +Now the name of the struck Israelitish man, who was struck with the Madianitish woman, +was Zambri son of Salmon, prince of a house of the tribe of Symeon. + +And the name of the Madianitish woman who was struck, +was Chasbi, daughter of Sur, a prince of the nation of Ommoth: it is a chief house among the people of Madiam. + +And the Lord spoke to Moses, saying, Speak to the children of Israel, saying, + +Plague the Madianites as enemies, and strike them, + +for they are enemies to you by the treachery wherein they ensnare you through Phogor, and through Chasbi their sister, daughter of a prince of Madiam, who was struck in the day of the plague because of Phogor. + +

+ + +

And it came to pass after the plague, that the Lord spoke to Moses and Eleazar the priest, saying, + +Take the sum of all the congregation of the children of Israel, from twenty years old and upward, according to the houses +26:2 +Gr. +of their fathers' families. + of their lineage, every one that goes forth +26:2 +Gr. +to set himself in array. + to battle in Israel. + +And Moses and Eleazar the priest spoke in Araboth of Moab at the Jordan by Jericho, saying, + + +This is the numbering from twenty years old and upward as the Lord commanded Moses. And the sons of Israel that came out of Egypt +are as follows: + +Ruben +was the firstborn of Israel: and the sons of Ruben, Enoch, and the family of Enoch; to Phallu belongs the family of the Phalluites. + +To Asron, the family of Asroni: to Charmi, the family of Charmi. + +These +are the families of Ruben; and their numbering was forty-three thousand and seven hundred and thirty. + +And the sons of Phallu +were Eliab, — + +and the sons of Eliab, Namuel, and Dathan, and Abiron: these +are renowned men of the congregation; these are they that rose up against Moses and Aaron in the gathering of Core, in the rebellion against the Lord. + +And the earth opened her mouth, and swallowed up them and Core, when their assembly perished, when the fire devoured the two hundred and fifty, and they were +26:10 +Or. +for a sign. + made a sign. + +But the sons of Core died not. + +And the sons of Symeon:—the family of the sons of Symeon: to Namuel, +belonged the family of the Namuelites; to Jamin the family of the Jaminites; to Jachin the family of the Jachinites. + +To Zara the family of the Zaraites; to Saul the family of the Saulites. + +These +are the families of Symeon according to their numbering, two and twenty thousand and two hundred. + +And the sons of Juda, Er and Aunan; and Er and Aunan died in the land of Chanaan. + +And these were the sons of Juda, according to their families: to Selom +belonged the family of the Selonites; to Phares, the family of the Pharesites; to Zara, the family of the Zaraites. + +And the sons of Phares were, to Asron, the family of the Asronites; to Jamun, the family of the Jamunites. + +These +are the families of Juda according to their numbering, seventy-six thousand and five hundred. + +And the sons of Issachar according to their families: to Thola, the family of the Tholaites; to Phua, the family of the Phuaites. + +To Jasub, the family of the Jasubites; to Samram, the family of the Samramites. + +These +are the families of Issachar according to their numbering, sixty-four thousand and four hundred. + +The sons of Zabulon according to their families: to Sared, the family of the Saredites; to Allon, the family of the Allonites; to Allel, the family of the Allelites. + +These +are the families of Zabulon according to their numbering, sixty thousand and five hundred. + +The sons of Gad according to their families: to Saphon, the family of the Saphonites; to Angi, the family of the Angites; to Suni, the family of the Sunites; + +to Azeni, the family of the Azenites; to Addi, the family of the Addites: + +to Aroadi, the family of the Aroadites; to Ariel, the family of the Arielites. + +These +are the families of the children of Gad according to their numbering, forty-four thousand and five hundred. + +The sons of Aser according to their families; to Jamin, the family of the Jaminites; to Jesu, the family of the Jesusites; to Baria, the family of the Bariaites. + +To Chober, the family of the Choberites; to Melchiel, the family of the Melchielites. + +And the name of the daughter of Aser, Sara. + +These +are the families of Aser according to their numbering, forty-three thousand and +26:31 +Alex. +600 + four hundred. + +The sons of Joseph according to their families, Manasse and Ephraim. + +The sons of Manasse. To Machir the family of the Machirites; and Machir begot Galaad: to Galaad, the family of the Galaadites. + +And these +are the sons of Galaad; to Achiezer, the family of the Achiezerites; to Cheleg, the family of the Chelegites. + +To Esriel, the family of the Esrielites; to Sychem, the family of the Sychemites. + +To Symaer, the family of the Symaerites; and to Opher, the family of the Opherites. + +And to Salpaad the son of Opher there were no sons, but daughters: and these +were the names of the daughters of Salpaad; Mala, and Nua, and Egla, and Melcha, and Thersa. + +These +are the families of Manasse according to their numbering, +26:38 +Alex. +62500 + fifty-two thousand and seven hundred. + +And these +are the children of Ephraim; to Suthala, the family of the Suthalanites; to Tanach, the family of the Tanachites. + +These +are the sons of Suthala; to Eden, the family of the Edenites. + +These +are the families of Ephraim according to their numbering, thirty-two thousand and five hundred: these +are the families of the children of Joseph according to their families. + +The sons of Benjamin according to their families; to Bale, the family of the Balites; to Asyber, the family of the Asyberites; to Jachiran, the family of the Jachiranites. + +To Sophan, the family of the Sophanites. + +And the sons of Bale were Adar and Noeman; to Adar, the family of the Adarites; and to Noeman, the family of the Noemanites. + +These +are the sons of Benjamin by their families according to their numbering, thirty-five thousand and five hundred. + +And the sons of Dan according to their families; to Same, the family of the Sameites; these +are the families of Dan according to their families. + +All the families of Samei according to their numbering, sixty-four thousand and +26:47 +Alex. +600 + four hundred. + +The sons of Nephthali according to their families; to Asiel, the family of the Asielites; to Gauni, the family of the Gaunites. + +To Jeser, the family of the Jeserites; to Sellem, the family of the Sellemites. + +These +are the families of Nephthali, according to their numbering, forty thousand and three hundred. + +This +is the numbering of the children of Israel, six hundred and one thousand and seven hundred and thirty. + +And the Lord spoke to Moses, saying, + +To these the land shall be divided, so that they may inherit according to the number of the names. + +To the greater number you shall give the greater inheritance, and to the less number you shall give the less inheritance: to each one, as they have been numbered, shall their inheritance be given. + +The land shall be divided to the names by lot, they shall inherit according to the tribes of their families. + +You shall divide their inheritance by lot between the many and the few. + +And the sons of Levi according to their families; to Gedson, the family of the Gedsonites; to Caath, the family of the Caathites; to Merari, the family of the Merarites. + +These +are the families of the sons of Levi; the family of the Lobenites, the family of the Chebronites, the family of the Coreites, and the family of the Musites; and Caath begot Amram. + +And the name of his wife +was Jochabed, daughter of Levi, who bore these to Levi in Egypt, and she bore to Amram, Aaron and Moses, and Mariam their sister. + +And to Aaron were born both Nadab and Abiud, and Eleazar, and Ithamar. + +And Nadab and Abiud died when they offered strange fire before the Lord in the wilderness of Sina. + +And there were according to their numbering, twenty-three thousand, every male from a month old and upward; for they were not numbered among the children of Israel, because they have no inheritance in the midst of the children of Israel. + +And this +is the numbering of Moses and Eleazar the priest, who numbered the children of Israel in Araboth of Moab, at Jordan by Jericho. + +And among these there was not a man numbered by Moses and Aaron, whom, +even the children of Israel, they numbered in the wilderness of Sinai. + +For the Lord said to them, They shall surely die in the wilderness; and there was not left even one of them, except Chaleb the son of Jephonne, and Joshua the +son of Naue. + +

+ + +

And the daughters of Salpaad the son of Opher, the son of Galaad, the son of Machir, of the tribe of Manasse, of the sons of Joseph, came near; and these were their names, Maala, and Nua, and Egla, and Melcha, and Thersa; + +and they stood before Moses, and before Eleazar the priest, and before the princes, and before all the congregation at the door of the tabernacle of witness, saying, + +Our father died in the wilderness, and he was not in the midst of the congregation that rebelled against the Lord in the gathering of Core; for he died for his own sin, and he had no sons. Let not the name of our father be blotted out of the midst of his people, because he has no son: give us an inheritance in the midst of our father's brethren. + +And Moses brought their case before the Lord. + +And the Lord spoke to Moses, saying, + +The daughters of Salpaad have spoken rightly: you shall surely give them a possession of inheritance in the midst of their father's brethren, and you shall assign their father's inheritance to them. + +And you shall speak to the children of Israel, saying, + +If a man die, and have no son, you⌃ shall assign his inheritance to his daughter. + +And if he have no daughter, you⌃ shall give his inheritance to his brother. + +And if he have no brethren, you⌃ shall give his inheritance to his father's brother. + +And if there be no brethren of his father, you⌃ shall give the inheritance to his nearest relation of his tribe, to inherit his possessions; and this shall be to the children of Israel an ordinance of judgment, as the Lord commanded Moses. + +And the Lord said to Moses, Go up to the mountain that is in the country beyond Jordan, this mount Nabau, and behold the land Chanaan, which I give to the sons of Israel for a possession. + +And you shall see it, and you also shall be added to your people, as Aaron your brother was added +to them in mount Or: + +because you⌃ transgressed my commandment in the wilderness of Sin, when the congregation resisted +and refused to sanctify me; you⌃ sanctified me not at the water before them. This is the water of Strife in Cades in the wilderness of Sin. + +And Moses said to the Lord, + +Let the Lord God of spirits and of all flesh look out for a man over this congregation, + +who shall go out before them, and who shall come in before them, and who shall lead them out, and who shall bring them in; so the congregation of the Lord shall not be as sheep without a shepherd. + +And the Lord spoke to Moses, saying, Take to yourself Joshua the son of Naue, a man who has the Spirit in him, and you shall lay your hands upon him. + +And you shall set him before Eleazar the priest, and you shall give him a charge before all the congregation, and you shall give a charge concerning him before them. + +And you shall put of your glory upon him, that the children of Israel may listen to him. + +And he shall stand before Eleazar the priest, and they shall ask of him before the Lord the judgment of the Urim: they shall go forth at his word, and at his word they shall come in, he and the children of Israel with one accord, and all the congregation. + +And Moses did as the Lord commanded him; and he took Joshua, and set him before Eleazar the priest, and before all the congregation. + +And he laid his hands on him, and appointed him as the Lord ordered Moses. + +

+ + +

And the Lord spoke to Moses, saying, + +Charge the children of Israel, and you shall speak to them, saying, You⌃ shall observe to offer to me in my feasts my gifts, my presents, my burnt offerings for a sweet smelling savor. + +And you shall say to them, These are the burnt offerings, all that you⌃ shall bring to the Lord; two lambs of a year old without blemish daily, for a whole burnt offering perpetually. + +You shall offer one lamb in the morning, and you shall offer the second lamb towards evening. + +And you shall offer the tenth part of an ephah of fine flour for a meat-offering, mingled with oil, with the fourth part of a hin. + + +It is a perpetual whole burnt offering, a sacrifice offered in the mount of Sina for a sweet smelling savor to the Lord. + +And its drink-offering, the fourth part of a hin to each lamb; in the holy place shall you pour strong drink as a drink-offering to the Lord. + +And the second lamb you shall offer toward evening; you shall offer it according to its meat-offering and according to its drink-offering for a smell of sweet savor to the Lord. + +And on the sabbath-day you⌃ shall offer two lambs of a year old without blemish, and two tenth deals of fine flour mingled with oil for a meat-offering, and a drink-offering. + + +It is a whole burnt offering of the sabbaths on the sabbath days, besides the continued whole burnt offering, and its drink offering. + +And at the new moons you⌃ shall bring a whole burnt offering to the Lord, two calves of the herd, and one ram, seven lambs of a year old without blemish. + +Three tenth deals of fine flour mingled with oil for one calf, and two tenth deals of fine flour mingled with oil for one ram. + +A tenth deal of fine flour mingled with oil for each lamb, as a meat-offering, a sweet smelling savor, a +28:13 +This seems to be the general meaning of κάρπωμα in LXX + burnt offering to the Lord. + +Their drink-offering shall be the half of a hin for one calf; and the third of a hin for one ram; and the fourth part of a hin of wine for one lamb: this +is the whole burnt offering monthly throughout the months of the year. + +And +he shall offer one kid of the goats for a sin-offering to the Lord; it shall be offered beside the continual whole burnt offering and its drink-offering. + +And in the first month, on the fourteenth day of the month, +is the passover to the Lord. + +And on the fifteenth day of this month +is a feast; seven days you⌃ shall eat unleavened bread. + +And the first day shall be to you a holy convocation; you⌃ shall do no servile work. + +And you⌃ shall bring whole burnt offerings, a sacrifice to the Lord, two calves of the herd, one ram, seven lambs of a year old; they shall be to you without blemish. + +And their meat-offering shall be fine flour mingled with oil; three tenth deals for one calf, and two tenth deals for one ram. + +You shall offer a tenth for each lamb, for the seven lambs. + +And +you shall offer one kid of the goats for a sin-offering, to make atonement for you. + +Beside the perpetual whole burnt offering in the morning, which is a whole burnt sacrifice for a continuance, + +these shall you⌃ thus offer daily for +28:24 +Alex. +two days. + seven days, a gift, a sacrifice for a sweet smelling savor to the Lord; beside the continual whole burnt offering, you shall offer its drink-offering. + +And the seventh day shall be to you a holy convocation; you⌃ shall do no servile work in it. + +And on the day of the new corn, when you⌃ shall offer a new sacrifice +at the festival of weeks to the Lord, there shall be to you a holy convocation; you⌃ shall do no servile work, + +and you⌃ shall bring whole burnt offerings for a sweet smelling savor to the Lord, two calves of the herd, one ram, seven lambs without blemish. + +Their meat-offering +shall be fine flour mingled with oil; there shall be three tenth deals for one calf, and two tenth deals for one ram. + +A tenth for each lamb separately, for the seven lambs; and a kid of the goats, + +for a sin-offering, to make atonement for you; beside the perpetual whole burnt offering: and + +you⌃ shall offer to me their meat-offering. They shall be to you unblemished, and you⌃ shall offer their drink-offerings. + +

+ + +

And in the seventh month, on the first day of the month, there shall be to you a holy convocation: you⌃ shall do no servile work: it shall be to you a day of blowing the trumpets. + +And you⌃ shall offer whole burnt offerings for a sweet savor to the Lord, one calf of the herd, one ram, seven lambs of a year old without blemish. + +Their meat-offering shall be fine flour mingled with oil; three tenth deals for one calf, and two tenth deals for one ram: + +a tenth deal for each several ram, for the seven lambs. + +And one kid of the goats for a sin-offering, to make atonement for you. + +Beside the whole burnt offerings for the new moon, and their meat-offerings, and their drink-offerings, and their perpetual whole burnt offering; and their meat-offerings and their drink-offerings according to their ordinance for a sweet smelling savor to the Lord. + +And on the tenth of this month there shall be to you a holy convocation; and you⌃ shall afflict your souls, and you⌃ shall do no work. + +And you⌃ shall bring near whole burnt offerings for a sweet smelling savor to the Lord; burnt sacrifices to the Lord, one calf of the herd, one ram, seven lambs of a year old; they shall be to you without blemish. + +Their meat-offering shall be fine flour mingled with oil; three tenth deals for one calf, and two tenth deals for one ram. + +A tenth deal for each several lamb, for the seven lambs. + +And one kid of the goats for a sin-offering, to make atonement for you; beside the sin-offering for atonement, and the continual whole burnt offering, its meat-offering, and its drink-offering according to its ordinance for a smell of sweet savor, a burnt sacrifice to the Lord. + +And on the fifteenth day of this seventh month you⌃ shall have a holy convocation; you⌃ shall do no servile work; and you⌃ shall keep it a feast to the Lord seven days. + +And you⌃ shall bring near whole burnt offerings, a sacrifice for a smell of sweet savor to the Lord, on the first day thirteen calves of the herd, two rams, fourteen lambs of a year old; they shall be without blemish. + +their meat-offerings +shall be fine flour mingled with oil; there shall be three tenth deals for one calf, for the thirteen calves; and two tenth deals for one ram, for the two rams. + +A tenth deal for every lamb, for the fourteen lambs. + +And one kid of the goats for a sin-offering; beside the continual whole burnt offering: there shall be their meat-offerings and their drink-offerings. + +And on the second day twelve calves, two rams, fourteen lambs of a year old without blemish. + +Their meat-offering and their drink-offering shall be for the calves and the rams and the lambs according to their number, according to their ordinance. + +And one kid of the goats for a sin-offering; beside the perpetual whole burnt offering; their meat-offerings and their drink-offerings. + +On the third day eleven calves, two rams, fourteen lambs of a year old without blemish. + +Their meat-offering and their drink-offering shall be to the calves and to the rams and to the lambs according to their number, according to their ordinance. + +And one kid of the goats for a sin-offering; beside the continual whole burnt offering; +there shall be their meat-offerings and their drink-offerings. + +On the fourth day ten calves, two rams, fourteen lambs of a year old without spot. + +There shall be their meat-offerings and their drink-offerings to the calves and the rams and the lambs according to their number, according to their ordinance. + +And one kid of the goats for a sin-offering; beside the continual whole burnt offering +there shall be their meat-offerings and their drink-offerings. + +On the fifth day nine calves, two rams, fourteen lambs of a year old without spot. + +Their meat-offerings and their drink-offerings +shall be to the calves and the rams and the lambs according to their number, according to their ordinance. + +And one kid of the goats for a sin-offering; beside the perpetual whole burnt offering; +there shall be their meat-offerings and their drink-offerings. + +On the sixth day eight calves, two rams, fourteen lambs of a year old without blemish. + +There shall be their meat-offerings and their drink-offerings to the calves and rams and lambs according to their number, according to their ordinance. + +And one kid of the goats for a sin-offering; beside the perpetual whole burnt offering; +there shall be their meat-offerings and their drink-offerings. + +On the seventh day seven calves, two rams, fourteen lambs of a year old without blemish. + +Their meat-offerings and their drink-offerings shall be to the calves and the rams and the lambs according to their number, according to their ordinance. + +And one kid of the goats for a sin-offering; beside the continual whole burnt offering; +there shall be their meat-offerings and their drink-offerings. + +And on the eighth day there shall be to you +29:35 +Or, +solemn assembly. See Lev. 23:36. + a release: you⌃ shall do no servile work in it. + +And you⌃ shall offer whole burnt offerings +as sacrifices to the Lord, one calf, one ram, seven lambs of a year old without spot. + + +There shall be their meat-offerings and their drink-offerings for the calf and the ram and the lambs according to their number, according to their ordinance. + +And one kid of the goats for a sin-offering; beside the continual whole burnt offering; +there shall be their meat-offerings and their drink-offerings. + +These +sacrifices shall you⌃ offer to the Lord in your feasts, besides your vows; and +you⌃ shall offer your free will offerings and your whole burnt offerings, and your meat-offerings and your drink-offerings, and your peace-offerings. + +

+ + +

And Moses spoke to the children of Israel according to all that the Lord commanded Moses. + +And Moses spoke to the heads of the tribes of the children of Israel, saying, This +is the thing which the Lord has commanded. + +Whatsoever man shall vow a vow to the Lord, or swear an oath, or bind himself with an obligation upon his soul, he shall not +30:3 +Gr. +profane + break his word; all that shall come out of his mouth he shall do. + +And if a woman shall vow a vow to the Lord, or bind herself with an obligation in her youth in her father's house; and her father should hear her vows and her obligations, wherewith she has bound her soul, and her father should hold his peace at her, then all her vows shall stand, + +and all the obligations with which she has bound her soul, shall remain to her. + +But if her father straitly forbid +her in the day in which he shall hear all her vows and her obligations, which she has contracted upon her soul, they shall not stand; and the Lord shall hold her guiltless, because her father forbade her. + +But if she should be indeed married, and her vows be upon her according to the utterance of her lips, +30:7 +It would seem that the relative in respect of οὓς must refer to ὸρισμοὺς, understood. + +the obligations which she has contracted upon her soul; + +and her husband should hear, and hold his peace at her in the day in which he should hear, then thus shall all her vows be binding, and her obligations, which she has contracted upon her soul shall stand. + +But if her husband should +30:9 +Or, +in any wise. + straitly forbid +her in the day in which he should hear her, none of her vows or obligations which she has contracted upon her soul shall stand, because her husband has disallowed her, and the Lord shall hold her guiltless. + +And the vow of a widow and of her that is put away, whatever she shall +30:10 +Gr. +vow. + bind upon her soul, shall stand to her. + +And if her vow +be made in the house of her husband, or the obligation upon her soul with an oath, + +and her husband should hear, and hold his peace at her, and not disallow her, then all her vows shall stand, and all the obligations which she contracted against her soul, shall stand against her. + +But if her husband should utterly +30:13 +Or. +forbid; +lit. +take away. + cancel the vow in the day in which he shall hear it, none of the things which shall proceed out of her lips in her vows, and in the obligations +contracted upon her soul, shall stand to her; her husband has cancelled them, and the Lord shall hold her guiltless. + +Every vow, and every binding oath to afflict her soul, her husband shall confirm it to her, or her husband shall cancel it. + +But if he be wholly silent at her from day to day, then shall he bind upon her all her vows; and he shall confirm to her the obligations +which she has bound upon herself, because he held his peace at her in the day in which he heard her. + +And if her husband should +30:16 +Or. +utterly. + in any wise cancel +them after the day in which he heard +them, then he shall bear his iniquity. + +These +are the ordinances which the Lord commanded Moses, between a man and his wife, and between a father and daughter in +her youth in the house of +her father. + +

+ + +

And the Lord spoke to Moses, saying, + +Avenge the +31:2 +Gr. +vengeance. + wrongs of the children of Israel on the Madianites, and +31:2 +Gr. +last. + afterwards you shall be added to your people. + +And Moses spoke to the people, saying, Arm +31:3 +Gr. +men. + some of you, and set yourselves in array before the Lord against Madian, to inflict vengeance on Madian from the Lord. + +Send a thousand of each tribe from all the tribes of the children of Israel to set themselves in array. + +And they numbered of the thousands of Israel a thousand of +each tribe, twelve thousands; +these were armed for war. + +And Moses sent them away a thousand of every tribe with their forces, and Phinees the son of Eleazar the son of Aaron the priest: and the holy instruments, and the signal trumpets +were in their hands. + +And they set themselves in array against Madian, as the Lord commanded Moses; and they killed every male. + +And they killed the kings of Madian together with their slain +subjects; even Evi and Rocon, and Sur, and Ur, and Roboc, five kings of Madian; and they killed with the sword Balaam the son of Beor with their +other slain. + +And they made a prey of the women of Madian, and their store, and their cattle, and all their possessions: and they spoiled their forces. + +And they burnt with fire all their cities in the places of their habitation and they burnt their villages with fire. + +And they took all their plunder, and all their spoils, both man and beast. + +And they brought to Moses and to Eleazar the priest, and to all the children of Israel, the captives, and the spoils, and the plunder, to the camp to Araboth Moab, which is at Jordan by Jericho. + +And Moses and Eleazar the priest and all the rulers of the synagogue went forth out of the camp to meet them. + +And Moses was angry with the captains of the host, the heads of thousands and the heads of hundreds who came from the battle-array. + +And Moses said to them, Why have you⌃ saved every female alive? + +For they were +the occasion to the children of Israel by the word of Balaam of their revolting and despising the word of the Lord, because of Phogor; and there was a plague in the congregation of the Lord. + +Now then kill every male in all the spoil, kill every woman, who has known the lying with man. + +And as for all the captivity of women, who have not known the lying with man, save you⌃ them alive. + +And you⌃ shall encamp outside the +great camp seven days; every one who has slain and who touches a +31:19 +i. e. +of a slain man + dead body, +31:19 +Or, +shall purify himself. + shall be purified on the third day, and you⌃ and your captivity +shall purify yourselves on the seventh day. + +And you⌃ shall purify every garment and every leather utensil, and +31:20 +Gr. +every work. + all furniture of goat skin, and every wooden vessel. + +And Eleazar the priest said to the men of the host that came from the battle-array, This +is the ordinance of the law which the Lord has commanded Moses. + +Beside the gold, and the silver, and the brass, and the iron, and lead, and tin, + +every thing that shall pass through the fire shall so be clean, nevertheless it shall be purified with the water of sanctification; and whatever will not pass through the fire shall pass through water. + +And on the seventh day you⌃ shall wash your garments, and be clean; and afterwards you⌃ shall come into the camp. + +And the Lord spoke to Moses, saying, + +Take the sum of the spoils of the captivity both of man and beast, you and Eleazar the priest, and the heads of the families of the congregation. + +And you⌃ shall divide the spoils between the warriors that went out to battle, and the whole congregation. + +And you⌃ shall take a tribute for the Lord from the warriors that went out to battle; one soul out of five hundred, from the men, and from the cattle, even from the oxen, and from the sheep, and from the asses; and you⌃ shall take from their half. + +And you shall give +them to Eleazar the priest +as the first fruits of the Lord. + +And from the half belonging to the children of Israel you shall take one +31:30 +Gr. +from +or +of + in fifty from the men, and from the oxen, and from the sheep, and from the asses, and from all the cattle; and you shall give them to the Levites that keep the charges in the tabernacle of the Lord. + +And Moses and Eleazar the priest did as the Lord commanded Moses. + +And that which remained of the spoil which the warriors took, was—of the sheep, six hundred and seventy-five thousand: + +and oxen, seventy-two thousand: + +and asses, sixty-one thousand. + +And persons of women who had not known lying with man, all the souls, thirty-two thousand. + +And the half, +even the portion of them that went out to war, from the number of the sheep, was three hundred and thirty-seven thousand and five hundred. + +And the tribute to the Lord from the sheep was six hundred and seventy-five. + +And the oxen, six and thirty thousand, and the tribute to the Lord seventy-two. + +And asses, thirty thousand and five hundred, and the tribute to the Lord, sixty-one: + +and the persons, sixteen thousand, and the tribute of them to the Lord, thirty-two souls. + +And Moses gave the tribute to the Lord, the heave-offering of God, to Eleazar the priest, as the Lord commanded Moses; + +from the half belonging to the children of Israel, whom Moses separated from the men of war. + +And the half +taken from the sheep, belonging to the congregation, was three hundred and thirty-seven thousand and five hundred. + +And the oxen, thirty-six thousand; + +asses, thirty thousand and five hundred; + +and persons, sixteen thousand. + +And Moses took of the half belonging to the children of Israel +31:47 +Gr. +the one out of the fifty. + the fifties part, of men and of cattle, and he gave them to the Levites who keep the charges of the tabernacle of the Lord, as the Lord commanded Moses. + +And all those who were appointed to be officers of thousands of the host, captains of thousands and captains of hundreds, approached Moses, and said to Moses, + +Your servants have taken the sum of the men of war with us, and not one is missing. + +And we have brought our gift to the Lord, +every man who has found an article of gold, whether an armlet, or a chain, or a ring, or a bracelet, or a clasp for hair, to make atonement for us before the Lord. + +And Moses and Eleazar the priest took the gold from them, even every wrought article. + +And all the wrought gold, even the offering that they offered to the Lord, was sixteen thousand and seven hundred and fifty shekels from the captains of thousands and the captains of hundreds. + +For the men of war took plunder every one for himself. + +And Moses and Eleazar the priest took the gold from the captains of thousands and captains of hundreds, and brought the +31:54 +Gr. +them. + vessels into the tabernacle of witness, a memorial of the children of Israel before the Lord. + +

+ + +

And the children of Ruben and the children of Gad had +32:1 +Gr. +cattle, a multitude, greatly a multitude. + a multitude of cattle, very great; and they saw the land of Jazer, and the land of Galaad; and the place was a place for cattle: + +and the children of Ruben and the children of Gad came, and spoke to Moses, and to Eleazar the priest, and to the princes of the congregation, saying, + +Ataroth, and Daebon, and Jazer, and Namra, and Esebon, and Eleale, and Sebama, and Nabau, and Baean, + +the land which the Lord has delivered up before the children of Israel, is pasture land, and your servants have cattle. + +And they said, If we have found grace in your sight, let this land be given to your servants for a possession, and do not cause us to pass over Jordan. + +And Moses said to the sons of Gad and the sons of Ruben, Shall your brethren go to war, and shall you⌃ sit here? + +And why do you⌃ pervert the minds of the children of Israel, that they should not cross over into the land, which the Lord gives them? + +Did not your fathers thus, when I sent them from Cades Barne to spy out the land? + +And they went up to the valley of the cluster, and spied the land, and turned aside the heart of the children of Israel, that they should not go into the land, which the Lord gave them. + +And the Lord was very angry in that day, and swore, saying, + +Surely these men who came up out of Egypt from twenty years old and upward, who know good and evil, shall not see the land which I swore +to give to Abraam and Isaac and Jacob, for they have not closely followed after me: + +save Caleb the son of Jephonne, who was set apart, and Joshua the son of Naue, for they closely followed after the Lord. + +And the Lord was very angry with Israel; and for forty years he caused them to wander in the wilderness, until all the generation which did evil +32:13 +Or, +before. + in the sight of the Lord was extinct. + +Behold, you⌃ are risen up in the room of your fathers, a +32:14 +Or, +an evil race, +lit +a destruction, but some read, σύστρεμμα. + combination of sinful men, to increase yet farther the fierce wrath of the Lord against Israel. + +For you⌃ will turn away from him to desert him yet once more in the wilderness, and you⌃ will sin against this whole congregation. + +And they came to him, and said, We will build here folds for our cattle, and cities for our possessions; + +and we will arm ourselves and go as an advanced guard before the children of Israel, until we shall have brought them into their place; and our possessions shall remain in walled cities because of the inhabitants of the land. + +We will not return to our houses till the children of Israel shall have been distributed, each to his own inheritance. + +And we will not any longer inherit with them from the other side of Jordan and onwards, because we have our full inheritance on the side beyond Jordan eastward. + +And Moses said to them, If you⌃ will do according to +32:20 +Gr. +this word. + these words, if you⌃ will arm yourselves before the Lord for battle, + +and every one of you will pass over Jordan fully armed before the Lord, until his enemy be destroyed from before his face, + +and the land shall be subdued before the Lord, then afterwards you⌃ shall return, and be guiltless before the Lord, and as regards Israel; and this land shall be to you for a possession before the Lord. + +But if you⌃ will not do so, you⌃ will sin against the Lord; and you⌃ shall know your sin, when afflictions shall come upon you. + +And you⌃ shall build for yourselves cities for your store, and folds for your cattle; and you⌃ shall do that which proceeds out of your mouth. + +And the sons of Ruben and the sons of Gad spoke to Moses, saying, Your servants will do as our lord commands. + +Our store, and our wives, and all our cattle shall be in the cities of Galaad. + +But your servants will go over all armed and set in order before the Lord to battle, as +our lord says. + +And Moses appointed to them +for judges Eleazar the priest, and Joshua the son of Naue, and the chiefs of the families of the tribes of Israel. + +And Moses said to them, If the sons of Ruben and the sons of Gad will pass over Jordan with you, every one armed for war before the Lord, and you⌃ shall subdue the land before you, then you⌃ shall give to them the land of Galaad for a possession. + +But if they will not pass over armed with you to war before the Lord, then shall you⌃ cause to pass over their possessions and their wives and their cattle before you into the land of Chanaan, and they shall inherit with you in the land of Chanaan. + +And the sons of Ruben and the sons of Gad answered, saying, Whatsoever +32:31 +Or, +our Lord, or, our master, +i. e. +Moses. + the Lord says to his servants, that will we do. + +We will go over armed before the Lord into the land of Chanaan, and you⌃ shall give us our inheritance beyond Jordan. + +And Moses gave to them, even to the sons of Gad and the sons of Ruben, and to the half tribe of Manasse of the sons of Joseph, the kingdom of Seon king of the Amorites, and the kingdom of Og king of Basan, the land and +32:33 +Gr. +the cities. + its cities with its coasts, the cities of the land round about. + +And the sons of Gad built Daebon, and Ataroth, and Aroer, + +and Sophar, and Jazer, and they set them up, + +and Namram, and Baetharan, strong cities, and folds for sheep. + +And the sons of Ruben built Esebon, and Eleale, and Kariatham, + +and Beelmeon, surrounded +with walls, and Sebama; and they called the names of the cities which they built, after their own names. + +And a son of Machir the son of Manasse went to Galaad, and took it, and destroyed the Amorite who lived in it. + +And Moses gave Galaad to Machir the son of Manasse, and he lived there. + +And Jair the +son of Manasse went and took their +32:41 +Or, +folds. + villages, and called them the villages of Jair. + +And Nabau went and took Caath and her villages, and called them Naboth after his name. + +

+ + +

And these are the stages of the children of Israel, as they went out from the land of Egypt with their host by the hand of Moses and Aaron. + +And Moses wrote their removals and their stages, by the word of the Lord: and these are the stages of their journeying. + +They departed from Ramesses in the first month, on the fifteenth day of the first month; on the day after the passover the children of Israel went forth with a high hand before all the Egyptians. + +And the Egyptians buried those that died of them, even all that the Lord struck, every firstborn in the land of Egypt; also the Lord executed vengeance on their gods. + +And the children of Israel departed from Ramesses, and encamped in Socchoth: + +and they departed from Socchoth and encamped in Buthan, which is a part of the wilderness. + +And they departed from Buthan and encamped at the mouth of Iroth, which is opposite Beel-sepphon, and encamped opposite Magdol. + +And they departed from before Iroth, and crossed the middle of the sea into the wilderness; and they went a journey of three days through the wilderness, and encamped in Picriae. + +And they departed from Picriae, and came to Aelim; and in Aelim +were twelve fountains of water, and seventy palm-trees, and they encamped there by the water. + +And they departed from Aelim, and encamped by the Red Sea. + +And they departed from the Red Sea, and encamped in the wilderness of Sin. + +And they departed from the wilderness of Sin, and encamped in Raphaca. + +And they departed from Raphaca, and encamped in Aelus. + +And they departed from Aelus, and encamped in Raphidin; and there was no water there for the people to drink. + +And they departed from Raphidin, and encamped in the wilderness of Sina. + +And they departed from the wilderness of Sina, and encamped at the +33:16 +Heb. Kibroth-hattaavah. + Graves of Lust. + +And they departed from the Graves of Lust, and encamped in Aseroth. + +And they departed from Aseroth, and encamped in Rathama. + +And they departed from Rathama, and encamped in Remmon Phares. + +And they departed from Remmon Phares, and encamped in Lebona. + +And they departed from Lebona, and encamped in Ressan. + +And they departed from Ressan, and encamped in Makellath. + +And they departed from Makellath, and encamped in Saphar. + +And they departed from Saphar, and encamped in Charadath. + +And they departed from Charadath, and encamped in Makeloth. + +And they departed from Makeloth, and encamped in Kataath. + +And they departed from Kataath, and encamped in Tarath. + +And they departed from Tarath, and encamped in Mathecca. + +And they departed from Mathecca, and encamped in Selmona. + +And they departed from Selmona, and encamped in Masuruth. + +And they departed from Masuruth, and encamped in Banaea. + +And they departed from Banaea, and encamped in the mountain Gadgad. + +And they departed from the mountain Gadgad, and encamped in Etebatha. + +And they departed from Etebatha, and encamped in Ebrona. + +And they departed from Ebrona, and encamped in Gesion Gaber. + +And they departed from Gesion Gaber, and encamped in the wilderness of Sin; and they departed from the wilderness of Sin, and encamped in the wilderness of Pharan; this is Cades. + +And they departed from Cades, and encamped in mount Or near the land of Edom. + +And Aaron the priest went up by the command of the Lord, and died there in the fortieth year of the departure of the children of Israel from the land of Egypt, in the fifth month, on the first +day of the month. + +And Aaron was one hundred and twenty-three years old, when he died in mount Or. + +And Arad the Chananitish king (he too lived in the land of Chanaan) having heard when the children of Israel were entering +the land— + +then they departed from mount Or, and encamped in Selmona. + +And they departed from Selmona, and encamped in Phino. + +And they departed from Phino, and encamped in Oboth. + +And they departed from Oboth, and encamped in Gai, on the other side +Jordan on the borders of Moab. + +And they departed from Gai, and encamped in Daebon Gad. + +And they departed from Daebon Gad, and encamped in Gelmon Deblathaim. + +And they departed from Gelmon Deblathaim, and encamped on the mountains of Abarim, over against Nabau. + +And they departed from the mountains of Abarim, and encamped on the west of Moab, at Jordan by Jericho. + +And they encamped by Jordan between Aesimoth, as far as Belsa to the west of Moab. + +And the Lord spoke to Moses at the west of Moab by Jordan at Jericho, saying, + +Speak to the children of Israel, and you shall say to them, You⌃ are to pass over Jordan into the land of Chanaan. + +And you⌃ shall destroy all that dwell in the land before your face, and you⌃ shall abolish their high places, and all their molten images you⌃ shall destroy, and you⌃ shall demolish all their pillars. + +And you⌃ shall destroy all the inhabitants of the land, and you⌃ shall dwell in it, for I have given their land to you for an inheritance. + +And you⌃ shall inherit their land according to your tribes; to the greater number you⌃ shall give the larger possession, and to the smaller you⌃ shall give the less possession; to whatever +part +33:54 +Gr. +his + a man's name shall go forth +by lot, there shall be his +property: you⌃ shall inherit according to the tribes of your families. + +But if you⌃ will not destroy the dwellers in the land from before you, then it shall come to pass that whoever of them you⌃ shall leave shall be thorns in your eyes, and darts in your sides, and they shall be enemies to you on the land on which you⌃ shall dwell; + +and it shall come to pass that as I had determined to do to them, so I will do to you. + +

+ + +

And the Lord spoke to Moses, saying, + +Charge the children of Israel, and you shall say to them, You⌃ are entering into the land of Chanaan: it shall be to you for an inheritance, the land of Chanaan with its boundaries. + +And your southern side shall be from the wilderness of Sin to the border of Edom, and your border southward shall +34:3 +Gr. +be. + extend on the side of the salt sea eastward. + +And your border shall go round you from the south to the ascent of Acrabin, and shall proceed by Ennac, and the going forth of it shall be southward to Cades Barne, and it shall go forth to the village of Arad, and shall proceed by Asemona. + +And the border shall compass from Asemona to the river of Egypt, and the sea shall be the termination. + +And you⌃ shall have your border on the +34:6 +Gr. +sea + west, the great sea shall be the boundary: this shall be to you the border on the west. + +And this shall be your northern border; from the great sea you⌃ shall measure to yourselves, by the side of +34:7 +Gr. +the mountain, the mountain. By this repetition is perhaps meant mount Hor. + the mountain. + +And you⌃ shall measure to yourselves the mountain from mount +Hor at the entering in to Emath, and the termination of it shall be the coasts of Saradac. + +And the border shall go out to Dephrona, and its termination shall be at Arsenain; this shall be your border from the north. + +And you⌃ shall measure to yourselves the eastern border from Arsenain to Sepphamar. + +And the border shall go down from Sepphamar to Bela eastward to the fountains, and the border shall go down from Bela behind the sea Chenereth eastward. + +And the border shall go down to Jordan, and the termination shall be the salt sea; this shall be your land and its borders round about. + +And Moses charged the children of Israel, saying, This +is the land which you⌃ shall inherit by lot, even as the Lord commanded us to give it to the nine tribes and the half-tribe of Manasse. + +For the tribe of the children of Ruben, and the tribe of the children of Gad have received +their inheritance according to their +34:14 +Gr. +the houses of their families. + families; and the half-tribe of Manasse have received their inheritances. + +Two tribes and half a tribe have received their inheritance beyond Jordan by Jericho from the south eastwards. + +And the Lord spoke to Moses, saying, + +These +are the names of the men who shall +34:17 +Gr. +inherit the land for you. + divide the land to you for an inheritance; Eleazar the priest and Joshua the +son of Naue. + +And you⌃ shall take one ruler from +each tribe to divide the land to you by lot. + +And these +are the names of the men; of the tribe of Juda Chaleb the son of Jephonne. + +Of the tribe of Symeon, Salamiel the son of Semiud. + +Of the tribe of Benjamin, Eldad the son of Chaslon. + +Of the tribe of Dan the prince +was Bacchir the son of Egli. + +Of the sons of Joseph of the tribe of the sons of Manasse, the prince was Aniel the son of Suphi. + +Of the tribe of the sons of Ephraim, the prince was Camuel the son of Sabathan. + +Of the tribe of Zabulon, the prince was Elisaphan the son of Pharnac. + +Of the tribe of the sons of Issachar, the prince was Phaltiel the son of Oza. + +Of the tribe of the children of Aser, the prince was Achior the son of Selemi. + +Of the tribe of Nephthali, the prince was Phadael the son of Jamiud. + +These did the Lord command to distribute +the inheritances to the children of Israel in the land of Chanaan. + +

+ + +

And the Lord spoke to Moses to the west of Moab by Jordan near Jericho, saying, + +Give orders to the children of Israel, and they shall give to the Levites cities to dwell in from the +35:2 +Or, +lots. + lot of their possession, and they shall give to the Levites the suburbs of the cities round about +35:2 +i. e. +the Levites. + them. + +And the cities shall be for them to dwell in, and their +35:3 +Or, +districts, +i. e. +spaces marked off. +Gr. +special offerings of land, +q. d. +glebe lands. This latter sense is probably the right one here. + enclosures shall be for their cattle and all their beasts. + +And the suburbs of the cities which you⌃ shall give to the Levites, shall be from the wall of the city and outwards two thousand cubits round about. + +And you shall measure outside 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 your city shall be in the midst of this, and the suburbs of the cities +as described. + +And you⌃ shall give the cities to the Levites, the six cities of refuge which you⌃ shall give for the slayer to flee there, and in addition to these, forty-two cities. + +You⌃ shall give to the Levites in all forty-eight cities, them and their suburbs. + +And as for the cities which you⌃ shall give out of the possession of the children of Israel, from those +that have much +you⌃ shall give much, and from those that have less you⌃ shall give less: they shall give of their cities to the Levites each one according to his inheritance which they shall inherit. + +And the Lord spoke to Moses, saying, + +Speak to the children of Israel, and you shall say to them, You⌃ are to cross over Jordan into the land of Chanaan. + +And you⌃ shall appoint to yourselves cities: they shall be to you cities of refuge for the slayer to flee to, every one who has +35:11 +Gr. +struck a life. + killed another unintentionally. + +And the cities shall be to you places of refuge from +35:12 +Gr. +him that as kinsman represents the blood. + the avenger of blood, and the slayer shall not die until he stands before the congregation for judgment. + +And the cities which you⌃ shall assign, +even the six cities, shall be places of refuge for you. + +You⌃ shall assign three cities on the other side of Jordan, and you⌃ shall assign three cities in the land of Chanaan. + +It shall be a place of refuge for the children of Israel, and for the stranger, and for him that sojourns among you; these cities shall be for a place of refuge, for every one to flee there who has killed a man unintentionally. + +And if he should strike him with an iron instrument, and the man should die, he is a murderer; let the murderer by all means be put to death. + +And if he should strike him with a stone +thrown from his hand, whereby a man may die, and he +thus die, he is a murderer; let the murderer by all means be put to death. + +And if he should strike him with an instrument of wood from his hand, whereby he may die, and he +thus die, he is a murderer; let the murderer by all means be put to death. + +The avenger of blood himself shall kill the murderer: whenever he shall meet him he shall kill him. + +And if he should thrust him through enmity, or cast any thing upon him from an ambuscade, and the man should die, + +or if he have struck him with his hand through anger, and the man should die, let the man that struck him be put to death by all means, he is a murderer: let the murderer by all means be put to death: the avenger of blood shall kill the murderer when he meets him. + +But if he should thrust him suddenly, not through enmity, or cast +35:22 +Gr. +any vessel +or +weapon. + any thing upon him, not from an ambuscade, + +or +strike him with any stone, whereby a man may die, unawares, and it should fall upon him, and he should die, but he was not his enemy, nor sought to hurt him; + +then the assembly shall judge between the smiter and the avenger of blood, according to these judgments. + +And the congregation shall rescue the slayer from the avenger of blood, and the congregation shall restore him to his city of refuge, whither he fled for refuge; and he shall dwell there till the death of the high-priest, whom they anointed with the holy oil. + +But if the slayer should in any wise go out beyond the bounds of the city whither he fled for refuge, + +and the avenger of blood should find him without the bounds of the city of his refuge, and the avenger of blood should kill the slayer, he is not guilty. + +For +35:28 +Gr. +let him remain. + he ought to have remained in the city of refuge till the high-priest died; and after the death of the high-priest the slayer shall return to the land of his possession. + +And these things shall be to you for an ordinance of judgment throughout your generations in all your dwellings. + +Whoever +35:30 +Gr. +smites a life. + kills a man, you shall kill the murderer +35:30 +Gr. +by witnesses. + on the testimony of witnesses; and one witness shall not testify against a soul that he should die. + +And you⌃ shall not accept ransoms for life from a murderer who is worthy of death, for he shall be surely put to death. + +You⌃ shall not accept a ransom +to excuse his fleeing to the city of refuge, so that he should again dwell in the land, until the death of the high-priest. + +So shall you⌃ not pollute with murder the land in which you⌃ dwell; for this blood pollutes the land, and the land shall not be purged from the blood shed upon it, but by the blood of him that shed it. + +And you⌃ shall not defile the land whereon you⌃ dwell, on which I dwell in the midst of you; for I am the Lord dwelling in the midst of the children of Israel. + +

+ + +

And the heads of the tribe of the sons of Galaad the son of Machir the son of Manasse, of the tribe of the sons of Joseph, drew near, and spoke before Moses, and before Eleazar the priest, and before the heads of the houses of the families of the children of Israel: + +and they said, The Lord commanded our lord to render the land of inheritance by lot to the children of Israel; and the Lord appointed our lord to give the inheritance of Salpaad our brother to his daughters. + +And they will become wives in one of the tribes of the children of Israel; so their inheritance shall be taken away from the possession of our fathers, and shall be added to the inheritance of the tribe into which the women shall marry, and shall be taken away from the portion of our inheritance. + +And if there shall be a release of the children of Israel, then shall their inheritance be added to the inheritance of the tribe into which the women marry, and their inheritance, shall be taken away from the inheritance of our family's tribe. + +And Moses charged the children of Israel by the commandment of the Lord, saying, Thus +36:5 +Gr. +say. + says the tribe of the children of Joseph. + +This +is the thing which the Lord has appointed the daughters of Salpaad, saying, Let them +36:6 +Gr. +be wives. + marry where they please, only let them marry +men of their father's tribe. + +So shall not the inheritance of the children of Israel go about from tribe to tribe, for the children of Israel shall +36:7 +Gr. +be cemented. See Matt. 19:5; Acts 5:26. + steadfastly continue each in the inheritance of his family's tribe. + +And whatever daughter is heiress to a property of the tribes of the children Israel, +such women shall be married each to one of her father's tribe, that the sons of Israel may each inherit the property of his father's tribe. + +And the inheritance shall not go about from one tribe to another, but the children of Israel shall steadfastly continue each in his own inheritance. + +As the Lord commanded Moses, so did they to the daughters of Salpaad. + +So Thersa, and Egla, and Melcha, and Nua, and Malaa, the daughters of Salpaad, married their cousins; + +they were married +to men of the tribe of Manasse of the sons of Joseph; and their inheritance was attached to the tribe of their father's family. + +These +are the commandments, and the ordinances, and the judgments, which the Lord commanded by the hand of Moses, at the west of Moab, at Jordan by Jericho. + +

+
+ +Deuteronomy +DEUTERONOMY +Deuteronomy +DEU +

DEUTERONOMY +

+ + +

These +are the words which Moses spoke to all Israel on this side Jordan in the desert towards the west near the Red Sea, between Pharan Tophol, and Lobon, and Aulon, and the gold works. + +It is a journey of eleven days from Choreb to mount Seir as far as Cades Barne. + +And it came to pass in the fortieth year, in the eleventh month, on the first +day of the month, Moses spoke to all the children of Israel, according to all things which the Lord commanded him for them: + +after he had struck Seon king of the Amorites who lived in Esebon, and Og the king of Basan who lived in Astaroth and in Edrain; + +beyond Jordan in the land of Moab, Moses began to declare this law, saying, + +The Lord your God spoke to us in Choreb, saying, Let it suffice you +1:6 +Gr. +to dwell. + to have lived +so long in this mountain. + +Turn you⌃ and depart and enter into the mountain of the Amorites, and +go to all that dwell near about Araba, to the mountain and the plain and to the south, and the land of the Chananites near the sea, and Antilibanus, as far as the great river, the river Euphrates. + +Behold, +God has delivered the land before you; go in and inherit the land, which I swore to your fathers, Abraam, and Isaac, and Jacob, to give it to them and to their seed after them. + +And I spoke to you at that time, saying, I shall not be able by myself to bear you. + +The Lord your God has multiplied you, and, behold, you⌃ are today as the stars of heaven for multitude. + +The Lord God of your fathers +1:11 +Or, +increase you. + add to you a thousand-fold more than you are, and bless you as he has spoken to you. + +How shall I alone be able to bear your labor, and your burden, and your gainsayings? + +1:13 +Gr. +give. + Take to yourselves wise and understanding and prudent men for your tribes, and I will set your leaders over you. + +And you⌃ answered me and said, The thing which you have told us +is good to do. + +So I took of you wise and understanding and prudent men, and I set them to rule over you as rulers of thousands, and rulers of hundreds, and rulers of fifties, and rulers of tens, and +1:15 +Perhaps, recorders: +more lit. +instructors in reading and writing. + officers to your judges. + +And I charged your judges at that time, saying, Hear +causes between your brethren, and judge rightly between a man and +his brother, and the +1:16 +Gr. +his stranger. + stranger that is with him. + +You shall not have respect to +1:17 +Gr. +a face. + persons in judgment, you shall judge +1:17 +Gr. +according to small and great. + small and great equally; you shall not shrink from before the person of a man, for the judgment is God's; and whatever matter shall be too hard for you, you⌃ shall bring it to me, and I will hear it. + +And I charged upon you at that time all the commands which you⌃ shall perform. + +And we departed from Choreb, and went through all that great wilderness and terrible, which you⌃ saw, by the way of the mountain of the Amorite, as the Lord our God charged us, and we came as far as Cades Barne. + +And I said to you, You⌃ have come as far as the mountain of the Amorite, which the Lord our God gives to you: + +behold, the Lord your God has delivered to us the land before you: go up and inherit it as the Lord God of your fathers said to you; fear not, neither be afraid. + +And you⌃ all came to me, and said, Let us send men before us, and let them go up to the land for us; and let them bring back to us a report of the way by which we shall go up, and of the cities into which we shall enter. + +And the saying pleased me: and I took of you twelve men, one man of a tribe. + +And they turned and went up to the mountain, and they came as far as the valley of the cluster, and surveyed it. + +And they took in their hands of the fruit of the land, and brought it to you, and said, The land is good which the Lord our God gives us. + +Yet you⌃ would not go up, but rebelled against the words of the Lord our God. + +And you⌃ murmured in your tents, and said, Because the Lord hated us, he has brought us out of the land of Egypt to deliver us into the hands of the Amorites, to destroy us. + +Whither do we go up? and your brethren drew away your heart, saying, +It is a great nation and populous, and mightier than we; and +there are cities great and walled up to heaven: moreover we saw there the sons of the giants. + +And I said to you, Fear not, neither be you⌃ afraid of them; + +the Lord your God who goes before your face, he shall fight against them together with you effectually, according to all that he wrought for you in the land of Egypt; + +and in this wilderness which you⌃ saw, by the way of the mountain of the Amorite; +1:31 +See Acts 13. 18, and note in the margin of English Bible on ἐτροφόρησεν. + how the Lord your God will bear you as a nursling, as if any man should nurse his child, through all the way which you⌃ have gone until you⌃ came to this place. + +And in this matter you⌃ believed not the Lord our God, + +who goes before you in the way to choose you a place, guiding you in fire by night, showing you the way by which you⌃ go, and a cloud by day. + +And the Lord heard the voice of your words, and being greatly provoked he swore, saying, + +1:35 +Gr. +If one. + Not one of these men shall see this good land, which I swore to their fathers, + +except Chaleb the son of Jephonne, he shall see it; and to him I will give the land on which he went up, and to his sons, because he +1:36 +Or, +followed closely after the Lord. + attended to the things of the Lord. + +And the Lord was angry with me for your sake, saying, Neither shall you by any means enter therein. + +Joshua the son of Naue, who stands by you, he shall enter in there; do you strengthen him, for he shall cause Israel to inherit it. + +And every young child who this day knows not good or evil, —they shall enter therein, and to them I will give it, and they shall inherit it. + +And you⌃ turned and marched into the wilderness, in the way by the Red Sea. + +And you⌃ answered and said, We have sinned before the Lord our God; we will go up and fight according to all that the Lord our God has commanded us: and having taken every one his weapons of war, and being gathered together, you⌃ +1:41 +Gr. +go up. + went up to the mountain. + +And the Lord said to me, Tell them, You⌃ shall not go up, neither shall you⌃ fight, for I am not with you; thus shall you⌃ not be destroyed before your enemies. + +And I spoke to you, and you⌃ did not listen to me; and you⌃ transgressed the commandment of the Lord; and you⌃ forced your way and went up into the mountain. + +And the Amorite who lived in that mountain came out to meet you, and pursued you as bees do, and wounded you from Seir to Herma. + +And you⌃ sat down and wept before the Lord our God, and the Lord listened not to your voice, neither did he take heed to you. + +And you⌃ lived in Cades many days, as many days as you⌃ lived +there. + +

+ + +

And we turned and departed into the wilderness, by the way of the Red Sea, as the Lord spoke to me, and we compassed mount Seir many days. + +And the Lord said to me, + + +2:3 +Or, +Let it suffice you to compass. + You⌃ have compassed this mount long enough; turn therefore toward the north. + +And charge the people, saying, You⌃ are going through the borders of your brethren the children of Esau, who dwell in Seir; and they shall fear you, and dread you greatly. + +Do not engage in war against them, for I will not give you of their land even enough to set your foot upon, for I have given mount Seir to the children of Esau as an inheritance. + +Buy food of them for money and eat, and you⌃ shall receive water of them by measure for money, and drink. + +For the Lord our God has blessed you in every work of your hands. Consider how you went through that great and terrible wilderness: behold, the Lord your God +has been with you forty years; you did not lack any thing. + +And we passed by our brethren the children of Esau, who lived in Seir, by the way of Araba from Aelon and from Gesion Gaber; and we turned and passed by the way of the desert of Moab. + +And the Lord said to me, Do not you⌃ quarrel with the Moabites, and do not engage in war with them; for I will not give you of their land for an inheritance, for I have given Aroer to the children of Lot to inherit. + +Formerly the Ommin lived in it, a great and numerous nation and powerful, like the Enakim. + +These also shall be accounted +2:11 +Heb. giants. + Raphain like the Enakim; and the Moabites call them Ommin. + +And the Chorrhite lived in Seir before, and the sons of Esau destroyed them, and utterly consumed them from before them; and they lived in their place, as Israel did to the land of his inheritance, which the Lord gave to them. + +Now then, arise you⌃, +said I, and depart, and cross the valley of Zaret. + +And the days in which we traveled from Cades Barne till we crossed the valley of Zaret, +were thirty and eight years, until the whole generation of the men of war failed, dying out of the camp, as the Lord God swore to them. + +And the hand of the Lord was upon them to destroy them out of the midst of the camp, until they were consumed. + +And it came to pass when all the men of war dying out of the midst of the people had fallen, + +that the Lord spoke to me, saying, + +You shall pass over this day the borders of Moab +2:18 +Or, +even Aroer. + to Aroer; + +and you⌃ shall draw near to the children of Amman: do not quarrel with them, nor wage war with them; for I will not give you of the land of the children of Amman for an inheritance, because I have given it to the children of Lot for an inheritance. + +It shall be accounted a land of Raphain, for the Raphain lived there before, and the Ammanites call them Zochommin. + +A great nation and populous, and mightier than you, as also the Enakim: yet the Lord destroyed them from before them, and they inherited +their land, and they lived +there instead of them until this day. + +As they did to the children of Esau that dwell in Seir, even as they destroyed the Chorrhite from before them, and inherited +2:22 +Gr. +them. + their country, and lived +therein instead of them until this day. + +And the Evites who dwell in Asedoth to Gaza, and the Cappadocians who came out of Cappadocia, destroyed them, and lived in their room. + +Now then arise and depart, and pass over the valley of Arnon: behold, I have delivered into your hands Seon the king of Esebon the Amorite, and his land: begin to inherit +it: engage in war with him this day. + +Begin to put your terror and your fear on the face of all the nations under heaven, who shall be troubled when they have heard your name, and shall be in anguish +2:25 +Or, +for fear of you. +Hebraism. + before you. + +And I sent ambassadors from the wilderness of Kedamoth to Seon king of Esebon with peaceful words, saying, + +I will pass through your land: I will go by the road, I will not turn aside to the right hand or to the left. + +You shall give me food for money, and I will eat; and you shall give me water for money, and I will drink; I will only go through on my feet: + +as the sons of Esau did to me, who lived in Seir, and the Moabites who lived in Aroer, until I shall have passed Jordan into the land which the Lord our God gives us. + +And Seon king of Esebon would not that we should pass by him, because the Lord our God hardened his spirit, and made his heart stubborn, that he might be delivered into your hands, as on this day. + +And the Lord said to me, Behold, I have begun to deliver before you Seon the king of Esebon the Amorite, and his land, and do you begin to inherit his land. + +And Seon the king of Esebon came forth to meet us, he and all his people to war at Jassa. + +And the Lord our God delivered him before our face, and we struck him, and his sons, and all his people. + +And we took possession of all his cities at that time, and we utterly destroyed every city in succession, and their wives, and their children; we left no living prey. + +Only we took the cattle captive, and took the spoil of the cities. + +From Aroer, which is by the brink of the brook of Arnon, and the city which is in the valley, and as far as the mount of Galaad; there was not a city which escaped us: the Lord our God delivered all of them into our hands. + +Only we did not draw near to the children of Amman, even all the parts bordering on the brook Jaboc, and the cities in the mountain country, as the Lord our God charged us. + +

+ + +

And we turned and went by the way leading to Basan; and Og the king of Basan came out to meet us, he and all his people, to battle at Edraim. + +And the Lord said to me, Fear him not, for I have delivered him, and all his people, and all his land, into your hands; and you shall do to him as you did to Seon king of the Amorites who lived in Esebon. + +And the Lord our God delivered him into our hands, even Og the king of Basan, and all his people; and we struck him until we left none of his seed. + +And we mastered all his cities at that time; there was not a city which we took not from them; sixty cities, all the country round about Argob, belonging to king Og in Basan: + +all strong cities, lofty walls, gates and bars; besides the very many cities of the Pherezites. + +We utterly destroyed +them as we dealt with Seon the king of Esebon, so we utterly destroyed every city in order, and the women and the children, + +and all the cattle; and we took for a prey to ourselves the spoil of the cities. + +And we took at that time the land out of the hands of the two kings of the Amorites, who were beyond Jordan, +extending from the brook of Arnon even to Aermon. + +The Phoenicians call Aermon Sanior, but the Amorite has called it Sanir. + +All the cities of Misor, and all Galaad, and all Basan as far as Elcha and Edraim, cities of the kingdom of Og in Basan. + +For only Og the king of Basan was left of the Raphain: behold, his bed +was a bed of iron; behold, +it is in the +3:11 +Or, +acropolis, citadel: or extremity of the land of the Ammonites. + chief city of the children of Ammon; the length of it +is nine cubits, and the breadth of it four cubits, according to the cubit of a man. + +And we inherited that land at that time from Aroer, which is by the border of the torrent Arnon, and half the mount of Galaad; and I gave his cities to Ruben and to Gad. + +And the rest of Galaad, and all Basan the kingdom of Og I gave to the half-tribe of Manasse, and all the country round about Argob, all that Basan; it shall be accounted the land of Raphain. + +And Jair the son of Manasse took all the country round about Argob as far as the borders of Gargasi and Machathi: he called them by his name Basan Thavoth Jair until this day. + +And to Machir I gave Galaad. + +And to Ruben and to Gad I gave +the land under Galaad as far as the brook of Arnon, the border between the brook and as far as Jaboc; the brook +is the border to the children Amman. + +And Araba and Jordan +are the boundary of Machanareth, even to the sea of Araba, the salt sea under Asedoth Phasga eastward. + +And I charged you at that time, saying, The Lord your God has given you this land by lot; arm yourselves, every one +that is powerful, and go before your brethren the children of Israel. + +Only your wives and your children and your cattle (I know that you⌃ have much cattle), let them dwell in your cities which I have given you; + +until the Lord your God give your brethren rest, as also he has given to you, and they also shall inherit the land, which the Lord our God gives them on the other side of Jordan; then you⌃ shall return, each one to his inheritance which I have given you. + +And I commanded Joshua at that time, saying, Your eyes have seen all things, which the Lord our God did to these two kings: so shall the Lord our God do to all the kingdoms against which you cross over there. + +You⌃ shall not be afraid of them, because the Lord our God himself shall fight for you. + +And I implored the Lord at that time, saying, + +Lord God, you have begun to show to your servant your strength, and your power, and your mighty hand, and your high arm: for what God is there in heaven or on the earth, who will do as you have done, and according to your might? + +I will therefore go over and see this good land that is beyond Jordan, this good mountain and Antilibanus. + +And the Lord because of you did not regard me, and listened not to me; and the Lord said to me, Let it suffice you, speak not of this matter to me any more. + +Go up to the top of the +3:27 +i. e. +Pisgah. + quarried rock, and look with your eyes westward, and northward, and southward, and eastward, and behold +it with your eyes, for you shall not go over this Jordan. + +And charge Joshua, and strengthen him, and encourage him; for he shall go before the face of this people, and he shall give them the inheritance of all the land which you have seen. + +And we abode in the valley near the house of Phogor. + +

+ + +

And now, Israel, hear the ordinances and judgments, all that I teach you this day to do: that you⌃ may live, and be multiplied, and that you⌃ may go in and inherit the land, which the Lord God of your fathers gives you. + +You⌃ shall not add to the word which I command you, and you⌃ shall not take from it: keep the commandments of the Lord our God, all that I command you this day. + +Your eyes have seen all that the Lord our God did in +the case of Beel-phegor; for every man that went after Beel-phegor, the Lord your God has utterly destroyed him from among you. + +But you⌃ that kept close to the Lord your God are all alive today. + +Behold, I have shown you ordinances and judgments as the Lord commanded me, that you⌃ should do so in the land into which you⌃ go to inherit it. + +And you⌃ shall keep and do them: for this is your wisdom and understanding before all nations, as many as shall hear all these ordinances; and they shall say, Behold, this great nation +is a wise and understanding people. + +For what manner of nation +is so great, which has God so near to them as the Lord our God +is in all things in whatever we may call upon him? + +And what manner of nation +is so great, which has righteous ordinances and judgments according to all this law, which I set before you this day? + +Take heed to yourself, and keep your +4:9 +Gr. +soul. + heart diligently: forget not any of the things, which your eyes have seen, and let them not depart from your heart all the days of your life; and you shall teach your sons and your sons' sons, + + +even the things that happened in the day in which you⌃ stood before the Lord our God in Choreb in the day of the assembly; for the Lord said to me, Gather the people to me, and let them hear my words, that they may learn to fear me all the days which they live upon the earth, and they shall teach their sons. + +And you⌃ drew near and stood under the mountain; and the mountain burned with fire up to heaven: +there was darkness, blackness, +and tempest. + +And the Lord spoke to you out of the midst of the fire a voice of words, which you⌃ heard: and you⌃ saw no likeness, only +you⌃ heard a voice. + +And he announced to you his covenant, which he commanded you to keep, even the ten +4:13 +Gr. +words or sayings. + commandments; and he wrote them on two tables of stone. + +And the Lord commanded me at that time, to teach you ordinances and judgments, that you⌃ should do them on the land, into which you⌃ go to inherit it. + +And take good heed to your hearts, for you⌃ saw no similitude in the day in which the Lord spoke to you in Choreb in the mountain out of the midst of the fire: + +lest you⌃ transgress, and make to yourselves a carved image, any kind of figure, the likeness of male or female, + +the likeness of any beast of those that are on the earth, the likeness of any winged bird which flies under heaven, + +the likeness of any reptile which creeps on the earth, the likeness of any fish of those which are in the waters under the earth; + +and lest having looked up to the sky, and having seen the sun and the moon and the stars, and all the +4:19 +Gr. +order of heaven. + heavenly bodies, you should go astray and worship them, and serve them, which the Lord your God has distributed to all the nations under heaven. + +But God took you, and led you forth out of the land of Egypt, out of the iron furnace, out of Egypt, to be to him a people of inheritance, as at this day. + +And the Lord God was angry with me for the things said by you, and swore that I should not go over this Jordan, and that I should not enter into the land, which the Lord your God gives you for an inheritance. + +For +4:22 +Gr. +I die. + I am to die in this land, and shall not pass over this Jordan; but you⌃ are to pass over, and shall inherit this good land. + +Take heed to yourselves, lest you⌃ forget the covenant of the Lord our God, which he made with you, and you⌃ transgress, and make to yourselves a graven image of any of the things concerning which the Lord your God commanded you. + +For +4:24 +Heb 12 29. + the Lord your God is a consuming fire, a jealous God. + +And when you shall have begotten sons, and shall have sons' sons, and you⌃ shall have lived a long time on the land, and shall have transgressed, and made a graven image of any thing, and shall have done wickedly before the Lord your God to provoke him; + +I call heaven and earth this day to witness against you, that you⌃ shall surely perish from off the land, into which you⌃ go across Jordan to inherit it there; you⌃ shall not prolong your days upon it, but shall be utterly cut off. + +And the Lord shall scatter you among all nations, and you⌃ shall be left few in number among all the nations, among which the Lord shall bring you. + +And you⌃ shall there serve other gods, the works of the hands of men, wood and stones, which +4:28 +Gr. +shall not see, etc. + can’t see, nor can they hear, nor eat, nor smell. + +And there you⌃ shall seek the Lord your God, and you⌃ shall find him whenever you⌃ shall seek him with all your heart, and with all +4:29 +Gr. +your. + your soul in your affliction. + +And +4:30 +Gr. +all these words shall find you. +Hebraism. all these things shall come upon you in the last days, and you shall turn to the Lord your God, and shall listen to his voice. + +Because the Lord your God +is a God of pity: he will not forsake you, nor destroy you; he will not forget the covenant of your fathers, which the Lord swore to them. + +Ask of the former days which were before you, from the day when God created man upon the earth, and +beginning at the +one end of heaven to the other end of heaven, if there has happened any thing like to this great event, if such a thing has been heard: + +if a nation have heard the voice of the living God speaking out of the midst of the fire, as you have heard and have lived; + +if God has assayed to go and take to himself a nation out of the midst of +another nation with trial, and with signs, and with wonders, and with war, and with a mighty hand, and with a high arm, and with great sights, according to all the things which the Lord our God did in Egypt +4:34 +Gr. +before you seeing. + in your sight. + +So that you should know that the Lord your God he is God, and there is none beside him. + +His voice was made audible from heaven to instruct you, and he showed you upon the earth his great fire, and you heard his words out of the midst of the fire. + +Because he loved your fathers, he also chose you their seed after them, and he brought you himself with his great strength out of Egypt, + +to destroy nations +4:38 +Or, +greater. + great and stronger than you before your face, to bring you in, to give you their land to inherit, as you have it this day. + +And you shall know this day, and shall consider in your heart, that the Lord your God he +is God in heaven above, and on the earth beneath, and there is none else but he. + +And keep you⌃ his commandments, and his ordinances, all that I command you this day; that it may be well with you, and with your sons after you, that you⌃ may be long-lived upon the earth, which the Lord your God gives you for ever. + +Then Moses separated three cities beyond Jordan on the east, + +that the slayer might flee there, who should have slain his neighbor unintentionally, and should not have hated him +4:42 +Gr. +before yesterday and the third day. +Hebraism. in times past, and he shall flee to one of these cities and live: + +Bosor in the wilderness, in the plain country of Ruben, and Ramoth in Galaad +belonging to +4:43 +Or, +the Gaddite + Gad, and Gaulon in Basan +belonging to Manasse. + +This +is the law which Moses set before the children of Israel. + +These +are the testimonies, and the ordinances, and the judgments, which Moses spoke to the sons of Israel, when they came out of the land of Egypt: + +on +4:46 +i. e. +the east side. + the other side of Jordan, in the valley near the house of Phogor, in the land of Seon king of the Amorites, who lived in Esebon, whom Moses and the sons of Israel struck when they came out of the land of Egypt. + +And they inherited his land, and the land of Og king of Basan, two kings of the Amorites, who were beyond Jordan eastward. + +From Aroer, which is on the border of the brook Arnon, even to the mount of Seon, which is Aermon. + +All +4:49 +Heb. the plain. + Araba beyond Jordan eastward under Asedoth +4:49 +Or, +the quarried rock. +Heb. Ashdoth Pisgah. + hewn in the rock. + +

+ + +

And Moses called all Israel, and said to them, Hear, Israel, the ordinances and judgments, all that I speak in your ears this day, and you⌃ shall learn them, and observe to do them. + +The Lord your God made a covenant with you in Choreb. + +The Lord did not make this covenant with your fathers, but with you: you⌃ are all here alive this day. + +The Lord spoke to you face to face in the mountain out of the midst of the fire. + +And I stood between the Lord and you at that time to report to you the words of the Lord, (because you⌃ were afraid before the fire, and you⌃ went not up to the mountain) saying, + +I am the Lord your God, who brought you out of the land of Egypt, out of the house of bondage. + +You shall have no other gods before my face. + +You shall not make to yourself an image, nor likeness of any thing, whatever things +are in the heaven above, and whatever +are in the earth beneath, and whatever +are in the waters under the earth. + +You shall not bow down to them, nor shall you serve them; for I am the Lord your God, a jealous God, visiting the sins of the fathers upon the children to the third and fourth generation to them that hate me, + +and doing mercifully to +5:10 +Gr. +to them that love, etc. to +the number of + thousands. + thousands of them that love me, and that keep my commandments. + +You shall not take the name of the Lord your God in vain, for the Lord your God will certainly not acquit him that takes his name in vain. + +Keep the sabbath day to sanctify it, as the Lord your God commanded you. + +Six days you shall work, and you shall do all your works; + +but on the seventh day +is the sabbath of the Lord your God: you shall do in it no work, you, and your son, and your daughter, your man-servant, and your maidservant, your ox, and your ass, and all your cattle, and the stranger that sojourns in the midst of you; that your man-servant may rest, and your maid, and your ox, as well as you. + +And you shall remember that you were a slave in the land of Egypt, and the Lord your God brought you out thence with a mighty hand, and a high arm: therefore the Lord appointed you to keep the sabbath day and to sanctify it. + + +5:16 +Matt 15:4; Eph 6:1 + Honor your father and your mother, as the Lord your God commanded you; that it may be well with you, and that you may live long upon the land, which the Lord your God gives you. + +You shall not commit murder. + +You shall not commit adultery. + +You shall not steal. + +You shall not bear false witness against your neighbor. + +You shall not covet your neighbor's wife; you shall not covet your neighbor's house, nor his field, nor his man-servant, nor his maid, nor his ox, nor his ass, nor any beast of his, nor any thing that is your neighbor's. + +These words the Lord spoke to all the assembly of you in the mountain out of the midst of the fire—there was darkness, blackness, storm, a loud voice—and he added no more, and he wrote them on two tables of stone, and he gave them to me. + +And it came to pass when you⌃ heard the voice out of the midst of the fire, for the mountain burned with fire, that you⌃ came to me, even all the heads of your tribes, and your elders: + +and you⌃ said, Behold, the Lord our God has shown us his glory, and we have heard his voice out of the midst of the fire: +5:24 +Or, +by this day. + this day we have seen that God shall speak to man, and he shall live. + +And now let us not die, for this great fire will consume us, if we shall hear the voice of the Lord our God any more, and we shall die. + +For what flesh +is there which has heard the voice of the living God, speaking out of the midst of the fire, as we +have heard, and shall live? + +Do you draw near, and hear all that the Lord our God shall say, and you shall speak to us all things whatever the Lord our God shall speak to you, and we will hear, and do. + +And the Lord heard the voice of your words as you⌃ spoke to me; and the Lord said to me, I have heard the voice of the words of this people, even all things that they have said to you. +They have well +said all that they have spoken. + + +5:29 +Gr. +Who will give that there should be so an heart, etc. + O that there were such a heart in them, that they should fear me and keep my commands always, that it might be well with them and with their sons for ever. + +Go, say to them, Return you⌃ to your houses; + +but stand you here with me, and I will tell you all the commands, and the ordinances, and the judgments, which you shall teach them, and let them do so in the land which I give them for an inheritance. + +And you⌃ shall take heed to do as the Lord your God commanded you; you⌃ shall not turn aside to the right hand or to the left, + +according to all the way which the Lord your God commanded you to walk in it, that he may give you rest; and that it may be well with you, and you⌃ may prolong your days on the land which you⌃ shall inherit. + +

+ + +

And these +are the commands, and the ordinances, and the judgments, as many as the Lord our God gave commandment to teach you to do so in the land on which you⌃ enter to inherit it. + +That you⌃ may fear the Lord your God, keep you⌃ all his ordinances, and his commandments, which I command you today, you, and your sons, and your sons' sons, all the days of your life, that you⌃ may live many days. + +Hear, therefore, O Israel, and observe to do them, that it may be well with you, and that you⌃ may be greatly multiplied, as the Lord God of your fathers said that he would give you a land flowing with milk and honey: and these +are the ordinances, and the judgments, which the Lord commanded the children of Israel in the wilderness, when they had gone forth from the land of Egypt. + +6:4 +Matt 22:37; Luke 10:27 + Hear, O Israel, The Lord our God is one Lord. + +And you shall love the Lord your God with all your heart, and with all your soul, and all your strength. + +And these words, all that I command you this day, shall be in your heart and in your soul. + +And you shall teach them to your children, and you shall speak of them sitting in the house, and walking by the way, and lying down, and rising up. + +And you shall fasten them for a sign upon your hand, and it shall be immoveable before your eyes. + +And you⌃ shall write them on the lintels of your houses and of your gates. + +And it shall come to pass when the Lord your God shall have brought you into the land which he swore to your fathers, to Abraam, and to Isaac, and to Jacob, to give you great and beautiful cities which you did not build, + +houses full of all good things which you did not fill, +6:11 +Or, +pits or pools. + wells dug in the rock which you did not dig, vineyards and olive yards which you did not plant, then having eaten and been filled, + +beware lest you forget the Lord your God that brought you forth out of the land of Egypt, out of the house of bondage. + +6:13 +Matt 4:10 + You shall fear the Lord your God, and him only shall you serve; and you shall cleave to him, and by his name you shall swear. + +Go you⌃ not after other gods of the gods of the nations round about you; + +for the Lord your God in the midst of you +is a jealous God, lest the Lord your God be very angry with you, and destroy you from off the face of the earth. + +6:16 +Matt 4:7 + You shall not tempt the Lord your God, as you⌃ tempted him in the temptation. + +You shall by all means keep the commands of the Lord your God, the testimonies, and the ordinances, which he commanded you. + +And you shall do that which is pleasing and good before the Lord your God, that it may be well with you, and that you may go in and inherit the good land, which the Lord swore to your fathers, + +to chase all your enemies from before your face, as the Lord said. + +And it shall come to pass when your son shall ask you +6:20 +Gr. +to-morrow. + at a future time, saying, What are the testimonies, and the ordinances, and the judgments, which the Lord our God has commanded us? + +Then shall you say to your son, We were slaves to Pharao in the land of Egypt, and the Lord brought us forth thence with a mighty hand, and with a high arm. + +And the Lord +6:22 +Gr. +gave. + wrought signs and great and +6:22 +Gr. +evil. + grievous wonders in Egypt, on Pharao and on his house before us. + +And he brought us out thence to give us this land, which he swore to give to our fathers. + +And the Lord charged us to observe all these ordinances; to fear the Lord our God, that it may be well with us for ever, that we may live, as even today. + +And there shall be mercy to us, if we take heed to keep all these commands before the Lord our God, as he has commanded us. + +

+ + +

And when the Lord your God shall bring you into the land, into which you go to possess it, and shall remove great nations from before you, the Chettite, and Gergesite, and Amorite, and Chananite, and Pherezite, and Evite, and Jebusite, seven nations +more numerous and stronger than you, + +and the Lord your God shall deliver them into your hands, then you shall strike them: you shall utterly destroy them: you shall not make a covenant with them, neither shall you⌃ pity them: + +neither shall you⌃ contract marriages with them: you shall not give your daughter to his son, and you shall not take his daughter to your son. + +For he will draw away your son from me, and he will serve other gods; and the Lord will be very angry with you, and will soon utterly destroy you. + +But thus shall you⌃ do to them; you⌃ shall destroy their altars, and shall break down their pillars, and shall cut down their groves, and shall burn with fire the graven images of their gods. + +For you are a holy people to the Lord your God; and the Lord your God chose you to be to him a peculiar people beyond all nations that +are upon the face of the earth. + +It was not because you⌃ are more numerous than all +other nations that the Lord preferred you, and the Lord made choice of you: for you⌃ are fewer in number than all +other nations. + +But because the Lord loved you, and as keeping the oath which he swore to your fathers, the Lord brought you out with a strong hand, and the Lord redeemed you from the house of bondage, out of the hand of Pharao king of Egypt. + +You shall know therefore, that the Lord your God, he +is God, a faithful God, who keeps covenant and mercy for them that love him, and for those that keep his commandments to a thousand generations, + +and who recompenses them that hate him to their face, to destroy them utterly; and will not be slack with them that hate him: he will recompense them to their face. + +You shall keep therefore the commands, and the ordinances, and these judgments, which I command you this day to do. + +And it shall come to pass when you⌃ shall have heard these ordinances, and shall have kept and done them, that the Lord your God shall keep for you the covenant and the mercy, which he swore to your fathers. + +And he will love you, and bless you, and multiply you; and he will bless the off-spring of your +7:13 +Gr. +belly. + body, and the fruit of your land, your corn, and your wine, and your oil, the herds of your oxen, and the flocks of your sheep, on the land which the Lord swore to your fathers to give to you. + +You shall be blessed beyond all nations; there shall not be among you an impotent or barren one, +7:14 +Gr. +and. + or among your cattle. + +And the Lord your God shall remove from you all sickness; and none of the evil diseases of Egypt, which you have seen, and all that you have known, will he lay upon you; but he will lay them upon all that hate you. + +And you shall eat all the spoils of the nations which the Lord your God gives you; your eye shall not spare them, and you shall not serve their gods; for this is an offense to you. + +But if you should say in your heart, This nation +is +7:17 +Gr. +more. + greater than I, how shall I be able to destroy them utterly? + +you shall not fear them; you shall surely remember all that the Lord your God did to Pharao and to all the Egyptians: + +the great temptations which your eyes have seen, those signs and great wonders, the strong hand, and the high arm; how the Lord your God brought you forth: so the Lord your God will do to all the nations, whom you fear in their presence. + +And the Lord your God shall send against them the hornets, until they that are left and they that are hidden from you be utterly destroyed. + +You shall not be wounded before them, because the Lord your God in the midst of you +is a great and powerful God. + +And the Lord your God shall consume these nations before you by little and little: you shall not be able to consume them speedily, lest the land become desert, and the wild beasts of the field be multiplied against you. + +And the Lord your God shall deliver them into your hands, and you shall destroy them with a great destruction, until you⌃ shall have utterly destroyed them. + +And he shall deliver their kings into your hands, and you⌃ shall destroy their name from that place; none shall stand up in opposition before you, until you shall have utterly destroyed them. + +You⌃ shall burn with fire the graven images of their gods: you shall not covet +their silver, neither shall you take to yourself gold from them, lest you should offend thereby, because it is an abomination to the Lord your God. + +And you shall not bring an abomination into your house, so +7:26 +Gr. +shall. + should you be an accursed thing like it; you shall utterly hate it, and altogether abominate it, because it is an accursed thing. + +

+ + +

You⌃ shall observe to do all the commands which I charge you today, that you⌃ may live and be multiplied, and enter in and inherit the land, which the Lord your God swore +to give to your fathers. + +And you shall remember all the way which the Lord your God led you in the wilderness, that he might afflict you, and try you, and that the things in your heart might be made manifest, whether you would keep his commandments or no. + +And he afflicted you and straitened you with hunger, and fed you with manna, which your fathers knew not; that he might teach you that +8:3 +Matt 4:4 + man shall not live by bread alone, but by every word that proceeds out of the mouth of God shall man live. + +Your garments grew not old from off you, your shoes were not worn from off you, your feet were not +painfully hardened, behold! these forty years. + +And you shall know in your heart, that as if any man should chasten his son, so the Lord your God will chasten you. + +And you shall keep the commands of the Lord your God, to walk in his ways, and to fear him. + +For the Lord your God will bring you into a good and extensive land, where there are torrents of waters, and fountains +8:7 +Or, +issuing from deep places. + of deep places issuing through the plains and through the mountains: + +a land of wheat and barley, +wherein are vines, figs, pomegranates; a land of olive oil and honey; + +a land on which you shall not eat your bread with poverty, and you shall not lack any thing upon it; a land whose stones are iron, and out of its mountains you shall dig brass. + +And you shall eat and be filled, and shall bless the Lord your God on the good land, which he has given you. + +Take heed to yourself that you forget not the Lord your God, so as not to keep his commands, and his judgments, and ordinances, which I command you this day: + +lest when you have eaten and are full, and have built goodly houses, and lived in them; + +and your oxen and your sheep are multiplied to you, and your silver and your gold are multiplied to you, and all your possessions are multiplied to you, + +you should be exalted in heart, and forget the Lord your God, who brought you out of the land of Egypt, out of the house of bondage: + +who brought you through that great and terrible wilderness, where +is the biting serpent, and scorpion, and drought, where there was no water; who brought you a fountain of water out of the flinty rock: + +who fed you with manna in the wilderness, which you knew not, and your fathers knew not; that he might afflict you, and thoroughly try you, and do you good in your latter days. + +Lest you should say in your heart, My strength, and the power of my hand have wrought for me this great wealth. + +But you shall remember the Lord your God, that he gives you strength to get wealth; even that he may establish his covenant, which the Lord swore to your fathers, as at this day. + +And it shall come to pass if you do at all forget the Lord your God, and should go after other gods, and serve them, and worship them, I call heaven and earth to witness against you this day, that you⌃ shall surely perish. + +As also the other nations which the Lord God destroys before your face, so shall you⌃ perish, because you⌃ listened not to the voice of the Lord your God. + +

+ + +

Hear, O Israel: You go this day across Jordan to inherit nations greater and stronger than yourselves, cities great and walled up to heaven; + +a people great and many and tall, the sons of Enac, whom you know, and concerning whom you have heard +say, Who can stand before the children of Enac? + +And you shall know today, that the Lord your God he shall go before your face: he is a consuming fire; he shall destroy them, and he shall turn them back before you, and shall destroy them quickly, as the Lord said to you. + +Speak not in your heart, when the Lord your God has destroyed these nations before your face, saying, For my righteousness the Lord brought me in to inherit this good land. + +Not for your righteousness, nor for the holiness of your heart, do you go in to inherit their land, but because of the wickedness of these nations the Lord will destroy them from before you, and that he may establish the covenant, which the Lord swore to our fathers, to Abraam, and to Isaac, and to Jacob. + +And you shall know today, that +it is not for your righteousnesses the Lord your God gives you this good land to inherit, for you are a stiff-necked people. + +Remember, forget not, how much you provoked the Lord your God in the wilderness: from the day that you⌃ came forth out of Egypt, even till you⌃ came into this place, you⌃ continued to be disobedient toward the Lord. + +Also in Choreb you⌃ provoked the Lord, and the Lord was angry with you to destroy you; + +when I went up into the mountain to receive the tables of stone, the tables of the covenant, which the Lord made with you, and I was in the mountain forty days and forty nights, I ate no bread and drank no water. + +And the Lord gave me the two tables of stone written with the finger of God, and on them there had been written all the words which the Lord spoke to you in the mountain in the day of the assembly. + +And it came to pass after forty days and forty nights, the Lord gave me the two tables of stone, the tables of the covenant. + +And the Lord said to me, Arise, go down quickly from hence, for your people whom you brought out of the land of Egypt have transgressed; they have gone aside quickly out of the way which I commanded them, and have made themselves a molten image. + +And the Lord spoke to me, saying, I have spoken to you once and again, saying, I have seen this people, and, behold, it is a stiff-necked people. + +And now suffer me utterly to destroy them, and I will blot out their name from under heaven, and will make of you a nation great and strong, and more numerous than this. + +And I turned and went down from the mountain; and the mountain burned with fire to heaven; and the two tables of the testimonies +were +9:15 +Gr. +on. + in my two hands. + +And when I saw that you⌃ had sinned against the Lord your God, and had made to yourselves a molten image, and had gone astray out of the way, which the Lord commanded you to +9:16 +Gr. +to do. + keep; + +then I took hold of the two tables, and cast them out of my two hands, and broke them before you. + +And I made my petition before the Lord as also at the first forty days and forty nights: I ate no bread and drank no water, on account of all your sins which you⌃ sinned in doing evil before the Lord God to provoke him. + +And I +9:19 +Gr. +am. + was greatly terrified because of the wrath and anger, because the Lord was provoked with you utterly to destroy you; yet the Lord listened to me at this time also. + +And he was angry with Aaron to destroy him utterly, and I prayed for Aaron also at that time. + +And your sin which you⌃ had made, +even the calf, I took, and burnt it with fire, and pounded it and ground it down till it became fine; and it became like dust, and I cast the dust into the brook that descended from the mountain. + +Also in the +9:22 +Heb. Taberah, Massah, and Kibroth Hattavah. + burning, and in the +9:22 +Heb. Taberah, Massah, and Kibroth Hattavah. + temptation, and at the +9:22 +Heb. Taberah, Massah, and Kibroth Hattavah. + graves of lust, you⌃ provoked the Lord. + +And when the Lord sent you forth from Cades Barne, saying, Go up and inherit the land which I give to you, then you⌃ disobeyed the word of the Lord your God, and believed him not, and listened not to his voice. + +You⌃ were disobedient +9:24 +Or, +towards the Lord. + in the things relating to the Lord from the day in which he became known to you. + +And I prayed before the Lord forty days and forty nights, the number that I prayed +before, for the Lord said that he would utterly destroy you. + +And I prayed to God, and said, O Lord, King of gods, destroy not your people and your +9:26 +Or, +portion or part. + inheritance, whom you did redeem, whom you brought out of the land of Egypt with your great power, and with your strong hand, and with your high arm. + +Remember Abraam, and Isaac, and Jacob your servants, to whom you swore by yourself: look not upon the hardness of heart of this people, and their impieties, and their sins. + +Lest the inhabitants of the land whence you brought us out speak, saying, Because the Lord could not bring them into the land of which he spoke to them, and because he hated them, has he brought them forth to kill them in the wilderness. + +And these +are your people and your portion, whom you brought out of the land of Egypt with your great strength, and with your mighty hand, and with your high arm. + +

+ + +

At that time the Lord said to me, Hew for yourself two stone tables as the first, and come up to me into the mountain, and you shall make for yourself an ark of wood. + +And you shall write upon the tables the words which were on the first tables which you did break, and you shall put them into the ark. + +So I made an ark of boards of incorruptible wood, and I hewed tables of stone like the first, and I went up to the mountain, and the two tables were in my hand. + +And he wrote upon the tables according to the first writing the ten commandments, which the Lord spoke to you in the mountain out of the midst of the fire, and the Lord gave them to me. + +And I turned and came down from the mountain, and I put the tables into the ark which I had made; and there they were, as the Lord commanded me. + +And the children of Israel departed from Beeroth of the sons of Jakim +to Misadai: there Aaron died, and there he was buried, and Eleazar his son was priest in his stead. + +Thence they departed to Gadgad; and from Gadgad to Etebatha, a land +wherein are torrents of water. + +At that time the Lord separated the tribe of Levi, to bear the ark of the covenant of the Lord, to stand near before the Lord, to minister and bless in his name to this day. + +Therefore the Levites have no part nor inheritance among their brethren; the Lord himself +is their inheritance, as he said to them. + +And I +10:10 +Gr. +stood. + remained in the mount forty days and forty nights: and the Lord heard me at that time also, and the Lord would not destroy you. + +And the Lord said to me, Go, set out before this people, and let them go in and inherit the land, which I swore to their fathers to give to them. + +And now, Israel, what does the Lord your God require of you, but to fear the Lord your God, and to walk in all his ways, and to love him, and to serve the Lord your God with all your heart, and with all your soul; + +to keep the commandments of the Lord your God, and his ordinances, all that I charge you today, that it may be well with you? + + +10:14 +1 Cor 10:26,28 Behold, the heaven and the heaven of heavens belong to the Lord your God, the earth and all things that are in it. + +Only the Lord chose your fathers to love them, and he chose out their seed after them, +even you, beyond all nations, as at this day. + + +10:16 +Gr. +and. + Therefore you⌃ shall circumcise the hardness of your heart, and you⌃ shall not harden your neck. + +For the Lord your God, he +is God of gods, and the Lord of lords, the great, and strong, and terrible God, who does not +10:17 +Gr. +wonder at or admire a face. + accept persons, nor will he by any means accept a bribe: + +executing judgment for the stranger and orphan and widow, and he loves the stranger to give him food and raiment. + +And you⌃ shall love the stranger; for you⌃ were strangers in the land of Egypt. + +You shall fear the Lord your God, and serve him, and shall cleave to him, and shall swear by his name. + +He +is your boast, and he +is your God, who has wrought in the midst of you these great and glorious things, which your eyes have seen. + +With seventy souls your fathers went down into Egypt; but the Lord your God has made you as the stars of heaven in multitude. + +

+ + +

Therefore you shall love the Lord your God, and shall observe his appointments, and his ordinances, and his commandments, and his judgments, always. + +And you⌃ shall know this day; for +I speak not to your children, who know not and have not seen the discipline of the Lord your God, and his wonderful works, and his strong hand, and his high arm, + +and his miracles, and his wonders, which he wrought in the midst of Egypt on Pharao king of Egypt, and all his land; + +and what he did to the host of the Egyptians, and to their chariots, and their cavalry, and their host; how he made the water of the Red Sea to overwhelm the face of them as they pursued after you, and the Lord destroyed them until this day; + +and all the things which he did to you in the wilderness until you⌃ came into this place; + +and all the things that he did to Dathan and Abiron the sons of Eliab the son of Ruben, whom the earth opening her mouth swallowed up, and their houses, and their tents, and all their substance that was with them, in the midst of all Israel: + +for your eyes have seen all the mighty works of the Lord, which he wrought among you today. + +And you⌃ shall keep all his commandments, as many as I command you today, that you⌃ may live, and be multiplied, and that you⌃ may go in and inherit the land, into which you⌃ go across Jordan to inherit it: + +that you⌃ may live long upon the land, which the Lord swore to your fathers to give to them, and to their seed after them, a land flowing with milk and honey. + +For the land into which you go to inherit it, is not as the land of Egypt, whence you⌃ came out, whenever they sow the seed, and water it with their feet, as a garden of herbs: + +but the land into which you go to inherit it, is a land of mountains and plains; it shall drink water of the rain of heaven. + +A land which the Lord your God surveys continually, the eyes of the Lord your God are upon it from the beginning of the year to the end of the year. + +Now if you⌃ will indeed listen to all the commands which I charge you this day, to love the Lord your God, and to serve him with all your heart, and with all your soul, + +then he shall give to your land the early and latter rain in its season, and you shall bring in your corn, and your wine, and your oil. + +And he shall give food in your fields to your cattle; and when you have eaten and are full, + +take heed to yourself that your heart be not +11:16 + +Gr. + made broad. + puffed up, and you⌃ transgress, and serve other gods, and worship them: + +and the Lord be angry with you, and restrain the heaven; and there shall not be rain, and the earth shall not yield its fruit, and you⌃ shall perish quickly from off the good land, which the Lord has given you. + +And you⌃ shall store these words in your heart and in your soul, and you⌃ shall bind them as a sign on your hand, and it shall be fixed before your eyes. + +And you⌃ shall teach them to your children, so as to speak about them when you sit in the house, and when you walk by the way, and when you sleep, and when you rise up. + +And you⌃ shall write them on the +11:20 +Or, +thresholds. + lintels of your houses, and on your gates; + +that your days may be long, and the days of your children, upon the land which the Lord swore to your fathers to give to them, as the days of heaven upon the earth. + +And it shall come to pass that if you⌃ will indeed listen to all these commands, which I charge you to observe this day, to love the Lord our God, and to walk in all his ways, and to cleave close to him; + +then the Lord shall cast out all these nations before you, and you⌃ shall inherit great nations and stronger than yourselves. + +Every place whereon the sole of your foot shall tread shall be yours; from the wilderness and Antilibanus, and from the great river, the river Euphrates, even as far as the west sea shall be your coasts. + +No one shall stand before you; and the Lord your God will put the fear of you and the dread of you on the face of all the land, on which you⌃ shall tread, as he told you. + +Behold, I set before you this day the blessing and the curse; + +the blessing, if you⌃ listen to the commands of the Lord your God, all that I command you this day; + +and the curse, if you⌃ do not listen to the commands of the Lord our God, as many as I command you this day, and you⌃ wander from the way which I have commanded you, having gone to serve other gods, which you⌃ know not. + +And it shall come to pass when the Lord your God shall have brought you into the land into which you go over to inherit it, then you shall put blessing on mount Garizin, and the curse upon mount Gaebal. + +Behold! are not these beyond Jordan, behind, westward in the land of Chanaan, which lies westward near Golgol, by the high oak? + +For you⌃ are passing over Jordan, to go in and inherit the land, which the Lord our God gives you to inherit always, and you⌃ shall dwell in it. + +And you⌃ shall take heed to do all his ordinances, and these judgments, as many as I set before you today. + +

+ + +

And these +are the ordinances and the judgments, which you⌃ shall observe to do in the land, which the Lord God of your fathers gives you for an inheritance, all the days which you⌃ live upon the land. + +You⌃ shall utterly destroy all the places in which they served their gods, whose +land you⌃ inherit, on the high mountains and on the hills, and under the thick tree. + +And you⌃ shall destroy their altars, and break in pieces their pillars, and you⌃ shall cut down their groves, and you⌃ shall burn with fire the graven images of their gods, and you⌃ shall abolish their name out of that place. + +You⌃ shall not do so to the Lord your God. + +But in the place which the Lord your God shall choose in one of your cities to name his name there, and to be called upon, you⌃ shall even seek +him out and go there. + +And you⌃ shall carry there your whole burnt offerings, and your sacrifices, and your first fruits, and your +12:6 +Gr. +vows. + vowed-offerings, and your free will offerings, and your offerings of thanksgiving, the firstborn of your herds, and of your flocks. + +And you⌃ shall eat there before the Lord your God, and you⌃ shall rejoice in all the things on which you⌃ shall lay your hand, you⌃ and your houses, as the Lord your God has blessed you. + +You⌃ shall not do altogether as we do here today, every man that which is pleasing in his own sight. + +For hitherto you⌃ have not arrived at the rest and the inheritance, which the Lord our God gives you. + +And you⌃ shall go over Jordan, and shall dwell in the land, which the Lord our God takes as an inheritance for you; and he shall give you rest from all your enemies round about, and you⌃ shall dwell safely. + +And there shall be a place which the Lord your God shall choose for his name to be called there, there shall you⌃ bring all things that I order you today; your whole burnt offerings, and your sacrifices, and your tithes, and the first fruits of your hands, and every choice gift of yours, whatever you⌃ shall vow to the Lord your God. + +And you⌃ shall rejoice before the Lord your God, you⌃ and your sons, and your daughters, and your menservants and your maidservants, and the Levite that is at your gates; because he has no portion or inheritance with you. + +Take heed to yourself that you offer not your whole burnt offerings in any place which you shall see; + +save in the place which the Lord your God shall choose, in one of your tribes, there shall you⌃ offer your whole burnt offerings, and there shall you do all things whatever I charge you this day. + +But you shall kill according to all your desire, and shall eat flesh according to the blessing of the Lord your God, which he has given you in every city; the unclean that is within you and the clean shall eat it on equal terms, as the doe or the stag. + +Only you⌃ shall not eat the blood; you⌃ shall pour it out on the ground as water. + +You shall not be able to eat in your cities the tithe of your corn, and of your wine, and of your oil, the firstborn of your herd and of your flock, and all +your vows as many as you⌃ shall have vowed, and your thank-offerings, and the first fruits of your hands. + +But before the Lord your God you shall eat it, in the place which the Lord your God shall choose for himself, you, and your son, and your daughter, your man-servant, and your maidservant, and the stranger that is within your gates; and you shall rejoice before the Lord your God, on whatever you shall lay your hand. + +Take heed to yourself that you do not desert the Levite all the time that you live upon the earth. + +And if the Lord your God shall enlarge your borders, as he said to you, and you shall say, I will eat flesh; if your soul should desire to eat flesh, you shall eat flesh +12:20 +Gr. +in all. + according to all the desire of your soul. + +And if the place be far from you, which the Lord your God shall choose for himself, that his name be called upon it, then you shall kill of your herd and of your flock which God shall have given you, even as I commanded you, and you shall eat in your cities according to the desire of your soul. + +As the doe and the stag are eaten, so shall you eat it; the unclean in you and the clean shall eat it in like manner. + +Take diligent heed that you eat no blood, for blood +is the life of it; the life shall not be eaten with the flesh. + +You⌃ shall not eat +it; you⌃ shall pour it out on the ground as water. + +You shall not eat it, that it may be well with you and with your sons after you, if you shall do that which is good and pleasing before the Lord your God. + +But you shall take your holy things, if you have any, and your vowed-offerings, and come to the place which the Lord your God shall choose to have his name named upon it. + +And you shall sacrifice your whole burnt offerings, you shall offer the flesh upon the altar of the Lord your God; but the blood of your sacrifices you shall pour out at the foot of the altar of the Lord your God, but the flesh you shall eat. + +Beware and listen, and you shall do all the commands which I charge you, that it may be well with you and with your sons for ever, if you shall do that which is pleasing and good before the Lord your God. + +And if the Lord your God shall utterly destroy the nations, to whom you go in there to inherit their land, from before you, and you shall inherit it, and dwell in their land; + +take heed to yourself that you seek not to follow them after they are destroyed before you, saying, How do these nations act towards their gods? I will do likewise. + +You shall not do so to your God; for they have sacrificed +12:31 +Gr. +in, or, among. + to their gods the abominations of the Lord which he hates, for they burn their sons and their daughters in fire to their gods. + +Every word that I command you this day, it shall you observe to do: you shall not add to it, nor diminish from it. + +

+ + +

And if there arise within you a prophet, or one who dreams a dream, and he gives you a sign or a wonder, + +and the sign or the wonder come to pass which he spoke to you, saying, Let us go and serve other gods, which you⌃ know not; + +you⌃ shall not listen to the words of that prophet, or the dreamer of that dream, because the Lord your God tries you, to know whether you⌃ love your God with all your heart and with all your soul. + +You⌃ shall follow the Lord your God, and fear him, and you⌃ shall hear his voice, and attach yourselves to him. + +And that prophet or that dreamer of a dream, shall die; for he has spoken to make you err from the Lord your God who brought you out of the land of Egypt, who redeemed you from bondage, to thrust you out of the way which the Lord your God commanded you to walk in: so shall you abolish the evil from among you. + +And if your brother by your father or mother, or your son, or daughter, or your wife in your bosom, or friend who is equal to your own soul, entreat you secretly, saying, Let us go and serve other gods, which neither you nor your fathers have known, + +of the gods of the nations that are round about you, who are near you or at a distance from you, from one end of the earth to the other; + +you shall not consent to him, neither shall you listen to him; and your eye shall not spare him, you shall feel no regret for him, neither shall you at all protect him: + +you shall surely report concerning him, and your hands shall be upon him among the first to kill him, and the hands of all the people at the last. + +And they shall stone him with stones, and he shall die, because he sought to draw you away from the Lord your God who brought you out of the land of Egypt, out of the house of bondage. + +And all Israel shall hear, and fear, and shall not again do according to this evil thing among you. + +And if in one of your cities which the Lord God gives you to dwell therein, you shall hear men saying, + +Evil men have gone out from you, and have caused all the inhabitants of their land to fall away, saying, Let us go and worship other gods, whom you⌃ knew not, + +then you shall enquire and ask, and search diligently, and behold, +if the thing is clearly true, and this abomination has taken place among you, + +you shall utterly destroy all the dwellers in that land with the edge of the sword; you⌃ shall solemnly curse it, and all things in it. + +And all its spoils you shall gather into its public ways, and you shall burn the city with fire, and all its spoils publicly before the Lord your God; and it shall be uninhabited for ever, it shall not be built again. + +And there shall nothing of the cursed thing cleave to your hand, that the Lord may turn from his fierce anger, and +13:17 +Heb. give. + show you mercy, and pity you, and multiply you, as he swore to your fathers; + +if you will hear the voice of the Lord your God, to keep his commandments, all that I charge you this day, to do that which is good and pleasing before the Lord your God. + +

+ + +

You⌃ are the children of the Lord your God: you⌃ shall not make any baldness between your eyes for the dead. + +For you are a holy people to the Lord your God, and the Lord your God has chosen you to be a peculiar people to himself of all the nations on the face of the earth. + +You⌃ shall not eat any abominable thing. + +These +are the beasts which you⌃ shall eat; the calf of the herd, and lamb of the sheep, and kid of the goats; + +the stag, and doe, and pygarg, and +14:5 +Or, +buffalo. + wild goat, and camelopard. + +Every beast that divides the hoofs, and makes claws of two divisions, and that chews the cud among beasts, these you⌃ shall eat. + +And these you⌃ shall not eat of them that chew the cud, and of those that divide the hoofs, and make distinct claws; the camel, and the hare, and the rabbit; because they chew the cud, and do not divide the hoof, these are unclean to you. + +And as for the swine, because he divides the hoof, and makes claws of the hoof, yet he chews not the cud, he is unclean to you; you⌃ shall not eat of their flesh, you⌃ shall not touch their dead bodies. + +And these you⌃ shall eat of all that are in the water, you⌃ shall eat all that have fins and scales. + +And all that have not fins and scales you⌃ shall not eat; they are unclean to you. + +You⌃ shall eat every clean bird. + +And these of +14:12 +i.e. +birds. + them you⌃ shall not eat; the eagle, and the ossifrage, and the sea-eagle, + +and the vulture, and the kite and the like to it, + +and the sparrow, and the owl, and the cormorant, + +and the heron, and the swan, and the stork, + +and the cormorant, and the hawk, and its like, and the hoopoe, and the raven, + +and the pelican, and the +14:18 +Or, +heron. + diver and the like to it, and the +14:18 +Or, +flamingo. + red-bill and the bat. + +All winged animals that creep are unclean to you; you⌃ shall not eat of them. + +You⌃ shall eat every clean bird. + +You⌃ shall eat nothing that dies of itself; it shall be given to the sojourner in your cities and he shall eat it, or you shall sell it to a stranger, because you are a holy people to the Lord your God. You shall not boil a lamb in his mother's milk. + +You shall tithe a tenth of all the produce of your seed, the fruit of your field year by year. + +And you shall eat it in the place which the Lord your God shall choose to have his name called there; you⌃ shall bring the tithe of your corn and of your wine, and of your oil, the firstborn of your herd and of your flock, that you may learn to fear the Lord your God always. + +And if the journey be too far for you, and you are not able to bring them, because the place +is far from you which the Lord your God shall choose to have his name called there, because the Lord your God will bless you; + +then you shall sell them for money, and you shall take the money in your hands, and you shall go to the place which the Lord your God shall choose. + +And you shall give the money for whatever your soul shall desire, for oxen or for sheep, or for wine, or +you shall lay it out on strong drink, or on whatever your soul may desire, and you shall eat there before the Lord your God, and you shall rejoice and your house, + +and the Levite that is in your cities, because he has not a portion or inheritance with you. + +After three years you shall bring out all the tithes of your fruits, in that year you shall lay it up in your cities. + +And the Levite shall come, because he has no part or lot with you, and the stranger, and the orphan, and the widow which is in your cities; and they shall eat and be filled, that the Lord your God may bless you in all the works which you shall do. + +

+ + +

Every seven years you shall make a release. + +And this +is the ordinance of the release: you shall remit every private debt which your neighbor owes you, and you shall not ask payment of it from your brother; for it has been called a release to the Lord your God. + +Of a stranger you shall ask again whatever he has of yours, but to your brother you shall remit his debt to you. + +For +thus there shall not be a poor person in the midst of you, for the Lord your God will surely bless you in the land which the Lord your God gives you by inheritance, that you should inherit it. + +And if you⌃ shall indeed listen to the voice of the Lord your God, to keep and do all these commandments, as many as I charge you this day, + +(for the Lord your God has blessed you in the way of which he spoke to you,) then you shall lend to many nations, but you shall not borrow; and you shall rule over many nations, but they shall not rule over you. + +And if there shall be in the midst of you a poor +man of your brethren in one of your cities in the land, which the Lord your God gives you, you shall not harden your heart, neither shall you by any means close up your hand from your brother who is in lack. + +You shall surely open your hands to him, and shall lend to him as much as he wants according to his need. + +Take heed to yourself that there be not a secret thing in your heart, an iniquity, saying, The seventh year, the year of release, draws near; and your eye shall be evil to your brother that is in lack, and you shall not give to him, and he shall cry against you to the Lord, and there shall be great sin in you. + +You shall surely give to him, and you shall lend him as much as he wants, according as he is in need; and you shall not grudge in your heart as you give to him, because on this account the Lord your God will bless you in all your works, and in all things on which you shall lay your hand. + +For the poor shall not fail off your land, therefore I charge you to do this thing, saying, You shall surely open your hands to your poor brother, and to him that is distressed upon your land. + +And if your brother +or sister, a Hebrew man or a Hebrew woman, be sold to you, he shall serve you six years, and in the seventh year you shall send him out free from you. + +And when you shall send him out free from you, you shall not send him out empty. + +You shall give him provision for the way from your flock, and from your corn, and from your wine; as the Lord your God has blessed you, you shall give to him. + +And you shall remember that you were a servant in the land of Egypt, and the Lord your God redeemed you from thence; therefore I charge you to do this thing. + +And if he should say to you, I will not go out from you, because he continues to love you and your house, because he is well with you; + +then you shall take an awl, and bore his ear through to the door, and he shall be your servant for ever; and in like manner shall you do to your maidservant. + +It shall not seem hard to you when they are sent out free from you, because +your servant has served you six years according to the annual hire of a hireling; so the Lord your God shall bless you in all things whatever you may do. + +Every firstborn that shall be born among your kine and your sheep, you shall sanctify the males to the Lord your God; you shall not work with your firstborn calf, and you shall not shear the firstborn of your sheep. + +You shall eat it before the Lord year by year in the place which the Lord your God shall choose, you and your house. + +And if there be in it a blemish, if it be lame or blind, an evil blemish, you shall not sacrifice it to the Lord your God. + +You shall eat it in your cities; the unclean in you and the clean shall eat it in like manner, as the doe or the stag. + +Only you⌃ shall not eat the blood; you shall pour it out on the earth as water. + +

+ + +

Observe the month of new +corn, and you shall sacrifice the passover to the Lord your God; because in the month of new +corn you came out of Egypt by night. + +And you shall sacrifice the passover to the Lord your God, sheep and oxen in the place which the Lord your God shall choose to have his name called upon it. + +You shall not eat leaven with it; seven days shall you eat unleavened +bread with it, bread of affliction, because you⌃ came forth out of Egypt in haste; that you⌃ may remember the day of your coming forth out of the land of Egypt all the days of your life. + +Leaven shall not be seen with you in all your borders for seven days, and there shall not be left of the flesh which you shall sacrifice at even on the first day until the morning. + +you shall not have power to sacrifice the passover in any of the cities, which the Lord your God gives you. + +But in the place which the Lord your God shall choose, to have his name called there, you shall sacrifice the passover at even at the setting of the sun, at the time when you came out of Egypt. + +And you shall boil and roast and eat it in the place, which the Lord your God shall choose; and you shall return in the morning, and go to your +16:7 +Gr. +houses. + house. + +Six days shall you eat unleavened bread, and on the seventh day is +16:8 +See Lev 23:6; Num 29:35; 2 Chron 7:9. + a holiday, a feast to the Lord your God: you shall not do in it any work, save what +16:8 +Gr. +shall etc. + must be done +16:8 +Gr. +for or by a soul. + by any one. + +Seven weeks shall you number to yourself; when you have begun +to put the sickle to the corn, you shall begin to number seven weeks. + +And you shall keep the feast of weeks to the Lord your God, accordingly as your hand has power in as many things as the Lord your God shall give you. + +And you shall rejoice before the Lord your God, you and your son, and your daughter, your man-servant and your maidservant, and the Levite, and the stranger, and the orphan, and the widow which dwells among you, in whatever place the Lord your God shall choose, that his name should be called there. + +And you shall remember that you were a servant in the land of Egypt, and you shall observe and do these commands. + +You shall keep for yourself the feast of tabernacles seven days, when you gather in +your produce from your corn-floor and your wine-press. + +And you shall rejoice in your feast, you, and your son, and your daughter, your man-servant, and your maidservant, and the Levite, and the stranger, and the orphan, and the widow that is in your cities. + +Seven days shall you keep a feast to the Lord your God in the place which the Lord your God shall choose for himself; and if the Lord your God shall bless you in all your fruits, and in every work of your hands, then you shall rejoice. + +Three times in the year shall all your males appear before the Lord your God in the place which the Lord shall choose in the feast of unleavened bread, and in the feast of weeks, and in the feast of tabernacles: you shall not appear before the Lord your God empty. + +Each one according to +16:17 +Gr. +your. + his ability, according to the blessing of the Lord your God which he has given you. + +You shall make for yourself judges and officers in your cities, which the Lord your God gives you in +your tribes, and they shall judge the people with righteous judgment: + +they shall not wrest judgment, nor favor persons, nor receive a gift; for gifts blind the eyes of the wise, and pervert the words of the righteous. + +You shall justly pursue justice, that you⌃ may live, and go in and inherit the land which the Lord your God gives you. + +You shall not +16:21 +Gr. +make. + plant for yourself a grove; you shall not plant for yourself any tree near the altar of your God. + +You shall not set up for yourself a pillar, which the Lord your God hates. + +

+ + +

You shall not sacrifice to the Lord your God a calf or a sheep, in which there is a blemish, +or any evil thing; for it is an abomination to the Lord your God. + +And if there should be found in any one of your cities, which the Lord your God gives you, a man or a woman who shall do that which is evil before the Lord your God, so as to transgress his covenant, + +and they should go and serve other gods, and worship them, the sun, or the moon, or any of the host of heaven, which he commanded you not to do, + +and it be told you, and you shall have enquired diligently, and, behold, the thing really took place, this abomination has been done in Israel; + +then shall you bring out that man, or that woman, and you⌃ shall stone them with stones, and they shall die. + + +17:6 +John 8:17 + He shall die on the testimony of two or three witnesses; a man who +17:6 +Gr. +dies shall not die. + is put to death shall not be put to death for one witness. + +And the hand of the witnesses shall be upon him among the first to put him to death, and the hand of the people at the last; so shall you remove the evil one from among yourselves. + +And if a matter shall be too hard for you in judgment, +17:8 +Gr. +blood between blood, etc. + between blood and blood, and between cause and cause, and between stroke and stroke, and between contradiction and contradiction, matters of judgment in your cities; + +then you shall arise and go up to the place which the Lord your God shall choose, and you shall come to the priests the Levites, and to the judge who shall be in those days, and they shall search out +the matter and report the judgment to you. + +And you shall act according to the thing which they shall report to you out of the place which the Lord your God shall choose, and you shall observe to do all whatever shall have been by law appointed to you. + +You shall do according to the law and to the judgment which they shall declare to you: you shall not swerve to the right hand or to the left from any sentence which they shall report to you. + +And the man whoever shall act in haughtiness, so as not to listen to the priest who stands to minister in the name of the Lord your God, or the judge who shall preside in those days, that man shall die, and you shall remove the evil one out of Israel. + +And all the people shall hear and fear, and shall no more commit impiety. + +And when you shall enter into the land which the Lord your God gives you, and shall inherit it and dwell in it, and shall say, I will set a ruler over me, as also the other nations round about me; + +you shall surely set over you the ruler whom the Lord God shall choose: of your brethren you shall set over you a ruler; you shall not have power to set over you a stranger, because he is not your brother. + +For he shall not multiply to himself horses, and he shall by no means turn the people back to Egypt, lest he should multiply to himself horses; for the Lord said, You⌃ shall not any more turn back by that way. + +And he shall not multiply to himself wives, lest his heart +17:17 +Gr. +change. + turn away; and he shall not greatly multiply to himself silver and gold. + +And when he shall be established in his government, then shall he write for himself this repetition of the law into a book by the hands of the priests the Levites; + +and it shall be with him, and he shall read in it all the days of his life, that he may learn to fear the Lord your God, and to keep all these commandments, and to observe these ordinances: + +that his heart be not lifted up +17:20 +Gr. +from. +Heb.- ס. + above his brethren, that he depart not from the commandments on the right hand or on the left; that he and his sons may reign long in his dominion among the children of Israel. + +

+ + +

The priests, the Levites, even the whole tribe of Levi, shall have no part nor inheritance with Israel; the burnt offerings of the Lord +are their inheritance, they shall eat them. + +And they shall have no inheritance among their brethren; the Lord himself +is his portion, as he said to him. + +And this +is the due of the priests in the things coming from the people from those who offer sacrifices, whether it be a calf or a sheep; and you shall give the shoulder to the priest, and the cheeks, and the great intestine: + +and the first fruits of your corn, and of your wine, and of your oil; and you shall give to him the first fruits of the fleeces of your sheep: + +because the Lord has chosen him out of all your tribes, to stand before the Lord your God, to minister and bless in his name, himself and his sons among the children of Israel. + +And if a Levite come from one of the cities of all the children of Israel, where he himself dwells, accordingly as his mind desires, to the place which +18:6 +i.e. +God. + he shall have chosen, + +he shall minister to the name of the Lord his God, as all his brethren the Levites, who stand there present before the Lord your God. + +He shall eat an allotted portion, besides the sale of his hereditary property. + +And when you shall have entered into the land which the Lord your God gives you, you shall not learn to do according to the abominations of those nations. + +There shall not be found in you one who purges his son or his daughter with fire, one who +18:10 +Gr. +divines. + uses divination, who deals with omens, and augury, + +a sorcerer employing incantation, one who has in him a divining spirit, an observer of signs, questioning the dead. + +For every one that does these things is an abomination to the Lord your God; for because of these abominations the Lord will destroy them from before your face. + +You shall be perfect before the Lord your God. + +For all these nations whose +land you shall inherit, they will listen to omens and divinations; but the Lord your God has not permitted you so +to do. + + +18:15 +Acts 3:22 + The Lord your God shall raise up to you a prophet of your brethren, like me; him shall you⌃ hear: + +according to all things which you did desire of the Lord your God in Choreb in the day of the assembly, saying, We will not again hear the voice of the Lord your God, and we will not any more see this great fire, and +so we shall not die. + +And the Lord said to me, They have spoken rightly all that they have said to you. + +I will raise up to them a prophet of their brethren, like you; and I will put my words in his mouth, and he shall speak to them as I shall command him. + + +18:19 +Acts 3:23 + And whatever man shall not listen to whatever words that prophet shall speak in my name, I will take vengeance on him. + +But the prophet whoever shall impiously speak in my name a word which I have not commanded him to speak, and whoever shall speak in the name of other gods, that prophet shall die. + +But if you shall say in your heart, How shall we know the word which the Lord has not spoken? + +Whatsoever words that prophet shall speak in the name of the Lord, and they shall not come true, and not come to pass, this +is the thing which the Lord has not spoken; that prophet has spoken wickedly: you⌃ shall not spare him. + +

+ + +

And when the Lord your God shall have destroyed the nations, which God gives you, +even the land, and you⌃ shall inherit them, and dwell in their cities, and in their houses, + +you shall separate for yourself three cities in the midst of your land, which the Lord your God gives you. + +Take a survey of your way, and you shall divide the coasts of your land, which the Lord your God apportions to you, into three parts, and there shall be there a refuge for every manslayer. + +And this shall be the ordinance of the manslayer, who shall flee there, and shall live, whoever shall have struck his neighbor ignorantly, whereas he hated him not +19:4 +Gr. +before yesterday and the third day. + in times past. + +And whoever shall enter with his neighbor into the thicket, to gather wood, if the hand of him that cuts wood with the axe should be violently shaken, and the axe head falling off from the handle should light on his neighbor, and he should die, he shall flee to one of these cities, and live. + +Lest the avenger of blood pursue after the slayer, because his heart is hot, and overtake him, if the way be too long, and +19:6 +Gr. +strike his life. + kill him, though there is to this man no sentence of death, because he hated him not in time past. + +Therefore I charge you, saying, You shall separate for your self three cities. + +And if the Lord shall enlarge your borders, as he swore to your fathers, and the Lord shall give to you all the land which he said he would give to your fathers; + +if you shall listen to do all these commands, which I charge you this day, to love the Lord your God, to walk in all his ways continually; you shall add for yourself yet three cities to these three. + +So innocent blood shall not be spilled in the land, which the Lord your God gives you to inherit, and there shall not be in you one guilty of blood. + +But if there should be in you a man hating his neighbor, and he should lay wait for him, and rise up against him, and strike him, that he die, and he should flee to one of these cities, + +then shall the elders of his city send, and take him thence, and they shall deliver him into the hands of the avengers of blood, and he shall die. + +Your eye shall not spare him; so shall you purge innocent blood from Israel, and it shall be well with you. + +You shall not move the landmarks of your neighbor, which your fathers set in the inheritance, in which you have obtained a share in the land, which the Lord your God gives you to inherit. + +One witness shall not +19:15 +Gr. +remain. + stand to testify against a man for any iniquity, or for any fault, or for any sin which he may commit; +19:15 +2 Cor 13:1 + by the mouth of two witnesses, or by the mouth of three witnesses, shall every word be established. + +And if an unjust witness rise up against a man, alleging iniquity against him; + +then shall the two men between whom the controversy is, stand before the Lord, and before the priests, and before the judges, who may be in those days. + +And the judges shall make diligent inquiry, and, behold, +if an unjust witness has borne unjust testimony; +and has stood up against his brother; + +then shall you⌃ do to him as he wickedly devised to do against his brother, and you shall remove the evil from yourselves. + +And the rest shall hear and fear, and do no more according to this evil thing in the midst of you. + +Your eye shall not spare him: +you shall exact life for life, eye for eye, tooth for tooth, hand for hand, foot for foot. + +

+ + +

And if you should go forth to war against your enemies, and should see horse, and rider, and a people more numerous than yourself; you shall not be afraid of them, for the Lord your God +is with you, who brought you up out of the land of Egypt. + +And it shall come to pass whenever you shall draw near to battle, that the priest shall draw near and speak to the people, and shall say to them, + +Hear, O Israel; you⌃ are going this day to battle against your enemies: let not your heart faint, fear not, neither be confounded, neither turn aside from their face. + +For +it is the Lord your God who advances with you, to fight with you against your enemies, +and to save you. + +And the scribes shall speak to the people, saying, What man +is he that has built a new house, and has not dedicated it? let him go and return to his house, lest he die in the war, and another man dedicate it. + +And what man +is he that has planted a vineyard, and not been made merry with it? let him go and return to his house, lest he die in the battle, and another man be made merry with it. + +And what man +is he that has betrothed a wife, and has not taken her? let him go and return to his house, lest he die in the battle, and another man take her. + +And the scribes shall speak further to the people, and say, What man +is he that fears and is cowardly in his heart? Let him go and return to his house, lest he make the heart of his brother fail, as his own. + +And it shall come to pass when the scribes shall have ceased speaking to the people, that they shall appoint generals of the army to be leaders of the people. + +And if you shall draw near to a city to overcome them by war, then call them out peaceably. + +If then they should answer peaceably to you, and open to you, it shall be that all the people found in it shall be tributary and subject to you. + +But if they will not listen to you, but wage war against you, you shall invest it; + +until the Lord your God shall deliver it into your hands, and you shall strike every male of it with the edge of the sword: + +except the women and the stuff: and all the cattle, and whatever shall be in the city, and all the plunder you shall take as spoil for yourself, and shall eat all the plunder of your enemies whom the Lord your God gives you. + +Thus shall you do to all the cities that are very far off from you, not +being of the cities of these nations which the Lord your God gives you to inherit their land. + + +Of these you⌃ shall not take any thing alive; + +but you⌃ shall surely curse them, the Chettite, and the Amorite, and the Chananite, and the Pherezite, and the Evite, and the Jebusite, and the Gergesite; as the Lord your God commanded you: + +that they may not teach you to do all their abominations, which they did to their gods, and +so you⌃ should sin before the Lord your God. + +And if you should besiege +20:19 +Gr. +one city. + a city many days to prevail against it by war to take it, you shall not destroy its trees, by applying an iron tool to them, but you shall eat of it, and shall not cut it down: Is the tree that is in the field a man, to enter +20:19 +Gr. +against you. + before you into +20:19 +Gr. +the trench. See Matt. 3:10. + the work of the siege? + +But the tree which you know to be not fruit-bearing, this you shall destroy and cut down; and you shall construct a mound against the city, which makes war against you, until it be delivered up. + +

+ + +

And if one be found slain with the sword in the land, which the Lord your God gives you to inherit, having fallen in the field, and they do not know who has struck +him; + +your elders and your judges shall come forth, and shall measure the distances of the cities round about the slain man: + +and it shall be that the city which is nearest to the slain man the elders of that city shall take a heifer of the herd, which has not laboured, and which has not +21:3 +Gr. +drawn. + borne a yoke. + +And the elders of that city shall bring down the heifer into a rough valley, which has not been tilled and is not sown, and they shall +21:4 +Gr. +cut the sinews. +i.e. +of the neck. + kill the heifer in the valley. + +And the priests the Levites shall come, because the Lord God has chosen them to stand by him, and to +21:5 +Gr. +his name. +Hebraism. bless in his name, and +21:5 +Gr. +at their mouth. + by their word shall every controversy and every stroke be +decided. + +And all the elders of that city who draw near to the slain man shall wash their hands over the head of the heifer which was slain in the valley; + +and they shall answer and say, Our hands have not shed this blood, and our eyes have not seen +it. + +Be merciful to your people Israel, whom you have redeemed, O Lord, that innocent blood +21:8 +Gr. +may not be in your people. + may not be charged on your people Israel: and the blood shall be atoned for to them. + +And you shall take away innocent blood from among you, if you should do that which is good and pleasing before the Lord your God. + +And if when you go out to war against your enemies, the Lord your God should deliver them into your hands, and you should take their spoil, + +and should see among the spoil a woman beautiful in countenance, and should +21:11 +Gr. +think about her. + desire her, and take her to yourself for a wife, + +and should bring her within your house: then shall you shave her head, and pare her nails; + +and shall take away her garments of captivity from off her, and she shall abide in your house, and shall bewail her father and mother the days of a month; and afterwards you shall go in to her and dwell with her, and she shall be your wife. + +And it shall be if you do not delight in her, you shall send her out free; and she shall not by any means be sold for money, you shall not treat her contemptuously, because you have humbled her. + +And if a man have two wives, the one loved and +21:15 +Gr. +one of them. + the other hated, and both the loved and the hated should have born him +children, and the son of the hated should be firstborn; + +then it shall be that whenever he shall divide by inheritance his goods to his sons, he shall not be able to give the right of the firstborn to the son of the loved one, having overlooked the son of the hated, which is the firstborn. + +But he shall acknowledge the firstborn of the hated one to give to him double of all things which shall be found by him, because he is the +21:17 +Gr. +the beginning or chief. + first of his children, and to him belongs the birthright. + +And if any man has a disobedient and contentious son, who hearkens not to the voice of his father and the voice of his mother, and they should correct him, and he should not listen to them; + +then shall his father and his mother take hold of him, and bring him forth to the elders of his city, and to the gate of the place: + +and they shall say to the men of their city, This our son is disobedient and contentious, he hearkens not to our voice, he is a reveler and a drunkard. + +And the men of his city shall stone him with stones, and he shall die; and you shall remove the evil one from yourselves, and the rest shall hear and fear. + +And if there be sin in any one, +and the judgment of death +be upon him, and he be put to death, and you⌃ hang him on a tree: + +his body shall not remain all night upon the tree, but you⌃ shall by all means bury it in that day; for +21:23 +Gal 3:13 + every one that is hanged on a tree is cursed of God; and you⌃ shall by no means defile the land which the Lord your God gives you for an inheritance. + +

+ + +

When you see the calf of your brother or his sheep wandering in the way, you shall not overlook them; you shall by all means turn them back to your brother, and you shall restore them to him. + +And if your brother do not come near you, and you do not know him, you shall bring it into your house within; and it shall be with you until your brother shall seek them, and you shall restore them to him. + +Thus shall you do to his ass, and thus shall you do to his garment, and thus shall you do to every thing that your brother has lost; whatever shall have been lost by him, and you shall have found, you shall not have power to overlook. + +You shall not see the ass of your brother, or his calf, fallen in the way: you shall not overlook them, you shall surely help him to raise them up. + +The apparel of a man shall not be on a woman, neither shall a man put on a woman's dress; for every one that does these things is an abomination to the Lord your God. + +And if you should come upon a brood of birds before your face in the way or upon any tree, or upon the earth, young or eggs, and the mother be brooding on the young or the eggs, you shall not take the dam with the young ones. + +You shall by all means let the mother go, but you shall take the young to yourself; that it may be well with you, and that you may live long. + +If you should build a new house, then shall you make a parapet to your house; so you shall not bring blood-guiltiness upon your house, if one should in any wise fall from it. + +You shall not sow your vineyard with diverse seed, lest the fruit be devoted, and whatever seed you may sow, with the fruit of your vineyard. + +You shall not plow with an ox and an ass together. + +You shall not wear a +22:11 +Gr. +false or adulterated or drossy. + mingled +garment, woollen and linen together. + +You shall make fringes on the four borders of your garments, with which soever you may be clothed. + +And if any one should take a wife, and dwell with her, and hate her, + +and attach to her reproachful words, and bring against her an evil name, and say, I took this woman, and when I came to her I found not her tokens of virginity: + +then the father and the mother of the damsel shall take and bring out the damsel's tokens of virginity to the elders of the city to the gate. + +And the father of the damsel shall say to the elders, I gave this my daughter to this man for a wife; + +and now he has hated her, and attaches reproachful words to her, saying, I have not found tokens of virginity with your daughter; and these +are the tokens of my daughter's virginity. And they shall unfold the garment before the elders of the city. + +And the elders of that city shall take that man, and shall chastise him, + +and shall fine him one hundred shekels, and shall give +them to the father of the damsel, because he has brought forth an evil name against a virgin of Israel; and she shall be his wife: he shall never be able to put her away. + +But if this report be true, and the tokens of virginity be not found for the damsel; + +then shall they bring out the damsel to the doors of her father's house, and shall stone her with stones, and she shall die; because she has wrought folly among the children of Israel, to defile the house of her father by whoring: so you shall remove the evil one from among you. + +And if a man be found lying with a woman married to a man, you⌃ shall kill them both, the man that lay with the woman, and the woman: so shall you remove the wicked one out of Israel. + +And if there be a young damsel espoused to a man, and a man should have found her in the city and have lain with her; + +you⌃ shall bring them both out to the gate of their city, and they shall be stoned with stones, and they shall die; the damsel, because she cried not in the city; and the man, because he humbled his neighbor's spouse: so shall you remove the evil one from yourselves. + +But if a man find in the field a damsel that is betrothed, and he should force her and lie with her, you⌃ shall kill the man that lay with her only. + +And the damsel has not +committed a sin worthy of death; as if a man should rise up against his neighbor, and kill +22:26 +Gr. +his life. + him, so +is this thing; + +because he found her in the field; the betrothed damsel cried, and there was none to help her. + +And if any one should find a young virgin who has not been betrothed, and should force +her and lie with her, and be found, + +the man who lay with her shall give to the father of the damsel fifty silver didrachmas, and she shall be his wife, because he has humbled her; he shall never be able to put her away. + +A man shall not take his father's wife, and shall not uncover his father's skirt. + +

+ + +

He that is fractured or mutilated in his private parts shall not enter into the assembly of the Lord. + + +One born of a harlot shall not enter into the assembly of the Lord. + +The Ammanite and Moabite shall not enter into the assembly of the Lord, even until the tenth generation he shall not enter into the assembly of the Lord, even for ever: + +because they met you not with bread and water by the way, when you⌃ went out of Egypt; and because they hired against you Balaam the son of Beor of Mesopotamia to curse you. + +But the Lord your God would not listen to Balaam; and the Lord your God changed the curses into blessings, because the Lord your God loved you. + +You shall not speak peaceably or profitably to them all your days for ever. + +You shall not abhor an Edomite, because he is your brother; you shall not abhor an Egyptian, because you were a stranger in his land. + +If sons be born to them, in the third generation they shall enter into the assembly of the Lord. + +And if you should go forth to engage with your enemies, then you shall keep you from every wicked thing. + +If there should be in you a man who is not clean by reason of his issue by night, then he shall go forth out of the camp, and he shall not enter into the camp. + +And it shall come to pass toward evening he shall wash his body with water, and when the sun has gone down, he shall go into the camp. + +And you shall have a place outside of the camp, and you shall go out there, + +and you shall have a trowel on your girdle; and it shall come to pass when you would relieve yourself abroad, that you shall dig with it, and shall bring back the earth and cover your nuisance. + +Because the Lord your God walks in your camp to deliver you, and to give up your enemy before your face; and your camp shall be holy, and there shall not appear in you a disgraceful thing, and +so he +23:14 +i.e. +would if you wort disobedient. + shall turn away from you. + +You shall not deliver a servant to his master, who +coming from his master attaches himself to you. + +He shall dwell with you, he shall dwell among you where he shall please; you shall not afflict him. + +There shall not be a harlot of the daughters of Israel, and there shall not be a fornicator of the sons of Israel; there shall not be an +23:17 +Or, +sodomitess or harlot. + idolatress of the daughters of Israel, and there shall not be an +23:17 +Or, +sodomite. + initiated person of the sons of Israel. + +You shall not bring the hire of a harlot, nor the price of a dog into the house of the Lord your God, for any vow; because even both are an abomination to the Lord your God. + +You shall not lend to your brother on usury of silver, or usury of meat, or usury of any thing which you may lend out. + +You may lend on usury to a stranger, but to your brother you shall not lend on usury; that the Lord your God may bless you in all your works upon the land, into which you are entering to inherit it. + +And if you will vow a vow to the Lord your God, you shall not delay to pay it; for the Lord your God will surely require it of you, and +otherwise it shall be sin in you. + +But if you should be unwilling to vow, it is not sin in you. + +You shall observe the words that proceed from between your lips; and as you have vowed a gift to the Lord God, +so shall you do that which you have spoken with your mouth. + +

+ + +

And if you should go into the corn field of your neighbor, then you may gather the ears with your hands; but you shall not put the sickle to your neighbor's corn. + +And if you should go into the vineyard of your neighbor, you shall eat grapes sufficient to satisfy your desire; but you may not put them into a vessel. + +And if any one should take a wife, and should dwell with her, then it shall come to pass if she should not have found favor before him, because he has found some unbecoming thing in her, that he shall write for her a +24:3 +Or, +book. + bill of divorcement, and give it into her hands, and he shall send her away out of his house. + +And +if she should go away and be married to another man; + +and the last husband should hate her, and write for her a bill of divorcement; and should give it into her hands, and send her away out of his house, and the last husband should die, who took her to himself for a wife; + +the former husband who sent her away shall not be able to return and take her to himself for a wife, after she has been defiled; because it is an abomination before the Lord your God, and you⌃ shall not defile the land, which the Lord your God gives you to inherit. + +And if any one should have recently taken a wife, he shall not go out to war, neither shall any thing be laid upon him; he shall be +24:7 +Lit. +guiltless. + free in his house; for one year he shall cheer his wife whom he has taken. + +You shall not take for a pledge the under millstone, nor the upper millstone; for +24:8 +Gr. +this man. + he who does so takes life for a pledge. + +And if a man should be caught stealing +24:9 +Gr. +a soul. + one of his brethren of the children of Israel, and having overcome him he should sell him, that thief shall die; so shall you remove that evil one from yourselves. + +Take heed to yourself in +regard of the plague of leprosy: you shall take great heed to do according to all the law, which the priests the Levites shall report to you; take heed to do, as I have charged you. + +Remember all that the Lord your God did to Mariam in the way, when you⌃ were going out of Egypt. + +If your neighbor owe you a debt, any debt whatever, you shall not go into his house to take his pledge: + +you shall stand without, and the man who is in your debt shall bring the pledge out to you. + +And if the man be poor, you shall not sleep with his pledge. + +You shall surely restore his pledge at sunset, and he shall sleep in his garment, and he shall bless you; and it shall be +24:15 +ie. +mercy shown by you. + mercy to you before the Lord your God. + +You shall not unjustly withhold the wages of the poor and needy of your brethren, or of the strangers who are in your cities. + +You shall pay him his wages the same day, the sun shall not go down upon it, because he is poor and he trusts in it; and he shall cry against you to the Lord, and it shall be sin in you. + +The fathers shall not be put to death for the children, and the sons shall not be put to death for the fathers; every one shall +24:18 +Gr. +die in his own sin. + be put to death for his own sin. + +You shall not wrest the judgment of the stranger and the fatherless, and widow; you shall not take the widow's garment for a pledge. + +And you shall remember that you were a bondman in the land of Egypt, and the Lord your God redeemed you from thence; therefore I charge you to do this thing. + +And when you shall have reaped corn in your field, and shall have forgotten a sheaf in your field, you shall not return to take it; it shall be for the stranger, and the orphan, and the widow, that the Lord your God may bless you in all the works of your hands. + +And if you should gather your olives, you shall not return to collect the remainder; it shall be for the stranger, and the fatherless, and the widow, and you shall remember that you were a bondman in the land of Egypt; therefore I command you to do this thing. + +And when soever you shall gather the grapes of your vineyard, you shall not glean what you have left; it shall be for the stranger, and the orphan, and the widow: + +and you shall remember that you were a bondman in the land of Egypt; therefore I command you to do this thing. + +

+ + +

And if there should be a dispute between men, and they should come forward to judgment, and +the judges judge, and justify the righteous, and condemn the wicked: + +then it shall come to pass, if the unrighteous should be worthy of stripes, you shall lay him down before the judges, and they shall scourge him before them according to his iniquity. + +And they shall scourge him with forty stripes in number, they shall not inflict more; for if you should scourge him +with more stripes beyond these stripes, your brother will be disgraced before you. + +You shall +25:4 +1 Cor 9:9 + not muzzle the ox that treads out the corn. + +And +25:5 +Matt 22:24 + if brethren should live together, and one of them should die, and should not have seed, the wife of the deceased shall not marry out +of the family to a man not related: her husband's brother shall go in to her, and shall take her to himself for a wife, and shall dwell with her. + +And it shall come to pass that the child which she shall bear, shall be +25:6 +Gr. +constituted. + named by the name of the deceased, and his name shall not be blotted out of Israel. + +And if the man should not be willing to take his brother's wife, then shall the woman go up to the gate to the elders, and she shall say, My husband's brother will not raise up the name of his brother in Israel, my husband's brother +25:7 +Gr. +has not been willing. + has refused. + +And the elders of his city shall call him, and speak to him; and if he stand and say, I will not take her: + +then his brother's wife shall come forward before the elders, and shall loose one shoe from off his foot, and shall spit in his face, and shall answer and say, Thus shall they do to the man who will not build his brother's house in Israel. + +And his name shall be called in Israel, The house of him that has had his shoe loosed. + +And if men should strive together, a man with his brother, and the wife of one of them should advance to rescue her husband out of the hand of him that smites him, and she should stretch forth her hand, and take hold of his private parts; + +you shall cut off her hand; your eye shall not spare her. + +You shall not have in your bag various weights, a great +25:13 +Gr. +or. + and a small. + +You shall not have in your house various measures, a great +25:14 +Gr. +or. + and a small. + +You shall have a true and just weight, and a true and just measure, that you may live long upon the land which the Lord your God gives you for an inheritance. + +For every one that does this +is an abomination to the Lord your God, even every one that does injustice. + +Remember what things Amalec did to you by the way, when you went forth out of the land of Egypt: + +how he withstood you in the way, and harassed your rear, +even those that were weary behind you, and you did hunger and was weary; and he did not fear God. + +And it shall come to pass whenever the Lord your God shall have given you rest from all your enemies round about you, in the land which the Lord your God gives you to inherit, you shall blot out the name of Amalec from under heaven, and shall not forget +to do it. + +

+ + +

And it shall be when you shall have entered into the land, which the Lord your God gives you to inherit it, and you shall have inherited it, and you shall have lived upon it, + +that you shall take of the first of the fruits of your land, which the Lord your God gives you, and you shall put them into a basket, and you shall go to the place which the Lord your God shall choose to have his name called there. + +And you shall come to the priest who shall be in those days, and you shall say to him, I testify this day to the Lord my God, that I am come into the land which the Lord swore to our fathers to give to us. + +And the priest shall take the basket out of your hands, and shall set it before the altar of the Lord your God: + +and he shall answer and say before the Lord your God, My father abandoned Syria, and went down into Egypt, and sojourned there with a small number, and became there a mighty nation and a great multitude. + +And the Egyptians afflicted us, and humbled us, and imposed hard tasks on us: + +and we cried to the Lord our God, and the Lord heard our voice, and saw our humiliation, and our labor, and our affliction. + +And the Lord brought us out of Egypt himself with his great strength, and his mighty hand, and his high arm, and with great visions, and with signs, and with wonders. + +And he brought us into this place, and gave us this land, a land flowing with milk and honey. + +And now, behold, I have brought the first of the fruits of the land, which you gave me, O Lord, a land flowing with milk and honey: and you shall leave it before the Lord your God, and you shall worship before the Lord your God; + +and you shall rejoice in all the good +things, which the Lord your God has given you, +you and your family, and the Levite, and the stranger that is within you. + +And when you shall have completed all the tithings of your fruits in the third year, you shall give the second tenth to the Levite, and stranger, and fatherless, and widow; and they shall eat it in your cities, and be merry. + +And you shall say before the Lord your God, I have fully collected the holy things out of my house, and I have given them to the Levite, and the stranger, and the orphan, and the widow, according to all commands which you did command me: I did not transgress your command, and I did not forget it. + +And in my distress I did not eat of them, I have not gathered of them for an unclean +26:14 +Or, +person. + purpose, I have not given of them to the dead; I have listened to the voice of the Lord our God, I have done as you have commanded me. + +Look down from your holy house, from heaven, and bless your people Israel, and the land which you have given them, as you did swear to our fathers, to give to us a land flowing with milk and honey. + +On this day the Lord your God charged you to keep all the ordinances and judgments; and you⌃ shall observe and do them, with all your heart, and with all your soul. + +You have chosen God this day to be your God, and to walk in all his ways, and to observe his ordinances and judgments, and to listen to his voice. + +And the Lord has chosen you this day that you should be to him a peculiar people, as he said, to keep his commands; + +and that you should be above all nations, as he has made you renowned, and a boast, and glorious, that you should be a holy people to the Lord your God, as he has spoken. + +

+ + +

And Moses and the elders of Israel commanded, saying, Keep all these commands, all that I command you this day. + +And it shall come to pass in the day when you⌃ shall cross over Jordan into the land which the Lord your God gives you, that you shall set up for yourself great stones, and shall plaster them with plaster. + +And you shall write on these stones all the words of this law, as soon as you⌃ have crossed Jordan, when you⌃ are entered into the land, which the Lord God of your fathers gives you, a land flowing with milk and honey, according as the Lord God of your fathers said to you. + +And it shall be as soon as you⌃ are gone over Jordan, you⌃ shall set up these stones, which I command you this day, on mount Gaebal, and you shall plaster them with plaster. + +And you shall build there an altar to the Lord your God, an altar of stones; you shall not lift up iron upon it. + +Of whole stones shall you build an altar to the Lord your God, and you shall offer upon it whole burnt offerings to the Lord your God. + +And you shall there offer a peace-offering; and you shall eat and be filled, and rejoice before the Lord your God. + +And you shall write upon the stones all this law very plainly. + +And Moses and the priests the Levites spoke to all Israel, saying, Be silent and hear, O Israel; this day you are become a people to the Lord your God. + +And you shall listen to the voice of the Lord your God, and shall do all his commands, and his ordinances, as many as I command you this day. + +And Moses charged the people on that day, saying, + +These shall stand to bless the people on mount Garizin having gone over Jordan; Symeon, Levi, Judas, Issachar, Joseph, and Benjamin. + +And these shall stand for cursing on mount Gaebal; Ruben, Gad, and Aser, Zabulon, Dan, and Nephthali. + +And the Levites shall answer and say to all Israel with a loud voice, + +Cursed +is the man whoever shall make a graven or molten image, an abomination to the Lord, the work of the hands of craftsmen, and shall put it in a secret place: and all the people shall answer and say, So be it. + +Cursed is the man that dishonors his father or his mother: and all the people shall say, So be it. + +Cursed is he that removes his neighbor's landmarks: and all the people shall say, So be it. + +Cursed is he that makes the blind to wander in the way: and all the people shall say, So be it. + +Cursed is every one that shall pervert the judgment of the stranger, and orphan, and widow: and all the people shall say, So be it. + +Cursed is he that lies with his father's wife, because he has uncovered his father's skirt: and all the people shall say, So be it. + +Cursed is he that lies with any beast: and all the people shall say, So be it. + +Cursed is he that lies with his sister by his father or his mother: and all the people shall say, So be it. + +Cursed is he that lies with his daughter-in-law: and all the people shall say, So be it. Cursed is he that lies with his wife's sister: and all the people shall say, So be it. + +Cursed is he that smites his neighbor secretly: and all the people shall say, So be it. + +Cursed is he whoever shall have taken a bribe to +27:25 +Gr. +to strike the life of innocent blood. + kill an innocent man: and all the people shall say, So be it. + + +27:26 +Gal 3:10 + Cursed is every man that continues not in all the words of this law to do them: and all the people shall say, So be it. + +

+ + +

And it shall come to pass, if you will indeed hear the voice of the Lord your God, to observe and do all these commands, which I charge you this day, that the Lord your God shall set you on high above all the nations of the earth; + +and all these blessings shall come upon you, and shall find you. If you will indeed hear the voice of the Lord your God, + +blessed +shall you +be in the city, and blessed shall you be in the field. + +Blessed shall be the offspring of your +28:4 +Gr. +belly. + body, and the fruits of your land, and the herds of your oxen, and the flocks of your sheep. + +Blessed shall be your barns, and your stores. + +Blessed shall you be in your coming in, and blessed shall you be in your going out. + +The Lord deliver your enemies that withstand you utterly broken before your face: they shall come out against you one way, and they shall flee seven ways from before you. + +The Lord send upon you his blessing in your barns, and on all on which you shall put your hand, in the land which the Lord your God gives you. + +The Lord raise you up for himself a holy people, as he swore to your fathers; if you will hear the voice of the Lord your God, and walk in all his ways. + +And all the nations of the earth shall see +28:10 +Or, +see that the name, etc. + you, that the name of the Lord is called upon you, and they shall stand in awe of you. + +And the Lord your God shall multiply you for good in the offspring of your +28:11 +Gr. +belly. + body, and in the offspring of your cattle, and in the fruits of your land, on your land which the Lord swore to your fathers to give to you. + +May the Lord open to you his good treasure, the heaven, to give rain to your land in season: may he bless all the works of your hands: so shall you lend to many nations, but you shall not borrow; and you shall rule over many nations, but they shall not rule over you. + +The Lord your God make you the head, and not the tail; and you shall then be above and you shall not be below, if you will listen to the voice of the Lord your God, in all things that I charge you this day to observe. + +You shall not turn aside from any of the commandments, which I charge you this day, to the right hand or to the left, to go after other gods to serve them. + +But it shall come to pass, if you will not listen to the voice of the Lord your God, to observe all his commandments, as many as I charge you this day, then all these curses shall come on you, and overtake you. + +Cursed +shall you +be in the city, and cursed shall you be in the field. + +Cursed shall be your barns and your stores. + +Cursed shall be the offspring of your body, and the fruits of your land, the herds of your oxen, and the flocks of your sheep. + +Cursed shall you be in your coming in, and cursed shall you be in your going out. + +The Lord send upon you lack, and famine, and consumption of all things on which you shall put your hand, until he shall have utterly destroyed you, and until he shall have consumed you quickly because of your evil devices, because you have forsaken me. + +28:21 +Gr. +may the Lord. + The Lord cause the pestilence to cleave to you, until he shall have consumed you off the land into which you go to inherit it. + +The Lord strike you with distress, and fever, and cold, and inflammation, and blighting, and paleness, and they shall pursue you until they have destroyed you. + +And you shall have over your head a sky of brass, and the earth under you shall be iron. + +The Lord your God make the rain of your land dust; and dust shall come down from heaven, until it shall have destroyed you, and until it shall have quickly consumed you. + +The Lord give you up for slaughter before your enemies: you shall go out against them one way, and flee from their face seven ways; and you shall be a dispersion in all the kingdoms of the earth. + +And your dead men shall be food to the birds of the sky, and to the beasts of the earth; and there shall be none to scare them away. + +The Lord strike you with the botch of Egypt in the seat, and with a malignant scab, and itch, so that you can not be healed. + +The Lord strike you with insanity, and blindness, and astonishment of mind. + +And you shall grope at mid-day, as a blind man would grope in the darkness, and you shall not prosper in your ways; and then you shall be unjustly treated, and plundered continually, and there shall be no helper. + +you shall take a wife, and another man shall have her; you shall build a house, and you shall not dwell in it; you shall plant a vineyard, and shall not gather the grapes of it. + +Your calf +shall be slain before you, and you shall not eat of it; your ass shall be violently taken away from you, and shall not be restored to you: your sheep shall be given to your enemies, and you shall have no helper. + +Your sons and your daughters shall be given to another nation, and your eyes wasting away shall look for them: your hand shall have no strength. + +A nation which you know not shall eat the produce of your land, and all your labors; and you shall be injured and crushed always. + +And you shall be distracted, because of the sights of your eyes which you shall see. + +The Lord strike you with an evil sore, on the knees and the legs, so that you shall not be able to be healed from the sole of your foot to the crown of your head. + +The Lord carry away you and your princes, whom you shall set over you, to a nation which neither you nor your fathers know; and you shall there serve other gods, wood and stone. + +And you shall be there for a wonder, and a parable, and a tale, among all the nations, to which the Lord your God shall carry you away. + +You shall carry forth much seed into the field, and you shall bring in little, because the locust shall devour it. + +You shall plant a vineyard, and dress it, and shall not drink the wine, neither shall you delight yourself with it, because the worm shall devour +28:39 +Gr. +them. +i.e. +the fruits of it. + it. + +You shall have olive trees in all your borders, and you shall not anoint you with oil, because your olive shall utterly +28:40 +Lit. +flow, or fall down. + cast +its fruit. + +You shall beget sons and daughters, and they shall not be +yours, for they shall depart into captivity. + +All your trees and the fruits of your land shall the blight consume. + +The stranger that is within you shall get up very high, and you shall come down very low. + +He shall lend to you, and you shall not lend to him: he shall be the head, and you shall be the tail. + +And all these curses shall come upon you, and shall pursue you, and shall overtake you, until he shall have consumed you, and until he shall have destroyed you; because you did not listen to the voice of the Lord your God, to keep his commands, and his ordinances which he has commanded you. + +And +these things shall be signs in you, and wonders among your seed for ever; + +because you did not serve the Lord your God with gladness and a good heart, because of the abundance of all things. + +And you shall serve your enemies, which the Lord will send forth against you, in hunger, and in thirst, and in nakedness, and in the lack of all things; and you shall wear upon your neck a yoke of iron until he shall have destroyed you. + +The Lord shall bring upon you a nation from the extremity of the earth, like the swift flying of an eagle, a nation whose voice you shall not +28:49 +Gr. +bear. + understand; + +a nation bold in countenance, which shall not +28:50 +Gr. +wonder at. + respect the person of the aged and shall not pity the young. + +And it shall eat up the young of your cattle, and the fruits of your land, so as not to leave to you corn, wine, oil, the herds of your oxen, and the flocks of your sheep, until it shall have destroyed you; + +and have utterly crushed you in your cities, until the high and strong walls be destroyed, in which you trust, in all your land; and it shall afflict you in your cities, which he has given to you. + +And you shall eat the fruit of your +28:53 +Gr. +belly. + body, the flesh of your sons and of your daughters, all that he has given you, in your straitness and your affliction, with which your enemy shall afflict you. + +He that is tender and very delicate within you shall look with an evil eye upon his brother, and the wife in his bosom, and the children that are left, which may have been left to him; + +so as +not to give to one of them of the flesh of his children, whom he shall eat, because of his having nothing left him in your straitness, and in your affliction, with which your enemies shall afflict you in all your cities. + +And she that is tender and delicate among you, whose foot has not assayed to go upon the earth for delicacy and tenderness, shall look with an evil eye on her husband in her bosom, and her son and her daughter, + +and her +28:57 +Lit. +afterbirth. + offspring that comes out between her feet, and the child which she shall bear; for she shall eat them because of the lack of all things, secretly in your straitness, and in your affliction, with which your enemy shall afflict you in your cities. + +If you will not listen to do all the words of this law, which have been written in this book, to fear this glorious and wonderful name, the Lord your God; + +then the Lord shall magnify your plagues, and the plagues of your seed, great and wonderful plagues, and evil and dwelling diseases. + +And he shall bring upon you all the evil pain of Egypt, +28:60 +Gr. +which you feardst before their face. +Hebraism. of which you were afraid, and they shall cleave to you. + +And the Lord shall bring upon you every sickness, and every plague that is not written, and every one that is written in the book of this law, until he shall have destroyed you. + +And you⌃ shall be left few in number, whereas you⌃ were as the stars of the sky in multitude; because you did not listen to the voice of the Lord your God. + +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 you⌃ shall be quickly removed from the land, into which you⌃ go to inherit it. + +And the Lord your God shall scatter you among all nations, from one end of the earth to the other; and you shall there serve other gods, wood and stone, which you have not known, nor your fathers. + +Moreover among those nations he will not give you quiet, neither by any means shall the sole of your foot have rest; and the Lord shall give you there another and a misgiving heart, and failing eyes, and a wasting soul. + +And your life shall be in suspense before your eyes; and you shall be afraid by day and by night, and you shall have no assurance of your life. + +In the morning you shall say, Would it were evening! and in the evening you shall say, Would it were morning! for the fear of your heart with which you shall fear, and for the sights of your eyes which you shall see. + +And the Lord shall bring you back to Egypt in ships, by the way of which I said, You shall not see it again; and you⌃ shall be sold there to your enemies for bondmen and bondwomen, and none shall buy you. + +

+ + +

These +are the words of the covenant, which the Lord commanded Moses to make with the children of Israel in the land of Moab, besides the covenant which he made with them in Choreb. + +And Moses called all the sons of Israel and said to them, You⌃ have seen all things that the Lord did in the land of Egypt before you to Pharao and his servants, and all his land; + +the great temptations which your eyes have seen, the signs, and those great wonders. + +Yet the Lord God has not given you a heart to know, and eyes to see, and ears to hear, until this day. + +And he led you forty years in the wilderness; your garments did not grow old, and your sandals were not worn away off your feet. + +You⌃ did not eat bread, you⌃ did not drink wine or strong drink, that you⌃ might know that I +am the Lord your God. + +And you⌃ came as far as this place; and there came forth Seon king of Esebon, and Og king of Basan, to meet us in war. + +And we struck them and took their land, and I gave it for an inheritance to Ruben and Gad, and to the half-tribe of Manasse. + +And you⌃ shall take heed to do all the words of this covenant, that you⌃ may understand all things that you⌃ shall do. + +You⌃ all stand today before the Lord your God, the heads of your tribes, and your elders, and your judges, and your officers, every man of Israel, + +your wives, and your children, and the stranger who is in the midst of your camp, from your hewer of wood even to your drawer of water, + +that you should enter into the covenant of the Lord your God and into his oaths, as many as the Lord your God appoints you this day; + +that he may appoint you to himself for a people, and he shall be your God, as he said to you, and as he swore to your fathers, Abraam, and Isaac, and Jacob. + +And I do not appoint to you alone this covenant and this oath; + +but to those also who are here with you today before the Lord your God, and to those who are not here with you today. + +For you⌃ know how we lived in the land of Egypt, how we came through the midst of the nations through whom you⌃ came. + +And you⌃ saw their abominations, and their idols, wood and stone, silver and gold, which are among them. + +Lest there be among you man, or woman, or family, or tribe, whose heart has turned aside from the Lord your God, having gone to serve the gods of these nations; lest there be in you a root springing up with gall and bitterness. + +And it shall be if one shall hear the words of this curse, and shall flatter himself in his heart, saying, +29:19 +Lit. +May holy things happen to me. See the use of ὅσια in Isaiah 55. 3, Acts 13:34. + Let good happen to me, for I will walk in the error of my heart, lest the sinner destroy the guiltless with +him: + +God shall by no means be willing to pardon him, but then the wrath of the Lord and his jealousy shall flame out against that man; and all the curses of this covenant shall attach themselves to him, which are written in this book, and the Lord shall blot out his name from under heaven. + +And the Lord shall separate that man for evil of all the children of Israel, according to all the curses of the covenant that are written in the book of this law. + +And another generation shall say—even your sons who shall rise up after you, and the stranger who shall come from a land afar off, and shall see the plagues of that land and their diseases, which the Lord has sent upon it, + +brimstone and burning salt, (the whole land shall not be sown, neither shall any green thing spring, nor rise upon it, as Sodom and Gomorrha were overthrown, Adama and Seboim, which the Lord overthrew in his wrath and anger:)— + +and all the nations shall say, Why has the Lord done thus to this land? what +is this great fierceness of anger? + +And +men shall say, Because they forsook the covenant of the Lord God of their fathers, the things which he appointed to their fathers, when he brought them out of the land of Egypt: + +and they went and served other gods, which they knew not, neither did he assign +them to them. + +And the Lord was exceedingly angry with that land to bring upon it according to all the curses which are written in the book of this law. + +And the Lord removed them from their land in anger, and wrath, and very great indignation, and cast them out into another land as at present. + +The secret things +belong to the Lord our God, but the things that are revealed +belong to us and to our children for ever, to do all the words of this law. + +

+ + +

And it shall come to pass when all these things shall have come upon you, the blessing and the curse, which I have set before your face, and you shall +30:1 +Gr. +receive them into your heart. + call +them to mind among all the nations, wherein the Lord shall have scattered you, + +and shall return to the Lord your God, and shall listen to his voice, according to all things which I charge you this day, with all your heart, and with all your soul; + +then the Lord shall heal your iniquities, and shall pity you, and shall again gather you out from all the nations, among which the Lord has scattered you. + +If your dispersion be from one end of heaven to the other, thence will the Lord your God gather you, and thence will the Lord your God take you. + +And the Lord your God shall bring you in from thence into the land which your fathers have inherited, and you shall inherit it; and he will do you good, and multiply you above your fathers. + +And the Lord shall purge your heart, and the heart of your seed, to love the Lord your God with all your heart, and with all your soul, that you may live. + +And the Lord your God will put these curses upon your enemies, and upon those that hate you, who have persecuted you. + +And you shall return and listen to the voice of the Lord your God, and shall keep his commands, all that I charge you this day. + +And the Lord your God shall bless you in every work of your hands, in the offspring of your +30:9 +Gr. +belly. + body, and in the offspring of your cattle, and in the fruits of your land, because the Lord your God will again rejoice over you for good, as he rejoiced over your fathers: + +if you will listen to the voice of the Lord your God, to keep his commandments, and his ordinances, and his judgments written in the book of this law, if you turn to the Lord your God with all your heart, and with all your soul. + + +30:11 +See Rom 6, 7, 8. + For this command which I give you this day is not grievous, neither is it far from you. + +It is not in heaven above, +as if there were one saying, Who shall go up for us into heaven, and shall take it for us, and we will hear and do it? + +Neither is it beyond the sea, saying, Who will go over for us to the other side of the sea, and take it for us, and make it audible to us, and we will do it? + +The word is very near you, in your mouth, and in your heart, and in your hands to do it. + +Behold, I have set before you this day life and death, good and evil. + +If you will listen to the commands of the Lord your God, which I command you this day, to love the Lord your God, to walk in all his ways, and to keep his ordinances, and his judgments; then you⌃ shall live, and shall be many in number, and the Lord your God shall bless you in all the land into which you go to inherit it. + +But if your heart change, and you will not listen, and you shall go astray and worship other gods, and serve them, + +I declare to you this day, that you⌃ shall utterly perish, and you⌃ shall by no means live long upon the land, into which you⌃ go over Jordan to inherit it. + +I call both heaven and earth to witness this day against you, I have set before you life and death, the blessing and the curse: choose you life, that you and your seed may live; + +to love the Lord your God, to listen to his voice, and cleave to him; for this +is your life, and the length of your days, that you should dwell upon the land, which the Lord swore to your fathers, Abraam, and Isaac, and Jacob, to give to them. + +

+ + +

And Moses finished speaking all these words to all the children of Israel; + +and said to them, I am this day one hundred and twenty years +old; I shall not be able any longer to come in or go out; and the Lord said to me, You shall not go over this Jordan. + +The Lord your God who goes before you, he shall destroy these nations before you, and you shall inherit them: and +it shall be Joshua that goes before your face, as the Lord has spoken. + +And the Lord your God shall do to them as he did to Seon and Og the two kings of the Amorites, who were beyond Jordan, and to their land, as he destroyed them. + +And the Lord has delivered +31:5 +i.e. +the nations. + them to you; and you⌃ shall do to them, as I charged you. + +Be courageous and strong, fear not, neither be cowardly neither be afraid before them; for +it is the Lord your God that advances with you in the midst of you, +31:6 +Heb 13:5 + neither will he by any means forsake you, nor desert you. + +And Moses called Joshua, and said to him before all Israel, Be courageous and strong; for you shall go in before this people into the land which the Lord swore to your fathers to give to them, and you shall give it to them for an inheritance. + +And the Lord that goes with you shall not forsake you nor abandon you; fear not, neither be afraid. + +And Moses wrote the words of this law in a book, and gave it to the priests the sons of Levi who bear the ark of the covenant of the Lord, and to the elders of the sons of Israel. + +And Moses charged them in that day, saying, After seven years, in the time of the year of release, in the feast of tabernacles, + +when all Israel come together to appear before the Lord your God, in the place which the Lord shall choose, you⌃ shall read this law before all Israel in their ears, + +having assembled the people, the men, and the women, and the children, and the stranger that is in your cities, that they may hear, and that they may learn to fear the Lord your God; and they shall listen to do all the words of this law. + +And their sons who have not known shall hear, and shall learn to fear the Lord your God all the days that they live upon the land, into which you⌃ go over Jordan to inherit it. + +And the Lord said to Moses, Behold, the days of your death are at hand; call Joshua, and stand you⌃ by the doors of the tabernacle of testimony, and I will give him a charge. And Moses and Joshua went to the tabernacle of testimony, and stood by the doors of the tabernacle of testimony. + +And the Lord descended in a cloud, and stood by the doors of the tabernacle of testimony; and the pillar of the cloud stood by the doors of the tabernacle of testimony. + +And the Lord said to Moses, Behold, you shall sleep with your fathers, and this people will arise and go a whoring after the strange gods of the land, into which they are entering: and they will forsake me, and break my covenant, which I made with them. + +And I will be very angry with them in that day, and I will leave them and turn my face away from them, and they shall be devoured; and many evils and afflictions shall come upon them; and they shall say in that day, Because the Lord my God is not with me, these evils have come upon me. + +And I will surely turn away my face from them in that day, because of all their evil doings which they have done, because they turned aside after strange gods. + +And now write the words of this song, and teach it to the children of Israel, and you⌃ shall put it into their mouth, that this song may witness for me among the children of Israel to their face. + +For I will bring them into the good land, which I swore to their fathers, to give to them a land flowing with milk and honey: and they shall eat and be filled and satisfy +themselves; then will they turn aside after other gods, and serve them, and they will provoke me, and break my covenant. + +And this song shall stand up to witness against them; for they shall not forget it out of their mouth, or out of the mouth of their seed; for I know their wickedness, what they are doing here this day, before I have brought them into the good land, which I swore to their fathers. + +And Moses wrote this song in that day, and taught it to the children of Israel. + +And he charged Joshua, and said, Be courageous and strong, for you shall bring the sons of Israel into the land, which the Lord swore to them, and he shall be with you. + +And when Moses finished writing all the words of this law in a book, even to the end, + +then he charged the Levites who bear the ark of the covenant of the Lord, saying, + +Take the book of this law, and you⌃ shall put it in the side of the ark of the covenant of the Lord your God; and it shall be there +31:26 +Gr. +within you. + among you for a testimony. + +For I know your provocation, and your stiff neck; for yet during my life with you at this day, you⌃ have been provoking in your conduct toward God: how shall you⌃ not also be so after my death? + +Gather together to me the heads of your tribes, and your elders, and your judges, and your officers, that I may speak in their ears all these words; and I call both heaven and earth to witness against them. + +For I know that after my death you⌃ will utterly transgress, and turn aside out of the way which I have commanded you; and evils shall come upon you +31:29 +Gr. +at the end of the days. + in the latter days, because you⌃ will do evil before the Lord, to provoke him to anger by the works of your hands. And Moses spoke all the words of this song even to the end, in the ears of the whole assembly. + +

+ + +

Attend, O heaven, and I will speak; and let the earth hear the words out of my mouth. + +Let my speech be looked for as the rain, and my words come down as dew, as the shower upon the herbage, and as snow upon the grass. + +For I have called on the name of the Lord: assign you⌃ greatness to our God. + + +As for God, his works +are true, and all his ways +are +32:4 +Gr. +judgments. + judgment: God +is faithful, and there is no unrighteousness +in him; just and holy +is the Lord. + +They have sinned, not +pleasing him; spotted children, a froward and perverse generation. + +Do you⌃ thus recompense the Lord? +is the people thus foolish and unwise? did not he himself your father purchase you, and make you, and form you? + +Remember the days of old, consider the years +32:7 +Gr. +in ages of ages. + for past ages: ask your father, and he shall relate to you, your elders, and they shall tell you. + +When the Most High divided the nations, when he separated the sons of Adam, he set the bounds of the nations according to the number of the angels of God. + +And his people Jacob became the portion of the Lord, Israel was the line of his inheritance. + +He maintained him in the wilderness, in burning thirst and a dry land: he led him about and instructed him, and kept him as the apple of an eye. + +As an eagle would watch over his brood, and yearns over his young, receives them having spread his wings, and takes them up on his back: + +the Lord alone led them, there was no strange god with them. + +He brought them up on the strength of the land; he fed them with the fruits of the fields; they sucked honey out of the rock, and oil out of the solid rock. + +Butter of cows, and milk of sheep, with the fat of lambs and rams, of calves and kids, with fat of kidneys of wheat; and he drank wine, the blood of the grape. + +So Jacob ate and was filled, and the beloved one kicked; he grew fat, he became thick and broad: then he forsook the God that made him, and departed from God his Saviour. + +They provoked me to anger with strange gods; with their abominations they bitterly angered me. + +They sacrificed to devils, and not to God; to gods whom they knew not: new and fresh +gods came in, whom their fathers knew not. + +You have forsaken God that begot you, and forgotten God who feeds you. + +And the Lord saw, and was jealous; and was provoked by the anger of his sons and daughters, + +and said, I will turn away my face from them, and will show what shall happen to them in the last days; for it is a perverse generation, sons in whom is no faith. + + +32:21 +Rom 10:9 + They have provoked me to jealousy with +that which is not God, they have exasperated me with their idols; and I will provoke them to jealousy with them that are no nation, I will anger them with a nation void of understanding. + +For a fire has been kindled out of my wrath, it shall burn to hell below; it shall devour the land, and the fruits of it; it shall set on fire the foundations of the mountains. + +I will gather evils upon them, and will +32:23 +Gr. +cause my weapons to war together against them. + fight with my weapons against them. + + +They shall be consumed with hunger and the devouring of birds, and there shall be irremediable +32:24 +Gr. +downfall +or +falling away. + destruction: I will send forth against them the teeth of wild beasts, with the rage of +serpents creeping on the ground. + +Without, the sword shall bereave them of children, and terror +shall issue out of the secret chambers; the young man shall perish with the virgin, the suckling with him who has grown old. + +I said, I will scatter them, and I will cause their memorial to cease from among men. + +Were it not for the wrath of the enemy, lest they should live long, lest their enemies should combine against them; lest they should say, Our own high arm, and not the Lord, has done all these things. + +It is a nation that has lost counsel, neither is there understanding in them. + +They had not sense to understand: let them reserve these things against the time to come. + +How +32:30 +Gr. +shall. + should one pursue a thousand, and two rout tens of thousands, if God had not sold them, and the Lord delivered them up? + +For their gods are not as our God, but our enemies +are void of understanding. + +For their vine +is of the vine of Sodom, and their vine-branch of Gomorrha: their grape +is a grape of gall, their cluster +is one of bitterness. + +Their wine +is the rage of serpents, and the incurable rage of asps. + +Behold! are not these things stored up by me, and sealed among my treasures? + +In the day of vengeance +32:35 +Rom 12:19 + I will recompense, whenever their foot shall be tripped up; for the day of their destruction +is near to them, and the judgments at hand are close upon you. + +For the Lord shall judge his people, and shall be comforted over his servants; for he saw that they were +32:36 +Gr. +paralysed. + utterly weakened, and failed in the hostile invasion, and were become feeble: + +and the Lord said, Where are their gods on whom they trusted? + +the fat of whose sacrifices you⌃ ate, and you⌃ drank the wine of their drink-offerings? let them arise and help you, and be your protectors. + +Behold, behold that I am +he, and there is no god beside me: I kill, and I will make to live: I will strike, and I will heal; and there is none who shall deliver out of my hands. + +For I will lift up my hand to heaven, and swear by my right hand, and I will say, I live for ever. + +For I will sharpen my sword like lightning, and my hand shall take hold of judgment; and I will render judgment to my enemies, and will recompense them that hate me. + +I will make my weapons drunk with blood, and my sword shall devour flesh, +it shall glut itself with the blood of the wounded, and from the captivity of the +32:42 +Alex. +ἐθνῶν, Gentiles. + heads of +their enemies that rule over them. + +Rejoice, you⌃ heavens, with him, and let all the angels of God worship him; +32:43 +Rom 15:10 + rejoice you⌃ Gentiles, with his people, and let all the sons of God strengthen themselves in him; for he will avenge the blood of his sons, and he will render vengeance, and recompense justice to his enemies, and will reward them that hate him; and the Lord shall purge the land of his people. + +And Moses wrote this song in that day, and taught it to the children of Israel; and Moses went in and spoke all the words of this law in the ears of the people, he and Joshua the +son of Naue. + +And Moses finished speaking to all Israel. + +And he said to them, Take heed with your heart to all these words, which I testify to you this day, which you⌃ shall command your sons, to observe and do all the words of this law. + +For this +is no vain word to you; for it +is your life, and because of this word you⌃ shall live long upon the land, into which you⌃ go over Jordan to inherit it. + +And the Lord spoke to Moses in this day, saying, + +Go up to the mount Abarim, this mountain Nabau which is in the land of Moab over against Jericho, and behold the land of Chanaan, which I give to the sons of Israel: + +and die in the mount whither you go up, and be added to your people; as Aaron your brother died in mount Or, and was added to his people. + +Because you⌃ disobeyed my word among the children of Israel, at the waters of strife of Cades in the wilderness of Sin; because you⌃ sanctified me not among the sons of Israel. + +You shall see the land before +you, but you shall not enter into it. + +

+ + +

And this +is the blessing with which Moses the man of God blessed the children of Israel before his death. + +And he said, The Lord is come from Sina, and has appeared from Seir to us, and has hasted out of the mount of Pharan, with the ten thousands of +33:2 +Heb. קרש, saints. + Cades; on his right hand +were his angels with him. + +And he spared his people, and all his sanctified ones +are under your hands; and they are under you; and he received of his words + +the law which Moses charged us, an inheritance to the assemblies of Jacob. + +And he shall be prince with the beloved one, when the princes of the people are gathered together with the tribes of Israel. + +Let Ruben live, and not die; and let him be many in number. + +And this +is the blessing of Juda; Hear, Lord, the voice of Juda, and do you visit his people: his hands shall contend for him, and you shall be a help from his enemies. + +And to Levi he said, Give to Levi his manifestations, and his truth to the holy man, whom they tempted in the temptation; they reviled him at the water of strife. + +Who says to his father and mother, I have not seen you; and he knew not his brethren, and he refused to know his sons: he kept your oracles, and observed your covenant. + +They shall declare your ordinances to Jacob, and your law to Israel: they shall place incense in +the time of your wrath continually upon your altar. + +Bless, Lord, his strength, and accept the works of his hands; break the loins of his enemies that have risen up against him, and let not them that hate him rise up. + +And to Benjamin he said, The beloved of the Lord shall dwell in confidence, and God overshadows him always, and he rested between his shoulders. + +And to Joseph he said, His land +is of the blessing of the Lord, of the seasons of sky and dew, and of the deeps of wells below, + +and of the fruits of the changes of the sun in season, and of the produce of the months, + +from the top of the ancient mountains, and from the top of the everlasting hills, + +and of the fullness of the land in season: and let the things pleasing to him that lived in the bush come on the head of Joseph, and on the crown +of him who was glorified above his brethren. + +His beauty +is as the firstling of his bull, his horns +are the horns of a unicorn; with them he shall thrust the nations at once, even from the end of the earth: these +are the ten thousands of Ephraim, and these +are the thousands of Manasse. + +And to Zabulon he said, Rejoice, Zabulon, in your going out, and Issachar in his tents. + +They shall utterly destroy the nations, and you⌃ shall call +men there, and there offer the sacrifice of righteousness; for the wealth of the sea shall suckle you, and so shall the marts of them that dwell by the sea-coast. + +And to Gad he said, Blessed +be he that enlarges Gad: as a lion he rested, having broken the arm and the ruler. + +And he saw his first fruits, that there the land of the princes gathered with the chiefs of the people was divided; the Lord wrought righteousness, and his judgment with Israel. + +And to Dan he said, Dan +is a lion's whelp, and shall leap out of Basan. + +And to Nephthali he said, Nephthali +has the fulness of good things; and let him be filled with blessing from the Lord: he shall inherit the west and the south. + +And to Aser he said, Aser +is blessed with children; and he shall be acceptable to his brethren: he shall dip his foot in oil. + +His sandal shall be iron and brass; as your days, so +shall be your strength. + +There is not +any such as the God of the beloved; he who rides upon the heaven +is your helper, and the magnificent One of the firmament. + +And the rule of God shall protect you, and +that under the strength of the everlasting arms; and he shall cast forth the enemy from before your face, saying, Perish. + +And Israel shall dwell in confidence alone on the land of Jacob, with corn and wine; and the sky +shall be misty with dew upon you. + +Blessed +are you, O Israel; who +is like to you, O people saved by the Lord? your helper shall hold his shield over you, and +his sword +is your boast; and your enemies shall speak falsely to you, and you shall tread upon their neck. + +

+ + +

And Moses went up from Araboth Moab to the mount of Nabau, to the top of Phasga, which is before Jericho; and the Lord showed him all the mount of Galaad to Dan, and all the land of Nephthali, + +and all the land of Ephraim and Manasse, and all the land of Juda to the farthest sea; + +and the wilderness, and the country round about Jericho, the city of palm-trees, to Segor. + +And the Lord said to Moses, This +is the land of which I swore to Abraam, and Isaac, and Jacob, saying, To your seed will I give it: and I have showed it to your eyes, but you shall not go in there. + +So Moses the servant of the Lord died in the land of Moab by the word of the Lord. + +And they buried him in Gai near the house of Phogor; and no one has seen his sepulchre to this day. + +And Moses was one hundred and twenty years old at his death; his eyes were not dimmed, nor were his natural powers destroyed. + +And the children of Israel wept for Moses in Araboth of Moab at Jordan near Jericho thirty days; and the days of the sad mourning for Moses were completed. + +And Joshua the son of Naue was filled with the spirit of knowledge, for Moses had laid his hands upon him; and the children of Israel listened to him; and they did as the Lord commanded Moses. + +And there rose up no more a prophet in Israel like Moses, whom the Lord knew face to face, + +in all the signs and wonders, which the Lord sent him to work in Egypt on Pharao, and his servants, and all his land; + +the great wonders, and the mighty hand which Moses displayed before all Israel. + +

+
+ +Joshua +JOSHUA +Joshua +JOS +

JOSHUA +

+ + +

And it came to pass after the death of Moses, that the Lord spoke to Joshua the son of Naue, the minister of Moses, saying, + +Moses my servant is dead; now then arise, go over Jordan, you and all this people, into the land, which I give them. + +Every spot on which you⌃ shall tread I will give it to you, as I said to Moses. + +The wilderness and Antilibanus, as far as the great river, the river Euphrates, and as far as the +1:4 +Or, +last, +or, +farthest sea. + extremity of the sea; your coasts shall be from the setting of the sun. + +Not a man shall stand against you all the days of your life; and as I was with Moses, so will I also be with you, and +1:5 +Heb 13:5 + I will not fail you, or neglect you. + +Be strong and quit yourself like a man, for you shall divide the land to this people, which I swore to give to +1:6 +Gr. +to your fathers, to give them. + your fathers. + +Be strong, therefore, and quit yourself like a man, to observe and do as Moses my servant commanded you; and you shall not turn +1:7 +Gr. +from them, +sc. +the commands. + therefrom to the right hand or to the left, that you may be wise in whatever you may do. + +And the book of this law shall not depart out of your mouth, and you shall meditate in it day and night, that you may know how to do all the things that are written +in it; then shall you prosper, and make your ways prosperous, and then shall you be wise. + +Behold! I have commanded you; be strong and courageous, be not cowardly nor fearful, for the Lord your God is with you in all places whither you go. + +And Joshua commanded the scribes of the people, saying, + +Go into the midst of the camp of the people, and command the people, saying, Prepare provisions; for yet three days and you⌃ +1:11 +Gr. +do go over. + shall go over this Jordan, entering in to take possession of the land, which the Lord God of your fathers gives to you. + +And to Ruben, and to Gad, and to the half tribe of Manasse, Joshua said, + +Remember the word which Moses the servant of the Lord commanded you, saying, the Lord your God has caused you to rest, and has given you this land. + +Let your wives and your children and your cattle dwell in the land, which he has given you; and you⌃ shall go over +1:14 +Or, +in good order. + well armed before your brethren, every one of you who is strong; and you⌃ shall fight on their side; + +until the Lord your God shall have given your brethren rest, as also to you, and they also shall have inherited the land, which the Lord your God gives them; then you⌃ shall depart each one to his inheritance, which Moses gave you beyond Jordan eastward. + +And they answered Joshua and said, We will do all things which you command us, and we will go to every place whither you shall send us. + +Whereinsoever we listened to Moses we will listen to you; only let the Lord our God be with you, as he was with Moses. + +And whoever shall disobey you, and whoever shall not listen to your words as you shall command him, let him die; but be you strong and courageous. + +

+ + +

And Joshua the son of Naue sent out of Sattin two young men to spy +the land, saying, Go up and view the land and Jericho: and the two young men went and entered into Jericho; and they entered into the house of a harlot, whose name +was Raab, and lodged there. + +And it was reported to the king of Jericho, saying, Men of the sons of Israel have come in hither to spy the land. + +And the king of Jericho sent and spoke to Raab, saying, Bring out the men that entered into your house this night; for they are come to spy out the land. + +And the woman took the two men and hid them; and she spoke to +2:4 +Gr. +them. + the messengers, saying, The men came in to me, + +but when the gate was shut in the +2:5 +Gr. +dark. + evening, the men went out; I know not whither they are gone: follow after them, if you⌃ +2:5 +Gr. +shall. + may overtake them. + +But she +had brought them up upon the house, and hid them in the flax-stalks that were spread by her on the house. + +And the men followed after them in the way to Jordan to the fords; and the gate was shut. + +And it came to pass when the men who pursued after them were gone forth, and before the spies had lain down to sleep, that she came up to them on the top of the house; + +and she said to them, I know that the Lord has given you the land; for the fear of you has fallen upon us. + +For we have heard that the Lord God dried up the Red Sea before you, when you⌃ came out of the land of Egypt, and all that he did to the two kings of the Amorites, who were beyond Jordan, to Seon and Og, whom you⌃ utterly destroyed. + +And when we heard it we were amazed in our heart, and there was no longer any spirit in any of us because of you, for the Lord your god +is God in heaven above, and on the earth beneath. + +And now swear to me by the Lord God; since I deal mercifully with you, so do you⌃ also deal mercifully with the house of my father: + +and save alive the house of my father, my mother, and my brethren, and all my house, and all that they have, and you⌃ shall rescue my soul from death. + +And the men said to her, Our life for yours +even to death: and she said, When the Lord shall have delivered the city to you, you⌃ shall deal mercifully and truly with me. + +And she let them down by the window; + +and she said to them, Depart into the hill-country, lest the pursuers meet you, and you⌃ shall be hidden there three days until your pursuers return from after you, and afterwards you⌃ shall depart on your way. + +And the men said to her, We are clear of this your oath. + +Behold, +2:18 +Gr. +do enter. + we shall enter into a part of the city, and you shall set +2:18 +Gr. +the sign. + a sign; you shall bind this scarlet cord in the window, by which you have let us down, and you shall bring in to yourself, into your house, your father, and your mother, and your brethren, and all the family of your father. + +And it shall come to pass that whoever shall go outside the door of your house, his guilt shall be upon him, and we shall be quit of this your oath; and we will be responsible for all that shall be found with you in your house. + +But if any one should injure us, or betray these our matters, we shall be quit of this your oath. + +And she said to them, Let it be according to your word; and she sent them out, and they departed. + +And they came to the hill-country, and remained there three days; and the pursuers searched all the roads, and found them not. + +And the two young men returned, and came down out of the mountain; and they went over to Joshua the son of Naue, and told him all things that had happened to them. + +And they said to Joshua, The Lord has delivered all the land into our power, and all the inhabitants of that land tremble because of us. + +

+ + +

And Joshua rose up early in the morning, and departed from Sattin; and they came as far as Jordan, and lodged there before they crossed over. + +And it came to pass after three days, +that the scribes went through the camp; + +and they charged the people, saying, When you⌃ shall see the ark of the covenant of the Lord our God, and our priests and the Levites bearing it, you⌃ shall depart from your places, and you⌃ shall go after it. + +But let there be a distance between you and it; you⌃ shall stand as much as two thousand cubits +from it. Do not draw near to it, that you⌃ may know the way which you⌃ are to go; for you⌃ have not gone the way +3:4 +Gr. +from yesterday and the third day. A frequent Hebraism. + before. + +And Joshua said to the people, Sanctify yourselves against to-morrow, for to-morrow the Lord will do wonders among you. + +And Joshua said to the priests, Take up the ark of the covenant of the Lord, and go before the people: and the priests took up the ark of the covenant of the Lord, and went before the people. + +And the Lord said to Joshua, This day do I begin to exalt you before all the children of Israel, that they may know that as I was with Moses, so will I also be with you. + +And now charge the priests that bear the ark of the covenant, saying, As soon as you⌃ shall enter on a part of the water of Jordan, then you⌃ shall stand in Jordan. + +And Joshua said to the children of Israel, +3:9 +Gr. +bring hither. +sc. +yourselves. + Come hither, and listen to the word of the Lord our God. + +Hereby you⌃ shall know that the living God +is among you, and will utterly destroy from before our face the Chananite, and the Chettite and Pherezite, and the Evite, and the Amorite, and the Gergesite, and the Jebusite. + +Behold, the ark of the covenant of the Lord of all the earth passes over Jordan. + +Choose for yourselves twelve men of the sons of Israel, one of each tribe. + +And it shall come to pass, when the feet of the priests that bear the ark of the covenant of the Lord of the whole earth rest in the water of Jordan, the water of Jordan +below shall fail, and the water coming down from above shall stop. + +And the people removed from their tents to cross over Jordan, and the priests bore the ark of the covenant of the Lord before the people. + +And when the priests that bore the ark of the covenant of the Lord entered upon Jordan, and the feet of the priests that bore the ark of the covenant of the Lord were dipped in part of the water of Jordan; (now Jordan +3:15 +Gr. +its whole channel. + overflowed all its banks +3:15 +Gr. +as on the days. + about the time of wheat harvest:) + +then the waters that came down from above stopped; there stood one solid heap very far off, as far as +3:16 +Gr. +a part. + the region of Kariathiarim, and +3:16 +Gr. +that which came down. + the lower part came down to the sea of Araba, the salt sea, till it completely failed; and the people stood opposite Jericho. + +And the priests that bore the ark of the covenant of the Lord stood on dry land in the midst of Jordan; and all the children of Israel went through on dry land, until all the people had completely gone over Jordan. + +

+ + +

And when the people had completely passed over Jordan, the Lord spoke to Joshua, saying, + +Take men from the people, one of each tribe, + +and charge them; and you⌃ shall take out of the midst of Jordan twelve +4:3 +Gr. +ready. +Heb. הכיך. +A.V. firm, +applied to the foot of the priests. + fit stones, and having carried them across together with yourselves, place them in your camp, where you⌃ shall encamp for the night. + +And Joshua having called twelve men +4:4 +Gr. +of the distinguished, or, illustrious. + of distinction among the children of Israel, one of each tribe, + +said to them, Advance before me in the presence of the Lord into the midst of Jordan, and each having taken up a stone from thence, let him carry it on his shoulders, according to the number of the twelve tribes of Israel: + +that these may be to you continually for an appointed sign, that when your son asks you +4:6 +Gr. +of the distinguished, or, illustrious. + in future, saying, What are these stones to us? + +then you may explain to your son, saying, The river Jordan was +4:7 +Gr. +failed. + dried up from before the ark of the covenant of the Lord of the whole earth, when it passed it: and these stones shall be for a memorial for you for the children of Israel for ever. + +And the children of Israel did so, as the Lord commanded Joshua; and they took up twelve stones out of the midst of Jordan, (as the Lord commanded Joshua, when the children of Israel had completely passed over,) and carried these stones with them into the camp, and laid them down there. + +And Joshua set also other twelve stones in Jordan itself, in the place that was under the feet of the priests that bore the ark of the covenant of the Lord; and there they are to this day. + +And the priests that bore the ark of the covenant stood in Jordan, until Joshua +had finished all that the Lord commanded him to report to the people; and the people hasted and passed over. + +And it came to pass when all the people had passed over, that the ark of the covenant of the Lord passed over, and the stones before them. + +And the sons of Ruben, and the sons of Gad, and the half tribe of Manasse passed over +4:12 +Or, +equipped. + armed before the children of Israel, as Moses commanded them. + +Forty thousand +4:13 +Gr. +in good order. + armed for battle went over before the Lord to war, to the city of Jericho. + +In that day the Lord magnified Joshua before all the people of Israel; and they feared him, as +they did Moses, as long as he lived. + +And the Lord spoke to Joshua, saying, + +Charge the priests that bear the ark of the covenant of the testimony of the Lord, to go up out of Jordan. + +And Joshua charged the priests, saying, Go up out of Jordan. + +And it came to pass when the priests who bore the ark of the covenant of the Lord were gone up out of Jordan, and set their feet upon the land, +that the water of Jordan returned impetuously to its place, and went as before over all its banks. + +And the people went up out of Jordan on the tenth day of the first month; and the children of Israel encamped in Galgala in the region eastward from Jericho. + +And Joshua set these twelve stones which he took out of Jordan, in Galgala, + +saying, When your sons ask you, saying, What are these stones? + +Tell your sons, that Israel went over this Jordan on dry land, + +when the Lord our God had dried up the water of Jordan from before them, until they had passed over; as the Lord our God did to the Red Sea, which the Lord our God dried up from before us, until we passed over. + +That all the nations of the earth might know, that the power of the Lord is mighty, and that you⌃ might worship the Lord our God in every work. + +

+ + +

And it came to pass when the kings of the Amorites who were beyond Jordan heard, and the kings of Phoenicia by the sea, that the Lord God had dried up the river Jordan from before the children of Israel when they passed over, that their hearts failed, and +5:1 +Gr. +their minds or thoughts melted. + they were terror-stricken, and there was no sense in them +5:1 +Gr. +from the face of. + because of the children of Israel. + +And about this time the Lord said to Joshua, Make you stone knives of sharp stone, and sit down and circumcise the children of Israel the second time. + +And Joshua made sharp knives of stone, and circumcised the children of Israel at the place called the “Hill of Foreskins.” + +And +this is the way in which Joshua purified the children of Israel; as many as were born in the way, and as many as were uncircumcised of them that came out of Egypt, + +all these Joshua circumcised; for forty and two years Israel wondered in the wilderness of Mabdaris— + +Therefore most of the fighting men that came out of the land of Egypt, were uncircumcised, who disobeyed the commands of God; concerning whom also he determined that they should not see the land, which the Lord swore to give to their fathers, +even a land flowing with milk and honey. + +And in their place he raised up their sons, whom Joshua circumcised, because they were uncircumcised, having been born by the way. + +And when they had been circumcised they rested +5:8 +Gr. +sitting. A frequent Hebraism. + continuing there in the camp till they were healed. + +And the Lord said to Joshua the son of Naue, On this day have I removed the reproach of Egypt from you: and he called the name of that place Galgala. + +And the children of Israel kept the passover on the fourteenth day of the month at evening, to the westward of Jericho on the opposite side of the Jordan in the plain. + +And they ate of the grain of the earth unleavened and new +corn. + +In this day the manna failed, after they had eaten of the corn of the land, and the children of Israel no longer had manna: and they took the fruits of the land of the Phoenicians in that year. + +And it came to pass when Joshua was in Jericho, that he looked up with his eyes and saw a man standing before him, and +there was a drawn sword in his hand; and Joshua drew near and said to him, Are you for us or on the side of our enemies? + +And he said to him, I am now come, the chief captain of the host of the Lord. + +And Joshua fell on his face upon the earth, and said to him, Lord, what command you your servant? + +And the captain of the Lord's host said to Joshua, Loose your shoe off your feet, for the place whereon you now stand is holy. + +

+ + +

Now Jericho was closely shut up and besieged, and none went out of it, and none came in. + +And the Lord said to Joshua, Behold, I deliver Jericho into your power, and its king in it, +6:2 +Gr. +mighty in strength. + +and its mighty men. + +And do you set the men of war round about it. + +And it shall be +that when you⌃ shall sound with the trumpet, +6:4 +Gr. +let all the people, etc. + all the people shall shout together. + +And when they have shouted, the walls of the city shall fall +6:5 +Or, +of their own accord. + of themselves; and all the people shall enter, each one rushing direct into the city. + +And Joshua the +son of Naue went in to the priests, and spoke to them, saying, + +And let seven priests having seven +6:7 +Heb. שופרוה היוכליס +A.V. +'ram's horns.' Only in this place. + sacred trumpets proceed thus before the Lord, and let them sound loudly; and let the ark of the covenant of the Lord follow. + +Charge the people to go round, and encompass the city; and let your men of war pass on armed before the Lord. + +And let the men of war proceed before, and the priests bringing up the rear behind the ark of the covenant of the Lord +proceed sounding the trumpets. + +And Joshua commanded the people, saying, Cry not out, nor let any one hear your voice, until he himself declare to you the +6:10 +Gr. +day. + time to cry out, and then you⌃ shall cry out. + +And the ark of the covenant of God having gone round immediately returned into the camp, and lodged there. + +And on the second day Joshua rose up in the morning, and the priests took up the ark of the covenant of the Lord. + +And the seven priests bearing the seven trumpets went on before the Lord; and afterwards the men of war went on, and the remainder of the multitude went after the ark of the covenant of the Lord, and the priests sounded with the trumpets. + +And all the rest of the multitude compassed the city six times from within a short distance, and went back again into the camp; this they did six days. + +And on the seventh day they rose up early, and compassed the city on that day seven times. + +And it came to pass at the seventh circuit the priests blew the trumpets; and Joshua said to the children of Israel, Shout, for the Lord has given you the city. + +And the city shall be +6:17 +Or, +an accursed thing. + devoted, it and all things that are in it, to the Lord of Hosts: only do you⌃ save Raab the harlot, and all things in her house. + +But keep yourselves strictly from the accursed thing, lest you⌃ set your mind upon and take of the accursed thing, and you⌃ make the camp of the children of Israel an accursed thing, and destroy us. + +And all the silver, or gold, or brass, or iron, shall be holy to the Lord; it shall be carried into the treasury of the Lord. + +And the priests sounded with the trumpets: and when the people heard the trumpets, all the people shouted at once with a loud and strong shout; and all the wall fell round about, and all the people went up into the city: + +and Joshua devoted it to destruction, and all things that were in the city, man and woman, young man and old, and calf and ass, with the +6:21 +Gr. +mouth. + edge of the sword. + +And Joshua said to the two young men who had acted a spies, Go into the house of the woman, and bring her out thence, and all that she has. + +And the two young men who had spied out the city entered into the house of the woman, and brought out Raab the harlot, and her father, and her mother, and her brethren, and her kindred, and all that she had; and they set her without the camp of Israel. + +And the city was burnt with fire with all things that were in it; only of the silver, and gold, and brass, and iron, they gave to be brought into the treasury of the Lord. + +And Joshua saved alive Raab the harlot, and all the house of her father, and caused her to dwell in Israel until this day, because she hid the spies which Joshua sent to spy out Jericho. + +And Joshua adjured +them on that day before the Lord, saying, Cursed +be the man who shall build that city: he shall lay the foundation of it in his firstborn, and he shall set up the gates of it in his youngest son. And so did Hozan of Baethel; he laid the foundation in Abiron his firstborn, and set up the gates of it in his youngest +6:26 +Gr. +saved. + surviving son. + +And the Lord was with Joshua, and his name was in all the land. + +

+ + +

But the children of Israel committed a great trespass, and purloined +part of the accursed thing; and Achar the son of Charmi, the son of Zambri, the son of Zara, of the tribe of Juda, took of the accursed thing; and the Lord was very angry with the children of Israel. + +And Joshua sent men to Gai, which is by Baethel, saying, Spy out Gai: and the men went up and spied Gai. + +And they returned to Joshua, and said to him, Let not all the people go up, but let about two or three thousand men go up and take the city by siege: carry not up there the whole people, for +the enemy are few. + +And there went up about three thousand men, and they fled from before the men of Gai. + +And the men of Gai killed of them to the number of thirty-six men, and they pursued them from the gate, and destroyed them from the steep hill; and the heart of the people was alarmed and became as water. + +And Joshua tore his garments; and Joshua fell on the earth on his face before the Lord until evening, he and the elders of Israel; and they cast dust on their heads. + +And Joshua said, I pray, Lord, therefore has your servant brought this people over Jordan to deliver them to the Amorite to destroy us? +7:7 +Gr. +and if we had. + would we had remained and settled ourselves beyond Jordan. + +And what shall I say since Israel has turned his +7:8 +Gr. +neck. +Heb. שף the back of the neck. + back before his enemy? + +And when the Chananite and all the inhabitants of the land hear it, they shall compass us round and destroy us from off the land: and what will you do +for your great name? + +And the Lord said to Joshua, Rise up; why have you fallen upon your face? + +The people has sinned, and transgressed the covenant which I made with them; they have stolen from the cursed thing, and put it into their store. + +And the children of Israel will not be able to stand before their enemies; they will turn their back before their enemies, for they have become an accursed thing: I will not any longer be with you, unless you⌃ remove the cursed thing from yourselves. + +Rise, sanctify the people and tell them to sanctify themselves for the morrow: thus says the Lord God of Israel, The accursed thing is among you; you⌃ shall not be able to stand before your enemies, until you⌃ shall have removed the cursed thing from among you. + +And you⌃ shall all be gathered together by your tribes in the morning, and it shall come to pass that the tribe which the Lord shall show, you⌃ shall bring by families; and the family which the Lord shall show, you⌃ shall bring by households; and the household which the Lord shall show, you⌃ shall bring man by man. + +And the man who shall be pointed out, shall be burnt with fire, and all that he has; because he has transgressed the covenant of the Lord, and has wrought wickedness in Israel. + +And Joshua rose up early, and brought the people by their tribes; and the tribe of Juda was pointed out. + +And it was brought by their families, and family of the Zaraites was pointed out. + +And it was brought man by man, and Achar the son of Zambri the son of Zara was pointed out. + +And Joshua said to Achar, Give glory this day to the Lord God of Israel, and make confession; and tell me what you have done, and hide it not from me. + +And Achar answered Joshua, and said, Indeed I have sinned against the Lord God of Israel: thus and thus have I done: + +I saw in the spoil an embroidered mantle, and two hundred didrachmas of silver, and one golden wedge of fifty didrachmas, and I desired them and took them; and, behold, they are hid in my tent, and the silver is hid under them. + +And Joshua sent messengers, and they ran to the tent into the camp; and these things were hidden in his tent, and the silver under them. + +And they brought them out of the tent, and brought them to Joshua and the elders of Israel, and they laid them before the Lord. + +And Joshua took Achar the son of Zara, and brought him to the valley of Achor, and his sons, and his daughters, and his calves, and his asses, and all his sheep, and his tent, and all his property, and all the people +were with him; and he brought them to +7:24 +Heb. צמק צכור valley of trouble. + Emec Achor. + +And Joshua said to Achar, Why have you destroyed us? the Lord destroy you +7:25 +Gr. +as also today. + as at this day. And all Israel stoned him with stones. + +And they set up over him a great heap of stones; and the Lord ceased from his fierce anger. Therefore he called +7:26 +Gr. +it. + the place Emecachor until this day. + +

+ + +

And the Lord said to Joshua, Fear not, nor be timorous: take with you all the men of war, and arise, go up to Gai; behold, I have given into your hands the king of Gai, and his land. + +And you shall do to Gai, as you did to Jericho and its king; and you shall take to yourself the spoil of its cattle; set now for yourself an ambush for the city behind. + +And Joshua and all the men of war rose to go up to Gai; and Joshua chose out thirty thousand mighty men, and he sent them away by night. + +And he charged them, saying, Do you⌃ lie in ambush behind the city: do not go far from the city, and you⌃ shall all be ready. + +And I and all with me will draw near to the city: and it shall come to pass when the inhabitants of Gai shall come forth to meet us, as before, that we will flee from before them. + +And when they shall come out after us, we will draw them away from the city; and they will say, These men flee from before us, as also before. + +And you⌃ shall rise up out of the ambuscade, and go into the city. + +You⌃ shall do according to this word, behold! I have commanded you. + +And Joshua sent them, and they went to lie in ambush; and they lay between Baethel and Gai, westward of Gai. + +And Joshua rose up early in the morning, and +8:10 +Gr. +reviewed. + numbered the people; and he went up, he and the elders before the people to Gai. + +And all the men of war went up with him, and they went forward and came over against the city eastward. + +And the ambuscade +was on the west side of the city. + +And it came to pass when the king of Gai saw +it, he hasted and went out to meet them direct to the battle, he and all the people +that were with him: and he knew not that there was an ambuscade +formed against him behind the city. + +And Joshua and Israel saw, and retreated from before them. + +And they pursued after the children of Israel, and they themselves went to a distance from the city. + +There was no one left in Gai who did not pursue after Israel; and they left the city open, and pursued after Israel. + +And the Lord said to Joshua, Stretch forth your hand with the spear that is in your hand toward the city, for I have delivered it into your hands; and the liers in wait shall rise up quickly out of their place. + +And Joshua stretched out his hand +and his spear toward the city, and the ambuscade rose up quickly out of their place; and they came forth when he stretched out his hand; and they entered into the city, and took it; and they hasted and +8:19 +Or, +set it on fire. + burnt the city with fire. + +And when the inhabitants of Gai looked round behind them, then they saw the smoke going up out of the city to heaven, and they were no longer able to flee this way or that way. + +And Joshua and all Israel saw that the ambuscade +8:21 +Gr. +took. + had taken the city, and that the smoke of the city went up to heaven; and they turned and struck the men of Gai. + +And these came forth out of the city to meet them; and they were in the midst of the army, some +being on this side, and some on that; and they struck them until there was not left of them one who survived and escaped. + +And they took the king of Gai alive, and brought him to Joshua. + +And when the children of Israel had ceased slaying all that were in Gai, and in the fields, and in the mountain on the descent, from whence they pursued them +even to the end, then Joshua returned to Gai, and struck it with the edge of the sword. + +And they that fell in that day, men and women, were twelve thousand: +they killed all the inhabitants of Gai. + +Beside the spoils that were in the city, all things which the children of Israel took as spoil for themselves according to the command of the Lord, as the Lord commanded Joshua. + +And Joshua burnt the city with fire: he made it an uninhabited heap for ever, +even to this day. + +And he hanged the king of Gai on a +8:29 +Gr. +double tree. + gallows; and he remained on the tree till evening: and when the sun went down, Joshua gave charge, and they took down his body from the tree, and cast it into +8:29 +Gr. +the pit or trench. For vv. 30-35, see chap. 8:2. + a pit, and they set over him a heap of stones until this day. + +Then Joshua built an altar to the Lord God of Israel in mount Gaebal, + +as Moses the servant of the Lord commanded the children of Israel, as it is written in the law of Moses, an altar of unhewn stones, on which iron +8:31 +Gr. +was not lifted up. + had not been lifted up; and he offered there whole burnt offerings to the Lord, and a peace-offering. + +And Joshua wrote upon the stones +8:32 +Or, +a Deuteronomy. + a copy of the law, even the law of Moses, before the children of Israel. + +And all Israel, and their elders, and their judges, and their scribes, passed on one side and on the other before the ark; and the priests and the Levites took up the ark of the covenant of the Lord; and the stranger and the native were there, who were half of them near mount Garizin, and half near mount Gaebal, as Moses the servant of the Lord commanded at first, to bless the people. + +And afterwards Joshua read accordingly all the words of this law, the blessings and the curses, according to all things written in the law of Moses. + +There was not a word of all that Moses charged Joshua, which Joshua read not in the ears of all the assembly of the children of Israel, the men, and the women, and the children, and the strangers that joined themselves to Israel. + +

+ + +

+9:1 +Note: +Brenton does not have vv 1-2 in his text + And when the kings of the Amorites on the other side of Jordan, who were in the mountain country, and in the plain, and in all the coast of the great sea, and those who were near Antilibanus, and the Chettites, and the Chananites, and the Pherezites, and the Evites, and the Amorites, and the Gergesites, and the Jebusites, heard +of it, + + +9:2 +Note: +Brenton does not have vv 1-2 in his text + they came all together at the same time to make war against Joshua and Israel. + +And the inhabitants of Gabaon heard of all that the Lord did to Jericho and Gai. + +And they also wrought craftily, and they went and made provision and prepared themselves; and having taken old sacks on their shoulders, and old and torn and patched bottles of wine, + +and the upper part of their shoes and their sandals old and clouted on their feet, and their garments old upon them—and the bread of their provision was dry and mouldy and +9:5 +Gr. +eaten, +sc. +of worms and maggots. + corrupt. + +And they came to Joshua into the camp of Israel to Galgala, and said to Joshua and Israel, We are come from a far land: now then make a covenant with us. + +And the children of Israel said to the Chorrhaean, Peradventure you dwell among us; and how should I make a covenant with you? + +And they said to Joshua, We are your servants: and Joshua said to them, Whence are you⌃, and whence have you⌃ come? + +And they said, Your servants are come from a very far country in the name of the Lord your God: for we have heard his name, and all that he did in Egypt, + +and all that he did to the kings of the Amorites, who were beyond Jordan, to Seon king of the Amorites, and Og king of Basan, who lived in Astaroth and in Edrain. + +And our elders and all that inhabit our land when they heard spoke to us, saying, Take to yourselves provision for the way, and go to meet them; and you⌃ shall say to them, We are your servants, and now make a covenant with us. + +These +are the loaves—we took them hot for our journey on the day on which we came out to come to you; and now they are dried and become mouldy. + +And these +are the skins of wine which we filled when new, and they are torn; and our garments and our shoes are worn out because of the very long journey. + +And the chiefs took of their provision, and asked not +counsel of the Lord. + +And Joshua made peace with them, and they made a covenant with them to preserve them; and the princes of the congregation swore to them. + +And it came to pass +9:16 +Gr. +after three days after, etc. + three days after they had made a covenant with them, they heard that they were near neighbors, and that they +9:16 +Gr. +dwell. + lived among them. + +And the children of Israel departed and came to their cities; and their cities +were Gabaon, and Kephira, and Berot, and the cities of Jarin. + +And the children of Israel fought not with them, because all the princes swore to them by the Lord God of Israel; and all the congregation murmured at the princes. + +And the princes said to all the congregation: We have sworn to them by the Lord God of Israel, and now we shall not be able to touch them. + +This we will do; take them alive, and we will preserve them: so there shall not be wrath against us by reason of the oath which we swore to them. + +They shall live, and shall be hewers of wood and drawers of water to all the congregation, as the princes said to them. + +And Joshua called them together and said to them, Why have you⌃ deceived me, saying, We live very far from you; whereas you⌃ are fellow-countrymen of those who dwell among us? + +And now you⌃ are cursed: there shall not fail of you a slave, or a hewer of wood, or a drawer of water to me and my God. + +And they answered Joshua, saying, It was reported to us what the Lord your God charged his servant Moses, to give you this land, and to destroy us and all that lived on it from before you; and we feared very much for our lives +9:24 +Gr. +from before you. + because of you, and +therefore we did this thing. + +And now, behold, we +are in your power; do to us as it is pleasing to you, and as it seems +good to you. + +And they did so to them; and Joshua rescued them in that day out of the hands of the children of Israel, and they did not kill them. + +And Joshua made them in that day hewers of wood and drawers of water to the whole congregation, and for the altar of God: therefore the inhabitants of Gabaon became hewers of wood and drawers of water for the altar of God until this day, even for the place which the Lord should choose. +9:27-29 +The following verses are additions to Brenton's text from the alexandrine codex. Verses after 33 appear only in the Hebrew text. + + + +Then Joshua built an altar to the Lord God of Israel in mount Gebal, + + + +as Moses the servant of the Lord commanded the children of Israel, as it was written in the law of Moses, an altar of unhewn stones, on which iron had not been lifted up: and he offered there whole burnt offerings to the Lord, and a piece offering. And Joshua wrote upon the stones a copy of the law, even the law of Moses, before the children of Israel. + + + +And all Israel, and their elders, and their judges, and their scribes, passed on one side and on the other, before the ark; and the priests and the levites took up the ark of the covenant of the Lord; and the stranger and the native were there, who were half of them near mount Gebal, as Moses the servant of the Lord commanded at first, to bless the people. + + +

+ + +

And when Adoni-bezec king of Jerusalem heard that Joshua had taken Gai, and had destroyed it, as he did to Jericho and its king, even so they did to Gai and its king, and that the inhabitants of Gabaon had gone over to Joshua and Israel; + +then they were greatly terrified by them, for +the king knew that Gabaon +was a great city, as one of the +10:2 +Gr. +mother-cities. + chief cities, and all its men +were mighty. + +So Adoni-bezec king of Jerusalem sent to Elam king of Hebron, and to Phidon king of Jerimuth, and to Jephtha king of Lachis, and to Dabin king of Odollam, saying, + +Come up hither to me, and help me, and let us take Gabaon; for the +10:4 +Gr. +they. + Gabaonites have gone over to Joshua and to the children of Israel. + +And the five kings of the Jebusites went up, the king of Jerusalem, and the king of Chebron, and the king of Jerimuth, and the king of Lachis, and the king of Odollam, they and all their people; and encamped around Gabaon, and besieged it. + +And the inhabitants of Gabaon sent to Joshua into the camp to Galgala, saying, Slack not your hands from your servants: come up quickly to us, and help us, and rescue us; for all the kings of the Amorites who dwell in the hill country are gathered together against us. + +And Joshua went up from Galgala, he and all the people of war with him, every one mighty in strength. + +And the Lord said to Joshua, Fear them not, for I have delivered them into your hands; there shall not one of them be left before you. + +And when Joshua came suddenly upon them, he +had advanced all the night out of Galgala. + +And the Lord struck them with terror before the children of Israel; and the Lord destroyed them with a great slaughter at Gabaon; and they pursued them by the way of the going up of Oronin, and they struck them to Azeca and to Makeda. + +And when they fled from the face of the children of Israel at the descent of Oronin, then the Lord cast upon them hailstones from heaven to Azeca; and they were more that died by the hailstones, than those whom the children of Israel killed with the sword in the battle. + +Then Joshua spoke to the Lord, in the day in which the Lord delivered the Amorite into the power of Israel, when he destroyed them in Gabaon, and they were destroyed from before the children of Israel: and Joshua said, Let the sun stand over against Gabaon, and the moon over against the valley of Aelon. + +And the sun and the moon stood still, until God executed vengeance on their enemies; and the sun stood still in the midst of heaven; it did not proceed to set till the end of +10:13 +i.e. +additional day without a night between. + one day. + +And there was not such a day either before or after, so that God should listen to a man, because the Lord fought on the side of Israel. + +And these five kings fled, and hid themselves in a cave that is in Makeda. + +And it was told Joshua, saying, The five kings have been found hid in the cave that is in Makeda. + +And Joshua said, Roll stones to the mouth of the cave, and set men to watch over them. + +But do not you⌃ stand, but pursue after your enemies, and +10:19 +Gr. +fasten upon or seize. + attack the rear of them, and do not suffer them to enter into their cities; for the Lord our God has delivered them into our hands. + +And it came to pass when Joshua and all Israel ceased destroying them utterly with a very great slaughter, that they that escaped took refuge in the strong cities. + +And all the people returned +10:21 +Gr. +sound, or healthy. + safe to Joshua to Makeda; and no one of the children of Israel murmured with his tongue. + +And Joshua said, Open the cave, and bring out these five kings out of the cave. + +And they brought out the five kings out of the cave, the king of Jerusalem, and the king of Chebron, and the king of Jerimuth, and the king of Lachis, and the king of Odollam. + +And when they brought them out to Joshua, then Joshua called together all Israel, and the chiefs +10:24 +Gr. +of the war. + of the army that went with him, saying to them, Come forward and set your feet on their necks; and they came and set their feet on their necks. + +And Joshua said to them, Do not fear them, neither be cowardly; be courageous and strong, for thus the Lord will do to all your enemies, against whom you⌃ fight. + +And Joshua killed them, and hanged them on five trees; and they hung upon the trees until the evening. + +And it came to pass toward the setting of the sun, Joshua commanded, and they took them down from the trees, and cast them into the cave into which they +had fled for refuge, and rolled stones to the cave, +which remain till this day. + +And they took Makeda on that day, and killed +10:28 +Gr. +it. + the inhabitants with the +10:28 +Gr. +mouth. + edge of the sword, and they utterly destroyed every living thing that was in it; and there was none left in it that was preserved and had escaped; and they did to the king of Makeda, as they did to the king of Jericho. + +And Joshua and all Israel with him departed out of Makeda to Lebna, and besieged Lebna. + +And the Lord delivered it into the hands of Israel: and they took it, and its king, and killed the inhabitants with the edge of the sword, and every thing breathing in it; and there was not left in it any that survived and escaped; and they did to its king, as they did to the king of Jericho. + +And Joshua and all Israel with him departed from Lebna to Lachis, and he encamped about it, and besieged it. + +And the Lord delivered Lachis into the hands of Israel; and +10:32 +Gr. +he, +i.e. +Israel. + they took it on the second day, and they put the inhabitants to death with the edge of the sword, and utterly destroyed it, as they had done to Lebna. + +Then Elam the king of Gazer went up to help Lachis; and Joshua struck him and his people with the edge of the sword, until there was not left to him one that was preserved and escaped. + +And Joshua and all Israel with him departed from Lachis to Odollam, and he besieged it and +10:34 +Or, +vigourously attacked it. + took it. + +And the Lord delivered it into the hand of Israel; and he took it on that day, and killed the inhabitants with the edge of the sword, and killed every thing breathing in it, as they did to Lachis. + +And Joshua and all Israel with him departed to Chebron, and encamped about it. + +And he struck it with the edge of the sword, and all the living creatures that were in it; there was no one preserved: they destroyed it and all things in it, as they did to Odollam. + +And Joshua and all Israel returned to Dabir; and they encamped about it; + +and they took it, and its king, and its villages: and he struck it with the edge of the sword, and they destroyed it, and every thing breathing in it; and they did not leave in it any one that was preserved: as they did to Chebron and her king, so they did to Dabir and her king. + +And Joshua struck all the land of the hill country, and +10:40 +Heb. +south. + Nageb and the plain country, and Asedoth, and her kings, they did not leave of them one that was saved: and they utterly destroyed every thing that had the breath of life, as the Lord God of Israel commanded, + +from Cades Barne to Gaza, all Gosom, as far as Gabaon. + +And Joshua struck, once for all, all their kings, and their land, because the Lord God of Israel fought on the side of Israel. + +

+ + +

And when Jabis the king of Asor heard, he sent to Jobab king of Maron, and to the king of Symoon, and to the king of Aziph, + +and to the kings who were by the great Sidon, to the hill country and to Araba opposite Keneroth, and to the plain, and to Phenaeddor, + +and to the Chananites on the coast eastward, and to the Amorites on the coast, and the Chettites, and the Pherezites, and the Jebusites in the mountain, and the Evites, and those dwelling under +mount Aermon in the land Massyma. + +And they and their kings with them went forth, as the sand of the sea in multitude, and horses, and very many chariots. + +And all the kings assembled in person, and came to the same place, and encamped at the waters of Maron to war with Israel. + +And the Lord said to Joshua, Be not afraid of them, for to-morrow +at this time I will put them to flight before Israel: you shall hough their horses, and burn their chariots with fire + +And Joshua and all the men of war came upon them +11:7 +Gr. +to. + at the water of Maron suddenly; and they attacked them in the hill country. + +And the Lord delivered them into the power of Israel; and they struck them and pursued them to great Sidon, and to Maseron, and to the plains of Massoch eastward; and they destroyed them till there was not one of them left that survived. + +And Joshua did to them, as the Lord commanded him: he houghed their horses, and burned their chariots with fire. + +And Joshua returned at that time, and took Asor and her king; now Asor in former time was the chief of these kingdoms. + +And they killed with the sword all that breathed in it, and utterly destroyed them all, and there was no living thing left in it; and they burnt Asor with fire. + +And Joshua took all the cities of the kingdoms, and their kings, and killed them with the edge of the sword; and utterly killed them, as Moses the servant of the Lord commanded. + +But all the walled cities Israel burnt not; but Israel burnt Asor only. + +And the children of Israel took all its spoils to themselves; and they killed all the men with the edge of the sword, until he destroyed them; they left not one of them breathing. + +As the Lord commanded his servant Moses, even so Moses commanded Joshua; and so Joshua did, he transgressed no precept of all that Moses commanded him. + +And Joshua took all the hill country, and all the land of Nageb, and all the land of Gosom, and the plain country, and that toward the west, and the mountain of Israel and the low country by the mountain; + +from the mountain of Chelcha, and that which goes up to Seir, and as far as Balagad, and the plains of Libanus, under mount Aermon; and he took all their kings, and destroyed, and killed them. + +And for many days Joshua waged war with these kings. + +And there was no city which Israel took not; they took all in war. + +For it was of the Lord to +11:20 +Gr. +strengthen. + harden their hearts to go forth to war against Israel, that they might be utterly destroyed, that mercy should not be granted to them, but that they should be utterly destroyed, as the Lord said to Moses. + +And Joshua came at that time, and utterly destroyed the Enakim out of the hill country, from Chebron and from Dabir, and from Anaboth, and from all the +11:21 +Heb. ישראל הר probably הר for רור a mountain, not a generation. + race of Israel, and from all the mountain of Juda with their cities; and Joshua utterly destroyed them. + +There was not +any one left of the Enakim by the children of Israel, only there was left of them in Gaza, and in Gath, and in Aseldo. + +And Joshua took all the land, as the Lord commanded Moses; and Joshua gave them for an inheritance to Israel by division according to their tribes; and the land ceased from war. + +

+ + +

And these +are the kings of the land, whom the children of Israel killed, and inherited their land beyond Jordan from the east, from the valley of Arnon to the mount of Aermon, and all the land of Araba on the east. + +Seon king of the Amorites, who lived in Esebon, ruling from Arnon, which is in the valley, +12:2 +another reading is ἐπὶ τοῦ χείλους, on the slope +or, +edge. + on the side of the valley, and half of Galaad as far as Jaboc, the borders of the children of Ammon. + +And Araba as far as the sea of Chenereth eastward, and as far as the sea of Araba; the salt sea eastward +by the way to Asimoth, from Thaeman under Asedoth Phasga. + +And Og king of Basan, who lived in Astaroth and in Edrain, was left of the giants + +ruling from mount Aermon and from Secchai, and +over all the land of Basan to the borders of Gergesi, and Machi, and the half of Galaad of the borders of Seon king of Esebon. + +Moses the servant of the Lord and the children of Israel struck them; and Moses gave them by way of inheritance to Ruben, and Gad, and to the half tribe of Manasse. + +And these +are the kings of the Amorites, whom Joshua and the children of Israel killed beyond Jordan by the sea of Balagad in the plain of Libanus, and as far as the mountain of Chelcha, as men go up to Seir: and Joshua gave it to the tribes of Israel to inherit according to their portion; + +in the mountain, and in the plain, and in Araba, and in Asedoth, and in the wilderness, and Nageb; the Chettite, and the Amorite, and the Chananite, and the Pherezite, and the Evite, and the Jebusite. + +The king of Jericho, and the king of Gai, which is near Baethel; + +the king of Jerusalem, the king of Chebron, + +the king of Jerimuth, the king of Lachis; + +the king of Aelam, the king of Gazer; + +the king of Dabir, the king of Gader: + +the king of Hermath, the king of Ader; + +the king of Lebna, the king of Odollam, + +the king of Elath, + +the king of Taphut, the king of Opher, + +the king of Ophec of Aroc, + +the king of Asom, + +the king of Symoon, the king of Mambroth, the king of Aziph, + +the king of Cades, the king of Zachac, + +the king of Maredoth, the king of Jecom of Chermel, + +the king of +12:23 +Heb. Dor, in the coast of Dor. + Odollam +belonging to Phennealdor, the king of Gei of Galilee: + +the king of Thersa: all these +were twenty-nine kings. + +

+ + +

And Joshua +was old and very advanced in years; and the Lord said to Joshua, You are advanced in +13:1 +Gr. +days. + years, and there is much land left to inherit. + +And this +is the land that is left: the borders of the Phylistines, the Gesirite, and the Chananite, + +from the +13:3 +Gr. +uninhabited country. + wilderness before Egypt, as far as the borders of Accaron on the left of the Chananites +the land is reckoned to the five principalities of the Phylistines, to the inhabitant of Gaza, and of Azotus, and of Ascalon, and of Geth, and of Accaron, and to the Evite; + +from Thaeman even to all the land of Chanaan before Gaza, and the Sidonians as far as Aphec, as far as the borders of the Amorites. + +And all the land of Galiath of the Phylistines, and all Libanus eastward from Galgal, under the mountain Aermon as far as the entering in of Emath; + +every one that inhabits the hill country from Libanus as far as Masereth Memphomaim. All the Sidonians, I will destroy them from before Israel; but do you give them by inheritance to Israel, as I charged you. + +And now divide this land by lot to the nine tribes, and to the half tribe of Manasse. + +From Jordan to the great sea westward you shall give it +them: the great sea shall be the boundary. +But to the two tribes and to the half tribe of Manasse, to Ruben and to Gad Moses gave +an inheritance beyond Jordan: Moses the servant of the Lord gave +it to +13:8 +Gr. +him. + them eastward, + +from Aroer, which is on the bank of the brook of Arnon, and the city in the midst of the valley, and all Misor from Maedaban. + +All the cities of Seon king of the Amorites, who reigned from Esebon to the coasts of the children of Ammon; + +and the region of Galaad, and the borders of the Gesirites and the Machatites, the whole mount of Aermon, and all the land of Basan to Acha. + +All the kingdom of Og in the region of Basan, who reigned in Astaroth and in Edrain: he was left of the giants; and Moses struck him, and destroyed him. + +But the children of Israel destroyed not the Gesirite and the Machatite and the Chananite; and the king of the Gesiri and the Machatite lived among the children of Israel until this day. + +Only no inheritance was given to the tribe of Levi: the Lord God of Israel, he +is their inheritance, as the Lord said to them; and this +is the division which Moses made to the children of Israel in Araboth Moab, on the other side of Jordan, by Jericho. + +And Moses gave the land to the tribe of Ruben according to their families. + +And their borders were from Aroer, which is opposite the brook of Arnon, and +theirs is the city that is in the valley of Arnon; and all Misor, + +to Esebon, and all the cities in Misor, and Daebon, and Baemon-Baal, and the house of Meelboth; + +and Basan, and Bakedmoth, and Maephaad, + +and Kariathaim, and Sebama, and Serada, and Sion in mount Enab; + +and Baethphogor, and Asedoth Phasga, and Baetthasinoth, + +and all the cities of Misor, and all the kingdom of Seon king of the Amorites, whom Moses struck, even him and the princes of Madian, and Evi, and Roboc, and Sur, and Ur, and Robe prince of the spoils of Sion, and the inhabitants of Sion. + +And Balaam the son of Baeor the prophet they killed in the battle. + +And the borders of Ruben were—even Jordan +was the boundary; this +is the inheritance of the children of Ruben according to their families, +these were their cities and their villages. + +And Moses gave inheritance to the sons of Gad according to their families. + +And their borders were Jazer, all the cities of Galaad, and half the land of the children of Ammon to Araba, which is before Arad. + +And from Esebon to Araboth by Massepha, and Botanim, and Maan to the borders of Daebon, + +and Enadom, and Othargai, and Baenthanabra, and Soccotha, and Saphan, and the rest of the kingdom of Sean king of Esebon: and Jordan shall be the boundary as far as part of the sea of Chenereth beyond Jordan eastward. + +This +is the inheritance of the children of Gad according to their families and according to their cities: according to their families they will turn their +13:28 +Gr. +necks. See note on chap. 7:12. + backs before their enemies, because their cities and their villages were according to their families. + +And Moses gave to half the tribe of Manasse according to their families. + +And their borders were from Maan, and all the kingdom of Basan, and all the kingdom of Og king of Basan, and all the villages of Jair, which are in the region of Basan, sixty cities: + +and the half of Galaad, and in Astaroth, and in Edrain, royal cities of Og in the land of Basan, +Moses gave to the sons of Machir the sons of Manasse, even to the half-tribe sons of Machir the sons of Manasse, according to their families. + +These +are they whom Moses caused to inherit beyond Jordan in Araboth Moab, beyond Jordan by Jericho eastward. + +

+ + +

And these +are they of the children of Israel that received their inheritance in the land of Chanaan, to whom Eleazar the priest, and Joshua the +son of Naue, and the heads of the families of the tribes of the children of Israel, gave inheritance. + +They inherited according to their lots, as the Lord commanded by the hand of Joshua to the nine tribes and the half tribe, on the other side of Jordan. + +But to the Levites he gave no inheritance among them. + +For the sons of Joseph were two tribes, Manasse and Ephraim; and there was none inheritance in the land given to the Levites, only cities to dwell in, and their suburbs separated for the cattle, and their cattle. + +As the Lord commanded Moses, so did the children of Israel; and they divided the land. + +And the children of Juda came to Joshua in Galgal, and Chaleb the +son of Jephone the Kenezite said to him, You know the word that the Lord spoke to Moses the man of God concerning me and you in Cades Barne. + +For I was forty years old when Moses the servant of God sent me out of Cades Barne to spy out the land; and I returned him an answer according to his mind. + +My brethren that went up with me turned away the heart of the people, but I +14:8 +Or, +according to the Heb. idiom, 'fully followed.' + applied my self to follow the Lord my God. + +And Moses swore on that day, saying, The land on which you are gone up, it shall be your inheritance and your children's for ever, because you have applied yourself to follow the Lord our God. + +And now the Lord has kept me alive as he said: this +is the forty-fifth year since the Lord spoke that word to Moses; and Israel journeyed in the wilderness; and now, behold, I +am this day eighty-five years old. + +I am still strong this day, as when the Lord sent me: just so strong am I now to go out and to come in for war. + +And now I ask of you this mountain, as the Lord said in that day; for you heard this word on that day; and now the Enakim are there, cities great and strong: if then the Lord should be with me, I will utterly destroy them, as the Lord said to me. + +And Joshua blessed him, and gave Chebron to Chaleb the son of Jephone the son of Kenez for an inheritance. + +Therefore Chebron became the inheritance of Chaleb the +son of Jephone the Kenezite until this day, because he followed the commandment of the Lord God of Israel. + +And the name of Chebron before was the city Argob, it +is the +14:15 +Gr. +mother-cities. + metropolis of the Enakim: and the land rested from war. + +

+ + +

And the borders of the tribe of Juda according to their families were from the borders of Idumea from the wilderness of sin, as far as Cades southward. + +And their borders were from the south as far as a part of the salt sea from the +15:2 +Gr. +neck. +Heb. tongue. high country that extends southward. + +And they proceed before the ascent of Acrabin, and go out round Sena, and go up from the south to Cades Barne; and go out to Asoron, and proceed up to Sarada, and go out by the way that is west of Cades. + +And they go out to Selmona, and issue at the valley of Egypt; and the termination of its boundaries shall be at the sea: these are their boundaries southward. + +And their boundaries eastward +are all the salt sea as far as Jordan; and their borders from the north, and from the border of the sea, and from part of Jordan— + +the borders go up to Baethaglaam, and they go along from the north to Baetharaba, and the borders go on up to the stone of Baeon the son of Ruben. + +And the borders continue on to +15:7 +So the Greek. There seems to be a reading of the word רכרה as if part of רכצ. + the fourth part of the valley of Achor, and go down to Galgal, which is before the approach of Adammin, which is southward in the valley, and terminate at the water of the fountain of the sun; and their going forth shall be the fountain of Rogel. + +And the borders go up to the valley of Ennom, behind Jebus southward; this is Jerusalem: and the borders terminate at the top of the mountain, which is before the valley of Ennom toward the sea, which is by the side of the land of Raphain northward. + +And the border +going forth from the top of the mountain terminates at the fountain of the water of Naphtho, and terminates at mount Ephron; and the border will lead to Baal; this is the city of Jarim. + +And the border will go round from Baal to the sea, and will go on to the mount of Assar behind the city of Jarin northwards; this is Chaslon: and it will come down to the city of Sun, and will go on to the south. + +And the border terminates behind Accaron northward, and the borders will terminate at Socchoth, and the borders will go on to the south, and will terminate at Lebna, and the issue of the borders will be at the sea; and their borders +shall be toward the sea, the great sea shall be the boundary. + +These +are the borders of the children of Juda round about according to their families. + +And to Chaleb the son of Jephone he gave a portion in the midst of the children of Juda by the command of God; and Joshua gave him the city of Arboc the metropolis of Enac; this is Chebron. + +And Chaleb the son of Jephone destroyed thence the three sons of Enac, Susi, and Tholami, and Achima. + +And Chaleb went up thence to the inhabitants of Dabir; and the name of Dabir before was +15:15 +Heb. Kirjath-sepher. + the city of Letters. + +And Chaleb said, Whosoever shall take and destroy the city of Letters, and master it, to him will I give my daughter Ascha to wife. + +And Gothoniel the son of Chenez the brother of Chaleb took it; and he gave him Ascha his daughter to wife. + +And it came to pass as she went out that she counselled him, saying, I will ask of my father a field; and she cried from off her ass; and Chaleb said to her, +15:18 +What has you to say? +or + of what have you need? + What is it? + +And she said to him, Give me a blessing, for you have set me in the land of Nageb; give me Botthanis: and he gave her Gonaethla the upper, and Gonaethla the lower. + +This +is the inheritance of the tribe of the children of Juda. + +And their cities were cities belonging to the tribe of the children of Juda on the borders of Edom by the wilderness, and Baeseleel, and Ara, and Asor, + +and Icam, and Regma, and Aruel, + +and Cades, and Asorionain, and Maenam, + +and Balmaenan, and their villages, + +and the cities of Aseron, this +is Asor, + +and Sen, and Salmaa, and Molada, + +and Seri, and Baephalath, + +and Cholaseola, and Beersabee; and their villages, and their hamlets, + +Bala and Bacoc, and Asom, + +and Elboudad, and Baethel, and Herma, + +and Sekelac, and Macharim, and Sethennac, + +and Labos, and Sale, and Eromoth; twenty-nine cities, and their villages. + +In the plain country Astaol, and Raa, and Assa, + +and Ramen, and Tano, and Iluthoth, and Maeani, + +and Jermuth, and Odollam, and Membra, and Saocho, and Jazeca. + +And Sacarim and Gadera, and its villages; fourteen cities, and their villages; + +Senna, and Adasan, and Magadalgad, + +and Dalad, and Maspha, and Jachareel, + +and Basedoth, and Ideadalea; + +and Chabra, and Maches, and Maachos, + +and Geddor, and Bagadiel, and Noman, and Machedan: sixteen cities, and their villages; + +Lebna, and Ithac, and Anoch, + +and Jana, and Nasib, + +and Keilam, and Akiezi, and Kezib, and Bathesar, and Aelom: ten cities, and their villages; + +Accaron and her villages, and their hamlets: + +from Accaron, Gemna, and all the cities that are near Asedoth; and their villages. + +Asiedoth, and her villages, and her hamlets; Gaza, and its villages and its hamlets as far as the river of Egypt, and the great sea is the boundary. + +And in the hill country Samir, and Jether, and Socha, + +and Renna and the city of Letters, this +is Dabir; + +and Anon, and Es, and Man, and Aesam, + +and Gosom, and Chalu, and Channa, and Gelom: eleven cities, and their villages; + +Aerem, and Remna, and Soma, + +and Jemain, and Baethachu, and Phacua, + +and Euma, and the city Arboc, this is Chebron, and Soraith: nine cities and their villages: + +Maor, and Chermel, and Ozib, and Itan, + +and Jariel, and Aricam, and Zacanaim, + +and Gabaa, and Thamnatha; nine cities, and their villages; + +Aelua, and Bethsur, and Geddon, + +and Magaroth, and Baethanam, and Thecum; six cities, and their villages; Theco, and Ephratha, this is Baethleem, and Phagor, and Aetan, and Culon, and Tatam, and Thobes, and Carem, and Galem, and Thether, and Manocho: eleven cities, and their villages, + +Cariathbaal, this +is the city of Jarim, and Sotheba: two cities, and their villages: + +and Baddargeis, and Tharabaam, and Aenon; + +and Aeochioza, and Naphlazon, and the cities of Sadon, and Ancades; seven cities, and their villages. + +And the Jebusite lived in Jerusalem, and the children of Juda could not destroy them; and the Jebusites lived in Jerusalem to this day. + +

+ + +

And the borders of the children of Joseph were from Jordan by Jericho eastward; and they will go up from Jericho to the hill country, to the wilderness, to Baethel Luza. + +And they will go out to Baethel, and will proceed to the borders of Achatarothi. + +And they will go across to the sea to the borders of Aptalim, as far as the borders of Baethoron the lower, and the going forth of them shall be to the sea. + +And the sons of Joseph, Ephraim and Manasse, took their inheritance. + +And the borders of the children of Ephraim were according to their families, and the borders of their inheritance were eastward to Ataroth, and Eroc as far as Baethoron the upper, and Gazara. + +And the borders will proceed to the sea to Icasmon north of Therma; they will go round eastward to Thenasa, and Selles, and will pass on eastward to Janoca, + +and to Macho, and Ataroth, and +these are their villages; and they will come to Jericho, and will issue at Jordan. + +And the borders will proceed from +16:8 +Or, +Taphos, +or +Taphon, etc. + Tapho to the sea to Chelcana; and their termination will be at the sea; this +is the inheritance of the tribe of Ephraim according to their families. + +And the cities separated to the sons of Ephraim +were in the midst of the inheritance of the sons of Manasse, all the cities and their villages. + +And Ephraim did not destroy the Chananite who lived in Gazer; and the Chananite lived in Ephraim until this day, until Pharao the king of Egypt went up and took it, and burnt it with fire; and the Chananites, and Pherezites, and the dwellers in Gaza they destroyed, and Pharao gave them for a dowry to his daughter. + +

+ + +

And the borders of the tribe of the children of Manasse, (for he +was the firstborn +17:1 +Gr. +to. + of Joseph,) +assigned to Machir the firstborn of Manasse the father of Galaad, for he was a warrior, +were in the land of Galaad and of Basan. + +And there was +land assigned to the other sons of Manasse according to their families; to the sons of Jezi, and to the sons of Kelez, and to the sons of Jeziel, and to the sons of Sychem, and to the sons of Symarim, and to the sons of Opher: these +are the males according to their families. + +And Salpaad the sons of Opher had no sons but daughters: and these +are the names of the daughters of Salpaad; Maala, and Nua, and Egla, and Melcha, and Thersa. + +And they stood before Eleazar the priest, and before Joshua, and before the rulers, saying, God gave a charge by the hand of Moses, to give us an inheritance in the midst of our brethren: so there was given to them by the command of the Lord an inheritance among the brethren of their father. + +And their lot fell +to them from Anassa, and +to the plain of Labec of the land of Galaad, which is beyond Jordan. + +For the daughters of the sons of Manasse inherited a portion in the midst of their brethren, and the land of Galaad was assigned to the remainder of the sons of Manasse. + +And the borders of the sons of Manasse were Delanath, which is before the sons of Anath, and it proceeds to the borders +even to Jamin and Jassib to the fountain of Thaphthoth. + +It shall belong to Manasse, and Thapheth on the borders of Manasse +shall belong to the sons of Ephraim. + +And the borders shall go down to the valley of Carana southward by the valley of Jariel, (there is a turpentine tree +belonging to Ephraim between +that and the city of Manasse:) and the borders of Manasse +are northward to the brook; and the sea shall be its termination. + +Southward +the land belongs to Ephraim, and northward to Manasse; and the sea shall be their cost; and northward they shall border upon +17:10 +Alex. +Aser. + Aseb, and eastward upon Issachar. + +And Manasses shall have in +the portion of Issachar and Aser Baethsan and their villages, and the inhabitants of Dor, and its villages, and the inhabitants of Mageddo, and its villages, and the third part of Mapheta, and its villages. + +And the sons of Manasse were not able to destroy these cities; and the Chananite began to dwell in +17:12 +Gr. +this. + that land. + +And it came to pass that when the children of Israel were strong, they made the Chananites subject, but they did not utterly destroy them. + +And the sons of Joseph answered Joshua, saying, Therefore have you caused us to inherit one inheritance, and one line? whereas I am a great people, and God has blessed me. + +And Joshua said to them, If you be a great people, go up to the forest, and clear +the land for yourself, If mount Ephraim be too little for you. + +And they said, The mount of Ephraim does not please us, and the Chananite dwelling in it in Baethsan, and in its villages, +and in the valley of Jezrael, has choice cavalry and iron. + +And Joshua said to the sons of Joseph, If you are a great people, and have great strength, you shall not have +only one inheritance. + +For you shall have the wood, for there is a wood, and you shall clear it, and +the land shall be yours; even when you shall have utterly destroyed the Chananite, for he has chosen cavalry; yet you are stronger than he. + +

+ + +

And all the congregation of the children of Israel were assembled at Selo, and there they pitched the tabernacle of witness; and the land was subdued by them. + +And the sons of Israel remained, +even those who +had not received their inheritance, seven tribes. + +And Joshua said to the sons of Israel, How long will you⌃ be slack to inherit the land, which the Lord our God has given you? + + +18:4 +Gr. +give. + Appoint of yourselves three men of each tribe, and let them rise up and go through the land, and let them describe it before me, as it will be proper to divide it. + +And they +18:5 +Gr. +went through. + came to him: and he divided to them seven portions, +saying, Juda shall stand to them a border southward, and the sons of Joseph shall stand to them northward. + +And do you⌃ divide the land into seven parts, and bring the description hither to me, and I will +18:6 +Gr. +bring out. + give you a lot before the Lord our God. + +For the sons of Levi have no part among you; for the priesthood of the Lord +is his portion; and Gad, and Ruben, and the half tribe of Manasse, have received their inheritance beyond Jordan eastward, which Moses the servant of the Lord gave to them. + +And the men rose up and went; and Joshua charged the men who went to +18:8 +Or, +walk through. + explore the land, saying, Go and explore the land, and come to me, and I will bring you forth a lot here before the Lord in Selo. + +And they went, and explored the land: and they viewed it, and described it according to the cities, seven parts in a book, and brought +the book to Joshua. + +And Joshua cast the lot for them in Selo before the Lord. + +And the lot of the tribe of Benjamin came forth first according to their families: and the borders of their lot came forth between the children of Juda and the children of Joseph. + +And their borders were northward: the borders shall go up from Jordan behind Jericho northward, and shall go up to the mountain westward, and the issue of it shall be Baethon of Mabdara. + +And the borders will go forth thence to Luz, behind Luz, from the south of it; this is Baethel: and the borders shall go down to Maatarob Orech, to the hill country, which is southward of Baethoron the lower. + +And the borders shall pass through and proceed to the part that looks toward the sea, on the south, from the mountain in front of Baethoron southward, and its termination shall be at Cariath-Baal, this is Cariath-Jarin, a city of the children of Juda; this is the part toward the west. + +And the south side on the part of Cariath-Baal; and the borders shall go across to Gasin, to the fountain of the water of Naphtho. + +And the borders shall extend down on one side, this is in front of the forest of Sonnam, which is on the side of Emec Raphain northward, and it shall come down to Gaeenna behind Jebusai southward: it shall come down to the fountain of Rogel. + +And +the borders shall go across to the fountain of Baethsamys: + +and shall proceed to Galiloth, which is in front by the going up of Aethamin; and they shall come down to the stone of Baeon of the sons of Ruben; and shall pass over behind Baetharaba northward, and shall go down to the borders behind the sea northward. + +And the termination of the borders shall be at the creek of the salt sea northward to the side of Jordan southward: these are their southern borders. + +And Jordan shall be their boundary on the east: this +is the inheritance of the children of Benjamin, these +are their borders round about according to their families. + +And the cities of the children of Benjamin according to their families +were Jericho, and Bethagaeo, and the Amecasis, + +and Baethabara, and Sara, and Besana, + +and Aeein, and Phara, and Ephratha, + +and Carapha, and Cephira, and Moni, and Gabaa, twelve cities and their villages: + +Gabaon, and Rama, and Beerotha; + +and Massema, and Miron, and Amoke; + +and Phira, and Caphan, and Nacan, and Selecan, and Thareela, + +and Jebus (this is Jerusalem); and Gabaoth, Jarim, thirteen cities, and their villages; this +is the inheritance of the sons of Benjamin according to their families. + +

+ + +

And the second lot came out for the children of Symeon; and their inheritance was in the midst of the lots of the children of Juda. + +And their lot was Beersabee, and Samaa, and Caladam, + +and Arsola, and Bola, and Jason, + +and Erthula, and Bula, and Herma, + +and Sikelac, and Baethmachereb, and Sarsusin, + +and Batharoth, and their fields, thirteen cities, and their villages. + +Eremmon, and Thalcha, and Jether, and Asan; four cities and their villages, + +round about their cities as far as Balec as +men go to Bameth southward: this +is the inheritance of the tribe of the children of Symeon according to their families. + +The inheritance of the tribe of the children of Symeon +was a part of the lot of Juda, for the portion of the children of Juda was greater than theirs; and the children of Symeon inherited in the midst of their lot. + +And the third lot came out to Zabulon according to their families: the bounds of their inheritance shall be—Esedekgola shall be their border, + +the sea and Magelda, and it shall reach to +19:11 +Or, +at or towards. + Baetharaba in the valley, which is opposite Jekman. + +And the border returned from Sedduc in a contrary direction eastward from Baethsamys, to the borders of Chaselothaith, and shall pass on to Dabiroth, and shall proceed upward to Phangai. + +And thence it shall come round in the opposite direction eastward to Gebere to the city of Catasem, and shall go on to Remmonaa Matharaoza. + +And the borders shall come round northward to Amoth, and their going out shall be at Gaephael, + +and Catanath, and Nabaal, and Symoon, and Jericho, and Baethman. + +This +is the inheritance of the tribe of the sons of Zabulon according to their families, +these cities and their villages. + +And the fourth lot came out to Issachar. + +And their borders were Jazel, and Chasaloth, and Sunam, + +and Agin, and Siona, and Reeroth, + +and Anachereth, and Dabiron, and Kison, and Rebes, + +and Remmas, and Jeon, and Tomman, and Aemarec, and Bersaphes. + +And the boundaries shall border upon Gaethbor, and upon Salim westward, and Baethsamys; and the extremity of his bounds shall be Jordan. + +This +is the inheritance of the tribe of the children of Issachar according to their families, the cities and their villages. + +And the fifth lot came out to Aser according to their families. + +And their borders were Exeleketh, and Aleph, and Baethok, and Keaph, + +and Elimelech, and Amiel, and Maasa, and the lot will border on Carmel westward, and on Sion, and Labanath. + +And it will return +19:27 +Gr. +from the rising of the sun. + westward from Baethegeneth, and will join Zabulon and Ekgai, and Phthaeel northwards, and the borders will come to Saphthaebaethme, and Inael, and will go on to Chobamasomel, + +and Elbon, and Raab, and Ememaon, and Canthan to great Sidon. + +And the borders shall turn back to Rama, and to the fountain of Masphassat, and the Tyrians; and the borders shall return to Jasiph, and their going forth shall be the sea, and Apoleb, and Echozob, + +and Archob, and Aphec, and Raau. + +This +is the inheritance of the tribe of the sons of Aser according to their families, the cities and their villages. + +And the sixth lot came out to Nephthali. + +And their borders were Moolam, and Mola, and Besemiin, and Arme, and Naboc, and Jephthamai, as far as Dodam; and their goings out were Jordan. + +And the coasts will return westward by Athabor, and will go out thence to Jacana, and will border on Zabulon southward, and Aser will join +it westward, and Jordan eastward. + +And the walled cities of the Tyrians, Tyre, and Omathadaketh, and Kenereth, + +and Armaith, and Areal, and Asor, + +and Cades, and Assari, and the well of Asor; + +and Keroe, and Megalaarim, and Baetthame, and Thessamys. + +This +is the inheritance of the tribe of the children of Nephthali. + +And the seventh lot came out to Dan. + +And their borders were Sarath, and Asa, and the cities of Sammaus, + +and Salamin, and Ammon, and Silatha, + +and Elon, and Thamnatha, and Accaron; + +and Alcatha, and Begethon, and Gebeelan, + +and Azor, and Banaebacat, and Gethremmon. + +And westward of Hieracon the border +was near to Joppa. + +This +is the inheritance of the tribe of the children of Dan, according to their families, these +are their cities and their villages: and the children of Dan did not drive out the Amorite who afflicted them in the mountain; and the Amorite would not suffer them to come down into the valley, but they forcibly took from them the border of their portion. + +And the sons of Dan went and fought against Lachis, and took it, and struck it with the +19:48 +Gr. +mouth. + edge of the sword; and they lived in it, and called the name of it Lasendan: and the Amorite continued to dwell in Edom and in Salamin: and the hand of Ephraim prevailed against them, and they became tribute to them. + +And they proceeded to take possession of the land according to their borders, and the children of Israel gave an inheritance to Joshua the son of Naue among them, + +by the command of God, and they gave him the city which he asked for, Thamnasarach, which is in the mount of Ephraim; and he built the city, and lived in it. + +These +are the divisions which Eleazar the priest divided by lot, and Joshua the +son of Naue, and the heads of families among the tribes of Israel, according to the lots, in Selo before the Lord by the doors of the tabernacle of testimony, and they +19:51 +Heb. finished dividing. The LXX seems to have read הלך for חלקץ. + went to take possession of the land. + +

+ + +

And the Lord spoke to Joshua, saying, + +Speak to the children of Israel, saying, +20:2 +Gr. +give. + Assign the cities +20:2 +Gr. +refugees. + of refuge, +of which I spoke to you by Moses. + + +Even a refuge to the slayer who has struck a +20:3 +Gr. +life or soul. + man unintentionally; and the cities shall be to you a refuge, and the slayer shall not be put to death by the avenger of blood, until he have stood before the congregation for judgment. + +And +20:4 +Gr. +he. + Joshua separated Cades in Galilee in the mount +20:4 +Or, +of N. + Nephthali, and Sychem in the mount Ephraim, and the city of Arboc; this is Chebron, in the mountain of Juda. + +And beyond Jordan he +20:5 +Gr. +gave. + appointed Bosor in the wilderness in the plain out of the tribe of Ruben, and Aremoth in Galaad out of the tribe of Gad, and Gaulon in the country of Basan out of the tribe of Manasse. + +These +were the cities selected for the sons of Israel, and for the stranger dwelling among them, that every one who smites a soul unintentionally should flee there, that he should not die by the hand of the avenger of blood, until he should stand before the congregation for judgment. + +

+ + +

And the heads of the families of the sons of Levi drew near to Eleazar the priest, and to Joshua the +son of Naue, and to the heads of families of the tribes of Israel. + +And they spoke to them in Selo in the land of Chanaan, saying, The Lord gave commandment by +21:2 +Gr. +the hand of Moses. + Moses to give us cities to dwell in, and the country round about for our cattle. + +So the children of Israel gave to the Levites in their inheritance by the command of the Lord the cities and the country round. + +And the lot came out for the children of Caath; and the sons of Aaron, the priests the Levites, had by lot thirteen cities +21:4 +Gr. +from. + out of the tribe of Juda, and out of the tribe of Symeon, and out of the tribe of Benjamin. + +And to the sons of Caath that were left were +given by lot ten cities, out of the tribe of Ephraim, and out of the tribe of Dan, and out of the half tribe of Manasse. + +And the sons of Gedson had thirteen cities, out of the tribe of Issachar, and out of the tribe of Aser, and out of the tribe of Nephthali, and out of the half tribe of Manasse in +21:6 +Or, +the land of Basan. + Basan. + +And the sons of Merari according to their families had by lot twelve cities, out of the tribe of Ruben, and out of the tribe of Gad, and out of the tribe of Zabulon. + +And the children of Israel gave to the Levites the cities and their suburbs, as the Lord commanded Moses, by lot. + +And the tribe of the children of Juda, and the tribe of the children of Symeon, and +part of the tribe of the children of Benjamin gave these cities, and they were assigned + +to the sons of Aaron of the family of Caath of the sons of Levi, for the lot +21:10 +Gr. +was. + fell to these. + +And +21:11 +Gr. +he. + they gave to them Cariatharboc the +21:11 +Or, +parent city. See note chap. 10:2. + metropolis of the sons of Enac; this is Chebron in the mountain +country of Juda, and the suburbs round it. + +But the lands of the city, and its villages Joshua gave to the sons of Chaleb the son of Jephonne for a possession. + +And to the sons of Aaron he gave the city of refuge for the slayer, Chebron, and the +21:13 +The Greek word is different from that translated 'suburbs.' above. - +q.d. glebe. suburbs belonging to it; and Lemna and the suburbs belonging to it; + +and Aelom and its suburbs; and Tema and its suburbs; + +and Gella and its suburbs; and Dabir and its suburbs; + +and Asa and its suburbs; and Tany and its suburbs; and Baethsamys and its suburbs: nine cities from these two tribes. + +And from the tribe of Benjamin, Gabaon and its suburbs; and Gatheth and its suburbs; + +and Anathoth and its suburbs; and Gamala and its suburbs; four cities. + +All the cities of the sons of Aaron the priests, thirteen. + +And to the families, +even the sons of Caath the Levites, that were left of the sons of Caath, there was +given +21:20 +Heb. the cities of their lot. + their priests' city, + +out of the tribe of Ephraim; and they gave them the slayer's city of refuge, Sychem, and its suburbs, and Gazara and its appendages, and its suburbs; + +and Baethoron and its suburbs: four cities: + +and the tribe of Dan, Helcothaim and its suburbs; and Gethedan and its suburbs: + +and Aelon and its suburbs; and Getheremmon and its suburbs: four cities. + +And out of the half tribe of Manasse, Tanach and its suburbs; and Jebatha and its suburbs; two cities. + +In all +were given ten cities, and the suburbs of each belonging to them, to the families of the sons of Caath that remained. + +And +Joshua gave to the sons of Gedson the Levites out of the other half tribe of Manasse cities set apart for the slayers, Gaulon in the country of Basan, and its suburbs; and Bosora and its suburbs; two cities. + +And out of the tribe of Issachar, Kison and its suburbs; and Debba and its suburbs; + +and Remmath and its suburbs; and the well of Letters, and its suburbs; four cities. + +And out of the tribe of Aser, Basella and its suburbs; and Dabbon and its suburbs; + +and Chelcat and its suburbs; and Raab and its suburbs; four cities. + +And of the tribe of Nephthali, the city set apart for the slayer, Cades in Galilee, and its suburbs; and Nemmath, and its suburbs; and Themmon and its suburbs; three cities. + +All the cities of Gedson according to their families +were thirteen cities. + +And to the family of the sons of Merari the Levites that remained, +he gave out of the tribe of Zabulon, Maan and its suburbs; and Cades and its suburbs, + +and Sella and its suburbs: three cities. + +And beyond Jordan over against Jericho, out of the tribe of Ruben, the city of refuge for the slayer, Bosor in the wilderness; Miso and its suburbs; and Jazer and its suburbs; and Decmon and its suburbs; and Mapha and its suburbs; four cities. + +And out of the tribe of Gad the city of refuge for the slayer, both Ramoth in Galaad, and its suburbs; Camin and its suburbs; and Esbon and its suburbs; and Jazer and its suburbs: the cities +were four in all. + +All +these cities +were given to the sons of Merari according to the families of them that were left out of the tribe of Levi; and +21:38 +i.e. +the portion allotted, or assigned them. + their limits were the twelve cities. + +All the cities of the Levites in the midst of the possession of the children of Israel, +were forty-eight cities, + +and their suburbs round about these cities: a city and the suburbs round about the city to all these cities: and Joshua ceased dividing the land by their borders: and the children of Israel gave a portion to Joshua because of the commandment of the Lord: they gave him the city which he asked: they gave him Thamnasachar in mount Ephraim; and Joshua built the city, and lived in it: and Joshua took the knives of stone, wherewith he circumcised the children of Israel that were born in the desert by the way, and put them in Thamnasachar. + +So the Lord gave to Israel all the land which he swore to give to their fathers: and they inherited it, and lived in it. + +And the Lord gave them rest round about, as he swore to their fathers: not one of all their enemies maintained his ground against them; the Lord delivered all their enemies into their hands. + +There failed not one of the good things which the Lord spoke to the children of Israel; all came to pass. + +

+ + +

Then Joshua called together the sons of Ruben, and the sons of Gad, and the half tribe of Manasse, + +and said to them, You⌃ have heard all that Moses the servant of the Lord commanded you, and you⌃ have listened to my voice in all that he commanded you. + +You⌃ have not deserted your brethren these many days: until this day you⌃ have kept the commandment of the Lord your God. + +And now the Lord our God has given our brethren rest, as he told them: now then return and depart to your homes, and to the land of your possession, which Moses gave you on the other side Jordan. + +But take great heed to do the commands and the law, which Moses the servant of the Lord commanded you to do; to love the Lord our God, to walk in all his ways, to keep his commands, and to cleave to him, and serve him with all your mind, and with all your soul. + +And Joshua blessed them, and dismissed them; and they went to their homes. + +And to +one half the tribe of Manasse Moses gave a portion in the land of Basan, and to +the other half Joshua gave a portion with his brethren on the other side of Jordan westward: and when Joshua sent them away to their homes, then he blessed them. + +And they departed with much wealth to their houses, and they divided the spoil of their enemies with their brethren; very much cattle, and silver, and gold, and iron, and much raiment. + +So the sons of Ruben, and the sons of Gad, and the half tribe of Manasse, departed from the children of Israel in Selo in the land of Chanaan, to go away into Galaad, into the land of their possession, which they inherited by the command of the Lord, by the hand of Moses. + +And they came to Galaad of Jordan, which is in the land of Chanaan: and the children of Ruben, and the children of Gad, and the half tribe of Manasse built there an altar by Jordan, a great altar to look at. + +And the children of Israel heard say, Behold, the sons of Ruben, and the sons of Gad, and the half tribe of Manasse have built an altar at the borders of the land of Chanaan at Galaad of Jordan, on the opposite side to the children of Israel. + +And all the children of Israel gathered together to Selo, so as to go up and fight against them. + +And the children of Israel sent to the sons of Ruben, and the sons of Gad, and to the sons of the half tribe of Manasse into the land of Galaad, both Phinees the son of Eleazar the son of Aaron the priest, + +and ten of the chiefs with him; +there was one chief of every household out of all the tribes of Israel; (the heads of families are the captains of thousands in Israel.) + +And they came to the sons of Ruben, and to the sons of Gad, and to the +22:15 +Gr. +halves, +adj. q.d. +dimidios +viros half tribe of Manasse into the land of Galaad; and they spoke to them, saying, + +Thus says the whole congregation of the Lord, What +is this transgression that you⌃ have transgressed before the God of Israel, to turn away today from the Lord, in that you⌃ have built for yourselves an altar, so that you⌃ should be apostates from the Lord? + +Is the sin of Phogor too little for you, whereas we have not been cleansed from it until this day, though there was a plague among the congregation of the Lord? + +And you⌃ have this day revolted from the Lord; and it shall come to pass if you⌃ revolt this day from the Lord, that to-morrow there shall be wrath upon all Israel. + +And now if the land of your possession +be too little, cross over to the land of the possession of the Lord, where the tabernacle of the Lord dwells, and receive you⌃ an inheritance among us; and do not become apostates from God, neither do you⌃ apostatize from the Lord, because of your having built an altar apart from the altar of the Lord our God. + +Behold! did not Achar the +son of Zara commit a trespass +taking of the accursed thing, and there was wrath on the whole congregation of Israel? and he himself died alone in his own sin. + +And the sons of Ruben, and the sons of Gad, and the half tribe of Manasse answered, and spoke to the captains of the thousands of Israel, saying, + +God +even God is the Lord, and God +even God himself knows, and Israel he shall know; if we have transgressed before the Lord by apostasy, let him not deliver us this day. + +And if we have built to ourselves an altar, so as to apostatize from the Lord our God, so as to offer upon it a sacrifice of whole burnt offerings, so as to offer upon it a sacrifice of peace-offering, —the Lord shall require it. + +But we have done this for the sake of precaution +concerning this thing, saying, Lest +22:24 +Gr. +to-morrow. + hereafter your sons should say to our sons, What have you⌃ to do with the Lord God of Israel? + +Whereas the Lord has set boundaries between us and you, even Jordan, and you⌃ have no portion +22:25 +Gr. +of. + in the Lord: so your sons shall alienate our sons, that they should not worship the Lord. + +And we +22:26 +Gr. +spoke. + gave orders to do thus, to build this altar, not for burnt offerings, nor for meat-offerings; + +but that this may be a witness between you and us, and between our posterity after us, that we may do service to the Lord before him, with our burnt offerings and our meat-offerings and our peace-offerings: so your sons shall not say to our sons, hereafter, You⌃ have no portion in the Lord. + +And we said, If ever it should come to pass that they should speak +so to us, or to our posterity hereafter; then shall they say, Behold the likeness of the altar of the Lord, which our fathers made, not for the sake of burnt offerings, nor for the sake of meat-offerings, but it is a witness between you and us, and between our sons. + +Far be it from us therefore that we should turn away from the Lord this day so as to apostatize from the Lord, so as that we should build an altar for burnt offerings, and for +22:29 +A double translation in Greek. + peace-offerings, besides the altar of the Lord which is before his tabernacle. + +And Phinees the priest and all the chiefs of the congregation of Israel who were with him +22:30 +Gr. +having heard. + heard the words which the children of Ruben, and the children of Gad, and the half tribe of Manasse spoke; and it pleased them. + +And Phinees the priest said to the sons of Ruben, and to the sons of Gad, and to the half of the tribe of Manasse, To-day we know that the Lord +is with us, because you⌃ have not trespassed grievously against the Lord, and because you⌃ have delivered the children of Israel out of the hand of the Lord. + +So Phinees the priest and the princes departed from the children of Ruben, and from the children of Gad, and from the half tribe of Manasse out of Galaad into the land of Chanaan to the children of Israel; and reported the words to them. + +And it pleased the children of Israel; and they spoke to the children of Israel, and blessed the God of the children of Israel, and told them to go up no more to war against +22:33 +Gr. +them. + the others to destroy the land of the children of Ruben, and the children of Gad, and the half tribe of Manasse: so they lived upon it. + +And Joshua gave a name to the altar of the children of Ruben, and the children of Gad, and the half tribe of Manasse; and said, It is a testimony in the midst of them, that the Lord is their God. + +

+ + +

And it came to pass after many days after the Lord had given Israel rest from all his enemies round about, that Joshua was old and advanced in +23:1 +Gr. +days. + years. + +And Joshua called together all the children of Israel, and their elders, and their chiefs, and their judges, and their officers; and said to them, I am old and advanced in years. + +And you⌃ have seen all that the Lord our God has done to all these nations before us; +for it is the Lord your God who has fought for you. + +See, that I have +23:4 +Gr. +cast upon you. + given to you these nations that are left to you by lots to your tribes, all the nations beginning at Jordan; and +some I have destroyed; and +23:4 +Gr. +he shall bound. + the boundaries shall be at the great sea westward. + +And the Lord our God, he shall destroy them before us, until they utterly perish; and he shall send against them the wild beasts, until he shall have utterly destroyed them and their kings from before you; and you⌃ shall inherit their land, as the Lord our God said to you. + +Do you⌃ therefore strive diligently to observe and do all things written in the book of the law of Moses, that you⌃ turn not to the right hand or to the left; + +that you⌃ go not in among these nations that are left; and the names of their gods shall not be named among you, neither shall you⌃ serve them, neither shall you⌃ bow down to them. + +But you⌃ shall cleave to the Lord our God, as you⌃ have done until this day. + +And the Lord shall destroy them before you, +even great and strong nations; and no one has stood before us until this day. + +One of you has chased a thousand, for the Lord our God, he fought for you, as he said to us. + +And take you⌃ great heed to love the Lord our God. + +For if you⌃ shall turn aside and attach yourselves to these nations that are left with you, and make marriages with them, and become mingled with them and they with you, + +know that the Lord will no more destroy these nations from before you; and they will be to you snares and stumbling blocks, and nails in your heels, and darts in your eyes, until you⌃ be destroyed from off this good land, which the Lord your God has given you. + +But I hasten to go the way +of death, as all that are upon the earth also +do: and you⌃ know in your heart and in your soul, that not one word has fallen +to the ground of all the words which the Lord our God has spoken respecting all that concerns us; there has not one of them failed. + +And it shall come to pass, that as all the good things are come upon us which the Lord God will bring upon you all the evil things, until he shall have destroyed you from off this good land, which the Lord has given you, + +when you⌃ transgress the covenant of the Lord our God, which he has charged us, and go and serve other gods, and bow down to them. + +

+ + +

And Joshua gathered all the tribe of Israel to Selo, and convoked their elders, and their officers, and their judges, and set them before God. + +And Joshua said to all the people, Thus says the Lord God of Israel, Your fathers at first sojourned beyond the river, +even Thara, the father of Abraam and the father of Nachor; and they served other gods. + +And I took your father Abraam from the other side of the river, and I guided him +24:3 +Gr. +in. + through all the land, and I multiplied his seed; + +and I gave to him Isaac, and to Isaac Jacob and Esau: and I gave to Esau mount Seir for him to inherit: and Jacob and his sons went down to Egypt, and became there a great and populous and mighty nation: and the Egyptians afflicted them. + +And I struck Egypt with the wonders that I wrought among them. + +And afterwards +God brought out our fathers from Egypt, and you⌃ entered into the Red Sea; and the Egyptians pursued after our fathers with chariots and horses into the Red Sea. + +And we cried aloud to the Lord; and he +24:7 +Gr. +gave. + put a cloud and darkness between us and the Egyptians, and he brought the sea upon them, and covered them; and your eyes have seen all that the Lord did in the land of Egypt; and you⌃ were in the wilderness many days. + +And he brought us into the land of the Amorites that lived beyond Jordan, and the Lord delivered them into our hands; and you⌃ inherited their land, and utterly destroyed them from before you. + +And Balac, king of Moab, son of Sepphor, rose up, and +24:9 +Gr. +set himself in array. + made war against Israel, and sent and called Balaam to curse us. + +But the Lord your God would not destroy you; and he greatly blessed us, and rescued us out of their hands, and delivered them +to us. + +And you⌃ crossed over Jordan, and came to Jericho; and the inhabitants of Jericho fought against us, the Amorite, and the Chananite, and the Pherezite, and the Evite, and the Jebusite, and the Chettite, and the Gergesite, and the Lord delivered them into our hands. + +And he sent forth the hornet before you; and he drove them out from before you, +even twelve kings of the Amorites, not with your sword, nor with your bow. + +And he gave you a land on which you⌃ did not labor, and cities which you⌃ did not build, and you⌃ were settled in them; and you⌃ +24:13 +Or, +shall eat. + eat +of vineyards and olive yards which you⌃ did not plant. + +And now fear the Lord, and serve him in righteousness and justice; and remove the strange gods, which our fathers served beyond the river, and in Egypt; and serve the Lord. + +But if it seem not good to you to serve the Lord, choose to yourselves this day whom you⌃ will serve, whether the gods of your fathers that were on the other side of the river, or the gods of the Amorites, among whom you⌃ dwell upon their land: but I and my house will serve the Lord, for he is holy. + +And the people answered and said, Far be it from us to forsake the Lord, so as to serve other gods. + +The Lord our God, he is God; he brought up us and our fathers from Egypt, and kept us in all the way wherein we walked, and among all the nations +24:17 +Gr. +whom we passed through them. +Hebraism +See Mark 1:7; Luke 3:16; 1 Pet 2:24. + through whom we passed. + +And the Lord cast out the Amorite, and all the nations that inhabited the land from before us: yes, we will serve the Lord, for he is our God. + +And Joshua said to the people, Indeed you⌃ will not be able to serve the Lord, for God is holy; and he being jealous will not forgive your sins and your transgressions. + +Whenever you⌃ shall forsake the Lord and serve other gods, then he shall come upon you and afflict you, and consume you, +24:20 +Or, +whereas on the contrary. + because he has done you good. + +And the people said to Joshua, Nay, but we will serve the Lord. + +And Joshua said to the people, You⌃ +are witnesses against yourselves, that you⌃ have chosen the Lord to serve him. + +And now take away the strange gods that are among you, and set your heart right toward the Lord God of Israel. + +And the people said to Joshua, We will serve the Lord, and we will listen to his voice. + +So Joshua made a covenant with the people on that day, and gave them a law and an ordinance in Selo before the tabernacle of the God of Israel. + +And he wrote these words in the book of the laws of God: and Joshua took a great stone, and set it up under the +24:26 +Gr. +Properly a pine or turpentine tree. So chap. 17:9. + oak before the Lord. + +And Joshua said to the people, Behold, this stone shall be among you for a witness, for it has heard all the words that have been spoken to it by the Lord; for he has spoken to you this day; and this +stone shall be among you for a witness in the last days, whenever you⌃ shall deal falsely with the Lord my God. + +And Joshua dismissed the people, and they went every man to his place. + +And it came to pass after these things that Joshua the son of Naue the servant of the Lord died, +at the age of one hundred and ten years. + +And they buried him by the borders of his inheritance in Thamnasarach in the mount of Ephraim, northward of the mount of Galaad: there they put with him into the tomb in which they buried him, the knives of stone with which he circumcised the children of Israel in Galgala, when he brought them out of Egypt, as the Lord appointed them; and there they are to this day. + +And Israel served the Lord all the days of Joshua, and all the days of the elders that +24:31 +Gr. +drew out the time with Joshua. +Hebraism. lived as long as Joshua, and all that knew all the works of the Lord which he wrought for Israel. + +And the children of Israel brought up the bones of Joseph out of Egypt, and buried +them in Sicima, in the portion of the land which Jacob bought of the Amorites who lived in Sicima for one hundred ewe-lambs; and he gave it to Joseph for a portion. + +And it came to pass afterwards that Eleazar the high-priest the son of Aaron died, and was buried in Gabaar of Phinees his son, which he gave him in mount Ephraim. In that day the children of Israel took the ark of God, and carried it about among them; and Phinees exercised the priest's office in the room of Eleazar his father till he died, and he was buried in his own place Gabaar: but the children of Israel departed every one to their place, and to their own city: and the children of Israel worshipped Astarte, and Astaroth, and the gods of the nations round about them; and the Lord delivered them into the hands of Eglom king of Moab and he ruled over them eighteen years. + +

+
+ +Judges +JUDGES +Judges +JDG +

JUDGES +

+ + +

And it came to pass after the death of Joshua, that the children of Israel enquired of the Lord, saying, Who shall go up for us first against the Chananites, to fight against them? + +And the Lord said, Judas shall go up: behold, I have delivered the land into his hand. + +And Judas said to his brother Symeon, Come up with me into my lot, and let us array ourselves against the Chananites, and I also will go with you into your lot: and Symeon went with him. + +And Judas went up; and the Lord delivered the Chananite and the Pherezite into their hands, and they struck them in Bezek to +the number of ten thousand men. + +And they overtook Adonibezek in Bezek, and fought against him; and they struck the Chananite and the Pherezite. + +And Adonibezek fled, and they pursued after him, and took him, and cut off his thumbs and his great toes. + +And Adonibezek said, Seventy kings, having their thumbs and their great toes cut off, gathered +their food under my table: as I therefore have done, so God has recompensed me: and they +1:7 +Gr. +bring. + brought him to Jerusalem, and he died there. + +And the children of Judas fought against Jerusalem, and took it, and struck with the edge of the sword, and they burnt the city with fire. + +And afterwards the children of Judas went down to fight with the Chananite dwelling in the hill country, and the south, and the plain country. + +And Judas went to the Chananite who lived in Chebron; and Chebron came out against him; +and the name of Chebron before was Cariatharbocsepher: and they struck Sessi, and Achiman, and Tholmi, children of Enac. + +And they went up thence to the inhabitants of Dabir; but the name of Dabir was before Cariathsepher, the city of Letters. + +And Chaleb said, Whosoever shall strike the city of Letters, and shall first take it, I will give to him Ascha my daughter to wife. + +And Gothoniel the younger son of Kenez the brother of Chaleb took it; and Chaleb gave him his daughter Ascha to wife. + +And it came to pass as she went in, that Gothoniel urged her to ask a field of her father; and she murmured and cried from off her ass, You have sent me forth into a south land: and Chaleb said to her, +1:14 +Or, +what ails you? + What is your request? + +And Ascha said to him, Give me, I pray you, a blessing, for you have sent me forth into a south land, and you shall give me the ransom of water: and Chaleb gave her according to her heart the ransom of the upper +springs and the ransom of the low +springs. + +And the children of Jothor the Kenite the father-in-law of Moses went up from the city of palm-trees with the children of Judas, to the wilderness that is in the south of Juda, which is at the descent of Arad, and they lived with the people. + +And Judas went with Symeon his brother, and struck the Chananite that inhabited Sepheth, and they utterly destroyed them; and they called the name of the city Anathema. + +But Judas did not inherit Gaza nor her coasts, nor Ascalon nor her coasts, nor Accaron nor her coasts, +nor Azotus nor the lands around it. + +And the Lord was with Judas, and he inherited the mountain; for they were not able to destroy the inhabitants of the valley, for +1:19 +Heb. they had chariots of iron. + Rechab prevented them. + +And they gave Chebron to Chaleb, as Moses said; and thence he inherited the three cities of the children of Enac. + +But the children of Benjamin did not +1:21 +Gr. +inherit. + take the inheritance of the Jebusite who lived in Jerusalem; and the Jebusite lived with the children of Benjamin in Jerusalem until this day. + +And the sons of Joseph, they also went up to Baethel; and the Lord was with them. + +And they encamped and surveyed Baethel: and the name of the city before was Luza. + +And the spies looked, and behold, a man went out of the city, and they took him; and they said to him, Show us the way into the city, and we will deal mercifully with you. + +And he showed them the way into the city; and they struck the city with the edge of the sword; but they let go the man and his family. + +And the man went into the land of Chettin, and built there a city, and called the name of it Luza; this +is its name until this day. + +And Manasse did not drive out +the inhabitants of Baethsan, which is a city of Scythians, nor her towns, nor her suburbs; nor Thanac, nor her +1:27 +Gr. +daughters. + towns; nor the inhabitants of Dor, nor her suburbs, nor her towns; nor the inhabitant of Balac, nor her suburbs, nor her towns; nor the inhabitants of Magedo, nor her suburbs, nor her towns; nor the inhabitants of Jeblaam, nor her suburbs, nor her towns; and the Chananite began to dwell in this land. + +And it came to pass when Israel was strong, that he made the Chananite tributary, but did not utterly drive them out. + +And Ephraim did not drive out the Chananite that lived in Gazer; and the Chananite lived in the midst of him in Gazer, and became tributary. + +And Zabulon did not drive out the inhabitants of Kedron, nor the inhabitants of Domana: and the Chananite lived in the midst of them, and became tributary to them. +1:30 +Gr. +him, +sc. +Zabulon. + + +And Aser did not drive out the inhabitants of Accho, and +that people became tributary to him, nor the inhabitants of Dor, nor the inhabitants of Sidon, nor the inhabitants of Dalaph, nor Aschazi, nor Chebda, nor Nai, nor Ereo. + +And Aser lived in the midst of the Chananite who inhabited the land, for he could not drive him out. + +And Nephthali did not drive out the inhabitants of Baethsamys, nor the inhabitants of Baethanach; and Nephthali lived in the midst of the Chananite who inhabited the land: but the inhabitants of Bethsamys and of Baetheneth became tributary to them. + +And the Amorite drove out the children of Dan into the mountains, for they did not suffer them to come down into the valley. + +And the Amorite began to dwell in the mountain of shells, in which +are bears, and foxes, in Myrsinon, and in Thalabin; and the hand of the house of Joseph was heavy upon the Amorite, and he became tributary to them. + +And the border of the Amorite +was from the going up of Acrabin, from the rock and upwards. + +

+ + +

And an angel of the Lord went up from Galgal to the +2:1 +Heb. ככיס. + +place of weeping, and to Baethel, and to the house of Israel, and said to them, Thus says the Lord, I brought you up out of Egypt, and I brought you into the land which I swore to your fathers; and I said, I will never break my covenant that I have made with you. + +And you⌃ shall make no covenant with them that dwell in this land, neither shall you⌃ worship their gods; but you⌃ shall destroy their graven images, you⌃ shall pull down their altars: but you⌃ listened not to my voice, for you⌃ did these things. + +And I said, I will not drive them out from before you, but they shall be for a +2:3 +Gr. +distresses. + distress to you, and their gods shall be to you for an offense. + +And it came to pass when the angel of the Lord spoke these words to all the children of Israel, that the people lifted up their voice, and wept. + +And they named the name of that place Weepings; and they sacrificed there to the Lord. + +And Joshua dismissed the people, and they went every man to his inheritance, to inherit the land. + +And the people served the Lord all the days of Joshua, and all the days of the elders that lived many days with Joshua, as many as knew all the great work of the Lord, what things he had wrought in Israel. + +And Joshua the son of Naue, the servant of the Lord, died, +2:8 +Gr. +son of one hundred and ten years. +Hebraism. one hundred and ten years old. + +And they buried him in the border of his inheritance, in Thamnathares, in mount Ephraim, on the north of the mountain of Gaas. + +And all that generation were laid to their fathers: and another generation rose up after them, who knew not the Lord, nor yet the work which he wrought in Israel. + +And the children of Israel wrought evil before the Lord, and served Baalim. + +And they forsook the Lord God of their fathers, who brought them out of the land of Egypt, and walked after other gods, of the gods of the nations round about them; and they worshipped them. + +And they provoked the Lord, and forsook him, and served Baal and the Astartes. + +And the Lord was very angry with Israel; and he gave them into the hands of the spoilers, and they spoiled them; and he sold them into the hands of their enemies round about, and they could not any longer resist their enemies, + +among whoever they went; and the hand of the Lord was against them for evil, as the Lord spoke, and as the Lord swore to them; and he greatly afflicted them. + +And the Lord raised up judges, and the Lord save them out of the hands of them that spoiled them: and yet they listened not to the judges, + +for they went a whoring after other gods, and worshipped them; and they turned quickly out of the way in which their fathers walked to listen to the words of the Lord; they did not so. + +And because the Lord raised them up judges, so the Lord was with the judge, and saved them out of the hand of their enemies all the days of the judge; for the Lord +2:18 +Gr. +repented. This word seems generally to stand for כהס. + was moved at their groaning by reason of them that besieged them and afflicted them. + +And it came to pass when the judge died, that they went back, and again corrupted +themselves worse than their fathers to go after other gods to serve them and to worship them: they abandoned not their devices nor their stubborn ways. + +And the Lord was very angry with Israel, and said, Forasmuch as this nation has forsaken my covenant which I commanded their fathers, and has not listened to my voice, + +therefore I will not any more cast out a man of the nations before their face, which Joshua the son of Naue left in the land. And +the Lord left +them, + +to prove Israel with them, whether they would keep the way of the Lord, to walk in it, as their fathers kept it, or no. + +So the Lord +2:23 +Or, +left. + will leave these nations, so as not to cast them out suddenly; and he delivered them not into the hand of Joshua. + +

+ + +

And these +are the nations which the Lord left to prove Israel with them, all that had not known the wars of Chanaan. + +Only for the sake of the generations of Israel, to teach them war, only the men before them knew them not. + +The five lordships of the Phylistines, and every Chananite, and the Sidonian, and the Evite who lived in Libanus from the mount of Aermon to Laboemath. + +And +this was done in order to prove Israel by them, to know whether they would obey the commands of the Lord, which he charged their fathers by the hand of Moses. + +And the children of Israel lived in the midst of the Chananite, and the Chettite, and the Amorite, and the Pherezite, and the Evite, and the Jebusite. + +And they took their daughters for wives to themselves, and they gave their daughters to their sons, and served their gods. + +And the children of Israel did evil in the sight of the Lord, and forgot the Lord their God, and served Baalim and the groves. + +And the Lord was very angry with Israel, and sold them into the hand of Chusarsathaim king of Syria of the rivers: and the children of Israel served Chusarsathaim eight years. + +And the children of Israel cried to the Lord; and the Lord raised up a savior to Israel, and he saved them, Gothoniel the son of Kenez, the brother of Chaleb younger than himself. + +And the Spirit of the Lord came upon him, and he judged Israel; and he went out to war against Chusarsathaim: and the Lord delivered into his hand Chusarsathaim king of Syria of the rivers, and his hand prevailed against Chusarsathaim. + +And the land was quiet forty years; and Gothoniel the son of Kenez died. + +And the children of Israel continued to do evil before the Lord: and the Lord strengthened Eglom king of Moab against Israel, because they had done evil before the Lord. + +And he gathered to himself all the children of Ammon and Amalec, and went and struck Israel, and +3:13 +Gr. +it inherited. + took possession of the city of Palm-trees. + +And the children of Israel served Eglom the king of Moab eighteen years. + +And the children of Israel cried to the Lord; and he raised up to them a savior, Aod the son of Gera a +3:15 +i.e. +Benjamite. + son of Jemeni, a man +3:15 +Or, +able to use his left hand as his right. +q.d.with two right hands. + who used both hands alike: and the children of Israel sent gifts by his hand to Eglom king of Moab. + +And Aod made himself a dagger of two edges, of a span long, and he girded it under his cloak upon his right thigh. + +And he went, and brought the presents to Eglom king of Moab, and Eglom +was a very handsome man. + +And it came to pass when +Aod had made an end of offering his gifts, that he dismissed those that brought the gifts. + +And he himself returned from the quarries that are by Galgal; and Aod said, I have a secret errand to you, O king! and Eglom said to him, Be silent: and he sent away from his presence all who waited upon him. + +And Aod went in to him; and he sat in his own upper summer chamber quite alone; and Aod said, I have a message from God to you, O king: and Eglom rose up from his throne near him. + +And it came to pass as he arose, that Aod stretched forth his left hand, and took the dagger off his right thigh, and plunged it into his belly; + +and drove in also the haft after the blade, and the fat closed in upon the blade, for he drew not out the dagger from his belly. + +And Aod went out to the porch, and passed out by the appointed +guards, and shut the doors of the chamber upon him, and locked +them. + +And he went out: and +3:24 +Gr. +his. + Eglom's servants came, and saw, and behold, the doors of the upper chamber +were locked; and they said, Does he not uncover his feet in the summer-chamber? + +And they waited till they were ashamed, and, behold, there +3:25 +Gr. +is. + was no one that opened the doors of the upper chamber; and they took the key, and opened them; and, behold, their lord was fallen down dead upon the earth. + +And Aod escaped while they were in a tumult, and no one paid attention to him; and he passed the quarries, and escaped to Setirotha. + +And it came to pass when Aod came into the land of Israel, that he blew the horn in mount Ephraim, and the children of Israel came down with him from the mountain, and he +was before them. + +And he said to them, Come down after me, for the Lord God has delivered our enemies, even Moab, into our hand; and they went down after him, and seized on the fords of Jordan before Moab, and he did not suffer a man to pass over. + +And they struck Moab on that day about ten thousand men, every +lusty person and every mighty man; and not a man escaped. + +So Moab was +3:30 +Gr. +put to shame. + humbled in that day under the hand of Israel, and the land had rest eighty years; and Aod judged them till he died. + +And after him rose up Samegar the son of Dinach, and struck the Philistines to the number of six hundred men with a plowshare +such as is drawn by oxen; and he too delivered Israel. + +

+ + +

And the children of Israel continued to do evil against the Lord; and Aod was dead. + +And the Lord sold the children of Israel into the hand of Jabin king of Chanaan, who ruled in Asor; and the chief of his host was Sisara, and he lived in Arisoth of the Gentiles. + +And the children of Israel cried to the Lord, because he had nine hundred chariots of iron; and he mightily oppressed Israel twenty years. + +And Debbora, a prophetess, the wife of Lapidoth, —she judged Israel at that time. + +And she sat under the palm tree of Debbora between Rama and Baethel in mount Ephraim; and the children of Israel went up to her for judgment. + +And Debbora sent and called Barac the son of Abineem out of Cades Nephthali, and she said to him, Has not the Lord God of Israel commanded you? and you shall depart to mount Thabor, and shall take with yourself ten thousand men of the sons of Nephthali and of the sons of Zabulon. + +And I will bring to you to the torrent of Kison +4:7 +ἐπὶ redundant in the Greek, but accounted for by the Heb. אה. + Sisara the captain of the host of Jabin, and his chariots, and his multitude, and I will deliver them into your hands. + +And Barac said to her, If you will go with me, I will go; and if you will not go, I will not go; for I know not the day on which the Lord prospers his messenger with me. + +And she said, I will surely go with you; but know that your honor shall not attend on the expedition on which you go, for the Lord shall sell Sisara into the hands of a women: and Debbora arose, and went with Barac out of Cades. + +And Barac called Zabulon and Nephthali out of Cades, and there went up at his feet ten thousand men, and Debbora went up with him. + +And Chaber the Kenite had removed from Caina, from the sons of Jobab the father-in-law of Moses, and pitched his tent by the oak of the covetous ones, which is near Kedes. + +And it was told Sisara that Barac the son of Abineem was gone up to mount Thabor. + +And Sisara +4:13 +Gr. +called. + summoned all his chariots, nine hundred chariots of iron and all the people with him, from Arisoth of the Gentiles to the brook of Kison. + +And Debbora said to Barac, Rise up, for this +is the day on which the Lord has delivered Sisara into your hand, for the Lord shall go forth before you: and Barac went down from mount Thabor, and ten thousand men after him. + +And the Lord discomfited Sisara, and all his chariots, and all his army, with the edge of the sword before Barac: and Sisara descended from off his chariot, and fled on his feet. + +And Barac +4:16 +Gr. +pursuing. + pursued after the chariots and after the army, into Arisoth of the Gentiles; and the whole army of Sisara fell by the edge of the sword, there was not one left. + +And Sisara fled on his feet to the tent of Jael the wife of Chaber the Kenite his friend: for there was peace between Jabin king of Asor and the house of Chaber the Kenite. + +And Jael went, out to meet Sisara, and said to him, Turn aside, my lord, turn aside to me, fear not: and he turned aside to her into the tent; and she covered him with a mantle. + +And Sisara said to her, Give me, I pray you, a little water to drink, for I am thirsty: and she opened a bottle of milk, and gave him to drink, and covered him. + +And Sisara said to her, Stand now by the door of the tent, and it shall come to pass if any man come to you, and ask of you, and say, Is there +any man here? then you shall say, There is not. + +And Jael the wife of Chaber took +4:21 +Gr. +the pin. + a pin of the tent, and took a hammer in her hand, and went secretly to him, and fastened the pin in his temple, and it went through to the earth, and he fainted away, and +4:21 +Gr. +he was darkened. + darkness fell upon him and he died. + +And, behold, Barac +was pursuing Sisara: and Jael went out to meet him, and she said to him, Come, and I will show you the man whom you seek: and he went in to her; and, behold, Sisara was fallen dead, and the pin +was in his temple. + +So God routed Jabin king of Chanaan in that day before the children of Israel. + +And the hand of the children of Israel prevailed more and more against Jabin king of Chanaan, until they utterly destroyed Jabin king of Chanaan. + +

+ + +

And Debbora and Barac son of Abineem sang in that day, saying, + +A revelation was made in Israel when the people were made willing: Praise you⌃ the Lord. + +Hear, you⌃ kings, and listen, rulers: I will sing, it is I +who will sing to the Lord, it is I, I will sing a psalm to the Lord the god of Israel. + +O Lord, in your going forth on Seir, when you went forth out of the land of Edom, the earth quaked and the heaven dropped dews, and the clouds dropped water. + +The mountains were shaken before the face of the Lord Eloi, this Sina before the face of the Lord God of Israel. + +In the days of Samegar son of Anath, in the days of Jael, they deserted the ways, and went in by-ways; they went in crooked paths. + +The mighty men in Israel failed, they failed until Debbora arose, until she arose a mother in Israel. + +They chose new gods; then the cities of rulers fought; +5:8 +Gr. +if there should be seen. + there was not a shield or spear seen among forty thousand in Israel. + +My heart +inclines to the orders given in Israel; you⌃ that are willing among the people, bless the Lord. + +You⌃ that mount a she-ass at noon-day, you⌃ that sit on the judgment-seat, and walk by the roads of them that sit in judgment by the way; declare + +you⌃ that are delivered from the noise of +5:11 +Gr. +noisy ones. + disturbers among the drawers of water; there shall they relate righteous acts: O Lord, increase righteous acts in Israel: then the people of the Lord went down to the cities. + +Awake, awake, Debbora; awake, awake, utter a song: arise, Barac, and lead your captivity captive, son of Abineem. + +Then went down the remnant to the strong, the people of the Lord went down for him among the mighty ones from me. + +Ephraim rooted them out in Amalec, behind you was Benjamin among your people: the inhabitants of Machir came down with me searching out the enemy, and from Zabulon came they that +5:14 +Gr. +Rather, draw or handle the scribe's pen, etc. + draw with the scribe's pen of record. + +And princes in Issachar were with Debbora and Barac, thus she sent Barac on his feet in the valleys into the portions of Ruben; great +pangs +5:15 +Gr. +reaching. + reached to the heart. + +Why did they sit between the sheepfolds to hear the bleating of flocks for the divisions of Ruben? +there were great searchings of heart. + +Galaad +is on the other side of Jordan where he pitched his tents; and why does Dan remain in ships? Aser sat down on the sea-coasts, and he will tabernacle at his +5:17 +Or, +places of egress, etc. + ports. + +The people Zabulon +5:18 +Lit. +reproached. + exposed their soul to death, and Nephthali came to the high places of their land. + +Kings set themselves in array, then the kings of Chanaan fought in Thanaach at the water of Mageddo; they took no gift of money. + +The stars from heaven set themselves in array, they set themselves +to fight with Sisara out of their paths. + +The brook of Kison swept them away, the ancient brook, the brook Kison: my mighty soul will trample him down. + +When the hoofs of the horse were entangled, his mighty ones earnestly hasted + +to curse Meroz: Curse you⌃ +it, said the angel of the Lord; cursed +is every one that dwells in it, because they came not to the help of the Lord, to his help among the mighty. + +Blessed among women be Jael wife of Chaber the Kenite; let her be blessed above women in tents. + +He asked for water, she gave him milk in a dish; she brought butter of princes. + +She stretched forth her left hand to +5:26 +Or, +pin of the tent. + the nail, and her right to the hand workman's hammer, and she +5:26 +Lit. +hammered. + struck Sisara with it, she nailed through his head and struck him; she nailed through his temples. + +He rolled down between her feet; he fell and lay between her feet; he bowed and fell: where he bowed, there he fell +5:27 +q.d. +having departed this life. + dead. + +The mother of Sisara looked down through the window out of the loophole, +saying, Why was his chariot ashamed? why did the +5:28 +Or, +feet of his horses. +lit. +feet of his chariots. + wheels of his chariots wait? + +Her wise ladies answered her, and she returned answers to herself, +saying, + +Will they not find him dividing the spoil? he will surely +5:30 +i.e. +be gracious and kind in allowing the claim of each to a share. + be gracious to every man: +there are spoils of dyed garments for Sisara, spoils of various dyed garments, dyed embroidered garments, they +are the spoils for his neck. + +Thus let all your enemies perish, O Lord: and they that love him shall be as the going forth of the sun in his strength. + +And the land had rest forty years. + +

+ + +

And the children of Israel did evil in the sight of the Lord, and the Lord gave them into the hand of Madiam seven years. + +And the hand of Madiam prevailed against Israel: and the children of Israel made for themselves because of Madiam the caves in the mountains, and the dens, and the +6:2 +some read κρεμαστὰ ὀχυρώμασι, +q.d. loca +pensilia. + holes in the rocks. + +And it came to pass when the children of Israel sowed, that Madiam and Amalec went up, and the children of the east went up together with them. + +And they encamped against them, and destroyed their fruits until they came to Gaza; and they left not the support of life in the land of Israel, not even ox or ass among the herds. + +For they and their stock came up, and their tents were with them, as the locust in multitude, and there was no number to them and their camels; and they came to the land of Israel, and laid it waste. + +And Israel was greatly impoverished +6:6 +Gr. +from before the face of. + because of Madiam. + +And the children of Israel cried to the Lord +6:7 +Gr. +from before the face of. + because of Madiam. + +And the Lord sent +6:8 +Gr. +a man a prophet. + a prophet to the children of Israel; and he said to them, Thus says the Lord God of Israel, I am he that brought you up out of the land of Egypt, and I brought you up out of the house of your bondage. + +And I delivered you out of the hand of Egypt, and out of the hand of all that afflicted you, and I cast them out before you; and I gave you their land. + +And I said to you, I +am the Lord your God: you⌃ shall not fear the gods of the Amorites, in whose land you⌃ dwell; but you⌃ listened not to my voice. + +And an angel of the Lord came, and sat down under the fir tree, which was in Ephratha in the land of Joas father of Esdri; and Gedeon his son +was threshing wheat in a wine-press in order to escape from the face of Madiam. + +And the angel of the Lord appeared to him and said to him, The Lord +is with you, you mighty in strength. + +And Gedeon said to him, +Be gracious +6:13 +Heb. כי a particle of entreaty, here rendered literally. + with me, my Lord: but if the Lord is with us, why have these evils found us? and where are all his miracles, which our fathers have related to us, saying, Did not the Lord bring us up out of Egypt? and now he has cast us out, and given us into the hand of Madiam. + +And the angel of the Lord turned to him, and said, Go in this your strength, and you shall save Israel out of the hand of Madiam: behold, I have sent you. + +And Gedeon said to him, +Be gracious with me, my Lord: whereby shall I save Israel? behold, my thousand is weakened in Manasse, and I am the least in my father's house. + +And the angel of the Lord said to him, The Lord shall be with you, and you shall strike Madiam as one man. + +And Gedeon said to him, If now I have found mercy in your eyes, and you will do this day for me all that you have spoken of with me, + +depart not hence until I come to you, and I will bring forth an offering and offer it before you: and he said, I will remain until you return. + +And Gedeon went in, and prepared a kid of the goats, and an ephah of fine flour unleavened; and he put the flesh in the basket, and poured the broth into the pot, and brought them forth to him under the turpentine tree, and drew near. + +And the angel of God said to him, Take the flesh and the unleavened cakes, and put them on that rock, and pour out the broth close by: and he did so. + +And the angel of the Lord stretched out the end of the rod that was in his hand, and touched the flesh and the unleavened bread; and fire came up out of the rock, and consumed the flesh and the unleavened bread, and the angel of the Lord vanished from his sight. + +And Gedeon saw that he was an angel of the Lord; and Gedeon said, Ah, ah, Lord my God! for I have seen the angel of the Lord face to face. + +And the Lord said to him, Peace be to you, fear not, you shall not die. + +And Gedeon built there an altar to the Lord, and called it The peace of the Lord, until this day, as it is still in Ephratha of the father of Esdri. + +And it came to pass in that night, that the Lord said to him, Take the young bullock which your father has, even the second bullock of seven years old, and you shall destroy the altar of Baal which your father has, and the grove which is by it you shall destroy. + +And you shall build an altar to the Lord your God on the top of this Maozi in +6:26 +Or, +the ordered place. + the orderingit, and you shall take the second bullock, and shall offer up whole burnt offerings with the wood of the grove, which you shall destroy. + +And Gedeon took ten men of his servants, and did as the Lord spoke to him: and it came to pass, as he feared the house of his father and the men of the city +6:27 +Or, +because of the doing it. + if he should do it by day, that he did it by night. + +And the men of the city rose up early in the morning; and behold, the altar of Baal had been demolished, and the grove by it had been destroyed; and they saw the second bullock, which Gedeon offered on the altar that had been built. + +And a man said to his neighbor, Who has done this thing? and they enquired and searched, and learned that Gedeon the son of Joas had done this thing. + +And the men of the city said to Joas, Bring out your son, and let him die, because he has destroyed the altar of Baal, and because he has destroyed the grove that is by it. + +And Gedeon the son of Joas said to all the men who rose up against him, Do you⌃ now plead for Baal, or will you⌃ save him? whoever will plead for him, let him be slain this morning: if he be a god let him plead for himself, +because one has thrown down his altar. + +And he called it in that day Jerobaal, saying, Let Baal plead thereby, because his altar has been thrown down. + +And all Madiam, and Amalek, and the sons of the east gathered themselves together, and encamped in the valley of Jezrael. + +And the Spirit of the Lord came upon Gedeon, and he blew with the horn, and Abiezer came to help after him. + +And +Gedeon sent messengers into all Manasse, and into Aser, and +6:35 +Gr. +in. + into Zabulon, and into Nephthali; and he went up to meet them. + +And Gedeon said to God, If you will save Israel by my hand, as you have said, + +behold, I put the fleece of wool in the threshing floor: if there be dew on the fleece only, and drought on all the ground, I shall know that you will save Israel by my hand, as you have said. + +And it was so: and he rose up early in the morning, and wrung the fleece, and dew dropped from the fleece, a bowl full of water. + +And Gedeon said to God, Let not, I pray you, your anger be kindled with me, and I will speak yet once; I will even yet make one trial more with the fleece: let now the drought be upon the fleece only, and let there be dew on all the ground. + +And God did so in that night; and there was drought on the fleece only, and on all the ground there was dew. + +

+ + +

And Jerobaal rose early, the same is Gedeon, and all the people with him, and encamped at the fountain of Arad; and the camp of Madiam was to the north of him, +reaching from Gabaathamorai, in the valley. + +And the Lord said to Gedeon, The people with you +are many, so that I may not deliver Madiam into their hand, lest at any time Israel boast against me, saying, My hand has saved me. + +And now speak in the ears of the people, saying, Who +is afraid and fearful? let him turn and depart from mount Galaad: and there returned of the people twenty-two thousand, and ten thousand were left. + +And the Lord said to Gedeon, The people is yet numerous; bring them down to the water, and I will purge them there for you: and it shall come to pass that of whoever I shall say to you, This one shall go with you, +even he shall go with you; and of whoever I shall say to you, This one shall not go with you, +even he shall not go with you. + +And he brought the people down to the water; and the Lord said to Gedeon, Whosoever shall lap of the water with his tongue as if a dog should lap, you shall set him apart, and +also whoever shall bow down upon his knees to drink. + +And the number of those that lapped with their hand to their mouth was three hundred men; and all the rest of the people bowed upon their knees to drink water. + +And the Lord said to Gedeon, I will save you by the three hundred men that lapped, and I will give Madiam into your hand; and all the +rest of the people shall go every one to his place. + +And they took the provision of the people in their hand, and their horns; and he sent away every man of Israel each to his tent, and he +7:8 +Or, +encouraged. + strengthened the three hundred; and the army of Madiam were beneath him in the valley. + +And it came to pass in that night that the Lord said to him, Arise, go down into the camp, for I have delivered it into your hand. + +And if you are afraid to go down, go down you and your servant Phara into the camp. + +And you shall hear what they shall say, and afterwards your hands shall be strong, and you shall go down into the camp: and he went down and Phara his servant to the extremity of the +companies of fifty, which were in the camp. + +And Madiam and Amalec and all the children of the east +were scattered in the valley, as the locust for multitude; and there was no number to their camels, but they were as the sand on the seashore for multitude. + +And Gedeon came, and behold a man +was relating to his neighbor a dream, and he said, Behold, I have dreamed a dream, and behold, a cake of barley bread rolling into the camp of Madiam, and it came as far as a tent, and struck it, and it fell, and it turned it up, and the tent fell. + +And his neighbor answered and said, This is none other than the sword of Gedeon, son of Joas, a man of Israel: God has delivered Madiam and all the host into his hand. + +And it came to pass when Gedeon heard the account of the dream and the interpretation of it, that he worshipped the Lord, and returned to the camp of Israel, and said, Rise, for the Lord has delivered the camp of Madiam into our hand. + +And he divided the three hundred men into three companies, and put horns in the +7:16 +Gr. +hand. + hands of all, and empty pitchers, and torches in the pitchers: + +and he said to them, You⌃ shall look +7:17 +Gr. +from. +q.d. +at the actions proceeding from me. + at me, and so shall you⌃ do; and behold, I will go into the +7:17 +Or, +corner. See Acts 10:11. + beginning of the host, and it shall come to pass +that as I do, so shall you⌃ do. + +And I will sound with the horn, and all you⌃ with me shall sound with the horn round about the whole camp, and you⌃ shall say, For the Lord and Gedeon. + +And Gedeon and the hundred men that were with him came to the extremity of the army in the beginning of the middle watch; and they completely roused the guards, and sounded with the horns, and they +7:19 +Gr. +shook off. + broke the pitchers that were in their hands, + +and the three companies sounded with the horns, and broke the pitchers, and held the torches in their left hands, and in their right hands their horns to sound with; and they cried out, A sword for the Lord and for Gedeon. + +And +every man stood in his place round about the host; and all the host ran, and sounded +an alarm, and fled. + +And they sounded with the three hundred horns; and the Lord set +every man's sword in all the host against his neighbor. + +And the host fled as far as Bethseed Tagaragatha Abel-meula to Tabath; and the men of Israel from Nephthali, and from Aser, and from all Manasse, came to help, and followed after Madiam. + +And Gedeon sent messengers +7:24 +Gr. +in. + into all mount Ephraim, saying, Come down to meet Madiam, and take to yourselves the water as far as Baethera and Jordan: and every man of Ephraim cried out, and they took the water before hand to Baethera and Jordan. + +And they took the princes of Madiam, even Oreb and Zeb; and they killed Oreb in Sur Oreb, and they killed Zeb in Jakephzeph; and they pursued Madiam, and brought the +7:25 +Gr. +head. + heads of Oreb and Zeb to Gedeon from beyond Jordan. + +

+ + +

And the men of Ephraim said to Gedeon, What +is this +that you have done to us, in that you did not call us when you went to fight with Madiam? and they chode with him sharply. + +And he said to them, What have I now done in comparison of you? +is not the gleaning of Ephraim better than the vintage of Abiezer? + +The Lord has delivered into your hand the princes of Madiam, Oreb and Zeb; and what could I do in comparison of you? Then was their spirit calmed toward him, when he spoke this word. + +And Gedeon came to Jordan, and went over, himself and the three hundred with him, hungry, yet pursuing. + +And he said to the men of Socchoth, Give, I pray you, bread to feed this people that follow me; because they are faint, and behold, I am following after Zebee and Salmana, kings of Madiam. + +And the princes of Socchoth said, +8:6 +Gr. is +the hand. + +Are the hands of Zebee and Salmana now in your hand, that we should give bread to your host? + +And Gedeon said, Therefore when the Lord gives Zebee and Salmana into my hand, then will I +8:7 +Gr. +dig down. + tear your flesh with the thorns of the wilderness, and the Barkenim. + +And he went up thence to Phanuel, and spoke to them likewise: and the men of Phanuel answered him as the men of Socchoth +had answered him. + +And Gedeon said to the men of Phanuel, When I return in peace, I will +8:9 +Gr. +thresh. + break down this tower. + +And Zebee and Salmana +were in Carcar, and their host +was with them, about fifteen thousand, all that were left of all the host of the aliens; and they that fell +were one hundred and twenty thousand men that drew the sword. + +And Gedeon went up by the way of them that lived in tents, eastward of Nabai and Jegebal; and he struck the host, and the host was secure. + +And Zebee and Salmana fled; and he pursued after them, and took the two kings of Madiam, Zebee and Salmana, and discomfited all the army. + +And Gedeon the son of Joas returned from the +8:13 +Gr. +array. + battle, down from the battle of Ares. + +And he took prisoner a young lad of the men of Socchoth, and questioned him; and he wrote to him the names of the princes of Socchoth and of their elders, seventy-seven men. + +And Gedeon came to the princes of Socchoth, and said, Behold Zebee and Salmana, about whom you⌃ reproached me, saying, +Are the hands of Zebee and Salmana now in your hand, that we should give bread to your men that are faint? + +And he took the elders of the city with the thorns of the wilderness and the Barkenim, and with them he tore the men of the city. + +And he overthrew the tower of Phanuel, and killed the men of the city. + +And he said to Zebee and Salmana, Where +are the men whom you⌃ killed in Thabor? and they said, As you, so +were they, according to the likeness of the son of a king. + +And Gedeon said, They were my brethren and the sons of my mother: +as the Lord lives, if you⌃ had preserved them alive, I would not have slain you. + +And he said to Jether his firstborn, Rise and kill them; but the lad drew not his sword, for he was afraid, for he was yet very young. + +And Zebee and Salmana said, Rise you and fall upon us, for your power +is as that of a man; and Gedeon arose, and killed Zebee and Salmana: and he took the +8:21 +i.e. +round like the moon; perhaps circular, or in the form of a crescent. + round ornaments that were on the necks of their camels. + +And the men of Israel said to Gedeon, Rule, +my lord, over us, both you, and your son, and your son's son; for you have saved us out of the hand of Madiam. + +And Gedeon said to them, I will not rule, and my son shall not rule among you; the Lord shall rule over you. + +And Gedeon said to them, I will make a request of you, and do you⌃ give me every man an earring out of his spoils: for they had golden earrings, for they were Ismaelites. + +And they said, +8:25 +Gr. +giving we will give. + We will certainly give them: and he opened his garment, and each man cast therein an earring of his spoils. + +And the weight of the golden earrings which he asked, was a thousand and seven hundred pieces of gold, besides the crescents, and the chains, and the garments, and the purple cloths that were on the kings of Madiam, and besides the chains that were on the necks of their camels. + +And Gedeon made an ephod of it, an set it in his city in Ephratha; and all Israel went there a whoring after it, and it became a stumbling block to Gedeon and his house. + +And Madiam, was straitened before the children of Israel, and they did not lift up their head any more; and the land had rest forty years in the days of Gedeon. + +And Jerobaal the son of Joas went and sat in his house. + +And Gedeon had seventy sons begotten of his body, for he had many wives. + +And his concubine was in Sychem, and she also bore him a son, and gave him the name Abimelech. + +And Gedeon son of Joas died in his city, and he was buried in the sepulchre of Joas his father in Ephratha of Abi-Esdri. + +And it came to pass when Gedeon was dead, that the children of Israel turned, and went a whoring after Baalim, and made for themselves a covenant with Baal that he should be their god. + +And the children of Israel remembered not the Lord their God who had delivered them out of the hand of all that afflicted them round about. + +And they did not deal mercifully with the house of Jerobaal, (the same is Gedeon) according to all the good which he did +8:35 +Gr. +with. + to Israel. + +

+ + +

And Abimelech son of Jerobaal went to Sychem to his mother's brethren; and he spoke to them and to all the kindred of the house of his mother's father, saying, + +Speak, I pray you, in the ears of all the men of Sychem, saying, Which +is better for you, that seventy men, even all the sons of Jerobaal, should reign over you, or that one man should reign over you? and remember that I am your bone and your flesh. + +And his mother's brethren spoke concerning him in the ears of all the men of Sychem all these words; and their heart turned after Abimelech, for they said, He is our brother. + +And they gave him seventy +pieces of silver out of the house of Baalberith; and Abimelech hired for himself vain and cowardly men, and they went after him. + +And he went to the house of his father to Ephratha, and killed his brethren the sons of Jerobaal, seventy men upon one stone; but Joatham the youngest son of Jerobaal was left, for he hid himself. + +And all the men of Sicima, and all the house of Bethmaalo, were gathered together, and they went and made Abimelech king by the oak +9:6 +Heb. מעכ. this is an instance of double translation, στάσεως being given for מעכ, and εὐρετῆ having reference to the word מעא +to find; +but +Alex. +rightly omits εὐρετῆ. + of Sedition, which was at Sicima. + +And it was reported to Joatham, and he went and stood on the top of mount Garizin, and lifted up his voice, and wept, and said to them, Hear me, you⌃ men of Sicima, and God shall hear you. + +The trees +9:8 +Gr. +went going. + went forth on a time to anoint a king over them; and they said to the olive, Reign over us. + +But the olives said to them, Shall I leave my fatness, with which men shall glorify God, and go to be +9:9 +Gr. +moved. + promoted over the trees? + +And the trees said to the fig tree, Come, reign over us. + +But the fig tree said to them, Shall I leave my sweetness and my good fruits, and go to be promoted over the trees? + +And the trees said to the vine, Come, reign over us. + +And the vine said to them, Shall I leave my wine that cheers God and men, and go to be promoted over the trees? + +Then all the trees said to the bramble, Come you and +reign over us. + +And the bramble said to the trees, If you⌃ in truth anoint me to reign over you, come, stand under my shadow; and if not, let fire come out from me and devour the cedars of Libanus. + +And now, if you⌃ have done it in truth and integrity, and have made Abimelech king, and if you⌃ have wrought well with Jerobaal, and with his house, and if you⌃ have done to him according to the reward of his hand, + +as my father fought for you, and put his life in jeopardy, and delivered you out of the hand of Madiam; + +and you⌃ are risen up this day against the house of my father, and have slain his sons, being seventy men, upon one stone, and have made Abimelech the son of his bondwoman king over the men of Sicima, because he is your brother: + +if then you⌃ have done truly and faithfully with Jerobaal, and with his house this day, rejoice you⌃ in Abimelech, and let him also rejoice over you: + +but if not, let fire come out from Abimelech, and devour the men of Sicima, and the house of Bethmaalo; and let fire come out from the men of Sicima and from the house of Bethmaalo, and devour Abimelech. + +And Joatham fled, and ran away, and went as far as Baeer, and lived there out of the way of his brother Abimelech. + +And Abimelech reigned over Israel three years. + +And God sent an evil spirit between Abimelech and the men of Sicima; and the men of Sicima +9:23 +Or, +despised. + dealt treacherously +9:23 +Or, +in the house. +Hebraism. with the house of Abimelech: + +to bring the injury done to the seventy sons of Jerobaal, and to lay their blood upon their brother Abimelech, who killed them, and upon the men of Sicima, because they strengthened his hands to kill his brethren. + +And the men of Sicima set liers in wait against him on the top of the mountains, and robbed every one who passed by them on the way; and it was reported to the king Abimelech. + +And Gaal son of Jobel came, and his brethren, and passed by Sicima, and the men of Sicima trusted in him. + +And they went out into the field, and gathered their +9:27 +Gr. +vines. + grapes, and trod them, and +9:27 +Gr. +made +ellulim, +a Hebrew word. +Alex. +χορὺς + made merry; and they brought +the grapes into the house of their god, and ate and drank, and cursed Abimelech. + +And Gaal the son of Jobel said, Who is Abimelech, and who is the son of Sychem, that we should serve him? +Is he not the son of Jerobaal, and +is not Zebul his steward, his servant with the son of Emmor the father of Sychem? and why should we serve him? + +And would that this people were under my hand! +9:29 +Gr. +and I will. + then would I remove Abimelech, and I would say to him, Multiply your host, and come out. + +And Zebul the ruler of the city heard the words of Gaal the son of Jobel, and he was very angry. + +And he sent messengers to Abimelech secretly, saying, Behold, Gaal the son of Jobel and his brethren are come to Sychem; and behold, they have besieged the city against you. + +And now rise up by night, you and the people with you, and lay wait in the field. + +And it shall come to pass in the morning at sunrising, you shall rise up early and draw toward the city; and behold, he and the people with him +9:33 +Gr. +are coming, etc. + will come forth against you, and you shall do to him +9:33 +Gr. +whatever they hand shall find. + according to your power. + +And Abimelech and all the people with him rose up by night, and formed an ambuscade against Sychem in four companies. + +And Gaal the son of Jobel went forth, and stood by the door of the gate of the city: and Abimelech and the people with him rose up from the ambuscade. + +And Gaal the son of Jobel saw the people, and said to Zebul, Behold, a people comes down from the top of the mountains: and Zebul said to him, You see the shadow of the mountains as men. + +And Gaal continued to speak and said, Behold, a people comes down +9:37 +Or, +by the sea. A double rendering, perhaps to מעס, the first κατὰ θάλασσαν - the second, ὐπὸ τοῦ ἐχόμενα. + westward from the part bordering on the middle of the land, and another company comes by +9:37 +Alex. +translates the words +“the way of the oak of the seers.” the way of Helon Maonenim. + +And Zebul said to him, And where is your mouth as you spoke, Who is Abimelech that we should serve him? +Is not this the people whom you despised? go forth now, and set the battle in array against him. + +And Gaal went forth before the men of Sychem, and set the battle in array against Abimelech. + +And Abimelech pursued him, and he fled from before him; and many fell down slain as far as the door of the gate. + +And Abimelech entered into Arema, and Zebul cast out Gaal and his brethren, so that they should not dwell in Sychem. + +And it came to pass on the second day that the people went out into the field, and +one brought word to Abimelech. + +And he took the people, and divided them into three companies, and formed an ambush in the field; and he looked, and, behold, the people went forth out of the city, and he rose up against them, and struck them. + +And Abimelech and the chiefs of companies that were with him rushed forward, and stood by the door of the gate of the city; and the two +other companies rushed forward upon all that were in the field, and struck them. + +And Abimelech fought against the city all that day, and took the city, and killed the people that were in it, and destroyed the city, and sowed it with salt. + +And all the men of the tower of Sychem heard, and came to the +9:46 +Some read ὀχύρωμα. + gathering of Baethel-berith. + +And it was reported to Abimelech, that all the men of the tower of Sychem were gathered together. + +And Abimelech went up to the mount of Selmon, and all the people that were with him; and Abimelech took +9:48 +Gr. +axes. + an axe in his hand, and cut down a branch of a tree, and took it, and laid it on his shoulders; and said to the people that were with him, What you⌃ see me doing, do quickly as I. + +And they cut down likewise even every man a branch, and went after Abimelech, and laid them against the place of gathering, and burnt the place of gathering over them with fire; and they died, even all the men of the tower of Sicima, about a thousand men and women. + +And Abimelech went out of Baethel-berith, and encamped against +9:50 +Gr. +in. + Thebes, and took it. + +And there was a strong tower in the midst of the city; and there all the men and the women of the city fled, and shut +the door without them, and went up on the roof of the tower. + +And Abimelech drew near to the tower, and they besieged it; and Abimelech drew near to the door of the tower to burn it with fire. + +And a woman cast a piece of a millstone upon the head of Abimelech, and broke his skull. + +And he cried out quickly to the young man his armor-bearer, and said to him, Draw your sword, and kill me, lest at any time they should say, A woman killed him: and his young man thrust him through and he died. + +And the men of Israel saw that Abimelech was dead; and they went each to his place. + +So God requited the wickedness of Abimelech, which he wrought against his father, in slaying his seventy brethren. + +And all the wickedness of the men of Sychem God requited upon their head; and the curse of Joatham the son of Jerobaal came upon them. + +

+ + +

And after Abimelech Thola the son of Phua rose up to save Israel, +being the son of +10:1 +i.e. +Abimelech's. + his father's brother, a man of Issachar; and he lived in Samir in mount Ephraim. + +And he judged Israel twenty-three years, and died, and was buried in Samir. + +And after him arose Jair of Galaad, and he judged Israel twenty-two years. + +And he had thirty-two sons riding on thirty-two colts, and they had thirty-two cities; and they called them Jair's towns until this day in the land of Galaad. + +And Jair died, and was buried in Rhamnon. + +And the children of Israel did evil again in the sight of the Lord, and served Baalim, and Astaroth, and the gods of Aram, and the gods of Sidon, and the gods of Moab, and the gods of the children of Ammon, and the gods of the Phylistines; and they forsook the Lord, and did not serve him. + +And the Lord was very angry with Israel, and sold them into the hands of the Phylistines, and into the hand of the children of Ammon. + +And they afflicted and bruised the children of Israel at that time eighteen years, all the children of Israel beyond Jordan in the land of the Amorite in Galaad. + +And the children of Ammon went over Jordan to fight with Juda, and Benjamin, and with Ephraim; and the children of Israel were greatly afflicted. + +And the children of Israel cried to the Lord, saying, We have sinned against you, because we have forsaken God, and served Baalim. + +And the Lord said to the children of Israel, Did I not +save you from Egypt and from the Amorite, and from the children of Ammon, and from the Phylistines, + +and from the Sidonians, and Amalec, and Madiam, who afflicted you? and you⌃ cried to me, and I saved you out of their hand? + +Yet you⌃ forsook me and served other gods; therefore I will not save you any more. + +Go, and cry to the gods whom you⌃ have chosen to yourselves, and let them save you in the time of your affliction. + +And the children of Israel said to the Lord, We have sinned: do you to us according to all +that is good in your eyes; only deliver us this day. + +And they put away the strange gods from the midst of them, and served the Lord only, and his soul was pained for the trouble of Israel. + +And the children of Ammon went up, and encamped in Galaad; and the children of Israel were gathered together and encamped +10:17 +Or, +near the watch-tower. +Heb. מעפה, name of a town. + on the hill. + +And the people the princes of Galaad said every man to his neighbor, Who +is he that shall begin to fight against the children of Ammon? he shall even be head over all that dwell in Galaad. + +

+ + +

And Jephthae the Galaadite +was +11:1 +Gr. +exalted in strength. + a mighty man; and he +was the son of a harlot, who bore Jephthae to Galaad. + +And the wife of Galaad bore him sons; and the sons of his wife grew up, and they cast out Jephthae, and said to him, You shall not inherit in the house of our father, for you are the son of a concubine. + +And Jephthae fled from the face of his brethren, and lived in the land of Tob; and vain men gathered to Jephthae, and went out with him. + +And it came to pass when the children of Ammon prepared to fight with Israel, + +that the elders of Galaad went to fetch Jephthae from the land of Tob. + +And they said to Jephthae, Come, and be our head, and we will fight with the sons of Ammon. + +And Jephthae said to the elders of Galaad, Did you⌃ not hate me, and cast me out of my father's house, and banish me from you? and therefore are you⌃ come to me now when you⌃ lack me? + +And the elders of Galaad said to Jephthae, Therefore have we now turned to you, +11:8 +Gr. +and you shall. + that you should go with us, and fight against the sons of Ammon, and be our head over all the inhabitants of Galaad. + +And Jephthae said to the elders of Galaad, If you⌃ turn me back to fight with the children of Ammon, and the Lord should deliver them before me, then will I be your head. + +And the elders of Galaad said to Jephthae, The Lord be witness between us, if we shall not do according to your word. + +And Jephthae went with the elders of Galaad, and the people made him head and ruler over them: and Jephthae spoke all his words before the Lord in Massepha. + +And Jephthae sent messengers to the king of the children of Ammon, saying, What have I to do with you, that you have come against me to fight in my land? + +And the king of the children of Ammon said to the messengers of Jephthae, Because Israel took my land when he went up out of Egypt, from Arnon to Jaboc, and to Jordan: now then return them peaceably and I will depart. + +And Jephthae again sent messengers to the king of the children of Ammon, + +and said to him, Thus says Jephthae, Israel took not the land of Moab, nor the land of the children of Ammon; + +for in their going up out of Egypt Israel went in the wilderness as far as the sea of Siph, and came to Cades. + +And Israel sent messengers to the king of Edom, saying, I will pass, if it please you, by your land: and the king of Edom +11:17 +Gr. +heard not. + complied not: and +Israel also sent to the king of Moab, and he did not consent; and Israel sojourned in Cades. + +And +they journeyed in the wilderness, and compassed the land of Edom and the land of Moab: and they came by the east of the land of Moab, and encamped in the country beyond Arnon, and came not within the borders of Moab, for Arnon +is the border of Moab. + +And Israel sent messengers to Seon king of the Amorite, king of Esbon, and Israel said to him, Let us pass, we pray you, by your land to our place. + +And Seon did not trust Israel to pass by his coast; and Seon gathered all his people, and they encamped at Jasa; and he set the battle in array against Israel. + +And the Lord God of Israel delivered Seon and all his people into the hand of Israel, and they struck him; and Israel inherited all the land of the Amorite who lived in that land, + +from Arnon and to Jaboc, and from the wilderness to Jordan. + +And now the Lord God of Israel has removed the Amorite from before his people Israel, and shall you inherit +11:23 +Gr. +him. + his +land? + +Will you not inherit those possessions which Chamos your god shall cause you to inherit; and shall not we inherit the +land of all those whom the Lord our God has removed from before +11:24 +So the text; but ἡμῶν, +us +is undoubtedly the true reading. + you? + +And now are you any better than Balac son of Sepphor, king of Moab? did he indeed fight with Israel, or indeed make war with him, + +when +Israel lived in Esebon and in its coasts, and in the land of Aroer and in its coasts, and in all the cities by Jordan, three hundred years? and therefore did you not +11:26 +Or, +redeem. + recover them in that time? + +And now +11:27 +the verb εἰμὶ is merely redundant after the pronoun ἐγὼ in these instances. + I have not sinned against you, but you wrong me in preparing war against me: may the Lord the Judge judge this day between the children of Israel and the children of Ammon. + +But the king of the children of Ammon listened not to the words of Jephthae, which he sent to him. + +And the spirit of the Lord came upon Jephthae, and he passed over Galaad, and Manasse, and passed by the watch-tower of Galaad to the other side of the children of Ammon. + +And Jephthae vowed a vow to the Lord, and said, If you will indeed deliver the children of Ammon into my hand, + +then it shall come to pass that whoever shall first come out of the door of my house to meet me when I return in peace from the children of Ammon, he shall be the Lord's: I will offer him up for a whole burnt offering. + +And Jephthae advanced to meet the sons of Ammon to fight against them; and the Lord delivered them into his hand. + +And he struck them from Aroer till +one comes to Arnon, in number twenty cities, and as far as Ebelcharmim, with a very great destruction: and the children of Ammon were straitened before the children of Israel. + +And Jephthae came to Massepha to his house; and behold, his daughter came forth to meet him with timbrels and dances; and she was his only child, he had not another son or daughter. + +And it came to pass when he saw her, that he tore his garments, and said, Ah, ah, my daughter, you have indeed troubled me, and you were the cause of my trouble; and I have opened my mouth against you to the Lord, and I shall not be able to return from it. + +And she said to him, Father, have you opened your mouth to the Lord? Do to me accordingly as +the word went out of your mouth, in that the Lord has wrought vengeance for you on your enemies of the children of Ammon. + +And she said to her father, Let my father now do this thing: let me alone for two months, and I will go up and down on the mountains, and I will bewail my virginity, I and my companions. + +And he said, Go: and he sent her away for two months; and she went, and her companions, and she bewailed her virginity on the mountains. + +And it came to pass at the end of the two months that she returned to her father; and he performed upon her his vow which he vowed; and she knew no man: + +and it was an ordinance in Israel, +That the daughters of Israel went from +11:40 +Period of days, +i.e. +year. + year to year to bewail the daughter of Jephthae the Galaadite for four days in a year. + +

+ + +

And the men of Ephraim +12:1 +i.e. +by calling. + assembled +themselves, and passed on to the north, and said to Jephthae, Therefore did you go over to fight with the children of Ammon, and did not call us to go with you? we will burn your house over you with fire. + +And Jephthae said to them, +12:2 +Gr. +I was a man, a warrior. + I and my people and the children of Ammon were very much engaged in war; and I called for you, and you⌃ did not save me out of their hand. + +And I saw that you +12:3 +Gr. +are. + were no +12:3 +Gr. +savior or deliverer. + helper, and I put my life in my hand, and passed on to the sons of Ammon; and the Lord delivered them into my hand: and therefore are you⌃ come up against me this day to fight with me? + +And Jephthae gathered all the men of Galaad, and fought with Ephraim; and the men of Galaad struck Ephraim, because they that were escaped of Ephraim said, You⌃ +are of Galaad in the midst of Ephraim and in the midst of Manasse. + +And Galaad took the fords of Jordan before Ephraim; and they that escaped of Ephraim said to them, Let us go over: and the men of Galaad said, Are you an Ephrathite? and he said, No. + +Then they said to him, Say now +12:6 +Heb. שבלה, “Shibboleth,” ear of corn. If translated at all, the English may as well be put as the Greek. +Alex. +σύνθημα, +q.d. +watchword. + Stachys; and he did not rightly pronounce it so: and they took him, and killed him at the fords of Jordan; and there fell at that time of Ephraim two and forty thousand. + +And Jephthae judged Israel six years; and Jephthae the Galaadite died, and was buried in his city Galaad. + +And after him Abaissan of Bethleem judged Israel. + +And he had thirty sons, and thirty daughters, whom he sent forth; and he brought in thirty daughters for his sons from without; and he judged Israel seven years. + +And Abaissan died, and was buried in Bethleem. + +And after him Aelom of Zabulon judged Israel ten years. + +And Aelom of Zabulon died, and was buried in Aelom in the land of Zabulon. + +And after him Abdon the son of Ellel, the Pharathonite, judged Israel. + +And he had forty sons, and thirty grandsons, that rode upon seventy colts: and he judged Israel eight years. + +And Abdon the son of Ellel, the Pharathonite, died, and was buried in Pharathon in the land of Ephraim in the mount of Amalec. + +

+ + +

And the children of Israel yet again committed iniquity before the Lord; and the Lord delivered them into the hand of the Phylistines forty years. + +And there was a man of Saraa, of the family of the kindred of Dan, and his name was Manoe, and his wife was barren, and bore not. + +And an angel of the Lord appeared to the woman, and said to her, Behold, you are barren and have not born; yet you shall conceive a son. + +And now be very cautious, and drink no wine nor strong drink, and eat no unclean thing; + +for behold, you are with child, and shall bring forth a son; and there shall come no +13:5 +Gr. +iron. + razor upon his head, for the child shall be a +13:5 +So +Vat. i.e. +Ναζίρ but +Alex. +nearer to reading in Matt. 2. ult. Ναζίραῖον. + Nazarite to God from the womb; and he shall begin to save Israel from the hand of the Phylistines. + +And the woman went in, and spoke to her husband, saying, A man of God came to me, and his appearance +was as of an angel of God, very dreadful; and I did not ask him whence he +13:6 +Gr. +is. + was, and he did not tell me his name. + +And he said to me, Behold, you are with child, and shall bring forth a son; and now drink no wine nor strong drink, and eat no unclean thing; for the child shall be holy to God from the womb until the day of his death. + +And Manoe prayed to the Lord and said, +13:8 +See chap 6. 13, 15. + I pray you, O Lord my lord, +concerning the man of God whom you sent; let him now come to us once more, and teach us what we shall do to the child about to be born. + +And the Lord heard the voice of Manoe, and the angel of God came yet again to the woman; and she sat in the field, and Manoe her husband was not with her. + +And the woman hasted, and ran, and brought word to her husband, and said to him, Behold the man who came in +the other day to me has appeared to me. + +And Manoe arose and followed his wife, and came to the man, and said to him, Are you the man that spoke to the woman? and the angel said, I +am. + +And Manoe said, Now shall +your word come to pass: what shall be the +13:12 +Heb. משפס. + ordering of the child, and our dealings with him? + +And the angel of the Lord said to Manoe, Of all things concerning which I spoke to the woman, she shall beware. + +She shall eat of nothing that comes of the vine +13:14 +Gr. +of wine. + yielding wine, and let her not drink wine or strong liquor, and let her not eat anything unclean: all things that I have charged her she shall observe. + +And Manoe said to the angel of the Lord, Let us detain you here, and prepare before you a kid of the goats. + +And the angel of the Lord said to Manoe, If you should detain me, I will not eat of your bread; and if you would offer a whole burnt offering, to the Lord you shall offer it: for Manoe knew not that he +was an angel of the Lord. + +And Manoe said to the angel of the Lord, What +is your name, that +when your word shall come to pass, we may glorify you? + +And the angel of the Lord said to him, Why do you thus ask after my name; whereas it is +13:18 +See Is 9:6. + wonderful? + +And Manoe took a kid of the goats and its meat-offering, and offered it on the rock to the Lord; and +the angel wrought +13:19 +According to the +Heb. a wonderful work. +Alex. +reads τῷ θανμαστὰ ποιοῦντι κυριῷ. + a distinct work, and Manoe and his wife were looking on. + +And it came to pass when the flame went up above the altar toward heaven, that the angel of the Lord went up in the flame; and Manoe and his wife were looking, and they fell upon their face to the earth. + +And the angel appeared no more to Manoe and to his wife: then Manoe knew that this +was an angel of the Lord. + +And Manoe said to his wife, We shall surely die, because we have seen God. + +But his wife said to him, If the Lord were pleased to kill us, he would not have received of our hand a whole burnt offering and a meat-offering; and he would not have shown us all these things, neither would he have caused us to hear all these things +13:23 +Gr. +as the time is. + + +And the woman brought forth a son, and she called his name Sampson; and the child grew, and the Lord blessed him. + +And the Spirit of the Lord began to go out with him in the camp of Dan, and between Saraa and +13:25 +Gr. +between Esthaol. + Esthaol. + +

+ + +

And Sampson went down to Thamnatha, and saw a woman in Thamnatha of the daughters of the +14:1 +Observe, ἀλλόφυλοι here and elsewhere is rendered Philistines. + Philistines. + +And he went up and told his father and his mother, and said, I have seen a woman in Thamnatha of the daughters of the Phylistines; and now take her to me for a wife. + +And his father and his mother said to him, Are there no daughters of your brethren, and +is there not a woman of all my people, that you go to take a wife of the uncircumcised Philistines? And Sampson said to his father, Take her for me, for she +is right in my eyes. + +And his father and his mother knew not that it +14:4 +Gr. +is. + was of the Lord, that he sought to be revenged on the Philistines: and at that time the Philistines lorded it over Israel. + +And Sampson and his father and his mother went down to Thamnatha, and he came to the vineyard of Thamnatha; and behold, a young lion roared +14:5 +Or, +against him. + in meeting him. + +And the spirit of the Lord +14:6 +Gr. +leapt. +Heb. חעלח. + came powerfully upon him, and he crushed him as he +14:6 +Gr. +will crush. + would have crushed a kid of the goats, and there was nothing in his hands: and he told not his father and his mother what he had done. + +And they went down and spoke to the woman, +14:7 +Or, +the thing was right. + and she was pleasing in the eyes of Sampson. + +And after +14:8 +Gr. +days. + some time he returned to take her, and he turned aside to see the carcass of the lion; and behold, a swarm of bees, and honey +were in the mouth of the lion. + +And he took it into his hands, and went on eating, and he went to his father and his mother, and gave to them, and they did eat; but he told them not that he took the honey out of the mouth of the lion. + +And his father went down to the woman, and Sampson made there a +14:10 +i.e. +in the original sense of the word, +a drinking party. banquet for seven days, for so the young men are used to do. + +And it came to pass when they saw him, that they took thirty guests, and they were with him. + +And Sampson said to them, I propound you a riddle: if you⌃ will indeed tell it me, and discover it within the seven days of the feast, I will you give thirty sheets and thirty changes of raiment. + +And if you⌃ can’t tell it me, you⌃ shall give me thirty napkins and thirty +14:13 +Gr. +changeable or changing robes. + changes of apparel: and they said to him, Propound your riddle, and we will hear it. + +And he said to them, Meat came forth of the eater, and sweetness out of the strong: and they could not tell the riddle for three days. + +And it came to pass on the fourth day, that they said to the wife of Sampson, Deceive now your husband, and let him tell you the riddle, lest we burn you and your father's house with fire: did you⌃ invite us to do us violence? + +And Sampson's wife wept before him, and said, You do but hate me, and love me not; for the riddle which you have propounded to the children of my people you have not told me: and Sampson said to her, If I have not told it to my father and my mother, shall I tell it to you? + +And she wept before him the seven days, during which their banquet lasted: and it came to pass on the seventh day, that he told her, because she troubled him; and she told it to the children of her people. + +And the men of the city said to him on the seventh day, before sunrise, What +is sweeter than honey? and what +is stronger than a lion? and Sampson said to them, If you⌃ had not plowed with my heifer, you⌃ would not have known my riddle. + +And the Spirit of the Lord came upon him powerfully, and he went down to Ascalon, and destroyed of +14:19 +Gr. +them. + the inhabitants thirty men, and took their garments, and gave the changes of raiment to them that told the riddle; and Sampson was very angry, and went up to the house of his father. + +And the wife of Sampson was +given to one of his friends, with whom he was on terms of friendship. + +

+ + +

And it came to pass after a time, in the days of wheat harvest, that Sampson visited his wife with a kid, and said, I will go in to my wife even into the chamber: but her father did not suffer him to go in. + +And her father spoke, saying, I said that you did surely hate her, and I gave her to one of your friends: +is not her younger sister better than she? let her be to you instead of her. + +And Sampson said to them, Even for once am I guiltless with regard to the Philistines, in that I do mischief among them. + +And Sampson went and caught three hundred foxes, and took torches, and turned tail to tail, and put a torch between two tails, and fastened it. + +And he set fire to the torches, and sent +the foxes into the corn of the Philistines; and every thing was burnt from the threshing floor to the standing corn, and even to the vineyard and +15:5 +Gr. +olive. + olives. + +And the Philistines said, Who +has done these things? and they said, Sampson the son-in-law of the Thamnite, because he has taken his wife, and given her to one of his friends; and the Philistines went up, and burnt her and her father's house with fire. + +And Sampson said to them, Though you⌃ may have dealt thus with her, verily I will be avenged of you, and afterwards I will cease. + +And he struck them leg on thigh +with a great overthrow; and went down and lived in a cave of the rock Etam. + +And the Philistines went up, and encamped in Juda, and spread themselves abroad in Lechi. + +And the +15:10 +Gr. +man. + men of Juda said, Why are you⌃ come up against us? and the Philistines said, We are come up to bind Sampson, and to do to him as he has done to us. + +And the three thousand men of Juda went down to the hole of the rock Etam, and they said to Sampson, Know you not that the Philistines rule over us? and what +is this +that you have done to us? and Sampson said to them, As they did to me, so have I done to them. + +And they said to him, We are come down to bind you to deliver you into the hand of the Philistines: and Sampson said to them, Swear to me that you⌃ will not fall upon me yourselves. + +And they spoke to him, saying, Nay, but we will only bind you fast, and deliver you into their hand, and will by no means kill you: and they bound him with two new ropes, and brought him from that rock. + +And they came to +15:14 +Gr. +the jaw. + Lechi: and the Philistines shouted, and ran to meet him: and the Spirit of the Lord came mightily upon him, and the ropes that were upon his arms became as tow which is burnt with fire; and his bonds were consumed from off his hands. + +And he found the jaw-bone of an ass that had been cast away, and he put forth his hand and took it, and struck with it a thousand men. + +And Sampson said, With the jaw-bone of an ass I have utterly destroyed them, for with the jaw-bone of an ass I have struck a thousand men. + +And it came to pass when he ceased speaking, that he cast the jaw-bone out of his hand; and he called that place the +15:17 +This, though unusual, is possibly the meaning of ἀναίρεσις here. + Lifting of the jaw-bone. + +And he was very thirsty, and wept before the Lord, and said, You have been well pleased to grant this great deliverance by the hand of your servant, and new shall I die for thirst, and fall into the hand of the uncircumcised? + +And God broke open a hollow place in the jaw, and there came thence water, and he drank; and his spirit returned and he revived: therefore the name of +15:19 +Gr. +it. + the fountain was called 'The well of the invoker,' which is in Lechi, until this day. + +And he judged Israel in the days of the Philistines twenty years. + +

+ + +

And Sampson went to Gaza, and saw there a harlot, and went in to her. + +And it was reported to the Gazites, saying, Sampson is come here: and they compassed him and laid wait for him all night in the gate of the city, and they were quiet all the night, saying, Let us wait till the dawn appear, and we will kill him. + +And Sampson slept till midnight, and rose up at midnight, and took hold of the doors of the gate of the city with the two posts, and lifted them up with the bar, and laid them on his shoulders, and he went up to the top of the mountain that is before Chebron, and laid them there. + +And it came to pass after this that he loved a woman in +16:4 +Alex. +the brook of Sorech. + Alsorech, and her name +was Dalida. + +And the princes of the Philistines came up to her, and said to her, Beguile him, and see wherein his great strength +is, and wherewith we shall prevail against him, and bind him to humble him; and we will give you +16:5 +Gr. +a man. + each eleven hundred +pieces of silver. + +And Dalida said to Sampson, Tell me, I pray you, wherein +is your great strength, and wherewith you shall be bound that you may be humbled. + +And Sampson said to her, If they bind me with seven moist cords that have not been spoiled, then shall I be weak and be as one of ordinary men. + +And the princes of the Philistines brought to her seven moist cords that had not been spoiled, and she bound him with them. + +And the +16:9 +Gr. +ambush, +singular. liers in wait remained with her in the chamber; and she said to him, the Philistines +are upon you, Sampson: and he broke the cords as if any one should break a thread of tow when it has +16:9 +Gr. +smelt. + touched the fire, and his strength was not known. + +And Dalida said to Sampson, Behold, you have cheated me, and told me lies; now then tell me wherewith you shall be bound. + +And he said to her, If they should bind me fast with new ropes with which work has not been done, then shall I be weak, and shall be as another man. + +And Dalida took new ropes, and bound him with them, and the liers in wait came out of the chamber, and she said, The Philistines +are upon you, Sampson: and he broke them off his arms like a thread. + +And Dalida said to Sampson, Behold, you have deceived me, and told me lies; tell me, I entreat you, wherewith you may be bound: and he said to her, If you should weave the seven locks of my head with the web, and should fasten them with the pin into the wall, then shall I be weak as another man. + +And it came to pass when he was asleep, that Dalida took the seven locks of his head, and wove them with the web, and fastened them with the pin into the wall, and she said, The Philistines +are upon you, Sampson: and he awoke out of his sleep, and carried away the pin of the web out of the wall. + +And Dalida said to Sampson, How say you, I love you, when your heart is not with me? this third time you have deceived me, and have not told me wherein +is your great strength. + +And it came to pass as she pressed him sore with her words continually, and straitened him, that his spirit failed almost to death. + +Then he told her all his heart, and said to her, A razor has not come upon my head, because I have been a holy +one of God from my mother's womb; if then I should be shaven, my strength will depart from me, and I shall be weak, and I shall be as all +other men. + +And Dalida saw that he told her all his heart, and she sent and called the princes of the Philistines, saying, Come up yet this once; for he has told me all his heart. And the chiefs of the Philistines went up to her, and brought the money in their hands. + +And Dalida made Sampson sleep upon her knees; and she called a man, and he shaved the seven locks of his head, and she began to +16:19 +This word in LXX. seems generally to have the signification of +“to afflict.” humble him, and his strength departed from him. + +And Dalida said, The Philistines +are upon you, Sampson: and he awoke out of his sleep and said, I will go out as at former times, and shake myself; and he knew not that the Lord was departed from him. + +And the Philistines took him, and +16:21 +Gr. +cut out. + put out his eyes, and brought him down to Gaza, and bound him with fetters of brass; and he ground in the prison-house. + +And the hair of his head began to grow +16:22 +Gr. +as he was shaven. + as before it was shaven. + +And the chiefs of the Philistines met to offer a great sacrifice to their god Dagon, and to make merry; and they said, God has given into our hand our enemy Sampson. + +And the people saw him, and sang praises to their god; for our god, +said they, has delivered into our hand our enemy, who wasted our land, and who multiplied our slain. + +And when their heart was merry, then they said, Call Sampson out of the prison-house, and let him play before us: and they called Sampson out of the prison-house, and he played before them; and they struck him with the palms of their hands, and set him between the pillars. + +And Sampson said to the young man that held his hand, Suffer me to feel the pillars on which the house +rests, and I will stay myself upon them. + +And the house +was full of men and women, and there were all the chiefs of the Philistines, and on the roof +were about three thousand men and women looking at the sports of Sampson. + +And Sampson wept before the Lord, and said, O Lord, my lord, remember me, I pray you, and strengthen me, O God, yet this once, and I will requite one recompense to the Philistines for my two eyes. + +And Sampson took hold of the two pillars of the house on which the house stood, and leaned on them, and laid hold of one with his right hand, and the other with his left. + +And Sampson said, Let my soul perish with the Philistines: and he +16:30 +Gr. +bore; some read ἔκλινεν. + bowed himself mightily; and the house fell upon the princes, and upon all the people that were in it: and the dead whom Sampson killed in his death were more than those whom he killed in his life. + +And his brethren and his father's house went down, and they took him; and they went up and buried him between Saraa and Esthaol in the sepulchre of his father Manoe; and he judged Israel twenty years. + +

+ + +

And there was a man of mount Ephraim, and his name was Michaias. + +And he said to his mother, The eleven hundred pieces of silver which you took of yourself, and +about which you cursed me, and spoke in my ears, behold, the silver +is with me; I took it: and his mother said, Blessed +be my son of the Lord. + +And he restored the eleven hundred pieces of silver to his mother; and his mother said, I had wholly consecrated the money to the Lord out of my hand for my son, to make a graven and a molten +image, and now I will restore it to you. + +But he returned the silver to his mother, and his mother took two hundred pieces of silver, and gave +17:4 +Gr. +it. + them to a silversmith, and he made it a graven and a molten image; and it was in the house of Michaias. + +And the house of Michaias +was to him the house of God, and he made an ephod and theraphin, and he consecrated one of his sons, and he became to him a priest. + +And in those days there was no king in Israel; every man did that which was right in his own eyes. + +And there was a young man in Bethleem of the tribe of Juda, and he +was a Levite, and he was sojourning there. + +And the man departed from Bethleem the city of Juda to sojourn in whatever place he might find; and he came as far as mount Ephraim, and to the house of Michaias to accomplish his journey. + +And Michaias said to him, Whence come you? and he said to him, I am a Levite of Bethleem Juda, and I go to sojourn in any place I may find. + +And Michaias said to him, Dwell with me, and be to me a father and a priest; and I will give you ten pieces of silver by the +17:10 +Heb. ימיס +(year of) days. year, and a change of raiment, and your living. + +And the Levite went and began to dwell with the man; and the young man was to him as one of his sons. + +And Michaias consecrated the Levite, and he became to him a priest, and he was in the house of Michaias. + +And Michaias said, Now I know that the Lord will do me good, because a Levite has become my priest. + +

+ + +

In those days there was no king in Israel; and in those days the tribe of Dan sought for itself an inheritance to inhabit, because no inheritance had fallen to it until that day in the midst of the tribes of the children of Israel. + +And the sons of Dan sent from their families five men of valour, from Saraa and from Esthaol, to spy out the land and to +18:2 +Or, +survey or examine it. + search it; and they said to them, Go and search out the land. And they came as far as the mount of Ephraim to the house of Michaias and they lodged there, + +in the house of Michaias, and they recognized the voice of the young man the Levite, and turned in there; and said to him, Who brought you in hither? and what do you in this place? and what have you here? + +And he said to them, Thus and thus did Michaias to me, and he hired me, and I became his priest. + +And they said to him, Enquire now of God, and we shall know whether our way will prosper, on which we are going. + +And the priest said to them, Go in peace; your way in which you⌃ go, +is before the Lord. + +And the five men went on, and came to Laisa; and they saw the people in the midst of it dwelling securely, at ease as +is the manner of the Sidonians, and there is no one +18:7 +Here probably διατρέπων and ἐκπιέζων both come under the +Heb. מבליס and ἐκπιέζων and θησανροὺς +both under +עצר. perverting or shaming a matter in the land, no heir extorting treasures; and they are far from the Sidonians, and they have no intercourse with any one. + +And the five men came to their brethren to Saraa and Esthaol, and said to their brethren, Why sit you⌃ here +idle? + +And they said, Arise, and let us go up against them, for we have seen the land, and, behold, +it is very good, yet you⌃ are still: delay not to go, and to enter in to possess the land. + +And whenever you⌃ shall go, you⌃ shall come in upon a people secure, and the land +is extensive, for God has given it into your hand; a place where there is no lack of +18:10 +Gr. +of the things in the land or earth. + anything that the earth affords. + +And there departed thence of the families of Dan, from Saraa and from Esthaol, six hundred men, girded with weapons of war. + +And they went up, and encamped in Cariathiarim in Juda; therefore it was called in that place the camp of Dan, until this day: behold, +it is behind Cariathiarim. + +And they went on thence to the mount of Ephraim, and came to the house of Michaias. + +And the five men who went to spy out the land of Laisa answered, and said to their brethren, You⌃ know that there is in this place an ephod, and theraphin, and a graven and a molten image; and now consider what you⌃ shall do. + +And they turned aside there, and went into the house of the young man, the Levite, +even into the house of Michaias, and asked him +18:15 +Gr. +as to or concerning peace. + how he was. + +And the six hundred men of the sons of Dan who were girded with their weapons of war +18:16 +Lit. +standing. + stood by the door of the gate. + +And the five men who went to spy out the land went up, and entered into the house of Michaias, and the priest stood. + +And they took the graven image, and the ephod, and the theraphin, and the molten image; and the priest said to them, What are you⌃ doing? + +And they said to him, Be silent, lay your hand upon your mouth, and come with us, and be to us a father and a priest: +is it better for you to be the priest of the house of one man, or to be the priest of a tribe and house for a family of Israel? + +And the heart of the priest was glad, and he took the ephod, and the theraphin, and the graven image, and the molten image, and went in the midst of the people. + +So they turned and departed, and put their children and their property and their baggage before them. + +They went some distance from the house of Michaias, and, behold, Michaias and the men in the houses near Michaias' house, cried out, and overtook the children of Dan. + +And the children of Dan turned their face, and said to Michaias, What is the matter with you that you have cried out? + +And Michaias said, Because you⌃ have taken my graven image which I made, and my priest, and are gone; and what have I remaining? and what +is this +that you⌃ say to me, Why cry you? + +And the children of Dan said to him, Let not your voice be heard with us, lest angry men run upon you, and +18:25 +Lit. +add. +q.d. +to the deeds already done. + take away your life, and the lives of your house. + +And the children of Dan went their way; and Michaias saw that they were stronger than himself, and he returned to his house. + +And the children of Dan took what Michaias had made, and the priest that he had, and they came to Laisa, to a people quiet and secure; and they struck them with the edge of the sword, and burnt the city with fire. + +And there was no deliverer, because +the city is far from the Sidonians, and they have no intercourse with men, and it +is in the valley of the house of Raab; and they built the city, and lived in it. + +And they called the name of the city Dan, after the name of Dan their father, who was born to Israel; and the name of the city was +18:29 +Heb. Ulamaish, or Laish of old. + Ulamais before. + +And the children of Dan set up the graven image for themselves; and Jonathan son of Gerson son of Manasse, he and his sons were priests to the tribe of Dan till the time of the carrying away of the +18:30 +Gr. +land. + nation. + +And they set up for themselves the graven image which Michaias made, all the days that the house of God was in Selom; and it was so in those days +that there was no king in Israel. + +

+ + +

And there was +19:1 +Gr. +a man, a Levite. + a Levite sojourning in the +19:1 +Gr. +thighs. + sides of mount Ephraim, and he took to himself a +19:1 +Gr. +a woman a concubine. + concubine from Bethleem Juda. + +And his concubine departed from him, and went away from him to the house of her father to Bethleem Juda, and she was there four months. + +And her husband rose up, and went after her +19:3 +Gr. +to speak to her heart. + to speak kindly to her, to recover her to himself; and +19:3 +Gr. +his young man +was, +etc. + he had his young man with him, and a pair of asses; and she brought him into the house of her father; and the father of the damsel saw him, and was well pleased to meet him. + +And his father-in-law, the father of the damsel, constrained him, and he stayed with him for three days; and they ate and drank, and lodged there. + +And it came to pass on the fourth day that they rose early, and he stood up to depart; and the father of the damsel said to his son-in-law, Strengthen your heart with a morsel of bread, and afterwards you⌃ shall go. + +So they two sat down together and ate and drank: and the father of the damsel said to her husband, Tarry now the night, and let your heart be merry. + +And the man rose up to depart; but his father-in-law constrained him, and he stayed and lodged there. + +And he rose early in the morning on the fifth day to depart; and the father of the damsel said, Strengthen now your heart, and +19:8 +Possibly, +prepare to march by the time the day declines. + quit yourself as a soldier till the day decline; and the two ate. + +And the man rose up to depart, he and his concubine, and his young man; but his father-in-law the father of the damsel said to him, Behold now, the day has declined toward evening; lodge here, an let your heart rejoice; and you⌃ shall rise early to-morrow for your journey, and you shall go to your habitation. + +But the man would not lodge there, but he arose and departed, and came to the part opposite Jebus, (this is Jerusalem,) and +there was with him a pair of asses saddled, and his concubine +was with him. + +And they came as far as Jebus: and the day had far advanced, and the young man said to his master, Come, I pray you, and let us turn aside to this city of the Jebusites, and let us lodge in it. + +And his master said to him, We will not turn aside to a strange city, where there is not one of the children of Israel, but we will pass on as far as Gabaa. + +And he said to his young man, Come, and let us draw near to one of the places, and we will lodge in Gabaa or in Rama. + +And they passed by and went on, and the sun went down upon them near to Gabaa, which is in Benjamin. + +And they turned aside thence to go in to lodge in Gabaa; and they went in, and sat down in the street of the city, and there was no one who conducted them into a house to lodge. + +And behold, an old man came out of the field from his work in the evening; and the man was of mount Ephraim, and he sojourned in Gabaa, and the men of the place +were sons of Benjamin. + +And he lifted up his eyes, and saw a traveller in the street of the city; and the old man said to him, Whither go you, and whence come you? + +And he said to him, We are passing by from Bethleem Juda to the sides of mount Ephraim: I am from thence, and I went as far as Bethleem Juda, and I am going home, and there is no man to take me into his house. + +Yet is there straw and food for our asses, and bread and wine for me and my handmaid and the young man with your servants; there is no lack of anything. + +And the old man said, Peace +be to you; only be every lack of your upon me, only do you by no means lodge in the street. + +And he brought him into his house, and made room for his asses; and they washed their feet, and ate and drank. + +And they +were comforting their heart, when, behold, the men of the city, sons of transgressors, compassed the house, knocking at the door: and they spoke to the old man the owner of the house, saying, Bring out the man who came into your house, that we may know him. + +And the master of the house came out to them, and said, Nay, brethren, do not you⌃ wrong, I pray you, after this man has come into my house; do not you⌃ this folly. + +Behold my daughter a virgin, and +19:24 +Gr. +his. + the man's concubine: I will bring them out, and humble you⌃ them, and do to them that which is good in your eyes; but to this man do not +19:24 +Gr. +the word or thing of this folly. +Hebraism. this folly. + +But the men would not consent to listen to him; so the man laid hold of his concubine, and brought her out to them; and they knew her, and abused her all night till the morning, and let her go when the morning dawned. + +And the woman came toward morning, and fell down at the door of the house where her husband was, until it was light. + +And her husband rose up in the morning, and opened the doors of the house, and went forth to go on his journey; and, behold, the woman his concubine had fallen down by the doors of the house, and her hands were on the threshold. + +And he said to her, Rise, and let us go; and she answered not, for she was dead: and he took her upon his ass, and went to his place. + +And he took his sword, and laid hold of his concubine, and divided her into twelve parts, and sent them to every coast of Israel. + +And it was so, that every one who saw it said, +Such a day as this has not happened nor has been seen from the day of the going up of the children of Israel out of the land of Egypt until this day: take you⌃ counsel concerning it, and speak. + +

+ + +

And all the children of Israel went out, and all the congregation was gathered as one man, from Dan even to Bersabee, and in the land of Galaad, to the Lord at Massepha. + +And all the tribes of Israel stood before the Lord in the assembly of the people of God, four hundred thousand footmen that drew sword. + +And the children of Benjamin heard that the children of Israel were gone up to Massepha: and the children of Israel came and said, Tell us, where did this wickedness take place? + +And the Levite, the husband of the woman that was slain, answered and said, I and my concubine went to Gabaa of Benjamin to lodge. + +And the men of Gabaa rose up against me, and compassed the house by night against me; they wished to kill me, and they have humbled my concubine, and she is dead. + +And I laid hold of my concubine, and divided her in pieces, and sent +the parts into every coast of the inheritance of the children of Israel; for they have wrought lewdness and abomination in Israel. + +Behold, all you⌃ +are children of Israel; and consider and take counsel here among yourselves. + +And all the people rose up as one man, saying, No one of us shall return to his tent, and no one of us shall return to his house. + +And now this +is the thing which shall be done in Gabaa; we will go up against it by lot. + +Moreover we will take ten men for one hundred for all the tribes of Israel, and one hundred for a thousand, and a thousand for ten thousand, to take provision, to cause them to come to Gabaa of Benjamin, to do to it according to all the abomination, which +20:10 +Heb. sons of Belial. + they wrought in Israel. + +And all the men of Israel were gathered to the city as one man. + +And the tribes of Israel sent men through the whole tribe of Benjamin, saying, What +is this wickedness that has been wrought among you? + +Now then give up the men the +20:13 +Gr. +it, +sc. +Gabas. + sons of transgressors that are in Gabaa, and we will put them to death, and purge out wickedness from Israel: but the children of Benjamin consented not to listen to the voice of their brethren the children of Israel. + +And the children of Benjamin were gathered from their cities to Gabaa, to go forth to fight with the children of Israel. + +And the children of Benjamin from their cities were numbered in that day, twenty-three thousand, +every man drawing a sword, besides the inhabitants of Gabaa, who were numbered seven hundred chosen men of all the people, +20:15 +See chap 3:15. + able to use both hands alike; + +All these could sling with stones at a hair, and not miss. + +And the men of Israel, exclusive of Benjamin, were numbered four hundred thousand men that drew sword; all these +were men of war. + +And they arose and went up to Baethel, and enquired of God: and the children of Israel said, Who shall go up for us first to fight with the children of Benjamin? And the Lord said, Juda shall go up first as leader. + +And the children of Israel rose up in the morning, and encamped against Gabaa. + +And they went out, all the men of Israel, to fight with Benjamin, and engaged with them at Gabaa. + +And the sons of Benjamin went forth from Gabaa, and they destroyed in Israel on that day two and twenty thousand men down to the ground. + +And the men of Israel +20:22 +Or, +grew strong. + strengthened themselves, and again engaged in battle in the place where they had engaged on the first day. + +And the children of Israel went up, and wept before the Lord till evening, and enquired of the Lord, saying, Shall we again draw near to battle with our brethren the children of Benjamin? and the Lord said, Go up against them. + +And the children of Israel advanced against the children of Benjamin on the second day. + +And the children of Benjamin went forth to meet them from Gabaa on the second day, and destroyed of the children of Israel yet further eighteen thousand men down to the ground: all these drew sword. + +And the children of Israel and all the people went up, and came to Baethel; and they wept, and sat there before the Lord; and they fasted on that day until evening, and offered whole burnt offerings and +20:26 +Or, +unblemished, according to the +Heb. peace offering. + perfect sacrifices, before the Lord, + +for the ark of the Lord God +was there in those days, + +and Phinees the son of Eleazar the son of Aaron stood before it in those days; and the children of Israel enquired of the Lord, saying, Shall we yet again go forth to fight with our brethren the sons of Benjamin? and the Lord said, Go up, to-morrow I will give them into your hands. + +And the children of Israel set an ambush against Gabaa round about +it. + +And the children of Israel went up against the children of Benjamin on the third day, and arrayed themselves against Gabaa as before. + +And the children of Benjamin went out to meet the people, and +20:31 +Gr. +were emptied out of the city. + were all drawn out of the city, and began to strike and kill the people as before in the roads, +20:31 +Gr. +which is one going up. + whereof one goes up to Baethel, and one to Gabaa in the field, about thirty men of Israel. + +And the children of Benjamin said, They fall before us as at the first: but the children of Israel said, Let us flee, and draw them out from the city into the roads; and they did so. + +And all the men rose up out of their places, and engaged in Baal Thamar; and the liers in wait of Israel advanced from their place from +20:33 +Heb. plain of the south. + Maraagabe. + +And there came over against Gabaa ten thousand chosen men out of all Israel; and the fight +was severe; and they knew not that evil +20:34 +Gr. +is coming upon them. + was coming upon them. + +And the Lord struck Benjamin before the children of Israel; and the children of Israel destroyed of Benjamin in that day one hundred and twenty-five thousand men: all these drew sword. + +And the children of Benjamin saw that they were struck; and the men of Israel gave place to Benjamin, because they trusted in the ambuscade which they had prepared against Gabaa. + +And when they retreated, then the liers in wait rose up, and they +20:37 +Gr. +extended themselves. + moved toward Gabaa, and the whole ambush came forth, and they struck the city with the edge of the sword. + +And the children of Israel had a signal of battle with the liers in wait, that they should send up a +20:38 +Or, +a concerted signal. + signal of smoke from the city. + +And the children of Israel saw that the liers in wait had seized Gabaa, and they stood in line of battle; and Benjamin began to strike down +20:39 +Or, +slain ones, +i.e. +to strike and cause to fall. + wounded ones among the men of Israel about thirty men; for they said, Surely they fall again before us, +20:39 +Gr. +as the first battle was. + as in the first battle. + +And the signal went up increasingly over the city as a pillar of smoke; and Benjamin looked behind him, and behold the destruction of the city went up to heaven. + +And the men of Israel turned back, and the men of Benjamin hasted, because they saw that evil had come upon them. + +And they turned to the way of the wilderness from before the children of Israel, and fled: but the battle overtook them, and they from the cities destroyed them in the midst of them. + +And they cut down Benjamin, and pursued him from Nua closely till they came opposite Gabaa on the east. + +And there fell of Benjamin eighteen thousand men: all these +were men of might. + +And the rest turned, and fled to the wilderness to the rock of Remmon; and the children of Israel +20:45 +Or, +cut off as stragglers. +Gr. +gleaned, +or +picked straws. + picked off of them five thousand men; and the children of Israel went down after them as far as Gedan, and they struck of them two thousand men. + +And all that fell of Benjamin were twenty-five thousand men that drew sword in that day: all these were men of might. + +And the rest turned, and fled to the wilderness to the rock of Remmon, even +six hundred men; and they sojourned four months in the rock of Remmon. + +And the children of Israel returned to the children of Benjamin, and struck them with the edge of the sword from the city of Methla, even to the cattle, and every thing that was found in all the cities: and they burnt with fire the cities they found. + +

+ + +

Now the children of Israel swore in Massephath, saying, No man of us shall give his daughter to Benjamin for a wife. + +And the people came to Baethel, and sat there until evening before God: and they lifted up their voice and wept with a great weeping; + +and said, Therefore, O Lord God of Israel, has this come to pass, that today one tribe should be counted +as missing from Israel? + +And it came to pass on the morrow that the people rose up early, and built there an altar, and offered up whole burnt offerings and +21:4 +See chap 20:26. + peace offerings. + +And the children of Israel said, Who of all the tribes of Israel, went not up in the congregation to the Lord? for there was a great oath concerning those who went not up to the Lord to Massephath, saying, He shall surely be put to death. + +And the children of Israel +21:6 +Or, +comforted themselves, +or +were comforted. + relented toward Benjamin their brother, and said, To-day one tribe is cut off from Israel. + +What shall we do for wives for the rest that remain? whereas we have sworn by the Lord, not to give them of our daughters for wives. + +And they said, What one +man is there of the tribes of Israel, who went not up to the Lord to Massephath? and, behold, no man came to the camp from Jabis Galaad to the assembly. + +And the people were numbered, and there was not there a man from the inhabitants of Jabis Galaad. + +And the congregation sent there twelve thousand men of the +21:10 +Gr. +sons of strength. + strongest, and they charged them, saying, Go you⌃ and strike the inhabitants of Jabis Galaad with the +21:10 +Gr. +mouth. + edge of the sword. + +And this shall you⌃ do: every male and every woman that has known the lying with man you⌃ shall devote +to destruction, but the virgins you⌃ shall save alive: and they did so. + +And they found +21:12 +Gr. +from, out of. + among the inhabitants of Jabis Galaad four hundred young virgins, who had not known man by lying with him; and they brought them to Selom in the land of Chanaan. + +And all the congregation sent and spoke to the children of Benjamin in the rock Remmon, and invited them to +make peace. + +And Benjamin returned to the children of Israel at that time, and the children of Israel gave them the women whom they +had save alive of the daughters of Jabis Galaad; and +21:14 +Gr. +it pleased them thus. + they were content. + +And the people +21:15 +Gr. +See ver. 6. + relented for Benjamin, because the Lord had made a breach in the tribes of Israel. + +And the elders of the congregation said, What shall we do for wives for them that remain? for the women have been destroyed out of Benjamin. + +And they said, +There must be an inheritance of them that are escaped of Benjamin; and +so a tribe shall not be destroyed out of Israel. + +For we shall not be able to give them wives of our daughters, because we swore among the children of Israel, saying, Cursed +is he that gives a wife to Benjamin. + +And they said, Behold! now +there is a feast of the Lord +21:19 +Gr. +from days to days. +Hebraism. from year to year in Selom, which is on the north of Baethel, eastward on the way that goes up from Baethel to Sychem, and from the south of Lebona. + +And they charged the children of Benjamin, saying, Go and lie in wait in the vineyards; + +and you⌃ shall see; and behold! if there come out the daughters of the inhabitants of Selom to dance in dances, then shall you⌃ go out of the vineyards and seize for yourselves every man a wife of the daughters of Selom, and go you⌃ into the land of Benjamin. + +And it shall come to pass, when their fathers or their brethren come to dispute with us, that we will say to them, Grant them freely to us, for we have not taken every man his wife in the battle: because you⌃ did not give to them +21:22 +Translated from +Alex. according to the occasion, you⌃ transgressed. + +And the children of Benjamin did so; and they took wives according to their number from the dancers whom they seized: and they went and returned to their inheritance, and built the cities, and lived in them. + +And the children of Israel +21:24 +Gr. +walked + went thence at that time every man to his tribe and his kindred; and they went thence every man to his inheritance. + +And in those days there was no king in Israel; every man did that which was right in his own sight. + +

+
+ +Ruth +RUTH +Ruth +RUT +

RUTH +

+ + +

And it came to pass when the judges ruled, that there was a famine in the land: and a man went from Bethleem Juda to sojourn in the land of Moab, he, and his wife, and his two sons. + +And the man's name +was Elimelech, and his wife's name Noemin, and the names of his two sons Maalon and Chelaion, Ephrathites of Bethleem of Juda: and they came to the land of Moab, and remained there. + +And Elimelech the husband of Noemin died; and she was left, and her two sons. + +And they took to themselves wives, women of Moab; the name of the one +was Orpha, and the name of the second Ruth; and they lived there about ten years. + +And both Maalon and Chelaion died also; and the woman was left of her husband and her two sons. + +And she rose up and her two daughters-in-law, and they returned out of the country of Moab, for she heard in the country of Moab that the Lord +had visited his people to give them bread. + +And she went forth out of the place where she was, and her two daughters-in-law with her: and they went by the way to return to the land of Juda. + +And Noemin said to her daughter-in-law, Go now, return each to the house of her mother: the Lord deal mercifully with you, as you⌃ have dealt with the dead, and with me. + +The Lord grant you that you⌃ may find rest each of you in the house of her husband: and she kissed them; and they lifted up their voice, and wept. + +And they said to her, We will return with you to your people. + +And Noemin said, Return now, my daughters; and why do you⌃ go with me? have I yet sons in my womb to be your husbands? + +Turn now, my daughters, for I am too old to be married: for I said, Suppose I were married, and should bear sons; + +would you⌃ wait for them till they should be grown? or would you⌃ refrain from being married for their sakes? Not so, my daughters; for I am grieved for you, that the hand of the Lord has gone forth against me. + +And they lifted up their voice, and wept again; and Orpha kissed her mother-in-law and returned to her people; but Ruth followed her. + +And Noemin said to Ruth, Behold, your sister-in-law has returned to her people and to her gods; turn now you also after your sister-in-law. + +And Ruth said, Intreat me not to leave you, or to return from following you; for wherever you go, I will go, and wherever you lodge, I will lodge; your people +shall be my people, and your God my God. + +And wherever you die, I will die, and there will I be buried: the Lord do so to me, and more also, +if I leave you, for death +only shall divide between me and you. + +And Noemin seeing that she was determined to go with her, ceased to speak to her any more. + +And they went both of them until they came to Bethleem: and it came to pass, when they arrived at Bethleem, that all the city rang with them, and they said, Is this Noemin? + +And she said to them, Nay, do not call me Noemin; call me 'Bitter,' for the Mighty One has dealt very bitterly with me. + +I went out full, and the Lord has brought me back empty: and why call you⌃ me Noemin, whereas the Lord has humbled me and the Mighty One has afflicted me? + +So Noemin and Ruth the Moabitess, her daughter-in-law, returned from the country of Moab; and they came to Bethleem in the beginning of barley harvest. + +

+ + +

And Noemin had +a friend an acquaintance of her husband, and the man +was a mighty man of the kindred of Elimelech, and his name +was Booz. + +And Ruth the Moabitess said to Noemin, Let me go now to the field, and I will glean among the ears behind the man with whoever I shall find favor: and she said to her, Go, daughter. + +And she went; and came and gleaned in the field behind the reapers; and she happened by chance to come on a portion of the land of Booz, of the kindred of Elimelech. + +And, behold, Booz came from Bethleem, and said to the reapers, The Lord +be with you: and they said to him, The Lord bless you. + +And Booz said to his servant who was set over the reapers, Whose +is this damsel? + +And his servant who was set over the reapers answered and said, It is the Moabitish damsel who returned with Noemin out of the land of Moab. + +And she said, I pray you, let me glean and gather among the sheaves after the reapers: and she came and stood from morning till evening, and rested not +even a little in the field. + +And Booz said to Ruth, Have you not heard, +my daughter? go not to glean in another field; and depart not you hence, join yourself here with my damsels. + + +Let your eyes +be on the field where +my men shall reap, and you shall go after them: behold, I have charged the young men not to touch you: and when you shall thirst, then you shall go to the vessels, and drink of that which the young men shall have drawn. + +And she fell upon her face, and did reverence to the ground, and said to him, How is it that I have found grace in your eyes, that you should take notice of me, whereas I am a stranger? + +And Booz answered and said to her, It has fully been told me how you have dealt with your mother-in-law after the death of your husband; and how you did leave your father and your mother, and the land of your birth, and came to a people whom you knew not before. + +The Lord recompense your work; may a full reward be given you of the Lord God of Israel, to whom you have come to trust under his wings. + +And she said, Let me find grace in your sight, my lord, because you have comforted me, and because you have spoken kindly to your handmaid, and behold, I shall be as one of your servants. + +And Booz said to her, Now +it is time to eat; come here, and you shall eat of the bread, and you shall dip your morsel in the vinegar: and Ruth sat by the side of the reapers: and Booz handed her meal, and she ate, and was satisfied, and left. + +And she rose up to glean; and Booz charged his young men, saying, Let her even glean among the sheaves, and reproach her not. + +And do you⌃ by all means carry it for her, and you⌃ shall surely let fall for her some of that which is heaped up; and let her eat, and glean, and rebuke her not. + +So she gleaned in the field till evening, and beat out that she had gleaned, and it was about an ephah of barely. + +And she took +it up, and went into the city: and her mother-in-law saw what she had gleaned, and Ruth brought forth and gave to her the food which she had left from what she had been satisfied with. + +And her mother-in-law said to her, Where have you gleaned today, and where have you wrought? blessed be he that took notice of you. And Ruth told her mother-in-law where she +had wrought, and said, The name of the man with whom I wrought today +is Booz. + +And Noemin said to her daughter-in-law, Blessed is he of the Lord, because he has not failed in his mercy with the living and with the dead: and Noemin said to her, The man is near akin to us, he is one of our relations. + +And Ruth said to her mother-in-law, Yes, he said also to me, Keep close to my damsels, until the men shall have finished all my reaping. + +And Noemin said to Ruth her daughter-in-law, +It is well, daughter, that you went out with his damsels; thus they shall not meet you in another field. + +And Ruth joined herself to the damsels of Booz to glean until they had finished the barley harvest and the wheat harvest. + +

+ + +

And she lodged with her mother-in-law: and Noemin her mother-in-law said to her, My daughter, shall I not seek rest for you, that it may be well with you? + +And now +is not Booz our kinsman, with whose damsels you were? behold, he winnows barley this night in the floor. + +But do you wash, and anoint yourself, and put your raiment upon you, and go up to the threshing floor: do not discover yourself to the man until he has done eating and drinking. + +And it shall come to pass when he lies down, that you shall mark the place where he lies down, and shall come and lift up the covering of his feet, and shall lie down; and he shall tell you what you shall do. + +And Ruth said to her, All that you shall say, I will do. + +And she went down to the threshing floor, and did according to all that her mother-in-law enjoined her. + +And Booz ate and drank, and his heart was glad, and he came to lie down by the side of the heap of corn; and she came secretly, and lifted up the covering of his feet. + +And it came to pass at midnight that the man was amazed, and troubled, and behold, a woman lay at his feet. + +And he said, Who are you? and she said, I am your handmaid Ruth; spread therefore your skirt over your handmaid, for you are a near relation. + +And Booz said, Blessed +be you of the Lord God, +my daughter, for you have made your latter kindness greater than the former, in that you follow not after young men, whether +any be poor or rich. + +And now fear not, my daughter, whatever you shall say I will do to you; for all the tribe of my people knows that you are a virtuous woman. + +And now I am truly akin to you; nevertheless there is a kinsman nearer than I. + +Lodge +here for the night, and it shall be in the morning, if he will do the part of a kinsman to you, well—let him do it: but if he will not do the part of a kinsman to you, I will do the kinsman's part to you, +as the Lord lives; lie down till the morning. + +And she lay at his feet until the morning; and she rose up before a man could know his neighbor; and Booz said, Let it not be known that a woman came into the floor. + +And he said to her, Bring the apron that is upon you: and she held it, and he measured six measures of barley, and put them upon her, and she went into the city. + +And Ruth went in to her mother-in-law, and she said to her, +My daughter! and +Ruth told her all that the man had done to her. + +And she said to her, He gave me these six measures of barley, for he said to me, Go not empty to your mother-in-law. + +And she said, Sit still, +my daughter, until you shall know how the matter will fall out; for the man will not rest until the matter be accomplished this day. + +

+ + +

And Booz went up to the gate, and sat there; and behold, the relative passed by, of whom Booz spoke: and Booz said to him, Turn aside, sit down here, such a one: and he turned aside and sat down. + +And Booz took ten men of the elders of the city, and said, Sit you⌃ here; and they sat down. + +And Booz said to the relative, +The matter regards the portion of the field which was our brother Elimelech's which was given to Noemin, now returning out of the land of Moab; + +and I said, I will inform you, saying, Buy it before those that sit, and before the elders of my people: if you will redeem it, redeem it, but if you will not redeem it, tell me, and I shall know; for there is no one beside you to do the office of a kinsman, and I am after you: and he said, I am +here, I will redeem it. + +And Booz said, In the day of your buying the field of the hand of Noemin and of Ruth the Moabitess the wife of the deceased, you must also buy her, so as to raise up the name of the dead upon his inheritance. + +And the kinsman said, I shall not be able to redeem it for myself, lest I mar my own inheritance; do you redeem my right for yourself, for I shall not be able to redeem +it. + +And this +was in former time the ordinance in Israel for redemption, and for a bargain, to confirm every word: A man loosed his shoe, and gave it to his neighbor that redeemed his right; and this was a testimony in Israel. + +And the kinsman said to Booz, Buy my right for yourself: and he took off his shoe and gave it to him. + +And Booz said to the elders and to all the people, You⌃ +are this day witnesses, that I have bought all that was Elimelech's, and all that belonged to Chelaion and Maalon, of the hand of Noemin. + +Moreover I have bought for myself for a wife Ruth the Moabitess, the wife of Maalon, to raise up the name of the dead upon his inheritance; so the name of the dead shall not be destroyed from among his brethren, and from the tribe of his people: you⌃ +are this day witnesses. + +And all the people who were in the gate said, +We are witnesses: and the elders said, The Lord make your wife who goes into your house, as Rachel and as Lia, who both +together built the house of Israel, and wrought mightily in Ephratha, and there shall be a name +to you in Bethleem. + +And let your house be as the house of Phares, whom Thamar bore to Juda, of the seed which the Lord shall give you of this handmaid. + +And Booz took Ruth, and she became his wife, and he went in to her; and the Lord gave her conception, and she bore a son. + +And the women said to Noemin, Blessed +is the Lord, who has not suffered a redeemer to fail you this day, even to make your name famous in Israel. + +And he shall be to you a restorer of your soul, and one to cherish your old age; for your daughter-in-law which has loved you, who is better to you than seven sons, has born him. + +And Noemin took the child and laid it in her bosom, and became a nurse to it. + +And the neighbors gave it a name, saying, A son has been born to Noemin; and they called his name Obed; this +is the father of Jessae the father of David. + +And these +are the generations of Phares: Phares begot Esrom: + +Esrom begot Aram; and Aram begot Aminadab. + +And Aminadab begot Naasson; and Naasson begot Salmon. + +And Salmon begot Booz; and Booz begot Obed. + +And Obed begot Jessae; and Jessae begot David. + +

+
+ +Kings I +KINGS I +Kings I +1SA +

KINGS I +

+

(1 Samuel) +

+ + +

There was a man of Armathaim Sipha, of mount Ephraim, and his name +was Helkana, a son of Jeremeel the son of Elias the son of Thoke, in Nasib Ephraim. + +And he +had two wives; the name of the one +was Anna, and the name of the second Phennana. And Phennana had children, but Anna had no child. + +And the man went up +1:3 +Gr. +from days to days. + from year to year from his city, from Armathaim, to worship and sacrifice to the Lord God of Sabaoth at Selom: and +there were Heli and his two sons Ophni and Phinees, the priests of the Lord. + +And the day came, and Helkana sacrificed, and gave portions to his wife Phennana and her children. + +And to Anna he gave +1:5 +Gr. +one portion. + a prime portion, because she had no child, only Helkana loved Anna more than the other; but the Lord +had closed her womb. + +For the Lord gave her no child in her affliction, and according to the despondency of her affliction; and she was dispirited on this account, that the Lord shut up her womb so as not to give her a child. + +So she did year by year, in going up to the house of the Lord; and she was dispirited, and wept, and did not eat. + +And Helkana her husband said to her, Anna: and she said to him, Here +am I, my lord: and he said to her, What ails you that you weep? and why do you not eat? and why does your heart strike you? +am I not better to you than ten children? + +And Anna rose up after they had eaten in Selom, and stood before the Lord: and Heli the priest +was on a seat by the +1:9 +Gr. +lintels. + threshold of the temple of the Lord. + +And she +was very much grieved in spirit, and prayed to the Lord, and wept abundantly. + +And she vowed a vow to the Lord, saying, O Lord God of Sabaoth, if you welt indeed look upon the humiliation of your handmaid, and remember me, and give to your handmaid a +1:11 +Gr. +seed of men. + boy, then will I indeed dedicate him to you till the day of his death; and he shall drink no wine nor strong drink, and no +1:11 +Gr. +iron. + razor shall come upon his head. + +And it came to pass, while she was long praying before the Lord, that Heli the priest marked her mouth. + +And she was speaking in her heart, and her lips moved, but her voice was not heard: and Heli accounted her a drunken woman. + +And the servant of Heli said to her, How long will you be drunken? take away your wine from you, and go out from the presence of the Lord. + +And Anna answered and said, Nay, my lord, +I live +1:15 +Comp. +ἐν σκληρᾳ ἡμέρᾳ. + in a hard day, and I have not drunk wine or strong drink, and I pour out my soul before the Lord. + + +1:16 +Gr. +give not. + Count not your handmaid for a pestilent woman, for by reason of the abundance of my importunity I have continued +my prayer until now. + +And Heli answered and said to her, Go in peace: the God of Israel give you all your petition, which you have asked of him. + +And she said, Your handmaid has found favor in your eyes: and the woman went her way, and entered into her lodging, and ate and drank with her husband, and her countenance was no more sad. + +And they rise early in the morning, and worship the Lord, and they go their way: and Helkana went into his house at Armathaim, and knew his wife Anna; and the Lord remembered her, and she conceived. + +And it came to pass +1:20 +Gr. +in the season of days. + when the time was come, that she brought forth a son, and called his name Samuel, and said, Because I asked him of the Lord God of Sabaoth. + +And the man Helkana and all his house went up to offer in Selom the yearly sacrifice, and his vows, and all the tithes of his land. + +But Anna did not go up with him, for she said to her husband, +I will not go up until the child goes up, when I have weaned him, and he shall be presented before the Lord, and he shall abide there continually. + +And Helkana her husband said to her, Do that which is good in your eyes, abide still until you shall have weaned him; but may the Lord establish that which comes out of your mouth: and the woman tarried, and suckled her son until she had weaned him. + +And she went up with him to Selom with a calf +1:24 +Or, +in its third year. + of three years old, and loaves, and an ephah of fine flour, and a bottle of wine: and she entered into the house of the Lord in Selom, and the child with them. + +And they brought him before the Lord; and his father killed his offering which he offered from year to year to the Lord; and he brought near the child, and killed the calf; and Anna the mother of the child brought him to Heli. + +And she said, I pray you, my lord, as your soul lives, I +am the woman that stood in your presence with you while praying to the Lord. + +For this child I prayed; and the Lord has given me my request that I asked of him. + +And I lend him to the Lord all his days that he lives, a loan to the Lord: and she said, + +

+ + +

My heart is established in the Lord, my horn is exalted in my God; my mouth is enlarged over my enemies, I have rejoiced in your salvation. + +For there is none holy as the Lord, and there is none righteous as our God; there is none holy besides you. + +Boast not, and utter not high things; let not high-sounding words come out of your mouth, for the Lord +is a God of knowledge, and God prepares his own designs. + +The bow of the mighty has waxed feeble, and the weak have girded themselves with strength. + +They that were full of bread are brought low; and the hungry have forsaken the land; for the barren has born seven, and she that abounded in children has waxed feeble. + +The Lord kills and makes alive; he brings down to the grave, and brings up. + +The Lord makes poor, and makes rich; he brings low, and lifts up. + +He lifts up the poor from the earth, and raises the needy from the dunghill; to seat him with the princes of the people, and causing them to inherit the throne of glory: + +granting his petition to him that prays; and he blesses the years of the righteous, for by strength can’t man prevail. + +The Lord will weaken his adversary; the Lord +is holy. Let not the wise man boast in his wisdom, nor let the mighty man boast in his strength, and let not the rich man boast in his wealth; but let him that boasts boast in this, to understand and know the Lord, +2:10 +Perhaps +'and the Lord executes,' etc. Comp. Jer. 9:24 and to execute judgment and justice in the midst of the earth. The Lord has gone up to the heavens, and has thundered: he will judge the extremities of the earth, and he gives strength to our kings, and will exalt the horn of his Christ. And she left him there before the Lord, + +and departed to Armathaim: and the child ministered in the presence of the Lord before Heli the priest. + +And the sons of Heli the priest +were evil sons, not knowing the Lord. + +And the priest's claim from every one of the people that sacrificed +was this: the servant of the priest came when the flesh was in seething, and a flesh-hook of three teeth +was in his hand. + +And he struck it into the great caldron, or into the brazen vessel, or into the pot, and whatever came up with the flesh-hook, the priest took for himself: so they did to all Israel that came to sacrifice to the Lord in Selom. + +And before the fat was burnt for a sweet savor, the servant of the priest would come, and say to the man that sacrificed, Give flesh to roast for the priest, and I will by no means take of you sodden flesh out of the caldron. + +And +if the man that sacrificed said, First let the fat be burned, as it is fit, and take for yourself of all things which your soul desires: then he would say, Nay, for you shall give it me now; and if not I will take it by force. + +So the sin of the young men was very great before the Lord, for they set at nothing the offering of the Lord. + +And Samuel ministered before the Lord, a child girded with a linen ephod. + +And his mother made him a little doublet, and brought it to him from +2:19 +Lit. +days to days. + year to year, in her going up in company with her husband to offer the yearly sacrifice. + +And Heli blessed Helcana and his wife, saying The Lord recompense to you seed of this woman, in return for the loan which you have lent to the Lord: and the man returned to his place. + +And the Lord visited Anna, and she bore yet three sons, and two daughters. And the child Samuel grew before the Lord. + +And Heli +was very old, and he heard what his sons did to the children of Israel. + +And he said to them, Why do you⌃ according to this thing, which I hear from the mouth of all the people of the Lord? + +Nay +my sons, for the report which I hear +is not good; do not so, for +2:24 +Or, +the reports which I hear of the people not serving, etc. Comp. 1 Ch. 13. .4 the reports which I hear +are not good, so that the people do not serve God. + +If a man should at all sin against another, then shall they pray for him to the Lord; but if a man sin against the Lord, who shall entreat for him? But they listened not to the voice of their father, because the Lord would by all means destroy them. + +And the child Samuel advanced, and +2:26 +Gr. +was good. + was in favor with God and with men. + +And a man of God came to Heli, and said, Thus says the Lord, I plainly revealed myself to the house of your father, when they were servants in Egypt to the house of Pharao. + +And I chose the house of your father out of all the tribes of Israel to minister to me in the priest's office, to go up to my altar, and to burn incense, and to wear an ephod. And I gave to the house of your father all the offerings by fire of the children of Israel for food. + +And therefore have you looked upon my incense-offering and my meat-offering with a shameless eye, and have honored your sons above me, so that they should bless themselves with the first fruits of every sacrifice of Israel before me? + +Therefore thus says the Lord God of Israel, I said, Your house and the house of your father shall pass before me for ever: but now the Lord says, That be far from me; for I will only honor them that honor me, and he that sets me at nothing shall be despised. + +Behold, the days come when I will destroy your seed and the seed of your father's house. + +And you shall not have an old man in my house for ever. + +And +if I do not destroy a man of your from my altar, +it shall be that his eyes may fail and his soul may perish; and every one that remains in your house shall fall by the sword of men. + +And this which shall come upon your two sons Ophni and Phinees shall be a sign to you; in one day they shall both die. + +And I will raise up to myself a faithful priest, who shall do all that is in my heart and in my soul; and I will build him a sure house, and he shall walk before my Christ for ever. + +And it shall come to pass that he that survives in your house, shall come to do obeisance before him for a little piece of silver, +2:36 +Alex.+ +'and for a piece of bread.' + saying, +2:36 +Gr. +cast. + Put me into one of your priest's offices to eat bread. + +

+ + +

And the child Samuel ministered to the Lord before Heli the priest: and the word of the Lord was precious in those days, there was no +3:1 +Lit. +distinguishing. + distinct vision. + +And it came to pass at that time that Heli was sleeping in his place; and his eyes began to fail, and could not see. + +And the lamp of God +was burning before it was trimmed, and Samuel slept in the temple, where +was the ark of God. + +And the Lord called, Samuel, Samuel; and he said, Behold, +here am I. + +And he ran to Heli, and said, +Here am I, for you did call me: and he said, I did not call you; return, go to sleep; and he returned and went to sleep. + +And the Lord +3:6 +Gr. +added and called. + called again, Samuel, Samuel: and he went to Heli the second time, and said, Behold +here am I, for you did call me: and he said, I called you not; return, go to sleep. + +And +it was before Samuel knew the Lord, and +before the word of the Lord was revealed to him. + +And the Lord called Samuel again for the third time: and he arose and went to Heli, and said, Behold, I +am here, for you did call me: and Heli perceived that the Lord +had called the child. + +And he said, Return, child, go to sleep; and it shall come to pass if he shall call you, that you shall say, Speak for your servant hears: and Samuel went and lay down in his place. + +And the Lord came, and stood, and called him as +3:10 +Gr. +once and once. + before: and Samuel said, Speak, for your servant hears. + +And the Lord said to Samuel, Behold, I execute my words in Israel; whoever hears them, both his ears shall tingle. + +In that day I will raise up against Heli all things that I have said against his house; I will begin, and I will make an end. + +And I have told him that I will be avenged on his house perpetually for the iniquities of his sons, because his sons spoke evil against God, and he did not admonish them. + +And +it shall not +go on so; I have sworn to the house of Eli, the iniquity of the house of Eli shall not be atoned for with incense or sacrifices for ever. + +And Samuel +3:15 +Gr. +sleeps +or +lies down. + slept till morning, and rose early in the morning, and opened the doors of the house of the Lord; and Samuel feared to tell +Heli the vision. + +And Heli said to Samuel, Samuel, +my son; and he said, Behold, +here am I. + +And he said, What +was the word that was spoken to you? I pray you hide it not from me: may God do these things to you, and +3:17 +Gr. +add these things. + more also, if you hide from me any thing of all the words that were spoken to you in your ears. + +And Samuel reported all the words, and hid them not from him. And Heli said, He +is the Lord, he shall do that which is good in his sight. + +And Samuel grew, and the Lord was with him, and there did not fall one of his words to the ground. + +And all Israel knew from Dan even to Bersabee, that Samuel +was faithful as a prophet to the Lord. + +And the Lord manifested himself again in Selom, for the Lord revealed himself to Samuel; and Samuel was accredited to all Israel as a prophet to the Lord from one end of the land to the other: and Heli +was very old, and his sons kept advancing +in wickedness, and their way +was evil before the Lord. + +

+ + +

And it came to pass in those days that the Philistines +4:1 +Gr. +gather. + gathered themselves together against Israel to war; and Israel went out to meet them and encamped at Abenezer, and the Philistines encamped in Aphec. + +And the Philistines prepare to fight with Israel, and +4:2 +Gr. +the war. + the battle was turned against them; and the men of Israel fell before the Philistines, and there were struck in the battle in the field four thousand men. + +And the people came to the camp, and the elders of Israel said, Why has the Lord caused us to fall this day before the Philistines? let us take the ark of our God out of Selom, and let it proceed from the midst of us, and it shall save us from the hand of our enemies. + +And the people sent to Selom, and they take thence the ark of the Lord who dwells between the cherubs: and both the sons of Heli, Ophni and Phinees, +were with the ark. + +And it came to pass when the ark of the Lord entered into the camp, that all Israel cried out with a loud voice, and the earth resounded. + +And the Philistines heard the cry, and the Philistines said, What +is this great cry in the camp of the Hebrews: and they understood that the ark of the Lord was come into the camp. + +And the Philistines feared, and said, These are the Gods that are come to them into the camp. + +Woe to us, O Lord, deliver us today for such a thing has not happened aforetime: woe to us, who shall deliver us out of the hand of these mighty Gods? these +are the Gods that struck Egypt with every plague, and in the wilderness. + +Strengthen yourselves and behave yourselves like men, O you⌃ Philistines, that you⌃ may not serve the Hebrews as they have served us, but be you⌃ men and fight with them. + +And they fought with them; and +4:10 +Gr. +the man. + the men of Israel fall, and they fled every man to his tent; and there was a very great slaughter; and there fell of Israel thirty thousand +4:10 +Gr. +ranks. + fighting men. + +And the ark of God was taken, and both the sons of Heli, Ophni, and Phinees, died. + +And there ran a man of Benjamin out of the battle, and he came to Selom on that day: and his clothes +were torn, and earth +was upon his head. + +And he came, an behold, Heli was upon the seat by the gate looking along the way, for his heart was greatly alarmed for the ark of God: and the man entered into the city to bring tidings; and the city cried out. + +And Heli heard the sound of the cry, and said, What +is the voice of this cry? and the men hasted and went in, and reported to Heli. + +Now Heli +was +4:15 +Gr. +a son of ninety years. + ninety years old, and his eyes +4:15 +Gr. +rose up. +Heb. קמה rose +or +stood. + were fixed, and he saw not. + +And Heli said to them that stood round about him, What +is the voice of this sound? And the man hasted and advanced to Heli, and said to him, I am he that is come out of the camp, and I have fled from the battle today: and Heli said, What +is the even, +my son? + +And they young man answered and said, The men of Israel fled from the face of the Philistines, and there was a great slaughter among the people, and both your sons are dead, and the ark of God is taken. + +And it came to pass, when he mentioned the ark of God, that he fell from the seat backward near the gate, and his back was broken, and he died, for +he was an old man and heavy: and he judged Israel twenty years. + +And his daughter-in-law the wife of Phinees +was with child, +about to bring forth; and she heard the tidings, that the ark of God was taken, and that her father-in-law and her husband were dead; and she wept and was delivered, for her pains came upon her. + +And in her time she was at the point of death; and the women that stood by her, said to her, Fear not, for you have born a son: but she answered not, and her heart did not regard it. + +And she called the child Uaebarchaboth, because of the ark of God, and because of her father-in-law, and because of her husband. + +And they said, The glory of Israel is departed, forasmuch as the ark of the Lord is taken. + +

+ + +

And the Philistines took the ark of God, and brought it from Abenezer to Azotus. + +And the Philistines took the ark of the Lord, and brought it into the house of Dagon, and set it by Dagon. + +And the people of Azotus rose early, and entered into the house of Dagon; and looked, and behold, Dagon had fallen on his face before the ark of the Lord: and they lifted up Dagon, and set him in his place. And the hand of the Lord was heavy upon the Azotians, and he plagued them, and he struck them in their secret parts, Azotus and her coasts. + +And it came to pass when they rose early in the morning, behold, Dagon had fallen on his face before the ark of the covenant of the Lord; and the head of Dagon and both the palms of his hands +were cut off each before the threshold, and both the wrists of his hands had fallen on the floor of the porch; only the stump of Dagon was left. + +Therefore the priests of Dagon, and every one that enters into the house of Dagon, do not tread upon the threshold of the house of Dagon in Azotus until this day, for they step over. + +And the hand of the Lord was heavy upon Azotus, and he brought evil upon them, and it burst out upon them into the ships, and mice sprang up in the midst of their country, and there was a +5:6 +Gr. +great confusion of death. + great and indiscriminate mortality in the city. + +And the men of Azotus saw that +it was so, and they said, The ark of the God of Israel shall not abide with us, for his hand +is +5:7 +Gr. +hard. + heavy upon us and upon Dagon our god. + +And they send and gather the lords of the Philistines to them, and say, What shall we do to the ark of the God of Israel? and the Gittites say, Let the ark of God come over to us; and the ark of the God of Israel came to Geth. + +And it came to pass after it went about to Geth, that the hand of the Lord comes upon the city, a very great confusion; and he struck the men of the city small and great, and struck them in their secret parts: and the Gittites made to themselves images of tumors. + +And they send away the ark of God to Ascalon; and it came to pass when the ark of God went into Ascalon, that the men of Ascalon cried out, saying, Why have you⌃ brought back the ark of the God of Israel to us, to kill us and our people? + +And they send and gather the lords of the Philistines, and they said, Send away the ark of the God of Israel, and let it lodge in its place; and let it not kill us and our people. + +For there was a very great confusion in all the city, when the ark of the God of Israel entered there; and those, who lived and +5:12 +Gr. +dead. + died not were struck with tumors; and the cry of the city went up to heaven. + +

+ + +

And the ark was seven months in the country of the Philistines, and their land brought forth swarms of mice. + +And the Philistines call their priests, and their prophets, and their enchanters, saying, What shall we do to the ark of the Lord? teach us wherewith we shall send it away to its place. + +And they said, If you⌃ send away the ark of the covenant of the Lord God of Israel, do not on any account send it away empty, but by all means render to it an offering for the plague; and then shall you⌃ be healed, and an atonement shall be made for you: should not his hand be +thus stayed from off you? + +And they say, What +is the offering for the plague +which we shall return to it? and they said, + +According to the number of the lords of the Philistines, five golden tumors, for the plague was on you, and on your rulers, and on the people; and golden mice, the likeness of the mice that destroy your land: and you⌃ shall give glory to the Lord, that he may lighten his hand from off you, and from off your gods, and from off your land. + +And why do you⌃ +6:6 +Gr. +make heavy. + harden your hearts, as Egypt and Pharao hardened their hearts? +was it not +so when he mocked them, +that they let +6:6 +Gr. +them. + the people go, and they departed? + +And now take wood and make a new wagon, and take two cows, that have calved for the first time, without their calves; and do you⌃ yoke the cows to the wagon, and lead away the calves from behind them home. + +And you⌃ shall take the ark and put it on the wagon; and you⌃ shall restore to it the golden articles for the trespass-offering in a +6:8 +in the +Alex. +ἀργός is substituted for βερσεχθάν. + coffer by the side of it: and you⌃ shall let it go, and sent it away, and you⌃ shall depart. + +And you⌃ shall see, if it shall go the way of its coasts along by Baethsamys, he has brought upon us this great affliction; and if not, then shall we know that his hand has not touched us, but this +is a chance +which has happened to us. + +And the Philistines did so; and they took two cows that had calved for the first time, and yoked them to the wagon, and shut up their calves at home. + +And they set the ark of the Lord, and the coffer, and the golden mice, on the wagon. + +And the cows went straight on the way to the way of Baethsamys, they went along one track; and laboured, and turned not aside to the right hand or to the left, and the lords of the Philistines went after it as far as the coasts of Baethsamys. + +And the men of Baethsamys were reaping the wheat harvest in the valley; and they lifted up their eyes, and saw the ark of the Lord, and rejoiced to meet it. + +And the wagon entered into the field of Osee, which was in Baethsamys, and they set there by it a great stone; and they split the wood of the wagon, and offered up the cows for a whole burnt offering to the Lord. + +And the Levites brought up the ark of the Lord, and the coffer with it, and the golden articles upon it, and placed them on the great stone, and the men of Baethsamys offered whole burnt offerings and meat offerings on that day to the Lord. + +And the five lords of the Philistines saw, and returned to Ascalon in that day. + +And these +are the golden tumors which the lords of the Philistines gave as a trespass-offering to the Lord; for Azotus one, for Gaza one, for Ascalon one, for Geth one, for Accaron one. + +And the golden mice according to the number of all the cities of the Philistines, belonging to the five lords, from the fenced city to the village of the Pherezite, and to the great stone, on which they placed the ark of the covenant of the Lord, that was in the field of Osee the Baethsamysite. + +And the sons of Jechonias were not pleased with the men of Baethsamys, because they saw the ark of the Lord; and +the Lord struck among them seventy men, and fifty thousand men: and the people mourned, because the Lord had inflicted on the people, a very great plague. + +And the men of Baethsamys said, Who shall be able to pass before this holy Lord God? and to whom shall the ark of the Lord go up from us? + +And they send messengers to the inhabitants of Cariathiarim, saying, The Philistines have brought back the ark of the Lord, go down and take it home to yourselves. + +

+ + +

And the men of Cariathiarim come, and bring up the ark of the covenant of the Lord: and they bring it into the house of Aminadab in the hill; and they sanctified Eleazar his son to keep the ark of the covenant of the Lord. + +And it came to pass from the time that the ark was in Cariathiarim, the days were multiplied, and +the time was twenty years; and all the house of Israel looked after the Lord. + +And Samuel spoke to all the house of Israel, saying, If you⌃ do with all your heart return to the Lord, take away the strange gods from the midst of you, and the groves, and prepare your hearts to +serve the Lord, and serve him only; and he shall deliver you from the hand of the Philistines. + +And the children of Israel took away Baalim and the groves of Astaroth, and served the Lord only. + +And Samuel said, Gather all Israel to Massephath, and I will pray for you to the Lord. + +And they were gathered together to Massephath, and they drew water, and poured it out upon the earth before the Lord. And they fasted on that day, and said, We have sinned before the Lord. And Samuel judged the children of Israel in Massephath. + +And the Philistines heard that all the children of Israel were gathered together to Massephath: and the lords of the Philistines went up against Israel: and the children of Israel heard, and they feared before the Philistines. + +And the children of Israel said to Samuel, Cease not to cry to the Lord your God for us, and he shall save us out of the hand of the Philistines. + +And Samuel took a sucking lamb, and offered it up as a whole burnt offering with all the people to the Lord: and Samuel cried to the Lord for Israel, and the Lord heard him. + +And Samuel was offering the whole burnt offering; and the Philistines drew near to war against Israel; and the Lord thundered with a mighty sound in that day upon the Philistines, and they were confounded and overthrown before Israel. + +And the men of Israel went forth out of Massephath, and pursued the Philistines, and struck them to the parts under Baethchor. + +And Samuel took a stone, and set it up between Massephath and the old +city; and he called the name of it Abenezer, stone of the helper; and he said, Hitherto has the Lord helped us. + +So the Lord humbled the Philistines, and they did not anymore come into the border of Israel; and the hand of the Lord was against the Philistines all the days of Samuel. + +And the cities which the Philistines took from the children of Israel were restored; and they restored them to Israel from +7:14 +Alex. +from Accaron to Geth. So the +Heb. + Ascalon to Azob: and they took the coast of Israel out of the hand of the Philistines; and there was peace between Israel and the Amorite. + +And Samuel judged Israel all the days of his life. + +And he went year by year, and went round Baethel, and Galgala, and Massephath; and he judged Israel in all these consecrated places. + +And his return was to Armathaim, because there was his house; and there he judged Israel, and built there an altar to the Lord. + +

+ + +

And it came to pass when Samuel was old, that he made his sons judges over Israel. + +And these +are the names of his sons; Joel the firstborn, and the name of the second Abia, judges in Bersabee. + +And his sons did not walk in his way; and they turned aside after gain, and took gifts, and perverted judgments. + +And the men of Israel gather themselves together, and come to Armathaim to Samuel, + +and they said to him, Behold, you are grown old, and your sons walk not in your way; and now set over us a king to judge us, as also the other nations +have. + +And the thing +was evil in the eyes of Samuel, when they said, Give us a king to judge us: and Samuel prayed to the Lord. + +And the Lord said to Samuel, Hear the voice of the people, in whatever they shall say to you; for they have not rejected you, but they have rejected me from reigning over them. + +According to all their doings which they have done to me, from the day that I brought them out of Egypt until this day, even +as they have deserted me, and served other gods, so they do also to you. + +And now listen to their voice; only you shall solemnly testify to them, and you shall +8:9 +Gr. +report. + describe to them the +8:9 +Gr. +judgment. + manner of the king who shall reign over them. + +And Samuel spoke every word of the Lord to the people who asked of him a king. + +And he said, This shall be the +8:11 +Gr. +judgment. + manner of the king that shall rule over you: he shall take your sons, and put them in his chariots, and among his horsemen, and running before his chariots, + +and +his manner shall be to make them to himself captains of hundreds and captains of thousands; and to reap his harvest, and gather his vintage, and prepare his instruments of war, and the implements of his chariots. + +And he will take your daughters to be perfumers, and cooks, and bakers. + +And he will take your fields, and your vineyards, and your good olive yards, and give them to his servants. + +And he will take the tithe of your seeds and your vineyards, and give +it to his eunuchs, and to his servants. + +And he will take your servants, and your handmaids, and your good herds and your asses, and will take the tenth of them for his works. + +And he will tithe your flocks; and you⌃ shall be his servants. + +And you⌃ shall cry out in that day because of your king whom you⌃ have chosen to yourselves, and the Lord shall not hear you in those days, because you⌃ have chosen to yourselves a king. + +But the people would not listen to Samuel; and they said to him, Nay, but there shall be a king over us. + +An we also will be like all the nations; and our king shall judge us, and shall go out before us, and fight our +8:20 +Gr. +war. + battles. + +And Samuel heard all the words of the people, and spoke them in the ears of the Lord. + +And the Lord said to Samuel, Listen to their voice, and appoint them a king. And Samuel said to the men of Israel, Let each man depart to his city. + +

+ + +

And +there was a man of the sons of Benjamin, and his name +was Kis, the son of Abiel, the son of Jared, the son of Bachir, the son of Aphec, the son of a Benjamite, a man of might. + +And this man +had a son, and his name was Saul, of great stature, a goodly man; and there was not among the sons of Israel a goodlier than he, high above all the +9:2 +Gr. +land. + people +9:2 +Gr. +from above his shoulders. + from his shoulders and upward. + +And the asses of Kis the father of Saul were lost; and Kis said to Saul his son, Take with you one of the young men, and arise you⌃, and go seek the asses. + +And they went through mount Ephraim, and they went through the land of Selcha, and found them not: and they passed through the land of Segalim, and they were not there: and they passed through the land of Jamin, and found them not. + +And when they came to Siph, then Saul said to his young man that was with him, Come and let us return, lest my father leave the asses, and take care for us. + +And the young man said to him, Behold now, +there is a man of God in this city, and the man +is of high repute; all that he shall speak will surely come to pass: now then let us go, that he may tell us our way on which we have set out. + +And Saul said to his young man that was with him, Behold, then, we will go; but what shall we bring the man of God? for the loaves are spent out of our vessels, and we have nothing more with us that belongs to us to bring to the man of God. + +And the young man answered Saul again, and said, Behold, there is found in my hand a fourth part of a shekel of silver; and you shall give it to the man of God, and he shall tell us our way. + +Now before time in Israel every one in going to enquire of God said, Come and let us go to the seer; for the people beforetime called the prophet, the seer. + +And Saul said to his servant, Well said, come and let us go: and they went to the city where the man of God was. + +As they went up the ascent to the city, they find virgins who had come out to draw water, and they say to them, Is the seer here? + +And the virgins answered them, and they say to them, He is: behold, +he is before you: now he is coming to the city, because of the day, for today +there is a sacrifice for the people in Bama. + +As soon as you⌃ shall enter into the city, so shall you⌃ find him in the city, before he goes up to Bama to eat; for the people will not eat until he comes in, for he blesses the sacrifice, and afterwards the guests eat; now then go up, for you⌃ shall find him because of the +9:13 +Gr. +day. + holiday. + +And they go up to the city; and as they were entering into the midst of the city, behold, Samuel came out to meet them, to go up to Bama. + +And the Lord uncovered the ear of Samuel +9:15 +Or, +the day before. + one day before Saul came to him, saying, + +At this time to-morrow I will send to you a man out of the land of Benjamin, and you shall anoint him to be ruler over my people Israel, and he shall save my people out of the hand of the Philistines; for I have looked upon the humiliation of my people, for their cry is come to me. + +And Samuel looked upon Saul, and the Lord answered him, Behold the man of whom I spoke to you, this one shall rule over my people. + +And Saul +9:18 +Lit. +brought near. + drew near to Samuel into the midst of the city, and said, Tell me now +9:18 +Gr. +of what kind? + which +is the house of the seer? + +And Samuel answered Saul, and said, I am he: go up before me to Bama, and eat with me today, and I will send you away in the morning, and I will tell you all that is in your heart. + +And concerning your asses that have been lost now these three days, care not for them, for they are found. And to whom does the excellency of Israel belong? does it not to you and to your father's house? + +And Saul answered and said, Am not I the son of a Benjamite, the least tribe of the people of Israel? and of the least family of the whole tribe of Benjamin? and why have you spoken to me according to this word? + +And Samuel took Saul and his servant, and brought them to the inn, and set them there a place among the chief of those that were called, about seventy men. + +And Samuel said to the cook, Give me the portion which I gave you, which I told you to set by you. + +Now the cook +had boiled the shoulder, and he set it before Saul; and Samuel said to Saul, Behold that which is left: set before you, and eat; for it is set you for a testimony in preference to the others; +9:24 +Gr. +pinch. + take +of it: and Saul ate with Samuel on that day. + +And he went down from Bama into the city; and they prepared a lodging for Saul on the roof, and he lay down. + +And it came to pass when the morning +9:26 +Gr. +went up. + dawned, that Samuel called Saul on the roof, saying, Rise up, and I will dismiss you. And Saul arose, and he and Samuel went out. + +As they went down to a part of the city, Samuel said to Saul, Speak to the young man, and let him pass on before us; and do you stand as today, and listen to the word of God. + +

+ + +

And Samuel took a vial of oil, and poured +it on his head, and kissed him, and said to him, Has not the Lord anointed you for a ruler over his people, over Israel? and you shall rule among the people of the Lord, and you shall save them out of the hand of their enemies; and this +shall be the sign to you that the Lord has anointed you for a ruler over his inheritance. + + +As soon as you shall have departed this day from me, you shall find two men by the +10:2 +Gr. +burial places. + burial-place of Rachel on the mount of Benjamin, exulting greatly; and they shall say to you, The asses are found which you⌃ went to seek; and, behold, your father has given up the matter of the asses, and he is anxious for you, saying, What shall I do for my son? + +And you shall depart thence, and shall go beyond that as far as the oak of Thabor, and you shall find there three men going up to God to Baethel, one bearing three kids, and another bearing three vessels of bread, and another bearing a bottle of wine. + +And they shall ask you how you do, and shall give you two presents of bread, and you shall receive them of their hand. + +And afterward you shall go to the hill of God, where is the encampment of the Philistines; there +is Nasib the Philistine: and it shall come to pass when you⌃ shall have entered into the city, that you shall meet a band of prophets coming down from the Bama; and before them will be lutes, and a drum, and a pipe, and a harp, and they +10:5 +Gr. +prophesying. + shall prophesy. + +And the Spirit of the Lord shall +10:6 +Gr. +leap upon you. + come upon you, and you shall prophesy with them, and shall be turned into another man. + +And it shall come to pass when these signs shall come upon you, —then do you whatever your hand shall find, because God +is with you. + +And you shall go down in front of Galgal, and behold, I come down to you to offer a whole burnt offering and peace-offerings: seven days shall you wait until I shall come to you, and I will make known to you what you shall do. + +And it came to pass when he +10:9 +Gr. +was turned with his shoulder. + turned his back to depart from Samuel, God +10:9 +Gr. +turned to him. + gave him another heart; and all these signs came to pass in that day. + +And he comes thence to the hill, and behold a band of prophets opposite to him; and the Spirit of God came upon him, and he prophesied in the midst of them. + +And all that had known him before came, and saw, and behold, he +was in the midst of the prophets: and the people said every one to his neighbor, What +is this that has happened to the son of Kis? +is Saul also among the prophets? + +And one of them answered and said, And who +is his father? and therefore it became a proverb, +Is Saul also among the prophets? + +And he ceased prophesying, and comes to the hill. + +And his kinsman said to him and to his servant, Whither went you⌃? and they said, To seek the asses; and we saw that they were lost, and we went in to Samuel. + +And his kinsman said to Saul, Tell me, I pray you, What did Samuel say to you? + +And Saul said to his kinsman, he verily told me that the asses were found. But the matter of the kingdom he told him not. + +And Samuel summoned all the people before the Lord to Massephath. + +And he said to the children of Israel, Thus has the Lord God of Israel spoken, saying, I brought up the children of Israel out of Egypt, and I rescued you out of the hand of Pharao king of Egypt, and out of all the kingdoms that afflicted you. + +And you⌃ have this day rejected God, who is himself your Deliverer out of all your evils and afflictions; and you⌃ said, Nay, but you shall set a king over us: and now stand before the Lord according to your tribes, and according to your families. + +And Samuel brought near all the tribes of Israel, and the tribe of Benjamin is taken by lot. + +And he brings near the tribe of Benjamin by families, and the family of Mattari is taken by lot: and they bring near the family of Mattari, man by man, and Saul the son of Kis is taken; and he sought him, but he was not found. + +And Samuel asked yet again of the Lord, +10:22 +Gr. +does?. + Will the man come here? and the Lord said, Behold, he is hid among the stuff. + +And he ran and took him thence, and he set him in the midst of the people; and he was higher than all the people by his shoulders and upwards. + +And Samuel said to all the people, Have you⌃ seen whom the Lord has chosen to himself, that there is none like to him among you all? And all the people took notice, and said, Let the king live! + +And Samuel told the people the manner of the king, and wrote it in a book, and set it before the Lord: and Samuel sent away all the people, and each went to his place. + +And Saul departed to his house to Gabaa; and there went with Saul mighty men whose hearts God had touched. + +But evil men said, Who +is this man +that shall save us? and they despised him, and brought him no gifts. + +

+ + +

And it came to pass about a month after this, that Naas the Ammanite went up, and encamped against Jabis Galaad: and all the men of Jabis said to Naas the Ammanite, Make a covenant with us, and we will serve you. + +Naas the Ammanite said to them, On these terms will I make a covenant with you, that I should +11:2 +Lit. +dig out. + put out all your right eyes, and I will lay a reproach upon Israel. + +And the men of Jabis say to him, Allow us seven days, and we will send messengers into all the coasts of Israel: if there should be no one to deliver us, we will come out to you. + +And the messengers came to Gabaa to Saul, and they speak the words into the ears of the people; and all the people lifted up their voice, and wept. + +And, behold, Saul came after the early morning out of the field: and Saul said, Why does the people week? and they tell him the words of the men of Jabis. + +And the Spirit of the Lord came upon Saul when he heard these words, and his anger was greatly kindled against them. + +And he took two cows, and cut them in pieces, and sent them into all the coasts of Israel by the hand of messengers, saying, Whoso comes not forth after Saul and after Samuel, so shall they do to his oxen: and a transport from the Lord came upon the people of Israel, and they +11:7 +Lit. +cried out. + came out to battle as one man. + +And he reviews them at Bezec in Bama, every man of Israel six hundred thousand, and the men of Juda seventy thousand. + +And he said to the messengers that came, Thus shall you⌃ say to the men of Jabis, To-morrow you⌃ shall have deliverance when the sun is hot; and the messengers came to the city, and told the men of Jabis, and they rejoiced. + +And the men of Jabis said to Naas the Ammanite, To-morrow we will come forth to you, and you⌃ shall do to us what seems good in your sight. + +And it came to pass +11:11 +Gr. +after the morrow. + on the morrow, that Saul +11:11 +Gr. +put. + divided the people into three companies, and they go into the midst of the camp in the morning watch, and they struck the children of Ammon until the day was hot; at it came to pass that those who were left were scattered, and there were not left among them two together. + +And the people said to Samuel, Who has said that Saul shall not reign over us? Give up the men, and we will put them to death. + +And Saul said, No man shall die this day, for today the Lord has wrought deliverance in Israel. + +And Samuel spoke to the people, saying, Let us go to Galgala, and there renew the kingdom. + +And all the people went to Galgala, and Samuel anointed Saul there to be king before the Lord in Galgala, and there he offered meat-offerings and peace-offerings before the Lord: and Samuel and all Israel rejoiced exceedingly. + +

+ + +

And Samuel said to all Israel, Behold, I have listened to your voice in all things that you⌃ have said to me, and I have set a king over you. + +And now, behold, the king goes before you; and I am grown old and shall rest; and, behold, my sons +are among you; and, behold, I have gone about before you from my youth to this day. + +Behold, +here am I, answer against me before the Lord and before his anointed: whose calf have I taken? or whose ass have I taken? or whom of you have I oppressed? or from whose hand have I taken a +12:3 +Gr. +propitiation. + bribe, even +to a sandal? bear witness against me, and I will make restitution to you. + +And they said to Samuel, You have not injured us, and you have not oppressed us; and you have not afflicted us, and you have not taken anything from any one's hand. + +And Samuel said to the people, The Lord +is witness among you, and his anointed +is witness this day, that you⌃ have not found anything in my hand: and they said, +He is witness. + +And Samuel spoke to the people, saying, The Lord who appointed Moses and Aaron +is witness, who brought our fathers up out of Egypt. + +And now stand still, and I will judge you before the Lord; and I will relate to you all the righteousness of the Lord, the things which he has wrought among you and your fathers. + +When Jacob and his sons went into Egypt, and Egypt humbled them, then our fathers cried to the Lord, and the Lord sent Moses and Aaron; and they brought our fathers out of Egypt, and he made them to dwell in this place. + +And they forgot the Lord their God, and he sold them into the hands of Sisara captain of the host of Jabis king of Asor, and into the hands of the Philistines, and into the hands of the king of Moab; and he fought with them. + +And they cried to the Lord, and said, We have sinned, for we have forsaken the Lord, and have served Baalim and the groves: and now deliver us out of the hand of our enemies, and we will serve you. + +And he sent Jerobaal, and Barac, and Jephthae, and Samuel, and rescued us out of the hand of our enemies round about, and you⌃ lived in security. + +And you⌃ saw that Naas king of the children of Ammon came against you, and you⌃ said, Nay, none but a king shall reign over us; whereas the Lord our God +is our king. + +And now behold the king +12:13 +Alex.+ +'whom you⌃ asked for,' nearer the +Heb. + whom you⌃ have chosen; and behold, the Lord has set a king over you. + +If you⌃ should fear the Lord, and serve him, and listen to his voice, and not resist the mouth of the Lord, and you⌃ and your king that reigns over you should follow the Lord, +well. + +But if you⌃ should not listen to the voice of the Lord, and you⌃ should resist the mouth of the Lord, then shall the hand of the Lord be upon you and upon your king. + +And now stand still, and see this great thing, which the Lord will do before your eyes. + + +Is it not wheat harvest today? I will call upon the Lord, and he shall send thunder and rain; and know you⌃ and see, that your wickedness +is great which you⌃ have wrought before the Lord, having asked for yourselves a king. + +And Samuel called upon the Lord, and the Lord sent thunders and rain in that day; and all the people feared greatly the Lord and Samuel. + +And all the people said to Samuel, Pray for your servants to the Lord your God, and let us not die; for we have added to all our sins this iniquity, in asking for us a king. + +And Samuel said to the people, Fear not: you⌃ have +indeed wrought all this iniquity; only turn not from following the Lord, and serve the Lord with all your heart. + +And turn not aside after the +gods that are nothing, who will do nothing, and will not deliver +you, because they are nothing. + +For the Lord will not cast off his people for his great name's sake, because the Lord graciously took you to himself for a people. + +And far be it from me to sin against the Lord in ceasing to pray for you: but I will serve the Lord, and show you the good and the right way. + +Only fear the Lord, and serve him in truth and with all your heart, for you⌃ see what great things he has wrought with you. + +But if you⌃ continue to do evil, then shall you⌃ and your king be +12:25 +Gr. +added; a reading occasioned by the different readings of אסף and יסף. + consumed. + +

+ + +

And Saul chooses for himself three thousand men of the men of Israel: and there were with Saul two thousand who were in Machmas, and in mount Baethel, and a thousand were with Jonathan in Gabaa of Benjamin: and he sent the rest of the people every man to his tent. + +And Jonathan struck Nasib the Philistine that lived in the hill; and the Philistines hear of it, and Saul sounds the trumpet through all the land, saying, +13:3 +Heb. העכיס as if העכריס. + The servants have despised +us. + +And all Israel heard say, Saul has struck Nasib the Philistine; now Israel had been put to shame before the Philistines; and the children of Israel went up after Saul in Galgala. + +And the Philistines gather together to war with Israel; and then come up against Israel thirty thousand chariots, and six thousand horsemen, and people as the sand by the seashore for multitude: and they come up, and encamp in Machmas, opposite Baethoron southward. + +And the men of Israel saw that they were in a strait so that they could not draw +13:6 +Gr. +to battle. + near, and the people hid themselves in caves, and sheepfolds, and rocks, and ditches, and pits. + +And they that went over went over Jordan to the land of Gad and Galaad: and Saul was yet in Galgala, and all the people +13:7 +Gr. +was amazed. + followed after him in amazement. + +And he continued seven days for the appointed +13:8 +Or, +set time. + testimony, as Samuel told him, and Samuel came not to Galgala, and his people were dispersed from him. + +And Saul said, Bring hither +victims, that I may offer whole burnt offerings and peace-offerings: and he offered the whole burnt offering. + +And it came to pass when he had finished offering the whole burnt offering, that Samuel arrived, and Saul went out to meet him, +and to bless him. + +And Samuel said, What have you done? and Saul said, Because I saw how the people were scattered from me, and you were not present as you purposed according to the set time of the days, and the Philistines were gathered to Machmas. + +Then I said, Now will the Philistines come down to me to Galgala, and I have not sought the face of the Lord: so I forced myself and offered the whole burnt offering. + +And Samuel said to Saul, You have done foolishly; for you have not kept my command, which the Lord commanded you, as now the Lord would have confirmed your kingdom over Israel for ever. + +But now your kingdom shall not stand to you, and the Lord shall seek for himself a man after his own heart; and the Lord shall appoint him to be a ruler over his people, because you have not kept all that the Lord commanded you. + +And Samuel arose, and departed from Galgala, and the remnant of the people went after Saul to meet +him after the men of war, when they had come out of Galgala to Gabaa of Benjamin. And Saul numbered the people that were found with him, about six hundred men. + +And Saul and Jonathan his son, and the people that were found with them, halted in Gabaa, of Benjamin; and they wept: and the Philistines had encamped in Machmas. + +And men came forth to destroy out of the land of the Philistines in three companies; one company turning by the way of Gophera toward the land of Sogal, + +and another company turning the way of Baethoron, and another company turning by the way of Gabae that turns aside to Gai of Sabim. + +And there was not found a smith in all the land of Israel, for the Philistines said, Lest the Hebrews make themselves sword or spear. + +And all Israel went down to the Land of the Philistines to forge every one his reaping-hook and his tool, and every one his axe and his sickle. + +And it was near the time of vintage: and their tools were +valued at three shekels for a +13:21 +Gr. +Such is the meaning of ὀδοὺς according to the old interpretors. + plowshare, and there was the same rate for the axe and the sickle. + +And it came to pass in the days of the war of Machmas, that there was not a sword or spear found in the hand of all the people, that were with Saul and Jonathan; but with Saul and Jonathan his son was there found. + +And there went out some from the camp of the Philistines to the place beyond Machmas. + +

+ + +

And when a certain day arrived, Jonathan the son of Saul said to the young man that bore his armor, Come, and let us go over to Messab of the Philistines that is on the other side yonder; but he told not his father. + +And Saul sat on the top of the hill under the pomegranate tree that is in Magdon, and there were with him about six hundred men. + +And Achia son of Achitob, the brother of Jochabed the son of Phinees, the son of Heli, +was the priest of God in Selom wearing an ephod: and the people knew not that Jonathan was gone. + +And in the midst of the passage whereby Jonathan sought to pass over to the encampment of the Philistines, there was both a sharp rock on this side, and a +14:4 +Gr. +tooth of a rock. + sharp rock on the other side: the name of the one +was Bases, and the name of the other Senna. + +The one way +was northward to one coming to Machmas, and the other way +was southward to one coming to Gabae. + +And Jonathan said to the young man that bore his armor, Come, let us go over to +14:6 +Heb. מצב 'garrison.' + Messab of these uncircumcised, if +perhaps the Lord may do something for us; for the Lord is not straitened to save by many or by few. + +And his armor-bearer said to him, Do all that your heart inclines toward: behold, I +am with you, my heart +is as your heart. + +And Jonathan said, Behold, we +14:8 +Gr. +do go over. + will go over to the men, and +14:8 +Gr. +will be rolled down suddenly, etc. + will come down suddenly upon them. + +If they should say thus to us, Stand aloof there until we shall send you word; then we will stand still by ourselves, and will not go up against them. + + +But if they should say thus to us, Come up to us; then will we go up, for the Lord has delivered them into our hands; this +shall be a sign to us. + +And they both went in to Messab of the Philistines; and the Philistines +14:11 +Gr. +say. + said, Behold, the Hebrews come forth out of their Caves, where they had hidden themselves. + +And the men of Messab answered Jonathan and his armor-bearer, and +14:12 +Gr. +say. + said, Come up to us, and we will show you a thing: and Jonathan said to his armor-bearer, Come up after me, for the Lord has delivered them into the hands of Israel. + +And Jonathan went up on his hands and feet, and his armor-bearer with him; and they looked on the face of Jonathan, and he struck them, and his armor-bearer did strike +them after him. + +And the first +14:14 +Gr. +stroke. + slaughter which Jonathan and his armor-bearer effected was twenty men, with darts and +14:14 +Gr. +casters of stones. + slings, and pebbles of the field. + +And there was dismay in the camp, and in the field; and all the people in Messab, and the spoilers were amazed; and they would not act, and the land was terror-struck, and there was dismay from the lord. + +And the watchmen of Saul looked in Gabaa of Benjamin, and, behold, the army was thrown into confusion on every side. + +And Saul said to the people with him, Number yourselves now, and see who has gone out from you: and they numbered themselves, and behold, Jonathan and his armor-bearer were not found. + +And Saul said to Achia, Bring the ephod; for he wore the ephod in that day before Israel. + +And it came to pass while Saul +14:19 +Gr. +is speaking. + was speaking to the priest, that the sound in the camp of the Philistines continued to increase greatly; and Saul said to the priest, Withdraw your hands. + +And Saul went up and all the people that were with him, and they come to the battle: and, behold, +every man's sword was against his neighbor, a very great confusion. + +And the servants who had been +14:21 +Gr. +yesterday and the third day. + before with the Philistines, who had gone up to the army, turned themselves also to be with the Israelites who were with Saul and Jonathan. + +And all the Israelites who were hidden in mount Ephraim heard also that the Philistines fled; and they also gather themselves after them to battle: and the Lord saved Israel in that day; and the war passed through Bamoth; and all the people with Saul were about ten thousand men. + +And +14:23 +Or, +the war was dispersed. + the battle extended itself to every city in the mount Ephraim. + +And Saul committed a great trespass of ignorance in that day, and he lays a curse on the people, saying, Cursed +is the man who shall eat bread before the evening; so I will avenge myself on my enemy: and none of the people tasted bread, +14:24 +The true reading seems to be οὐκ ἠρίστα. +Tertullian +quotes 'et tota terra +non +prandebat.' + though all the land was dining. + +And Jaal was a wood +14:25 +Gr. +of a swarm, etc. + abounding in swarms of bees on the face of the ground. + +And the people went into the place of the bees, and, behold, +14:26 +Heb. הלך רבש 'the honey ran.' + they continued speaking; and, behold, there was none that put his hand to his mouth, for the people feared the oath of the Lord. + +And Jonathan had not heard when his father adjured the people; and he reached forth the end of the staff that was in his hand, an dipped it into the honeycomb, and returned his hand to his mouth, and his eyes recovered their sight. + +And one of the people answered and said, Your father solemnly adjured the people, saying, Cursed +is the man who shall eat bread today. And the people were very faint, + +and Jonathan knew it, and said, My father has +14:29 +E medio sustulit. עכר probably read as עבר. + destroyed the land: see how my eyes have received sight +now that I have tasted a little of this honey. + +Surely if the people had this day eaten freely of the spoils of their enemies which they found, the slaughter among the Philistines would have been greater. + +And on that day he struck some of the Philistines in Machmas; and the people were very weary. + +And the people turned to the spoil; and the people took flocks, and herds, and calves, and killed them on the ground, and the people ate with the blood. + +And it was reported to Saul, saying, The people have sinned against the Lord, eating with the blood: and Saul said, Out of Getthaim roll a great stone to me hither. + +And Saul said, Disperse yourselves among the people, and tell them to bring hither every one his calf, and every one his sheep: and let them kill it on this +stone and sin not against the Lord in eating with the blood: and the people brought each one that which was in his hand, and they killed +them there. + +And Saul built an altar there to the Lord: this was the first altar that Saul built to the Lord. + +And Saul said, Let us go down after the Philistines this night, and let us plunder among them till the day break, and let us not leave a man among them. And they said, Do all that is good in your sight: and the priest said, let us draw near hither to God. + +And Saul enquired of God, If I go down after the Philistines, will you deliver them into the hands of Israel? And he answered him not in that day. + +And Saul said, Bring hither all the +14:38 +Gr. +corners. See Zech. 10:4. + chiefs of Israel, and know and see by whom this sin has been committed this day. + +For as the Lord lives who has saved Israel, +14:39 +Gr. +if he should answer or give sentence. + if answer should be against my son Jonathan, he shall surely die. And there was no one that answered out of all the people. + +And he said to all the men of Israel, You⌃ shall be under subjection, and I an Jonathan my son will be +14:40 +Gr. +become slaves, if proved guilty; but the LXX. might easily read לעבר as if לעבב. + under subjection: and the people said to Saul, Do that which is good in your sight. + +And Saul said, O Lord God of Israel, why have you not answered your servant this day? +is the iniquity in me, or in Jonathan my son? Lord God of Israel, give +14:41 +Heb. חמיס +scil. +'that I or Jonathan are guilty, then let the people be considered guiltless.' + clear +manifestations; and if +the lot should declare this, give, I pray you, to your people of Israel, give, I pray, holiness. And Jonathan and Saul are taken, and the people escaped. + +And Saul said, Cast +lots between me and my son Jonathan: whoever the Lord shall cause to be taken by lot, let him die: and the people said to Saul, This thing is not +to be done: and Saul prevailed against the people, and they cast +lots between him and Jonathan his son, and Jonathan is taken by lot. + +And Saul said to Jonathan, Tell me what you have done: and Jonathan told him, and said, I did indeed taste a little honey, with the end of my staff that was in my hand, and, behold! I +am to die. + +And Saul said to him, God do so to me, and more also, you shall surely die today. + +And the people said to Saul, Shall he that has wrought this great salvation in Israel be put to death this day? +As the Lord lives, there shall not fall to the ground one of the hairs of his head; for the people of God have wrought successfully this day. And the people prayed for Jonathan in that day, and he died not. + +And Saul went up from following the Philistines; and the Philistines departed to their place. + +And Saul received the kingdom, by lot he inherits the office +of ruling over Israel: and he fought against all his enemies round about, against Moab, and against the children of Ammon, and against the children of Edom, and against Baethaeor, and against the king of Suba, and against the Philistines: wherever he turned, he was victorious. + +And he wrought valiantly, and struck Amalec, and rescued Israel out of the hand of them that trampled on him. + +And the sons of Saul were Jonathan, and Jessiu, and Melchisa: and +these were the names of his two daughters, the name of the firstborn Merob, and the name of the second Melchol. + +And the name of his wife was Achinoom, the daughter of Achimaa: and the name of his captain of the host was Abenner, the son of Ner, son of a kinsman of Saul. + +And Kis +was the father of Saul, and Ner, the father of Abenezer, +was son of Jamin, son of Abiel. + +And the war was vehement against the Philistines all the days of Saul; and when Saul saw any mighty man, and any valiant man, then he took them to himself. + +

+ + +

And Samuel said to Saul, The Lord sent me to anoint you king over Israel: and now hear the voice of the Lord. + +Thus said the Lord of hosts, Now will I take vengeance for what Amalec did to Israel, when he met him in the way as he came up out of Egypt. + +And now go, and you shall strike Amalec and +15:3 +See v 8. + Hierim and all that belongs to him, and you shall not save anything of him alive, but you shall utterly destroy him: and you shall devote him and all his to +destruction, and you shall spare nothing belonging to him; and you shall kill both man and woman, and infant and suckling, and calf and sheep, and camel and ass. + +And Saul summoned the people, and he +15:4 +Gr. +numbers. + numbered them in Galgala, four hundred thousand +15:4 +Gr. +of ranks. + regular troops, and Juda thirty thousand regular troops. + +And Saul came to the cities of Amalec, and laid wait in the +15:5 +Gr. +brook. + valley. + +And Saul said to the Kinite, Go, and depart out of the midst of the Amalekites, lest I put you with them; for you dealt mercifully with the children of Israel when they went up out of Egypt. So the Kinite departed from the midst of Amalec. + +And Saul struck Amalec from Evilat to Sur fronting Egypt. + +And he took Agag the king of Amalec alive, and he killed all the people and +15:8 +This is strangely given as the rendering of החריס 'he destroyed.' + Hierim with the edge of the sword. + +And Saul and all the people saved Agag alive, and the +15:9 +Gr. +good. + best of the flocks, and of the herds, and of the fruits, of the vineyards, and of all the good things; and they would not destroy them: but every worthless and refuse +15:9 +Gr. +work. + thing they destroyed. + +And the word of the Lord came to Samuel, saying, + +I have +15:11 +Gr. +'been comforted.' The word has been rendered the same way before. + repented that I have made Saul to be king: for he has turned back from following me, and has not kept my word. And Samuel was grieved, and cried to the Lord all night. + +And Samuel rose early and went to meet Israel in the morning, and it was told +15:12 +Heb. and +Alex. +Samuel. + Saul, +15:12 +Heb. and +Alex. +Saul. + saying, Samuel has come to Carmel, and he has +15:12 +Lit. +set up a hand. + raised up help for himself: and he turned his chariot, and came down to Galgala to Saul; and, behold, he was offering up a whole burnt offering to the Lord, the chief of the spoils which he brought out of Amalec. + +And Samuel came to Saul: and Saul said to him, Blessed +are you +15:13 +Gr. +to the Lord. + of the Lord: I have +15:13 +Gr. +established. + performed all that the Lord said. + +And Samuel said, What then +is the +15:14 +Gr. +voice. + bleating of this flock in my ears, and the sound of the oxen which I hear? + +And Saul said, I have brought them out of Amalec, that which the people preserved, even the best of the sheep, and of the cattle, that it might be sacrificed to the Lord your God, and the rest have I utterly destroyed. + +And Samuel said to Saul, Stay, and I will tell you what the Lord has said to me this night: and he said to him, Say on. + +And Samuel said to Saul, Are you not little in his eyes, +though a leader of +15:17 +Gr. +staff of a tribe. A double rendering of שבט +i.e. +both staff and tribe. + one of the tribes of Israel? and +yet the Lord anointed you to be king over Israel. + +And the Lord sent you on a journey, and said to you, Go, and utterly destroy: you shall kill the sinners against me, +even the Amalekites; and you shall war against them until you have consumed them. + +And why did not you listen to the voice of the Lord, but did haste to fasten upon the spoils, and did that which was evil in the sight of the Lord? + +And Saul said to Samuel, Because I listened to the voice of the people: yet I went the way by which the Lord sent me, and I brought Agag the king of Amalec, and I destroyed Amalec. + +But the people took of the spoils the best flocks and herds +out of that which was destroyed, to sacrifice before the Lord our God in Galgal. + +And Samuel said, Does the Lord take pleasure in whole burnt offerings and sacrifices, as in hearing the words of the Lord? behold, obedience +is better than a good sacrifice, and hearkening than the fat of rams. + +For sin is +as divination; idols bring on pain and grief. Because you have rejected the word of the Lord, the Lord also shall reject you from being king over Israel. + +And Saul said to Samuel, I have sinned, in that I have transgressed the word of the Lord and your direction; for I feared the people, and I listened to their voice. + +And now remove, I pray you, my sin, and turn back with me, and I will worship the Lord your God. + +And Samuel said to Saul, I will not turn back with you, for you have rejected the word of the Lord, and the Lord will reject you from being king over Israel. + +And Samuel turned his face to depart, and Saul caught hold of the skirt of his +15:27 +Gr. +doublet, or mantle. + garment, and tore it. + +And Samuel said to him, The Lord has torn your kingdom from Israel out of your hand this day, and will give it to your neighbor who is better than you. + +And +15:29 +Wide variation from the +Heb. + Israel shall be divided to two: and +God will not turn nor repent, for he is not as a man to repent. + +And Saul said, I have sinned; yet honor me, I pray you, before the elders of Israel, and before my people; and turn back with me, and I will worship the Lord your God. + +So Samuel turned back after Saul, and he worshipped the Lord. + +And Samuel said, Bring me Agag the king of Amalec: and Agag came to him trembling; and Agag said +15:32 +Or, +'If it be thus, bitter is death.' +Is death thus bitter? + +And Samuel said to Agag, As your sword has bereaved women of their children, so shall your mother be made childless among women: and Samuel killed Agag before the Lord in Galgal. + +And Samuel departed to Armathaim, and Saul went up to his house at Gabaa. + +And Samuel did not see Saul again till the day of his death, for Samuel mourned after Saul, and the Lord repented that he had made Saul king over Israel. + +

+ + +

And the Lord said to Samuel, How long do you mourn for Saul, whereas I have rejected him from reigning over Israel? Fill your horn with oil, and come, I will send you to Jessae, to Bethleem; for I have seen among his sons a king for me. + +And Samuel said, How can I go? whereas Saul will hear of it, and kill me: and the Lord said, Take a heifer in your hand and you shall say, I am come to sacrifice to the Lord. + +And you shall call Jessae to the sacrifice, and I will make known to you what you shall do; and you shall anoint him whom I shall mention to you. + +And Samuel did all that the Lord told him; and he came to Bethleem: and the elders of the city were amazed at meeting him, and said, +16:4 +Gr. +is 'your coming in peace.' + Do you come peaceably, you Seer? + +And he said, +16:5 +Gr. +peace. + Peaceably: I am come to sacrifice to the Lord. Sanctify yourselves, and rejoice with me this day: and he sanctified Jessae and his sons, and he called them to the sacrifice. + +And it came to pass when they came in, that he saw Eliab, and said, Surely the Lord's anointed +is before him. + +But the Lord said to Samuel, Look not on his +16:7 +Or, +face. + appearance, nor on his stature, for I have rejected him; for God +16:7 +Gr. +will not see. + sees not as man looks; for man looks at the outward appearance, but God looks at the heart. + +And Jessae called Aminadab, and he passed before Samuel: and he said, Neither has God chosen this one. + +And Jessae caused Sama to pass by: and he said, Neither has God chosen +16:9 +Gr. +in this one. + this one. + +And Jessae caused his seven sons to pass before Samuel: and Samuel said, the Lord has not chosen these. + +And Samuel said to Jessae, +16:11 +Gr. +Are your sons come to an end? + Have you no more sons? And Jessae said, +There is yet +16:11 +Or, +the youngest. + a little one; behold, he tends the flock. And Samuel said to Jessae, Send and fetch him for we may not sit down till he comes. + +And he sent and fetched him: and he was ruddy, with beauty of eyes, and +16:12 +Gr. +goodly in the sight of the Lord. + very goodly to behold. And the Lord said to Samuel, Arise, and anoint David, for he is good. + +And Samuel took the horn of oil, and anointed him in the midst of his brethren: and the Spirit of the Lord +16:13 +Gr. +leapt upon. + came upon David from that day forward: and Samuel arose, and departed to Armathaim. + +And the Spirit of the Lord departed from Saul, and an evil spirit from the Lord +16:14 +Gr. +choked him. + tormented him. + +And Saul's servants said to him, Behold now, an evil spirit from the Lord torments you. + +Let now your servants speak before you, and let them seek for our lord a man skilled to play on the harp; and it shall come to pass when an evil spirit comes upon you and he shall play on his harp, that you shall be well, and he shall refresh you. + +And Saul said to his servants, Look now out for me a +16:17 +Gr. +man playing skilfully. + skillful player, and bring him to me. + +And one of his servants answered and said, Behold, I have seen a son of Jessae the Bethleemite, and +16:18 +Gr. +him understanding. + he understands playing +on the harp, and the man +is prudent, and a warrior, and wise in speech, and the man +is handsome, and the Lord +is with him. + +And Saul sent messengers to Jessae, saying, Send to me your son David who is with your flock. + +And Jessae took a homer of bread, and a bottle of wine, and one kid of the goats, and sent them by the hand of his son David to Saul. + +And David went in to Saul, and stood before him; and he loved him greatly; and he became his armor-bearer. + +And Saul sent to Jessae, saying, Let David, I pray you, stand before me, for he has found grace in my eyes. + +And it came to pass when the evil spirit was upon Saul, that David took his harp, and played with his hand: and Saul was refreshed, and +it was well with him, and the evil spirit departed from him. + +

+ + +

And the Philistines gather their armies to battle, and gather themselves to Socchoth of Judaea, and encamp between Socchoth and Azeca +17:1 +Alex. +Aphesdommin. + Ephermen. + +And Saul and the men of Israel gather together, and they encamp in the valley, and set the battle in array against the Philistines. + +And the Philistines stand on the mountain on one side, and Israel stands on the mountain on the other side, and the valley was between them. + +And there went forth a mighty man out of the army of the Philistines, Goliath, by name, out of Geth, his height +was four cubits and a span. + +And +he had a helmet upon his head, and he wore a breastplate of chain armor; and the weight of his breastplate +was five thousand shekels of brass and iron. + +And greaves of grass +were upon his legs, and a brazen target +was between his shoulders. + +And the staff of his spear +was like a weaver's beam, and the +17:7 +Gr. +the spear. + spear's head +was formed of six hundred shekels of iron; and his armor-bearer went before him. + +And he stood and cried to the army of Israel, and said to them, Why are you⌃ come forth to set yourselves in battle array against us? Am not I a Philistine, and you⌃ +17:8 +Or, +servants, עברי being read as if עברי. + Hebrews of Saul? Choose for yourselves a man, and let him come down to me. + +And if he shall be able to fight against me, and shall strike me, then will we be your servants: but if I should prevail and strike him, you⌃ shall be our servants, and serve us. + +And the Philistine said, Behold, I have defied the armies of Israel this very day: give me a man, and we will both of us fight in single combat. + +And Saul and all Israel heard these words of the Philistine, and they were dismayed, and greatly terrified. + +And David son of an Ephrathite said, this one was of Bethleem Juda, and his name was Jessae, and he had eight sons. And the man passed for an old man among men in the days of Saul. + + +And the three elder sons of Jessae went and followed Saul to the war, and the + +17:13 +Gr. +name. + +names of his sons that went to the war were, Eliab his first-born, and his second Aminadab, and his third son Samma. + + +And David himself + +17:14 +Gr. +is. + +was the younger son, and the three elder followed Saul. + + +And David departed and returned from Saul, + +17:15 +Gr. +feeding. + +to feed his father’s sheep in Bethleem; + + +And the Philistine advanced morning and evening, and stood up forty days. + + +And Jessae said to David, Take now to your brethren an ephah of this meal, and these ten loaves, and run to the camp and give them to your brothers. + + +And you shall carry to the captain of the thousand + +17:18 +Lit. +the ten cheeses of this milk. + +these ten cheeses of milk, and you shall see how your brethren fare, and learn what they lack. + + +And Saul himself and all the men of Israel were in the valley of the Oak, warring with the Philistines. + + +And David rose early in the morning, and left the sheep to a keeper, and took and went as Jessae commanded him, and he came to the trench and to the army as it was going out to fight, and they shouted for the battle. + + +And Israel and the Philistines formed their lines one opposite the other. + + +And David deposited his burden in the hand of a keeper, and ran to the line, and went and asked his brethren how they Were. + + +And while he was speaking with them, behold the Amessaean advanced, Goliath by name, the Philistine of Geth, of the armies of the Philistines, and he spoke + +17:23 +Gr. +according to these words. + +as before, and David heard. + + +And all the men of Israel when they saw the man fled from before him, and they were greatly terrified. + + +And the men of Israel said, Have you⌃ seen this man that comes up? for he has reproached Israel and has come up; and it shall be that the man who shall strike him, the king shall enrich him with great wealth and shall give him his daughter, and shall make his father’s house free in Israel. + + +and David spoke to the men who stood with him saying, Shall it indeed be done thus to the man who shall strike that Philistine, and take away reproach from Israel? for who is this uncircumcised Philistine that he has defied the army of the living God? + + +And the people spoke to him according to this Word, saying Thus shall it be done to the man Who shall strike him. + + +And Eliab his elder brother heard as he spoke to the men, and Eliab was very angry with David and said, Why have you thus come down, and with whom have you left those few sheep in the wilderness? I know your pride and the naughtiness of your heart, for you are come down to see the battle. + + +And David said what have I done now? + +17:29 +Gr. +is there not a word? + +Have I no business here? + + +And he turned from him towards another, and he spoke after the same manner; and the people answered him + +17:30 +Lit. +according to the word of the first. + +after the former manner. + + +And the Words which David spoke were heard and were reported + +17:31 +Gr. +behind Saul. + +to Saul. And he took him to himself. + + +And David said to Saul, Let not, I pray you, the heart of my lord be dejected +17:32 +Gr. +upon him. + within him: your servant will go, and fight with this Philistine. + +And Saul said to David, You will not in anyway be able to go against this Philistine to fight with him, for you are a mere youth, and he a man of war from his youth. + +And David said to Saul, Your servant was tending the flock for his father; and when a lion came and a she-bear, and took a sheep out of the flock, + +then I went forth after him, and struck him, and drew +the spoil out of his mouth: and +17:35 +Gr. +it. + as he rose up against me, then I caught hold of his throat, and struck him, and killed him. + +Your servant struck both the lion and the bear, and the uncircumcised Philistine shall be as one of them: shall I not go and strike him, and remove this day a reproach from Israel? For who +is this uncircumcised one, who has defied the army of the living God? + +The Lord who 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 uncircumcised Philistine. And Saul said to David, Go, and the Lord shall be with you. + +And Saul clothed David with a military coat, and +put his brazen helmet on his head. + +And he girded David with his sword over his coat: and he +17:39 +Gr. +laboured. + made trial walking +with them once and again: and David said to Saul, I shall not be able to go with these, for I have not proved +them: so they remove them from him. + +And he took his staff in his hand, and he chose for himself five smooth stones out of the brook, and put them in the shepherd's scrip which he had for his store, and his sling was in his hand; and he approached the Philistine. +17:40 +Verse 41 is not in the Vatican codex. +Alex. +has the following. + + +And the Philistine advanced and drew near to David, and a man bearing his shield went before him, and the Philistine looked on. + + +And Goliath saw David, and despised him; for he was a lad, and ruddy, +17:42 +Gr. +with beauty of eyes. + with a fair countenance. + +And the Philistine said to David, Am I as a dog, that you come against me with a staff and stones? +17:43 +The following words in italics not in +Alex. +or +Heb. + +and David said, Nay, but worse than a dog. And the Philistine cursed David by his gods. + +And the Philistine said to David, Come to me, and I will give your flesh to the birds of the air, and to the beasts of the earth. + +And David said to the Philistine, You come to me with sword, and with spear, and with shield; but I come to you in the name of the Lord God of hosts of the army of Israel, which you have defied + +this day. And the Lord shall +17:46 +Gr. +shut you up. + deliver you this day into my hand; and I will kill you, and take away your head from off you, and will give your limbs and the limbs of the army of the Philistines this day to the birds of the sky, and to the wild beasts of the earth; and all the earth shall know that there is a God in Israel. + +And all this assembly shall know that the Lord delivers not by sword or spear, for the battle +is the Lord's, and the Lord will deliver you into our hands. + +And the Philistine arose and went to meet David. + +And David stretched out his hand to his scrip, and took thence a stone, and slang it, and struck the Philistine on his forehead, and the stone penetrated through the helmet into his forehead, and he fell upon his face to the ground. +17:49 +Verse 50 is not in the Vatican codex. +Alex. +has the following. + + +So David prevailed over the Philistine with a sling and a stone, and struck the Philistine and killed him, and there was no sword in the hand of David. + + +And David ran, and stood upon him, and took his sword, and killed him, and cut off his head: and the Philistines saw that their champion was dead, and they fled. + +And the men of Israel and Juda +17:52 +Gr. +arise. + arose, and shouted and pursued them as far as the entrance to +17:52 +Alex. +Gai. + Geth, and as far as the gate of Ascalon: and the slain men of the Philistines fell in the way of the +17:52 +Heb. שעריס Shaaraim. gates, both to Geth, and to Accaron. + +And the men of Israel returned +17:53 +Gr. +declining from after. + from pursuing after the Philistines, and they +17:53 +Gr. +trampled on. + destroyed their camp. + +And David took the head of the Philistine, and brought it to Jerusalem; but he put his armor in his tent. +17:54 +Verses 55 to 58 are not in the Vatican codex. +Alex. +has the following. + + +And when Saul saw David going out to meet the Philistine, he said to Abener the captain of the host, Whose son is this youth? and Abener said, As your soul lives, O King, I know not. + + +And the king said, Do you ask whose son this youth is. + + +And as David returned from the slaughter of the Philistine, Abener took him and brought him before Saul, and the head of the Philistine was in his hand. + + +And Saul said to him, Whose son are you, young man? and David said, The son of your servant Jessae the Bethleemite. + + +

+ + +

+18:1 +Verses 1 to 5 are not in the Vatican codex. +Alex. +has the following. + +And it came to pass when he had finished speaking to Saul, that the soul of Jonathan was knit to the soul of David and David loved him + +18:1 +Gr. +according to. + +as his own soul. + + + +And Saul took him in that day, and did not suffer him to return to his father's house. + + + +And Jonathan and David made a covenant because he loved him as his own soul. + + + +And Jonathan stripped himself of his + +18:4 +See Jno 21. + +upper garment, and gave it to David, and his mantle and all he had upon him, even to his sword and to his bow, and to his girdle. + + + +And David went out withersoever Saul sent him, and +18:5 +Gr. +understood +or +was wise. + +acted wisely, and Saul set him over the men of war, and he was pleasing in the eyes of all the people, and also in the eyes of the servants of Saul. + + +And there came out women in dances to meet David out of all the cities of Israel, with timbrels, and with rejoicing, and with cymbals. + +And the women began +the strain, and said, Saul has struck his thousands, and David his ten thousands. + +And it seemed evil in the eyes of Saul concerning this matter, and he said, To David they have given ten thousands, and to me they have given thousands. +18:8 +From this point to the end of v 11. is read from +Alex. +And what more can he have but the kingdom? + + + +And Saul eyed David from that day and onward. + + + +And it came to pass +18:10 +Or, +after. +Gr. +from. + on the morrow that an evil spirit from God fell upon Saul, and he prophesied in the midst of his house. And David was playing on the harp with his hand, according to his daily custom. And Saul’s spear was in his hand. + + + +And Saul took his spear and said, I will strike David even to the wall. But David escaped twice from his presence. + + +And Saul was alarmed on account of David. + +And he removed him from him, and made him a captain of a thousand for himself; and he went out and came in before the people. + +And David was prudent in all his ways, and the Lord was with him. + +And Saul saw that he was very wise, and he was afraid of him. + +And all Israel and Juda loved David, because he came in and went out before the people. +18:16 +vv 17-19 are not in the Vatican codex. They are here read from +Alex. + + +And Saul said to David, Behold my elder daughter Merob, I will give her to you to Wife, only be you to me a mighty man and fight the wars of the Lord. And Saul said, Let not my hand be upon him, but the hand of the Philistines shall be upon him. + + + +And David said to Saul, Who am I, and What is the life of my father’s family in Israel, that I should be the king’s son—in-law? + + + +But it came to pass at the time when Merob Saul’s daughter should have been given to David, that she was given to Israel the Mothulathite to wife. + + +And Melchol the daughter of Saul loved David; and it was told Saul, and the thing was pleasing in his eyes. + +And Saul said, I will give her to him, and she shall be a stumbling block to him. Now the hand of the Philistines was against Saul. + +And Saul charged his servants, saying, Speak you⌃ privately to David, saying, Behold, the king delights in you, and all his servants love you, and do you becomes the king's son-in-law. + +And the servants of Saul spoke these words in the ears of David; and David said, +Is it a light thing in your eyes to become son-in-law to the king? Whereas I +am an humble man, and not honorable? + +And the servants of Saul reported to him according to these words, which David spoke. + +And Saul said, Thus shall you⌃ speak to David, The king wants no gift but one hundred foreskins of the Philistines, to avenge himself on the kings enemies. Now Saul thought to cast him into the hands of the Philistines. + +And the servants of Saul report these words to David, and David was well pleased to become the son-in-law to the king. + +And David arose, and went, he and his men, and struck among the Philistines one hundred men: and he brought their foreskins, and he becomes the king's son-in-law, and +Saul gives him Melchol his daughter to wife. + +And Saul saw that the Lord +was with David, and +that all Israel loved him. + +And he was yet more afraid of David. +18:29 +v 30 is not in the Vatican codex. It is here read from +Alex. + + +And the chief of the Philistines went forth; and it came to pass that from +18:30 +Gr. +their sufficient expedition. + the suficiency of their expedition David acted Wisely above all the servants of Saul; and his name was honored exceedingly. + + +

+ + +

And Saul spoke to Jonathan his son, and to all his servants, to kill David. + +And Jonathan, Saul's son, +19:2 +Gr. +chose, +q.d. dilexit. loved David much: and Jonathan told David, saying, Saul seeks to kill you: take heed to yourself therefore to-morrow morning, and hide yourself, and dwell in secret. + +And I will go forth, and stand near my father in the field where you shall be, and I will speak concerning you to my father; and I will see what his answer may be, and I will tell you. + +And Jonathan spoke favorably concerning David to Saul his father, and said to him, Let not the king sin against your servant David, for he has not sinned against you, and his deeds +are very good. + +And he put his life in his hand, and struck the Philistine, and the Lord wrought a great deliverance; and all Israel saw, and rejoined: why then do you sin against innocent blood, to kill David without a cause? + +And Saul listened to the voice of Jonathan; and Saul swore, saying, +As the Lord lives, +19:6 +Gr. +if he shall die. + he shall not die. + +And Jonathan called David, and told him all these words; and Jonathan brought David in to Saul, and he was before him as in former times. + +And +19:8 +Lit. +war added to be. + there was again war against Saul; and David did valiantly, and fought against the Philistines, and struck them with a very great slaughter, and they fled from before him. + +And an evil spirit +19:9 +Gr. +of God. + from God was upon Saul, and he was +19:9 +Gr. +sleeping. +Heb. sitting, perhaps ישך read for ישב. + resting in his house, and a spear +was in his hand, and David was playing on the harp with his hands. + +And Saul sought +19:10 +Gr. +to strike the spear into David. + to strike David with the spear; and David withdrew +suddenly from the presence of Saul; and he drove the spear into the wall; and David retreated and escaped. + +And it came to pass in that night, that Saul sent messengers to the house of David to watch him, in order to kill him in the morning; and Melchol +19:11 +Gr. +his wife sent to David. + David's wife told him, saying, Unless you save your life this night, to-morrow you shall be slain. + +So Melchol lets David down by the window, and he departed, and fled, and escaped. + +And Melchol took +19:13 +Heb. teraphim, probably such images as were put on monuments. + images, and laid them on the bed, and she put the +19:13 +כבר liver, has evidently been read here for כביר a quilt, or perhaps a pillow. + liver of a goat by his head, and covered them with clothes. + +And Saul sent messengers to take David; and they say that he is sick. + +And he sends to David, saying, Bring him to me on the bed, that I may kill him. + +And the messengers come, and, behold, the images +were on the bed, and the goat's liver at his head. + +And Saul said to Melchol, Why have you thus deceived me, and suffered my enemy to depart, and he has escaped? and Melchol said to Saul, He said, let me go, and if not, I will kill you. + +So David fled, and escaped, and comes to Samuel to Armathaim, and tells him all that Saul had done to him: and Samuel and David went, and lived in Navath in Rama. + +And it was told Saul, saying, Behold, David +is in Navath in Rama. + +And Saul sent messengers to take David, and they saw the assembly of the prophets, and Samuel stood +as appointed over them; and the Spirit of God came upon the messengers of Saul, and they prophesy. + +And it was told Saul, and he sent other messengers, and they also prophesied: and Saul sent again a third set of messengers, and they also prophesied. + +And Saul was very angry, and went himself also to Armathaim, and he comes as far as the well of the threshing floor that is in Sephi; and he asked and said, Where +are Samuel and David? And they said, Behold, in Navath in Rama. + +And he went thence to Navath in Rama: and there came the Spirit of God upon him also, and he went on prophesying till he came to Navath in Rama. + +And he took off his clothes, and prophesied before them; and lay down naked all that day and all that night: therefore they said, +Is Saul also among the prophets? + +

+ + +

And David fled from Navath in Rama, and comes into the presence of Jonathan; and he said, What have I done, and what +is my fault, and wherein have I sinned before your father, that he seeks my life? + +And Jonathan said to him, Far be it from you: you shall not die: behold, my father will not do any thing great or small +20:2 +Gr. +and will not uncover my ear. + without discovering it to me; and why should my father hide this matter from me? This thing is not +so. + +And David answered Jonathan, and said, Your father knows surely that I have found grace in your sight, and he said, Let not Jonathan know this, lest he refuse his consent: but +as the Lord lives and your soul lives, as I said, +the space is filled up between me and death. + +And Jonathan said to David, What does your soul desire, and what shall I do for you. + +And David said to Jonathan, Behold, to-morrow +is the new moon, and I shall not on any account sit down to eat, but you shall let me go, and I will hide in the plain till the evening. + +And if your father do in anyway +20:6 +Or, +notice me as present or absent. + enquire for me, then shall you say, David earnestly asked leave of me to run to Bethleem his city, for +there is there, a +20:6 +Gr. +sacrifice of days. +Hebraism. yearly sacrifice for all the family. + +If he shall say thus, Well, — +20:7 +Gr. +peace to your servant. + +all is safe for your servant: but if he shall answer harshly to you, know that evil is determined by him. + +And you shall deal mercifully with your servant; for you have brought your servant into a covenant of the Lord with yourself: and if there is iniquity in your servant, kill me yourself; but why do you thus bring me to your father? + +And Jonathan said, That be far from you: for if I surely know that evil is determined by my father to come upon you, although it should not be against your cities, I will tell you. + +And David said to Jonathan, Who can tell me if your father should answer roughly? + +And Jonathan said to David, Go, and abide in the field. And they went out both into the field. + +And Jonathan said to David, the Lord God of Israel knows that I will sound my father as I have an opportunity, +20:12 +Heb. השליח the third day. + three several times, and, behold, +if good should be determined concerning David, and I do not send to you to the field, + +God do so to Jonathan and more also: as I shall +also report the evil to you, and make it known to you, and I will let you go; and you shall depart in peace, and the Lord shall be with you, as he was with my father. + +And if indeed +20:14 +Gr. +I yet being alive. + I continue to live, then shall you deal mercifully with me; and if I indeed die, + +you shall not withdraw your mercy from my house for ever: and +20:15 +Gr. +The meaning of the +Heb. is here greatly obscured. + if you do not, when the Lord cuts off the enemies of David each from the face of the earth, + +should it happen that the name of Jonathan be revealed by the house of David, then let the Lord seek out the enemies of David. + +And Jonathan swore yet again to David, because he loved the soul of him that loved him. + +And Jonathan said, To-morrow +is the new moon, and you will be enquired for, because your seat will be observed as vacant. + +And you shall +20:19 +Gr. +act thrice. + stay three days, and watch an opportunity, and shall come to your place where you may hide yourself in the day of your business, and you shall wait by that +20:19 +A corruption of the +Heb. ezel. + stone Ezel. + +And I will shoot +20:20 +Gr. +with. + three arrows, aiming them at +20:20 +The +Heb. has been turned into a proper name. + a mark. + +And behold, I +will send a lad, saying, Go find me the arrow. + +If I should expressly say to the lad, The arrow +is here, and on this side of you, take it; +then come, for it is well with you, and there is no reason +for fear, as the Lord lives: +but if I should say thus to the young man, The arrow +is on that side of you, and beyond; go, for the Lord has sent you away. + +And as for the word which you and I have spoken, behold, the Lord +is witness between me and you for ever. + +So David hides himself in the field, and the +new +20:24 +Or, +moon. + month arrives, and the king comes to the table to eat. + +And he sat upon his seat as +20:25 +Gr. +once and once. + in former times, even on his seat by the wall, and he went before Jonathan; and Abenner sat on one side of Saul, and the place of David was empty. + +And Saul said nothing on that day, for he said, It seems to have fallen out that he is not clean, because he has not purified himself. + +And it came to pass on the morrow, on the second day of the month, that the place of David was empty; and Saul said to Jonathan his son, Why has not the son of Jessae attended both yesterday and today at the table? + +And Jonathan answered Saul, and said to him, David asked leave of me to go as far as Bethleem his city; + +and he said, Let me go, I pray you, for we have a family sacrifice in the city, and my brethren have +20:29 +Gr. +given a charge for me. + sent for me; and now, if I have found grace in your eyes, I will even go over and see my brethren: therefore he is not present at the table of the king. + +And Saul was exceedingly angry with Jonathan, and said to him, You son of +20:30 +Lit. +deserting in a military sense. + traitorous damsels! for do I not know that you are an accomplice with the son of Jessae to your shame, and to the shame of your mother's nakedness? + +For +20:31 +Gr. +all the days that. + so long as the son of Jessae lives upon the earth, your kingdom shall not be established: now then send and take the young man, for he +20:31 +Gr. +is a son of death. + shall surely die. + +And Jonathan answered Saul, Why +20:32 +Gr. +does he die. + is he to die? What has he done? + +And Saul lifted up his spear against Jonathan to kill him: so Jonathan knew that this evil was determined on by his father to kill David. + +And Jonathan sprang up from the table in great anger, and did not eat bread on the second +day of the month, for he grieved bitterly for David, because his father determined +on mischief against him. + +And morning came, and Jonathan went out to the field, as he appointed +to do for a signal to David, and a little boy +was with him. + +And he said to the boy, Run, find me the arrows which I shoot: and the boy ran, and +Jonathan shot an arrow, and sent it beyond +him. + +And the boy came to the place where the arrow was which Jonathan shot; and Jonathan cried out after the lad, and said, The arrow +is on that side of you and beyond you. + +And Jonathan cried out after his boy, saying, Make all speed, and stay not. And Jonathan's boy gathered up the arrows, and brought the arrows to his master. + +And the boy knew nothing, only Jonathan and David +knew. + +And Jonathan gave his weapons to his boy, and said to his boy, Go, enter into the city. + +And when the lad went in, then David arose from the +20:41 +Gr. +See v. 19. + south, and fell upon his face, and did obeisance to him three times, and they kissed each other, and wept for each other, for a great while. + +And Jonathan said to David, Go in peace, and as we have both sworn in the name of the Lord, saying, The Lord shall be witness between me and you, and between my seed and your seed for ever—even so let it be. And David arose and departed, and Jonathan went into the city. + +

+ + +

And David comes to Nomba to Abimelech the priest: and Abimelech was amazed at meeting him, and said to him, Why +are you alone, and nobody with you? + +And David said to the priest, The king gave me a command today, and said to me, Let no one know the matter on which I send you, and concerning which I have charged you: and I have charged my servants +to be in the place that is called, +21:2 +This is another instance of double translation, מקוצ suggesting probably both the idea of place and faithfulness. + The faithfulness of God, +21:2 +Phellani maemoni, +a corruption of פלכי אלמבי. + Phellani Maemoni. + +And now if there are under your hand five loaves, give into my hand what is ready. + +And the priest answered David, and said, There are no common loaves under my hand, for I have none but holy loaves: if the young men have been kept at least from women, then they shall eat +them. + +And David answered the priest, and said to him, Yes, we have been kept from women for three days: when I came forth for the journey all the young men were purified; but this expedition is unclean, therefore it shall be sanctified this day because of my weapons. + +So Abimelech the priest gave him the show bread; for there were no loaves there, but only the presence loaves which had been removed from the presence of the Lord, in order that hot bread should be set on, on the day on which he took them. + +And there was there on that day one of Saul's servants +21:7 +The word Νεεσσαρὰν is another repitition. +Heb. בעצר. detained before the Lord, and his name +was Doec the Syrian, tending the mules of Saul. + +And David said to Abimelech, See if there is here under your hand spear or sword, for I have not +21:8 +Gr. +taken. + brought in my hand my sword or my weapons, for the word of the king was urgent. + +And the priest said, Behold the sword of Goliath the Philistine, whom you struck in the valley of Ela; and it is wrapped in a +21:9 +Alex.+ +behind the ephod (or shoulder-piece) —so the +Heb. + cloth: if you will take it, take it for yourself, for there is no other except it here. And David said, Behold, there is none like it; give it me. + +And he gave it him; and David arose, and fled in that day from he presence of Saul: and David came to Anchus king of Geth. + +And the servants of Anchus said to him, +Is not this David the king of the land? Did not the dancing women begin the song to him, saying, Saul has struck his thousand, and David his ten thousands? + +And David +21:12 +Gr. +put. + laid up the words in his heart, and was greatly afraid of Anchus king of Geth. + +And he changed his appearance before him, and feigned himself a false character in that day; and drummed upon the doors of the city, and used extravagant gestures with his hands, and fell against the doors of the gate, and his spittle ran down upon his beard. + +And Anchus said to his servants, Behold! you⌃ see the man +is +21:14 +Gr. +or man epileptic. + mad: why have you⌃ brought him in to me? + + +Am I in lack of madmen, that you⌃ have brought him in to me to play the madman? He shall not come into the house. + +

+ + +

And David departed thence, and escaped; and he comes to the cave of Odollam, and his brethren hear, and the house of his father, and they go down to him there. + +And there gathered to him every one that was in distress, and every one that was in debt, and every one that was troubled in mind; and he was a leader over them, and there were with him about four hundred men. + +And David departed thence to Massephath of Moab, and said to the king of Moab, Let, I pray you, my father and my mother be with you, until I know what God will do to me. + +And he persuaded +22:4 +Gr. +the face of the king. + the King of Moab, and they dwell with him continually, while David was in the hold. + +And Gad the prophet said to David, Dwell not in the hold: go, and you shall enter the land of Juda. So David went, and came and lived in the city of Saric. + +And Saul heard that David was discovered, and his men with him: now Saul lived in the hill below the field that is in Rama, and his spear +was in his hand, and all his servants stood near him. + +And Saul said to his servants that stood by him, Hear now, you⌃ sons of Benjamin, will the son of Jessae indeed give all of you fields and vineyards, and will he make you all captains of hundreds and captains of thousands? + +That you⌃ are conspiring against me, and there is no one that informs me, whereas my son has made a covenant with the son of Jessae, and there is no one of you that +22:8 +Gr. +labors. + is sorry for me, or informs me, that my son has stirred up my servant against me for an enemy, as +it is this day? + +And Doec the Syrian who was over the mules of Saul +22:9 +Gr. +answers. + answered and said, I saw the son of Jessae as he came to Nomba to Abimelech son of Achitob the priest. + +And +the priest enquired of God for him, and gave him provision, and gave him the sword of Goliath the Philistine. + +And the king sent to call Abimelech son of Achitob and all his father's sons, the priests that were in Nomba; and they all came to the king. + +And Saul said, Hear now, you son of Achitob. And he said, Behold! I +am here, speak, +my lord. + +And Saul said to him, Why have you and the son of Jessae conspired against me, that you should give him bread and a sword, and should enquire of God for him, to raise him up against me as an enemy, as +he is this day? + +And he answered the king, and said, And who +is there among all your servants faithful as David, and +he is a son-in-law of the king, and +he is executor of all your commands, and +is honorable in your house? + +Have I begun today to enquire of God for him? By no means: let not the king bring a charge against his servant, and against the whole of my father's house; for your servant knew not in all these matters anything great or small. + +And king Saul said, You shall surely die, Abimelech, you, and all your father's house. + +And the king said to the footmen that attended on him, Draw near and kill the priests of the Lord, because their hand +is with David, and because they knew that he +22:17 +Gr. +flees. + fled, and they did not inform me. But the servants of the king would not lift their hands to fall upon the priest of the Lord. + +And the king said to Doec, Turn you, and fall upon the priests: and Doec the Syrian turned, and killed the priests of the Lord in that day, three hundred and five men, all wearing +22:18 +Alex. +a linen ephod. + an ephod. + +And he struck Nomba the city of the priest with the edge of the sword, both man, and woman, infant and suckling, and calf, and ox, and sheep. + +And one son of Abimelech son of Achitob escapes, and his name +was Abiathar, and he fled after David. + +And Abiathar told David that Saul had slain all the priests of the Lord. + +And David said to Abiathar, I knew it in that day, that Doec the Syrian would surely tell Saul: I am guilty of the +22:22 +Gr. +souls +or +lives. + death of the house of your father. + +Dwell with me; fear not, for wherever I shall seek a place +of safety for my life, I will also seek a place for your life, for you are safely guarded +while with me. + +

+ + +

And it was told David, saying, behold, the Philistines war in Keila, and they rob, they trample on the threshing-floors. + +And David enquired of the Lord, saying, Shall I go and strike these Philistines? And the Lord said, Go, and you shall strike these Philistines, and shall save Keila. + +And the men of David said to him, Behold, we are afraid here in Judea; and how shall it be if we go to Keila? Shall we go after the spoils of the Philistines? + +And David enquired yet again of the Lord; and the Lord answered him, and said to him, Arise and go down to Keila, for I will deliver the Philistines into your hands. + +So David and his men with him went to Keila, and fought with the Philistines; and they fled from before him, and he carried off their cattle, and struck them with a great slaughter, and David rescued the inhabitants of Keila. + +And it came to pass when Abiathar the son of Achimelech fled to David, that he went down with David to Keila, having an ephod in his hand. + +And it was told Saul that David was come to Keila: and Saul said, God has sold him into my hands, for he is shut up, having entered into a city that has gates and bars. + +And Saul charged all the people to go down to war to Keila, to besiege David and his men. + +And David knew that Saul +23:9 +Gr. +is not silent concerning. + spoke openly of mischief against him: and David said to Abiathar the priest, Bring the ephod of the Lord. + +And David said, Lord God of Israel, your servant has indeed heard, that Saul seeks to come against Keila to destroy the city on my account. + +Will +the place +23:11 +i.e. +besieged. + be shut up? And now will Saul come down, as your +23:11 +Verse 12 is here supplied by +Alex. servant has heard? Lord God of Israel, tell your servant. + +And the Lord said, It will be shut up. + +And David arose, and the men with him, in number about four hundred, and they went forth from Keila, and went wherever they could go: and it was told Saul that David had escaped from Keila, and he forbore to come. + +And he lived in Maserem in the wilderness, in the narrow +passes; and lived in the wilderness in mount Ziph, in the dry country. And Saul sought him continually, but the Lord delivered him not into his hands. + +And David perceived that Saul went forth to seek David; and David was in the dry mountain in the +23:15 +The Hebrew הוש has here been read as if חוש + New Ziph. + +And Jonathan son of Saul rose, and went to David to Caene, and strengthened his hands in the Lord. + +And he said to him, Fear not, for the hand of Saul my father shall not find you; and you shall be king over Israel, and I shall be second to you; and Saul my father knows it. + +So they both made a covenant before the Lord; and David lived in Caene, and Jonathan went to his home. + +And the Ziphites came up out of the dry country to Saul to the hill, saying, Behold, is not David hidden with us in Messara, in the narrows in Caene in the hill of Echela, which is on the right of Jessaemon? + +And now +according to all the king's desire to come down, let him come down to us; they have shut him up into the hands of the king. + +And Saul said to them, Blessed +be you⌃ of the Lord, for you⌃ have been grieved on my account. + +Go, I pray you, and make preparations yet, and notice his place where his foot shall be, quickly, in that place which you⌃ spoke of, lest by any means he should deal craftily. + +Take notice, then, and learn, and I will go with you; and it shall come to pass that if he is in the land, I will search him out among all the thousands of Juda. + +And the Ziphites arose, and went before Saul: and David and his men +were in the wilderness of Maon, westward, to the right of Jessaemon. + +And Saul and his men went to seek him: and they brought word to David, and he went down to the rock that was in the wilderness of Maon: and Saul heard, and followed after David to the wilderness of Maon. + +And Saul and his men go on one side of the mountain, and David and his men are on the other side of the mountain: and David was hiding himself to escape from Saul: and Saul and his men encamped against David and his men, in order to take them. + +And there came a messenger to Saul, saying, Haste you, and come here, for the Philistines have invaded the land. + +So Saul returned from following after David, and went to meet the Philistines: therefore that place was called The divided Rock. + +

+ + +

And David rose up from thence, and lived in the narrow passes of Engaddi. + +And it came to pass when Saul returned from pursuing after the Philistines, that it was reported to him, saying, David +is in the wilderness of Engaddi. + +And he took with him three thousand men, chosen out of all Israel, and went to seek David and his men in front of Saddaeem. + +And he came to the flocks of sheep that were by the way, and there was a cave there; and Saul went in to make preparation, and David and his men were sitting in the inner part of the cave. + +And the men of David said to him, Behold, this +is the day of which the Lord spoke to you, that he would deliver your enemy into your hands; and you shall do to him as +it is good in your sight. So David arose and +24:5 +Gr. +took away. + cut off the skirt of Saul's garment secretly. + +And it came to pass after this that David's heart struck him, because he had cut off the skirt of his garment. + +And David said to his men, The Lord forbid it me, that I should do this thing to my lord the anointed of the Lord, to lift my hand against him; for he is the anointed of the Lord. + +So David persuaded his men by +his words, and did not suffer them to arise and kill Saul: and Saul arose and went his way. + +And David rose up +and went after him out of the cave: and David cried after Saul, saying, +My lord, +O king! and Saul looked behind him, and David +24:9 +Gr. +stooped. + bowed with his face to the ground, and did obeisance to him. + +And David said to Saul, Why do you listen to the words of the people, saying, Behold, David seeks your life? + +Behold, your eyes have seen this day how that the Lord has delivered you this day into my hands in the cave; and I would not kill you, but spared you, and said, I will not lift up my hand against my lord, for he is the Lord's anointed. + +And behold, the skirt of your mantle +is in my hand, I cut off the skirt, and did not kill you: know then and see today, there is no evil in my hand, nor impiety, nor rebellion; and I have not sinned against you, yet you +24:12 +Gr. +bindest my soul. + lay snares for my soul to take it. + +The Lord judge between me and you, and the Lord requite you on yourself: but my hand shall not be upon you. + +As the old proverb +24:14 +Gr. +is said. + says, Transgression will proceed from the wicked ones: but my hand shall not be upon you. + +And now after whom do you come forth, O king of Israel? After whom do you pursue? After a dead dog, and after a flea? + +The Lord be judge and umpire between me and you, the Lord look upon and judge my cause, and rescue me out of your hand. + +And it came to pass when David had finished speaking these words to Saul, that Saul said, +Is this your voice, Son David? And Saul lifted up his voice, and wept. + +And Saul said to David, You +are more righteous that I, for you have recompensed me good, but I have recompensed you evil. + +And you have told me today what good you have done me, how the Lord shut me up into your hands today, and you did not kill me. + +And if any one should find his enemy in distress, and should send him forth in a good way, then the Lord will reward him good, as you have done this day. + +And now, behold, I know that you shall surely reign, and the kingdom of Israel shall be established in your hand. + +Now then swear to me by the Lord, that you will not destroy my seed after me, that you will not blot out my name from the house of my father. + +So David swore to Saul: and Saul departed to his place, and David and his men went up to +24:23 +Gr. +narrow Messera. + the strong-hold of Messera. + +

+ + +

And Samuel died, and all Israel +25:1 +Heb. Rama. +Alex. +Rama. + assembled, and bewailed him, and they bury him in his house in +25:1 +Gr. +assemble and bewail. + Armathaim: and David arose, and went down to the wilderness of +25:1 +Alex. +Paran. + Maon. + +And there was a man in Maon, and his flocks were in Carmel, and +he was a very great man; and he had +25:2 +Lit. +3,000 flocks; as we say in English, 3,000 troops, meaning men formed into troops. + three thousand sheep, and a thousand she-goats: and he happened to be shearing his flock in Carmel. + +And the man's name +was Nabal, and his wife's name +was Abigaia: and his wife +was of good understanding and very beautiful in person: but the man +was harsh, and evil in his doings, and the man +was churlish. + +And David heard in the wilderness, that Nabal the Carmelite was shearing his sheep. + +And David sent ten young men, and he said to the young men, Go up to Carmel, and go to Nabal, and ask him in my name how +25:5 +Gr. +concerning peace. + he is. + +And thus shall you⌃ say, May you and your house seasonably prosper, and all yours be +25:6 +Gr. +in health. + in prosperity. + +And now, behold, I have heard that your shepherds who were with us in the wilderness are shearing +25:7 +Gr. +for you. + your sheep, and we hindered them not, neither did we demand any thing from them all the time they were in Carmel. + +Ask your servants, and they will tell you. Let then your servants find grace in your eyes, for we are come on a good day; give we pray you, whatever your hand may find, to your son David. + +So the servants come and speak these words to Nabal, according to all these words in the name of David. + +And Nabal sprang up, and answered the servants of David, and said, Who +is David? and who +is the son of Jessae? Now-a-days there is abundance of servants who depart every one from his master. + +And shall I take my bread, and my wine, and my +25:11 +Gr. +slaying. + beasts that I have slain for +25:11 +Gr. +them that shear my sheep. + my shearers, and shall I give them to men of whom I know not whence they are? + +So the servants of David turned +25:12 +Gr. +to their way. + back, and returned, and came and reported to David according to these words. + +And David said to his men, Gird on every man his sword. +25:13 +Alex. +and +Heb.+ 'and they girded on every man his sword, and David also girded on his sword.' + And they went up after David, about four hundred men: and two hundred abode with the stuff. + +And one of the servants reported to Abigaia the wife of Nabal, saying, Behold, David sent messengers out of the wilderness to salute our lord; but he turned away from them. + +And the men were very good to us; they did not hinder us, neither did they demand from us any thing all the days that we were with them. + +And when we were in the field, they were as a wall round about us, both by night and by day, all the days that we were with them feeding the flock. + +And now do you consider, and see what you will do; for mischief is determined against our lord and against his house; and he +is a vile character, and one can’t speak to him. + +And Abigaia hasted, and took two hundred loaves, and two vessels of wine, and five sheep ready dressed, and five ephahs of fine flour, and one homer of dried grapes, and two hundred cakes of figs, and put them upon asses. + +And she said to her servants, Go on before me, and behold I come after you: but she told not her husband. + +And it came to pass when she had mounted her ass and was going down by the covert of the mountain, behold, David and his men came down to meet her, and she met them. + +And David said, Perhaps I have kept all his possessions in the wilderness that he should wrong me, and we did not order the taking anything of all his goods; yet he has rewarded me evil for good. + +So God do to David and more also, if I leave one male of all that belong to Nabal until the morning. + +And Abigaia saw David, and she hasted and alighted from her ass; and she fell before David on her face, and did obeisance to him, +bowing to the ground + +25:24 +Heb. and +Alex.+ +and she fell. + +even to his feet, and said, On me, my lord, be my wrong: let, I pray you, your servant speak in your ears, and hear you the words of your servant. + +Let not my lord, I pray you, take to heart this pestilent man, +25:25 +Heb. and +Alex.+ +'even + Nabal' + for according to his name, so is he; Nabal +is his name, and folly +is with him: but I your handmaid saw not the servants of my lord whom you did send. + +And now, my lord, +as the Lord lives, and your soul lives, as the Lord has kept you from coming against innocent blood, and +25:26 +Gr. +saving your hand for yourself. + from executing vengeance for yourself, now therefore let your enemies, and those that seek evil against my lord, become as Nabal. + +And now accept this +25:27 +Gr. +blessing. + token of goodwill, which your servant has brought to my lord, and you shall give it to the servants that wait on my lord. + +Remove, I pray you, the trespass of your servant; for the Lord will surely make for my lord a sure house, for the Lord fights the battles of my lord, and there shall no evil be ever found in you. + +And +if a man shall rise up persecuting you and seeking your life, yet shall the life of my lord be bound up in the bundle of life with the Lord God, and you shall whirl the life of your enemies +as in the midst of a sling. + +And it shall be when the Lord shall have wrought for my lord all the good things he has spoken concerning you, and shall appoint you to be ruler over Israel; + +then this shall not be an abomination and offense to my lord, to have shed innocent blood without cause, and for my lord to have avenged himself: and so may the Lord do good to my lord, and you shall remember your handmaid to do her good. + +And David said to Abigaia, Blessed +be the Lord God of Israel, who sent you this very day to meet me: + +and blessed +be your conduct, and blessed +be you, who have hindered me this very day from coming to shed blood, and from avenging myself. + +But surely as the Lord God of Israel lives, who hindered me this day from doing you harm, if you had not hasted and come to meet me, then I said, There shall +surely not be left to Nabal till the morning one male. + +And David took of her hand all that she brought to him, and said to her, Go in peace to your house: see, I have listened to your voice, and accepted your +25:35 +Gr. +face. + petition. + +And Abigaia came to Nabal: and, behold, he had a banquet in this house, as the banquet of a king, and the heart of Nabal +was merry +25:36 +Gr. +upon him. + within him, and he +was very drunken: and she told him nothing great or small till the morning light. + +And it came to pass in the morning, when Nabal recovered from his wine, his wife told him these words; and his heart died within him, and he became as a stone. + +And +25:38 +Gr. +there were about ten days, etc. + it came to pass after about ten days, that the Lord struck Nabal, and he died. + +And David heard it +25:39 +Heb. and +Alex. +insert 'that Nabal was dead. + and said, Blessed +be the Lord, who has judged the cause of my reproach at the hand of Nabal, and has delivered his servant +25:39 +Or, +from the hand of wicked men. + from the power of evil; and the Lord has returned the mischief of Nabal upon his own head. And David sent and spoke concerning Abigaia, to take her to himself for a wife. + +So the servants of David came to Abigaia to Carmel, and spoke to her, saying, David has sent us to you, to take you to himself for a wife. + +And she arose, and did reverence with her face to the earth, and said, Behold, your servant +is for an handmaid to wash the feet of your servants. + +And Abigaia arose, and mounted her ass, and five damsels followed her: and she went after the servants of David, and became his wife. + +And David took Achinaam out of Jezrael, and they were both his wives. + +And Saul gave Melchol his daughter, David's wife, to Phalti the son of +25:44 +Heb. and +Alex. +Laish and Lais. + Amis who was of +25:44 +Heb. and +Alex. +Gallim and Galli. + Romma. + +

+ + +

And the Ziphites come out of the dry country to Saul to the hill, saying, Behold, David hides himself with us in the hill Echela, opposite Jessemon. + +And Saul arose, and went down to the wilderness of Ziph, and with him +went three thousand men chosen out of Israel, to seek David in the wilderness of Ziph. + +And Saul encamped in the hill of Echela in front of Jessemon, by the way, and David lived in the wilderness: and David saw that Saul +26:3 +Gr. +comes. + came after him into the wilderness. + +And David sent spies, and ascertained that Saul was come prepared out of Keila. + +And David arose secretly, and goes into the place where Saul was sleeping, and there +was Abenner the son of Ner, the captain of his host: and Saul was sleeping in a chariot, and the people had encamped along round about him. + +And David answered and spoke to Abimelech the Chettite, and to Abessa the son Saruia the brother of Joab, saying, Who will go in with me to Saul into the camp? And Abessa said, I will go in with you. + +So David and Abessa go in among the people by night: and behold, Saul was fast asleep in the chariot, and his spear was stuck in the ground near his head, and Abenner and his people slept round about him. + +And Abessa said to David, The Lord has this day shut up your enemy into your hands, and now I will +26:8 +Gr. +double +the stroke + to him. + strike him to the earth with the spear to the ground once +for all, and I will not strike him again. + +And David said to Abessa, Do not lay him low, for who shall lift up his hand against the anointed of the Lord, and be guiltless? + +And David said, +As the Lord lives, if the Lord strike him not, or his day come and he die, or he go down to battle and be added +to his fathers, do not so. + +The Lord forbid it me that I should lift up my hand against the anointed of the Lord: and now take, I pray you, the spear from his bolster, and the pitcher of water, and let us return +26:11 +Gr. +καθ᾿ ἑαυτούς. +q.d. +chez nous. + home. + +So David took the spear, and the pitcher of water from his bolster, and they went home: and there was no one that saw, and no one that knew, and there was no one that awoke, all being asleep, for a stupor from the Lord had fallen upon them. + +So David went over to the other side, and stood on the top of a hill afar off, and +there was a good distance between them. + +And David called to the people, and spoke to Abenner, saying, Will you not answer, Abenner? and Abenner answered and said, Who are you that call? +26:14 +Heb.+ to the king. +Alex. +'me to the king.' + + +And David said to Abenner, +Are not you a man? and who +is like you in Israel? Why then do you not guard your lord the king? for one out of the people went in to destroy your lord the king. + +And this thing +is not good which you have done. +As the Lord lives, you⌃ are +26:16 +Gr. +sons of slaughter. + worthy of death, you⌃ who guard your lord the king, the anointed of the Lord: and now behold, I pray you, the spear of the king, and the cruse of water: where are the articles that should be at his head? + +And Saul recognized the voice of David, and said, +Is this your voice, son David? and David said, I +am your servant, +my lord, O king. + +And he said, Why does my lord thus pursue after his servant? for in what have I sinned? and what unrighteousness has been found in me? + +And now let my lord the king hear the word of his servant. If God stirs you up against me, let your offering be acceptable: but if the sons of men, they +are cursed before the Lord, for they have cast me out this day so that I should not be established in the inheritance of the Lord, saying, Go, serve other Gods. + +And now let not my blood fall to the ground before +26:20 +Gr. +the face of the Lord. + the Lord, for the king of Israel has come forth to seek your life, as the night hawk pursues +its prey in the mountains. + +And Saul said, I have sinned: turn, son David, for I will not hurt you, because my life was precious in your eyes; and today I have been foolish and have erred exceedingly. + +And David answered and said, Behold, the spear of the king: let one of the servants come over and take it. + +And the Lord shall recompense each according to his righteousness and his truth, since the Lord delivered you this day into my hands, and I would not lift my hand against the Lord's anointed. + +And, behold, as your life has been +26:24 +Gr. +magnified. + precious this very day in my eyes, so let my life be +26:24 +Gr. +magnified. + precious before the Lord, and may he protect me, and +26:24 +Gr. +shall deliver. + deliver me out of all affliction. + +And Saul said to David, Blessed +be you, +my son; and you shall surely do valiantly, and surely prevail. And David went on his way, and Saul returned to his place. + +

+ + +

And David said in his heart, Now shall I be one day delivered +for death into the hands of Saul; and there is no good thing for me unless I should escape into the land of the Philistines, and Saul should cease from seeking me +27:1 +Gr. +into. + through every coast of Israel: so I shall escape out of his hand. + +So David arose, and the six hundred men that were with him, and he went to Anchus, son Ammach, king of Geth. + +And David lived with Anchus, he and his men, each with his family; and David and both his wives, Achinaam, the Jezraelitess, and Abigaia the wife of Nabal the Carmelite. + +And it was told Saul that David had fled to Geth; and he no longer sought after him. + +And David said to Anchus, If now your servant has found grace in your eyes, let them give me, I pray you, a place in one of the cities in the country, and I will dwell there: for why does your servant dwell with you in a +27:5 +Gr. +city reigned over. + royal city? + +And he gave him Sekelac in that day: therefore Sekelac came into possession of the king of Judea to this day. + +And the number of the days that David lived in the country of the Philistines was four months. + +And David and his men went up, and made an attack on all the Gesirites and on the Amalekites: and behold, the land was inhabited, (even the land +27:8 +Th LXX have rendered מעולס ... שוה +of old to Shur, +by ἀπὸ Γελαμψοὺρ. + from Gelampsur) by those who come from the fortified +cities even to the land of Egypt. + +And he struck the land, and saved neither man nor woman alive; and they took flocks, and herds, and asses, and camels, and raiment; and they returned and came to Anchus. + +And Anchus said to David, On whom have you⌃ made an attack today? And David said to Anchus, On the south of Judea, and on the south of Jesmega, and on the south of the Kenezite. + +And I have not saved man or woman alive to bring them to Geth, saying, Lest they carry a report to Geth against us, saying, These things David does. And this was his manner all the days that David lived in the country of the Philistines. + +So David had the full confidence of Anchus, +27:12 +Gr. +saying. + who said, He is thoroughly disgraced among his people in Israel and he shall be my servant for ever. + +

+ + +

And it came to pass in those days that the Philistines gathered themselves together with their armies to go out to fight with Israel; and Anchus said to David, +28:1 +Gr. +you shall know surely. + Know surely, that you shall go forth to battle with me, +you, and your men. + +And David said to Anchus, Thus now you shall know what your servant will do. And Anchus said to David, So will I make you captain of my body-guard continually. + +And Samuel died, and all Israel lamented for him, and they bury him in his city, in Armathaim. And Saul had removed those who had in them divining spirits, and the wizards, out of the land. + +And the Philistines assemble themselves, and come and encamp in Sonam: and Saul gathers all the men of Israel, and they encamp in Gelbue. + +And Saul saw the camp of the Philistines, and he was alarmed, and his heart was greatly dismayed. + +And Saul enquired of the Lord; and the Lord answered him not by dreams, nor by manifestations, nor by prophets. + +Then Saul said to his servants, Seek for me a woman who has in her a divining spirit, and I will go to her, and enquire of her: and his servants said to him, Behold, +there is a woman who has in her a divining spirit at Aendor. + +And Saul disguised himself, and put on other raiment, and he goes, and two men with him, and they come to the woman by night; and he said to her, Divine to me, I pray you, by the divining spirit within you, and bring up to me him whom I shall name to you. + +And the woman said to him, Behold now, you know what Saul has done, how he has cut off +28:9 +Or, +ventriloquists. + those who had in them divining spirits, and the wizards from the land, and why do you spread a snare for my life to destroy it? + +And Saul swore to her, and said, +As the Lord lives, +28:10 +Gr. +if injury. + no injury shall come upon you on this account. + +And the woman said, Whom shall I bring up to you? and he said, Bring up to me Samuel. + +And the woman saw Samuel, and cried out with a loud voice: and the woman said to Saul, Why have you deceived me? for you are Saul. + +And the king said to her, Fear not; tell me whom you have seen. And the woman said to him, I saw gods ascending out of the earth. + +And he said to her, What did you perceive? and she said to him, An upright man ascending out of the earth, and he +was clothed with a mantle. And Saul knew that this was Samuel, and he stooped with his face to the earth, and did obeisance to him. + +And Samuel said, Why have you troubled me, that I should come up? And Saul said, I am greatly distressed, and the Philistines war against me, and God has departed from me, and no longer +28:15 +Gr. +has listened. + hearkens to me either by the hand of the prophets or by dreams: and now I have called you to tell me what I shall do. + +And Samuel said, Why asked you me, whereas the Lord has departed from you, and taken part with your neighbor? + +And the Lord has done to you, as the Lord spoke by +28:17 +Gr. +my hand. + me; and the Lord will rend your kingdom out of your hand, and will give it to your neighbor David. + +because you did not listen to the voice of the Lord, and did not execute his fierce anger upon Amalec, therefore the Lord has done this thing to you this day. + +And the Lord shall deliver Israel with you into the hands of the Philistines, and to-morrow you and your sons with you shall fall, and the Lord shall deliver the army of Israel into the hands of the Philistines. + +And Saul +28:20 +Gr. +hasted and fell standing or at his full length; as the +Hebrew. instantly fell at his full length upon the earth, and was greatly afraid because of the words of Samuel; and there was no longer any strength in him, for he had +28:20 +Gr. +ate. + eaten no bread all that day, and all that night. + +And the woman went in to Saul, and saw that he was greatly +28:21 +Lit. +hasted. +q.d. +trepidavit. + disquieted, and said to him, Behold now, your handmaid has listened to your voice, and I have put my life in my hand, and have +28:21 +i.e. +obeyed. + heard the words which you have spoken to me. + +And now listen, I pray you, to the voice of your handmaid, and I will set before you a morsel of bread, and eat, and you shall be strengthened, for you will be going on your way. + +But he would not eat; so his servants and the woman constrained him, and he listened to their voice, and rose up from the earth, and sat upon a bench. + +And the woman had a fat heifer in the house; and she hasted and killed it; and she took meal and kneaded it, and baked unleavened cakes. + +And she brought +the meat before Saul, and before his servants; and they ate, and rose up, and departed that night. + +

+ + +

And the Philistines gather all their armies to Aphec, and Israel encamped in Aendor, which is in Jezrael. + +And the lords of the Philistines went on +29:2 +Gr. +to +or +at. + by hundreds and thousands, and David and his men went on in the rear with Anchus. + +And the lords of the Philistines said, Who +are these +29:3 +The word עכר is here translated; as in Gen. xiv 13. + that pass by? And Anchus said to the captains of the Philistines, +Is not this David the servant of Saul king of Israel? He has been with us +29:3 +Gr. +to +or +days. + some time, even this second year, and I have not found any fault in him from the day that he attached himself to me even until this day. + +And the captains of the Philistines were displeased at him, and they say to him, Send the man away, and let him return to his place, where you did set him; and let him not come with us to the war, and let him not be a +29:4 +Or, +to +or +a plotter against the camp. + traitor in the camp: and wherewith will he be reconciled to his master? Will it not be with the heads of those men? + + +Is not this David whom they +29:5 +Gr. +to +or +began to +celebrate +or gave the precedence. + celebrated in dances, saying, Saul has struck his thousands, and David his ten thousands? + +And Anchus called David, and said to him, +As the Lord lives, you +are right and approved in my eyes, and +so is your going out and your coming in with me in the army, and I have not found +any evil to charge against you from the day that you came to me until this day: but you are not approved in the eyes of the lords. + +Now then return and go in peace, thus you shall not do evil in the sight of the lords of the Philistines. + +And David said to Anchus, What have I done to you? and what have you found in your servant from the +first day that I was before you even until this day, that I should not come +29:8 +Gr. +to +or +warring, or having warred. + and war against the enemies of the lord my king? + +And Anchus answered David, I know that you +are good in my eyes, +29:9 +Heb. and +Alex.+ +an angel of God. + but the lords of the Philistines say, He shall not come with us to the war. + +Now then rise up early in the morning, you and the servants of your lord that are come with you, and go to the place where I appointed you, and entertain no evil thought in your heart, for you +are good in my sight: and rise early for your journey +29:10 +Gr. +and let there be light upon you. + when it is light, and depart. + +So David arose early, he and his men, to depart and guard the land of the Philistines: and the Philistines went up to Jezrael to battle. + +

+ + +

And it came to pass when David and his men had entered Sekelac on the third day, that Amalec had made an incursion upon the south, and upon Sekelac, and struck Sekelac, and burnt it with fire. + +And as to the women and all things that were in it, great and small, they killed neither man nor woman, but carried them captives, and went on their way. + +And David and his men came into the city, and, behold, it was burnt with fire; and their wives, and their sons, and their daughters were carried captive. + +And David and his men lifted up their voice, and wept till there was no longer any power within them to weep. + +And both the wives of David were carried captive, Achinaam, the Jezraelitess, and Abigaia the wife of Nabal the Carmelite. + +And David was greatly distressed, because the people spoke of stoning him, because the soul of all the people was grieved, each for his sons and his daughters: but David strengthened himself in the Lord his God. + +And David said to Abiathar the priest the son of Achimelech, Bring near the +30:7 +Alex. +and +Heb.+ 'And Abiathar brought the ephod to David.' + ephod. + +And David enquired of the Lord, saying, Shall I pursue after this +30:8 +The Greek is borrowed from the Hebrew. + troop? shall I overtake them? and he said to him, Pursue, for you shall surely overtake them, and you shall surely rescue +the captives. + +So David went, he and the six hundred men with him, an they come as far as the brook Bosor, and the superfluous ones stopped. + +And he pursued them with four hundred men; and there remained behind two hundred men, who tarried on the other side of the brook Bosor. + +And they find an Egyptian in the field, and they take him, and bring him to David; and they +30:11 +Gr. +give. + gave him bread and he ate, and they caused him to drink water. + +And they gave him a piece of a cake of figs, and he ate, and his spirit was +30:12 +Gr. +staid +or +established in him. + restored in him; for he had not eaten bread, and had not drunk water three days and three nights. + +And David said to him, Whose are you? and whence are you? and the young man the Egyptian said, I am the servant of an Amalekite; and my master left me, because I was taken ill three days ago. + +And we made an incursion on the south of the Chelethite, and on the parts of Judea, and on the south of Chelub, and we burnt Sekelac with fire. + +And David said to him, Will you bring me down to this troop? And he said, Swear now to me by God, that you will not kill me, and that you will not deliver me into the hands of my master, and I will bring you down upon this troop. + +So he brought him down there, and behold, they +were scattered abroad upon the surface of the whole land, eating and drinking, and feasting by +reason of all the great spoils which they had taken out of the land of the Philistines, and out of the land of Juda. + +And David came upon them, and struck them from the morning till the evening, and on the next day; and not one of them escaped, except four hundred young men, who were mounted on camels, and fled. + +And David recovered all that the Amalekites had taken, and he rescued both his wives. + +And +30:19 +See Num 31:49; Josh 23:14; 3 Kings 8:56. + nothing was lacking to them of great or small, either of the spoils, or the sons and daughters, or anything that they had taken of theirs; and David recovered all. + +And he took all the flocks, and the herds, and led them away before the spoils: and it was said of these spoils, These +are the spoils of David. + +And David comes to the two hundred men who were left behind that they should not follow after David, and he had caused them to remain +30:21 +Gr. +in. + by the brook of Bosor; and they came forth to meet David, and to meet his people with him: and David drew near to the people, and they asked him how he did. + +Then every ill-disposed and bad man of the soldiers who had gone with David, answered and said, Because they did not pursue together with us, we will not give them of the spoils which we have recovered, only let each one lead away with him his wife and his children, and let them return. + +And David said, You⌃ shall not do so, after the Lord has delivered +the enemy to us, and guarded us, and the Lord has delivered into our hands the troop that came against us. + +And who will listen to these your words? for they are not +30:24 +Gr. +an inferior thing. +inferior to us; for according to the portion of him that went down to the battle, so shall be the portion of him that abides with the baggage; they shall share alike. + +And it came to pass from that day forward, that it became an ordinance and a custom in Israel until this day. + +And David came to Sekelac, and sent of the spoils to the elders of Juda, and to his friends, saying, +30:26 +Heb. and +Alex. +'Behold! a blessing from you.' etc. + Behold +some of the spoils of the enemies of the Lord; + +to those in +30:27 +Heb. and +Alex. +'Bethel.' + Baethsur, and to those in Rama of the south, and to those in Gethor. + +And to those in Aroer, and to those in Ammadi, and to those in Saphi, and to those in Esthie, + +and to those in Geth, and to those in Cimath, and to those in Saphec, and to those in Themath, and to those in Carmel, and to those in the cities of Jeremeel, and to those in the cities of the Kenezite; + +and to those in Jerimuth, and to those in Bersabee, and to those in Nombe, + +and to those in Chebron, and to all the places which David and his men had passed through. + +

+ + +

And the Philistines fought with Israel: and the men of Israel fled from before the Philistines, and they fall down wounded in the mountain in Gelbue. + +And the Philistines press closely on Saul and his sons, and the Philistines strike Jonathan, and Aminadab, and Melchisa son of Saul. + +And the battle prevails against Saul, and the shooters with arrows, even the archers find him, and he was wounded +31:3 +Lit. +in the hypochondria. + under the ribs. + +And Saul said to his armor-bearer, Draw your sword and pierce me through with it; lest these uncircumcised come and pierce me through, and mock me. But his armor-bearer would not, for he feared greatly: so Saul took his sword and fell upon it. + +And his armor-bearer saw that Saul was dead, and he fell also himself upon his sword, and died with him. + +So Saul died, and his three sons, and his armor-bearer, in that day together. + +And the men of Israel who were on the other side of the valley, and those beyond Jordan, saw that the men of Israel fled, and that Saul and his sons were dead; and they leave their cities and flee: and the Philistines come and dwell in them. + +And it came to pass on the morrow that the Philistines come to strip the dead, and they find Saul and his three sons fallen on the mountains of Gelbue. + +And they +31:9 +Comp. +reads, ἀποκεφαλίζουσιν. so in +Heb. turned him, and stripped off his armor, and sent it into the land of the Philistines, sending round glad tidings to their idols and to the people. + +And they set up his armor at the temple of Astarte, and they fastened his body on the wall of Baethsam. + +And the inhabitants of Jabis Galaad hear what the Philistines did to Saul. + +And they rose up, +even every man of might, and marched all night, and took the body of Saul and the body of Jonathan his son from the wall of Baethsam; and they bring them to Jabis, and burn them there. + +And they took their bones, and buried them in the field that is in Jabis, and fasted seven days. + +

+
+ +Kings II +KINGS II +Kings II +2SA +

KINGS II +

+

(2 Samuel) +

+ + +

And it came to pass after Saul was dead, that David returned from striking Amalec, and David abode two days in Sekelac. + +And it came to pass on the third day, that, behold, a man came from the camp, from the people of Saul, and his garments were torn, and earth +was upon his head: and it came to pass when he went in to David, that he fell upon the earth, and did obeisance to him. + +And David said to him, Whence come you? and he said to him, I have escaped out of the camp of Israel. + +And David said to him, What +is the matter? tell me. And he said, The people fled out of the +1:4 +Gr. +war. + battle, and many of the people have fallen and are dead, and Saul and Jonathan his son are dead. + +And David said to the young man who brought him the tidings, How know you that Saul and Jonathan his son are dead? + +And the young man that brought the tidings, said to him, I happened accidentally to be upon mount Gelbue; and, behold, Saul was leaning upon his spear, and, behold, the chariots and captains of horse pressed hard upon him. + +And he looked behind him, and saw me, and called me; and I said, Behold, +here am I. + +And he said to me, Who are you? and I said, I am an Amalekite. + +And he said to me, Stand, I pray you, over me, and kill me, for a dreadful darkness has come upon me, for all my life +is in me. + +So I stood over him and killed him, because I knew he +1:10 +Gr. +will. + would not live after he was fallen; and I took the crown that was upon his head, and the bracelet that was upon his arm, and I have brought them hither to my lord. + +And David laid hold of his garments, and tore them; and all the men who were with him tore their garments. + +And they lamented, and wept, and fasted till evening, for Saul and for Jonathan his son, and for the people of Juda, and for the house of Israel, because they were struck with the sword. + +And David said to the young man who brought the tidings to him, Whence are you? and he said, I am the son of an Amalekite sojourner. + +And David said to him, How was it you were not afraid to lift your hand to destroy the anointed of the Lord? + +And David called one of his young men, and said, Go and fall upon him: and he struck him, and he died. + +And David said to him, Your blood +be upon your own head; for your mouth has +1:16 +Gr. +answered. + testified against you, saying, I have slain the anointed of the Lord. + +And David lamented with this lamentation over Saul and over Jonathan his son. + +And he +1:18 +Gr. +told. + gave orders to teach it the sons of Juda: behold, it is written in the book of +1:18 +Gr. +straight, +or +right, sometimes upright, as of a man. +Heb. Jasher. + Right. + + +1:19 +The LXX. take הצבי as from כיצב, the +A.V. +from צבי. + Set up a pillar, O Israel, for +1:19 +Two words here are used, as is often the case in the LXX. to express one. +viz. +τεθηκότων and τραυματτιῶν to express חלל + the slain that died upon your high places: how are the mighty fallen! + +Tell it not in Geth, and tell it not as glad tidings in the streets of Ascalon, lest the daughters of the Philistines rejoice, lest the daughters of the uncircumcised triumph. + +You⌃ mountains of Gelbue, let not dew no rain descend upon you, nor fields of first fruits +be upon you, for there the shield of the mighty ones has been grievously assailed; the shield of Saul was not anointed with oil. + +From the blood of the slain, and from the fat of the mighty, the bow of Jonathan returned not empty; and the sword of Saul turned not back empty. + +Saul and Jonathan, the beloved and the beautiful, were not divided: comely +were they in their life, and in their death they were not divided: +they were swifter than eagles, and they were stronger than lions. + +Daughters of Israel, weep for Saul, who clothed you with scarlet together with your adorning, who added golden ornaments to your apparel. + +How are the mighty fallen in the midst of the battle! O Jonathan, even the slain ones upon your high places! + +I am grieved for you, my brother Jonathan; you were very lovely to me; your love to me was wonderful beyond the love of women. + +How are the mighty fallen, and the weapons of war perished! + +

+ + +

And it came to pass after this that David enquired of the Lord, saying, Shall I go up into one of the cities of Juda? and the Lord said to him, Go up. And David said, Whither shall I go up? and he said, To Chebron. + +And David went up there to Chebron, +he and both his wives, Achinaam the Jezraelitess, and Abigaia the wife of Nabal the Carmelite, + +and the men that were with him, every one and his family; and they lived in the cities of Chebron. + +And the men of Judea come, and anoint David there to reign over the house of Juda; and they reported to David, saying, The men of Jabis of the country of Galaad have buried Saul. + +And David sent messengers to the rulers of Jabis of the country of Galaad, and David said to them, Blessed be you⌃ of the Lord, because you⌃ have wrought this mercy toward your lord, even toward Saul the anointed of the Lord, and you⌃ have buried him and Jonathan his son. + +And now may the Lord deal in mercy and truth towards you: and I also will requite towards you this good deed, because you⌃ have done this. + +And now let your hands be made strong, and be +2:7 +Gr. +mighty sons. + valiant; for your master Saul is dead, and moreover the house of Juda have anointed me to be king over them. + +But Abenner, the son of Ner, the commander-in-chief of Saul's army, took Jebosthe son of Saul, and brought him up from the camp to Manaem + +and +2:9 +Observe the active use of ἐβασίλευσεν, common in LXX. + made him king over the land of Galaad, and over Thasiri, and over Jezrael, and over Ephraim, and over Benjamin, and over all Israel. + +Jebosthe, Saul's son +was forty years old, when he reigned over Israel; and he reigned two years, but not over the house of Juda, who followed David. + +And the days which David reigned in Chebron over the house of Juda were seven years and six months. + +And Abenner the son of Ner went forth, and the servants of Jebosthe the son of Saul, from Manaem to Gabaon. + +And Joab the son of Saruia, and the servants of David, went forth from Chebron, and met them at the fountain of Gabaon, at the same place: and these sat down by the fountain on this side, and those by the fountain on that side. + +And Abenner said to Joab, Let now the young men arise, and play before us. And Joab said, Let them arise. + +And there arose and passed over by number twelve of the children of Benjamin, belonging to Jebosthe the son of Saul, and twelve of the servants of David. + +And they seized every one the head of his neighbor with his hand, and his sword +was thrust into the side of his neighbor, and they fall down together: and the name of that place was called The portion of the treacherous ones, which is in Gabaon. + +And the battle was very severe on that day; and Abenner and the men of Israel were worsted before the servants of David. + +And there were there the three sons of Saruia, Joab, and Abessa, and Asael: and Asael was swift in his feet as a roe in the field. + +And Asael followed after Abenner, and turned not to go to the right hand or to the left from following Abenner. + +And Abenner looked behind him, and said, Are you Asael himself? and he said, I am. + +And Abenner said to him, Turn you to the right hand or to the left, and lay hold for yourself on one of the young men, and take to yourself his armor: but Asel would not turn back from following him. + +And Abenner said yet again to Asael, Stand aloof from me, lest I strike you to the ground? and how should I lift up my face to Joab? + +And what does this mean? return to Joab your brother? But he would not stand aloof; and Abenner smites him with the hinder end of the spear on the loins, and the spear went out behind him, and he falls there and dies +2:23 +A literal version of the Hebrew חחחו +q.d. +sur le champ. + on the spot: and it came to pass that every one that came to the place where Asael fell and died, stood still. + +And Joab and Abessa pursued after Abenner, and the sun went down: and they went as far as the hill of Amman, which is in the front of Gai, by the +2:24 +See Acts 8:26. + desert way of Gabaon. + +And the children of Benjamin who followed Abenner gather themselves together, and they formed themselves into one body, and stood on the top of a hill. + +And Abenner called Joab, and said, Shall the sword devour perpetually? know you not that it will be bitter at last? How long then will you refuse to tell the people to turn from following our brethren? + +And Joab said, As the Lord lives, if you had not spoken, even from the morning the people had gone up every one from following his brother. + +And Joab sounded the trumpet, and all the people departed, and did not pursue after Israel, and did not fight any longer. + +And Abenner and his men departed at evening, +and went all that night, and crossed over Jordan, and went along the whole adjacent +country, and they come to the camp. + +And Joab returned from following Abenner, and he assembled all the people, and there were missing of the people of David, nineteen men, and Asael. + +And the servants of David struck of the children of Benjamin, of the men of Abenner, three hundred and sixty men belonging to him. + +And they take up Asael, and bury him in the tomb of his father in Bethleem. And Joab and the men with him went all the night, and the morning rose upon them in Chebron. + +

+ + +

And there was war for a long time between the house of Saul and the house of David; and the house of David grew continually stronger; but the house of Saul grew continually weaker. + +And sons were born to David in Chebron: and his firstborn was Ammon the son of Achinoom the Jezraelitess. + +And his second son +was Daluia, the son of Abigaia the Carmelitess; and the third, Abessalom the son of Maacha the daughter of Tholmi the king of Gessir. + +And the fourth +was Ornia, the son of Aggith, and the fifth +was Saphatia, the son of Abital. + +And the sixth +was Jetheraam, the son of Aegal the wife of David. These were born to David in Chebron. + +And it came to pass while there was war between the house of Saul and the house of David, that Abenner was governing the house of Saul. + +And Saul had a concubine, Respha, the daughter of Jol; and Jebosthe the son of Saul said to Abenner, Why have you gone in to my father's concubine? + +And Abenner was very angry with Jebosthe for this saying; and Abenner said to him, Am I a dog's head? I have this day wrought kindness with the house of Saul your father, and with his brethren and friends, and have not gone over to the house of David, and do you this day seek a charge against me concerning injury to a woman? + +God do thus and more also to Abenner, if as the Lord swore to David, so do I not to him this day; + +to take away the kingdom from the house of Saul, and to raise up the throne of David over Israel and over Juda from Dan to Bersabee. + +And Jebosthe could not any longer answer Abenner a word, because he feared him. + +And Abenner sent messengers to David to Thaelam where he was, immediately, saying, Make your covenant with me, and, behold, my hand +is with you to bring back to you all the house of Israel. + +And David said, With a good will I will make with you a covenant: only I demand one condition of you, saying, You shall not see my face, unless you bring Melchol the daughter of Saul, when you come to see my face. + +And David sent messengers to Jebosthe the son of Saul, saying, Restore me my wife Melchol, whom I took for one hundred foreskins of the Philistines. + +And Jebosthe sent, and took her from her husband, +even from Phaltiel the son of Selle. + +And her husband went with her weeping behind her as far as Barakim. And Abenner said to him, Go, return; and he returned. + +And Abenner spoke to the elders of Israel, saying, In former days you⌃ sought David to reign over you; + +and now perform +it: for the Lord has spoken concerning David, saying, By the hand of my servant David I will save Israel out of the hand of all their enemies. + +And Abenner spoke in the ears of Benjamin: and Abenner went to speak in the ears of David at Chebron, all that seemed good in the eyes of Israel and in the eyes of the house of Benjamin. + +And Abenner came to David to Chebron, and with him twenty men: and David made for Abenner and his men with him a banquet of wine. + +And Abenner said to David, I will arise now, and go, and gather to my lord the king all Israel; and I will make with him a covenant, and you shall reign over all whom your soul desires. And David sent away Abenner, and he departed in peace. + +And, behold, the servants of David and Joab arrived from their expedition, and they brought much spoil with them: and Abenner was not with David in Chebron, because he had sent him away, and he had departed in peace. + +And Joab and all his army came, and it was reported to Joab, saying, Abenner the son of Ner is come to David, and David has let him go, and he has departed in peace. + +And Joab went in to the king, and said, What +is this +that you have done? behold, Abenner came to you; and why have you let him go, and he has departed in peace? + +Know you not the mischief of Abenner the son of Ner, that he came to deceive you, and to know your going out and your coming in, and to know all things that you do? + +And Joab returned from David, and sent messengers to Abenner after +him; and they bring him back from the well of Seiram: but David knew +it not. + +And he brought back Abenner to Chebron, and Joab caused him to turn aside from the gate to speak to him, laying wait for him: and he struck him there in the loins, and he died for the blood of Asael the brother of Joab. + +And David heard +of it afterwards, and said, I and my kingdom are guiltless before the Lord even for ever of the blood of Abenner the son of Ner. + + +3:29 +Gr. Lit. +them. (sc. +bloods) meet + Let it fall upon the head of Joab, and upon all the house of his father; and let there not be lacking of the house of Joab one that has an issue, or a leper, or that leans on a staff, or that falls by the sword, or that wants bread. + +For Joab and Abessa his brother laid wait continually for Abenner, because he killed Asael their brother at Gabaon in the battle. + +And David said to Joab and to all the people with him, Rend your garments, and gird yourselves with sackcloth, and lament before Abenner. And king David followed the bier. + +And they bury Abenner in Chebron: and the king lifted up his voice, and wept at his tomb, and all the people wept for Abenner. + +And the king mourned over Abenner, and said, Shall Abenner die according to the death of Nabal? + +Your hands were not bound, and your feet +were not +put in fetters: +one brought +you not near as Nabal; you did fall before children of iniquity. + +And all the people assembled to weep for him. And all the people came to cause David to eat bread while it was yet day: and David swore, saying, God do so to me, and more also, if I eat bread or any thing else before the sun goes down. + +And all the people took notice, and all things that the king did before the people were pleasing in their sight. + +So all the people and all Israel perceived in that day, that it was not of the king to kill Abenner the son of Ner. + +And the king said to his servants, Know you⌃ not that a great prince is this day fallen in Israel? + +And that I am this day a +mere kinsman +of his, and +as it were +3:39 +Gr. +appointed by a king. + a subject; but these men the sons of Saruia are too hard for me: the Lord reward the evil-doer according to his wickedness. + +

+ + +

And Jebosthe the son of Saul heard that Abenner the son of Ner had died in Chebron; and his hands were paralyzed, and all the men of Israel grew faint. + +And Jebosthe the son of Saul had two men that were captains of bands: the name of the one +was Baana, and the name of the other Rechab, sons of Remmon the Berothite of the children of Benjamin; for Beroth was reckoned to the children of Benjamin. + +And the Berothites ran away to Gethaim, and were sojourners there until this day. + +And Jonathan Saul's son +had a son lame of his feet, five years old, and he was +in the way when the news of Saul and Jonathan his son came from Jezrael, and his nurse took him up, and fled; and it came to pass as he hasted and retreated, that he fell, and was lamed. And his name +was Memphibosthe. + +And Rechab and Baana the sons of Remmon the Berothite went, and they came in the heat of the day into the house of Jebosthe; and he was sleeping on a bed at noon. + +And, behold, the porter of the house winnowed wheat, and he slumbered and slept: and the brothers Rechab and Baana went privily into the house: + +And Jebosthe was sleeping on his bed in his chamber: and they strike him, and kill him, and take off his head: and they took his head, and went all the night by the western road. + +And they brought the head of Jebosthe to David to Chebron, and they said to the king, Behold the head of Jebosthe the son of Saul your enemy, who sought your life; and the Lord has +4:8 +Gr. +given. + executed for my lord the king vengeance on his enemies, as +it is this day: even on Saul your enemy, and on his seed. + +And David answered and Rechab and Baana his brother, the sons of Remmon the Berothite, and said to them, +As the Lord lives, who has redeemed my soul out of all affliction; + +he that reported to me that Saul was dead, even he was as one bringing glad tidings before me: but I seized him and killed him in Sekelac, to whom I ought, +as he thought, to have given a reward for his tidings. + +And now evil men have slain a righteous men in his house on his bed: now then I will require his blood of your hand, and I will destroy you from off the earth. + +And David commanded his young men, and they kill them, and cut off their hands and their feet; and they hung them up at the fountain in Chebron: and they buried the head of Jebosthe in the tomb of Abenezer the son of Ner. + +

+ + +

And all the tribes of Israel come to David to Chebron, and they said to him, Behold, we +are your bone and your flesh. + +And +5:2 +Gr. +yesterday and the third day. + heretofore Saul being king over us, you were he that did lead out and bring in Israel: and the Lord said to you, You shall feed my people Israel, and you shall be for a leader to my people Israel. + +And all the elders of Israel come to the king to Chebron; and king David made a covenant with them in Chebron before the Lord; and they anoint David king over all Israel. + +David +was +5:4 +Gr. +a son of thirty years. + thirty years old when he began to reign, and he reigned forty years. + +Seven years and six months he reigned in Chebron over Juda, and thirty-three years he reigned over all Israel and Juda in Jerusalem. + +And David and his men, departed to Jerusalem, to the Jebusite that inhabited the land: and it was said to David, You shall not come in hither: for the blind and the lame withstood him, saying, David shall not come in hither. + +And David took first the hold of Sion: this +is the city of David. + +And David said on that day, Every one that smites the Jebusite, let him attack with the dagger both the lame and the blind, and those that hate the soul of David. Therefore they say, The lame and the blind shall not enter into the house of the Lord. + +And David lived in the hold, and it was called the city of David, and he built the city itself round about from the citadel, and +he built his own house. + +And David advanced and became great, and the Lord Almighty +was with him. + +And Chiram king of Tyre sent messengers to David, and cedar wood, and carpenters, and stone-masons: and they built a house for David. + +And David knew that the Lord had prepared him to be king over Israel, and that his kingdom was exalted for the sake of his people Israel. + +And David took again wives and concubines out of Jerusalem, after he came from Chebron: and David had still more sons and daughters born to him. + +And these +are the names of those that were born to him in Jerusalem; Sammus, and Sobab, and Nathan, and Solomon. + +And Ebear, and Elisue, and Naphec, and Jephies. + +And Elisama, and Elidae, and Eliphalath, +5:16 +Heb. and +Alex. +omit the remaining names in this verse. + Samae, Jessibath, Nathan, Galamaan, Jebaar, Theesus, Eliphalat, Naged, Naphec, Janathan, Leasamys, Baalimath, Eliphaath. + +And the Philistines heard that David was anointed king over Israel; and all the Philistines went up to seek David; and David heard of it, and went down to the strong hold. + +And the Philistines came, and assembled in the valley of the +5:18 +Lit. +Titans. +Heb. +Rephaim. giants. + +And David enquired of the Lord, saying, Shall I go up against the Philistines? and will you deliver them into my hands? and the Lord said to David, Go up, for I will surely deliver the Philistines into your hands. + +And David came from +5:20 +Heb. Baal-perazim. + Upper Breaches, and struck the Philistines there: and David said, The Lord has destroyed the hostile Philistines before me, as water is dispersed; therefore the name of that place was called +5:20 +Thus in English or other languages, +Underskiddaw, Unterseen, +etc. + Over Breaches. + +And they leave there their gods, and David and his men with him took them. + +And the Philistines came up yet again, and assembled in the valley of Giants. + +And David enquired of the Lord: and the Lord said, You shall not go up to meet them: turn from them, and you shall meet them near the place of +5:23 +Heb. בכאיס +lit. +mulberries. + weeping. + +And it shall come to pass when you hear the sound of a clashing together from the grove of weeping, then you shall go down to them, for then the Lord shall go forth before you to make havoc in the battle with the Philistines. + +And David did as the Lord commanded him, and struck the Philistines from Gabaon as far as the land of Gazera. + +

+ + +

And David again gathered all the young men of Israel, about seventy thousand. + +And David arose, and went, he and all the people that were with him, and some of the rulers of Juda, on an expedition +to a distant place, to bring back thence the ark of God, on which the name of the Lord of Host who dwells between the cherubs upon it is called. + +And they put the ark of the Lord on a new wagon, and took it out of the house of Aminadab who lived on the hill, and Oza and his brethren the sons of Aminadab drove the wagon +6:3 +Alex. +more according to the +Heb. inserts 'and brought it out of the house of Abinadab in the hill.' + with the ark. + +And his brethren went before the ark. + +And David and the children of Israel +were playing before the Lord on well-tuned instruments mightily, and with songs, and with harps, and with lutes, and with drums, and with cymbals, and with pipes. + +And they come as far as the threshing floor of Nachor: and Oza reached forth his hand to the ark of God to keep it steady, and took hold of it; for +6:6 +Gr. +the calf. + the ox shook it out of its place. + +And the Lord was very angry with Oza; and God struck him there: +6:7 +Heb. and +Alex.+ +for his rashness. + and he died there by the ark of the Lord before God. + +And David was dispirited because the Lord made a breach upon Oza; and that place was called the breach of Oza until this day. + +And David feared the Lord in that day, saying, How shall the ark of the Lord come in to me? + +And David would not bring in the ark of the covenant of the Lord to himself into the city of David: and David turned it aside into the house of Abeddara the Gethite. + +And the ark of the Lord lodged in the house of Abeddara the Gethite three months, and the Lord blessed all the house of Abeddara, and all his possessions. + +And it was reported to king David, saying, The Lord has blessed the house of Abeddara, and all that he has, because of the ark of the Lord. And David went, and brought up the Ark of the Lord from the house of Abeddara to the city of David with gladness. + +And there were with him bearing the ark seven bands, and for a sacrifice a calf and lambs. + +And David sounded with well-tuned instruments before the Lord, and David +was clothed with a fine long robe. + +And David and all the house of Israel brought up the ark of the Lord with shouting, and with the sound of a trumpet. + +And it came to pass as the ark arrived at the city of David, that Melchol the daughter of Saul looked through the window, and saw king David dancing and playing before the Lord; and she despised him in her heart. + +And they bring the ark of the Lord, and set it in its place in the midst of the tabernacle which David pitched for it: and David offered whole burnt offerings before the Lord, +and peace-offerings. + +And David made an end of offering the whole burnt offerings and peace-offerings, and blessed the people in the name of the Lord of Hosts. + +And he distributed to all the people, even to all the host of Israel from Dan to Bersabee, both men and women, to every one a cake of bread, and a joint of meat, and a cake from the frying-pan: and all the people departed every one to his home. + +And David returned to bless his house. And Melchol the daughter of Saul came out to meet David and saluted him, and said, How was the king of Israel glorified today, who was today uncovered in the eyes of the handmaids of his servants, as one of the dancers wantonly uncovers himself! + +And David said to Melchol, I will dance before the Lord. Blessed +be the Lord who chose me before your father, and before all his house, to make me head over his people, even over Israel: therefore I will play, and dance before the Lord. + +And I will again uncover myself thus, and I will be vile in your eyes, and with the maidservants by whom you said that I was +6:22 +Alex. +omits the negative, but still differs from the Hebrew. + not had in honor. + +And Melchol the daughter of Saul had no child till the day of her death. + +

+ + +

And it came to pass when the king sat in his house, and the Lord had given him an inheritance on every side +free from all his enemies round about him; + +that the king said to Nathan the prophet, Behold now, I live in a house of cedar, and the ark of the Lord dwells in the midst of a tent. + +And Nathan said to the king, Go and do all that +is in your heart, for the Lord +is with you. + +And it came to pass in that night, that the word of the Lord came to Nathan, saying, + +Go, and say to my servant David, Thus says the Lord, You shall not build me a house for me to dwell in. + +For I have not lived in a house from the day that I brought up the children of Israel out of Egypt to this day, but I have been walking in a lodge and in a tent, + +wherever I went with all Israel. Have I ever spoken to any of the tribes of Israel, which I commanded to tend my people Israel, saying, Why have you⌃ not built me a house of Cedar? + +And now thus shall you say to my servant David, Thus says the Lord Almighty, I took you from the sheep-cote, that you should be a prince over my people, over Israel. + +And I was with you wherever you went, and I destroyed all your enemies before you, and I made you renowned according to the renown of the great ones on the earth. + +And I will appoint a place for my people Israel, and will plant +7:10 +Gr. +it. + them, and they shall dwell by themselves, and shall be no more distressed; and the son of iniquity shall no more afflict them, as he +has done from the beginning, + +from the days when I appointed judges over my people Israel: and I will give you rest from all your enemies, and the Lord will tell you that you shall build a house to him. + +And it shall come to pass when your days shall have been fulfilled, and you shall sleep with your fathers, that I will raise up your seed after you, even your own issue, and I will establish his kingdom. + +He shall build for me a house to my name, and I will set up his throne even for ever. + +I will be to him a father, and he shall be to me a son. And when he happens to transgress, then will I chasten him with the rod of men, and with the stripes of the sons of men. + +But my mercy I will not take from him, as I took it from those whom I removed from my presence. + +And his house shall be made sure, and his kingdom for ever before me, and his throne shall be set up for ever. + +According to all these words, and according to all this vision, so Nathan spoke to David. + +And king David came in, and sat before the Lord, and said, Who am I, O Lord, my Lord, and what +is my house, that you have loved me +7:18 +Or, +so much as this. + hitherto? + +Whereas I was very little before you, O Lord, my Lord, yet you spoke concerning the house of your servant for a long time to +to come. And +is this the law of man, O Lord, my Lord? + +And what shall David yet say to you? and now you know your servant, O Lord, my Lord. + +And you have wrought for your servant's sake, and according to your heart you have wrought all this greatness, to make it known to your servant, + +that he may magnify you, O my Lord; for there is no one +7:22 +Gr. +as you. + like you, and there is no God, but you among all of whom we have heard with our ears. + +And what other nation in the earth +is as your people Israel? whereas God was his guide, to redeem for himself a people to make you a name, to do mightily and nobly, so that you should cast out nations and +their tabernacles from the presence of your people, whom you did redeem for yourself out of Egypt? + +And you have prepared for yourself your people Israel to be a people for ever, and you, Lord, are become their God. + +And now, O my Lord, the Almighty Lord God of Israel, confirm the word for ever which you have spoken concerning your servant and his house: and now as you have said, + +Let your name be magnified for ever. +7:26 +Heb. and +Alex. +add, 'and let the house of your servant David be established before you.' + + +Almighty Lord God of Israel, you have uncovered the ear of your servant, saying, I will build you a house: therefore your servant has found +in his heart to pray this prayer to you. + +And now, O Lord my Lord, you are God; and your words will be true, and you have spoken these good things concerning your servant. + +And now begin and bless the house of your servant, that it may continue for ever before you; for you, O Lord, my Lord, have spoken, and the house of your servant shall be blessed with your blessing so as to continue for ever. + +

+ + +

And it came to pass after this, that David struck the Philistines, and put them to flight, and David took the +8:1 +Heb. Metheg-ammah. +Lit. +bridle of Ammah. + tribute from out of the hand of the Philistines. + +And David struck Moab, and measured them out with lines, having +8:2 +Gr. +caused them to sleep. + laid them down on the ground: and there were two lines for slaying, and two lines he kept alive: and Moab became servants to David, yielding tribute. + +And David struck Adraazar the son of Raab king of Suba, as he went to extend his power to the river Euphrates. + +And David took +8:4 +Alex. +seven. + a thousand of his chariots, and seven thousand horsemen, and twenty thousand footmen: and David houghed all his +8:4 +Gr. +chariots. + chariot +horses, and he reserved to himself one hundred chariots. + +And Syria of Damascus comes to help Adraazar king of Suba, and David struck twenty-two thousand men belonging to the Syrian. + +And David placed a garrison in Syria near Damascus, and the Syrians became servants and tributaries to David: and the Lord preserved David wherever he went. + +And David took the golden bracelets which were on the servants of Adraazar king of Suba, and brought them to Jerusalem. And Susakim king of Egypt took them, when he went up to Jerusalem in the days of Roboam son of Solomon. + +And king David took from Metebac, and from the choice cities of Adraazar, very much brass: with that Solomon made the brazen sea, and the pillars, and the lavers, and all the furniture. + +And You the king of Hemath heard that David had struck all the host of Adraazar. + +And You sent Jedduram his son to king David, to ask him of his welfare, and to congratulate him on his fighting against Adraazar and striking him, for he was an enemy to Adraazar: and in his hands were vessels of silver, and vessels of gold, and vessels of brass. + +And these king David consecrated to the Lord, with the silver and with the gold which he consecrated out of all the cities which he conquered, + +out of Idumea, and out of Moab, and from the children of Ammon, and from the Philistines, and from Amalec, and from the spoils of Adraazar son of Raab king of Suba. + +And David made +himself a name: and when he returned he struck Idumea in Gebelem to +the number of eighteen thousand. + +And he set garrisons in Idumea, even in all Idumea: and all the Idumeans were servants to the king. And the Lord preserved David wherever he went. + +And David reigned over all Israel: and David wrought judgment and justice over all his people. + +And Joab the son of Saruia +was over the host; and Josaphat the son of Achilud +was keeper of the records. + +And Sadoc the son of Achitob, and Achimelech son of Abiathar, +were priests; and Sasa +was the scribe, + +and Banaeas son of Jodae +was councillor, and the Chelethite and the Phelethite, and the sons of David, were princes of the court. + +

+ + +

And David said, Is there yet any one left in the house of Saul, that I may deal kindly with him for Jonathan's sake? + +And there was a servant of the house of Saul, and his name was Siba: and they call him to David; and the king said to him, Are you Siba? and he said, I +am your servant. + +And the king said, Is there yet a man left of the house of Saul, that I may act towards him with the mercy of God? and Siba said to the king, There is yet a son of Jonathan, lame +of his feet. + +And the king said, Where +is he? and Siba said to the king, Behold, +he is in the house of Machir the son of Amiel of Lodabar. + +And king David went, and took him out of the house of Machir the son Amiel of Lodabar. + +And Memphibosthe the son of Jonathan the son of Saul comes to the king David, and he fell upon his face and did obeisance to him: and David said to him, Memphibosthe: and he said, Behold your servant. + +And David said to him, Fear not, for I will surely deal mercifully with you for the sake of Jonathan your father, and I will restore to you all the land of Saul the father of your father; and you shall eat bread at my table continually. + +And Memphibosthe did obeisance, and said, Who am I your servant, that you have looked upon a dead dog like me? + +And the king called Siba the servant of Saul, and said to him, All that +9:9 +Gr. +belongs. + belonged to Saul and to all his house have I given to the son of your lord. + +And you, and your sons, and your servants, shall till the land for him; and you shall bring in bread to the son of your lord, and he shall eat bread: and Memphibosthe the son of your lord shall eat bread continually at my table. Now Siba had fifteen sons and twenty servants. + +And Siba said to the king, According to all that my lord the king has commanded his servant, so will your servant do. And Memphibosthe did eat at the table of David, as one of the sons of the king. + +And Memphibosthe had a little son, and his name +was Micha: and all the household of Siba +were servants to Memphibosthe. + +And Memphibosthe lived in Jerusalem, for he continually ate at the table of the king; and he was lame in both his feet. + +

+ + +

And it came to pass after this that the king of the children of Ammon died, and Annon his son reigned in his stead. + +And David said, I will show mercy to Annon the son of Naas, as his father dealt mercifully with me. And David sent to comfort him concerning his father by the hand of his servants; and the servants of David came into the land of the children of Ammon. + +And the princes of the children of Ammon said to Annon their lord, +Is it to honor your father before you that David has sent comforters to you? Has not David rather sent his servants to you that they should search the city, and spy it out and examine it? + +And Annon took the servants of David, and shaved their beards, and cut off their garments in the midst as far as their haunches, and sent them away. + +And they brought David word concerning the men; and he sent to meet them, for the men were greatly dishonored: and the king said, Remain in Jericho till your beards have grown, and +then you⌃ shall return. + +And the children of Ammon saw that the people of David were ashamed; and the children of Ammon sent, and hired the Syrians of Baethraam, and the Syrians of Suba, and Roob, twenty thousand footmen, and the king of Amalec with a thousand men, and Istob with twelve thousand men. + +And David heard, and sent Joab and all his host, +even the mighty men. + +And the children of Ammon went forth, and set the battle in array by the door of the gate: +those of Syria, Suba, and Roob, and Istob, and Amalec, being by themselves in the field. + +And Joab saw that the front of the battle was against him from that which was opposed in front and from behind, and he chose out +some of all the young men of Israel, and they set themselves in array against Syria. + +And the rest of the people he gave into the hand of Abessa his brother, and they set the battle in array opposite to the children of Ammon. + +And he said, If Syria be too strong for me, then shall you⌃ help me: and if the children of Ammon be too strong for you, then will we be ready to help you. + +Be you courageous, and let us be strong for our people, and for the sake of the cities of our God, and the Lord shall do that which is good in his eyes. + +And Joab and his people with him advanced to battle against Syria, and they fled from before him. + +And the children of Ammon saw that the Syrians were fled, and they fled from before Abessa, and entered into the city: and Joab returned from the children of Ammon, and came to Jerusalem. + +And the Syrians saw that they were worsted before Israel, and they gathered themselves together. + +And Adraazar sent and gathered the Syrians from the other side of the river +10:16 +Heb. and +Alex. +omit the name. + Chalamak, and they came to Aelam; and Sobac the captain of the host of Adraazar +was +10:16 +Gr. +before them. + at their head. + +And it was reported to David, and he gathered all Israel, and went over Jordan, and came to Aelam: and the Syrians set the battle in array against David, and fought with him. + +And Syria fled from before Israel, and David destroyed of Syria seven hundred chariots, and forty thousand horsemen, and he struck Sobac the captain of his host, and he died there. + +And all the kings the servants of Adraazar saw that they were put to the worse before Israel, and they went over to Israel, and served them: and Syria was afraid to +10:19 +Gr. +save. + help the children of Ammon any more. + +

+ + +

And it came to pass when the time o the year for kings going out +to battle had come round, that David sent Joab, and his servants with him, and all Israel; and they destroyed the children of Ammon, and besieged Rabbath: but David remained at Jerusalem. + +And it came to pass toward evening, that David arose off his couch, and walked on the roof of the king's house, and saw from the roof a woman bathing; and the woman was very beautiful to look upon. + +And David sent and enquired about the woman: and +one said, +Is not this Bersabee the daughter of Eliab, the wife of Urias the Chettite? + +And David sent messengers, and took her, and went in to her, and he lay with her: and she was +11:4 +Gr. +sanctified. + purified from her uncleanness, and returned to her house. + +And the woman conceived; and she sent and told David, and said, I am with child. + +And David sent to Joab, saying, Send me Urias the Chettite; and Joab sent Urias to David. + +And Urias arrived and went in to him, and David asked him how Joab was, and how the people were, and how the war went on. + +And David said to Urias, Go to your house, and wash your feet: and Urias departed from the house of the king, and a portion +of meat from the king followed him. + +And Urias slept at the door of the king with the servants of his lord, and went not down to his house. + +And they brought David word, saying, Urias has not gone down to his house. And David said to Urias, Are you not come from a journey? why have you not gone down to your house? + +And Urias said to David, The ark, and Israel, and Juda dwell in tents; and my lord Joab, and the servants of my lord, +11:11 +Lit. +encamp. + are encamped in the open fields; and shall I go into my house to eat and drink, and lie with my wife? how +should I do this? as your soul lives, +11:11 +Gr. +if I do this thing. + I will not do this thing. + +And David said to Urias, Remain here today also, and to-morrow I will let you go. So Urias remained in Jerusalem that day and the day following. + +And David called him, and he ate before him and drank, and he made him drunk: and he went out in the evening to lie upon his bed with the servants of his lord, and went not down to his house. + +And the morning came, and David wrote a letter to Joab, and sent it by the hand of Urias. + +And he wrote in the letter, saying, Station Urias in front of the severe +part of the fight, and retreat from behind him, so shall he be wounded and die. + +And it came to pass while Joab was watching against the city, that he set Urias in a place where he knew that valiant men were. + +And the men of the city went out, and fought with Joab: and some of the people of the servants of David fell, and Urias the Chettite died also. + +And Joab sent, and reported to David all the events of the war, +11:18 +Alex. +and +Heb. make the verse end here. + so as to tell them to the king. + +And he charged the messenger, saying, When you have finished reporting all the events of the war to the king, + +then it shall come to pass if the anger of the king shall arise, and he shall say to you, Why did you⌃ draw near to the city to fight? knew you⌃ not that they would shoot from off the wall? + +Who struck Abimelech the son of Jerobaal son of Ner? did not a woman cast a piece of a millstone upon him from above the wall, and he died in Thamasi? why did you⌃ draw near to the wall? then you shall say, Your servant Urias the Chettite is also dead. + +And the messenger of Joab went to the king to Jerusalem, and he came and reported to David all that Joab told him, all the affairs of the war. And David was very angry with Joab, and said to the messenger, Why did you⌃ draw near to the wall to fight? knew you⌃ not that you⌃ would be wounded from off the wall? Who struck Abimelech the son of Jerobaal? did not a woman cast upon him a piece of millstone from the wall, and he died in Thamasi? why did you⌃ draw near to the wall? + +And the messenger said to David, The men prevailed against us, and they came out against us into the field, and we came upon them even to the door of the gate. + +And the archers shot at your servants from off the wall, and some of the king's servants died, and your servant Urias the Chettite is dead also. + +And David said to the messenger, Thus shall you say to Joab, Let not the matter be grievous in your eyes, for the sword devours one way at one time and another way at another: strengthen your array against the city, and destroy it, and strengthen +11:25 +There can be little doubt that αὐτὸν the +Alex. +reading, is correct, instead of αὐτήν. + him. + +And the wife of Urias heard that Urias her husband was dead, and she mourned for her husband. + +And the time of mourning expired, and David sent and took her into his house, and she became his wife, and bore him a son: but the thing which David did was evil in the eyes of the Lord. + +

+ + +

And the Lord sent Nathan the prophet to David; and he went in to him, and said to him, There were two men in one city, one rich and the other poor. + +And the rich +man had very many flocks and herds. + +But the poor +man had only one little ewe lamb, which he had purchased, and preserved, and reared; and it grew up with himself and his children in common; it ate of his bread and drank of his cup, and slept in his bosom, and was to him as a daughter. + +And a traveller came to the rich man, and he spared to take of his flocks and of his herds, to dress for the traveller that came to him; and he took the poor man's lamb, and dressed it for the man that came to him. + +And David was greatly moved with anger against the man; and David said to Nathan, +As the Lord lives, the man that did this thing +12:5 +Gr. +is the son of death. + shall surely die. + +And he shall restore the lamb sevenfold, because he has not spared. + +And Nathan said to David, You are the man that has done this. Thus says the Lord God of Israel, I anointed you to be king over Israel, and I rescued you out the hand of Saul; + +and I gave you the house of your lord, and the wives of your lord into your bosom, and I gave to you the house of Israel and Juda; and if that +12:8 +Gr. +is little, I will give, etc. + had been little, I would have given you yet more. + +Why have you set at nothing the word of the Lord, to do that which is evil in his eyes? you have slain Urias the Chettite with the sword, and you have taken his wife to be your wife, and you have slain him with the sword of the children of Ammon. + +Now therefore the sword shall not depart from your house for ever, because you have set me at nothing, and you have taken the wife of Urias the Chettite, to be your wife. + +Thus says the Lord, Behold, I will raise up against you evil out of your house, and I will take your wives before your eyes, and will give them to your neighbor, and he shall lie with your wives in the sight of this sun. + +For you did it secretly, but I will do this thing in the sight of all Israel, and before the sun. + +And David said to Nathan, I have sinned against the Lord. And Nathan said to David, And the Lord has put away your sin; you shall not die. + +Only because you have given great occasion of provocation to the enemies of the Lord by this thing, your son also +12:14 +Gr. +born. + that is born to you shall surely die. + +And Nathan departed to his house. And the Lord struck the child, which the wife of Urias the Chettite bore to David, and it was ill. + +And David enquired of God concerning the child, and David fasted, and went in and lay all night upon the ground. + +And the elders of his house arose +and went to him to raise him up from the ground, but he would not +rise, nor did he eat bread with them. + +And it came to pass on the seventh day that the child died: and the servants of David were afraid to tell him that the child was dead; for they said, Behold, while the child was yet alive we spoke to him, and he listened not to our voice; and you should we tell him that the child is dead?—so +12:18 +Gr. +will. + would he do +himself harm. + +And David understood that his servants were whispering, and David perceived that the child was dead: and David said to his servants, Is the child dead? and they said, He is dead. + +Then David rose up from the earth, and washed, and anointed himself, and changed his raiment, and went into the house of God, and worshipped him; and went into his own house, and called for bread to eat, and they set bread before him and he ate. + +And his servants said to him, What +is this thing that you have done concerning the child? while it was yet living you did fast, and weep, and watch: and when the child was dead you did rise up, and did eat bread, and drink. + +And David said, While the child yet lived, I fasted and wept; for I said, Who knows if the Lord will pity me, and the child live? + +But now it is dead, why should I fast thus? shall I be able to bring him back again? I shall go to him, but he shall not return to me. + +And David comforted Bersabee his wife, and he went in to her, and lay with her; and she conceived and bore a son, and he called his named Solomon, and the Lord loved him. + +And he sent by the hand of Nathan the prophet, and called his name Jeddedi, for the Lord's sake. + +And Joab fought against Rabbath of the children of Ammon, and took the royal city. + +And Joab sent messengers to David, and said, I have fought against Rabbath, and taken the city of waters. + +And now gather the rest of the people, and encamp against the city, and take it beforehand; lest I take the city first, and my name be called upon it. + +And David gathered all the people, and went to Rabbath, and fought against it, and took it. + +And he took the crown of +12:30 +Alex. +rightly omits Molchom. 'Their king' in +Heb. + Molchom their king from off his head, and the weight of it was a talent of gold, with precious stones, and it was upon the head of David; and he carried forth very much spoil of the city. + +And he brought forth the people that were in it, and put them +12:31 +Gr. +in. + under the saw, and under iron harrows, and axes of iron, and made them pass through the brick-kiln: and thus he did to all the cities of the children of Ammon. And David and all the people returned to Jerusalem. + +

+ + +

And it happened after this that Abessalom the son of David had a very beautiful sister, and her name +was Themar; and Amnon the son of David loved her. + +And Amnon was distressed even to sickness, because of Themar his sister; for she was a virgin, and it seemed very difficult for Amnon to do anything to her. + +And Amnon had a friend, and his name +was Jonadab, the son of Samaa the brother of David: and Jonadab +was a very cunning man. + +And he said to him, What ails you that you are thus weak? O son of the king, morning by morning? +13:4 +Gr. +do. + will you not tell me? and Ammon said, I love Themar the sister of my brother Abessalom. + +And Jonadab said to him, Lie upon your bed, and make yourself sick, and your father shall come in to see you; and you shall say to him, Let, I pray you, Themar my sister come, and feed me with morsels, and let her prepare food before my eyes, that I may see and eat at her hands. + +So Ammon lay down, and made himself sick; and the king came in to see him: and Amnon said to the king, Let, I pray you, my sister Themar come to me, and make a couple of cakes in my sight, and I will eat them at her hand. + +And David sent to Themar to the house, saying, Go now to your brother's house, and dress him food. + +And Themar went to the house of her brother Amnon, and he +was lying down: and she took the dough and kneaded it, and made cakes in his sight, and baked the cakes. + +And she took the frying pan and poured them out before him, but he would not eat. And Amnon said, Send out every man from +13:9 +Gr. +above. + about me. And they removed every man from about him. + +And Amnon said to Themar, Bring in the food into the closet, and I will eat of your hand. And Themar took the cakes which she had made, and brought them to her brother Amnon into the chamber. + +And she brought +them to him to eat, and he caught hold of her, and said to her, Come, lie with me, my sister. + +And she said to him, Nay, my brother, do not humble me, for it +13:12 +Gr. +will not. +q.d. +non est fasciendum. + ought not to be so done in Israel; do not this folly. + +And I, whither shall I remove my reproach? and you shall be as one of the fools in Israel. And now, speak, I pray you, to the king, for surely he will not keep me from you. + +But Amnon would not listen to her voice; and he prevailed against her, and humbled her, and lay with her. + +Then Amnon hated her with very great hatred; for the hatred with which he hated her was greater than the love with which he had loved her, for the last wickedness was greater than the first: and Amnon said to her, Rise, and be gone. + +And Themar spoke to him concerning this great mischief, greater, +said she, than the other that you did me, to send me away: but Amnon would not listen to her voice. + +And he called his servant who had charge of the house, and said to him, Put now this +woman out from me, and shut the door after her. + +And she had on her a variegated robe, for so were the king's daughters that were virgins attired in their apparel: and his servant led her forth, and shut the door after her. + +And Themar took ashes, and put them on her head; and she tore the variegated garment that was upon her: and she laid her hands on her head, and went crying continually. + +And Abessalom her brother said to her, Has your brother Amnon been with you? now then, my sister, be silent, for he is your brother: be not careful to mention this matter. So Themar lived as a widow in the house of her brother Abessalom. + +And king David heard of all these things, and was very angry; but he did not grieve the spirit of his son Amnon, because be loved him, for he was his firstborn. + +And Abessalom spoke not to Amnon, good or bad, because Abessalom hated Amnon, on account of his humbling his sister Themar. + +And it came to pass at the end of +13:23 +q.d. +a two-year of days. + two whole years, that they were shearing +sheep for Abessalom in Belasor near Ephraim: and Abessalom invited all the king's sons. + +And Abessalom came to the king, and said, Behold, +13:24 +Gr. +they are shearing for your servant. + your servant has a sheep-shearing; let now the king and his servants go with your servant. + +And the king said to Abessalom, Nay, my son, let us not all go, and let us not be burdensome to you. And he pressed him; but he would not go, but blessed him. + +And Abessalom said to him, And if not, let I pray you, my brother Amnon go with us. And the king said to him, Why should he go with you? + +And Abessalom pressed him, and he sent with him Amnon and all the king's sons; and Abessalom made a banquet like the banquet of the king. + +And Abessalom charged his servants, saying, Mark when the heart of Amnon shall be merry with wine, and I shall say to you, Strike Amnon, and kill him: fear not; for is it not I that command you? Be courageous, +13:28 +Gr. +and become sons of strength. + and be valiant. + +And the servants of Abessalom did to Amnon as Abessalom commanded them: and all the sons of the king rose up, and they mounted every man his mule, and fled. + +And it came to pass, when they were in the way, that a report came to David, saying, Abessalom has slain all the king's sons, and there is not one of them left. + +Then the king arose, and tore his garments, and lay upon the ground: and all his servants that were standing round him tore their garments. + +And Jonadab the son of Samaa brother of David, answered and said, Let not my Lord the king say that he has slain all the young men the sons of the king, for Amnon only of them all is dead; for he was appointed +to death by the mouth of Abessalom from the day that he humbled his sister Themar. + +And now let not my lord the king take the matter to heart, saying, All the king's sons are dead: for Amnon only of them is dead. + +And Abessalom escaped: and the young man the watchman, lifted up his eyes, and looked; and, behold, much people went in the way behind him from the side of the mountain in the descent: and the watchman came and told the king, and said, I have seen men by the way of Oronen, by the side of the mountain. + +And Jonadab said to the king, Behold, the king's sons are present: according to the word of your servant, so has it happened. + +And it came to pass when he had finished speaking, that, behold, the king's sons came, and lifted up their voices and wept: and the king also and all his servants wept with a very great weeping. + +But Abessalom fled, and went to Tholmi son of Emiud the king of Gedsur to the land of Chamaachad: and king David mourned for his son continually. + +So Abessalom fled, and departed to Gedsur, and was there three years. + +And king David ceased to go out after Abessalom, for he was comforted concerning Amnon, touching his death. + +

+ + +

And Joab the son of Saruia knew that the heart of the king was toward Abessalom. + +And Joab sent to Thecoe, and took thence a cunning woman, and said to her, Mourn, I pray you, and put on mourning apparel, and anoint you not with oil, and you shall be as a woman mourning for one that is dead thus for many days. + +And you shall go to the king, and speak to him according to this word. And Joab put the words in her mouth. + +So the woman of Thecoe went in to the king and fell upon her face to the earth, and did him obeisance, and said, +14:4 +Or, +save. + Help, O king, help. + +And the king said to her, What is the matter with you? And she said, I am indeed a widow woman, and my husband is dead. + +And moreover your handmaid had two sons, and they fought +14:6 +Gr. +both. + together in the field, and there was no one to part them; and the one struck the other his brother, and killed him. + +And behold the whole family rose up against your handmaid, and they said, Give up the one that struck his brother, and we will put him to death for the life of his brother, whom he killed, and we will take away even your heir: so they will quench my coal that is left, so as not to +14:7 +Gr. +place. + leave my husband remnant or name on the face of the earth. + +And the king said to the woman, Go +14:8 +Gr. +in health. + in peace to your house, and I will give commandment concerning you. + +And the woman of Thecoe said to the king, On me, my lord, O king, and on my father's house +be the iniquity, and the king and his throne +be guiltless. + +And the king said, Who was it that spoke to you? you shall even bring him to me, and +one shall not touch +14:10 +q.d. +your son. + him any more. + +And she said, Let now the king remember concerning his Lord God in that the avenger of blood is multiplied to destroy, and let them not take away my son. And he said, +As the lord lives, not a hair of your son shall fall to the ground. + +And the woman said, Let now your servant speak a word to my lord the king. And he said, Say on. + +And the woman said, Why have you devised this thing against the people of God? or +is this word out of the king's mouth as a transgression, so that the king should not bring back his banished? + +For we shall surely die, and be as water poured upon the earth, which shall not be gathered up, and God shall take the life, even as he devises to thrust forth from him his outcast. + +And now whereas I came to speak this word to my lord the king, +the reason is that the people will see me, and your handmaid will say, Let one now speak to my lord the king, if perhaps the king will perform the request of his handmaid; + +for the king will hear. Let him rescue his handmaid out of the hand of the man that seeks to cast out me and my son from the inheritance of God. + +And the woman said, If now the word of my lord the king be gracious, —well: for as an angel of God, so +is my lord the king, to hear good and evil: and the Lord your God shall be with you. + +And the king answered, and said to the woman, Hide not from me, I pray you, the matter which I ask you. And the woman said, Let my lord the king by all means speak. + +And the king said, +Is not the hand of Joab in all this matter with you? and the woman said to the king, +As your soul lives, my lord, O king,14:19 +Gr. +If there is, etc. + there is no turning to the right hand or to the left from all that my lord the king has spoken; for your servant Joab himself charged me, and he put all these words in the mouth of your handmaid. + +In order that this form of speech might come about +it was that your servant Joab has framed this matter: and my lord is wise as +is the wisdom of an angel of God, to know all things that are in the earth. + +And the king said to Joab, Behold now, I have done to you according to this your word: go, bring back the young man Abessalom. + +And Joab fell on his face to the ground, and did obeisance, and blessed the king: and Joab said, To-day your servant knows that I have found grace in your sight, my lord, O king, for my lord the king has performed the request of his servant. + +And Joab arose, and went to Gedsur, and brought Abessalom to Jerusalem. + +And the king said, Let him return to his house, and not see my face. And Abessalom returned to his house, and saw not the king's face. + +And there was not a man in Israel so +14:25 +Gr. +praised. + very comely as Abessalom: from the sole of his foot even to the crown of his head there was no blemish in him. + +And when he polled his head, (and it was +14:26 +Gr. +from the beginning of days to days. +Hebraism. at the beginning of every year that he polled it, because it grew, heavy upon him,) even when he polled it, he weighed the hair of his head, two hundred shekels according to the royal shekel. + +And there were born to Abessalom three sons and one daughter, and her name was Themar: she was a very beautiful woman, and she becomes the wife of Roboam son of Solomon, and she bears to him Abia. + +And Abessalom remained in Jerusalem two +14:28 +Gr. +years of days. + full years, and he saw not the king's face. + +And Abessalom sent to Joab to bring him in to the king, and he would not come to him: and he sent to him the second time, and he would not come. + +And Abessalom said to his servants, Behold, Joab's portion in the field +is next to mine, and he has in it barley; go and set it on fire. And the servants of Abessalom set the field on fire: and the servants of Joab come to him with their clothes torn, and they said to him, The servants of Abessalom have set the field on fire. + +And Joab arose, and came to Abessalom into the house, and said to him, Why have your servants set my field on fire? + +And Abessalom said to Joab, Behold, I sent to you, saying, Come hither, and I will send you to the king, saying, Why did I come out of Gedsur? it would have been better for me to have remained there: and now, behold, I have not seen the face of the king; but if there is iniquity in me, then put me to death. + +And Joab went in to the king, and brought him word: and he called Abessalom, and he went in to the king, and did him obeisance, and fell upon his face to the ground, even in the presence of the king; and the king kissed Abessalom. + +

+ + +

And it came to pass after this that Abessalom +15:1 +Gr. +made. + prepared for himself chariots and horses, and fifty men to run before him. + +And Abessalom rose early, and stood by the side of the way of the gate: and it came to pass that every man who had a cause, came to the king for judgment, and Abessalom cried to him, and said to him, Of what city are you? And he said, Your servant +is of one of the tribes of Israel. + +And Abessalom said to him, See, your affairs +are right and +15:3 +Gr. +easy to be understood. + clear, yet you have no one +appointed of the king to hear you. + +And Abessalom said, O that one would make me a judge in the land; then every man who had a dispute or a cause would come to me, and I would judge him! + +And it came to pass when a man came near to do him obeisance, that he stretched out his hand, and took hold of him, and kissed him. + +And Abessalom did after this manner to all Israel that came to the king for judgment; and Abessalom gained the hearts of the men of Israel. + +And it came to pass +15:7 +Gr. +from the end of, etc. + after forty years, that Abessalom said to his father, I will go now, and pay my vows, which I vowed to the Lord in Chebron. + +For your servant vowed a vow when I lived at Gedsur in Syria, saying, If the Lord should indeed restore me to Jerusalem, then will I serve the Lord. + +And the king said to him, Go in peace. And he arose and went to Chebron. + +And Abessalom sent spies throughout all the tribes of Israel, saying, When you⌃ hear the sound of the trumpet, then shall you⌃ say, Abessalom is become king in Chebron. + +And there went with Abessalom two hundred chosen men from Jerusalem; and they went in their simplicity, and knew not anything. + +And Abessalom sent to Achitophel the Theconite, the counsellor of David, from his city, from Gola, where he was sacrificing: and there was a strong +15:12 +So the +Alex. +which reads σὺστρεμμα. See Acts 23:12. + conspiracy; and the people with Abessalom were increasingly numerous. + +And there came a messenger to David, saying, the heart of the men of Israel is gone after Abessalom. + +And David said to all his servants who were with him in Jerusalem, Rise, and let us flee, for we have no refuge from Abessalom: make haste and go, lest he overtake us speedily, and bring evil upon us, and strike the city with the edge of the sword. + +And the king's servants said to the king, In all things which our lord the king chooses, behold +we are your servants. + +And the king and all his house went out on foot: and the king left ten women of his concubines to keep the house. + +And the king and all his servants went out on foot; and abode in a distant house. + +And all his servants passed on by his +15:18 +Gr. +hand. + side, and every Chelethite, and every Phelethite, and they stood by the olive tree in the wilderness: and all the people marched near him, and all his court, and all the men of might, and all the men of war, six hundred: and they were present at his side: and every Chelethite, and every Phelethite, and all the six hundred Gittites that came on foot out of Geth, and +15:18 +Or, +they that. + they went on before the king. + +And the king said to Ethi, the Gittite, Why do you also go with us? return, and dwell with the king, for you are a stranger, and you have come forth as a sojourner out of your place. + + +15:20 +Gr. +it. + Whereas you came yesterday, shall I today cause you to travel with us, and shall you +thus change your place? you did come forth yesterday, and today shall I set you in motion to go along with us? I indeed will go wherever I may go: return then, and cause your brethren to return with you, and may the Lord deal mercifully and truly with you. + +And Ethi answered the king and said, +As the Lord lives and as my lord the king lives, in the place wherever my lord shall be, whether it be for death or life, there shall your servant be. + +And the king said to Ethi, Come and pass over with me. So Ethi the Gittite and the king passed over, and all his servants, and all the multitude with him. + +And all the +15:23 +Gr. +land. + country wept with a loud voice. And all the people passed by +15:23 +Gr. +in. + over the brook of Kedron; and the king crossed the brook Kedron: and all the people and the king passed on toward the way of the wilderness. + +And behold also Sadoc, and all the Levites were with him, bearing the ark of the covenant of the Lord from Baethar: and they set down the ark of God; and Abiathar went up, until all the people had passed out of the city. + +And the king said to Sadoc, Carry back the ark of God into the city: if I should find favor in the eyes of the Lord, then will he bring me back, and he will show me it and its beauty. + +But if he should say thus, I have no pleasure in you; behold, +here I am, let him do to me according to that which is good in his eyes. + +And the king said to Sadoc the priest, Behold, you +15:27 +Gr. +do. + shall return to the city in peace, and Achimaas your son, and Jonathan the son of Abiathar, your two sons with you. + +Behold, I continue in arms in Araboth of the desert, until there come tidings from you to report to me. + +So Sadoc and Abiathar brought back the ark of the Lord to Jerusalem, and it continued there. + +And David went up by the ascent of +the mount of Olives, ascending and weeping, and had his head covered, and went barefooted: and all the people that were with him covered +every man his head; and they went up, ascending and weeping. + +And it was reported to David, saying, Achitophel also +is among the conspirators with Abessalom. And David said, O Lord my God, disconcert, I pray you, the counsel of Achitophel. + +And David came as far as Ros, where he worshipped God: and behold, Chusi the chief friend of David came out to meet him, having torn his garment, and earth +was upon his head. + +And David said to him, If you should go over with me, then will you be a burden to me; + +but if you shall return to the city, and shall say to Abessalom, Your brethren are passed over, and the king your father is passed over after me: and now I am your servant, O king, suffer me to live: at one time even of late I was the servant of your father, and now I +am your humble servant—so shall you disconcert for me, the counsel of Achitophel. + +And, behold, +there are there with you Sadoc and Abiathar the priests; and it shall be that every word that you shall hear of the house of the king, you shall report it to Sadoc and Abiathar the priests. + +Behold, +there are there with them their two sons, Achimaas the son of Sadoc, and Jonathan the son of Abiathar; and by them you⌃ shall report to me every word which you⌃ shall hear. + +So Chusi the friend of David went into the city, and Abessalom was lately gone into Jerusalem. + +

+ + +

And David passed on a little way from Ros; and, behold, Siba the servant of Memphibosthe +came to meet him; and he had a couple of asses laden, and upon them two hundred loaves, and one hundred +bunches of raisins, and one hundred +cakes of dates, and bottle of wine. + +And the king said to Siba, What meanest you by these? and Siba, said, The asses +are for the household of the king to sit upon, and the loaves and the dates +are for the young men to eat, and the wine +is for them that are faint in the wilderness to drink. + +And the king said, And where +is the son of your master? and Siba said to the king, Behold, he remains in Jerusalem; for he said, To-day shall the house of Israel restore to me the kingdom of my father. + +And the king said to Siba, Behold, all Memphibosthe's property +is your. And Siba did obeisance and said, My lord, O king, let me find grace in your eyes. + +And king David came to Baurim; and, behold, there came out from thence a man of the family of the house of Saul, and his name +was Semei the son of Gera. He came forth and cursed as he went, + +and cast stones at David, and at all the servants of king David: and all the people and all the mighty men were on the right and left hand of the king. + +And thus Semei said when he cursed him, Go out, go out, you bloody man, and man of sin. + +The Lord has returned upon you all the blood of the house of Saul, because you have reigned in his stead; and the Lord has given the kingdom into the hand of Abessalom your son: and, behold, you +are taken in your mischief, because you +are a bloody man. + +And Abessa the son of Saruia said to the king, Why does this dead dog curse my lord the king? let me go over now and take off his head. + +And the king said, What have I to do with you, you⌃ sons of Saruia? even let him alone, and so let him curse, for the Lord has told him to curse David: and who shall say, Why have you done thus? + +And David said to Abessa and to all his servants, Behold, my son who came forth out of my bowels seeks my life; still more now may the son of Benjamin: let him curse, because the Lord has told him. + +If by any means the Lord may look on my affliction, thus shall he return me good for his cursing this day. + +And David and all the men with him went on the way: and Semei went by the side of the hill next to him, cursing as he went, and casting stones +16:13 +Gr. +obliquely, etc. + at him, and sprinkling him with dirt. + +And the king, and all the people with him, came away and refreshed themselves there. + +And Abessalom and all the men of Israel went into Jerusalem, and Achitophel with him. + +And it came to pass when Chusi the chief friend of David came to Abessalom, that Chusi said to Abessalom, Let the king live. + +And Abessalom said to Chusi, +Is this your kindness to your friend? why went you not forth with your friend? + +And Chusi said to Abessalom, Nay, but following whom the Lord, and this people, and all Israel have chosen, —his will I be, and with him I will dwell. + +And again, whom shall I serve? should I not in the presence of his son? As I served in the sight of your father, so will I be in your presence. + +And Abessalom said to Achitophel, Deliberate among yourselves concerning what we should do. + +And Achitophel said to Abessalom, Go in to your father's concubines, whom he left to keep his house; and all Israel shall hear that you have dishonored your father; and the hands of all that are with you shall be strengthened. + +And they pitched a tent for Abessalom on the roof, and Abessalom went in to his father's concubines in the sight of all Israel. + +And the counsel of Achitophel, which he counselled in former days, +was as if one should enquire of the word of God: so +was all the counsel of Achitophel both to David and also to Abessalom. + +

+ + +

And Achitophel said to Abessalom, Let me now choose out for myself twelve thousand men, and I will arise and follow after David this night: + +and I will come upon him when he +is weary and weak-handed, and I will strike him with terror; and all the people with him shall flee, and I will strike the king only of all. + +And I will bring back all the people to you, as a bride returns to her husband: only you seek the life of one man, and all the people shall have peace. + +And the saying +was right in the eyes of Abessalom, and in the eyes of all the elders of Israel. + +And Abessalom said, Call now also Chusi the Arachite, and let us hear what +is in his mouth, even in his also. + +And Chusi went in to Abessalom, and Abessalom spoke to him, saying, After this manner spoke Achitophel: shall we do according to his word? but if not, do you speak. + +And Chusi said to Abessalom, This counsel which Achitophel has counselled this one time +is not good. + +And Chusi said, You know your father and his men, that they are very mighty, and bitter in their spirit, as a bereaved bear in the field, +17:8 +Heb. and +Alex. +omit the wods in italics. + +and as a wild boar in the plain: and your father +is a man of war, and will not give the people rest. + +For, behold, he is now hidden in one of the hills or in some +other place: and it shall come to pass when he falls upon them at the beginning, that +some one will certainly hear, and say, There has been a slaughter among the people that follow after Abessalom. + +Then even he +that is +17:10 +Gr. +a son of strength. + strong, whose heart is as the heart of a lion, —it shall utterly melt: for all Israel knows that your father +is mighty, and they that are with him +are mighty men. + +For thus I have surely given counsel, that all Israel be generally gathered to you from Dan even to Bersabee, as the sand that is upon the sea-shore for multitude: and that your presence +17:11 +Gr. +going. + go in the midst of them. + +And we will come upon him in one of the places where we shall find him, and we will encamp against him, as the dew falls upon the earth; and we will not leave of him and of his men so much as one. + +And if he shall have taken refuge with his army in a city, then shall all Israel take ropes to that city, and we will draw it even into the river, that there may not be left there even a stone. + +And Abessalom, and all the men of Israel said, The counsel of Chusi the Arachite +is better than the counsel of Achitophel. For the Lord ordained to disconcert the good counsel of Achitophel, that the Lord might bring all evil upon Abessalom. + +And Chusi the Arachite said to Sadoc and Abiathar the priests, Thus and thus Achitophel counselled Abessalom and the elders of Israel; and thus and thus have I counselled. + +And now send quickly and report to David, saying, Lodge not this night in Araboth of the wilderness: even go and make haste, lest +one +17:16 +Alex. +καταπίῃ. + swallow up the king, and all the people with him. + +And Jonathan and Achimaas stood by the well of Rogel, and a maidservant went and reported to them, and they go and tell king David; for they might not be seen to enter into the city. + +But a young man saw them and told Abessalom: and the two went quickly, and entered into the house of a man in Baurim; and he had a well in his court, and they went down into it. + +And a woman took a covering, and spread it over the mouth of the well, and +17:19 +See Num 11:32; Jerem 8:2. + spread out ground corn upon it to dry, and the thing was not known. + +And the servants of Abessalom came to the woman into the house, and said, Where +are Achimaas and Jonathan? and the woman said to them, They are +17:20 +Or, +lately gone over. + gone a little way beyond +17:20 +Or, +the small streams. + the water. And they sought and found them not, and returned to Jerusalem. + +And it came to pass after they were gone, that they came up out of the pit, and went on their way; and reported to king David, and said to David, Arise you⌃ and go quickly over the water, for thus has Achitophel counselled concerning you. + +And David rose up and all the people with him, and they passed over Jordan till the morning light; there was not one missing who did not pass over Jordan. + +And Achitophel saw that his counsel was not followed, and he saddled his ass, and rose and departed to his house into his city; and he gave orders to his household, and +17:23 +Comp. the Greek with Matt 27:5. + hanged himself, and died, and was buried in the sepulchre of his father. + +And David passed over to Manaim: and Abessalom crossed over Jordan, he and all the men of Israel with him. + +And Abessalom appointed Amessai in the room of Joab over the host. And Amessai was the son of a man +17:25 +Gr. +and his name, etc. + whose name was Jether of Jezrael: he went in to Abigaia the daughter of Naas, the sister of Saruia the mother of Joab. + +And all Israel and Abessalom encamped in the land of Galaad. + +And it came to pass when David came to Manaim, that Uesbi the son of Naas of Rabbath of the sons of Ammon, and Machir son of Amiel of Lodabar, and Berzelli the Galaadite of Rogellim, + +brought ten embroidered beds, (with double coverings,) and ten caldrons, and earthenware, and wheat, and barley, and flour, and meal, and beans, and pulse, + +and honey, and butter, and sheep, and cheeses of kine: and they brought them to David and to his people with him to eat; for +one said, The people +is faint and hungry and thirsty in the wilderness. + +

+ + +

And David numbered the people with him, and set over them captains of thousands and captains of hundreds. + +And David sent away the people, the third part +18:2 +Gr. +in, by. + under the hand of Joab, and the third part under the hand of Abessa the son of Saruia, the brother of Joab, and the third part under the hand of Ethi the Gittite. And David said to the people, I also will surely go out with you. + +And they said, You shall not go out: for if we should indeed flee, they will not care for us; and if half of us should die, they will not mind us; for you +are +18:3 +Gr. +as we, ten thousand. + as ten thousand of us: and now +it is well that you shall be to us an aid to help us in the city. + +And the king said to them, Whatsoever shall seem good in your eyes I will do. And the king stood by the +18:4 +Gr. +hand. + side of the gate, and all the people went out by hundreds and by thousands. + +And the king commanded Joab and Abessa and Ethi, saying, Spare for my sake the young man Abessalom. And all the people heard the king charging all the commanders concerning Abessalom. + +And all the people went out into the wood against Israel; and the battle was in the wood of Ephraim. + +And the people of Israel fell down there before the servants of David, and there was a great slaughter in that day, +even twenty thousand men. + +And the battle there was scattered over the face of all the land: and the wood consumed more of the people than the sword consumed among the people in that day. + +And Abessalom went to meet the servants of David: and Abessalom was mounted on his mule, and the mule came under the thick boughs of a great oak; and his head was entangled in the oak, and he was suspended between heaven and earth; and the mule passed on from under him. + +And a man saw it, and reported to Joab, and said, Behold, I saw Abessalom hanging in an oak. + +And Joab said to the man who reported it to him, And, behold, you did see him: why did you not strike him there to the ground? and I would have given you ten +pieces of silver, and a girdle. + +And the man said to Joab, Were I even to +18:12 +Gr. +weigh upon my nanda. + receive a thousand shekels of silver, I would not lift my hand against the king's son; for in our ears the king charged you and Abessa and Ethi, saying, Take care of the young man Abessalom for me, + +so as to do no harm to his life: and nothing of the matter will be concealed from the king, and you will set yourself against me. + +And Joab said, I will begin this; I will not thus remain with you. And Joab took three darts in his hand, and thrust them into the heart of Abessalom, while he was yet alive in the heart of the oak. + +And ten young men that bore Joab's armor compassed Abessalom, and struck him and killed him. + +And Joab blew the trumpet, and the people returned from pursuing Israel, for Joab spared the people. + +And he took Abessalom, and cast him into a great cavern in the wood, into a deep pit, and set up over him a very great heap of stones: and all Israel fled every man to his tent. + +Now Abessalom while yet alive had taken and set up for himself the pillar +18:18 +Gr. +in, or by. + near which he was taken, and set it up so as to have the pillar in the king's dale; for he said he had no son to keep his name in remembrance: +18:18 +Heb. and +Alex. +insert 'and he called the pillar after his own name.' + and he called the pillar, Abessalom's +18:18 +Heb. idiom for 'place.' + hand, until this day. + +And Achimaas the son of Sadoc said, Let me run now and carry glad tidings to the king, for the Lord has delivered him from the hand of his enemies. + +And Joab said to him, You +shall not +be a messenger of glad tidings this day; you shall bear them another day; but on this day you shall bear no tidings, because the king's son is dead. + +And Joab said to Chusi, Go, report to the king all that you have seen. And Chusi did obeisance to Joab, and went out. + +And Achimaas the son of Sadoc said again to Joab, Nay, let me also run after Chusi. And Joab said, Why +18:22 +Gr. +do. + would you thus run, my son? attend, you have no tidings for profit if you go. + +And he said, +18:23 +Gr. +for what if I should run?. + Why should I not run? and Joab said to him, Run. And Achimaas ran along the way of Kechar, and outran Chusi. + +And David was sitting between the two gates: and the watchman went up on the top of the gate of the wall, and lifted up his eyes, and looked, and behold a man running alone before him. + +And the watchman cried out, and reported to the king. And the king said, If he be alone, +there are good tidings in his mouth. And the man came and drew near. + +And the watchman saw another man running: and the watchman cried at the gate, and said, And look, another man running alone. And the king said, He also brings glad tidings. + +And the watchman said, I see the running of the first as the running of Achimaas the son of Sadoc. And the king said, He +is a good man, and will come to +report glad tidings. + +And Achimaas cried out and said to the king, Peace. And he did obeisance to the king with his face to the ground, and said, Blessed +be the Lord your God, who has delivered up the men that lifted up their hands against my lord the king. + +And the king said, +Is the young man Abessalom safe? and Achimaas said, I saw a great multitude +at the time of Joab's sending the king's servant and your servant, and I knew not what was there. + +And the king said, Turn aside, stand still here. And he turned aside, and stood. + +And, behold, Chusi came up, and said to the king, Let my lord the king hear glad tidings, for the Lord has avenged you this day upon all them that rose up against you. + +And the king said to Chusi, Is it well with the young man Abessalom? and Chusi said, Let the enemies of my lord the king, and all whoever have risen up against him for evil, be as that young man. + +And the king was troubled, and went to the chamber over the gate, and wept: and thus he said as he went, My son Abessalom, my son, my son Abessalom; +18:33 +Gr. +who will give my death for you?. + would God I had died for you, +even I +had died for you, Abessalom, my son, my son! + +

+ + +

And they brought Joab word, saying, Behold, the king weeps and mourns for Abessalom. + +And the victory was turned that day into mourning to all the people, for the people heard say that day, The king grieves after his son. + +And the people stole away that day to go into the city, as people steal away when they are ashamed as they flee in the battle. + +And the king hid his face: and the king cried with a loud voice, My son Abessalom! Abessalom my son! + +And Joab went in to the king, into the house, and said, You have this day shamed the faces of all your servants that have delivered you this day, and +have saved the lives of your sons and of your daughters, and the lives of your wives, and of your concubines, + +forasmuch as you love them that hate you, and hate them that love you; and you have this day declared, that your princes and your servants are nothing +in your sight: for I know this day, that if Abessalom were alive, +and all of us dead today, then it would have been right in your sight. + +And now arise, and go forth, and speak comfortably to your servants; for I have sworn by the Lord, that unless you will go forth today, there shall not a man remain with you this night: and know for yourself, this thing +will indeed +be evil to you beyond all the evil that has come upon you from your youth until now. + +Then the king arose, and sat in the gate: and all the people reported, saying, Behold, the king sits in the gate. And all the people went in before the king to the gate; for Israel had fled every man to his +19:8 +Gr. +tents. + tent. + +And all the people disputed among all the tribes of Israel, saying, King David delivered us from all our enemies, and he rescued us from the hand of the Philistines: and now he has fled from the land, and from his kingdom, and from Abessalom. + +And Abessalom, whom we anointed over us, is dead in battle: and now why are you⌃ silent about bringing back the king? And the word of all Israel came to the king. + +And king David sent to Sadoc and Abiathar the priests, saying, Speak to the elders of Israel, saying, Why are you⌃ the last to bring back the king to his house? whereas the word of all Israel is come to the king to his house. + +You⌃ +are my brethren, you⌃ +are my bones and my flesh: why are you⌃ the last to bring back the king to his house? + +And you⌃ shall say to Amessai, +Are you not my bone and my flesh? and now God do so to me, and more also, if you shall not be commander of the host before me continually in the room of Joab. + +And he bowed the heart of all the men of Juda as that of one man; and they sent to the king, saying, Return you, and all your servants. + +And the king returned, and came as far as Jordan. And the men of Juda came to Galgala on their way to meet the king, to cause the king to pass over Jordan. + +And Semei the son of Gera, the Benjamite, of Baurim, hasted and went down with +19:16 +Gr. +the man. + the men of Juda to meet king David. + +And a thousand men of Benjamin +were with him, and Siba the servant of the house of Saul, and his fifteen sons with him, and his twenty servants with him: and they went directly down to Jordan before the king, + +and they performed the service of bringing the king over; and there went over a ferry-boat to remove the household of the king, and to do that which was right in his eyes. And Semei the son of Gera fell on his face before the king, as he went over Jordan; + +and said to the king, Let not my lord now impute iniquity, and remember not all the iniquity of your servant in the day in which my lord went out from Jerusalem, so that the king should mind it. + +For your servant knows that I have sinned: and, behold, I am come today before all Israel and the house of Joseph, to go down and meet my lord the king. + +And Abessai the son of Saruia answered and said, Shall not Semei therefore be put to death, because he cursed the Lord's anointed? + +And David said, What have I to do with you, you⌃ sons of Saruia, that you⌃ as it were lie in wait against me this day? today no man in Israel shall be put to death, for I know not if I this day reign over Israel. + +And the king said to Semei, You shall not die: and the king swore to him. + +And Memphibosthe the son of Saul's son went down to meet the king, and had not dressed his feet, nor pared his nails, nor shaved himself, neither had he washed his garments, from the day that the king departed, until the day when he arrived in peace. + +And it came to pass when he went into Jerusalem to meet the king, that the king said to him, Why did you not go with me, Memphibosthe? + +And Memphibosthe said to him, My lord, O king, my servant deceived me; for your servant said to him, Saddle me the ass, and I will ride upon it, and go with the king; for your servant +is lame. + +And he has dealt deceitfully with your servant to my lord the king: but my lord the king +is as an angel of God, and do you that which is good in your eyes. + +For all the house of my father were but as dead men before my lord the king; yet you have set your servant among them that eat at your table: and what right have I any longer even to cry to the king? + +And the king said to him, Why +19:29 +Gr. +speak you your words any longer. + speak you any longer of your matters? I have said, You and Siba shall divide the land. + +And Memphibosthe said to the king, Yes, let him take all, since my lord the king has come in peace to his house. + +And Berzelli the Galaadite came down from Rogellim, and crossed over Jordan with the king, that he might conduct the king over Jordan. + +And Berzelli was a very old man, +19:32 +Gr. +a son of eighty years. + eighty years old; and he had maintained the king when he lived in Manaim; for he was a very great man. + +And the king said to Berzelli, You shall go over with me, and I will nourish your old age with me in Jerusalem. + +And Berzelli said to the king, How many +are the days of the years of my life, that I should go up with the king to Jerusalem? + +I am this day eighty years old: can I then distinguish between good and evil? Can your servant taste any longer what I eat or drink? can I any longer hear the voice of singing men or singing women? and therefore shall your servant any longer be a burden to my lord the king? + +Your servant will go +19:36 +Gr. +as it were a little. + a little way over Jordan with the king: and why does the king return me this recompense? + +Let, I pray you, your servant remain, and I will die in my city, by the tomb of my father and of my mother. And, behold, your servant Chamaam shall go over with my lord the king; and do you to him as it seems good in your eyes. + +And the king said, Let Chamaam go over with me, and I will do to him what is good in my sight; and whatever you shall choose at my hand, I will do for you. + +And all the people went over Jordan, and the king went over; and the king kissed Berzelli, and blessed him; and he returned to his place. + +And the king went over to Galgala, and Chamaam went over with him: and all the men of Juda went over with the king, and also half the people of Israel. + +And behold, +19:41 +Gr. +every man. + all the men of Israel came to the king, and said to the king, Why have our brethren the men of Juda stolen you away, and caused the king and all his house to pass over Jordan, and all the men of David with him? + +And all the men of Juda answered the men of Israel, and said, Because the king is near of kin to us: and why were you thus angry concerning this matter? have we indeed eaten of the king's food? or has he given us a gift, or has he sent us a portion? + +And the men of Israel answered the men of Juda, and said, We have ten +19:43 +Gr. +and +Heb. hands. + parts in the king, and we are older than you, we have also an interest in David above you: and why have you⌃ thus insulted us, and why was not our advice taken before that of Juda, to bring back our king? And the speech of the men of Juda was sharper than the speech of the men of Israel. + +

+ + +

And there was a transgressor +so called there, and his name was Sabee, a Benjamite, the son of Bochori: and he blew the trumpet, and said, We have no portion in David, neither have we +any inheritance in the son of Jessae: to your tents, O Israel, every one. + +And all the men of Israel went up from following David after Sabee the son of Bochori: but the men of Juda adhered to their king, from Jordan even to Jerusalem. + +And David went into his house at Jerusalem: and the king took the ten women his concubines, whom he had left to keep the house, and he put them in a place of custody, and maintained them, and went not in to them; and they were kept living as widows, till the day of their death. + +And the king said to Amessai, Call to me the men of Juda for three days, and do you be present here. + +And Amessai went to call Juda, and delayed beyond the time which David appointed him. + +And David said to Amessai, Now shall Sabee the son of Bochori do us more harm than Abessalom: now then take you with you the servants of your lord, and follow after him, lest he find for himself strong cities, so will he +20:6 +i.e. +escape us. + blind our eyes. + +And there went out after him Amessai and the men of Joab, and the Cherethites, and the Phelethites, and all the mighty men: and they went out from Jerusalem to pursue after Sabee the son of Bochori. + +And they +were by the great stone that is in Gabaon: and Amessai went in before them: and Joab +20:8 +Gr. +was girded about with. + had upon him a military cloak over his apparel, and over it he was girded with a dagger fastened upon his loins in its scabbard: and the dagger came out, it even came out and fell. + +And Joab said to Amessai, Are you in health, +my brother? and the right hand of Joab took hold of the beard of Amessai to kiss him. + +And Amessai observed not the dagger that was in the hand of Joab: and Joab struck him with it on the loins, and his +20:10 +Gr. +belly. + bowels were shed out upon the ground, and he did not repeat the blow, and he died: and Joab and Abessai his brother pursued after Sabee the son of Bochori. + +And there stood over him one of the servants of Joab, and said, Who +is he that is for Joab, and who +is on the side of David following Joab? + +And Amessai +was weltering in blood in the midst of the way. And a man saw that all the people stood still; and he removed Amessai out of the path into a field, and he cast a garment upon him, because he saw every one that came to him standing still. + +And when he was quickly removed from the road, every man of Israel passed after Joab to pursue after Sabee the son of Bochori. + +And he went through all the tribes of Israel to Abel, and to Bethmacha; and all in Charri too were assembled, and followed after him. + +And they came and besieged him in Abel and Phermacha: and they raised a mound against the city and it stood close to the wall; and all the people with Joab proposed to throw down the wall. + +And a wise woman cried from the wall, and said, Hear, hear; say, I pray you⌃, to Joab, Draw near hither, and I will speak to him. + +And he drew near to her, and the woman said to him, Are you Joab? and he said, I +am. And she said to him, Hear the words of your handmaid; and Joab said, I do hear. + +And she spoke, saying, +20:18 +Gr. +they spoke a word among the first, saying. + Of old time they said thus, Surely one was asked in Abel, and Dan, whether the faithful in Israel failed in what they purposed; they will surely ask in Abel, even in like manner, whether they have failed. + +I am a peaceful one of the strong ones in Israel; but you seek to destroy a city and a mother city in Israel: why do you seek to ruin the inheritance of the Lord? + +And Joab answered and said, Far be it, far be it from me, that I should ruin or destroy. + +Is not the case thus, that a man of mount Ephraim, Sabee, son of Bochori by name, has even lifted up his hand against king David? Give him only to me, and I will depart from the city. And the woman said to Joab, Behold, his head shall be thrown to you over the wall. + +And the woman went in to all the people, and she spoke to all the city in her wisdom; and +20:22 +Gr. +it or she. +i.e. +ἡ πόλις. + they took off the head of Sabee the son of Bochori; and took it away and threw it to Joab: and he blew the trumpet, and the people separated from the city away from him, every man to his tent: and Joab returned to Jerusalem to the king. + +And Joab +was +20:23 +Gr. +to. + over all the forces of Israel: and Banaias the son of Jodae +was over the Cherethites and over the Phelethites. + +And Adoniram +was over the tribute: and Josaphath the son of Achiluth +was recorder. + +And Susa +was scribe: and Sadoc and Abiathar +were priests. + +Moreover Iras the +son of Iarin was priest to David. + +

+ + +

And there was a famine in the days of David three years, year after year; and David sought the face of the Lord. And the Lord said, +There is +21:1 +Gr. +iniquity. + guilt upon Saul and his house because of his +21:1 +Lit. +the death of his bloods. + bloody murder, whereby he killed the Gabaonites. + +And King David called the Gabaonites, and said to them; —(now the Gabaonites are not the children of Israel, but +are of the remnant of the Amorite, and the children of Israel had sworn to them: but Saul sought to strike them in his zeal for the children of Israel and Juda.) + +And David said to the Gabaonites, What shall I do to you? and wherewithal shall I make atonement, that you⌃ may bless the inheritance of the Lord? + +And the Gabaonites said to him, We have no +question about silver or gold with Saul and with his house; and there is no man for us to put to death in Israel. + +And he said, What say you⌃? speak, and I will do it for you. And they said to the king, The man who would have made an end of us, and persecuted us, who plotted against us to destroy us, let us utterly destroy him, so that he shall have no standing in all the coasts of Israel. + +Let one give us seven men of his sons, and let us hang them up in the sun to the Lord in Gabaon of Saul, as chosen out for the Lord. And the king said, I will give +them. + +But the king spared Memphibosthe son of Jonathan the son of Saul, because of the oath of the Lord that was between them, even between David and Jonathan the son of Saul. + +And the king took the two sons of Respha the daughter of Aia, whom she bore to Saul, Hermonoi and Memphibosthe, and the five sons of Michol daughter of Saul, whom she bore to Esdriel son of Berzelli the Moulathite. + +And he gave them into the hand of the Gabaonites, and they hanged them up to the sun in the mountain before the lord: and they fell, even the seven together: moreover they were put to death in the days of harvest at the commencement, in the beginning of barley harvest. + +And Respha the daughter of Aia took sackcloth, and fixed it for herself on the rock in the beginning of barley harvest, until water dropped upon them out of heaven: and she did not suffer the birds of the air to rest upon them by day, nor the beasts of the field by night. + +And it was told David what Respha the daughter of Aia the concubine of Saul had done, +21:11 +Heb. omits the words in italics. + +and they were faint, and Dan, the son of Joa of the offspring of the giants overtook them. + +And David went and took the bones of Saul, and the bones of Jonathan his son, from the men of the sons of Jabis Galaad, who stole them from the street of Baethsan; for the Philistines set them there in the day in which the Philistines struck Saul in Gelbue. + +And he carried up thence the bones of Saul and the bones of Jonathan his son, and gathered the bones of them that had been hanged. + +And they buried the bones of Saul and the bones of Jonathan his son, and the bones of them that had been hanged, in the land of Benjamin in the hill, in the sepulchre of Cis his father; and they did all things that the king commanded: and after this God listened to +the prayers of the land. + +And there was yet war between the Philistines and Israel: and David went down and his servants with him, and they fought with the Philistines, and David went. + +And Jesbi, who was of the progeny of Rapha, and the head of whose spear +was three hundred shekels of brass in weight, who also was girded with a club, even he thought to strike David. + +And Abessa the son of Saruia helped him and struck the Philistine, and killed him. Then the men of David swore, saying, You shall not any longer go out with us to battle, and you shall not quench the lamp of Israel. + +And after this there was a battle again with the Philistines in Geth: then Sebocha the Astatothite killed Seph of the progeny of Rapha. + +And there was a battle in Rom with the Philistines; and Eleanan son of Ariorgim the Bethleemite killed Goliath the Gittite; and the staff of his spear +was as a weaver's beam. + +And there was yet a battle in Geth: and there was +21:20 +Gr. +The original is Hebrew in Greek letters. + a man of stature, and the fingers of his hands and the toes of his feet +were six on each, four and twenty in number: and he also was born to Rapha. + +And he +21:21 +Or, +reproached. + defied Israel, and Jonathan son of Semei brother of David, struck him. + +These four were born descendants of the giants in Geth, the family of Rapha; and they fell by the hand of David, and by the hand of his servants. + +

+ + +

And David spoke to the Lord the words of this song, in the day in which the Lord rescued him out of the hand of all his enemies, and out of the hand of Saul. + +And the song was thus: O Lord, my rock, and my fortress, and my deliverer, + +my God; he shall be to me my guard, I will trust in him: +he is my protector, and the horn of my salvation, my helper, and my sure refuge; you shall save me from the unjust man. + +I will call upon the Lord who is worthy to be praised, and I shall be saved from my enemies. + +For the troubles of death compassed me, the floods of iniquity amazed me: + +the pangs of death surrounded me, the agonies of death prevented me. + +When I am afflicted I will call upon the Lord, and will cry to my God, and he shall hear my voice out of his temple, and my cry shall come into his ears. + +And the earth was troubled and quaked, and the foundations of heaven were confounded and torn asunder, because the Lord was angry with them. + +There went up a smoke in his wrath, and fire out of his mouth devours: coals were kindled at it. + +And he bowed the heavens, and came down, and +there was darkness under his feet. + +And he rode upon the cherubs and did fly, and was seen upon the wings of the wind. + +And he made darkness his hiding-place; his tabernacle round about him was the darkness of waters, he condensed it with the clouds of the air. + +At the brightness before him coals of fire were kindled. + +The Lord thundered out of heaven, and the Most High uttered his voice. + +And he sent forth arrows, and scattered them, and he flashed lightning, and dismayed them. + +And the channels of the sea were seen, and the foundations of the world were revealed, at the rebuke of the Lord, at the blast of the breath of his anger. + +He sent from above and took me; he drew me out of many waters. + +He delivered me from my strong enemies, from them that hated me, for they were stronger than I. + +The days of my affliction prevented me; but the Lord was my stay. + +And he brought me into a wide place, and rescued me, because he delighted in me. + +And the Lord recompensed me according to my righteousness; even according to the purity of my hands did he recompense me. + +Because, I kept the ways of the Lord, and did not wickedly depart from my God. + +For all his judgments and his ordinances +were before me: I departed not from them. + +And I shall be blameless +22:24 +Gr. +to him. + before him, and will keep myself from my iniquity. + +And the Lord will recompense me according to my righteousness, and according to the purity of my hands in his eye-sight. + +With the holy you will be holy, and with the perfect man you will be perfect, + +and with the +22:27 +Or, +upon the haughty. + excellent you will be excellent, and with the froward you will be froward. + +And you will save the poor people, and will bring down the eyes +22:28 +Or, +upon the haughty. + of the haughty. + +For you, Lord, +are my lamp, and the Lord shall shine forth to me in my darkness. + +For by you shall I run +22:30 +i.e. +a strong man +or +warrior. + +as a girded man, and by my God shall I leap over a wall. + +As for the Mighty One, his way +is blameless: the word of the Lord +is strong +and tried in the fire: he is a protector to all that put their trust in him. + +Who +is strong, but the Lord? and who will be a Creator except our God? + + +It is the Mighty One who strengthens me with might, and has prepared my way without fault. + + +22:34 +Gr. +making. + He makes my feet like hart's feet, and sets me upon the high places. + +He teaches my hands to war, and has broken a brazen bow by my arm. + +And you have given me the shield of my salvation, and your propitious dealing has increased me, + +so as to make room under me for my going, and my legs did not totter. + +I will pursue my enemies, and will utterly destroy them; and I will not turn again till I have consumed them. + +And +22:39 +Alex. +and +Heb. consume. + I will crush them, and they shall not rise; and they shall fall under my feet. + +And you shall strengthen me with power for the war; you shall cause them that rise up against me to bow down under me. + +And you have caused +22:41 +Gr. +as for my enemies, you have given me the back. + my enemies to flee before me, even them that hated me, and you have slain them. + +They shall cry, and there +22:42 +Gr. +is. + shall be no helper; to the Lord, but he hearkens not to them. + +And I ground them as the dust of the earth, I beat them small as the mire of the streets. + +And you shall deliver me from the striving of the +22:44 +A.V. +'my people.' + peoples, you shall keep me +to be the head of the Gentiles: a people which I knew not served me. + +The strange children feigned +obedience to me; they listened to me +22:45 +Gr. +at the hearing of the ear. + as soon as they heard. + +The strange children shall be cast away, and shall be overthrown out of their hiding places. + +The Lord lives, and blessed +be my guardian, and my God, +22:47 +Gr. +the keeper of my salvation. + my strong keeper, shall be exalted. + +The Lord who avenges me +is strong, chastening the nations under me, + +and bringing me out from my enemies: and you shall set me on high from among those that rise up against me: you shall deliver me from +22:49 +Gr. +a man of wrongs. + the violent man. + +Therefore will I confess to you, O Lord, among the Gentiles, and sing to your name. + +He magnifies the +22:51 +Gr. +salvations. + salvation of his king, and works mercy for his anointed, even for David and for his seed for ever. + +

+ + +

And these +are the last words of David. Faithful +is David the son of Jessae, and faithful the man whom the Lord raised up to be the anointed of the God of Jacob, and beautiful +are the psalms of Israel. + +The Spirit of the Lord spoke by me, and his word +was upon my tongue. + +The God of Israel says, A watchman out of Israel spoke to me a parable: I said among men, How will you⌃ strengthen the fear of the anointed? + +And in the morning light of God, let the sun arise in the morning, from the light of which the Lord passed on, and as it were from the rain of the tender grass upon the earth. + +For my house +is not so with the Mighty One: for he has made an everlasting covenant with me, ready, guarded at every time; for all my salvation and all my desire +is, that the wicked should not flourish. + +All these +are as a thorn thrust forth, for they shall not be taken with the hand, + +and a man shall not labor among them; and +one shall have that which is fully armed with iron, and the staff of a spear, and he shall burn them with fire, and they shall be burnt in their shame. + +These +are the names of the mighty men of David: Jebosthe the Chananite is a captain of the third +part: Adinon the Asonite, he drew his sword against eight hundred soldiers at once. + +And after him Eleanan the son of his uncle, son of Dudi who was among the three mighty men with David; and when +23:9 +Or, +they defied him among the Philistines. + he defied the Philistines they were gathered there to war, and the men of Israel went up. + +He arose an struck the Philistines, until his hand was weary, and his hand clave to the sword: and the Lord wrought a great salvation in that day, and the people +23:10 +Heb. returned. + rested behind him only to strip +the slain. + +And after him Samaia the son of Asa the Arachite: and the Philistines were gathered to Theria; and there was there a portion of ground full of lentiles; and the people fled before the Philistines. + +And he stood firm in the midst of the portion, and rescued it, and struck the Philistines; and the Lord wrought a great deliverance. + +And three out of the thirty went down, and came to Cason to David, to the cave of Odollam; and +there was an army of the Philistines, and they encamped in the valley of Raphain. + +And David +was then in the strong hold, and the garrison of the Philistines +was then in Bethleem. + +And David longed, and said, Who will give me water to drink out of the well that is in Bethleem by the gate? now the band of the Philistines +was then in Bethleem. + +And the three mighty men broke through the host of the Philistines, and drew water out of the well that was in Bethleem in the gate: and they took it, and brought it to David, and he would not drink it, but poured it out before the Lord. + +And he said, O Lord, forbid that I should do this, +23:17 +Gr. +if. + that I should drink of the blood of the men who went at +the risk of their lives: and he would not drink it. These things did these three mighty men. + +And Abessa the brother of Joab the son of Saruia, he +was chief among the three, and he lifted up his spear against three hundred whom he killed; and he had a name among three. + +Of those three +he was most honorable, and he became a chief over them, but he reached not to the +first three. + +And Banaeas the son of Jodae, he was abundant in +mighty deeds, from Cabeseel, and he struck the two sons of Ariel of Moab: and he went down and struck a lion in the midst of a pit on a snowy day. + +He struck an Egyptian, +23:21 +Gr. +a man seen +or +to be seen. + a wonderful man, and in the hand of the Egyptian +was a spear as the side of a ladder; and he went down to him with a staff, and snatched the spear from the Egyptian's hand, and killed him with his own spear. + +These things did Banaeas the son of Jodae, and he had a name among the three mighty men. + +He was honorable among the +second three, but he reached not to the +first three: and David +23:23 +Gr. +appointed him to his hearings. + made him his reporter. And these +are the names of King David's mighty men. + +Asael Joab's brother; he +was among the thirty. Eleanan son of Dudi his uncle in Bethleem. + +Saema the Rudaean. + +Selles +23:26 +Or, +the +son + of Kelothi. + the Kelothite: Iras the son of Isca the Thecoite. + +Abiezer the Anothite, of the sons of the Anothite. + +Ellon the Aoite; Noere the Netophatite. + +Esthai the son of Riba of Gabaeth, son of Benjamin the Ephrathite; Asmoth the Bardiamite; Emasu the Salabonite: + +Adroi of the brooks. + +Gadabiel son of the Arabothaeite. + +the sons of Asan, Jonathan; + +Samnan the Arodite; Amnan the son of Arai the Saraurite. + +Aliphaleth the son of Asbites, the son of the Machachachite; Eliab the son of Achitophel the Gelonite. + +Asarai the Carmelite the son of Uraeoerchi. + +Gaal the son of Nathana. The son of much valour, +the son of Galaaddi. Elie the Ammanite. + +Gelore the Bethorite, armor-bearer to Joab, son of Saruia. + +Iras the Ethirite. Gerab the Ethenite. + +Urias the Chettite: thirty-seven in all. + +

+ + +

And the Lord caused his anger to burn forth again in Israel, and +Satan stirred up David against them, saying, Go, number Israel and Juda. + +And the king said to Joab commander of the host, who was with him, Go now through all the tribes of Israel and Juda, from Dan even to Bersabee, and number the people, and I will know the number of the people. + +And Joab said to the king, Now may the Lord add to the people one hundred-fold as many as they are, and +may the eyes of my lord the king +24:3 +Gr. +seeing. + see it: but why does my lord the king desire this thing? + +Nevertheless the word of the king prevailed against Joab and the captains of the host: And Joab and the captains of the host went out before the king to number the people of Israel. + +And they went over Jordan, and encamped in Aroer, on the right of the city which is in the midst of the valley of Gad and Eliezer. + +And they came to Galaad, and into the land of Thabason, which is Adasai, and they came to Danidan and Udan, and compassed Sidon. + +And they came to Mapsar of Tyre, and to all the cities of the Evite and the Chananite: and they came by the South of Juda to Bersabee. + +And they compassed the whole land; and they arrived at Jerusalem at the end of nine months and twenty days. + +And Joab gave in the number of the census of the people to the king: and Israel consisted of eight hundred thousand men of might that drew sword; and the men of Juda, five hundred thousand fighting men. + +And the heart of David struck him after he had numbered the people; and David said to the Lord, I have sinned grievously, O Lord, +in what I have now done: remove, I pray you, the iniquity of your servant, for I have been exceedingly foolish. + +And David rose early in the morning, and the word of the Lord came to the prophet Gad, the seer, saying, Go, and speak to David, saying, + +Thus says the Lord, +24:12 +The word εἰμὶ is simply redundant. + I bring +one of three things upon you: now choose you one of them, and I will do +it to you. + +And Gad went in to David, and told him, and said to him, Choose +one of these things to befall you, whether there shall come upon you +for three years famine in your land; or that you should flee three months before your enemies, and they should pursue you; or that there should be +for three days mortality in your land. Now then decide, and see what answer I shall return to him that sent me. + +And David said to Gad, On every side +24:14 +Gr. +things are very narrow to me. + I am much straitened: let me fall now into the hands of the Lord, for his compassions +are very many; and let me not fall into the hands of man. + +So David chose for himself the mortality: and +they were the days of wheat harvest; and the Lord sent a pestilence upon Israel from morning till +24:15 +Lit. +dinner time. + noon, and the plague began among the people; and there died of the people from Dan even to Bersabee seventy thousand men. + +And the angel of the Lord stretched out his hand against Jerusalem to destroy it, and the Lord repented of the evil, and said to the angel that destroyed the people, +It is +24:16 +Gr. +much. + enough now, withhold your hand. And the angel of the Lord was by the threshing floor of Orna the Jebusite. + +And David spoke to the Lord when he saw the angel striking the people, and he said, Behold, it is I that have done wrong, +24:17 +Alex. +adds, 'and I the shepherd have done wickedly.' + but these sheep what have they done? Let your hand, I pray you, be upon me, and upon my father's house. + +And Gad came to David in that day, and said to him, Go up, and set up to the Lord an altar in the threshing floor of Orna the Jebusite. + +And David went up according to the word of Gad, as the Lord commanded him. + +And Orna +24:20 +Gr. +stooped. See 1 Pet. 1:12; also John 20:5. + looked out, and saw the king and his servants coming on before him: and Orna went forth, and did obeisance to the king with his face to the earth. + +And Orna said, Why has my lord the king come to his servant? and David said, To buy of you the threshing floor, in order to build an altar to the Lord that the plague may be restrained from off the people. + +And Orna said to David, Let my lord the king take and offer to the Lord that which is good in his eyes: behold, +here are oxen for a whole burnt offering, and the wheels and furniture of the oxen for wood. + +Orna gave all to the king: and Orna said to the king, The Lord your God bless you. + +And the king said to Orna, Nay, but I will surely buy it of you at a fair price, and I will not offer to the Lord my God a whole burnt offering for nothing. So David purchased the threshing floor and the oxen for +24:24 +Gr. +silver of fifty shekels. + fifty shekels of silver. + +And David built there an altar to the Lord, and offered up whole burnt offerings and peace-offerings: and Solomon made an addition to the altar afterwards, for it was little at first. And the Lord listened to the land, and the plague was stayed from Israel. + +

+
+ +Kings III +KINGS III +Kings III +1KI +

KINGS III +

+

(1 Kings) +

+ + +

And king David +was old and advanced in days, and they covered him with clothes, and he was not warmed. + +And his servants said, Let them seek for the king a young virgin, and she shall wait on the king, and cherish him, and lie with him, and my lord the king shall be warmed. + +So they sought for a fair damsel out of all the coasts of Israel; and they found Abisag the Somanite, and they brought her to the king. + +And the damsel was extremely beautiful, and she cherished the king, and ministered to him, but the king knew her not. + +And Adonias the son of Aggith exalted himself, saying, I will be king; and he +1:5 +Gr. +made. + prepared for himself chariots and horses, and fifty men to run before him. + +And his father never at any time checked him, saying, Why have you done +thus? and he was also very handsome in appearance, and his mother bore him after Abessalom. + +And he conferred with Joab the son of Saruia, and with Abiathar the priest, and they +1:7 +Gr. +came to his assistance. + followed after Adonias. + +But Sadoc the priest, and Banaeas the son of Jodae, and Nathan the prophet, and Semei, and Resi, and the +1:8 +Lit. +mighty sons. +Hebraism. mighty men of David, did not follow Adonias. + +And Adonias sacrificed sheep and calves and lambs by the +1:9 +So the +Alex. +The +Vat. +renders אבן as if it were אחי +or +אחה. + stone of Zoelethi, which was near +1:9 +Heb. and +Alex. +the fountain of Rogel. + Rogel: and he called all his brethren, and all the adult +men of Juda, servants of the king. + +But Nathan the prophet, and Banaeas, and the mighty +men, and Solomon his brother, he did not call. + +And Nathan spoke to Bersabee the mother of Solomon, saying, Have you not heard that Adonias the son of Aggith +1:11 +Gr. +reigned. + reigns, and our lord David +1:11 +Gr. +knew. + knows it not? + +And now come, let me, I pray, give you counsel, and you shall rescue your life, and the life of your son Solomon. + +Haste, and go in to king David, and you shall speak to him, saying, Have not you, my lord, O king, sworn to your handmaid, saying, Your son Solomon shall reign after me, and he shall sit upon my throne? why then does Adonias reign? + +And behold, while you are still speaking there with the king, I also will come in after you, and will +1:14 +Gr. +fulfil. + confirm your words. + +So Bersabee went in to the king into the chamber: and the king was very old, and Abisag the Somanite was ministering to the king. + +And Bersabee bowed, and did obeisance to the king; and the king said, What is your request? + +And she said, My lord, you did swear by the Lord your God to your handmaid, saying, Your son Solomon shall reign after me, and shall sit upon my throne. + +And now, behold, Adonias reigns, and you, my lord, O king, know +it not. + +And he has sacrificed calves and lambs and sheep in abundance, and has called all the king's sons, and Abiathar the priest and Joab the commander-in-chief of the host; but Solomon your servant he has not called. + +And you, my lord, O king, —the eyes of all Israel +are upon you, to tell them who shall sit upon the throne of my lord the king after him. + +And it shall come to pass, when my lord the king shall sleep with his fathers, that I and Solomon my son shall be offenders. + +And behold, while she was yet talking with the king, Nathan the prophet came. And it was reported to the king, + +Behold, Nathan the prophet +is here: and he came in to the king's presence, and did obeisance to the king with his face to the ground. + +And Nathan said, My lord, O king, did you say, Adonias shall reign after me, and he shall sit upon my throne? + +For he has gone down today, and has sacrificed calves and lambs and sheep in abundance, and has called all the king's sons, and the chiefs of the army, and Abiathar the priest; and, behold, they are eating and drinking before him, and they said, +Long live king Adonias. + +But he has not invited me your servant, and Sadoc the priest, and Banaeas the son of Jodae, and Solomon your servant. + + +1:27 +Gr. +if. + Has this matter happened by the authority of my lord the king, and have you not made known to your servant who shall sit upon the throne of my lord the king after him? + +And king David answered and said, Call me Bersabee: and she came in before the king, and stood before him. + +And the king swore, and said, +As the Lord lives who redeemed my soul out of all affliction, + +as I swore to you by the Lord God of Israel, saying, Solomon your son shall reign after me, and he shall sit upon my throne in my stead, so will I do this day. + +And Bersabee bowed with her face to the ground, and did obeisance to the king, and said, Let my lord king David live for ever. + +And king David said, Call me Sadoc the priest, and Nathan the prophet, and Banaeas the son of Jodae: and they came in before the king. + +And the king said to them, Take the servants of your lord with you, and mount my son Solomon upon my own mule, and bring him down to Gion. + +And there let Sadoc the priest and Nathan the prophet anoint him to be king over Israel, and do you⌃ sound the trumpet, and you⌃ shall say, Let king Solomon live. + +And he shall sit upon my throne, and reign in my stead: and I have given charge that he should be for a prince over Israel and Juda. + +And Banaeas the son of Jodae answered the king and said, So let it be: may the Lord God of my lord the king confirm +it. + +As the Lord was with my lord the king, so let him be with Solomon, and let him +1:37 +Gr. +magnify. + exalt his throne beyond the throne of my lord king David. + +And Sadoc the priest went down, and Nathan the prophet, and Banaeas son of Jodae, and the Cherethite, and the Phelethite, and they mounted Solomon upon the mule of king David, and led him away to Gion. + +And Sadoc the priest took the horn of oil out of the tabernacle, and anointed Solomon, and blew the trumpet; and all the people said, Let king Solomon live. + +And all the people went up after him, and they danced in choirs, and rejoiced with great joy, and the earth +1:40 +Gr. +burst. + quaked with their voice. + +And Adonias and all his guests heard, and they had +just left off eating: and Joab heard the sound of the trumpet, and said, What +means the voice of the city in tumult? + +While he was yet speaking, behold, Jonathan the son of Abiathar the priest came in: and Adonias said, Come in, for you are a mighty man, and +you come to bring glad tidings. + +And Jonathan answered and said, Verily our lord king David has made Solomon king: + +and the king has sent with him Sadoc the priest, and Nathan the prophet, and Banaeas the son of Jodae, and the Cherethite, and the Phelethite, and they have mounted him on the king's mule; + +and Sadoc the priest and Nathan the prophet have anointed him in Gion, and have gone up thence rejoicing, and the city resounded: this +is the sound which you⌃ have heard. + +And Solomon is seated upon the throne of the kingdom. + +And the servants of the king have gone in to bless our lord king David, saying, God +1:47 +Gr. +do good +or +make good. + make the name of Solomon better than your name, and make his throne greater than your throne; and the king worshipped upon his bed. + +Moreover thus said the king, Blessed +be the Lord God of Israel, who has this day +1:48 +Gr. +given. + appointed one of my seed sitting on my throne, and my eyes see it. + +And all the guests of Adonias were dismayed, and every man went his way. + +And Adonias feared because of Solomon, and arose, and departed, and laid hold on the horns of the altar. + +And it was reported to Solomon, saying, Behold, Adonias fears king Solomon, and holds the horns of the altar, saying, Let Solomon swear to me this day, that he will not kill his servant with the sword. + +And Solomon said, If he should be a valiant man, there shall not a hair of his fall to the ground; but if evil be found in him, he shall die. + +And king Solomon sent, and they brought him away from the altar; and he went in and did obeisance to king Solomon: and Solomon said to him, Go to your house. + +

+ + +

And the days of David drew near that he should die: and he +2:1 +Gr. +answered. + addressed his son Solomon, saying, I go the way of all the earth: + +but be you strong, and show yourself a man; + +and keep the charge of the Lord your God, to walk in his ways, to keep the commandments and the ordinances and the judgments which are written in the law of Moses; that you may understand what you shall do in all things that I command you: + +that the Lord may confirm his word which he spoke, saying, If your children shall take heed to their way to walk before me in truth with all their heart, +I promise you, saying, there shall not +2:4 +Gr. +be destroyed to you. + fail you a man on the throne of Israel. + +Moreover you know all that Joab the son of Saruia did to me, what he did to the two captains of the forces of Israel, to Abenner the son of Ner, and to Amessai the son of Jether, that he killed them, and +2:5 +Gr. +ordered. + shed the blood of war in peace, and put innocent blood on his girdle that was about his loins, and on his sandal that was on his foot. + +Therefore you shall deal +with him according to your wisdom, and you shall not bring down his grey hairs in peace to +2:6 +Gr. +Hades. + the grave. + +But you shall deal kindly with the sons of Berzelli the Galaadite, and they shall be among those that eat at your table; for thus they drew near to me when I fled from the face of your brother Abessalom. + +And, behold, +there is with you Semei the son of Gera, a Benjamite of Baurim: and he cursed me with a grievous curse in the day when I went into the +2:8 +Gr. +camps. + camp; and he came down to Jordan to meet me, and I swore to him by the Lord, saying, I will not put you to death with the sword. + +But you shall by no means hold him guiltless, for you are a wise man, and will know what you shall do to him, and shall bring down his grey hairs with blood to the grave. + +And David slept with his fathers, and was buried in the city of David. + +And the days which David reigned over Israel +were forty years; he reigned seven years in Chebron, and thirty-three years in Jerusalem. + +And Solomon sat on the throne of his father David, and his kingdom was +2:12 +Gr. +prepared. + established greatly. + +And Adonias the son of Aggith came in to Bersabee the mother of Solomon, and did obeisance to her: and she said, +2:13 +Gr. +Is your entrance peace? + Do you enter peaceably? and he said, Peaceably: + +I have business with you. And she said to him, Say on. + +And he said to her, You know that the kingdom was mine, and all Israel turned their face toward me for a king; but the kingdom was turned +from me and became my brother's: for it was +appointed to him from the Lord. + +And now I make one request of you, do not turn away your face. And Bersabee said to him, Speak +on. + +And he said to her, Speak, I pray you, to king Solomon, for he will not turn away his face from you, and let him give me Abisag the Somanite for a wife. + +And Bersabee said, Well; I will speak for you to the king. + +And Bersabee went in to king Solomon to speak to him concerning Adonias; and the king rose up to meet her, and kissed her, and sat on the throne, and a throne was set for the mother of the king, and she sat on his right hand. + +And she said to him, I ask of you one little request; turn not away my face from you. And the king said to her, Ask, my mother, and I will not reject you. + +And she said, Let, I pray you, Abisag the Somanite be given to Adonias your brother to wife. + +And king Solomon answered and said to his mother, And why have you asked Abisag for Adonias? ask for him the kingdom also; for he +is my elder brother, and he has for his companion Abiathar the priest, and Joab the son of Saruia the commander-in-chief. + +And king Solomon swore by the Lord, saying, God do so to me, and +2:23 +Gr. +add these things. + more also, +if it be not that Adonias has spoken this word against his own life. + +And now +as the Lord lives who has established me, and set me on the throne of my father David, and he has made me a house, as the Lord spoke, this day shall Adonias be put to death. + +So king Solomon sent by the hand of Banaeas the son of Jodae, and he killed him, and Adonias died in that day. + +And the king said to Abiathar the priest, Depart you quickly to Anathoth to your farm, for you are +2:26 +Gr. +a man of death. + worthy of death this day; but I will not kill you, because you have borne the ark of the covenant of the Lord before my father, and because you were afflicted in all things wherein my father was afflicted. + +And Solomon removed Abiathar from being a priest of the Lord, that the word of the Lord might be fulfilled, which he spoke +2:27 +Or, +against. + concerning the house of Heli in Selom. + +And the report came to Joab son of Saruia; for Joab had turned after Adonias, and he went not after Solomon: and Joab fled to the tabernacle of the Lord, and caught hold of the horns of the altar. + +And it was told Solomon, saying, Joab has fled to the tabernacle of the Lord, and behold! he has hold of the horns of the altar. And king Solomon sent to Joab, saying, +2:29 +Gr. +What has happened to you? + What ails you, that you have fled to the altar? and Joab said, Because I was afraid of you, and fled for refuge to the Lord. And Solomon sent Banaeas son of Jodae, saying, Go and kill him, and bury him. + +And Banaeas son of Jodae came to Joab to the tabernacle of the Lord, and said to him, Thus says the king, Come forth. And Joab said, I +2:30 +Gr. +do not. + will not come forth, for I will die here. And Banaeas son of Jodae returned and spoke to the king, saying, Thus has Joab spoken, and thus has he answered me. + +And the king said to him, Go, and do to him as he has spoken, and kill him: and you shall bury him, and you shall remove this day the blood which he shed without cause, from me and from the house of my father. + +And the Lord has returned upon his own head the blood of his unrighteousness, inasmuch as he attacked two men more righteous and better than himself, and killed them with the sword, and my father David knew not of their blood, +even Abenner the son of Ner the commander-in-chief of Israel, and Amessa the son of Jether the commander-in-chief of Juda. + +And their blood is returned upon his head, and upon the head of his seed for ever: but to David, and his seed, and his house, and his throne, may there be peace for ever from the Lord. + +So Banaeas son of Jodae went up, and attacked him, and killed him, and buried him in his house in the wilderness. + +And the king +2:35 +Gr. +gave. + appointed Banaeas son of Jodae in his place over the host; and the kingdom was established in Jerusalem; and +as for Sadoc the priest, the king appointed him to be high priest in the room of Abiathar. And Solomon son of David reigned over Israel and Juda in Jerusalem: and the Lord gave understanding to Solomon, and very much wisdom, and largeness of heart, as the sand by the sea-shore. + +

+ + +

And the wisdom of Solomon abounded exceedingly beyond the wisdom of all the ancients, and beyond all the wise men of Egypt: and he took the daughter of Pharao, and brought her into the city of David, until he had finished building his own house, and the house of the Lord first, and the wall of Jerusalem round about. In seven years he made and finished +them. +

+

And Solomon had seventy thousand bearers of burdens, and eight thousand hewers of stone in the mountain: and Solomon made the sea, and the bases, and the great lavers, and the pillars, and the fountain of the court, and the brazen sea— +3:1 +Probably some hiatus in the text. + and he built the citadel as a defence above it, he made a breach in the wall of the city of David: thus the daughter of Pharao went up out of the city of David to her house which he built for her. Then he built the citadel: and Solomon offered up three whole burnt offerings in the year, and peace-offerings on the altar which he built to the Lord, and he burnt incense before the Lord, and finished the house. And these are the chief persons who presided over the works of Solomon; three thousand and six hundred masters of the people that wrought the works. And he burit Assur, and Magdo, and Gazer, and upper Baethoron, and Ballath: only after he had built the house of the Lord, and the wall of Jerusalem round about, afterwards he built these cities. +

+

And when David was yet living, he charged Solomon, saying, Behold, there is with you Semei the son of Gera, of the seed of +3:1 +Gr. +Jemini. + Benjamin out of Chebron: he cursed me with a grievous curse in the day when I went into the camp; and he came down to meet me at Jordan, and I swore to him by the Lord, saying, +3:1 +Gr. +if he shall be slain. + He shall not be slain with the sword. But now do not you hold him guiltless, for you are a man of understanding, and you will know what you shall do to him, and you shall bring down his +3:1 +Gr. +hoary head. + grey hairs with blood to +3:1 +Gr. +Hades. + the grave. +3:1 +The verses below numbered 36) to 46) appear between verses one and two in Brenton. + +

+

36) + And the king called Semei, and said to him, Build you a house in Jerusalem, and dwell there, and you shall not go out thence any whither. +

+

37) + And it shall come to pass in the day +3:1 +Gr. +of your going forth. + that you shall go forth and cross over the brook Kedron, +3:1 +Gr. +knowing you shall know. + know assuredly that you shall certainly die: your blood shall be upon your head. And the king caused him to swear in that day. +

+

38) + And Semei said to the king, Good +is the word that you have spoken, my lord O king: thus will your servant do. And Semei lived in Jerusalem three years. +

+

39) + And it came to pass after the three years, that two servants of Semei ran away to Anchus son of Maacha king of Geth: and it was told Semei, saying, Behold, your servants +are in Geth. +

+

40) + And Semei rose up, and saddled his ass, and went to Geth to Anchus to seek out his servants: and Semei went, and brought his servants out of Geth. +

+

41) + And it was told Solomon, saying, Semei is gone out of Jerusalem to Geth, and has brought back his servants. +

+

42) + And the king sent and called Semei, and said to him, Did I not adjure you by the Lord, and testify to you, saying, In whatever day you shall go out of Jerusalem, and go to the right or left, know certainly that you shall assuredly die? +

+

43) + And why have you not kept the oath of the Lord, and the commandment which I commanded +3:1 +Gr. +against you. + you? +

+

44) + And the king said to Semei, You know all your mischief which your heart knows, which you did to David my father: and the Lord has recompensed your mischief on your +own head. +

+

45) + And king Solomon +is blessed, and the throne of David shall be established before the Lord for ever. +

+

46) + And Solomon commanded Banaeas the son of Jodae, and he went forth and killed him. +

+

And king Solomon was very prudent and wise: and Juda and Israel +were very many, as the sand which is by the sea for multitude, eating, and drinking, and rejoicing: and Solomon was chief in all the kingdoms, and they brought gifts, and served Solomon all the days of his life. And Solomon began to open the domains of Libanus, and he built Thermae in the wilderness. And this was the +3:1 +Gr. +dinner. + daily provision of Solomon, thirty measures of fine flour, and sixty measures of ground meal, ten choice calves, and twenty oxen from the pastures, and one hundred sheep, besides stags, and does, and choice fed birds. For he ruled in all the country on this side the river, from Raphi to Gaza, over all the kings +3:1 +Gr. +beyond. + on this side the river: and he was at peace on all sides round about; and Juda and Israel lived +3:1 +Gr. +trusting in confidence. See +Heb. + safely, every one under his vine and under his fig tree, eating and drinand feasting, from Dan even to Bersabee, all the days of Solomon. +

+

And these +were the princes of Solomon; Azariu son of Sadoc the priest, and Orniu son of Nathan chief of the officers, and he +3:1 +Gr. +ran. + went to his house; and Suba the scribe, and Basa son of Achithalam recorder, and Abi son of Joab commander-in-chief, and Achire son of Edrai +was over the +3:1 +Or. +tributes. + levies, and Banaeas son of Jodae over the household and over the brick work, and Cachur the son of Nathan +was counsellor. +

+

And Solomon had forty thousand brood mares for his chariots, and twelve thousand horses. And he reigned over all the kings from the river and to the land of the Philistines, and to the borders of Egypt: so Solomon the son of David reigned over Israel and Juda in Jerusalem. + +Nevertheless the people burnt incense on the high places, because a house had not yet been built to the Lord. + +And Solomon loved the Lord, +so as to walk in the ordinances of David his father; only he sacrificed and burnt incense on the high places. + +And he arose and went to Gabaon to sacrifice there, for that +was the highest place, and great: Solomon offered a whole burnt offering of a thousand +victims on the altar in Gabaon. + +And the Lord appeared to Solomon in a dream by night, and the Lord said to Solomon, Ask some petition for yourself. + +And Solomon said, You have dealt very mercifully with your servant David my father according as he walked before you in truth, and in righteousness, and in uprightness of heart with you, and you have kept for him this great mercy, to +3:6 +Gr. +give. + set his son upon his throne, +3:6 +Gr. +as this day +is. + + as +it is this day. + +And now, O Lord my God, you have +3:7 +Gr. +given. + appointed your servant in the room of David my father; and I am a little child, and know not my going out and my coming in. + +But your servant +is in the midst of your people, whom you have chosen, a great people, which as this day +3:8 +Gr. +shall +or +will not. + can’t be numbered. + +You shall give therefore to your servant a heart to hear and to judge your people justly, and to discern between good and evil: for who will be able to judge this your +3:9 +Gr. +heavy. + great people? + +And it was pleasing before the Lord, that Solomon asked this thing. + +And the Lord said to him, Because you have asked this thing of me, and have not asked for yourself +3:11 +Gr. +many days. + long life, and have not asked wealth, nor have asked the lives of your enemies, but have asked for yourself understanding to hear judgment; + +behold, I have done according to your word: behold, I have given you an understanding and wise heart: there has not been +any one like you before you, and after you there shall not arise one like you. + +And I have given you what you have not asked, wealth and glory, so that there has not been any one like you among kings. + +And if you will walk in my way, to keep my commandments and my ordinances, as David your father walked, then will I multiply your days. + +And Solomon awoke, and, behold, +it was a dream: and he arose and +3:15 +Gr. +comes. + came to Jerusalem, and stood before the altar that was in front of the ark of the covenant of the Lord in Sion: and he offered whole burnt offerings, and sacrificed peace-offerings, and made a great banquet for himself and all his servants. + +Then there appeared two harlots before the king, and they stood before him. + +And the one woman said, Hear me, +my lord; I and this woman lived in one house, and we were delivered in the house. + +And it came to pass on the third day after I was delivered, this woman also was delivered: and we +were together; and there +3:18 +Gr. +is. + was no one with us besides our two selves in the house. + +And this woman's child died in the night; because she +3:19 +Gr. +slept upon it. + overlaid it. + +and she arose in the middle of the night, +3:20 +Heb. and +Alex.+ +'while your handmaid slept.' + and took my son from my arms, and laid him in her bosom, and +3:20 +Gr. +caused to sleep. + laid her dead son in my bosom. + +and I arose in the morning to suckle my son, and he was dead: and, behold, I considered him in the morning, and, behold, it was not my son whom I bore. + +And the other woman said, No, but the living +is my son, and the dead +is your son. So they spoke before the king. + +and the king said to them, You say, This +is my son, +even the living +one, and this woman's son +is the dead one: and you say, No, but the living +is my son, and the dead +is your son. + +And the king said, Fetch a sword. And they brought a sword before the king. + +And the king said, Divide the live child, the suckling, in two; and give half of it to one, and half of it to the other. + +And the woman whose the living child was, answered and said to the king, (for her +3:26 +Gr. +her womb was troubled. + bowels yearned over her son) and she said, I pray you, +my lord, give her the child, and in nowise kill it. But the other said, Let it be neither mine nor hers; divide +it. + +Then the king answered and said, Give the child to her that said, 'Give it to her, and by no means kill it:' she +is its mother. + +and all Israel heard this judgment which the king judged, and they feared before the king; because they saw that the wisdom of God +was in him, to execute judgment. + +

+ + +

And king Solomon reigned over Israel. + +And these +are the princes which he had; Azarias son of Sadoc. + +Eliaph, and Achia son of Seba, scribes; and Josaphat son of Achilud, recorder. + +And Banaeas son of Jodae over the host; and Sadoc and Abiathar +were priests. + +And Ornia the son of Nathan +was over the +4:5 +Gr. +appointed ones. + officers; and Zabuth son of Nathan +was +4:5 +Heb. and +Alex. +insert 'priest.' + the king's +4:5 +Or, +companion. + friend. + +And Achisar was steward, and Eliac the +chief steward; and Eliab the son of Saph +was over the family: and Adoniram the son of Audon over the tribute. + +And Solomon had twelve officers over all Israel, to provide for the king and his household; each one's turn came to supply for a month in the year. + +And these +were their names: Been the son of Or in the mount of Ephraim, one. + +The son of Dacar, in Makes, and in Salabin, and Baethsamys, and Elon as far as Bethanan, one. + +The son of Esdi in Araboth; his +was Socho, and all the land of Opher. + +All Nephthador +belonged to the son of Aminadab, Tephath daughter of Solomon was his wife, one. + +Bana son of Achiluth +had Ithaanach, and Mageddo, and +his was the whole house of San which was by Sesathan below Esrae, and from Bethsan as far as Sabelmaula, as far as Maeber Lucam, one. + +The son of Naber in Raboth Galaad, to him +fell the lot of Ergab in Basan, sixty great cities with walls, and brazen bars, one. + +Achinadab son of Saddo, +had Maanaim. + +Achimaas +was in Nephthalim, and he took Basemmath daughter of Solomon to wife, one. + +Baana son of Chusi, in Aser and in Baaloth, one, + +Josaphat son of Phuasud +was in Issachar. + +Semei son of Ela, in Benjamin. + +Gaber son of Adai in the land of Gad, +the land of Seon king of Esebon, and of Og king of Basan, and one officer in the land of Juda. + + +27 And thus the officers provided king Solomon: and +they execute every one in his month all the orders for the table of the king, they +4:20 +Gr. +change. + omit nothing. + + +28 And they carried the barley and the straw for the horses and the chariots to the place where the king might be, each according to his charge. + +And these +were the requisite supplies for Solomon: in one day thirty measures of fine flour, and sixty measures of fine pounded meal, + +and ten choice calves, and twenty pastured oxen, and one hundred sheep, besides stags, and choice fatted does. + +For he had dominion on this side the river, and he was at peace on all sides round about. + +And the Lord gave understanding to Solomon, and very much wisdom, and enlargement of heart, as the sand on the seashore. + +And Solomon abounded greatly beyond the wisdom of all the ancients, and beyond all the wise men of Egypt. + +And he was wiser than all +other men: and he was wiser than Gaethan the Zarite, and +than Aenan, and +than Chalcad and Darala the son of Mal. + +And Solomon spoke three thousand proverbs, and his songs were five thousand. + +And he spoke of trees, from the cedar in Libanus even to the hyssop which comes out through the wall: he spoke also of cattle, and of birds, and of reptiles, and of fishes. + +And all the nations came to hear the wisdom of Solomon, and +ambassadors from all the kings of the earth, as many as heard of his wisdom. +

+

4:34 +Here the chapter ends, according to +Heb. and +Alex. And Solomon took to himself the daughter of Pharao to wife, and brought her into the city of David until he had finished the house of the Lord, and his own house, and the wall of Jerusalem. Then went up Pharao the king of Egypt, and took Gazer, and burnt it and the Chananite dwelling in Mergab; and Pharao gave them as a dowry to his daughter the wife of Solomon: and Solomon rebuilt Gazer. + +

+ + +

And Chiram king of Tyre sent his servants to anoint Solomon in the room of David his father, because Chiram always loved David. + +And Solomon sent to Chiram, saying, + +You knew +5:3 +Or, +that my father David, etc. + my father David, that he could not build a house to the name of the Lord my God +5:3 +Gr. +from the face of. +Hebraism. because of the wars that compassed him about, until the Lord put them under the +5:3 +Or, +steps. + soles of his feet. + +And now the Lord my God has given me rest round about; there is no one plotting against +me, and there is no +5:4 +Alex. +ἀπαντήμα. See συναντήματα, Ex. 9:14. + evil trespass +against me. + +And, behold, I intend to build a house to the name of the Lord my God, as the Lord God spoke to my father David, saying, Your son whom I will set on your throne in your place, he shall build a house to my name. + +And now command, and let +men cut wood for me out of Libanus: and, behold, my servants +shall be with your servants, and I will give you the wages of your service, according to all that you shall say, because you know that we have no one skilled in cutting timber like the Sidonians. + +And it came to pass, as soon as Chiram heard the words of Solomon, that he rejoiced greatly, and said, Blessed +be God today, who has given to David a wise son over this numerous people. + +And he sent to Solomon, saying, I have listened concerning all that you have sent to me for: I will do all your will: +as for timber of cedar and fir, + +my servants shall bring them down from Libanus to the sea: I will form them +into rafts, +and bring them to the place which you shall send to me +about; and I will +5:9 +Lit. +shake them off. + land them there, and you shall take +them up: and you shall do my will, in giving bread to my household. + +So Chiram gave to Solomon cedars, and fir trees, and all his desire. + +And Solomon gave to Chiram twenty thousand measures of wheat +5:11 +Some read μαχὰλ, +or +μαχὰθ, as if from מכרח +cibus. as food for his house, and twenty thousand baths of beaten oil thus Solomon gave to Chiram yearly. + +And the Lord gave wisdom to Solomon as he +5:12 +Gr. +spoke to him. + promised him; and there was peace between Chiram and Solomon, and they made a covenant between them. + +And the king raised +5:13 +Lit. +tribute, etc. + a levy out of all Israel, and the levy was thirty thousand men. + +And he sent them to Libanus, ten thousand taking turn every month: they were a month in Libanus and two months at home: and Adoniram +was over the levy. + +And Solomon had seventy thousand bearers of burdens, and eighty thousand hewers of stone in the mountain; + +besides the rulers that were appointed over the works of Solomon, +there were three thousand +5:16 +Heb. 300. +Alex. +500. + six hundred +5:16 +Heb. and +Alex. +overseers of the people. + masters who wrought in the works. + + +5:17 +Verse 17 is not in +Vat. +The following is from +Alex. +And the king commanded and they + +5:17 +Gr. +bring. + +brought great stones, precious stones for the foundation of the house, and unhewn stones. + + +And they prepared the stones and the timber +during three years. + +

+ + +

And it came to pass in the four hundred and fortieth year after the departure of the children of Israel out of Egypt, in the fourth year and second month +6:1 +Gr. +of Solomon reigning. + of the reign of king Solomon over Israel, +6:1 + +

+

17) + that the king commanded that they should take great +and costly stones for the foundation of the house, and hewn stones. +

+

18) + And the men of Solomon, and the men of Chiram hewed +the stones, and laid them +for a foundation. In the fourth year he laid the foundation of the house of the Lord, in the month Ziu, even in the second month. In the eleventh year, in the month Baal, this +is the eighth month, the house was completed according to all its plan, and according to all its arrangement. + +And the house which the king built to the Lord +6:2 +Gr. +its length forty in cubit, etc. + +was +6:2 +Heb. and +Alex. +60 cubits. + forty cubits in length, and twenty cubits in breadth, and its height +6:2 +Heb. and +Alex. +30 cubits. + five and twenty cubits. + +And the porch in front of the temple—twenty cubits +was its length according to the breadth of the house in front of the house: and he built the house, and finished it. + +And he made to the house secret windows inclining inward. + +And +6:5 +Gr. +upon. + against the wall of the house he set chambers round about +6:5 +Heb. and +Alex. +with (or against) the walls of the house round about. + the temple and the ark. + +The under side +was five cubits broad, and the middle +part six, and the third +was seven cubits broad; for he formed an interval to the house round about without the house, that they might not touch the walls of the house. + +And the house was built in the construction of it with rough hewn stones: and there was not heard in the house in the building of it hammer +6:7 +Gr. +and. + or axe, +6:7 +Gr. +and. + or any iron tool. + +And the porch of the under side +was below the right wing of the house, and +there was a winding ascent into the middle +chamber, and from the middle to the third story. + +So he built the house and finished it; and he made the ceiling of the house with cedars. + +And he made the partitions through all the house, each five cubits high, and enclosed each partition with cedar boards. + +And he framed the walls of the house within with cedar boards, from the floor of the house and on to the inner walls and to the beams: he lined the parts enclosed with boards within, and compassed the inward parts of the house with planks of fir. + +And he built the twenty cubits from the top of the wall, one side from the floor to the beams, and he made it from the +6:16 +Or, +shrine. + oracle to the most holy place. + +And the temple was forty cubits +in extent, + +in front of the oracle in the midst of the house within, +in order to +6:19 +Gr. +give. + put there the ark of the covenant of the Lord. + +The length +was twenty cubits, and the breadth +was twenty cubits, and the height of it was twenty cubits. And he covered it with +6:20 +Gr. +and +Heb. shut up. + perfect gold, and he made an altar in front of the oracle, and covered it with gold. + +And he covered the whole house with gold, +6:21-22 +Gr. +to the finishing of the whole house. + till he had finished +gilding the whole house. + +And he made in the oracle two cherubs of ten cubits measured size. + +And the wing of one cherub was five cubits, and his other wing was five cubits; ten cubits +6:24 +Gr. +from the tip of his wing to the tip of his wing. + from the tip of one wing to the tip of the other wing. + +Thus it was with the other cherub, both were alike finished with one measure. + +And the height of the one cherub +was ten cubits, and so +was it with the second cherub. + +And both the cherubs +were in the midst of the innermost part of the house; and they spread out their wings, and one wing touched the wall, and the wing of the other cherub touched the other wall; and their wings in the midst of the house touched each other. + +And he covered the cherubs with gold. + +He graved all the walls of the house round about with the graving of cherubs, and +he sculptured palm trees within and without +the house. + +And he covered the floor of the house within and without with gold. + +And for the door-way of the oracle he made doors of juniper wood, +there were porches in a four-fold way. + +In both the doors +were planks of fir; the one door had two leaves and their hinges, and the other door had two leaves and turned +on hinges, + +being carved with cherubs, and +there were palm-trees and open flower-leaves, and it +was overlaid with gold gilt upon the engraving. + +And he built the inner court, three rows of +6:36 +See ch 10:12. + hewn stones, and a row of wrought cedar round about, and he made the curtain of the court of the porch of the house that was in front of the temple. + +

+ + +

+7:1-12 +Verse 1, etc. +See the first 12 verses of this chapter placed at the end of it in the Vatican copy. See below. + + +

+

And king Solomon sent, and took Chiram out of Tyre, + +the son of a widow woman; and he +was of the tribe of Nephthalim, and his father +was a Tyrian; a worker in brass, and accomplished in are and skill and knowledge to work every work in brass: and he was brought in to king Solomon, and he wrought all the works. + +And he cast the two pillars for the porch of the house: eighteen cubits +was the height of +each pillar, and a circumference of fourteen cubits encompassed it, even the thickness of the pillar: the +7:15 +Or, +embossed +or +hollow work. + flutings +were four fingers +wide, and thus +was the other pillar +formed. + +And he made two molten capitals to +7:16 +Gr. +give. + put on the heads of the pillars: five cubits +was the height of one chapiter, and five cubits +was the height of the other chapiter. + +And he made two +7:17 +Gr. +nets. + ornaments of network to cover the +7:17 +Gr. +chapiter. + capitals of the pillars; even a net for one chapiter, and a net for the other chapiter. + +And hanging work, two rows of brazen pomegranates, +7:18 +q.d. +netted. + formed with network, hanging work, row upon row: and thus he framed +the ornaments for the second chapiter. +21 And he set up the pillars of the porch of the temple: and he set up the one pillar, and called its name Jachum: and he set up the second pillar, and called its name Boloz. + +And on the heads of the pillars he made lily-work against the porch, of four cubits, + +and a chamber over both the pillars, and above the sides an addition +equal to the chamber in width. + +And he made the sea, ten cubits from one rim to the other, the same was +7:23 +Gr. +round in a circle. + completely circular round about: its height +was five cubits, and its circumference thirty-three cubits. + +And stays underneath its rim round about compassed it ten cubits round; + +And +there were twelve oxen under the sea: three looking to the north, and three looking to the west, and three looking to the south, and three looking to the east: and all their hinder parts +were +7:25 +Lit. +to +or +into the house. + inward, and the sea +was above upon them. + +and its rim +was as the work of the rim of a cup, a lily-flower, and the thickness of it +was a span. + +And he made ten brazen bases: five cubits +was the length of one base, and four cubits the breadth of it, and its height +was six cubits. + +And this work of the bases +was +7:28 +Gr. +shut up. + formed with a border the them, and +there was a border between the ledges. + +And upon their borders between the projection +were lions, and oxen, and cherubs: and on the projections, even so above, and also below +were the places of lions and oxen, hanging work. + +And +there were four brazen wheels to one base; and +there were brazen bases, and their four sides +answering to them, side +7:30 +Or, +bearings, +or +shoulders; +A.V. +undersetters. + pieces under the bases. + +And +there were +7:31 +Gr. +hands. + axles in the wheels +7:31 +Gr. +in. + under the base. + +And the height of one wheel +was a cubit and a half. + +And the work of the wheels +was as the work of chariot wheels: their +7:33 +Gr. +their hands and their backs. + axles, and their felloes, and +the rest of their work, +were all molten. + +The four side pieces were at the four corners of each base; its shoulders +were formed of the base. + +And on the top of the base half a cubit +was the size of it, +there was a circle on the top of the base, and +there was the top of its spaces and its borders: and it +7:35 +Gr. +was opened. + was open at the top of its spaces. + +And its borders +were cherubs, and lions, and palm-trees, upright, each +was joined in front +and within and round about. + +According to the same form he made all the ten bases, +even one order and one measure to all. + +And he made ten brazen lavers, each laver containing forty +7:38 +Gr. +gallons. The +Gr. +seems to have this meaning, but the +Heb. word means more. + baths, +and measuring four cubits, each laver +placed on a several base throughout the ten bases. + +And he put five bases on the right side of the house, and five on the left side of the house: and the sea was placed +7:39 +Gr. +on the shoulder-piece of the house on the right. + on the right side of the house eastward in the direction of the south. + +And Chiram made the caldrons, and the pans, and the bowls; and Chiram finished making all the works that he wrought for king Solomon in the house of the Lord: + +two pillars and the wreathen works of the pillars on the heads of the two pillars; and the two +7:41 +Gr. +nets. + networks to cover both the wreathen works of the flutings that were upon the pillars. + +The four hundred pomegranates for both the networks, two rows of pomegranates for one network, to cover both the wreathen works of the bases belonging to both pillars. + +And the ten bases, and the ten lavers upon the bases. + +And one sea, and the twelve oxen under the sea. + +And the caldrons, and pans, and bowls, and all the furniture, which Chiram made for king Solomon for the house of the Lord: and +there were eight and forty pillars of the house of the king and of the house of the Lord: all the works of the king which Chiram made were entirely of brass. +7:45 +Gr. +Brenton places verse 46 after verse 47 - here shown as 46). + + +There was no +7:47 +Gr. +weight. + reckoning of the brass of which he made all these works, from the very great abundance, there was no end of the +7:47 +Gr. +weights. + weight of the brass. +

+

46 + In the country round about Jordan did he cast them, in the +7:47 +thick +part + of the land. + clay land between Socchoth and Sira. + +And king Solomon took the furniture which +Chiram made for the house of the Lord, the golden altar, and the golden table of show bread. + +And +he put the five candlesticks on the left, and five on the right in front of the oracle, +being of +7:49 +Lit. +golden, shut up. + pure gold, and the lamp-stands, and the lamps, and the +7:49 +Perhaps small vessels with lips for pouring oil. + snuffers of gold. + +And +there were made the +7:50 +Or, +rather work about the door. + porches, and the nails, and the bowls, and the spoons, and the golden censers, +7:50 +Gr. +shut up. + of pure gold: and the panels of the doors of the innermost part of the house, +even the holy of holies, and the golden doors of the temple. + +So the work of the house of the Lord which Solomon wrought was finished; and Solomon brought in the holy things of David his father, and all the holy things of Solomon; he +7:51 +Gr. +gave. + put the silver, and the gold, and the furniture, into the treasures of the house of the Lord. +

+

7:51 +Gr. +See note at verse 1 for the following verses shown as 1) to 12). + +

+

1) + And Solomon built a house for himself in thirteen years. +

+

2) + And he built the house with the +7:51 +Lit. +thicket. + wood of Libanus; its length +was one hundred cubits, and its breadth +was fifty cubits, and its height +was of thirty cubits, and +it was made +7:51 +2) +Gr. +of. + with three rows of cedar pillars, and the pillars had +7:51 +2) +Or, +shoulders, +or +shoulder pieces. + side-pieces of cedar. +

+

3) + And he +7:51 +3) +Gr. +ceiled +or +wainscoted the house. + formed the house with chambers above on the sides of the pillars, and the number of the pillars +was each row forty and five, +

+

4) + and +there were three chambers, and space against space in three rows. +

+

5) + And all the doors and spaces formed like chambers +were square, and from door to door +was a correspondence in three rows. +

+

6) + And +he made the +7:51 +6) +Or, +portico. + porch of the pillars, +they were fifty +cubits long and fifty broad, the porch joining them in front; and the +other pillars and the thick beam +were in front of the house by the porches. +

+

7) + And +there was the Porch of seats where he would judge, the porch of judgment. +

+

8) + And their house where he +7:51 +8) +Gr. +will. + would dwell, +had one court communicating with these according to this work; and +he built the house for the daughter of Pharao whom Solomon had taken, according to this porch. +

+

9) + All these +were of costly stones, sculptured at intervals within even from the foundation even to the +7:51 +9) +Gr. +capitals, mouldings, etc. + top, and outward to the great court, +

+

10) + founded with large costly stones, stones of ten cubits and eight cubits +long. +

+

11) + And above with costly stones, according to the measure of hewn stones, and with cedars. +

+

12) + +There were three rows of hewn +stones round about the great hall, and a row of sculptured cedar: and Solomon finished all his house. + +

+ + +

And it came to pass when Solomon had finished building the house of the Lord and his own house after twenty years, then king Solomon assembled all the elders of Israel in Sion, to bring the ark of the covenant of the Lord out of the city of David, this is Sion, + +in the month of Athanin. + +And the priests took up the ark, + +and the tabernacle of testimony, and the holy furniture that was in the tabernacle of testimony. + +And the king and all Israel +were occupied before the ark, sacrificing sheep +and oxen, without number. + +And the priests bring in the ark into its place, into the oracle of the house, even into the holy of holies, under the wings of the cherubs. + +For the cherubs +8:7 +pass. part. +spread out with their wings. + spread out their wings over the place of the ark, and the cherubs covered the ark and its holy things above. + +And the +8:8 +Heb. staves. + holy staves projected, and the ends of the holy staves appeared out of the holy places in front of the oracle, and were not seen without. + +There was nothing in the ark except the two tables of stone, the tables of the covenant which Moses put +there in Choreb, which +tables the Lord made +as a covenant with the children of Israel in their going forth from the land of Egypt. + +And it came to pass when the priests departed out of the holy place, that the cloud filled the house. + +And the priests could not stand to minister +8:11 +Or, +before the cloud. + because of the cloud, because the glory of the Lord filled the house. + +And the king +8:14 +Gr. +'turned away,' but probably not from the people. + turned his face, and the king blessed all Israel, (and the whole assembly of Israel stood:) + +and he said, Blessed +be the Lord God +8:15 +Gr. +in Israel. +Hebraism. of Israel today, who spoke by his mouth concerning David my father, and has fulfilled it with his hands, saying, + +From the day that I brought out my people Israel out of Egypt, I have not chosen a city in +any one +8:16 +Gr. +staff. + tribe of Israel to build a house, so that my name should be there: but I chose Jerusalem that my name should be there, and I chose David to be over my people Israel. + +And it was +8:17 +Gr. +upon. + in the heart of my father to build a house to the name of the Lord God of Israel. + +And the Lord said to David my father, Forasmuch as it came into your heart to build a house to my name, you did well that it came upon your heart. + +Nevertheless you shall not build the house, but your son that has proceeded out of your +8:19 +Gr. +sides. + bowels, he shall build the house to my name. + +And the Lord has confirmed the word that he spoke, and I am risen up in the place of my father David, and I have sat down on the throne of Israel, as the Lord spoke, and I have built the house to the name of the Lord God of Israel. + +And I have set there a place for the ark, in which is the covenant of the Lord, which the Lord made with our fathers, when he brought them out of the land of Egypt. + +And Solomon stood up in front of the altar before all the congregation of Israel; and he spread out his hands toward heaven: + +and he said, Lord God of Israel, there is no God like you in heaven above and on the earth beneath, keeping covenant and mercy with your servant who walks before you with all his heart; + +which you have kept toward your servant David my father: for you have spoken by your mouth and you have fulfilled it with your hands, as +at this day. + +And now, O Lord God of Israel, keep for your servant David my father, +the promises which you have spoken to him, saying, There shall not be taken from you a man sitting before me on the throne of Israel, provided only your children shall take heed to their ways, to walk before me as you have walked before me. + +And now, O Lord God of Israel, let, I pray you, your word to David my father be confirmed. + + +8:27 +Gr. +'that,' elliptical expression. + But will God indeed dwell with men upon the earth? if the heaven and heaven of +8:27 +Gr. +heaven. + heavens will not suffice you, how much less even this house which I have built to your name? + +Yet, O Lord God of Israel, you shall look upon my petition, to hear the prayer which your servant prays to you in your presence this day, + +that your eyes may be open toward this house day and night, even toward the place which you said, My name shall be there, to hear the prayer which your servant prays +8:29 +Or, +toward. + at this place day and night. + +And you shall listen to the prayer of your servant, and of your people Israel, which they shall pray toward this place; and you shall hear in your dwelling-place in heaven, and you shall do and be gracious. + +Whatsoever trespasses +8:31 +Gr. +each. + any +one shall commit against his neighbor,—and if he shall take upon him an oath so that he should swear, and he shall come and make confession before your altar in this house, + +then shall you hear from heaven, and do, and you shall judge your people Israel, that the wicked should be +8:32 +Or, +considered wicked +or +lawless. + condemned, to recompense his way upon his head; and to justify the righteous, to give to him according to his righteousness. + +When your people Israel falls before enemies, because they shall sin against you, and they shall return and confess to your name, and they shall pray and supplicate in this house, + +then shall you hear from heaven, and be gracious to the sins of your people Israel, and you shall restore them to the land which you gave to their fathers. + +When the heaven is restrained, and there is no rain, because they shall sin against you, and the shall pray toward this place, and they shall make confession to your name, and shall turn from their sins when you shall have humbled them, + +then you shall hear from heaven, and be merciful to the sins of your servant and of your people Israel; for you shall show them the good way to walk in it, and you shall give rain upon the earth which you have given to your people for an inheritance. + +If there should be famine, if there should be death, because there should be blasting, locust, or if there be mildew, and if +8:37 +Gr. +his. + their enemy oppress them in +any one of their cities, +with regard to every +8:37 +Gr. +incident +or +occurrence. + calamity, every trouble, + +every prayer, every supplication whatever shall be made by any man, as they shall know each the plague of his heart, and shall spread abroad his hands to this house, + +then shall you listen from heaven, out of your established dwelling-place, and shall be merciful, and shall do, and recompense to +every man according to his ways, as you shall know his heart, for you alone know the heart of all the children of men: + +that they may fear you all the days that they live upon the land, which you have given to our fathers. + +And for the stranger who is not of your people, + +when they shall come and pray toward this place, + +then shall you hear +them from heaven, out of your established dwelling-place, and you shall do according to all that the stranger shall call upon you for, that all the nations may know your name, and fear you, as +do your people Israel, and may know that your name has been called on this house which I have builded. + + +If it be that your people shall go forth to war against their enemies in the way by which you shall turn them, and pray in the name of the Lord +8:44 +Gr. +by way of. + toward the city which you have chosen, and the house which I have built to your name, + +then shall you hear from heaven their supplication and their prayer, and shall execute judgment for them. + + +If it be that they shall sin against you, (for there is not a man who will not sin,) and you shall bring them and deliver them up before their enemies, and they that take +them captive shall carry +them to a land far or near, + +and they shall turn their hearts in the land whither they have been carried captives, and turn in the land of their sojourning, and supplicate you, saying, We have sinned, we have done unjustly, we have transgressed, + +and they shall turn to you with all their heart, and with all their soul, in the land of their enemies whither you have carried them captives, and shall pray to you toward their land which you have given to their fathers, and the city which you have chosen, and the house which I have built to your name: + +then shall you hear from heaven your established dwelling-place, + +and you shall be merciful to their unrighteousness wherein they have trespassed against you, and according to all their transgressions wherewith they have transgressed against you, and you shall +8:50 +Gr. +give them to compassions. + cause them to be pitied before them that carried them captives, and they shall have compassion on them: + +for +they are your people and your inheritance, whom you brought out of the land of Egypt, out of the midst of the furnace of iron. + +And let your eyes and your ears be opened to the supplication of your servant, and to the supplication of your people Israel, to listen to them in all things for which they shall call upon you. + +Because you have set them apart for an inheritance to yourself out of all the nations of the earth, as you spoke by the hand of your servant Moses, when you brought our fathers out of the land of Egypt, +8:53 +Gr. +Lord, Lord, +i.e. +according to the +Heb. Lord Jehovah. + O Lord God.—Then spoke Solomon concerning the house, when he had finished building it—He manifested the sun in the heaven: the Lord said he would dwell in darkness: build you my house, a beautiful house for yourself to dwell in anew. Behold, is not this written in the book of the song? + +And it came to pass when Solomon had finished praying to the Lord all this prayer and supplication, that he rose up from before the altar of the Lord, +after having knelt upon his knees, and his hands +were spread out towards heaven. + +And he stood, and blessed all the congregation of Israel with a loud voice, saying, + +Blessed +be the Lord this day, who has given rest to his people Israel, according to all that he said: there has not failed one word among all his good words which he spoke by the hand of his servant Moses. + +May the Lord our God be with us, as he was with our fathers; let him not desert us nor turn from us, + +that he may turn our hearts toward him to walk in all his ways, and to keep all his commandments, and his ordinances which he commanded our fathers. + +And let these words, +8:59 +Gr. +as. + which I have prayed before the Lord our God, +be +8:59 +Gr. +approaching. + near to the Lord our God day and night, to maintain the cause of your servant, and the cause of your people Israel +8:59 +Gr. +a thing +or +word of a day in a day of a year. But +Alex. +reads ἡμέρᾳ αὐτοῦ, which agrees with the +Heb. + for ever. + +that all the nations of the earth may know that the Lord God, he +is God, and there is none beside. + +And let our hearts be perfect toward the Lord our God, to walk also holily in his ordinances, and to keep his commandments, +8:61 +Gr. +as this day is. + as at this day. + +And the king and all the children of Israel offered sacrifice before the Lord. + +And king Solomon offered for the sacrifices of peace-offering which he sacrificed to the Lord, two and twenty thousand oxen, one hundred and twenty thousand sheep: and the king and all the children of Israel dedicated the house of the Lord. + +In that day the king consecrated the middle of the court in the front of the house of the Lord; for there he offered the whole burnt offering, and the sacrifices, and the +8:64 +Gr. +fats. + fat of the peace-offerings, because the brazen altar which was before the Lord +was too little to bear the whole burnt offering and the sacrifices of peace-offerings. + +And Solomon kept the feast in that day, and all Israel with him, even a great assembly from the entering in of Hemath to the river of Egypt, before the Lord our God in the house which he built, eating and drinking, and rejoicing before the Lord our God seven days. + +And on the eighth day he sent away the people: and they blessed the king, and each departed to his +8:66 +Gr. +tabernacles. + tabernacle rejoicing, and +their heart +was glad because of the good things which the Lord had done to his servant David, and to Israel his people. + +

+ + +

And it came to pass when Solomon had finished building the house of the Lord, and the king's house, and all the work of Solomon, whatever he wished to perform, + +that the Lord appeared to Solomon a second time, as he appeared in Gabaon. + +And the Lord said to him, I have heard the voice of your prayer, and your supplication which you made before me: I have done for you according to all your prayer: I have hallowed this house which you have built to put my name there for ever, and my eyes and my heart shall be there always. + +And if you will walk before me as David your father walked, in holiness of heart and uprightness, and so as to do according to all that I commanded him, and shall keep my ordinances and my commandments: + +then will I +9:5 +Gr. +raise up. + establish the throne of your kingdom in Israel for ever, as I spoke to David your father, saying, There shall not fail you a man to rule in Israel. + +But if you⌃ or your children do in any wise revolt from me, and do not keep my commandments and my ordinances, which Moses +9:6 +Gr. +gave. + set before you, and you⌃ go and serve other gods, and worship them: + +then will I cut off Israel from the land which I have given them, and this house which I have consecrated to my name I will cast out of my sight; and Israel shall be a desolation and a byword to all nations. + +And this house, which is high, shall be +so that every one that passes +9:8 +Gr. +through it. + by it shall be amazed, and shall hiss; and they shall say, Therefore has the Lord done thus to this land, and to this house? + +And +men shall say, Because they forsook the Lord their God, who brought out their fathers from Egypt, out of the house of bondage, and they attached themselves to strange gods, and worshipped them, and served them: therefore the Lord has brought this evil upon them. Then Solomon brought up the daughter of Pharao out of the city of David into his house which he built for himself in those days. + + +During twenty years in which Solomon was building the two houses, the house of the Lord, and the house of the king, + +Chiram king of Tyre helped Solomon with cedar +9:11 +Gr. +woods. + wood, and fir +9:11 +Gr. +woods. + wood, and with gold, and all that he wished for: then the king gave Chiram twenty cities in the land of Galilee. + +So Chiram departed from Tyre, and went into Galilee to see the cities which Solomon gave to him; and they pleased him not. And he said, + +What +are these cities which you have given me, brother? And he called them Boundary until this day. + +And Chiram brought to Solomon one hundred and twenty talents of gold, + +even that for which king Solomon built a ship in Gasion Gaber near Aelath on the +9:26 +Gr. +lip. + shore of the +9:26 +Gr. +last sea, +or +last part of the sea, +q.d. +head of the gulf. + extremity of the sea in the land of Edom. + +And Chiram sent in the ship together with the servants of Solomon servants of his own, mariners to row, men acquainted with the sea. + +And they came to Sophira, and took thence one hundred and twenty talents of gold, and brought them to king Solomon. + +

+ + +

And the queen of Saba heard of the name of Solomon, and the name of the Lord, and she came to try him with riddles. + +And she came to Jerusalem with a very great +10:2 +Gr. +force. + train; and +there came camels bearing spices, and very much gold, and precious stones: and she came in to Solomon, and told him all that was in her heart. + +And Solomon +10:3 +Gr. +related to her all her words. + answered all her questions: and there was not a question overlooked by the king which he did not answer her. + +And the queen of Saba saw all the wisdom of Solomon, and the house which he built, + +and the provision of Solomon and the sitting of his attendants, and the standing of his servants, and his raiment, and his cupbearers, and his whole burnt offering which he offered in the house of the Lord, and she was +10:5 +Or, +in ecstasy. + utterly amazed. + +And she said to king Solomon, +It was a true report which I heard in my land of your +10:6 +Gr. +word. + words and your wisdom. + +But I believed not them that told me, until I came and my eyes saw: and, behold, the words as they reported to me are not the half: you have +10:7 +Gr. +added good things to them. + exceeded in goodness all the report which I heard in my land. + +Blessed +are your wives, blessed +are these your servants who stand before you continually, who hear all your wisdom. + +Blessed be the Lord your God, who has taken pleasure in you, to set you upon the throne of Israel, because the Lord loved Israel to establish +him for ever; and he has made you king over them, to execute judgment with justice, and in their causes. + +And she gave to Solomon one hundred and twenty talents of gold, and very many spices, and +10:10 +Gr. +precious stone. + precious stones: there had not come any other spices so abundant as those which the queen of Saba gave to king Solomon. + +And the ship of Chiram which brought the gold from Suphir, brought very much hewn timber and precious stones. + +And the king made the hewn timber +into buttresses of the house of the Lord and the king's house, and lyres and harps for singers: such hewn timber had not come upon the earth, nor have been seen anywhere until this day. + +And king Solomon gave to the queen of Saba all that she desired, whatever she asked, besides all that he had given her +10:13 +of his royal bounty, +A.V. by the hand of king Solomon: and she returned, and came into her own land, she and her servants. + +And the weight of gold that came to Solomon in one year was six hundred and sixty-six talents of gold. + +Besides the tributes of them that were subjects, both merchants and all the kings of the +country beyond +the river, and of the princes of the land. + +And Solomon made three hundred spears of beaten gold: three hundred shekels of gold were upon one spear. + +And three hundred +10:17 +Gr. +arms. + shields of beaten gold: and three pounds of gold were in one shield: and the king put them in the house of the forest of Lebanon. + +And the king made a great ivory throne, and gilded it with pure gold. + +The throne +had six steps, and calves in bold relief to the throne behind it, and side-pieces on either hand of the place of the seat, and two lions standing by the side-pieces, + +and twelve lions standing there on the six steps on either side: it was not so done in any +other kingdom. + +And all the vessels made by Solomon +were of gold, and the lavers +were golden, and all the vessels of the house of the forest of Lebanon were of +10:21 +Lit. +'shut up with gold,' a frequent phrase in +Heb. and +Gr. +for 'pure gold.' See chap. 6:20. + pure gold; there was no silver, for it was not accounted of in the days of Solomon. + +For Solomon had a ship of Tharsis in the sea with the ships of Chiram: one ship came to the king every three years out of Tharsis, +laden with gold and silver, and +10:22 +Gr. +turned. + wrought stones, and hewn stones. +

+

This was the arrangement of the +10:22 +This word more commonly means 'spoil' in the O.T. + provision which king Solomon fetched to build the house of the Lord, and the house of the king, and the wall of Jerusalem, and the citadel; to fortify the city of David, and Assur, and Magdal, and Gazer, and Baethoron the upper, and Jethermath, and all the cities of the chariots, and all the cities of the horsemen, and the +10:22 +Gr. +work. + fortification of Solomon which he purposed to build in Jerusalem and in all the land, so that none of the people should rule over him that was left of the Chettite and the Amorite, and the Pherezite, and the Chananite, and the Evite, and the Jebusite, and the Gergesite, who were not of the children of Israel, their descendants who had been left with him in the land, whom the children of Israel could not utterly destroy; and Solomon +10:22 +Gr. +reduced them to tribute. + made them tributaries until this day. But of the children of Israel Solomon made nothing; for they were the warriors, and his servants and rulers, and captains of the third order, and the captains of his chariots, and his horsemen. + +And Solomon increased beyond all the kings of the earth in wealth and wisdom. + +And all the kings of the earth sought the +10:24 +Gr. +face. + presence of Solomon, to hear his wisdom which the Lord +had put into his heart. + +And they brought every one their gifts, vessels of gold, and raiment, and stacte, and spices, and horses, and mules, a rate year by year. + +And Solomon had four thousand mares for his chariots, and twelve thousand horsemen: and he put them in the cities of his chariots, and with the king in Jerusalem: and he ruled over all the kings from the river to the land of the Philistines, and to the borders of Egypt. + +And the king +10:27 +Gr. +gave. + made gold and silver in Jerusalem as stones, and he made cedars as the sycamores in the plain for multitude. + +And the goings forth of Solomon's horsemen +was also out of Egypt, and the king's merchants +were of Thecue; and they received them out of Thecue at a price. + +And that which proceeded out of Egypt went up +thus, even a chariot for one hundred +shekels of silver, and a horse for fifty +shekels of silver: and thus for all the kings of the Chettians, and the kings of Syria, they came out by sea. + +

+ + +

+11:1 +This verse, or part verse is not numbered in Brenton's text. Verse 1 is in the position below, following verse 3. + And king Solomon was a lover of women. +11:1 +Note that the verses between this point and the beginning of verse 9 are in the order chosen by Brenton, and are marked thus: 1) etc. as they are numbered by Brenton. + +

+

3) + And he had seven hundred wives, princesses, and three hundred concubines. +

+

1) + And he took strange women, as well as the daughter of Pharao, Moabitish, Ammanitish women, Syrians and Idumeans, Chettites, and Amorites; + +of the nations concerning whom the Lord forbade the children of Israel, +saying, You⌃ shall not go in to them, and they shall not come in to you, lest they turn away your hearts after their idols: Solomon clave to these in love. + +And it came to pass in the time of the old age of Solomon, that his heart was not perfect with the Lord his God, as +was the heart of David his father. +

+

3 + And the strange women turned away his heart after their gods. +7 + Then Solomon built a high place to Chamos the idol of Moab, and to their king the +11:4 +See +Heb. + idol of the children of Ammon, + +

+

and to Astarte the abomination of the Sidonians. + +And thus he acted towards all his strange wives, who burnt incense and sacrificed to their idols. +

+

6 + And Solomon did that which was evil in the sight of the Lord: he went not after the Lord, as David his father. + +And the Lord was angry with Solomon, because he turned away his heart from the Lord God of Israel, who had appeared twice to him, + +and charged him concerning this matter, by no means to go after other gods, but to take heed to do what the Lord God commanded him; neither was his heart perfect with the Lord, according to the heart of David his father. + +And the Lord said to Solomon, Because it has been thus with you, and you have not kept my commandments and my ordinances which I commanded you, I will surely rend your kingdom out of your hand, and give it to your servant. + +Only in your days I will not do +11:12 +Gr. +them. + it for David your father's sake: +but I will take it out of the hand of your son. + +Only I will not take away the whole kingdom: I will give one tribe to your son for David my servant's sake, and for the sake of Jerusalem, the city which I have chosen. + +And the Lord raised up an enemy to Solomon, Ader the Idumaean, and Esrom son of Eliadae who +lived in Raama, +and Adadezer king of Suba his master; (and men gathered to him, and he was head of the conspiracy, and he seized on Damasec,) and they were adversaries to Israel all the days of Solomon: and Ader the Idumaean +was of the seed royal in Idumaea. + +And it happened, that while David was utterly destroying Edom, while Joab captain of the host was going to bury the dead, when they killed every male in Idumaea; + +(for Joab and all Israel abode there six months in Idumaea, until he utterly destroyed every male in Idumaea;) + +that Ader ran away, he and all the Idumaeans of the servants of his father with him; and they went into Egypt; and Ader +was then a little child. + +And there rise up men out of the city of Madiam, and they come to Pharan, and take men with them, and come to Pharao king of Egypt: and Ader went in to Pharao, and he gave him a house, and appointed him provision. + +And Ader found great favor in the sight of Pharao, and he gave him his wife's sister in marriage, the elder sister of Thekemina. + +And the sister of Thekemina bore to him, +even to Ader, Ganebath her son; and Thekemina brought him up in the midst of the sons of Pharao, and Ganebath was in the midst of the sons of Pharao. + +And Ader heard in Egypt that David slept with his fathers, and that Joab the captain of the host was dead; and Ader said to Pharao, Let me go, and I will return to my country. + +And Pharao said to Ader, +11:22 +Gr. +wherein are you lacking?. + What lack you with me? that behold! you seek to depart to your country? and Ader said to him, By all means let me go. + +So Ader returned to his country; this +is the mischief which Ader did, and he was a bitter enemy of Israel, and he reigned in the land of Edom. + +And Jeroboam the son of Nabat, the Ephrathite of Sarira, the son of a widow, +was servant of Solomon. + +And this +was the occasion +11:27 +Gr. +of his lifting. + of his lifting up +his hands against king Solomon: now king Solomon built the citadel, he completed the fortification of the city of David his father. + +And the man Jeroboam was very strong; and Solomon saw the young man that he was +11:28 +Gr. +a man of works. + active, and he set him over the levies of the house of Joseph. + +And it came to pass at that time, that Jeroboam went forth from Jerusalem, and Achia the Selonite the prophet found him in the way, and caused him to turn aside out of the way: and Achia was clad with a new garment, and they +11:29 +Gr. +both. + two +were alone in the field. + +And Achia laid hold of his new garment that was upon him, and tore it +into twelve pieces: + +and he said to Jeroboam, Take to yourself ten pieces, for thus says the Lord God of Israel, Behold, I rend the kingdom out of the hand of Solomon, and will give you ten +11:31 +Gr. +sceptres. See +Heb. + tribes. + +Yet he shall have two tribes, for my servant David's sake, and for the sake of Jerusalem, the city which I have chosen out of all the tribes of Israel. + +Because he forsook me, and sacrificed to Astarte the abomination of the Sidonians, and to Chamos, and to the idols of Moab, and to +11:33 +Or, +Moloch, +or +Milcom. + their king the +11:33 +Or, +provocation. + abomination of the children of Ammon, and he walked not in my ways, to do that which was right before me, as David his father +did. + +Howbeit I will not take the whole kingdom out of his hand, (for I will certainly resist him all the days of his life,) for David my servant's sake, whom I have chosen. + +But I will take the kingdom out of the hand of his son, and give you ten tribes. + +But to his son I will give the two +remaining tribes, that my servant David may have an establishment continually before me in Jerusalem, the city which I have chosen for myself to put my name there. + +And I will take you, and you shall reign +11:37 +Gr. +in all, +or +among all which, etc. + as your soul desires, and you shall be king over Israel. + +And it shall come to pass, if you will keep all the commandments that I shall give you, and will walk in my ways, and do that which is right before me, to keep my ordinances and my commandments, as David my servant did, that I will be with you, and will build you a sure house, as I built to David. + +And Solomon sought to kill Jeroboam: but he arose and fled into Egypt, to Susakim king of Egypt, and he was in Egypt until Solomon died. + +And the rest of the +11:41 +Gr. +words. + history of Solomon, and all that he did, and all his wisdom, behold are not these things written in the book of the +11:41 +Gr. +words +or +things. + life of Solomon? + +And the days +during which Solomon reigned in Jerusalem over all Israel +were forty years. + +And Solomon slept with his fathers, and they buried him in the city of David his father. And it came to pass when Jeroboam son of Nabat heard +of it, even while he was yet in Egypt as he fled from the face of Solomon and lived in Egypt, he straightway comes into his own city, into the land of Sarira in the mount of Ephraim. And king Solomon slept with his fathers, and Roboam his son reigned in his stead. + +

+ + +

And king Roboam goes to Sikima; for all Israel were coming to Sikima to make him king. + +And the people spoke to king Roboam, saying, Your father made our yoke heavy; + +but do you now lighten somewhat of the hard service of your father, and of his heavy yoke which he +12:4 +Gr. +gave. + put upon us, and we will serve you. + +And he said to them, Depart for three days, and return to me. And they departed. + +And the king referred +the matter to the elders, who stood before Solomon his father while he was yet living, saying, How do you⌃ advise +12:6 +Gr. +and I should answer a word, etc. + that I should answer this people? + +And they spoke to him, saying, If you will this day be a servant to this people, and will serve them, and will speak to them good words, then will they be your servants continually. + +But he forsook the counsel of the old men which they gave him, and consulted with the young men who were brought up with him, who stood in his presence. + +And he said to them, What counsel do you⌃ give? And what shall I answer to this people who speak to me, saying, Lighten somewhat of the yoke which your father has put upon us? + +And the young men who had been brought up with him, who stood before his face, spoke to him, saying, Thus shall you say to this people who have spoken to you, saying, Your father made our yoke heavy, and do you now lighten it from off us: thus shall say to them, My +12:10 +Gr. +littleness. + little +finger shall be thicker than my father's loins. + +And +12:11 +Gr. +now. + whereas my father did lade you with a heavy yoke, I also will add to your yoke: my father chastised you with whips, but I will chastise you with scorpions. + +And all Israel came to king Roboam on the third day, as the king spoke to them, saying, Return to me on the third day. + +And the king answered the people harshly; and Roboam forsook the counsel of the old men which they counselled him. + +And he spoke to them according to the counsel of the young men, saying, My father made your yoke heavy, and I will add to your yoke: my father chastised you with whips, but I will chastise you with scorpions. + +And the king listened not to the people, because the change was from the Lord, that he might establish his word which he spoke +12:15 +Gr. +by the hand of. + by Achia the Selonite concerning Jeroboam the son of Nabat. + +And all Israel saw that the king did not listen to them: and the people answered the king, saying, What portion have we in David? neither have we any inheritance in the son of Jessae. Depart, O Israel, to your tents: now feed your own house, David. So Israel departed to his tents. + +And the king sent Adoniram who was over the tribute; and they stoned him with stones, and he died: and king Roboam +12:18 +Gr. +prevented. + made haste to rise to flee to Jerusalem. + +So Israel +12:19 +Gr. +disowned +allegiance. + rebelled against the house of David until this day. + +And it came to pass when all Israel heard that Jeroboam had returned out of Egypt, that they sent and called him to the assembly, and they made him king over Israel: and none followed the house of David except the tribe of Juda and Benjamin only. + +And Roboam went into Jerusalem, and he assembled the congregation of Juda, and the tribe of Benjamin, one hundred and twenty thousand young men, warriors, to fight against the house of Israel, to recover the kingdom to Roboam the son of Solomon. + +And the word of the Lord came to Samaia the man of God, saying, + +Speak to Roboam the son of Solomon, king of Juda, and to all the house of Juda and Benjamin, and to the remnant of the people, saying, + +Thus says the Lord, You⌃ shall not go up, neither shall you⌃ fight with your brethren the sons of Israel: return each man to his own home; for this thing is from me; and they listened to the word of the Lord, and they ceased from going up, according to the word of the Lord. +

+

So king Solomon sleeps with his fathers, and is buried with his fathers in the city of David; and Roboam his son reigned in his stead in Jerusalem, being sixteen years old +12:24 +Gr. +in his reigning. + when he began to reign, and he reigned twelve years in Jerusalem: and his mother's name +was Naanan, daughter of Ana son of Naas king of the children of Ammon. And he did that which was evil in the sight of the Lord, and walked not in the way of David his father. +

+

And there was a man of mount Ephraim, a servant to Solomon, and his name was Jeroboam: and the name of his mother was Sarira, a harlot: and Solomon made him head of the levies of the house of Joseph: and he built for Solomon Sarira in mount Ephraim; and he had three hundred chariots of horses: he built the citadel with the levies of the house of Ephraim; he fortified the city of David, and aspired to the kingdom, And Solomon sought to kill him; and he was afraid, and escaped to Susakim king of Egypt, and was with him until Solomon died. +

+

And Jeroboam heard in Egypt that Solomon was dead: and he spoke in the ears of Susakim king of Egypt, saying, Let me go, and I will depart into my land: and Susakim said to him, Ask and request, and I will grant it you. And Susakim gave to Jeroboam Ano the oldest sister of Thekemina his wife: she was great among the daughters of the king, and she bore to Jerobaom Abia his son: and Jeroboam said to Susakim, Let me indeed go, and I will depart. +

+

And Jeroboam departed out of Egypt, and came into the land of Saria that was in mount Ephraim, and there the whole in mount Ephraim, and there the whole tribe of Ephraim assembles, and Jeroboam built a fortress there. +

+

And his young child was sick with a very severe sickness; and Jeroboam went to enquire concerning the child: and he said to Ano his wife, Arise, go, enquire of God concerning the child, whether he shall +12:24 +Gr. +live. + recover from his sickness. Now there was a man in Selom, an his name +was Achia: and he was sixty years old, and the word of the Lord was with him. And Jeroboam said to his wife, Arise, and take in your hand loaves for the man of God, and cakes for his children, and grapes, and a pot of honey. And the woman arose, and took in her hand bread, and two cakes, and grapes, and a pot of honey, for Achia: and the man +was old, and his +12:24 +Gr. +were blunted from seeing. + eyes were dim, so that he could not see. And she arose, up from Sarira and went; and it came to pass when she had come into the city to Achia the Selonite, that Achia said to his servant, Go out now to meet Ano the wife of Jeroboam, and you shall say to her, Come in, and stand not +still: for thus says the Lord, I send grievous tidings to you. And Ano went in to the man of God; and Achia said to her, Why have you brought me bread and grapes, and cakes, and a pot of honey? Thus says the Lord, Behold, you shall depart from me, and it shall come to pass when you have entered into the city, +even into Sarira, that your maidens shall come out to meet you, and shall say to you, The child is dead: for thus says the Lord, Behold, I will destroy every male of Jeroboam, and there shall be the dead of Jeroboam in the city, +them the dogs shall eat, and him that eat, and he shall lament for the child, saying, +Woe is me, Lord! For there has been found in him some good thing touching the Lord. +

+

And the woman departed, when she heard this: and it came to pass as she entered into Sarira, that the child died; and there came forth a wailing to meet +her. And Jeroboam went to Sikima in mount Ephraim, and assembled there the tribes of Israel; and Roboam the son of Solomon went up there. And the word of the Lord came to Samaias son of Enlami, saying, Take to yourself a new garment which has not gone into the water, and rend it into twelve pieces; and you shall five some to Jeroboam, and shall say to him, thus says the Lord, Take to yourself ten pieces to cover you: and Jeroboam took +them: and Samaias said, Thus says the Lord concerning the ten tribes of Israel. +

+

And the people said to Roboam the son of Solomon, Your father make his yoke heavy upon us, and made the meat of his table heavy; and now you shall lighten them upon us, and we will serve you. And Roboam said to the people, Wait three days, and I will return you an answer: and Roboam said, Bring in to me the elders, and I will take counsel with them what I shall answer to the people on the third day, So Roboam spoke in their ears, as the people sent to him to +say: and the elders of the people said, Thus the people have spoken to you. +

+

And Roboam +12:24 +Gr. +dispersed. + rejected their counsel, and it pleased him not: and he sent and brought in those who had been brought up with him; and he said to them, Thus and thus has the people sent to me to say: and they that had been brought up with him said, Thus shall you speak to the people saying, My +12:24 +Gr. +littleness. + little +finger shall be thicker than my father's loins; my father scourged you with whips, but I will rule you with scorpions. +

+

And the saying pleased Roboam, and he answered the people as the young men, they that were brought up with him, counselled him: and all the people spoke as one man, every one to his neighbor, and they cried out all together, saying, We have no part in David, nor inheritance in the son of Jessae: to they tents, O Israel, every one; for this man is not for a prince or a ruler over us. And all the people was dispersed from Sikima, and they departed every one to his tent: and Roboam strengthened him self and departed, and mounted his chariot, and entered into Jerusalem: and there follow him the whole tribe of Juda, and the whole tribe of Benjamin. And it came to pass at the beginning of the year, that Roboam gathered all the men of Juda and Benjamin, and went up to fight with Jeroboam at Sikima. And the word of the Lord came to Sameas the man of God, saying, Speak to Roboam king of Juda, and to all the house of Juda and Benjamin, and to the remnant of the people, saying, Thus says the Lord, You⌃ shall not go up, neither shall you⌃ fight with your brethren the sons of Israel: return every man to his house, for this thing is from me. And they listened to the word of the Lord, and forbore to go up, according to the word of the Lord. + +And Jeroboam built Sikima in mount Ephraim and lived in it, and went forth thence and built Phanuel. + +And Jeroboam said in his heart, Behold, now the kingdom will return to the house of David. + +If this people shall go up to offer sacrifice in the house of the Lord at Jerusalem, then the heart of the people will return to the Lord, and to their master, to Roboam king of Juda, and they will kill me. + +And the king took counsel, and went, and made two golden heifers, and said to the people, Let it suffice you +12:28 +Gr. +to go. + to have gone +hitherto to Jerusalem: behold your gods, O Israel, who brought you up out of the land of Egypt. + +And he put one in Bethel, and he +12:29 +Gr. +gave. + put the other in Dan. + +And this thing became a sin; and the people went before one as far as Dan, and left the house of the Lord. + +And he made houses on the high places, and made priests of any part of the people, who were not of the sons of Levi. + +And Jeroboam appointed a feast in the eighth month, on the fifteenth day of the month, according to the feast in the land of Juda; + +and went up to the altar which he made in Baethel to sacrifice to the heifers which he made, and he placed in Baethel the priests of the high places which he had made. And he went up to the altar which he had made, on the fifteenth day in the eighth month, at the feast which he devised out of his own heart; and he made a feast to the children of Israel, and went up to the altar to sacrifice. + +

+ + +

And behold, there came a man of God out of Juda by the word of the Lord to Baethel, and Jeroboam stood at the altar to sacrifice. + +And he cried against the altar by the word of the Lord, and said, O altar, altar, thus says the Lord, Behold, a son is +to be born to the house of David, +13:2 +Gr. +Josias the name to him. + Josias by name; and he shall offer upon you the priests of the high places, +even of them that sacrifice upon you, and +he shall burn men's bones upon you. + +And in that day one shall give a sign, saying, This +is the word which the Lord has spoken, saying, Behold, the altar is torn, and the fatness upon it shall be poured out. + +And it came to pass when king Jeroboam heard the words of the man of God who called on the altar that was in Baethel, that the king stretched forth his hand from the altar, saying, Take hold of him. And, behold, his hand, which he stretched forth against him, withered, and he could not draw it back to himself. + +And the altar was torn, and the fatness was poured out from the altar, according to the sign which the man of God gave by the word of the Lord. + +And king Jeroboam said to the man of God, Intreat the Lord your God, and let my hand +13:6 +Gr. +return to me. + be restored to me. And the man of God entreated the Lord, and he restored the king's hand to him, and it became as before. + +And the king said to the man of God, Enter with me into the house, and dine, and I will give you a gift. + +And the man of God said to the king, If you should give me the half of your house, I +13:8 +Gr. +will not. + would not go in with you, neither will I eat bread, neither will I drink water in this place; for thus the Lord charged me by +his word, saying, + +Eat no bread, and drink no water, and return not by the way by which you came. + +So he departed by another way, and returned not by the way by which he came to Baethel. + +And there lived an old prophet in Baethel; and his sons came and told him all the works that the man of God did on that day in Baethel, and the words which he spoke to the king: and +13:11 +Wide variation from the Hebrew. + they turned the face of their father. + +And their father spoke to them, saying, Which way went he? and his sons show him the way by which the man of God who came out of Juda went up. + +And he said to his sons, Saddle me the ass: and they saddled him the ass, and he mounted it, + +and went after the man of God, and found him sitting under an oak: and he said to him, Are you the man of God that came out of Juda? And he said to him, I +am. + +And he said to him, Come with me, and eat bread. + +And he said, I shall not by any means be able to return with you, neither will I eat bread, neither will I drink water in this place. + +For thus the Lord commanded me by word, saying, Eat not bread there, and drink not water, and return not there by the way by which you came. + +And he said to him, I also am a prophet as you +are; and an angel spoke to me by the word of the Lord, saying, Bring him back to you into your house, and let him eat bread and drink water: but he lied to him. + +And he brought him back, and he ate bread and drank water in his house. + +And it came to pass while they were sitting at the table, that the word of the Lord came to the prophet that brought him back; + +and he spoke to the man of God that came out of Juda, saying, Thus says the Lord, Because you have +13:21 +Gr. +embittered. + resisted the word of the Lord, and have not kept the commandment which the Lord your God commanded you, + +but have returned, and eaten bread and drunk water in the place of which he spoke to you, saying, You shall not eat bread, and shall not drink water; +therefore your body shall in nowise enter into the sepulchre of your fathers. + +And it came to pass after he had eaten bread and drunk water, that he saddled the ass for him, and he turned and departed. + +And a lion found him in the way, and killed him; and his body was cast out in the way, and the ass was standing by it, and the lion +also was standing by the body. + +And, behold, men +were passing by, and saw the carcass cast in the way, and the lion was standing near the carcass: and they went in and spoke +of it in the city where the old prophet lived. + +And +the prophet that turned him back out of the way heard, and said, This is the man of God who rebelled against the word of the Lord. +13:26 +Vat. +has no verse 27. +Alex. +reads as follows. + + + +And he spoke to his sons, saying, Saddle me the ass, and they saddled it. + + +And he went and found the body cast in the way, and the ass and the lion were standing by the body: and the lion had not devoured the body of the man of God, and had not torn the ass. + +And the prophet took up the body of the man of God, and laid it on his ass; and the prophet brought him back to his city, to bury him in his own tomb, + +and they bewailed him, +saying, Alas, brother. + +And it came to pass after he had lamented him, that he spoke to his sons, saying, +13:31 +Gr. +if I die. + Whenever I die, bury me in this tomb wherein the man of God is buried; lay me by his bones, that my bones may be preserved with his bones. + +For the word will surely come to pass which he spoke by the word of the Lord against the altar in Baethel, and against the high houses in Samaria. + +And after +13:33 +Gr. +this word. + this Jeroboam turned not from his sin, but he turned and made of part of the people priests of the +high places: whoever would, he consecrated him, and he became a priest for the high places. + +And this +13:34 +Gr. +word. + thing became sin to the house of Jeroboam, even to its destruction and its removal from the face of the earth. + +

+ + +

+14:1-20 +Verses. +1 to 20. The substance of these verses is found in the Vatican copy after +v. +24 +chap. +12. + + +

+

+14:21 +Brenton's footnote here says 'The first 20 verses of this chapter are supplied by the +Alex.' + And Roboam son of Solomon ruled over Juda. Roboam +14:21 +Gr. +a son of 41 years in his reigning. + was forty and one years old when he began to reign, and he reigned seventeen years in the city Jerusalem, which the Lord chose to put his name there out of all the tribes of Israel: and his mother's name +was Naama the Ammonitess. + +And Roboam did evil in the sight of the Lord; and he provoked him in all the things which their fathers did in their sins which they sinned. + +And they built for themselves high places, and pillars, and +planted groves on every high hill, and under every shady tree. + +And there was a conspiracy in the land, and they did +14:24 +Gr. +of. + according to all the abominations of the nations which the Lord removed +14:24 +Gr. +from the face of. + from before the children of Israel. + +And it came to pass in the fifth year +14:25 +Gr. +of Roboam reigning. + of the reign of Roboam, Susakim king of Egypt came up against Jerusalem; + +and took all the treasures of the house of the Lord, and the treasures of the king's house, and the golden spears which David took out of the hand of the sons of Adrazaar king of Suba, and brought them into Jerusalem, even all that he took, +and the +14:26 +Gr. +arms. + golden shields which Solomon had made, +14:26 +the remainder of this verse (here shown in italics) is not in +Heb. or +Alex. + +and carried them away into Egypt. + +And king Roboam made brazen shields instead of them; and the chiefs of the golden shields which Solomon had made, and the chiefs of the +14:27 +Gr. +runners by the side of. + body guard, who kept the gate of the house of the king, were placed in charge over them. + +And it came to pass when the king went into the house of the Lord, that the body guard took them up, and fixed them in the +14:28 +The +Heb. חא is retained in the +Gr. + chamber of the body guard. + +And the rest of the +14:29 +Gr. +words. + history of Roboam, and all that he did, behold, are they not written in the book of the chronicles +14:29 +Gr. +to +or +for. + of the kings of Juda? + +And there was war between Roboam and Jeroboam continually. + +And Roboam slept with his fathers, and was buried with his fathers in the city of David: and Abiu his son reigned in his stead. + +

+ + +

And in the eighteenth year of the reign of Jeroboam son of Nabat, Abiu son of Roboam reigns over Juda. + +And he reigned +15:2 +Alex. +16 years. + three years over Jerusalem: and his mother's name +was Maacha, daughter of Abessalom. + +And he walked in the sins of his father which he wrought in his presence, and his heart was not perfect with the Lord his God, as +was the heart of his father +David. + +Howbeit for David's sake the Lord gave him a remnant, that he might establish his children after him, and might establish Jerusalem. + +Forasmuch as David did that which was right in the sight of the Lord: he turned not from any thing that he commanded him all the days of his life. + +And the rest of the +15:7 +Gr. +words. + history of Abiu, and all that he did, behold, are not these written in the +15:7 +Lit. +the words of the days. + book of the chronicles of the kings of Juda? And there was war between Abiu and Jeroboam. + +And Abiu slept with his fathers in the twenty-fourth year of Jeroboam; and he is buried with his fathers in the city of David: And Asa his son reigns in his stead. + + +15:9 +Heb. and +Alex. +In the twentieth year. + In the four and twentieth year of Jeroboam king of Israel, Asa begins to reign over Juda. + +And he reigned forty-one +15:10 +Gr. +year. +Hebraism. years in Jerusalem: and his mother's name +was Ana, daughter of Abessalom. + +And Asa did that which was right in the sight of the Lord, as David his father. + +And he removed the +15:12 +Lit. +sacrifices. + sodomites out of the land, and abolished all the practices which his fathers +15:12 +Gr. +did, +or +wrought. + had kept up. + +And he removed Ana his mother from being queen, forasmuch as she +15:13 +Gr. +made. + gathered a meeting in her grove: and Asa cut down her retreats, and burnt them with fire in the brook of Kedron. + +But he removed not the high places; nevertheless the heart of Asa was perfect with the Lord all his days. + +And he brought in the pillars of his father, he even brought in his gold and silver pillars into the house of the Lord, and +his vessels. + +And there was war between Asa and Baasa king of Israel all their days. + +And Baasa king of Israel went up against Juda, and built Rama, so that no one should go out or come in for Asa king of Juda. + +And Asa took all the silver and the gold that was found in the treasures of the house of the Lord, and in the treasures of the king's house, and gave them into the hands of his servants; and king Asa sent them out to the son of Ader, the son of Taberema son of Azin king of Syria, who lived in Damascus, saying, + +Make a covenant between me and you, and between my father and your father: behold! I have sent forth to you gold and silver +for gifts: come, break your league with Baasa king of Israel, +15:19 +Gr. +and he shall. + that he may go up from me. + +And the son of Ader listened to king Asa, and sent the chiefs of his forces to the cities of Israel; and they struck Ain, Dan, and Abel of the house of Maacha, and all Chennereth, as far as the whole land of Nephthali. + +And it came to pass when Baasa heard it, that he left off building Rama, and returned to Thersa. + +And king Asa charged all Juda without exception: and they take up the stones of Rama and its timbers +with which Baasa was building; and king Asa built with them upon the +15:22 +Heb. Geba and Mizpeh. + whole hill of Benjamin, and the watch-tower. + +And the rest of the history of Asa, and all his +15:23 +Gr. +might. + mighty deeds which he wrought, and the cities which he built, behold, are not these written in the book of the chronicles +15:23 +Gr. +for. + of the kings of Juda? Nevertheless in the time of his old age he was diseased in his feet. + +And Asa slept with his fathers, and +15:24 +Gr. +is. + was buried with his fathers in the city of David his father: and Josaphat his son reigns in his stead. + +And Nabat son of Jeroboam reigns over Israel in the second year of Asa king of Juda, and he reigned two years in Israel. + +And he did that which was evil in the sight of the Lord, and walked in the way of his father, and in his sins wherein he caused Israel to sin. + +And Baasa son of Achia, +who was over the house of Belaan son of Achia, conspired against him, and struck him in Gabathon of the Philistines; for Nabat and all Israel were besieging Gabathon. + +And Baasa killed him in the third year of Asa son of Asa king of Juda; and reigned in his stead. + +And it came to pass when he reigned, that he struck the whole house of Jeroboam, and left +15:29 +Gr. +no breath. + none that breathed of Jeroboam, until he has destroyed him utterly, according to the word of the Lord which he spoke by his servant Achia the Selonite, + + +15:30 +For a similar use of περὶ, see Jer 7:22. + for the sins of Jeroboam, who led Israel into sin, even by his provocation wherewith he provoked the Lord God of Israel. + +And the rest of the history of Nabat, and all that he did, behold, are not these written in the book of the chronicles +15:31 +Gr. +for. + of the kings of Israel? +15:31 +Verse 32 is not in +Vat., +it is here read from +Alex. + + +And there was a war between Asa and Baasa king of Israel in all their days. + + +And in the third year of Asa king of Juda, Baasa the son of Achia begins to reign over Israel in Thersa, twenty and four years. + +And he did that which was evil in the sight of the Lord, and walked in the way of Jeroboam the son of Nabat, and in his sins, as he caused Israel to sin. + +

+ + +

And the word of the Lord came by the hand of Ju son of Anani to Baasa, +saying, + +Forasmuch as I lifted you up from the earth, and made you ruler over my people Israel; and you have walked in the way of Jeroboam, and have caused my people Israel to sin, to provoke me with their vanities; + +Behold, I raise up +enemies after Baasa, and after his house; and I will +16:3 +Gr. +give. + make your house as the house of Jeroboam son of Nabat. + +Him that +16:4 +Gr. +has died. + dies of Baasa in the city the dogs shall devour, and him that dies of his in the field the birds of the sky shall devour. + +Now the rest of the history of Baasa, and all that he did, and his mighty acts, behold, are not these written in the book of the chronicles of the kings of Israel? + +And Baasa slept with his fathers, and +16:6 +Gr. +he is buried. + they bury him in Thersa; and Ela his son reigns in his stead. + +And the Lord spoke by +16:7 +Gr. +the hand of Ju. + Ju the son of Anani against Baasa, and against his house, +even all the evil which he wrought before the Lord to provoke him to anger by the works of his hands, in being like the house of Jeroboam; and because he struck him. + + +16:8 +Heb. and +Alex. +'in the 26th year of Asa king of Juda, Ela,' etc. + And Ela son of Baasa reigned over Israel two years in Thersa. + +And Zambri, captain of half his cavalry, conspired against him, while he was in Thersa, drinking himself drunk in the house of Osa the steward at Thersa. + +And Zambri went in and struck him and killed him, +16:10 +Heb. and +Alex. +insert 'in the 27th year of Asa king of Juda.' + and reigned in his stead. + +And it came to pass when he reigned, when he sat upon his throne, + +that he struck all the house of Baasa, according to the word which the Lord spoke against the house of Baasa, and to Ju the prophet, + +for all the sins of Baasa and Ela his son, as he led Israel astray to sin, to provoke the Lord God of Israel with their vanities. + +And the rest of the +16:14 +Gr. +words. + deeds of Ela which he did, behold, are not these written in the book of the chronicles of the kings of Israel? + +And Zambri reigned in Thersa seven days: and the army of Israel +was encamped against Gabathon of the Philistines. + +And the people heard in the +16:16 +Or. +camp. + army, saying, Zambri has conspired and struck the king: and the people +16:16 +Gr. +in Israel. + of Israel made Ambri the captain of the host king in that day in the camp over Israel. + +And Ambri went up, and all Israel with him, out of Gabathon; and they besieged Thersa. + +And it came to pass when Zambri saw that his city was +16:18 +Or, +surprised. + taken, that he goes into the +16:18 +Gr. +the cave of the house. + inner chamber of the house of the king, and burnt the king's house over him, and died. + +Because of his sins which he committed, doing that which was evil in the sight of the Lord, so as to walk in the way of Jeroboam the son of Nabat, and in his sins wherein he caused Israel to sin. + +And the rest of the history of Zambri, and his conspiracies wherein he conspired, behold, are not these written in the book of the chronicles of the kings of Israel? + +Then the people of Israel divides; half the people goes after Thamni the son of Gonath to make him king; and half the people goes after Ambri. + +The people that followed Ambri overpowered the people that +16:22 +Gr. +was after. + followed Thamni son of Gonath; and Thamni died and Joram his brother at that time, and Ambri reigned after Thamni. + +In the thirty-first year of king Asa, Ambri +16:23 +Gr. +reigns. + begins to reign over Israel twelve years: he reigns six years in Thersa. + +And Ambri bought the mount Semeron of Semer the lord of the mountain for two talents of silver; and he built +upon the mountain, and they called the name of the mountain +on which he built, after the name of Semer the lord of the mount, Semeron. + +And Ambri did that which was evil in the sight of the Lord, and wrought wickedly beyond all that were before him. + +And he walked in all the way of Jeroboam the son of Nabat, and in his sins wherewith he caused Israel to sin, to provoke the Lord God of Israel by their vanities. + +And the rest of the acts of Ambri, and all that he did, and all his might, behold, +are not these things written in the book of the chronicles of the kings of Israel? + +And Ambri slept with his fathers, and is buried in Samaria; and Achaab his son reigns in his stead. +

+

And in the eleventh +16:28 +The word ἔτει is redundant. + year of Ambri Josaphat the son of Asa reigns, +being thirty-five years old +16:28 +Gr. +in his kingdom. + in the beginning of his reign, and he reigned twenty-five years in Jerusalem: and his mother's name +was Gazuba, daughter of Seli. And he walked in the way of Asa his father, and turned not from it, +even from doing right in the eyes of the Lord: only they removed not +any of the high places; they sacrificed and burnt incense on the high places. Now the engagements which Josaphat made with the king of Israel, and all his +16:28 +Gr. +might. + mighty deeds which he performed, and the enemies whom he fought against, behold, +are not these written in the book of the chronicles of the kings of Juda? and the remains of the prostitution +16:28 +See 1 Kings 22. 46-50. +A.V. which they practiced in the days of Asa his father, he removed out of the land: and there was no king in Syria, +but +16:28 +Heb. כצב praefectus. + a deputy. +

+

And king Josaphat made a ship +16:28 +Or, +for. + at Tharsis to go to Sophir for gold: but it went not, for the ship was broken at Gasion Gaber. Then the king of Israel said to Josaphat, +16:28 +Or, +let me. + I will send forth your servants and my servants in the ship: but Josaphat would not. And Josaphat slept with his fathers, and is buried with his fathers in the city of David: and Joram his son reigned in his stead. + +In the second year of Josaphat king of Juda, Achaab son of Ambri reigned over Israel in Samaria twenty-two years. + +And Achaab did that which was evil in the sight of the Lord, and did more wickedly than all that were before him. + +And it was not enough for him to walk in the sins of Jeroboam the son of Nabat, but he took as wife, Jezabel the daughter of Jethebaal king of the Sidonians; and he went and served Baal, and worshipped him. + +And he set up an altar to Baal, in the house of his +16:32 +Or, +provocations, etc. + abominations, which he built in Samaria. + +And Achaab made a grove; and Achaab did yet more abominably, to provoke the Lord God of Israel, and +to sin against his own life so that he should be destroyed: he did evil above all the kings of Israel that were before him. + +And in his days Achiel the Baethelite built Jericho: he laid the foundation of it in Abiron his firstborn, and he set up the doors of it in Segub his younger son, according to the word of the Lord which he spoke by Joshua the son of Naue. + +

+ + +

And Eliu the prophet, the Thesbite of Thesbae of Galaad, said to Achaab, As the Lord God of hosts, the God of Israel, lives, before whom I stand, +17:1 +Gr. +if there shall be, etc. + there shall not be these years dew nor rain, except by the +17:1 +Gr. +mouth of my word. + word of my mouth. + +And the word of the Lord came to Eliu, +saying, + +Depart hence eastward, and hide you +17:3 +Gr. +in. + by the brook of Chorrath, that is before Jordan. + +And it shall be +that you shall drink water of the brook, and I will charge the ravens to feed you there. + +And Eliu did according to the word of the Lord, and he sat by the brook of Chorrath before Jordan. + +And the ravens brought him loaves in the morning, and flesh in the evening and he drank water of the brook. + +And it came to pass after +17:7 +Gr. +days. + some time, that the brook was dried up, because there had been no rain upon the earth. + +And the word of the Lord came to Eliu, +saying, + +Arise, and go to Sarepta of the Sidonian +land: behold, I have there commanded a widow-woman to maintain you. + +And he arose and went to Sarepta, and came to the gate of the city: and, behold, a widow-woman was there gathering sticks; and Eliu cried after her, and said to her, +17:10 +Gr. +take etc. into. + Fetch me, I pray you, a little water in a vessel, +17:10 +Gr. +and I will etc. + that I may drink. + +And she went to fetch it; and Eliu cried after her, and said, Bring me, I pray you, a morsel of the bread that is in your hand. + +And the woman said, +As the Lord your God lives, I have not a cake, but only a handful of meal in the pitcher, and a little oil in a cruse, and, behold, I am going to gather two sticks, and I shall go in and dress it for myself and my children, and we shall eat it and die. + +And Eliu said to her, Be of good courage, go in and do according to your word: but make me thereof a little cake, and you shall bring +it out to me first, and you shall make +some for yourself and your children last. + +For thus says the Lord, The pitcher of meal shall not fail, and the cruse of oil shall not +17:14 +Or, +be diminished, or fail of, etc. + diminish, until the day that the Lord gives rain upon the earth. + +And the woman went and did +so, and did eat, she, and he, and her children. + +And the pitcher of meal failed not, and the cruse of oil was not diminished, according to the word of the Lord which he spoke by the hand of Eliu. + +And it came to pass afterward, that the son of the woman the mistress of the house was sick; and his sickness was very severe, until there was no breath left in him. + +And she said to Eliu, What have I to do with you, O man of God? have you come in to me to bring my sins to remembrance, and to kill my son? + +And Eliu said to the woman, Give me your son. And he took him out of her bosom, and took him up to the chamber in which he himself lodged, and +17:19 +Gr. +caused him to sleep. + laid him on the bed. + +And Eliu cried aloud, and said, Alas, O Lord, the witness of the widow with whom I sojourn, you have wrought evil +for her in slaying her son. + +And he breathed on the child thrice, and called on the Lord, and said, O Lord my God, let, I pray you, the soul of this child return to him. + +And it was so, and the child cried out, + +and he brought him down from the upper chamber into the house, and gave him to his mother; and Eliu said, See, your son lives. + +And the woman said to Eliu, Behold, I know that you +are a man of God, and the word of the Lord in your mouth +is true. + +

+ + +

And it came to pass after many days, that the word of the Lord came to Eliu in the third year, saying, Go, and appear before Achaab, and I will bring rain upon the face of the earth. + +And Eliu went to appear before Achaab: and the famine +was severe in Samaria. + +And Achaab called Abdiu the steward. Now Abdiu feared the Lord greatly. + +And it came to pass when Jezabel struck the prophets of the Lord, that Abdiu took one hundred prophets, and hid them by fifty in a cave, and fed them with bread and water. + +And Achaab said to Abdiu, Come, and let us go through the land, and to the fountains of water, and to the brooks, if by any means we may find grass, and may save the horses and mules, and so they will not perish from the tents. + +And they made a division of the way between them to pass through it: Achaab went one way, and Abdiu went by another way alone. + +And Abdiu was alone in the way; and Eliu came alone to meet him: and Abdiu hasted, and fell upon his face, and said, My lord Eliu, +18:7 +Gr. +if you are, etc. + are you +indeed he? + +And Eliu said to him, I +am: go say to your master, Behold, Eliu +is here. + +And Abdiu said, What sin have I committed, that you give your servant into the hand of Achaab to kill me? + + +As the Lord your God lives, there is not a nation or kingdom, whither my lord has not sent to seek you; and if they said, He is not +here, then has he set fire to the kingdom and its territories, because he has not found you. + +And now you say, Go, tell your lord, Behold, Eliu +is here. + +And it shall come to pass when I shall have departed from you, that the Spirit of the Lord shall carry you to a land which I know not, and I shall go in to tell the matter to Achaab, and he will not find you and will kill me: yet your servant fears the Lord from his youth. + +Has it not been told to you my lord, what I did when Jezabel killed the prophets of the Lord, that I hid one hundred men of the prophets of the Lord, by fifty in a cave, and fed them with bread and water? + +And now you say to me, Go, say to your master, Behold, Eliu +is here: and he shall kill me. + +And Eliu said, +As the Lord of Hosts before whom I stand lives, today I will appear before him. + +And Abdiu went to meet Achaab, and told him: and Achaab +18:16 +Gr. +ran forth. + hasted forth, and went to meet Eliu. + +And it came to pass when Achaab saw Eliu, that Achaab said to Eliu, Are you he that perverts Israel? + +And Eliu said, I do not pervert Israel; but it is you and your father's house, in that you⌃ forsake the Lord your God, and you have gone after Baalim. + +And now send, gather to me all Israel to mount Carmel, and the prophets of +18:19 +Heb. Baal. See Jer. 11:13 Hos. 9:10. + shame four hundred and fifty, and the prophets of the groves four hundred, that eat +at Jezabel's table. + +And Achaab sent to all Israel, and gathered all the prophets to mount Carmel. + +And Eliu drew near to them all: and Eliu said to them, How long will you⌃ halt on both +18:21 +Gr. +the hams, from γόνν, the knee. + feet? if the Lord be God, follow him; but if Baal, follow him. And the people answered not a word. + +And Eliu said to the people, I am left, the +18:22 +Or, +quite alone. + only one prophet of the Lord; and the prophets of Baal +are four hundred and fifty men, and the prophets of the groves four hundred. + +Let them give us two oxen, and let them choose one for themselves, and cut it in pieces, and lay it on the wood, and put no fire +on the wood: and I will dress the other bullock, and put on no fire. + +And do you⌃ call loudly on the name of your gods, and I will call on the name of the Lord my God, and it shall come to pass that the God who shall answer by fire, he +is God. And all the people answered and said, The word which you have spoken +is good. + +And Eliu said to the prophets of shame, Choose to yourselves one calf, and dress it first, for you⌃ +are many; and call you⌃ on the name of your god; but apply no fire. + +And they took the calf and dressed it, and called on the name of Baal from morning till noon, and said, hear us, O Baal, hear us. And there was no voice, neither was there hearing, and they ran up and down on the altar which they +had made. + +And it was noon, and Eliu the Thesbite mocked them, and said, Call with a loud voice, for he is a god; for he is meditating, or else perhaps he is +18:27 +Or, +preparing an answer. + engaged in business, or perhaps he is asleep, and +18:27 +Gr. +will awake or arise. + is to be awaked. + +And they cried with a loud voice, and cut themselves according to their custom with knives and lancets until the +18:28 +Gr. +shedding of blood upon them. + blood gushed out upon them. + +And they prophesied until the evening came; and it came to pass as it was the time of the +18:29 +Gr. +the sacrifice going up. + offering of the sacrifice, that Eliu the Thesbite spoke to the prophets of the abominations, saying, Stand by for the present, and I will offer my sacrifice. And they stood aside and departed. + +And Eliu said to the people, Come near to me. And all the people came near to him. + +And Eliu took twelve stones, according to the number of the tribes of Israel, as the Lord spoke to him, saying, Israel shall be your name. + +And he built up the stones in the name of the Lord, and +18:32 +Gr. +healed. + repaired the altar that had been broken down; and he made a +18:32 +Gr. +sea. + trench that would hold two measures of seed round about the altar. + +And he piled the cleft wood on the altar which he +had made, and divided the whole burnt offering, and laid +it on the wood, and laid +it in order on the altar, and said, Fetch me four pitchers of water, and pour +it on the whole burnt offering, and on the wood. And they did so. + +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. + +And the water ran round about the altar, and they filled the trench with water. + +And Eliu cried aloud to the heaven, and said, Lord God of Abraam, and Isaac, and Israel, answer me, O Lord, +18:36 +Or, +listen to me. + answer me this day by fire, and let all this people know that you are the Lord, the God of Israel, and I +am your servant, and for your sake I have wrought these works. + +Hear me, O Lord, hear me, and let this people know that you are the Lord God, and you have turned back the heart of this people. + +Then fire fell from the Lord out of heaven, and devoured the whole burnt offerings, and the wood and the water that was in the trench, and the fire licked up the stones and the earth. + +And all the people fell upon their faces, and said, Truly the Lord +is God; he +is God. + +And Eliu said to the people, Take the prophets of Baal; let not one of them escape. And they took them; and Eliu brings them down to the brook Kisson, and he killed them there. + +And Eliu said to Achaab, Go up, and eat and drink, for +there is a sound of the +18:41 +Gr. +feet of rain. + coming of rain. + +And Achaab went up to eat and to drink; and Eliu went up to Carmel, and stooped to the ground, and put his face between his knees, + +and said to his servant, Go up, and look toward the sea. And the servant looked, and said, There is nothing: and Eliu said, Do you then go again seven times. + +And the servant went again seven times: and it came to pass at the seventh time, that, behold, a little cloud like the sole of a man's foot +18:44 +Gr. +bringing. + brought water; and he said, Go up, and say to Achaab, make ready your chariot, and go down, lest the rain overtake you. + +And it came to pass in the meanwhile, that the heaven grew black with clouds and wind, and there was a great rain. And Achaab wept, and went to Jezrael. + +And the hand of the Lord +was upon Eliu, and he girded up his loins, and ran before Achaab to Jezrael. + +

+ + +

And Achaab told Jezabel his wife all that Eliu +had done, and how he +had slain the prophets with the sword. + +And Jezabel sent to Eliu, and said, If you are Eliu and I am Jezabel, God +19:2 +Lit. +do these things to me, and add these things. + do so to me, and more also, if I do not make your life by this time to-morrow as the life of one of them. + +And Eliu feared, and rose, and departed for his life: and he comes to Bersabee +to the land of Juda, and he left his servant there. + +And he himself went a day's journey in the wilderness, and came and sat under a juniper tree; and asked concerning his life that he might die, and said, Let it be enough now, O Lord, take, I pray you, my life from me; for I am no better than my fathers. + +And he lay down and slept there under a tree; and behold, some one touched him, and said to him, Arise and eat. + +And Eliu looked, and, behold, at his head there was a cake of meal and a cruse of water; and he arose, and ate and drank, and returned and lay down. + +And the angel of the Lord returned again, and touched him, and said to him, Arise, and eat, for the journey +is far from you. + +And he arose, and ate and drank, and went in the strength of that meat forty days and forty nights to mount Choreb. + +And he entered there into a cave, and rested there; and, behold, the word of the Lord +came to him, and he said, What +do you here, Eliu? + +And Eliu said, +19:10 +Rom 11:3 + I have been very jealous for the Lord Almighty, because the children of Israel have forsaken you: they have digged down your altars, and have slain your prophets with the sword; and I only am left alone, and they seek my life to take it. + +And he said, You shall go forth to-morrow, and shall stand before the Lord in the mount; behold, the Lord will pass by. And, behold, a great +and strong wind rending the mountains, and crushing 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: + +and after the earthquake a fire; +but the Lord +was not in the fire: and after the fire the voice of a gentle breeze. + +And it came to pass when Eliu heard, that he wrapped his face in his mantle, and went forth and stood in the cave: and, behold, a voice +came to him and said, What +do you here, Eliu? + +And Eliu said, I have been very jealous for the Lord Almighty; for the children of Israel have forsaken your covenant, and they have overthrown your altars, and have slain your prophets with the sword! and I am left entirely alone, and they seek my life to take it. + +And the Lord said to him, Go, return, and you shall come into the way of the wilderness of Damascus: and you shall go and anoint Azael to be king over Syria. + +And Ju the son of Namessi shall you anoint to be king over Israel; and Elisaie the son of Saphat shall you anoint to be prophet in your room. + +And it shall come to pass, that him that escapes from the sword of Azael, Ju shall kill; and him that escapes from the sword of Ju, Elisaie shall kill. + +And you shall leave in Israel seven thousand men, all the knees which had not bowed +19:18 +Gr. +the knee. + themselves to Baal, and every mouth which had not worshipped him. + +And he departed thence, and finds Elisaie the son of Saphat, and he was plowing with oxen; +there were twelve yoke before him, and he +19:19 +Gr. +in. + with the twelve, and he +19:19 +Gr. +departed. + passed by to him, and cast his mantle upon him. + +And Elisaie left the cattle, and ran after Eliu and said, I will kiss my father, and follow after you. And Eliu said, Return, for I have done +a work for you. + +And he returned +19:21 +Gr. +from behind him. + from following him, and took +19:21 +Gr. +the yokes. + a yoke of oxen, and killed them, and boiled them with the instruments of the oxen, and gave to the people, and they ate: and he arose, and went after Eliu, and ministered to him. + +

+ + +

And Nabuthai the Jezraelite had a vineyard, near the threshing floor of Achaab king of Samaria. + +And Achaab spoke to Nabuthai, saying, Give me your vineyard, and I will have it for a garden of herbs, for it +is near my house: and I will give you another vineyard better than it; or if +20:2 +Gr. +it is pleasing before you. + it please you, I will give you money, the price of this your vineyard, and I will have it for a garden of herbs. + +And Nabuthai said to Achaab, My God forbid me that I should give you the inheritance of my fathers. + +And the spirit of Achaab was troubled, and he lay down upon his bed, and covered his face, and ate no bread. + +And Jezabel his wife went in to him, and spoke to him, +saying, Why +is your spirit troubled, and +why do you eat no bread? + +And he said to her, Because I spoke to Nabuthai the Jezraelite, saying, Give me your vineyard for money; or if you will, I will give you another vineyard for it: and he said, I will not give you the inheritance of my fathers. + +And Jezabel his wife said to him, Do you now thus act the king over Israel? arise, and eat bread, and be +20:7 +Or, +like yourself. + your own +master, and I will give you the vineyard of Nabuthai the Jezraelite. + +And she wrote a +20:8 +Gr. +book. + letter in the name of Achaab, and sealed it with his seal, and sent the letter to the elders, and to the +20:8 +Possibly nobles is here meant. + freemen who lived with Nabuthai. + +And +20:9 +Gr. +had been written. + it was written in the letters, saying, Keep a fast, and set Naboth in a chief place among the people. + +And set two men, sons of transgressors, before him, and let them testify against him, saying, He +20:10 +See +Prof. Lee +on the word ברך in Job 2:9 +Heb. Gram. p.92. + blessed God and the king: and let them lead him forth, and stone him, and let them die. + +And the men of his city, the elders, and the nobles who lived in his city, did as Jezabel sent to them, and as it had been written in the letters which she sent to them. + +And they +20:12 +Gr. +called. + proclaimed a fast, and set Nebuthai in a chief place among the people. + +And two men, sons of transgressors, came in, and sat opposite him, and bore witness against him, saying, You have blessed God and the king. And they led him forth out of the city, and stoned him with stones, and he died. + +And they sent to Jezabel, saying, Nabuthai is stoned, and is dead. + +And it came to pass, when Jezabel heard +it, that she said to Achaab, Arise, +20:15 +Gr. +inherit. + take possession of the vineyard of Nabuthai the Jezraelite, who +20:15 +Gr. +sold it not. + would not sell it to you: for Nebuthai is not alive, for he is dead. + +And it came to pass, when Achaab heard that Nabuthai the Jezraelite was dead, that he tore his garments, and put on sackcloth. And it came to pass afterward, that Achaab arose and went down to the vineyard of Nabuthai the Jezraelite, +20:16 +Gr. +to inherit it. + to take possession of it. + +And the Lord spoke to Eliu the Thesbite, saying, + +Arise, and go down to meet Achaab king of Israel, who is in Samaria, for he +is in the vineyard of Nabuthai, for he has gone down there to take possession of it. + +And you shall speak to him, saying, +20:19 +Gr. +these things. + Thus says the Lord, Forasmuch as you have slain and taken possession, therefore thus says the Lord, In every place where the swine and the dogs have licked the blood of Nabuthai, there shall the dogs lick your blood; and the harlots shall wash themselves in your blood. + +And Achaab said to Eliu, Have you found me, my enemy? and he said, I have found +you: because you have +20:20 +Gr. +foolishly, +or +in vain. + wickedly sold yourself to work evil in the sight of the Lord, to provoke him to anger; + +behold, I bring +20:21 +Gr. +evils. + evil upon you: and I will kindle a fire after you, and I will utterly destroy every male of Achaab, and him that is shut up and him that is left in Israel. + +And I will +20:22 +Gr. +give. + make your house as the house of Jeroboam the son of Nabat, and as the house of Baasa son of Achia, because of the provocations wherewith you have provoked +me, and caused Israel to sin. + +And the Lord spoke +20:23 +Or, +to Jezabel. + of Jezabel, saying, The dogs shall devour her +20:23 +Or, +by. + within the fortification of Jezrael. + +Him that is dead of Achaab in the city shall the dogs eat, and him that is dead of him in the field shall the birds of the sky eat. + +But Achaab +did wickedly, +20:25 +Gr. +who sold, etc. + in that he sold himself to do that which was evil in the sight of the Lord, as his wife Jezabel led him astray. + +And he did very abominably in following after the abominations, according to all that the Amorite did, whom the Lord utterly destroyed from before the children of Israel. + +And because of the word, Achaab was pierced with sorrow +20:27 +Gr. +the face, as it were, of the Lord. + before the Lord, and he both went weeping, and tore his garment, and girded sackcloth upon his body, and fasted; he put on sackcloth also in the day that he struck Nabuthai the Jezraelite, and went his way. + +And the word of the Lord came by the hand of his servant Eliu concerning Achaab, and the Lord said, + +Have you seen how Achaab has been pricked +to the heart before me? I will not bring on the evil in his days, but in his son's days will I bring on the evil. + +

+ + +

And the son of Ader gathered all his forces, and went up and besieged Samaria, +he and thirty-two kings with him, and all +his horse and +21:1 +Gr. +chariot. + chariots: and they went up and besieged Samaria, and fought against it. + +And he sent into the city to Achaab king of Israel, and said to him, Thus says the son of Ader, + +Your silver and your gold are mine, and your wives and your children are mine. + +And the king of Israel answered and said, As you have said, my lord, O king, I am yours, and all mine +also. + +And the messengers came again, and said, Thus says the son of Ader, I sent to you, saying, You shall give me your silver and your gold, and your wives and your children. + +For at this time to-morrow I will send my servants to you, and they shall search your house, and the houses of your servants, and it shall be that all the desirable objects of their eyes on which they shall lay their hands, they shall even take +them. + +And the king of Israel called all the elders of the land, and said, Take notice now and consider, that this man seeks mischief: for he has sent to me concerning my wives, and concerning my sons, and concerning my daughters: I have not kept back from him my silver and my gold. + +And the elders and all the people said to him, Listen not, and consent not. + +And he said to the messengers of the son of Ader, Say to your master, All things that you have sent to your servant about at first I will do; but this thing I shall not be able to do. And the men departed, and carried back the answer to him. + +And the son of Ader sent to him, saying, So do God to me, and more also, if the dust of Samaria shall suffice for +21:10 +The LXX. read שועליס for שעליס. + foxes to all the people, even my infantry. + +And the king of Israel answered and said, Let it be sufficient; let not the humpbacked boast as he that is upright. + +And it came to pass when he returned him this answer, he and all the kings with him were drinking in tents: and he said to his servants, +21:12 +Or, +build a mound or fortification. + Form a trench. And they made a trench against the city. + +And, behold, a prophet came to Achaab king of Israel, and said, Thus says the Lord, Have you seen this great multitude? behold, I give it this day into your hands; and you shall know that I +am the Lord. + +And Achaab said, Whereby? And he said, Thus says the Lord, by the young men of the heads of the districts. And Achaab said, Who shall +21:14 +Gr. +engage in the war. + begin the battle? and he said, You. + +And Achaab +21:15 +Or, +reviewed. + numbered the young men the heads of the districts, and they were two hundred and thirty: and afterwards he numbered the people, +even every +21:15 +Gr. +son of strength. + man fit for war, seven thousand. + +And he went forth at noon, and the son of Ader was drinking +and getting drunk in Socchoth, he and the kings, +even thirty and two kings, his allies. + +And the young men the heads of the districts went forth +21:17 +Gr. +among the first. + first; and they send and report to the king of Syria, saying, There are men come forth out of Samaria. + +And he said to them, If they come forth peaceably, +21:18 +Gr. +infin. for imper. + take them alive; and if they come forth to war, take them alive: + +and let not the young men the heads of the districts go forth of the city. And the force that was behind them + +struck each one the man next to him; and each one a second time struck the man next to him: and Syria fled, and Israel pursued them; and the son of Ader, +even the king of Syria, escapes on the horse of a horseman. + +And the king of Israel went forth, and took all the horses and the chariots, and struck +the enemy with a great slaughter in Syria. + +And the prophet came to the king of Israel, and said, Strengthen yourself, and observe, and see what you shall do; for at the return of the year the son of Ader king of Syria comes up against you. + +And the servants of the king of Syria, even they said, The God of Israel +is a God of mountains, and not a God of valleys; therefore has he prevailed against us: but if we should fight against them in the plain, verily we shall prevail against them. + +And do you this thing: Send away the kings, each one to his place, and set princes in their stead. + +And we will +21:25 +Gr. +change. + give you +another army according to the army that was destroyed, and cavalry according to the cavalry, and chariots according to the chariots, and we will fight against them in the plain, and we shall prevail against them. And he listened to +21:25 +Gr. +his. + their voice, and did so. + +And it came to pass at the return of the year, that the son of Ader reviewed Syria, and went up to Apheca to war against Israel. + +And the children of Israel were numbered, and came to meet them: and Israel encamped before them as two little flocks of goats, but Syria filled the land. + +And there came the man of God, and said to the king of Israel, Thus says the Lord, Because Syria has said, The Lord God of Israel +is a God of the hills, and he +is not a God of the valleys, therefore will I give this great army into your hand, and you shall know that I +am the Lord. + +And they encamp one over against the other before +21:29 +Gr. +these. + them seven days. And it came to pass on the seventh day that the battle drew on, and Israel struck Syria, +even one hundred thousand footmen in one day. + +And the rest fled to Apheca, into the city; and the wall fell upon twenty-seven thousand men that were left: and the son of Ader fled, and entered into +21:30 +Gr. +the house of the chamber. + an inner chamber, into a closet. + +And he said to his servants, I know that the kings of Israel are +21:31 +Gr. +kings of mercy. + merciful kings: let us now put sackcloth upon our loins, and ropes upon our heads, and let us go forth to the king of Israel, if by any means he will save our souls alive. + +So they girded sackcloth upon their loins, and put ropes upon their heads, and said to the king of Israel, Your servant the son of Ader says, Let our +21:32 +Gr. +soul. + souls live, I pray you. And he said, Does he yet live? He is my brother. + +And the men divined, and offered +21:33 +Or, +poured libations, but some read ἔσπευσαν, which answers exactly to the +Heb. + drink-offerings; and they caught the word out of his mouth, and said, Your brother the son of Ader. And he said, Go you⌃ in and fetch him. And the son of Ader went out to him, and they cause him to go up to him +21:33 +Gr. +upon +or +to. + into the chariot. + +And he said to him, The cities which my father took from your father I will restore to you; and you shall make streets for yourself in Damascus, as my father made streets in Samaria; and I will let you go with a covenant. And he made a covenant with him, and let him go. + +And a certain man of the sons of the prophets said to his neighbor by the word of the Lord, Strike me, I pray, And the man would not strike him. + +And he said to him, Because you have not listened to the voice of the Lord, therefore, behold, as you depart from me, a lion shall strike you: and he departed from him, and a lion found him, and struck him. + +And he finds another man, and says, Strike me, I pray you. And the man struck him, and in striking wounded +him. + +And the prophet went and stood before the king of Israel by the way, and bound his eyes with a bandage. + +And it came to pass as the king passed by, that he cried aloud to the king, and said, Your servant went out to war, and, behold, a man brought +another man to me, and said to me, Keep his man; and if he should by any means escape, then your +21:39 +Gr. +soul. + life shall go for his life, or you shall pay a talent of silver. + +And it came to pass, that your servant looked round this way and that way, and +21:40 +Gr. +he was not. + the man was gone. And the king of Israel said to him, Behold, you have also +21:40 +Gr. +slain. + destroyed snares +set for me. + +And he hasted, and took away the bandage from his eyes; and the king of Israel recognized him, that he was one of the prophets. + +And he said to him, Thus says the Lord, Because you have suffered to escape out of your hand a man appointed to destruction, therefore your life shall go for his life, and your people for his people. + +And the king of Israel departed confounded and discouraged, and came to Samaria. + +

+ + +

And he rested three years, and there was no war between Syria and Israel. + +And it came to pass in the third year, that Josaphat king of Juda went down to the king of Israel. + +And the king of Israel said to his servants, Know you⌃ that Remmath Galaad +is ours, and we are +22:3 +Gr. +silent. + slow to take it out of the hand of the king of Syria? + +And the king of Israel said to Josaphat, Will you go up with us to Remmath Galaad to battle? + +And Josaphat said, As I +am, so +are you also; as my people, +so is your people; as my horses, +so are your horses. And Josaphat king of Juda said to the king of Israel, Enquire, I pray you, of the Lord today. + +And the king of Israel gathered all the prophets together, about four hundred men; and the king said to them, Shall I go up to Remmath Galaad to battle, or shall I forbear? and they said, Go up, and the Lord will surely give +it into the hands of the king. + +And Josaphat said to the king of Israel, Is there not here a prophet of the Lord, +22:7 +Gr. +and we will enquire. + that we may enquire of the Lord by him? + +And the king of Israel said to Josaphat, There is one man here +for us to enquire of the Lord +22:8 +Gr. +by him. + by; but I hate him, for he does not speak good of me, but only evil; Michaias son of Jemblaa. And Josaphat king of Juda said, Let not the king say so. + +And the king of Israel called a eunuch and said, +Bring hither quickly Michaias son of Jemblaa. + +And the king of Israel and Josaphat king of Juda +22:10 +See +Heb. + sat, each on his throne, armed in the gates of Samaria; and all the prophets prophesied before them. + +And Sedekias son of Chanaan made for himself iron horns, and said, Thus says the Lord, With these you shall +22:11 +Gr. +gore. + push Syria, until it be consumed. + +And all the prophets prophesied in like manner, saying, Go up to Remmath Galaad, and +the thing shall prosper, and the Lord shall deliver it and the king of Syria into your hands. + +And the messenger that went to call Michaias spoke to him, saying, Behold now, all the prophets speak with one mouth good concerning the king, let now your words be like the words of one of them, and speak good things. + +And Michaias said, +As the Lord lives, whatever the Lord shall say to me, +22:14 +Gr. +these things. + that will I speak. + +And he came to the king: and the king said to him, Michaias, shall I go up to Remmath Galaad to battle, or shall I forbear? and he said, Go up, and the Lord shall +22:15 +Gr. +prosper the work, etc. + deliver it into the hand of the king. + +And the king said to him, How often shall I adjure you, that you speak to me truth in the name of the Lord? + +And he said, Not so. I saw all Israel scattered on the mountains as a flock +22:17 +Gr. +which has no shepherd. + without a shepherd: and the Lord said, +Is not God lord of these? let each one return to his home in peace. + +And the king of Israel said to Josaphat king of Juda, Did I not say to you that this man does not prophesy good to me, for +he speaks nothing but evil? + +And Michaias said, Not so, +it is not I: hear the word of the Lord; +it is not so. I saw the God of Israel sitting on his throne, and all the host of heaven stood about him on his right hand and on his left. + +And the Lord said, Who will deceive Achaab king of Israel, +22:20 +Gr. +and he shall, etc. + that he may go up and fall in Remmath Galaad? and one spoke one way, and another another way. + +And there came forth a spirit and stood before the Lord, and said, I will deceive him. + +And the Lord said to him, Whereby? And he said, I will go forth, and will be a false spirit in the mouth of all his prophets. And he said, You shall deceive him, yes, and shall prevail: go forth, and do so. + +And now, behold, the Lord has put a false spirit in the mouth of all these your prophets, and the Lord has spoken evil against you. + +And Sedekias the son of Chanaan came near and struck Michaias on the cheek, and said, What sort of a spirit of the Lord +has spoken in you? + +And Michaias said, Behold, you shall see in that day, when you shall go into an innermost chamber to hide yourself there. + +And the king of Israel said, Take Michaias, and convey him away to Semer the +22:26 +Gr. +king. + keeper of the city; + +and tell Joas the king's son to put this +fellow in prison, and to feed him with bread of affliction and water of affliction until I return in peace. + +And Michaias said, If you return at all in peace, the Lord has not spoken by me. + +So the king of Israel went up, and Josaphat king of Juda with him to Remmath Galaad. + +And the king of Israel said to Josaphat king of Juda, I will disguise myself, and enter into the battle, and do you put on my raiment. So the king of Israel disguised himself, and went into the battle. + +And the king of Syria had charged the thirty-two captains of his chariots, saying, Fight not +against small +22:31 +Gr. +and. + or great, but against the king of Israel only. + +And it came to pass, when the captains of the chariots saw Josaphat king of Juda, that they said, this seems +to be the king of Israel. And they compassed him about to fight +against him; and Josaphat cried out. + +And it came to pass, when the captains of the chariots saw that this was not the king of Israel, that they returned from him. + +And one drew a bow with a good aim, and struck the king of Israel between the lungs and the breast-plate: and he said to his charioteer, Turn your hands, and carry me away out of the battle, for I am wounded. + +And the war was turned in that day, and the king was +22:35 +Lit. +remaining. + standing on the chariot, against Syria from morning till evening; and he shed the blood out of his wound, into the bottom of the chariot, and died at even, and the blood ran out of the wound into the +22:35 +Gr. +bosom. + bottom of the chariot. + +And the herald of the army stood at sunset, saying, Let every man go to his own city and his own land, + +for the king is dead. And they came to Samaria, and buried the king in Samaria. + +And they washed the chariot at the fountain of Samaria; and the swine and the dogs licked up the blood, and the harlots washed themselves in the blood, according to the word of the Lord which he spoke. + +And the rest of the acts of Achaab, and all that he did, and the ivory house which he built, and all the cities which he +22:39 +Gr. +made. + built, behold, +are not these things written in the book of the chronicles of the kings of Israel? + +And Achaab slept with his fathers, and Ochozias his son reigned in his stead. + +And Josaphat the son of Asa reigned over Juda: in the fourth year of Achaab king of Israel +22:41 +Gr. +reigned. + began Josaphat to reign. + + +22:42 +Gr. +a son of thirty and five years in his reigning. + Thirty and five years old +was he when he began to reign, and he reigned twenty and five years in Jerusalem; and his mother's name +was Azuba daughter of Salai. + +And he walked in all the way of Asa his father: he turned not from it, even from doing that which was right in the eyes of the Lord. + +Only he took not away +any of the high places: the people still sacrificed and burnt incense on the high places. + +And Josaphat was at peace with the king of Israel. + +And the rest of the +22:46-50 +Gr. +words. + acts of Josaphat, and his mighty deeds, whatever he did, behold, +are not these things written in the book of the chronicles of the kings of Juda? + +And Josaphat slept with his fathers, and was buried by his fathers in the city of David his father, and Joram his son reigned in his stead. + +And Ochozias son of Achaab reigned over Israel in Samaria: in the seventeenth year of Josaphat king of Juda, Ochozias son of Achaab reigned over Israel in Samaria two years. + +And he did that which was evil in the sight of the Lord, and walked in the way of Achaab his father, and in the way of Jezabel his mother, and in the sins of the house of Jeroboam the son of Nabat, who caused Israel to sin. + +And he served Baalim, and worshipped them, and provoked the Lord God of Israel, according to all that had been done before him. + +

+
+ +Kings IV +KINGS IV +Kings IV +2KI +

KINGS IV +

+

(2 Kings) +

+ + +

And Moab +1:1 +Gr. +despised. + rebelled against Israel after the death of Achaab. + +And Ochozias fell through the lattice that was in his upper chamber in Samaria and was sick; and he sent messengers, and said to them, Go and enquire of Baal fly, the god of Accaron, whether I shall recover of this my sickness. And they went to enquire of him. + +And an angel of the Lord called Eliu the Thesbite, saying, Arise, and go to meet the messengers of Ochozias king of Samaria, and you shall say to them, +Is it because there is no God in Israel, +that you⌃ go to enquire of Baal fly, the God of Accaron? but +it shall not +be so. + +For thus says the Lord, The bed on which you are gone up, you shall not come down from it, for you shall surely die. And Eliu went, and said +so to them. + +And the messengers returned to him, and he said to them, Why have you⌃ returned? + +And they said to him, A man came up to meet us, and said to us, Go, return to the king that sent you, and say to him, Thus says the Lord, +Is it because there is no God in Israel, +that you go to enquire of Baal fly, the God of Accaron? +it shall not +be so: the bed on which you are gone up, you shall not come down from it, for you shall surely die. + +So they returned and reported to the king as Eliu said: and he said to them, What +was the manner of the man who went up to meet you, and spoke to you these words? + +And they said to him, +He was a hairy man, and girded with a leather girdle about his loins. And he said, This is Eliu the Thesbite. + +And he sent to him a captain of fifty and his fifty; and he went up to him: and, behold, Eliu sat on the top of a mountain. And the captain of fifty spoke to him, and said, O man of God, the king has called you, come down. + +And Eliu answered and said to the captain of fifty, And if I +am a man of God, fire shall come down out of heaven, and devour you and your fifty. And fire came down out of heaven, and devoured him and his fifty. + +And the king +1:11 +Gr. +added and sent. + sent a second time to him another captain of fifty, and his fifty. And the captain of fifty spoke to him, and said, O man of God, thus says the king, Come down quickly. + +And Eliu answered and spoke to him, and said, If I +am a man of God, fire shall come down out of heaven, and devour you and your fifty. And fire came down out of heaven, and devoured him and his fifty. + +And the king +1:13 +Gr. +added yet to send. + sent yet again a captain and his fifty. And the third captain of fifty came, and knelt on his knees before Eliu, and entreated him, and spoke to him and said, O man of God, let my life, and the life of these fifty your servants, be precious in your eyes. + +Behold, fire came down from heaven, and devoured the two first captains of fifty: and now, I pray, let my life be precious in your eyes. + +And the angel of the Lord spoke to Eliu, and said, Go down with him, be not afraid of them. And Eliu rose up, and went down with him to the king. + +And Eliu spoke to him, and said, Thus says the Lord, Why have you sent messengers to enquire of Baal fly, the god of Accaron? +it shall not +be so: the bed on which you are gone up, you shall not come down from it, for you shall surely die. + +So he died according to the word of the Lord which Eliu has spoken. + +And the rest of the +1:18 +Gr. +words. + acts of Ochozias which he did, behold, +are they not written in the book of the chronicles of the kings of Israel? and Joram son of Achaab reigns over Israel in Samaria twelve years +beginning in the eighteenth year of Josaphat king of Juda: and he did that which was evil in the sight of the Lord, only not as his brethren, nor as his mother: and he removed the pillars of Baal which his father made, and broke them in pieces: only he was joined to the sins of the house of Jeroboam, who led Israel to sin; he departed not from them. And the Lord was very angry with the house of Achaab. + +

+ + +

And it came to pass, when the Lord was going to take Eliu with a whirlwind as it were into heaven, that Eliu and Elisaie went out of Galgala. + +And Eliu said to Elisaie, Stay here, I pray you; for God has sent me to Baethel. And Elisaie said, +2:2 +Gr. +the Lord lives if, etc. + +As the Lord lives and your soul lives, I will not leave you; so they came to Baethel. + +And the sons of the prophets who were in Baethel came to Elisaie, and said to him, +2:3 +Gr. +if you know. + Do you know, that the Lord this day +2:3 +Gr. +takes. + is going to take your lord away from your head? And he said, Yes, I know +it; be silent. + +And Eliu said to Elisaie, Stay here, I pray you; for the Lord has sent me to Jericho. And he said, +2:4 +Gr. +the Lord lives if, etc. + +As the Lord lives and your soul lives, I will not leave you. And they came to Jericho. + +And the sons of the prophets who were in Jericho drew near to Elisaie, and said to him, Do you know that the Lord is about to take away your master today from your head? And he said, Yes, I know +it; hold your peace. + +And Eliu said to him, Stay here, I pray you, for the Lord has sent me to Jordan. And Elisaie said, +As the Lord lives and your soul lives, I will not leave you: and they both went on. + +And fifty men of the sons of the prophets +went also, and they stood opposite afar off: and both stood on +the bank of Jordan. + +And Eliu took his mantle, and wrapped it together, and struck the water: and the water was divided on this side and on that side, and they both went over +2:8 +Lit. +'into the wilderness.' + on dry ground. + +And it came to pass while they were crossing over, that Eliu said to Elisaie, Ask what I shall do for you before I am taken up from you. And Elisaie said, Let there be, I pray you, +2:9 +Gr. +double +portions + in your spirit. + a double +portion of your spirit upon me. + +And Eliu said, You have +2:10 +Gr. +hardened in asking. + asked a hard thing: if you shall see me when I am taken up from you, then shall it be so to you; and if not, it shall not be +so. + +And it came to pass as they were going, they +2:11 +Gr. +went and talked. + went on talking; and, behold, a chariot of fire, and horses of fire, and it separated between them both; and Eliu was taken up in a whirlwind as it were into heaven. + +And Elisaie saw, and cried, Father, father, the chariot of Israel, and the horseman thereof! And he saw him no more: and he took hold of his garments, and tore them into two pieces. + +And Elisaie took up the mantle of Eliu, which fell from off him upon Elisaie; and Elisaie returned, and stood upon the brink of Jordan; + +and he took the mantle of Eliu, which fell from off him, and struck the water, and said, Where is the Lord God of Eliu? +2:14 +The +Gr. +here copies the +Heb. אח הו 'he also'. + and he struck the waters, and they were divided hither and there; and Elisaie went over. + +And the sons of the prophets who were in Jericho on the opposite side saw him, and said, The spirit of Eliu has rested upon Elisaie. And they came to meet him, and did obeisance to him to the ground. + +And they said to him, Behold now, +there are with your servants fifty men +2:16 +Gr. +sons of strength +Hebraism. of strength: let them go now, and seek your lord: +2:16 +Gr. +lest at any time. + perhaps the Spirit of the Lord has taken him up, and cast him into Jordan, or on one of the mountains, or on one of the hills. And Elisaie said, You⌃ shall not send. + +And they pressed him until he was ashamed; and he said, Send. And they sent fifty men, and sought three days, and found him not. + +And they returned to him, for he lived in Jericho: and Elisaie said, Did I not say to you, Go not? + +And the men of the city said to Elisaie, Behold, the situation of the city +is good, as +our lord sees; but the waters +are bad, and the ground barren. + +And Elisaie said, Bring me a new pitcher, and put salt in it. And they took +one, and brought +it to him. + +And Elisaie went out to the spring of the waters, and cast salt therein, and says, Thus says the Lord, I have healed these waters; there shall not be any longer death thence or barren +land. + +And the waters were healed until this day, according to the word of Elisaie which he spoke. + +And he went up thence to Baethel: and as he was going up by the way there came up also little children from the city, and mocked him, and said to him, Go up, bald-head, go up. + +And he turned after them, and saw them, and cursed them in the name of the Lord. And, behold, there came out two bears out of the wood, and they tore forty and two children of them. + +And he went thence to mount Carmel, and returned thence to Samaria. + +

+ + +

And Joram the son of Achaab +3:1 +Gr. +reigned. + began to reign in Israel in the eighteenth year of Josaphat king of Juda, and he reigned twelve years. + +And he did that which was evil in the sight of the Lord, only not as his father, nor as his mother: and he removed the pillars of Baal which his father had made. + +Only he adhered to the sin of Jeroboam the son of Nabat, who made Israel to sin; he departed not from it. + +And Mosa king of Moab was a sheep-master, and he rendered to the king of Israel +3:4 +Lit. +in the rising up. + in the beginning +of the year, one hundred thousand lambs, and one hundred thousand rams, with the wool. + +And it came to pass, after the death of Achaab, that the king of Moab +3:5 +Gr. +despised. + rebelled against the king of Israel. + +And king Joram went forth in that day out of Samaria, and numbered Israel. + +And he went and sent to Josaphat king of Juda, saying, The king of Moab has rebelled against me: will you go with me against Moab to war? And he said, I will go up: you are as I, I am as you; as my people, so +is your people, as my horses, so +are your horses. + +And he said, What way shall I go up? and he said, The way of the wilderness of Edom. + +And the king of Israel went, and the king of Juda, and the king of Edom: and +3:9 +Gr. +compassed a journey of seven days. + they fetched a compass of seven days' journey; and there was no water for the army, and for the cattle +3:9 +Gr. +at their feet. + that went with them. + +And the king of Israel said, Alas! that the Lord should have called the three kings on their way, to give them into the hand of Moab. + +And Josaphat said, Is there not here a prophet of the Lord, +3:11 +Gr. +and we will. + that we may enquire of the Lord by him? And one of the servants of the king of Israel answered and said, +There is here Elisaie son of Saphat, who poured water on the hands of Eliu. + +And Josaphat said, He has the word of the Lord. And the king of Israel, and Josaphat king of Juda, and the king of Edom, went down to him. + +And Elisaie said to the king of Israel, What have I to do with you? go to the prophets of your father, and the prophets of your mother. And the king of Israel said to him, +3:13 +Gr. +is it that. + Has the Lord called the three kings to deliver them into the hands of Moab? + +And Elisaie said, +As the Lord of hosts before whom I +3:14 +Gr. +stood. + stand lives, unless I +3:14 +Gr. +regard. + regarded the presence of Josaphat the king of Juda, I would not have looked on you, nor seen you. + +And now fetch me a harper. And it came to pass, as the harper harped, that the hand of the Lord came upon him. + +And he said, Thus says the Lord, Make this +3:16 +Lit. +brook. + valley full of trenches. + +For thus says the Lord, You⌃ shall not see wind, neither shall you⌃ see rain, yet this valley shall be filled with water, and you⌃, and your +3:17 +Lit. +posessions. + flocks, and your cattle shall drink. + +And this +is a light +thing in the eyes of the Lord: I will also deliver Moab +3:18 +Gr. +in. + into your hand. + +And you⌃ shall strike every strong city, and you⌃ shall +3:19 +Gr. +throw down. + cut down every good tree, and you⌃ shall stop all wells of water, and spoil every good piece +of land with stones. + +And it came to pass in the morning, when the sacrifice was +3:20 +Gr. +going up. + offered, that, behold! waters came from the way of Edom, and the land was filled with water. + +And all Moab heard that the three kings were come up to fight against them; and they cried out +3:21 +Gr. +from. + on every +side, even all that were girded with a girdle, +3:21 +Alex. +καὶ ἐπάνα, 'and above.' + and they said, Ho! and stood upon the border. + +And they rose early in the morning, and the sun rose upon the waters, and Moab saw the waters on the opposite side red as blood. + +And they said, This +is the blood of the sword; and the kings have fought, and each man has struck his neighbor; now then to the spoils, Moab. + +And they entered into the camp of Israel; and Israel arose and struck Moab, and they fled from before them; and they +3:24 +Gr. +went in, going in and striking. + went on and struck Moab as they went. + +And they razed the cities, and cast every man his stone on every good piece +of land and filled it; and they stopped every well, and +3:25 +Gr. +threw down. + cut down every good tree, until they left +only the stones of the wall cast down; and the slingers compassed +the land, and struck it. + +And the king of Moab saw that the battle prevailed against him; and he took with him seven hundred men that drew sword, to cut through to the king of Edom: and they could not. + +And he took his oldest son whom he had designed to reign in his stead, and offered him up for a whole burnt offering on the walls. And there was a great +3:27 +Gr. +repentance. + indignation against Israel; and they departed from him, and returned to their land. + +

+ + +

And one of the wives of the sons of the prophets cried to Elisaie, saying, Your servant my husband is dead; and you know that your servant feared the Lord: and the creditor is come to take my two sons to be his servants. + +And Elisaie said, What shall I do for you? tell me what you have in the house. And she said, Your servant has nothing in the house, except oil wherewith I +4:2 +Gr. +shall anoint. + anoint myself. + +And he said to her, Go, borrow for yourself vessels without of all your neighbors, +even empty vessels; borrow not a few. + +And you shall go in and shut the door upon you and upon your sons, and you shall pour forth into these vessels, and remove that which is filled. + +And she departed from him, and shut the door upon herself and upon her sons: they brought the vessels near to her, and she poured in until the vessels were filled. + +And she said to her sons, Bring me yet a vessel. And they said to her, There is not a vessel more. And the oil stayed. + +And she came and told the man of God: and Elisaie said, Go, and sell the oil, and you shall pay your +4:7 +Gr. +interest, +pl. debts, and you and your sons shall live of the remaining oil. + +And a day came, when Elisaie passed over to Soman, and +there was a great lady there, and she constrained him to eat bread: and it came to pass as often as he went into +the city, that he turned aside to eat there. + +And the woman said to her husband, See now, I know that this +is a holy man of God who comes over continually to us. + +Let us now make for him an upper chamber, a small place; and let us put there for him a bed, and a table, and a stool, and a candlestick: and it shall come to pass that when he comes in to us, he shall +4:10 +Or, +turn aside. + turn in there. + +And a day came, and he went in there, and turned aside into the upper chamber, and lay there. + +And he said to Giezi his servant, Call me this Somanite. and he called her, and she stood before him. + +And he said to him, Say now to her, Behold, you have +4:13 +Gr. +been astonished with all this astonishment. + taken all this trouble for us; what should I do for you? Have you any +4:13 +Gr. +word +or +business. + request +to make to the king, or to the captain of the host? And she said, I dwell in the midst of my people. + +And he said to Giezi, What must we do for her? and Giezi his servant said, Indeed she has no son, and her husband +is old. + +And he called her, and she stood by the door. + +And Elisaie said to her, At this time +next year, as the season +is, you +shall be alive, and embrace a son. And she said, Nay, my lord, do not lie to your servant. + +And the woman conceived, and bore a son at the very time, as the season was, being alive, as Elisaie said to her. + +And the child grew: and it came to pass when he went out to his father to the reapers, + +that he said to his father, My head, my head. and +his father said to a servant, carry him to his mother. + +And he carried him to his mother, and he lay upon her knees till noon, and died. + +And she carried him up and laid him on the bed of the man of god; and she shut the door upon him, and went out. + +And she called her husband, and said, Send now for me one of the young men, and one of the asses, and I will +4:22 +Gr. +run. + ride quickly to the man of God, and return. + +And he said, Why are you going to him today? It is neither new moon, nor the Sabbath. And she said, +4:23 +Gr. +peace. + +It is well. + +And she saddled the ass, and said to her servant, Be quick, proceed: spare not on my account to ride, unless I shall tell you. Go, and you shall proceed, and come to the man of God to mount Carmel. + +And she +4:25 +Gr. +went. + rode and came to the man of God to the mountain: and it came to pass when Elisaie saw her coming, that he said to Giezi his servant, See now, that Somanite comes. + +Now run to meet her, and you shall say, +Is it well with you? +4:26 +Gr. +peace. + +is it well with your husband? +is it well with the child? and she said, +It is well. + +And she came to Elisaie to the mountain, and laid hold of his feet; and Giezi drew near to thrust her away. And Elisaie said, Let her alone, for her soul +is much grieved in her, and the Lord has hidden +it from me, and has not told +it me. + +And she said, Did I ask a son of my lord? For did I not say, +4:28 +Gr. +You shall not. + Do not deal deceitfully with me? + +And Elisaie said to Giezi, Gird up your loins, and take my staff in your hand, and go: if you meet any man, you shall not +4:29 +Gr. +bless. + salute him, and if a man salute you you shall not answer him: and you shall lay my staff on the child's face. + +And the mother of the child said, +As the Lord lives and +as your soul lives, I will not leave you. And Elisaie arose, and went after her. + +And Giezi went on before her, and laid his staff on the child's face: but there was neither voice nor any hearing. So he returned to meet him, and told him, saying, The child is not awaked. + +And Elisaie went into the house, and, behold, the dead child was laid upon his bed. + +And Elisaie went into the house, and shut the door upon themselves, the two, and prayed to the Lord. + +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 bowed himself upon him, and the flesh of the child grew warm. + +And he returned, and walked up and down in the house: and he went up, and bowed himself on the child seven times; and the child opened his eyes. + +And Elisaie cried out to Giezi, and said, Call this Somanite. So he called her, and she came in to him: and Elisaie said, Take your son. + +And the woman went in, and fell at his feet, and did obeisance +bowing to the ground; and she took her son, and went out. + +And Elisaie returned to Galgala: and a famine +was in the land; and the sons of the prophets sat before him: and Elisaie said to his servant, Set on the great pot, and boil pottage for the sons of the prophets. + +And he went out into the field to gather herbs, and found a vine in the field, and gathered of it wild +4:39 +Gr. sing. +colosynth. + gourds, his garment full; and he cast it into the caldron of pottage, for they knew +them not. + +And he poured it out for the men to eat: and it came to pass, when they were eating of the pottage, that behold! they cried out, and said, +There is death in the pot, O man of God. And they could not eat. + +And he said, Take meal, and cast it into the pot. And Elisaie said to his servant Giezi, Pour out for the people, and let them eat. And there was no longer there any hurtful thing in the pot. + +And there came a man over from Baetharisa, and brought to the man of God twenty barley loaves and cakes of figs, of the first fruits. And he said, Give to the people, and let them eat. + +And his servant said, Why should I set this before one hundred men? and he said, Give to the people, and let them eat; for thus says the Lord, They shall eat and leave. + +And they ate and left, according to the word of the Lord. + +

+ + +

Now Naiman, the captain of the host of Syria, was a great man before his master, and +5:1 +Gr. +wondered at in countenance. + highly respected, because by him the Lord had given deliverance to Syria, and the man was mighty in strength, +but a leper. + +And the Syrians went forth +5:2 +Gr. +light armed, etc. + in small bands, and took captive out of the land of Israel a little maid: and she +5:2 +Gr. +was before. + waited on Naiman's wife. + +And she said to her mistress, O that my lord were before the prophet of God in Samaria; then he +5:3 +Gr. +will detach him. + would recover him from his leprosy. + +And she went in and told her lord, and said, Thus and thus spoke the maid from the land of Israel. + +And the king of Syria said to Naiman, Go to, go, and I will send a letter to the king of Israel. And he went, and took in his hand ten talents of silver, and six thousand pieces of gold, and ten +5:5 +Gr. +changing robes. + changes of raiment. + +And he brought the letter to the king of Israel, saying, Now then, as soon as this letter shall reach you, behold, I have sent to you my servant Naiman, and you shall recover him from his leprosy. + +And it came to pass, when the king of Israel read the letter, +that he tore his garments, and said, +Am I God, to kill and to make alive, that this +man sends to me to recover a man of his leprosy? consider, however, I pray you, and see that this +man seeks an occasion against me. + +And it came to pass, when Elisaie heard that the king of Israel had torn his garments, that he sent to the king of Israel, saying, Therefore have you torn your garments? Let Naiman, I pray you, come to me, and let him know that there is a prophet in Israel. + +So Naiman came with horse and chariot, and stood at the door of the house of Elisaie. + +And Elisaie sent a messenger to him, saying, Go and wash seven times in Jordan, and your flesh shall return to you, and you shall be cleansed. + +And Naiman was angry, and departed, and said, Behold, I said, He will by all means come out to me, and stand, and call on the name of his God, and lay his hand upon the place, and recover the leper. + + +Are not the Abana and Pharphar, rivers of Damascus, better than all the waters of Israel? +5:12 +Gr. +shall I not, etc. + may I not go and wash in them, and be cleansed? and he turned and went away in a rage. + +And his servants came near and said to him, +Suppose the prophet had spoken a great thing to you, +5:13 +Gr. +will you. + would you not perform it? yet he has but said to you, Wash, and be cleansed. + +So Naiman went down, and dipped himself seven times in Jordan, according to the word of Elisaie: and his flesh returned to him as the flesh of a little child, and he was cleansed. + +And he and all his +5:15 +Gr. +army +or +camp. + company returned to Elisaie, and he came and stood before him, and said, Behold, I know that there is no God in all the earth, save only in Israel: and now receive a blessing of your servant. + +And Elisaie said, +As the Lord lives, before whom I stand, I will not take +one. And he pressed him to take +one: but he would not. + +And Naiman said, Well then, if not, let there be given to your servant, I pray you, the load +of a yoke of mules; and you shall give me of the red earth: for henceforth your servant will not offer whole burnt offering or sacrifice to other gods, but only to the Lord +5:17 +Probably this last clause belongs to +ver. +18. + by +reason of this thing. + +And +5:18 +Or, +The Lord shall be, etc. + let the Lord be propitious to your servant when my master goes into the house of Remman to worship there, and he shall lean on my hand, and I shall bow down in the house of Remman when he bows down in the house of Remman; even let the Lord, I pray, be merciful to your servant in this matter. + +And Elisaie said to Naiman, Go in peace. And he departed from him a little way. + +And Giezi the servant of Elisaie said, Behold, my Lord has spared this Syrian Naiman, so as not to take of his hand what he has brought: as the Lord lives, I will surely run after him, and take somewhat of him. + +So Giezi followed after Naiman: and Naiman saw him running after him, and turned back from his chariot to meet him. +5:21 +Alex.+ +'Is all well?' + + +And +Giezi said, All is well: my master has sent me, saying, Behold, now are there come to me two young men of the sons of the prophets from mount Ephraim; give them, I pray you, a talent of silver, and two +5:22 +Gr. +changing robes. + changes of raiment. + +And +Naiman said, Take two talents of silver. And he took two talents of silver in two bags, and two changes of raiment, and +5:23 +Gr. +gave. + put them upon two of his servants, and they bore them before him. + +And he came to +5:24 +Gr. +a dark place, or the dark. + a secret place, and took them from their hands, and laid them up in the house, and dismissed the men. + +And he went in himself and stood before his master; and Elisaie said to him, + +Whence +come you, Giezi? and Giezi said, Your servant has not been hither or there. And Elisaie said to him, Went not my heart with you, when the man returned from his chariot to meet you? and now you have received silver, and now you have received raiment, and olive yards, and vineyards, and sheep, and oxen, and menservants, and maidservants. + +The leprosy also of Naiman shall cleave to you, and to your seed for ever. And he went out from his presence leprous, like snow. + +

+ + +

And the sons of the prophets said to Elisaie, Behold now, the place wherein we dwell before you is too narrow for us. + +Let us go, we pray you, to Jordan, and take thence every man a beam, and make for ourselves a +6:2 +Gr. +a place of inhabiting. + habitation there. + +And he said, Go. And one of them said gently, Come with your servants. And he said, I will go. + +And he went with them, and they came to Jordan, and began to cut down +6:4 +Or, +trees. + wood. + +And behold, one was cutting down a beam, and the +6:5 +Gr. +iron. + axe head fell into the water: and he cried out, Alas! master: and it was hidden. + +And the man of God said, Where did it fall? and he showed him the place: and he +6:6 +Lit. +pinched off with the nail, etc. + broke off a stick, and threw it in there, and the iron came to the surface. + +And he said, Take it up to yourself. And he stretched out his hand, and took it. + +And the king of Syria was at war with Israel: and he consulted with his servants, saying, I will encamp in such a place. + +And Elisaie sent to the king of Israel, saying, Take heed that you pass not by +6:9 +Gr. +this. + that place, for the Syrians are hidden there. + +And the king of Israel sent to the place which Elisaie mentioned to him, and saved himself thence not once or twice. + +And the mind of the king of Syria was very much disturbed concerning this thing; and he called his servants, and said to them, Will you⌃ not tell me who betrays me to the king of Israel? + +And one of his servants said, Nay, my Lord, O king, for Elisaie the prophet that is in Israel reports to the king of Israel all the words whatever you may say in +6:12 +Gr. +closet of your bedchamber. + your bedchamber. + +And he said, Go, see where this man +is, and I will send and take him. And they sent word to him, saying, Behold, +he is in Dothaim. + +And he sent there horses, and chariots, and a mighty host: and they came by night, and compassed about the city. + +And the servant of Elisaie +6:15 +Gr. +was early to rise. + rose up early and went out; and, behold, a host compassed the city, and horses and chariots: and the servant said to him, O master, +6:15 +Gr. +how shall we do? + what shall we do? + +And Elisaie said, Fear not, for they who are with us +are more than they that are with them. + +And Elisaie prayed, and said, Lord, open, I pray you, the eyes of the servant, and let him see. And the Lord opened his eyes, and he saw: and, behold, the mountain +was full of horses, and there were chariots of fire round about Elisaie. + +And they came down to him; and he prayed to the Lord, and said, Strike, I pray you, this +6:18 +Gr. +nation. + people with blindness. And he struck them with blindness, according to the word of Elisaie. + +And Elisaie said to them, This +is not the city, and this +is not the way: follow me, and I will bring you to the man whom you⌃ seek. And he led them away to Samaria. + +And it came to pass when they entered into Samaria, that Elisaie said, Open, I pray you, O Lord, their eyes, and let them see. And the Lord opened their eyes, and they saw; and, behold, they were in the midst of Samaria. + +And the king of Israel said to Elisaie, when he saw them, Shall I +not verily strike them, +my father? + +And he said, You shall not strike them, unless you +6:22 +Gr. +smite. + would strike those whom you have taken captive with your sword and with your bow: set bread and water before them, and let them eat and drink, and depart to their master. + +And he set before them a great feast, and they ate and drank: and he dismissed them and they departed to their master. And the bands of Syria came no longer into the land of Israel. + +And it came to pass after this, that the son of Ader king of Syria gathered all his army, and went up, and besieged Samaria. + +And there was a great famine in Samaria: and, behold, they besieged it, until an ass's head was +valued at fifty pieces of silver, and the fourth part of a cab of dove's dung at five pieces of silver. + +And the king of Israel was passing by on the wall, and a woman cried to him, saying, Help, my lord, O king. + +And he said to her, Unless the Lord help you, whence shall I help you? from the corn-floor, or from the wine-press? + +And the king said to her, What is +the matter with you? And the woman said to him, This +woman said to me, Give your son, and we will eat him today, and we will eat my son to-morrow. + +So we boiled my son, and ate him; and I said to her on the second day, Give your son, and let us eat him: and she has hidden her son. + +And it came to pass, when the king of Israel heard the words of the woman, +that he tore his garments; and he passed by on the wall, and the people saw sackcloth within upon his flesh. + +And he said, God +6:31 +Gr. +do these things to me and add these things. + do so to me and more also, if the head of Elisaie shall stand upon him this day. + +And Elisaie was sitting in his house, and the elders were sitting with him; and +the king sent a man before him: before the messenger came to him, he also said to the elders, Do you⌃ see that this son of a murderer has sent to take away my head? See, as soon as the messenger shall have come, shut the door, and forcibly detain him at the door: +is not the sound of his master's feet behind him? + +While he was yet speaking with them, behold, a messenger came to him: and he said, Behold, this evil +is of the Lord; why should I wait for the Lord any longer? + +

+ + +

And Elisaie said, Hear you the word of the Lord; Thus says the Lord, +7:1 +Gr. +As is this, etc. + As at this time, to-morrow a measure of fine flour +shall be sold for a shekel, and two measures of barley for a shekel, in the gates of Samaria. + +And the officer on whose hand the king rested, answered Elisaie, and said, Behold, +if the Lord shall make flood-gates in heaven, +7:2 +Gr. +shall. + might this thing be? and Elisaie said, Behold, you shall see with your eyes, but shall not eat thereof. + +And there were four leprous men by the gate of the city: and one said to his neighbor, Why sit we here until we die? + +If we should say, Let us go into the city, then +there is famine in the city, and we shall die there: and if we sit here, then we shall die. Now then come, and let us fall upon the camp of the Syrians: if they should take us alive, then we shall live; and if they should put us to death, then we shall +only die. + +And they rose up +7:5 +Gr. +in the dark. + while it was yet night, to go into the camp of Syria; and they came into a part of the camp of Syria, and behold, there +7:5 +Gr. +is. + +was no man there. + + +7:6 +Gr. +and. + For the Lord had made the army of Syria to hear a sound of chariots, and a sound of horses, +even the sound of a great host: and +each man said to his fellow, Now has the king of Israel hired against us the kings of the Chettites, and the kings of Egypt, to come against us. + +And they arose and fled while it was yet dark, and left their tents, and their horses, and their asses in the camp, +7:7 +Gr. +as it is. + as they were, and fled +7:7 +Gr. +to their life. + for their lives. + +And these lepers entered a little way into the camp, and went into one tent, and ate and drank, and took thence silver, and gold, and raiment; and they went and returned thence, and entered into another tent, and took thence, and went and hid +the spoil. + +And +one man said to his neighbor, We are not doing +well thus: this day is a day of glad tidings, and we hold our peace, and are waiting till the morning light, and shall find mischief: now them come, and let us go into +the city, and report to the house of the king. + +So they +7:10 +Gr. +went in. + went and cried toward the gate of the city, and reported to them, saying, We went into the camp of Syria, and, behold, there is not there a man, nor voice of man, only +7:10 +Gr. +horse. + horses tied and +7:10 +Gr. +ass. + asses, and their tents as they were. + +And the porters cried aloud, and reported to the house of the king within. + +And the king rose up by night, and said to his servants, I will now tell you what +7:12 +Gr. +Syria. + the Syrians have done to us. They knew that we are hungry; and they have gone forth from the camp and hidden themselves in the field, saying, They will come out of the city, and we shall catch them alive, and go into the city. + +And one of his servants answered and said, Let them now take five of the horses that were left, which were left here; behold, they are the number left to all the multitude of Israel; and we will send there and see. + +So they took two horsemen; and the king of Israel sent after the king of Syria, saying, Go, and see. + +And they went after them even to Jordan: and, behold, all the way was full of garments and vessels, which the Syrians had cast away in their panic. and the messengers returned, and brought word to the king. + +And the people went out, and plundered the camp of Syria: and a measure of fine flour was sold for a shekel, according to the word of the Lord, and two measures of barley for a shekel. + +And the king appointed the officer on whose hand the king leaned +to have charge over the gate: and the people trampled on him in the gate, and he died, as the man of God +had said, who spoke when the messenger came down to him. + +So it came to pass as Elisaie had spoken to the king, saying, Two measures of barley +shall be sold for a shekel, and a measure of fine flour for a shekel; and it shall be +7:18 +Gr. +as this time is. + as at this time to-morrow in the gate of Samaria. + +And the officer answered Elisaie, and said, Behold, +if the Lord makes flood-gates in heaven, shall this thing be? and Elisaie said, Behold, you shall see +it with your eyes, but you shall not eat thereof. + +And it was so: for the people trampled on him in the gate, and he died. + +

+ + +

And Elisaie spoke to the woman, whose son he +had +8:1 +The +Gr. +signifies, to rekindle a fire. + restored to life, saying, Arise, and go you and your house, and sojourn wherever you may sojourn: for the Lord has called for a famine upon the land; indeed it is come upon the land +for seven years. + +And the woman arose, and did according to the word of Elisaie, both she and her house; and they sojourned in the land of the Philistines seven years. + +And it came to pass after the expiration of the seven years, that the woman returned out of the land of the Philistines to the city; and came to cry to the king for her house and for her lands. + +And the king spoke to Giezi the servant of Elisaie the man of God, saying, Tell me, I pray you, all the great things which Elisaie has done. + +And it came to pass, as he was telling the king how he had restored to life the dead son, behold, the woman whose son Elisaie restored to life +came crying to the king for her house and for her lands. And Giezi said, My lord, O king, this +is the woman, and this +is her son, whom Elisaie restored to life. + +And the king asked the woman, and she told him: and the king appointed her a eunuch, saying, Restore all that was hers, and all the fruits of the field from the day that she left the land until now. + +And Elisaie came to Damascus; and the king of Syria the son of Ader was ill, and they brought him word, saying, The man of God is come here. + +And the king said to Azael, Take in your hand +8:8 +The +Gr. +retains the +Heb. word. + a present, and go to meet the man of God, and enquire of the Lord by him, saying, Shall I +8:8 +Gr. +live? + recover of this my disease? + +And Azael went to meet him, and he took a present in his hand, and all the good things of Damascus, forty camels' load, and came and stood before him, and said to Elisaie, Your son the son of Ader, the king of Syria, has sent me to you to enquire, saying, Shall I recover of this my disease? + +And Elisaie said, Go, say, You shall certainly live; yet the Lord has showed me that +8:10 +Complut. +and +Ald. +ἀποθανεῖται. + you shall surely die. + +And he stood before him, and fixed +his countenance till he was ashamed: and the man of God wept. + +And Azael said, Why does my lord weep? And he said, Because I know all the evil that you will do to the children of Israel: you will +8:12 +Gr. +send away. + utterly destroy their strong holds with fire, and you will kill their choice men with the sword, and you will dash their infants +against the ground, and their women with child you will rip up. + +And Azael said, Who is your servant? a dead dog, that he +8:13 +Gr. +shall. + should do this thing? And Elisaie said, The Lord has shown me you ruling over Syria. + +And he departed from Elisaie, and went in to his lord; and he said to him, What said Elisaie to you? and he said, He said to me, You shall surely live. + +And it came to pass on the next day that he took a +8:15 +The +Gr. +is from the +Heb. rug +or +quilt, etc. + thick cloth, and dipped it in water, and put it on his face, and he died: and Azael reigned in his stead. + +In the fifth year +8:16 +Gr. +to. + of Joram son of Achaab king of Israel, and while Josaphat was king of Juda, Joram the son of Josaphat king of Juda +8:16 +Gr. +reigned. + began to reign. + + +8:17 +Gr. +a son of 32 years in his reigning. + Thirty and two years old was he when he began to reign, and he reigned eight years in Jerusalem. + +And he walked in the way of the kings of Israel, as did the house of Achaab; for the daughter of Achaab was his wife: and he did that which was evil in the sight of the Lord. + +But the Lord would not destroy Juda for David his servant's sake, as he said he would give a light to him and to his sons continually. + +In his days Edom revolted from under the hand of Juda, and they made a king over +8:20 +Gr. +himself. + themselves. + +And Joram went up to Sior, and all the chariots that were with him: and it came to pass after he had arisen, that he struck Edom who compassed him about, and the captains of the chariots; and the people fled to their tents. + +Yet Edom revolted from under the hand of Juda till this day. Then Lobna revolted at that time. + +And the rest of the acts of Joram, and all that he did, behold, are not these written in the book of the chronicles of the kings of Juda? + +So Joram slept with his fathers, and was buried with his fathers in the city of his father David: and Ochozias his son reigned in his stead. + +In the twelfth year +8:25 +Gr. +to. + of Joram son of Achaab king of Israel, Ochozias son of Joram +8:25 +Gr. +reigned. + began to reign. + + +8:26 +Gr. +a son of 22 years in his reigning. + Twenty and two years old +was Ochozias when he began to reign, and he reigned one year in Jerusalem: and the name of his mother +was Gotholia, daughter of Ambri king of Israel. + +And he walked in the way of the house of Achaab, and did that which was evil in the sight of the Lord, as did the house of Achaab. + +And he went with Joram the son of Achaab to war +8:28 +Gr. +with. + against Azael king of +8:28 +The +Gr. +word ἀλλοφύλοι is almost always applied elsewhere to the Philistines. + the Syrians in Remmoth Galaad; and the Syrians wounded Joram. + +And king Joram returned to be healed in Jezrael of the wounds with which they wounded him in Remmoth, when he fought with Azael king of Syria. And Ochozias son of Joram went down to see Joram the son of Achaab in Jezrael, because he was sick. + +

+ + +

And Elisaie the prophet called one of the sons of the prophets, and said to him, Gird up your loins, and take this cruse of oil in your hand, and go to Remmoth Galaad. + +And you shall enter there, and shall see there Ju the son of Josaphat son of Namessi, and shall go in and make him rise up from among his brethren, and shall bring him into a secret chamber. + +And you shall take the cruse of oil, and pour +it on his head, and say you, Thus says the Lord, I have anointed you king over Israel: and you shall open the door, and flee, and not wait. + +And the young man the prophet went to Remmoth Galaad. + +And he went in, and, behold, the captains of the host were sitting; and he said, I have a message to you, O captain. And Ju said, To which of all us? And he said, To you, O captain. + +And he arose, and went into the house: and he poured the oil upon his head, and said to him, Thus says the Lord God of Israel, I have anointed you to be king over the people of the Lord, even over Israel. + +And you shall utterly destroy the house of Achaab your master from before me, and shall avenge the +9:7 +Gr. +bloods. + blood of my servants the prophets, and the blood of all the servants of the Lord, at the hand of Jezabel, + +and at the hand of the whole house of Achaab: and you shall utterly cut off from the house of Achaab every male, and him that is shut up and left in Israel. + +And I will +9:9 +Gr. +give. + make the house of Achaab like the house of Jeroboam the son of Nabat, and as the house of Baasa the son of Achia. + +And the dogs shall eat Jezabel in the portion of Jezreel, and +9:10 +Gr. +there is not a buryer. + there shall be none to bury her. And he opened the door, and fled. + +And Ju went forth to the servants of his lord, and they said to him, +Is +9:11 +Gr. +peace. + all well? Why came this mad fellow in to you? And he said to them, You⌃ know the man, and his communication. + +And they said, +It is wrong: tell us now. And Ju said to them, Thus and thus spoke he to me, saying, —and he said, Thus says the Lord, I have anointed you to be king over Israel. + +And when they heard it, they hasted, and took every man his garment, and put it under him on the +9:13 +Heb. word in +Gr. top of the stairs, and blew with the trumpet, and said, Ju +9:13 +Lit. +has reigned. + is king. + +So Ju the son of Josaphat the son of Namessi conspired against Joram, and Joram was defending Remmoth Galaad, he and all Israel, +9:14 +Gr. +from the face of. + because of Azael king of Syria. + +And king Joram had returned to be healed in Jezrael of the wounds which the Syrians had given him, in his war with Azael king of Syria. +

+

And Ju said, If your heart is with me, let there not go forth out of the city +9:15 +Gr. +one having escaped. + one fugitive to go and report to Jezrael. + +And Ju rode and advanced, and came down to Jezrael; for Joram king of Israel was getting healed in Jezrael of the arrow-wounds wherewith the Syrians +had wounded him in Rammath in the war with Azael king of Syria; for he +was strong and a mighty man: and Ochozias king of Juda was come down to see Joram. + +And there went up a watchman upon the tower of Jezrael, and saw the dust +made by Ju as he approached; and he said, I see dust. And Joram said, Take a horseman, and send +9:17 +Gr. +before them. + to meet them, and let him say, Peace. + +And there went a horseman to meet them, and said, Thus says the king, Peace. And Ju said, What have you to do with peace? turn behind me. And the watchman reported, saying, The messenger came up to them, and has not returned. + +And he sent another horseman, and he came to him, and said, Thus says the king, Peace. And Ju said, What have you to do with peace? turn behind me. + +And the watchman reported, saying, He came up to them, and has not returned: and the driver +9:20 +Gr. +has driven. + drives Ju the son of Namessi, for it is with furious +haste. + +And Joram said, Make ready. And one made ready the chariot: and Joram the king of Israel went forth, and Ochozias king of Juda, each in his chariot, and they went to meet Ju, and found him in the portion of Nabuthai the Jezraelite. + +And it came to pass when Joram saw Ju, that he said, +Is it peace, Ju? And Ju said, How +can it be peace? as yet +there are the whoredoms of your mother Jezabel, and her abundant witchcrafts. + +And Joram turned his hands, and fled, and said to Ochozias, Treachery, Ochozias. + +And Ju +9:24 +Lit. +filled his hand with the bow. + bent his bow with his full strength, and struck Joram between his arms, and his arrow went out at his heart, and he bowed upon his knees. + +And +Ju said to Badecar his chief officer, Cast him into the portion of ground of Nabuthai the Jezraelite, for I and you remember, riding +as we were +9:25 +Gr. +on yokes, +or +chariots with pairs of horses. + on chariots after Achaab his father, +9:25 +Gr. +and the Lord. + that the Lord took up this burden against him, +saying, + + +9:26 +Gr. +If I have not seen. + Surely, I have seen yesterday the blood of Nabuthai, and the blood of his sons, says the Lord; and I will recompense him in this portion, says the Lord. Now then, I pray you, take him up and cast him into the portion, according to the word of the Lord. + +And Ochozias king of Juda saw +it, and fled by the way of +9:27 +Heb. the garden house. + Baethgan. And Ju pursued after him, and said, +Slay him also. And one struck him in the chariot at the going up of Gai, which is Jeblaam: and he fled to Mageddo, and died there. + +And his servants put him on a chariot, and brought him to Jerusalem, and they buried him in his sepulchre in the city of David. + +And in the eleventh year of Joram king of Israel, Ochozias began to reign over Juda. + +And Ju came to Jezrael; and Jezabel heard +of it, and coloured her eyes, and adorned her head, and looked through the window. + +And Ju entered into the city; and she said, Had Zambri, the murderer of his master, peace? + +And he lifted up his face toward the window, and saw her, and said, Who are you? Come down with me. And two eunuchs looked down towards him. + +And he said, Throw her +down. And they threw her +down; and some of her blood was sprinkled on the wall, and on the horses: and they trampled on her. + +And +Ju went in and ate and drank, and said, Look now, after this cursed woman, and bury her, for she is a king's daughter. + +And they went to bury her; but they found nothing of her but the skull, and the feet, and the palms of her hands. + +And they returned and told him. And he said, +It is the word of the Lord, which he spoke by the hand of Eliu the Thesbite, saying, In the portion of Jezrael shall the dogs eat the flesh of Jezabel. + +And the carcass of Jezabel shall be as dung on the face of the field in the portion of Jezrael, so that they shall not say, +This is Jezabel. + +

+ + +

And Achaab +had seventy sons in Samaria. And Ju wrote a letter, and sent it into Samaria to the rulers of Samaria, and to the elders, and to the guardians of +the children of Achaab, saying. + +Now then, as soon as this letter shall have reached you, whereas +there are with you the sons of your master, and with you +10:2 +Gr. +the chariot and the horses. + chariots and horses, and strong cities, and arms, + +do you⌃ accordingly look out the best and +10:3 +Gr. +upright, +q.d. +unblemished + fit among your master's sons, and set him on the throne of his father, and fight for the house of your master. + +And they feared greatly, and said, Behold, two kings stood not before him: and how shall we stand? + +So they that were over the house, and they that were over the city, and the elders and the guardians, sent to Ju, saying, We also +are your servants, and whatever you shall say to us we will do; we will not make +any man king: we will do that which is right in your eyes. + +And Ju wrote them a second letter, saying, If you⌃ +are for me, and listen to my voice, take the heads of the men your master's sons, and bring +them to me at this time to-morrow in Jezrael. Now the sons of the king were seventy men; these great men of the city brought them up. + +And it came to pass, when the letter came to them, that they took the king's sons, and killed them, +even seventy men, and put their heads in baskets, and sent them to him at Jezrael. + +And a messenger came and told +him, saying, They have brought the heads of the king's sons. And he said, Lay them +in two heaps by the door of the gate until the morning. + +And the morning came, and he went forth, and stood, and said to all the people, You⌃ are righteous: behold, I conspired against my master, and killed him: but who killed all these? + +See now that there shall not fall to the ground anything of the word of the Lord which the Lord spoke against the house of Achaab: for the Lord has performed all that he spoke of by the hand of his servant Eliu. + +And Ju struck all that were left of the house of Achaab in Jezrael, and all his great men, and his acquaintance, and his priests, so as not to leave him +any remnant. + +And he arose and went to Samaria, +and he +was in the house of sheep-shearing in the way. + +And Ju found the brethren of Ochozias king of Juda, and said, Who +are you⌃? And they said, We +are the brethren of Ochozias, and we have come down to salute the sons of the king, and the sons of the queen. + +And he said, Take them alive. And they killed them at the shearing-house, forty and two men: he left not a man of them. + +And he went thence and found Jonadab the son of Rechab +coming to meet him; and he +10:15 +Gr. +blessed him. + saluted him, and Ju said to him, Is your heart right with my heart, as my heart +is with your heart? And Jonadab said, It is. And Ju said, If it is then, give me your hand. And he gave him his hand, and he took him up to him +10:15 +Gr. +upon. + into the chariot. + +And he said to him, Come with me, and see me zealous for the Lord. And he caused him to sit in his chariot. + +And he entered into Samaria, and struck all that were left of Achaab in Samaria, until he had utterly destroyed him, according to the word of the Lord, which he spoke to Eliu. + +And Ju gathered all the people, and said to them, Achaab served Baal a little; Ju shall serve him much. + +Now then do all +you⌃ the prophets of Baal call all his servants and his priests to me; let not a man be lacking: for I have a great sacrifice +to offer to Baal; every one who shall be missing shall die. But Ju did it in subtilty, that he might destroy the servants of Baal. + +And Ju said, Sanctify a solemn festival to Baal, and they made a proclamation. + +And Ju sent throughout all Israel, saying, Now then let all +Baal's servants, and all his priests, and all his prophets +come, let none be lacking: for I am +10:21 +Gr. +offering. + going to offer a great sacrifice; whoever shall be missing, shall not live. So all the servants of Baal came, and all his priests, and all his prophets: there was not one left who came not. And they entered into the house of Baal; and the house of Baal was filled +10:21 +Gr. +mouth to mouth. + from one end to the other. + +And he said to the man who was over the house of the +10:22 +The +Gr. +is from the +Hebrew +word. + wardrobe, Bring forth a robe for all the servants of Baal. And the keeper of the robes brought forth to them. + +And Ju and Jonadab the son of Rechab entered into the house of Baal, and said to the servants of Baal, Search, and see whether there is among you any of the servants of the Lord, or only the servants of Baal, by themselves. + +And he went in to offer sacrifices and whole burnt offerings; and Ju set for himself eighty men without, and said, Every man who shall escape of the men whom I bring into your hand, the life of him +that spares him shall go for his life. + +And it came to pass, when he had finished offering the whole burnt offering, that Ju said to the footmen and to the officers, Go you⌃ in and kill them; let not a man of them escape. So they struck them with the edge of the sword, and the footmen and the officers cast +the bodies forth, and went to the city of the house of Baal. + +And they brought out the pillar of Baal, and burnt it. + +And they tore down the pillars of Baal, and made +10:27 +Gr. +him. + his house a draught-house until this day. + +So Ju abolished Baal out of Israel. + +Nevertheless Ju departed not from following the sins of Jeroboam the son of Nabat, who led Israel to sin: +these were the golden heifers in Baethel and in Dan. + +And the Lord said to Ju, Because of all your deeds wherein you have acted well in doing that which was right in my eyes, according to all things which you have done to the house of Achaab +as they were in my heart, your sons to the fourth generation shall sit upon the throne of Israel. + +But Ju took no heed to walk in the law of the Lord God of Israel with all his heart: he departed not from following the sins of Jeroboam, who made Israel to sin. + +In those days the Lord began to cut +10:32 +Gr. +in Israel. +Hebraism. Israel short; and Azael struck them in every coast of Israel; + +from Jordan eastward all the land of Galaad belonging to the Gadites, of Gaddi and that of Ruben, and of Manasses, from Aroer, which is on the brink of the brook of Arnon, and Galaad and Basan. + +And the rest of the acts of Ju, and all that he did, and all his might, and the wars wherein he engaged, +are not these things written in the book of the chronicles of the kings of Israel? + +And Ju slept with his fathers; and they buried him in Samaria: and Joachaz his son reigned in his stead. + +And the days which Ju reigned over Israel +were twenty-eight years in Samaria. + +

+ + +

And Gotholia the mother of Ochozias saw that her son was dead, and she destroyed all the +11:1 +Gr. +seed of the kingdom. + seed royal. + +And Josabee daughter of king Joram, sister of Ochozias, took Joas the son of her brother, and stole him from among the king's sons that were put to death, +secreting him and his nurse in the bedchamber, and hid him from the face of Gotholia, and he was not slain. + +And he remained with her hid in the house of the Lord six years: and Gotholia reigned over the land. + +And in the seventh year Jodae sent and took the captains of hundreds of the +11:4 +Heb. guards. + Chorri and of the +11:4 +Heb. runners. + Rhasim, and brought them to him into the house of the Lord, and made a covenant of the Lord with them, and adjured them, and Jodae showed them the king's son. + +And charged them, saying, This +is the +11:5 +Gr. +word. + thing which you⌃ shall do. + +Let a third part of you go in +on the sabbath-day, and keep you⌃ the watch of the king's house in the porch; and another third in the gate of the high way, and a third at the gate behind the footmen; and keep you⌃ the guard of the house. + +And there +shall be two parties among you, even every one that goes out on the Sabbath, and they shall keep the guard of the Lord's house before the king. + +And do you⌃ compass the king about every man with his weapon in his hand, and he that goes into the ranges shall die: and they shall be with the king in his going out and in his coming in. + +And the captains of hundreds did all things that the wise Jodae commanded; and they took each his men, both those that went in on the sabbath-day, +11:9 +Gr. +hands. + and those that went out on the sabbath-day, and went in to Jodae the priest. + +And the priest gave to the captains of hundreds the swords and spears of king David that were in the house of the Lord. + +And the footmen stood each +11:11 +Gr. +and his weapon. + with his weapon in his hand from the right corner of the house to the left corner of the house, +by the altar and the house round about the king. + +And he +11:12 +Gr. +sent forth. + brought forth the king's son, and +11:12 +Gr. +gave. + put upon him the crown and +gave him the testimony; and he made him king, and anointed him: and they clapped +their hands, and said, Long live the king. + +And Gotholia heard the sound of the people running, and she went in to the people to the house of the Lord. + +And she looked, and, behold, the king stood near a pillar according to the manner; and the singers and the +11:14 +Gr. +trumpets. + trumpeters were before the king and all the people of the land +even rejoicing and sounding with trumpets: and Gotholia tore her garments, and cried, A conspiracy, a conspiracy. + +And Jodae the priest commanded the captains of hundreds who were over the host, and said to them, Bring her forth without the ranges, +and he that goes in after her shall certainly die by the sword. For the priest said, Let her not however be slain in the house of the Lord. + +And they laid hands upon her, and went in by the way of the horses' entrance into the house of the Lord, and she was slain there. + +And Jodae made a covenant between the Lord and the king and the people, that they should be the Lord's people; also between the king and the people. + +And all the people of the land went into the house of Baal, and tore it down, and completely broke in pieces his altars and his images, and they killed Mathan the priest of Baal before the altars. And the priest +11:18 +Gr. +placed. See John 15:16. + appointed overseers +11:18 +Gr. +in +or +into. + over the house of the Lord. + +And he took the captains of the hundreds, and the Chorri, and the Rhasim, and all the people of the land, and brought down the king out of the house of the Lord; and they went in by the way of the gate of the +11:19 +Or, +guard, +A.V. footmen of the king's house, and seated him there on the throne of the kings. + +And all the people of the land rejoiced, and the city was at rest: and they killed Gotholia with the sword in the house of the king. + +Joas +was +11:21 +Gr. +a son of seven years in his reigning. + seven years old when he began to reign. + +

+ + +

Joas +12:1 +Gr. +reigned. + began to reign in the seventh year of Ju, and he reigned forty years in Jerusalem: and his mother's name +was Sabia of Bersabee. + +And Joas did that which was right in the sight of the Lord all the days that Jodae the priest instructed him. + +Only there were not +any of the high places removed, and the people still sacrificed there, and burned incense on the high places. + +And Joas said to the priests, +As for all the money of the holy things that is brought into the house of the Lord, the money of valuation, +as each man brings the money of valuation, all the money which +12:4 +Gr. +it may come into the heart, etc. + any man may feel disposed to bring into the house of the Lord, + +let the priests take it to themselves, every man from +the proceeds of his sale: and they shall repair the breaches of the house in all +places wherever a breach shall be found. + +And it came to pass in the twenty-third year of king Joas the priests +had not repaired the breaches of the house. + +And king Joas called Jodae the priest, and the +other priests, and said to them, Why have you⌃ not repaired the +12:7 +Gr. +breach. + breaches of the house? now then receive no +more money from your sales, for you⌃ shall give it to +repair the breaches of the house. + +And the priests consented to receive no more money of the people, and not to repair the breaches of the house. + +And Jodae the priest took a chest, and bored a hole in the lid of it, and set it by the +12:9 +The +Gr. +is a Hebrew word in Greek letters. + altar in the house of a man +belonging to the house of the Lord, and the priests that kept the door put +therein all the money that was found in the house of the Lord. + +And it came to pass, when they saw that +there was much money in the chest, that the king's scribe and the high priest went up, and they tied up and counted the money that was found in the house of the Lord. + +And they gave the money that had been +12:11 +Gr. +prepared. + collected into the hands of them that wrought the works, the overseers of the house of the Lord; and they gave it out to the carpenters and to the builders that wrought in the house of the Lord. + +And to the +12:12 +Gr. +wall-builders. + masons, and to the hewers of stone, to purchase timber and hewn stone to repair the +12:12 +Gr. +breach. + breaches of the house of the Lord, for all that was spent on the house of the Lord to repair +it. + +Only there +12:13 +Gr. +shall not be made. This change of future and past is frequent. + were not to be made for the house of the Lord silver +12:13 +Gr. +doors. + plates, studs, bowls, or trumpets, any vessel of gold or vessel of silver, of the money that was brought +12:13 +Gr. +in. + into the house of the Lord: + +for they +12:14 +Gr. +will give, +vide +v. 13. + were to give it to the workmen, and they repaired therewith the house of the Lord. + +Also they took no account of the men into whose hands they gave the money to give to the workmen, for they +12:15 +Heb. באמכה הס. + acted faithfully. + +Money for a sin-offering, and money for a trespass-offering, whatever happened to be brought into the house of the Lord, went to the priests. + +Then went up Azael king of Syria, and fought against Geth, and took it: and Azael set his face to go against Jerusalem. + +And Joas king of Juda took all the holy things which Josaphat, and Joram, Ochozias, his fathers, and kings of Juda +had consecrated, and +12:18 +Gr. +his own holy things. + what he had himself dedicated, and all the gold that was found in the treasures of the Lord's house and the king's house, and he sent +them to Azael king of Syria; and he went up from Jerusalem. + +And the rest of the acts of Joas, and all that he did, behold, +are not these things written in the book of the chronicles of the kings of Juda? + +And his servants rose up and made a +12:20 +Complut. +πάντα. + conspiracy, and struck Joas in the house of Mallo that is in Sela. + +And Jezirchar the son of Jemuath, and Jezabuth Somer's son, his servants, struck him, and he died; and they buried him with his fathers in the city of David: and Amessias his son reigned in his stead. + +

+ + +

In the twenty-third year of Joas son of Ochozias king of Juda +13:1 +Gr. +reigned. + began Joachaz the son of Ju to reign in Samaria, +and he reigned seventeen years. + +And he did that which was evil in the sight of the Lord, and walked after the sins of Jeroboam the son of Nabat, who led Israel to sin; he departed not from +13:2 +Gr. +it. + them. + +And the Lord was very angry with Israel, and delivered them into the hand of Azael king of Syria, and into the hand of the son of Ader son of Azael, all their days. + +And Joachaz implored the Lord, and the Lord listened to him, for he saw the affliction of Israel, because the king of Syria afflicted them. + +And the Lord gave deliverance to Israel, and they escaped from under the hand of Syria: and the children of Israel lived in their tents as +13:5 +Gr. +yesterday and today. + heretofore. + +Only they departed not from the sins of the house of Jeroboam, who led Israel to sin: they walked in +13:6 +Gr. +it, +sc. +ἀμαρτία. + them—moreover the grove also remained in Samaria. + +Whereas there was not left any +13:7 +Gr. +people. + army to Joachaz, except fifty horsemen, and ten chariots, and ten thousand infantry: for the king of Syria had destroyed them, and they made them as dust for trampling. + +And the rest of the acts of Joachaz, and all that he did, and his mighty acts +are not these things written in the book of the chronicles of the kings of Israel? + +And Joachaz slept with his fathers, and they buried him in Samaria: and Joas his son reigned in his stead. + +In the thirty-seventh year of Joas king of Juda, Joas the son of Joachaz +13:10 +Gr. +reigned. + began to reign over Israel in Samaria sixteen years. + +And he did that which was evil in the sight of the Lord; he departed not from all the sin of Jeroboam the son of Nabat, who led Israel to sin: he walked in it. + +And the rest of the acts of Joas, and all that he did, and his mighty acts which he performed together with Amessias king of Juda, +are not these written in the book of the chronicles of the kings of Israel? + +And Joas slept with his fathers, and Jeroboam sat upon his throne, and he was buried in Samaria with the kings of Israel. + +Now Elisaie was sick of his sickness, whereof he died: and Joas king of Israel went down to him, and wept over his face, and said, +My father, +my father, the chariot of Israel, and the horseman thereof! + +And Elisaie said to him, Take bow and +13:15 +Gr. +weapons. + arrows. And he took to himself a bow and arrows. + +And he said to the king, Put your hand on the bow. And Joas put his hand upon +it: and Elisaie put his hands upon the king's hands. + +And he said, Open the window eastward. And he opened it. And Elisaie said, Shoot. And he shot. And +Elisaie said, The arrow of the Lord's deliverance, and the arrow of deliverance +13:17 +Gr. +in. + from Syria; and you shall strike the Syrians in Aphec until you have consumed them. + +And Elisaie said to him, Take bow and arrows. And he took them. And +he said to the king of Israel, Strike upon the ground. And the king struck three times, and stayed. + +And the man of God was grieved at him, and said, If you had struck five or six times, then you should have struck Syria till you had consumed them; but now you shall strike Syria +only thrice. + +And Elisaie died, and they buried him. And the bands of the Moabites came into the land, +13:20 +Gr. +the year having come. + at the beginning of the year. + +And it came to pass as they were burying a man, that behold, they saw a band +of men, and they cast the man into the grave of Elisaie: and as soon as he touched the bones of Elisaie, he revived and stood up on his feet. + +And Azael greatly afflicted Israel all the days of Joachaz. + +And the Lord had mercy and compassion upon them, and had respect to them because of his covenant with Abraam, and Isaac, and Jacob; and the Lord would not destroy them, and did not cast them out from his presence. + +And Azael king of Syria died, and the son of Ader his son reigned in his stead. + +And Joas the son of Joachaz returned, and took the cities out of the hand of the son of Ader the son of Azael, which he had taken out of the hand of Joachaz his father in the war: thrice did Joas strike him, and he recovered the cities of Israel. + +

+ + +

In the second year of Joas the son of Joachaz king of Israel, did Amessias also the son of Joas the king of Juda begin to reign. + + +14:2 +Gr. +a son of 25 years in his reigning. + Twenty and five years old was he when he +14:2 +Gr. +reigned. + began to reign, and he reigned twenty and nine years in Jerusalem: and his mother's name +was Joadim of Jerusalem. + +And he did that which was right in the sight of the Lord, but not as David his father: he did according to all things that his father Joas did. + +Only he removed not the high places: as yet the people sacrificed and burnt incense on the high places. + +And it came to pass when the kingdom was established in his hand, that he +14:5 +Gr. +struck. + killed his servants that had +14:5 +Gr. +struck. + slain the king his father. + +But he killed not the sons of those that had slain him; according as it is written in the book of the laws of Moses, as the Lord gave commandment, saying, The fathers shall not be put to death for the children, and the children shall not be put to death for the fathers; but every one +14:6 +Or. +be put to death, etc. + shall die for his own sins. + +He struck of Edom ten thousand in the +14:7 +The +Gr. +is from בוי מלח Keri. + valley of salt, and took +14:7 +Heb. Selah + the Rock in the war, and called its name Jethoel until this day. + +Then Amessias sent messengers to Joas son of Joachaz son of Ju king of Israel, saying, Come, let us +14:8 +Gr. +appear to faces. + look one another in the face. + +And Joas the king of Israel sent to Amessias king of Juda, saying, The thistle that was in Libanus sent to the cedar that was in Libanus, saying, Give my daughter to your son to wife: and the wild beasts of the field that were in Libanus passed by and trod down the thistle. + +You have struck and wounded Edom, and your heart has lifted you up: +14:10 +Gr. +glorify yourself sitting in your house. + stay at home and glorify yourself; for therefore are you quarrelsome to your hurt? So +both you will fall and Juda with you. + +Nevertheless Amessias listened not: so Joas king of Israel went up, and he and Amessias king of Juda looked one another in the face in Baethsamys of Juda. + +And Juda +14:12 +Gr. +fell. + was overthrown before Israel, and +every man fled to his tent. + +And Joas king of Israel took Amessias the son of Joas the son of Ochozias, in Baethsamys; and he came to Jerusalem, and broke down the wall of Jerusalem, +beginning at the gate of Ephraim as far as the gate of the corner, four hundred cubits. + +And he took the gold, and the silver, and all the vessels that were found in the house of the Lord, and in the treasures of the king's house, and the +14:14 +Gr. +and +Heb. lit. sons of exchanges. + hostages, and returned to Samaria. + +And the rest of the acts of Joas, +even all that he did in his might, how he warred with Amessias king of Juda, are not these things written in the book of the chronicles of the kings of Israel? + +And Joas slept with his fathers, and was buried in Samaria with the kings of Israel; and Jeroboam his son reigned in his stead. + +And Amessias the son of Joas king of Juda lived after the death of Joas son of Joachaz king of Israel fifteen years. + +And the rest of the acts of Amessias, and all that he did, +are not these written in the book of the chronicles of the kings of Juda? + +And they +14:19 +Gr. +conspired with a conspiracy. + formed a conspiracy against him in Jerusalem, and he fled to Lachis: and they sent after him to Lachis, and killed him there. + +And they +14:20 +Gr. +lifted him. + brought him upon horses; and he was buried in Jerusalem with his fathers in the city of David. + +And all the people of Juda took Azarias, and he was +14:21 +Gr. +a son of 16 years. + sixteen years old, and made him king in the room of his father Amessias. + +He built Aeloth, and restored it to Juda, after the king slept with his fathers. + +In the fifteenth year of Amessias son of Joas king of Juda +14:23 +Gr. +reigned. + began Jeroboam son of Joas to reign over Israel in Samaria forty and one years. + +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 Nabat, who led Israel to sin. + +He recovered the coast of Israel from the entering in of Aemath to the sea of +14:25 +i.e. +the plain. + Araba, according to the word of the Lord God of Israel, which he spoke by +14:25 +Gr. +the hand of his servant. + his servant Jonas the son of Amathi, the prophet of Gethchopher. + +For the Lord saw +that the affliction of Israel +was very bitter, and that they were few in number, straitened and in lack, and +14:26 +Or, +left alone. + destitute, and Israel had no helper. + +And the Lord +14:27 +Or, +said not that he would. + said that he would not blot out the seed of Israel from under heaven; so he delivered them by the hand of Jeroboam the son of Joas. + +And the rest of the acts of Jeroboam and all that he did, and his mighty deeds, which he achieved in war, and how he recovered Damascus and Aemath to Juda in Israel, +are not these things written in the book of the chronicles of the kings of Israel? + +And Jeroboam slept with his fathers, even with the kings of Israel; and Zacharias his son reigned in his stead. + +

+ + +

In the twenty-seventh year of Jeroboam king of Israel Azarias the son of Amessias king of Juda +15:1 +Gr. +reigned. + began to reign. + + +15:2 +Gr. +a son of 16 years was he in his reigning. + Sixteen years old was he when he began to reign, and he reigned fifty-two years in Jerusalem: and his mother's name was Jechelia of Jerusalem. + +And he did that which was right in the eyes of the Lord, according to all things that Amessias his father did. + +Only he took not away +any of the high places: as yet the people sacrificed and burnt incense on the high places. + +And the Lord +15:5 +Gr. +touched. + plagued the king, and he was +15:5 +Gr. +made leprous. + leprous till the day of his death; and he reigned in +15:5 +The +Gr. +is from החפשיח. + a separate house. And Joatham the king's son +was over the household, judging the people of the land. + +And the rest of the acts of Azarias, and all that he did, +are not these written in the book of the chronicles of the kings of Juda? + +And Azarias slept with his fathers, and they buried him with his fathers in the city of David: and Joatham his son reigned in his stead. + +In the thirty and eighth year of Azarias king of Juda Zacharias the son of Jeroboam +15:8 +Gr. +reigned. + began to reign over Israel in Samaria six months. + +And he did that which was evil in the eyes of the Lord, as his fathers had done: he departed not from all the sins of Jeroboam the son of Nabat, who made Israel to sin. + +And Sellum the son of Jabis +and others conspired against him, and they struck him +15:10 +Heb. קבלעס before the people. + +in Keblaam, and killed him, and he reigned in his stead. + +And the rest of the acts of Zacharias, behold, they are written in the book of the chronicles of the kings of Israel. + + +This was the word of the Lord which he spoke to Ju, saying, Your sons of the fourth generation shall sit upon the throne of Israel: and it was so. + +And Sellum the son of Jabis reigned: and in the thirty and ninth year of Azarias king of Juda +15:13 +Gr. +reigned. + began Sellum to reign a full month in Samaria. + +And Manaem the son of Gaddi went up out of Tharsila, and came to Samaria, and struck Sellum the son of Jabis in Samaria, and killed him. + +And the rest of the acts of Sellum, and his conspiracy wherein he was engaged, behold, they are written in the book of the chronicles of the kings of Israel. + +Then Manaem struck both Thersa and all that was in it, and its borders extending beyond Thersa, because they opened not to him: and he struck it, and ripped up the women with child. + +In the thirty and ninth year of Azarias king of Juda began Manaem the son of Gaddi to reign over Israel in Samaria ten years. + +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 Nabat, who led Israel to sin. + +In his days went up Phua king of the Assyrians against the land: and Manaem gave to Phua a thousand talents of silver to aid him with his power. + +And Manaem raised the silver +by a tax upon Israel, even on every mighty man in wealth, to give to the king of the Assyrians, fifty shekels +levied on each man; and the king of the Assyrians departed, and remained not there in the land. + +And the rest of the acts of Manaem, and all that he did, behold, are not these written in the book of the chronicles of the kings of Israel? + +And Manaem slept with his fathers; and Phakesias his son reigned in his stead. + +In the fifties year of Azarias king of Juda, +15:23 +Gr. +reigned. + began Phakesias the son of Manaem to reign over Israel in Samaria two years. + +And he did that which was evil in the sight of the Lord: he departed not from the sins of Jeroboam the son of Nabat, who made Israel to sin. + +And Phakee the son of Romelias, his officer, conspired against him, and struck him in Samaria in the front of the king's house, with Argob and Aria, and with him +there were fifty men of the four hundred: and he killed him, and reigned in his stead. + +And the rest of the acts of Phakesias, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel. + +In the fifty-second year of Azarias king of Juda +15:27 +Gr. +reigned. + began Phakee the son of Romelias to reign over Israel in Samaria twenty years. + +And he did that which was evil in the eyes of the Lord: he departed not from all the sins of Jeroboam the son of Nabat, who led Israel to sin. + +In the days of Phakee king of Israel came Thalgath-phellasar king of the Assyrians, and took Ain, and Abel, and Thamaacha, and Anioch, and Kenez, and Asor, and +15:29 +Or, +Galaan. + Galaa, and Galilee, +even all the land of Nephthali, and carried them away to the Assyrians. + +And Osee son of Ela +15:30 +Gr. +conspired, etc. + formed a conspiracy against Phakee the son of Romelias, and struck him, and killed him, and reigned in his stead, in the twentieth year of Joatham the son of Azarias. + +And the rest of the acts of Phakee, and all that he did, behold, these +are written in the book of the chronicles of the kings of Israel. + +In the second year of Phakee son of Romelias king of Israel +15:32 +Gr. +reigned. + began Joatham the son of Azarias king of Juda to reign. + + +15:33 +Gr. +a son of 25 years in his reigning. + Twenty and five years old was he when he began to reign, and he reigned sixteen years in Jerusalem: and his mother's name +was Jerusa daughter of Sadoc. + +And he did that which was right in the sight of the Lord, according to all things that his father Azarias did. + +Nevertheless he took not away the high places: as yet the people sacrificed and burnt incense on the high places. He built the upper gate of the Lord's house. + +And the rest of the acts of Joatham, and all that he did, +are not these written in the book of the chronicles of the kings of Juda? + +In those days the Lord began to +15:37 +Or, +let loose. + send forth against Juda Raasson king of Syria, and Phakee son of Romelias. + +And Joatham slept with his fathers, and was buried with his fathers in the city of David his father: and Achaz his son reigned in his stead. + +

+ + +

In the seventeenth year of Phakee son of Romelias began Achaz the son of Joatham king of Juda to reign. + +Twenty years old was Achaz when he began to reign, and he reigned sixteen years in Jerusalem; and he did not that which was right in the eyes of the Lord his God faithfully, as David his father +had done. + +And he walked in the way of the kings of Israel, yes, he 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. + +And he sacrificed and burnt incense on the high places, and upon the hills, and under every +16:4 +Or, +tree of the grove or wood. + shady tree. + +Then went up Raasson king of Syria and Phakee son of Romelias king of Israel against Jerusalem to war, and besieged Achaz, but could not +16:5 +Gr. +fight. + prevail +against him. + +At that time Raasson king of Syria recovered Aelath to Syria, and drove out the Jews from Aelath, and the Idumeans came to Aelath, and lived there until this day. + +And Achaz sent messengers to Thalgath-phellasar king of the Assyrians, saying, I am your servant and your son: come up, deliver me out of the hand of the king of Syria, and out of the hand of the king of Israel, who are rising up against me. + +And Achaz took the silver and the gold that was found in the treasures of the house of the Lord, and of the king's house, and sent gifts to the king. + +And the king of the Assyrians listened to him: and the king of the Assyrians went up to Damascus and took it, and removed +16:9 +Gr. +it. + the inhabitants, and killed king Raasson. + +And king Achaz went to Damascus to meet Thalgath-phellasar king of the Assyrians at Damascus; and he saw +16:10 +Or, +the altar. + an altar at Damascus. And king Achaz sent to Urias the priest the pattern of the altar, and its proportions, and all its workmanship. + +And Urias the priest built the altar, according to all +the directions which king Achaz sent from Damascus. + +And the king saw the altar, and went up to it, + +and +16:13 +Gr. +and +Heb. offered +in way of incense. + See 2CH 13:10. + offered his whole burnt offering, and his meat-offering, and his drink-offering, and poured out the blood of his peace-offerings on the brazen altar that was before the Lord. + +And he brought forward +the one before the house of the Lord from between the altar and the house of the Lord, and he +16:14 +Or, +displayed it. + set it openly by the +16:14 +Gr. +thigh. + side of the altar northwards. + +And king Achaz charged Urias the priest, saying, Offer upon the great altar the whole burnt offering in the morning and the meat-offering in the evening, and the whole burnt offering of the king, and his meat-offering, and the whole burnt offering of all the people, and their meat-offering, and their drink-offering; and you shall pour +16:15 +Or, +the blood of every, etc. + all the blood of the whole burnt offering, and all the blood of +any other sacrifice upon it: and the brazen altar shall be for me in the morning. + +And Urias the priest did according to all that king Achaz commanded him. + +And king Achaz cut off the borders of the bases, and removed the laver from off them, and took down the sea from the brazen oxen that were under it, and set it upon a base of stone. + +And he made a base for the throne in the house of the Lord, and he turned the king's entrance without in the house of the Lord because of the king of the Assyrians. + +And the rest of the acts of Achaz, even all that he did, +are not these written in the book of the chronicles of the kings of Juda? + +And Achaz slept with his fathers, and was buried in the city of David: and Ezekias his son reigned in his stead. + +

+ + +

In the twelfth year of Achaz king of Juda +17:1 +Gr. +reigned. + began Osee the son of Ela to reign in Samaria over Israel nine years. + +And he did evil in the eyes of the Lord, only not as the kings of Israel that were before him. + +Against him came up Salamanassar king of the Assyrians; and Osee became his servant, and rendered him tribute. + +And the king of the Assyrians found iniquity in Osee, in that he sent messengers to Segor king of Egypt, and brought not a tribute to the king of the Assyrians in that year: and the king of the Assyrians besieged him, and bound him in the prison-house. + +And the king of the Assyrians went up +17:5 +Or, +through. + against all the land, and went up to Samaria, and besieged it +for three years. + +In the ninth year of Osee the king of the Assyrians took Samaria, and carried Israel away to the Assyrians, and settled them in Alae, and in Abor, +near the rivers of Gozan, and +in the mountains of the Medes. + +For it came to pass that the children of Israel +had transgressed against the Lord their God, who had brought them up out of the land of Egypt, from under the hand of Pharao king of Egypt, and they feared other gods, + +and walked in the +17:8 +Or, +customs. + statutes of the nations which the Lord cast out before the face of the children of Israel, and of the kings of Israel as many as did +such things, + +and +in those of the children of Israel as many as +17:9 +Gr. +cloaked matters. + secretly practised customs, not as +they should have done, against the Lord their God: + +and they built for themselves high places in all their cities, from the tower of the watchmen to the +17:10 +Gr. +strong. + fortified city. And they made for themselves pillars and groves on every high hill, and under every shady tree. + +And burned incense there on all high places, as the nations +did whom the Lord removed from before them, and dealt with familiar spirits, and they carved +images to provoke the Lord to anger. + +And they served the idols, of which the Lord said to them, You⌃ shall not do this thing +against the Lord. + +And the Lord testified against Israel and against Juda, even by the hand of all his prophets, +and of every seer, saying, Turn you⌃ from your evil ways, and keep my commandments and my ordinances, and all the law which I commanded your fathers, +and all that I sent to them by the hand of my servants the prophets. + +But they listened not, and made their +17:14 +Gr. +back. +Heb. back part of the neck. + neck harder than the neck of their fathers. + +And they kept not any of his testimonies which he charged them; and they walked after vanities, and became vain, and after the nations round about them, concerning which the Lord had charged them not to do accordingly. + +They forsook the commandments of the Lord their God, and made themselves +17:16 +Gr. +a graven image. + graven images, +even two heifers, and they made groves, and worshipped all the host of heaven, and served Baal. + +And they caused their sons and their daughters to pass through the fire, and used divinations and auspices, and +17:17 +Gr. +were sold. + sold themselves to work wickedness in the sight of the Lord, to provoke him. + +And the Lord was very angry with Israel, and removed them out of his sight; and there was only left the tribe of Juda quite alone. + +Nay even Juda kept not the commandments of the Lord their God, but they walked according to the customs of Israel which they practised, and rejected the Lord. + +And the Lord was angry with the whole seed of Israel, and +17:20 +Or, +unsettled them. + troubled them, and gave them into the hand of them that spoiled them, until he cast them out of his presence. + + +17:21 +The +Complut. +is better, πλὴν ὅτι ἐῤῤάγη ὁ Ἰσραὴλ ἀπ᾿οἴκου κ.τ.λ. + Forasmuch as Israel revolted from the house of David, and they made Jeroboam the son of Nabat king: and Jeroboam drew off Israel from following the Lord, and led them to sin a great sin. + +And the children of Israel walked in all the sin of Jeroboam which he committed; they departed not from it, + +until the Lord removed Israel from his presence, as the Lord spoke by +17:23 +Gr. +by the hand of. + all his servants the prophets; and Israel was removed from off their land to the Assyrians until this day. + +And the king of Assyria brought from Babylon the men of Chutha, +and men from Aia, and from Aemath, and Seppharvaim, and they were settled in the cities of Samaria in the place of the children of Israel: and they inherited Samaria, and were settled in its cities. + +And it was so at the beginning of their establishment there +that they feared not the Lord, and the Lord sent lions among them, and they killed some of them. + +And they spoke to the king of the Assyrians, saying, The nations whom you have removed and substituted in the cities of Samaria +for the Israelites, know not +17:26 +Gr. +judgment. +Hebraism. the manner of the God of the land: and he has sent the lions against them, and, behold, they are slaying them, because they know not the manner of the God of the land. + +And the king of the Assyrians commanded, saying, Bring some +Israelites thence, and let them go and dwell there, and they shall teach them the manner of the God of the land. + +And they brought one of the priests whom they had removed from Samaria, and he settled in Baethel, and taught them how they should fear the Lord. + +But the nations made each their own gods, and put them in the house of the high places which the Samaritans +had made, each nation in the cities in which they lived. + +And the men of Babylon made Socchoth Benith, and the men of Chuth made Ergel, and the men of Haemath made Asimath. + +And the Evites made Eblazer and Tharthac, and the +inhabitant of Seppharvaim +did evil when they burnt their sons in the fire to Adramelech and Anemelech, the gods of Seppharvaim. + +And they feared the Lord, yet they established their abominations in the houses of the high places which they made in Samaria, each nation in the city in which they lived: and they feared the Lord, and they made for themselves priests of the high places, and sacrificed for themselves in the house of the high places. + +And they feared the Lord, and served their gods according to the manner of the nations, whence +their lords brought them. + +Until this day they did according to their manner: they fear +the Lord, and they do according to their customs, and according to their manner, and according to the law, and according to the commandment which the Lord commanded the sons of Jacob, whose name he made Israel. + +And the Lord made a covenant with them, and charged them, saying, You⌃ shall not fear other gods, neither shall you⌃ worship them, nor serve them, nor sacrifice to them: + +but only to the Lord, who brought you up out of the land of Egypt with great strength and with a high arm: him shall you⌃ fear, and him shall you⌃ worship; to him shall you⌃ sacrifice. + +You⌃ shall observe continually the ordinances, and the judgments, and the law, and the commandments which he wrote for you to do; and you⌃ shall not fear other gods. + +Neither shall you⌃ forget the covenant which he made with you: and you⌃ shall not fear other gods. + +But you⌃ shall fear the Lord your God, and he shall deliver you from all your enemies. + +Neither shall you⌃ comply with their practice, which they follow. + +So these nations feared the Lord, and served their graven images: yes, their sons and their son's sons do until this day even as their fathers did. + +

+ + +

And it came to pass in the third year of Osee son of Ela king of Israel +that Ezekias son of Achaz king of Juda +18:1 +Gr. +reigned. + began to reign. + + +18:2 +Gr. +a son of 25 years in his reigning. + Five and twenty years old was he when he began to reign, and he reigned twenty and nine years in Jerusalem: and his mother's name +was Abu, daughter of Zacharias. + +And he did that which was right in the sight of the Lord, according to all that his father David did. + +He +18:4 +Or, +destroyed. + removed the high places, and broke in pieces the pillars, and utterly destroyed the groves, and the brazen serpent which Moses made: because until those days the children of Israel burnt incense to it: and he called it Neesthan. + +He +18:5 +Gr. +hoped. + trusted in the Lord God of Israel; and after him there was not any like him among the kings of Juda, +18:5 +Gr. +and. + nor among those that were before him. + +And he clave to the Lord, he departed not +18:6 +Gr. +from behind him. + from following him; and he kept his commandments, as many as he commanded Moses. + +And the Lord was with him; and he was wise in all that he undertook: and he revolted from the king of the Assyrians, and served him not. + +He struck the Philistines +even to Gaza, and to the border of it, from the tower of the watchmen even to the strong city. + +And it came to pass in the fourth year of King Ezekias (this is the seventh year of Osee son of Ela king of Israel,) +that Salamanassar king of the Assyrians came up against Samaria, and besieged it. + +And he took it +18:10 +Gr. +from. + at the end of three years, in the sixth year of Ezekias, (this +is the ninth year of Osee king of Israel, when Samaria was taken.) + +And the king of the Assyrians carried away the +18:11 +Gr. +Samaria to the Assyrians. + Samaritans to Assyria, and put them in Alae and in Abor, +by the river Gozan, and +in the mountains of the Medes; + +because they listened not to the voice of the Lord their God, and transgressed his covenant, +even in all things that Moses the servant of the Lord commanded, and listened not +to them, nor did +them. + +And in the fourteenth year of king Ezekias came up Sennacherim king of the Assyrians against the strong cities of Juda, and took them. + +And Ezekias king of Juda sent messengers to the king of the Assyrians to Lachis, saying, I have offended; depart from me: whatever you shall lay upon me, I will bear. And the king of Assyria laid upon Ezekias king of Juda +a tribute of three hundred talents of silver, and thirty talents of gold. + +And Ezekias gave all the silver that was found in the house of the Lord, and in the treasures of the king's house. + +At that time Ezekias cut off +the gold from the doors of the temple, and +from the pillars which Ezekias king of Juda +had overlaid with gold, and gave +18:16 +Gr. +them. + it to the king of the Assyrians. + +And the king of the Assyrians sent Tharthan and Raphis and Rapsakes from Lachis to king Ezekias with a +18:17 +Gr. +heavy. + strong force against Jerusalem. And they went up and came to Jerusalem, and stood by the aqueduct of the upper pool, which is by the way of the fuller's field. + +And they cried to Ezekias: and there came to him Heliakim the son of Chelcias the steward, and Somnas the scribe, and Joas the son of Saphat the recorder. + +And Rapsakes said to them, Say now to Ezekias, Thus says the king, the great king of the Assyrians, What +is this confidence wherein you trust? + +You have said, (but +they are +18:20 +Gr. +words of lips. + mere words,) +I have counsel and strength for war. Now then +18:20 +Gr. +in whom trusting, etc. + in whom do you trust, that you have revolted from me? + +See now, are you trusting for yourself on this broken staff of reed, +even upon Egypt? whoever shall stay himself upon it, it shall even go into his hand, and pierce it: so +is Pharao king of Egypt to all that trust on him. + +And whereas you have said to me, We trust on the Lord God: +is not this he, +18:22 +Gr. +his. + whose high places and altars Ezekias has removed, and has said to Juda and Jerusalem, You⌃ shall worship before this altar in Jerusalem? + +And now, I pray you, make and agreement with my lord the king of the Assyrians, and I will give you two thousand horses, if you shall be able on your part to +18:23 +Gr. +give. + set riders upon them. + +How then will you turn away the face of one +18:24 +Gr. +local ruler. + petty governor, from among the least of my lord's servants? whereas you trust for yourself on Egypt for chariots and horsemen. + +And now have we come up without the Lord against this place to destroy it? The Lord said to me, Go up against this land, and destroy it. + +And Heliakim the son of Chelkias, and Somnas, and Joas, said to Rapsakes, Speak now to your servants in the Syrian language, for we understand it; and speak not with us in the Jewish language: and why do you speak in the ears of the people that are on the wall? + +And Rapsakes said to them, Has my master sent me to your master, and to you, to speak these words? +has he not +sent me to the men who sit on the wall, that they may eat their own dung, and drink their own water together with you. + +And Rapsakes stood, and cried with a loud voice in the Jewish language, and spoke, and said, Hear the words of the great king of the Assyrians: + +thus says the king, Let not Ezekias encourage you with words: for he shall not be able to deliver you out of his hand. + +And let not Ezekias cause you to trust on the Lord, saying, The Lord will certainly deliver us; this city shall not be delivered +18:30 +Gr. +in. + into the hand of the king of the Assyrians: listen not to Ezekias: + +for thus says the king of the Assyrians, +18:31 +Lit. +make a blessing with me. + Gain my favor, and come forth to me, and every man shall drink +of the wine of his own vine, and every man shall eat of his own fig tree, and shall drink water out of his own cistern; + +until I come and remove you to a land like your own land, a land of corn and wine, and bread and vineyards, a land of olive oil, and honey, and you⌃ shall live and not die: and do not you⌃ listen to Ezekias, for he deceives you, saying, The Lord shall deliver you. + +Have the Gods of the nations at all delivered each their own land out of the hand of the king of the Assyrians? + +Where is the god of Haemath, and of Arphad? where is the god of Seppharvaim, Ana, and Aba? for have they delivered Samaria out of my hand? + +Who +is there among all the gods of the countries, who have delivered their countries out of my hand, that the Lord +18:35 +Gr. +shall deliver. + should deliver Jerusalem out of my hand? + +But +the men were silent, and answered him not a word: for +there was a commandment of the king, saying, You⌃ shall not answer him. + +And Heliakim the son of Chelcias, the steward, and Somnas the scribe, and Joas the son of Saphat the recorder came in to Ezekias, having torn their garments; and they reported to him the words of Rapsakes. + +

+ + +

And it came to pass when king Ezekias heard it, that he tore his clothes, and put on sackcloth, an went into the house of the Lord. + +And he sent Heliakim the steward, and Somnas the scribe, and the elders of the priests, clothed with +19:2 +Gr. +sackcloth. + sackcloth, to Esaias the prophet the son of Amos. + +And they said to him, Thus says Ezekias, This day +is a day of tribulation, and rebuke, and provocation: for the children are come to the travail-pangs, but the mother has no strength. + + +19:4 +Gr. +if by any means. + Peradventure the Lord your God will hear all the words of Rapsakes, whom the king of Assyria his master has sent to reproach the living God and to revile him with the words which the Lord your God has heard: and you shall +19:4 +Gr. +take. + offer +your prayer for the remnant that is found. + +So the servants of king Ezekias came to Esaias. + +And Esaias said to them, Thus shall you⌃ say to your master, Thus says the Lord, Be not afraid of the words which you have heard, wherewith the servants of the king of the Assyrians have blasphemed. + +Behold, I +19:7 +Gr. +give. + send a blast upon him, and he shall hear a report, and shall return to his own land; and I will overthrow him with the sword in his own land. + +So Rapsakes returned, and found the king of Assyria warring against Lobna: for he heard that he +had departed from Lachis. + +And he heard concerning Tharaca king of the Ethiopians, saying, Behold, he is come forth to fight with you: and he returned, and sent messengers to Ezekias, saying, + +Let not your God on whom you trust encourage you, saying, Jerusalem shall not be delivered into the hands of the king of the Assyrians. + +Behold, you have heard all that the kings of the Assyrians have done in all the lands, to +19:11 +Gr. +curse them. +q.d. +devote to destruction. + waste them utterly: and shall you be delivered? + +Have the gods of the nations at all delivered them, whom my fathers destroyed; both Gozan, and Charran, and Raphis, and the sons of Edem who were in Thaesthen? + +Where is the king of Haemath, and the king of Arphad? and where is the king of the city of Seppharvaim, of Ana, and Aba? + +And Ezekias took +19:14 +Gr. +the books. + the letter from the hand of the messengers, and +19:14 +Gr. +them. + read it: and he went up to the house of the Lord, and Ezekias spread it before the Lord, + +and said, O Lord God of Israel that dwell over the cherubs, you are the only god in all the kingdoms of the earth; you have made heaven and earth. + +Incline your ear, O Lord, and hear: open, Lord, your eyes, and see: and hear the words of Sennacherim, which he has sent to reproach the living God. + +For truly, Lord, the kings of +19:17 +Gr. +the Assyrians. + Assyria have wasted the nations, + +and +19:18 +Gr. +gave. + have cast their gods into the fire: because they are no gods, but the works of men's hands, wood and stone; and they have destroyed them. + +And now, O Lord our God, deliver us out of his hand, and all the kingdoms of the earth shall know that you alone +are the Lord God. + +And Esaias the son of Amos sent to Ezekias, saying, Thus says the Lord God of hosts, the God of Israel, I have heard +19:20 +Lit. +what things you have prayed. + your prayer to me concerning Sennacherim king of the Assyrians. + +This +is the word which the Lord has spoken against him; The virgin daughter of Sion has made light of you, and mocked you; the daughter of Jerusalem has shaken her head at you. + +Whom have you reproached, and whom have you reviled? and against whom have you lifted up your voice, and raised your eyes on high? +Is it against the Holy One of Israel? + +By +19:23 +Gr. +by the hand of. + your messengers you have reproached the Lord, and have said, I will go up with the multitude of my chariots, to the height of the mountains, to the sides of Libanus, and I have cut down the +19:23 +Gr. +bulk or size. + height of his cedar, +and his choice cypresses; and I have come into the midst of the forest and of Carmel. + +I have +19:24 +Alex. +reads ἐφύλαξα. + refreshed +myself, and have drunk strange waters, and I have dried up with the sole of my foot all the rivers of fortified places. + +I have brought about +the matter, I have brought it to a conclusion; and it is come to the +19:25 +Gr. +captivities. + destruction of the bands of warlike prisoners, +even of strong cities. + +And they that lived in them were weak in hand, they quaked and were confounded, they became +as grass of the field, or +as the green herb, the grass +growing on houses, and that which is trodden down +19:26 +Or, +before it stands up. + by him that stands +upon it. + +But I know your +19:27 +Gr. +seat. + down-sitting, and your going forth, and your rage against me. + +Because you were angry against me, and your fierceness is come up into my ears, therefore will I put my hooks in your nostrils, and my bridle in your lips, and I will turn you back by the way by which you came. + +And this shall be a sign to you; eat this year the things that grow of themselves, and in the second year the things which spring up: and in the third year +let there be sowing, and reaping, and planting of vineyards, and eat you⌃ the fruit of them. + +And he shall +19:30 +Gr. +add. + increase +19:30 +Gr. +τὸ διασες. οἴκον. + him that has escaped of the house of Juda: and the remnant +shall strike root beneath, and it shall produce fruit above. + +For from Jerusalem shall go forth a remnant, and he that escapes from the mountain of Sion: the zeal of the Lord of host shall do this. + + +Is it not so? +

+

Thus says the Lord +19:32 +Or, +of. +Heb. + concerning the king of the Assyrians, He shall not enter into this city, and he shall not shoot +19:32 +Gr. +a weapon. + an arrow there, neither shall a shield +19:32 +Gr. +come against it beforehand, etc. + come against it, neither shall he heap a mound against it. + +By the way by which he comes, by it shall he return, and he shall not enter into this city, says the Lord. + +And I will defend this city as with a shield, for my own sake, and for my servant David's sake. + +And it came to pass at night that the angel of the Lord went forth, an struck in the camp of the Assyrians one hundred and eighty-five thousand: and they rose early in the morning, and, behold, +these were all dead corpses. + +And Sennacherim king of the Assyrians departed, and went and returned, and lived in Nineve. + +And it came to pass, while he was worshipping in the house of Meserach his god, that Adramelech and Sarasar his sons struck him with the sword: and they escaped into the land of Ararath; and Asordan his son reigned in his stead. + +

+ + +

In those days was Ezekias sick +even to death. And the prophet Esaias the son of Amos came in to him, and said to him, Thus says the Lord, Give charge to your household; +for you +20:1 +Gr. +die. + shall die, and not live. + +And Ezekias turned to the wall, and prayed to the Lord, saying, + +Lord, remember, I pray you, how I have walked before you in truth and with a +20:3 +Gr. +full. + perfect heart, and have done that which is good in your eyes. And Ezekias wept with a great weeping. + +And Esaias was in the middle court, and the word of the Lord came to him, saying, + +Turn back, and you shall say to Ezekias the ruler of my people, Thus says the Lord God of your father David, I have heard your prayer, I have seen your tears: behold, I will heal you: on the third day you shall go up to the house of the Lord. + +And I will add to your days fifteen years; and I will deliver you and this city out of the hand of the king of the Assyrians, and I will defend this city for my own sake, and for my servant's David sake. + +And he said, Let them take a cake of figs, and lay it upon the ulcer, and he shall be well. + +And Ezekias said to Esaias, What +is the sign that the Lord will heal me, and I shall go up to the house of the Lord on the third day? + +And Esaias said, This +is the sign from the Lord, that the Lord will perform the word which he has spoken, the shadow +of the dial shall advance ten degrees: +or if it should go back ten degrees +this would also be the sign. + +And Ezekias said, +It is a light thing for the shadow to go down ten degrees: nay, but let the shadow return ten degrees backward +20:10 +Or. +in the degrees. + on the dial. + +And Esaias the prophet cried to the Lord: and the shadow returned back ten degrees on the dial. + +At that time Marodach Baladan, son of Baladan king of Babylon, sent letters and a present to Ezekias, because he had heard that Ezekias was sick. + +And Ezekias rejoiced at them, and showed all the house of his spices, the silver and the gold, the spices, and the fine oil, and the armory, and all that was found in his treasures: there was nothing which Ezekias did not show them in his house, and in all his dominion. + +And Esaias the prophet went in to king Ezekias, and said to him, What said these men? and whence came they to you? And Ezekias said, they came to me from a distant land, +even from Babylon. + +And he said, What saw they in your house? And he said, They saw all things that +are in my house: there was nothing in my house which I showed not to them; yes, all that was in my treasures also. + +And Esaias said to Ezekias, Hear the word of the Lord: + +Behold, the days come, that all things that are in your house shall be taken, and all that your fathers have treasured up until this day, to Babylon; and there shall not +20:17 +Gr. +be left behind. + fail a word, which the Lord has spoken. + +And as for your sons which shall come forth of you, which you shall beget, +the enemy shall take them, and they shall be eunuchs in the house of the king of Babylon. + +And Ezekias said to Esaias, Good +is the word of the Lord which he has spoken: +only let there be peace in my days. + +And the rest of the acts of Ezekias, and all his might, and all that he made, the fountain and the aqueduct, and +how he brought water into the city, +are not these things written in the book of the chronicles of the kings of Juda? + +And Ezekias slept with his fathers: and Manasses his son reigned in his stead. + +

+ + +

+21:1 +Gr. +a son of 12 years in his reigning. + Manasses +was twelve years old when he began to reign, and he reigned fifty-five years in Jerusalem: and his mother's name +was Apsiba. + +And he did that which was evil in the eyes of the Lord, according to the abominations of the nations which the Lord cast out from before the children of Israel. + +And he +21:3 +Gr. +returned and built. + built again the high places, which Ezekias his father +had demolished; and +21:3 +Or. +built. + set up an altar to Baal, and made groves as Achaab king of Israel +made them; and worshipped all the host of heaven, and served them. + +And he built an altar in the house of the Lord, whereas he had said, In Jerusalem I will place my name. + +And he built an altar to all the host of heaven in the two courts of the house of the Lord. + +And he caused his sons to pass through the fire, and used divination and auspices, and made +21:6 +Lit. +peculiar places cut off. + groves, and multiplied +21:6 +Alex. +θελητὴν. + wizards, so as to do that which was evil in the sight of the Lord, to provoke him to anger. + +And he set up the graven image of the grove 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 the tribes of Israel, will I even place my name for ever. + +And I will not again remove the foot of Israel from the land which I gave to their fathers, +even of those who shall keep all that I commanded, according to all the commandments which my servant Moses commanded them. + +But they listened not; and Manasses led them astray to do evil in the sight of the Lord, beyond the nations whom the Lord utterly destroyed from before the children of Israel. + +And the Lord spoke by his servants the prophets, saying, + +Forasmuch as Manasses the king of Juda has wrought all these evil abominations, beyond all that the Amorite did, who lived before +him, and has led Juda also into sin by their idols, + + +it shall not +be so. Thus says the Lord God of Israel, Behold, I bring calamities upon Jerusalem and Juda, so that both the ears of every one that hears shall +21:12 +Gr. +sound. + tingle. + +And I will stretch out over Jerusalem the measure of Samaria, and the plummet of the house of Achaab: and I will wipe Jerusalem as a jar is wiped, and turned upside down in the wiping. + +And I will reject the remnant of my inheritance, and will deliver them into the hands of their enemies; and they shall be for a plunder and for a spoil to all their enemies: + +forasmuch as they have done wickedly in my sight, and have provoked me from the day that I brought out their fathers out of Egypt, even until this day. + +Moreover Manasses shed very much innocent blood, until he filled Jerusalem +with it +21:16 +Gr. +mouth to mouth. + from one end to the other, beside his sins with which he caused Juda to sin, in doing evil in the eyes of the Lord. + +And the rest of the acts of Manasses, and all that he did, and his sin which he sinned, +are not these things written in the book of the chronicles of the kings of Juda? + +And Manasses slept with his fathers, and was buried in the garden of his house, +even in the garden of Oza: and Amos his son reigned in his stead. + +Twenty and two years old +was Amos when he began to reign, and he reigned two years in Jerusalem: and his mother's name +was Mesollam, daughter of Arus of Jeteba. + +And he did that which was evil in the sight of the Lord, as Manasses his father did. + +And he walked in all the way in which his father walked, and served the idols which his father served, and worshipped them. + +And he forsook the Lord God of his fathers, and walked not in the way of the Lord. + +And the servants of Amos conspired against him, and killed the king in his house. + +And the people of the land +21:24 +Gr. +struck. + killed all that had conspired against king Amos; and the people of the land made Josias king in his room. + +And the rest of the acts of Amos, +even all that he did, behold, +are not these written in the book of the chronicles of the kings of Juda? + +And they buried him in his tomb in the garden of Oza: and Josias his son reigned in his stead. + +

+ + +

Josias +was eight years old when he began to +22:1 +Gr. +a son of eight years in his reigning. + reign, and he reigned thirty and one years in Jerusalem: and his mother's name +was Jedia, daughter of Edeia of Basuroth. + +And he did that which was right in the sight of the Lord, and walked in all the way of David his father; he turned not aside to the right hand or to the left. + +And it came to pass in the eighteenth year of king Josias, in the eighth month, the king sent Sapphan the son of Ezelias the son of Mesollam, the scribe of the house of the Lord, saying, + +Go up to Chelcias the high priest, and +22:4 +Gr. +seal. + take account of the money that is brought into the house of the Lord, which they that keep the door have collected of the people. + +And let them give it into the hand of the workmen that are appointed in the house of the Lord. And he gave it to the workmen in the house of the Lord, to +22:5 +Gr. +strengthen. + repair the +22:5 +Gr. +breach, as in ch. xii. + breaches of the house, + + +even to the carpenters, and builders, and masons, +and also to purchase timber and hewn stones, to repair the breaches of the house. + +Only they did not call them to account for the money that was given to them, because they dealt faithfully. + +And Chelcias the high priest said to Saphan the scribe, I have found the book of the law in the house of the Lord. And Chelcias gave the book to Sapphan, and he read it. + +And he went into the house of the Lord to the king, and reported the matter to the king, and said, Your servants have +22:9 +Gr. +melted down. + collected the money that was found in the house of the Lord, and have given it into the hand of the workmen that are appointed in the house of the Lord. + +And Sapphan the scribe spoke to the king, saying, Chelcias the priest has given me a book. And Sapphan read it before the king. + +And it came to pass, when the king heard the words of the book of the law, that he tore his garments. + +And the king commanded Chelcias the priest, and Achikam the son of Sapphan, and Achobor the son of Michaias, and Sapphan the scribe, and Asaias the king's servant, saying, + +Go, enquire of the Lord for me, and for all the people, and for all Juda, and concerning the words of this book that has been found: for the wrath of the Lord that has been kindled against us +is great, because our fathers listened not to the words of this book, to do according to all the things written concerning us. + +So Chelcias the priest went, and Achicam, and Achobor, and Sapphan, and Asaias, to Olda the prophetess, the mother of Sellem the son of Thecuan son of Aras, keeper of the robes; and she lived in Jerusalem in +22:14 +A.V. +'the college'. +Margin, +'the second part.' + Masena; and they spoke to her. + +And she said to them, Thus says the Lord God of Israel, Say to the man that sent you to me, + +Thus says the Lord, Behold, I bring evil upon this place, and upon them that dwell in it, +even all the words of the book which the king of Juda has read: + +because they have forsaken me, and burnt incense to other gods, that they might provoke me with the works of their hands: therefore my wrath shall burn forth against this place, and shall not be quenched. + +And to the king of Juda that sent you to enquire of the Lord, —thus shall you⌃ say to him, Thus says the Lord God of Israel, +As for the words which you have heard; + +because your heart was softened, and you were humbled before +me, when you heard all that I spoke against this place, and against the inhabitants of it, that it should be +22:19 +Gr. +for an abolition and a curse. + utterly destroyed and accursed, and you did rend your garments, and weep before me; I also have heard, says the Lord. + +It shall not be so +therefore: behold, I +will add you to your fathers, and you shall be gathered to your tomb in peace, and your +22:20 +Gr. +none etc. shall be seen by your eyes. + eyes shall not see +any among all the evils which I bring upon this place. + +

+ + +

So they reported the word to the king: and the king sent and gathered all the elders of Juda and Jerusalem +23:1 +Or, +to his house. + to himself. + +And the king went up to the house of the Lord, and every man of Juda and all who lived in Jerusalem with him, and the priests, and the prophets, and all the people small and great; and he read in their ears all the words of the book of the covenant that was found in the house of the Lord. + +And the king stood by a pillar, and made a covenant before the Lord, to walk after the Lord, to keep his commandments and his testimonies and his ordinances with all the heart and with all the soul, to confirm the words of this covenant; +even the things written +23:3 +Gr. +on. + in this book. And all the people stood +23:3 +Gr. +in. + to the covenant. + +And the king commanded Chelcias the high priest, and the priests of the second order, and them that kept the door, to bring out of the temple of the Lord all the vessels that were made for Baal, and for the grove, and all the host of heaven, and he burned them without Jerusalem in the +23:4 +The +Gr. +is from the +Heb. +word. + fields of Kedron, and +23:4 +Gr. +cast. + took the ashes of them to Baethel. + +And he burned the +23:5 +Heb. הבמויס. + idolatrous priests, whom the kings of Juda +had +23:5 +Gr. +given. + appointed, (and they burned incense in the high places and in the cities of Juda, and the places around about Jerusalem); and them that burned incense to Baal, and to the sun, and to the moon, and to +23:5 +Or. +the twelve signs. +Heb. +ולמולות compare Job 38:32. + Mazuroth, and to all the host of heaven. + +And he carried out the grove from the house of the Lord to the brook Kedron, and burned it at the brook Kedron, and reduced it to +23:6 +Or, +ashes. + powder, and cast its powder on the sepulchres of the sons of the people. + +And he pulled down the house of the +23:7 +The +Gr. +is from the +Heb. +word. + sodomites that were by the house of the Lord, where the women wove tents for the grove. + +And he brought up all the priest from the cities of Juda, and defiled the high places where the priests burned incense, from Gaebal even to Bersabee; and he pulled down the house of the gates that was by the door of the gate of Joshua the ruler of the city, on a man's left hand at the gate of the city. + +Only the priests of the high places went not up to the altar of the Lord in Jerusalem, for they only ate leavened bread in the midst of their brethren. + +And he defiled Taphes which is in the valley of the son of Ennom, +constructed for a man to cause his son or his daughter to pass through +23:10 +Gr. +in fire. + fire to Moloch. + +And he burned the horses which the king of Juda had given to the sun in the entrance of the house of the Lord, +23:11 +Gr. +to. + by the treasury of Nathan the +23:11 +Heb. Nathan-melech. + king's eunuch, in the +23:11 +Gr. +again from the +Heb. + suburbs; and he burned the chariot of the sun with fire. + +And the altars that were on the roof of the upper chamber of Achaz, which the kings of Juda had made, and the altars which Manasses had made in the two courts of the house of the Lord, did the king pull down and forcibly remove from thence, and cast their dust into the brook of Kedron. + +And the king defiled the house that was before Jerusalem, on the right hand of the mount of Mosthath, which Solomon king of Israel built to Astarte the abomination of the Sidonians, and to Chamos the abomination of Moab, and to Moloch the abomination of the children of Ammon. + +And he broke in pieces the pillars, and utterly destroyed the groves, and filled their places with the bones of men. + +Also the high altar in Baethel, which Jeroboam the son of Nabat, who made Israel to sin, had made, even that high altar he tore down, and broke in pieces the stones of it, and reduced it to powder, and burnt the grove. + +And Josias turned aside, and saw the tombs that were there in the city, and sent, and took the bones out of the tombs, and burnt them on the altar, and defiled it, according to the word of the Lord which the man of God spoke, when Jeroboam stood by the altar at the feast: and he turned and raised his eyes to the tomb of the man of God that spoke these words. + +And he said, What +is that mound which I see? And the men of the city said to him, +It is the grave of the man of God that came out of Juda, and uttered these imprecations which he imprecated upon the altar of Baethel. + +And he said, Let him alone; let no one disturb his bones. So his bones were +23:18 +Gr. +delivered. + spared, together with the bones of the prophet that came out of Samaria. + +Moreover Josias removed all the houses of the high places that were in the cities of Samaria, which the kings of Israel made to provoke the Lord, and did to them all that he did in Baethel. + +And he sacrificed all the priests of the high places that were there on the altars, and burnt the bones of men upon them, and returned to Jerusalem. + +And the king commanded all the people, saying, Keep the passover to the Lord your God, as it is written in the book of this covenant. + +For a passover +such as this had not been kept from the days of the judges who judged Israel, even all the days of the kings of Israel, and of the kings of Juda. + +But in the eighteenth year of king Josias, was the passover kept to the Lord in Jerusalem. + +Moreover Josias removed the sorcerers, and the wizards, and the theraphin, and the idols, and all the abominations that had been set up in the land of Juda and in Jerusalem, that he might +23:24 +Gr. +establish or confirm. + keep the words of the law that were written in the book, which Chelcias the priest found in the house of the Lord. + +There was no king like him before him, who turned to the Lord with all his heart, and with all his soul, and with all his strength, according to all the law of Moses; and after him there rose not one like him. + +Nevertheless the Lord turned not from the fierceness of his great anger, wherewith he was angry in his anger against Juda, +23:26 +Gr. +upon or against. + because of the provocations, wherewith Manasses provoked him. + +And the Lord said, I will also remove Juda from my presence, as I removed Israel, and will reject this city which I have chosen +even Jerusalem, and the house +of which I said, My name shall be there. + +And the rest of the acts of Josias, and all that he did, +are not these things written in the book of the chronicles of the kings of Juda? + +And in his days went up Pharao Nechao king of Egypt against the king of the Assyrians to the river Euphrates: and Josias went out to meet him: and Nechao killed him in Mageddo when he saw him. + +And his servants carried him dead from Mageddo, and brought him to Jerusalem, and buried him in his sepulchre: and the people of the land took Joachaz the son of Josias, and anointed him, and made him king in the room of his father. + + +23:31 +Gr. +a son of 23 years was Joachaz in his reigning. + Twenty and three years old was Joachaz when he began to reign, and he reigned three months in Jerusalem: and his mother's name +was Amital, daughter of Jeremias of Lobna. + +And he did that which was evil in the sight of the Lord, according to all that his fathers did. + +And Pharao Nechao removed him to Rablaam in the land of Emath, so that he should not reign in Jerusalem; and imposed a tribute on the land, one hundred talents of silver, and one hundred talents of gold. + +And Pharao Nechao made Eliakim son of Josias king of Juda king over them in the place of his father Josias, and he changed his name +to Joakim, and he took Joachaz and brought him to Egypt, and he died there. + +And Joakim gave the silver and the gold to Pharao; but he assessed the land to give the money at the command of Pharao: they gave the silver and the gold +each man according to his assessment together with the people of the land to give to Pharao Nechao. + + +23:36 +Gr. +a son of 23 years was Joakim in his reigning. + Twenty-five years old +was Joakim when he began to reign, and he reigned eleven years in Jerusalem: and his mother's name +was Jeldaph, daughter of Phadail of Ruma. + +And he did that which was evil in the eyes of the lord, according to all that his fathers had done. + +

+ + +

In his days went up Nabuchodonosor king of Babylon, and Joakim became his servant three years; and +then he turned and revolted from him. + +And the lord sent against him the bands of the Chaldeans, and the bands of Syria, and the bans of Moab, and the bands of the children of Ammon, and sent them into the land of Juda to prevail +against it, according to the word of the Lord, which he spoke by his servants the prophets. + +Moreover it was +24:3 +Gr. +on the mind. + the purpose of the Lord concerning Juda, to remove +24:3 +Gr. +him. + them from his presence, because of the sins of Manasses, according to all that he did. + +Moreover he shed innocent blood, and filled Jerusalem with innocent blood, and the Lord would not +24:4 +Gr. +be propitiated. + pardon +it. + +And the rest of the acts of Joakim, and all that he did, behold, +are not these written in the book of the chronicles of the kings of Juda? + +And Joakim slept with his fathers: and Joachim his son reigned in his stead. + +And the king of Egypt came no more out of his land: for the king of Babylon took away all that belonged to the king of Egypt from the river of Egypt as far as the river Euphrates. + + +24:8 +Gr. +Joachim a son of 18 years in his reigning. + Eighteen years old +was Joachim when he began to reign, and he reigned three months in Jerusalem: and his mother's name +was Nestha, daughter of Ellanastham, of Jerusalem. + +And he did that which was evil in the sight of the Lord, according to all that his father did. + +At that time went up Nabuchodonosor king of Babylon to Jerusalem, and the city +24:10 +Gr. +came into seige. + was besieged. + +And Nabuchodonosor king of Babylon came against the city, and his servants besieged it. + +And Joachim king of Juda came forth to the king of Babylon, he and his servants, and his mother, and his princes, and his eunuchs; and the king of Babylon took him in the eighth year of his reign. + +And he brought forth thence all the treasures of the house of the Lord, and the treasures of the king's house, and he cut up all the golden vessels which Solomon the king of Israel +had made in the temple of the Lord, according to the word of the Lord. + +And he carried away +the inhabitants of Jerusalem, and all the captains, and the mighty men, taking captive ten thousand +24:14 +Lit. +captivities. + prisoners, and every artificer and +24:14 +Lit. +shutter-up. + smith: and only the poor of the land were left. + +And he carried Joachim away to Babylon, and the king's mother, and the king's wives, and his eunuchs: and he carried away the mighty men of the land into +24:15 +Gr. +emigration. + captivity from Jerusalem to Babylon. + +And all the men of might, even seven thousand, and one thousand artificers and smiths: all +were mighty +men fit for war; and the king of Babylon carried them captive to Babylon. + +And the king of Babylon made +24:17 +A.V. +Mattanaiah. + Batthanias his son king in his stead, and called his name Sedekias. + + +24:18 +Gr. +a son of 21 years, Sedekias. + Twenty and one years old +was Sedekias when he began to reign, and he reigned eleven years in Jerusalem: and his mother's name +was Amital daughter of Jeremias. + +And he did that which was evil in the sight of the Lord, according to all that Joachim did. + +For it was +24:20 +Lit. +it was in the Lord's mind to bring evil upon. + according to the Lord's anger against Jerusalem and on Juda, until he cast them out of his presence, that Sedekias revolted against the king of Babylon. + +

+ + +

And it came to pass in the ninth year of his reign, in the tenth month, +that Nabuchodonosor king of Babylon came, and all his host, against Jerusalem; and he encamped against it, and built a +25:1 +Or, +circumvallation. + mound against it. + +And the city was besieged until the eleventh year of king Sedekias on the ninth day of the month. + +And the famine prevailed in the city, and there was no bread for the people of the land. + +And the city was broken up, and all the men of war went forth by night, by the way of the gate between the walls, this is +the gate of the king's garden: and the Chaldeans +were set against the city round about: and +the king went by the way of +25:4 +Gr. +from the +Heb. + the plain. + +And the force of the Chaldeans pursued the king, and overtook him in the plains of Jericho: and all his army was dispersed from about him. + +And they took the king, and brought him to the king of Babylon to Reblatha; and he gave judgment upon him. + +And he killed the sons of Sedekias before his eyes, and put out the eyes of Sedekias, and bound him in fetters, and brought him to Babylon. + +And in the fifth month, on the seventh day of the month (this +is the nineteenth year of Nabuchodonosor king of Babylon), came Nabuzardan, +25:8 +Gr. +chief cook. + captain of the guard, who stood before the king of Babylon, to Jerusalem. + +And he burnt the house of the Lord, and the king's house, and all the houses of Jerusalem, even every house did the captain of the guard burn. + +And the force of the Chaldeans pulled down the wall of Jerusalem round about. + +And Nabuzardan the captain of the guard removed the rest of the people that were left in the city, and the +25:11 +Gr. +deserters. + men who had deserted to the king of Babylon, and the rest of the multitude. + +But the captain of the guard left of the poor of the land to be vine-dressers and husbandmen. + +And the Chaldeans broke to pieces the brazen pillars that were in the house of the Lord, and the bases, and the brazen sea that was in the house of the Lord, and carried their brass to Babylon. + +And the caldrons, and the shovels, and the bowls, and the censers, and all the brazen vessels with which they minister, he took. + +And the captain of the guard took the fire-pans, and the gold and silver bowls. + +Two pillars, and one sea, and the bases which Solomon made for the house of the Lord: there was no weight of the brass of all the vessels. + +The height of one pillar +was eighteen cubits, and the chapiter upon it was of brass: and the height of the chapiter was three cubits: the border, and the pomegranates on the chapiter round about were all of brass: and so it was with the second pillar with its border. + +And the captain of the guard took Saraias the +25:18 +Gr. +first priest. + high-priest, and Sophonias +25:18 +Gr. +the son of the second rank. + the second in order, and the three doorkeepers. + +And they took out of the city one eunuch who was commander of the men of war, and five men that saw the face of the king, that were found in the city, and the secretary of the commander-in-chief, who took account of the people of the land, and sixty men of the people of the land that were found in the city. + +And Nabuzardan the captain of the guard took them, and brought them to the king of Babylon to Reblatha. + +And the king of Babylon struck them and killed them at Reblatha in the land of Aemath. So Juda was carried away from his land. + +And +as for the people that were left in the land of Juda, whom Nabuchodonosor king of Babylon left, even over them he set Godolias son of Achicam son of Saphan. + +And all the captains of the host, they and their men, heard that the king of Babylon had +thus appointed Godolias, and they came to Godolias to Massephath, both Ismael the son of Nathanias, and Jona son of Careth, and Saraias, son of Thanamath the Netophathite, and Jezonias son of a Machathite, they and their men. + +And Godolias swore to them and their men, and said to them, Fear not the +25:24 +Gr. +passage. + incursion of the Chaldeans; dwell in the land, and serve the king of Babylon, and it shall be well with you. + +And it came to pass in the seventh month +that Ismael son of Nathanias son of Helisama, of the +25:25 +Gr. +seed of the kings. + seed royal, came, and ten men with him, and he struck Godolias, that he died, +him and the Jews and the Chaldeans that were with him in Massepha. + +And all the people, great and small rose up, +they and the captains of the forces, and went into Egypt; because they were afraid of the Chaldeans. + +And it came to pass in the thirty-seventh year of the carrying away of Joachim king of Juda, in the twelfth month, on the twenty-seventh day of the month, +that Evialmarodec king of Babylon in the +first year of his reign lifted up the head of Joachim king of Juda, and brought him out of his prison-house. + +And he spoke +25:28 +Gr. +good things with him. + kindly to him, and set his throne above the thrones of the kings that were with him in Babylon; + +And changed his prison garments: and he ate bread continually before him all the days of his life. + +And his portion, a continual portion, was given him out of the house of the king, +25:30 +Gr. +a rate of a day in his day. + a daily rate for every day all the days of his life. + +

+
+ +Chronicles I +CHRONICLES I +Chronicles I +1CH +

CHRONICLES I +

+ + +

Adam, Seth, Enos, + +and Cainan, Maleleel, Jared, + +Enoch, Mathusala, Lamech, + +Noe: the sons of Noe, Sem, Cham, Japheth. + +The sons of Japheth, Gamer, Magog, Madaim, Jovan, Helisa, Thobel, Mosoch, and Thiras. + +And the sons of Gamer, Aschanaz, and Riphath, and Thorgama. + +And the sons of Jovan, Helisa, and Tharsis, the Citians, and Rhodians. + +And the sons of Cham, Chus, and Mesraim, Phud and Chanaan. + +And the sons of Chus, Saba, and Evila, and Sabatha, and Regma, and Sebethaca: and the sons of Regma, Saba, and Dadan. + +And Chus begot Nebrod: he began to be a mighty hunter on the earth. + +The sons of Sem, Aelam, and Assur, + +and Arphaxad, Sala, + +Eber, Pheleg, Ragan, + +Seruch, Nachor, Tharrha, + +Abraam. + +And the sons of Abraam, Isaac, and Ismael. + +And these +are their generations: the firstborn of Ismael, Nabaeoth, and Kedar, Nabdeel, Massam, + +Masma, Iduma, Masse, Chondan, Thaeman, + +Jettur, Naphes, Kedma: these +are the sons of Ismael. + +And the sons of Chettura Abraam's concubine:—and she bore him Zembram, Jexan, Madiam, Madam, Sobac, Soe: and the sons of Jexan; Daedan, and Sabai; + +and the sons of Madiam; Gephar, and Opher, and Enoch, and Abida, and Eldada; all these +were the sons of Chettura. + +And Abraam begot Isaac: and the sons of Isaac +were Jacob, and Esau. + +The sons of Esau, Eliphaz, and Raguel, and Jeul, and Jeglom, and Core. + +The sons of Eliphaz: Thaeman, and Omar, Sophar, and Gootham, and Kenez, and Thamna, and Amalec. + +And the sons of Raguel, Naches, Zare, Some, and Moze. + +The sons of Seir, Lotan, Sobal, Sebegon, Ana, Deson, Osar, and Disan. + +And the sons of Lotan, Chorri, and Aeman; and the sister of Lotan +was Thamna. + +The sons of Sobal; Alon, Machanath, Taebel, Sophi, and Onan: and the sons of Sebegon; Aeth, and Sonan. + +The sons of Sonan, Daeson: and the sons of Daeson; Emeron, and Asebon, and Jethram, and Charran. + +And the sons of Hosar, Balaam, and Zucam, and Acan: the sons of Disan, Os, and Aran. + +And these +are their kings, Balac the son of Beor; and the name of his city +was Dennaba. + +And Balac died, and Jobab the son of Zara of Bosorrha reigned in his stead. + +And Jobab died, and Asom of the land of the Thaemanites reigned in his stead. + +And Asom died, and Adad the son of Barad reigned in his stead, who struck Madiam in the plain of Moab: and the name of his city +was Gethaim. + +And Adad died, and Sebla of Masecca reigned in his stead. + +And Sebla died, and Saul of Rhoboth by the river reigned in his stead. + +And Saul died, and Balaennor son of Achobor reigned in his stead. + +And Balaennor died, and Adad son of Barad reigned in his stead; and the name of his city +was Phogor. + +The princes of Edom: prince Thamna, prince Golada, prince Jether, + +prince Elibamas, prince Elas, prince Phinon, + +prince Kenez, prince Thaeman, prince Babsar, prince Magediel, + +prince Zaphoin. These +are the princes of Edom. + +

+ + +

These +are the names of the sons of Israel; + +Ruben, Symeon, Levi, Juda, Issachar, Zabulon, Dan, Joseph, Benjamin, Nephthali, Gad, Aser. + +The sons of Juda; Er, Aunan, Selom. +These three were born to him of the daughter of Sava the Chananitish woman: and Er, the firstborn of Juda, +was wicked before the Lord, and he killed him. + +And Thamar his daughter-in-law bore to him Phares, and Zara: all the sons of Juda +were five. + +The sons of Phares, Esrom, and Jemuel. + +And the sons of Zara, Zambri, and Aetham, and Aemuan, and Calchal, and Darad, +in all five. + +And the sons of Charmi; Achar the troubler of Israel, who was disobedient in the accursed thing. + +And the sons of Aetham; Azarias, + +and the sons of Esrom who were born to him; Jerameel, and Aram, and Chaleb. + +And Aram begot Aminadab, and Aminadab begot Naasson, chief of the house of Juda. + +And Naasson begot Salmon, and Salmon begot Booz, + +and Booz begot Obed, and Obed begot Jessae. + +And Jessae begot his firstborn Eliab, Aminadab +was the second, Samaa the third, + +Nathanael the fourth, Zabdai the fifth, + +Asam the sixth, David the seventh. + +And their sister +was Saruia, and +another Abigaia: and the sons of Saruia +were Abisa, and Joab, and Asael, three. + +And Abigaia bore Amessab: and the father of Amessab +was Jothor the Ismaelite. + +And Chaleb the son of Esrom took Gazuba to wife, and Jerioth: and these +were her sons; Jasar, and Subab, and Ardon. + +And Gazuba died; and Chaleb took to himself Ephrath, and she bore to him Or. + +And Or begot Uri, and Uri begot Beseleel. + +And after this Esron went in to the daughter of Machir the father of Galaad, and he took her when he was sixty-five years old; and she bore him Seruch. + +And Seruch begot Jair, and he had twenty-three cities in Galaad. + +And he took Gedsur and Aram, the towns of Jair from them; +with Canath and its towns, sixty cities. All these +belonged to the sons of Machir the father of Galaad. + +And after the death of Esron, Chaleb came to Ephratha; and the wife of Esron +was Abia; and she bore him Ascho the father of Thecoe. + +And the sons of Jerameel the firstborn of Esron +were, the firstborn Ram, and Banaa, and Aram, and Asan his brother. + +And Jerameel had another wife, and her name +was Atara: she is the mother of Ozom. + +And the sons of Ram the firstborn of Jerameel were Maas, and Jamin, and Acor. + +And the sons of Ozom were, Samai, and Jadae: and the sons of Samai; Nadab, and Abisur. + +And the name of the wife of Abisur +was Abichaia, and she bore him Achabar, and Moel. + +And the sons of Nadab; Salad and Apphain; and Salad died without children. + +And the sons of Apphain, Isemiel; and the sons of Isemiel, Sosan; and the sons of Sosan, Dadai. + +And the sons of Dadai, Achisamas, Jether, Jonathan: and Jether died childless. + +And the sons of Jonathan; Phaleth, and Hozam. These were the sons of Jerameel. + +And Sosan had no sons, but daughters. And Sosan had an Egyptian servant, and his name +was Jochel. + +And Sosan gave his daughter to Jochel his servant to wife; and she bore him Ethi. + +And Ethi begot Nathan, and Nathan begot Zabed, + +and Zabed begot Aphamel, and Aphamel begot Obed. + +And Obed begot Jeu, and Jeu begot Azarias. + +And Azarias begot Chelles, and Chelles begot Eleasa, + +and Eleasa begot Sosomai, and Sosomai begot Salum, + +and Salum begot Jechemias, and Jechemias begot Elisama, and Elisama begot Ismael. + +And the sons of Chaleb the brother of Jerameel +were, Marisa his firstborn, he +is the father of Ziph:—and the sons of Marisa the father of Chebron. + +And the sons of Chebron; Core, and Thapphus, and Recom, and Samaa. + +And Samaa begot Raem the father of Jeclan: and Jeclan begot Samai. + +And his son +was Maon: and Maon +is the father of Baethsur. + +And Gaepha the concubine of Chaleb bore Aram, and Mosa, and Gezue. + +And the sons of Addai +were Ragem, and Joatham, and Sogar, and Phalec, and Gaepha, and Sagae. + +And Chaleb's concubine Mocha bore Saber, and Tharam. + +She bore also Sagae the father of Madmena, and Sau the father of Machabena, and the father of Gaebal: and the daughter of Chaleb +was Ascha. + +These were the sons of Chaleb: the sons of Or the firstborn of Ephratha; Sobal the father of Cariathiarim, + +Salomon the father of Baetha, Lammon the father of Baethalaem, and Arim the father of Bethgedor. + +And the sons of Sobal the father of Cariathiarim were Araa, and Aesi, and Ammanith, + +and Umasphae, cities of Jair; Aethalim, and Miphithim, and Hesamathim, and Hemasaraim; from these went forth the Sarathaeans, and the sons of Esthaam. + +The sons of Salomon; Baethalaem, the Netophathite, Ataroth of the house of Joab, and half of the family of Malathi, Esari. + +The families of the scribes dwelling in Jabis; Thargathiim, and Samathiim, and Sochathim, these +are the Kinaeans that came of Hemath, the father of the house of Rechab. + +

+ + +

Now these were the sons of David that were born to him in Chebron; the firstborn Amnon, +born of Achinaam the Jezraelitess; the second Damniel, of Abigaia the Carmelitess. + +The third, Abessalom, the son of Mocha the daughter of Tholmai king of Gedsur; the fourth, Adonia the son of Aggith. + +The fifth, Saphatia, +the son of Abital; the sixth, Jethraam, +born of Agla his wife. + +Six were born to him in Chebron; and he reigned there seven years and six months: and he reigned thirty-three years in Jerusalem. + +And these were born to him in Jerusalem; Samaa, Sobab, Nathan, and Solomon; four +of Bersabee the daughter of Amiel: + +and Ebaar, and Elisa, and Eliphaleth, + +and Nagai, and Naphec, and Japhie, + +and Helisama, and Eliada, and Eliphala, nine. + +All +these were the sons of David, besides the sons of the concubines, and +there was also Themar their sister. + +The sons of Solomon; Roboam, Abia his son, Asa his son, Josaphat his son, + +Joram his son, Ochozias his son, Joas his son, + +Amasias his son, Azarias his son, Joathan his son, + +Achaz his son, Ezekias his son, Manasses his son, + +Amon his son, Josia his son. + +And the sons of Josia; the firstborn Joanan, the second Joakim, the third Sedekias, the fourth Salum. + +And the sons of Joakim; Jechonias his son, Sedekias his son. + +And the sons of Jechonias; Asir, Salathiel his son, + +Melchiram, and Phadaias, and Sanesar, and Jekimia, and Hosamath, and Nabadias. + +And the sons of Phadaias; Zorobabel, and Semei: and the sons of Zorobabel; Mosollam, and Anania, and Salomethi +was their sister. + +And Asube, and Ool, and Barachia, and Asadia, and Asobed, five. + +And the sons of Anania, Phalettia, and Jesias his son, Raphal his son, Orna his son, Abdia his son, Sechenias his son. + +And the son of Sechenias; Samaia: and the sons of Samaia; Chattus, and Joel, and Berri and Noadia, and Saphath, six. + +And the sons of Noadia: Elithenan, and Ezekia, and Ezricam, three. + +And the sons of Elithenan; Odolia, and Heliasebon, and Phadaia, and Akub, and Joanan, and Dalaaia, and Anan, seven. + +

+ + +

And the sons of Juda; Phares, Esrom, and Charmi, and Or, Subal, + +and Rada his son; and Subal begot Jeth; and Jeth begot Achimai, and Laad: these +are the generations of the Arathites. + +And these +are the sons of Aetam; Jezrael and Jesman, and Jebdas: and their sister's name +was Eselebbon. + +And Phanuel the father of Gedor, and Jazer the father of Osan: these +are the sons of Or, the firstborn of Ephratha, the father of Baethalaen. + +And Asur the father of Thecoe had two wives, Aoda and Thoada. + +And Aoda bore to him Ochaia, and Ephal, and Thaeman, and Aasther: all these +were the sons of Aoda. + +And the sons of Thoada; Sereth, and Saar, and Esthanam. + +And Coe begot Enob, and Sabatha, and the progeny of the brother of Rechab, the son of Jarin. + +And Igabes was more famous than his brethren; and his mother called his name Igabes, saying, I have born as a sorrowful one. + +And Igabes called on the God of Israel, saying, O that you would indeed bless me, and enlarge my coasts, and that your hand might be with me, and that you would make me know that you will not grieve me! And God granted him all that he asked. + +And Chaleb the father of Ascha begot Machir; he +was the father of Assathon. + +He begot Bathraias, and Bessee, and Thaeman the founder of the city of Naas the brother of Eselom the Kenezite: these +were the men of Rechab. + +And the sons of Kenez; Gothoniel, and Saraia: and the sons of Gothoniel; Athath. + +And Manathi begot Gophera: and Saraia begot Jobab, the father of Ageaddair, for they were artificers. + +And the sons of Chaleb the son of Jephonne; Er, Ada, and Noom: and the sons of Ada, Kenez. + +And the sons of Aleel, Zib, and Zepha, and Thiria, and Eserel. + +And the sons of Esri; Jether, Morad, and Apher, and Jamon: and Jether begot Maron, and Semei, and Jesba the father of Esthaemon. + +And his wife, that +is Adia, bore Jared the father of Gedor, and Aber the father of Sochon, and Chetiel the father of Zamon: and these +are the sons of Betthia the daughter of Pharao, whom Mored took. + +And the sons of the wife of Iduia the sister of Nachaim the father of Keila; Garmi, and Esthaemon the Nochathite. + +And the sons of Semon; Amnon, and Ana the son of Phana, and Inon: and the sons of Sei, Zoan, and the sons of Zoab. + +The sons of Selom the son of Juda; Er the father of Lechab, and Laada the father of Marisa, and the offspring of the family of Ephrathabac +belonging to the house of Esoba. + +And Joakim, and the men of Chozeba, and Joas, and Saraph, who lived in Moab, and he changed their names to Abederin and Athukiim. + +These +are the potters who lived in Ataim and Gadira with the king: they grew strong in his kingdom, and lived there. + +The sons of Semeon; Namuel, and Jamin, Jarib, Zares, Saul: + +Salem his son, Mabasam his son, Masma his son: + +Amuel his son, Sabud his son, Zacchur his son, Semei his son. + +Semei +had sixteen sons, and six daughters; and his brethren had not many sons, neither did all their families multiply as the sons of Juda. + +And they lived in Bersabee, and Molada, and in Esersual, + +and in Balaa, and in Aesem, and in Tholad, + +and in Bathuel, and in Herma, and in Sikelag, + +and in Baethmarimoth, and Hemisuseosin, and the house of Baruseorim: these +were their cities until +the time of king David. + +And their villages +were Aetan, and En, Remnon, and Thocca, and Aesar, five cities. + +And all their villages +were round about these cities, as far as Baal: this +was their possession, and their distribution. + +And Mosobab, and Jemoloch, and Josia the son of Amasia; + +and Joel, and Jeu the son of Asabia, the son of Sarau, the son of Asiel; + +and Elionai, and Jocaba, and Jasuia, and Asaia, and Jediel, and Ismael, and Banaias; + +and Zuza the son of Saphai, the son of Alon, the son of Jedia, the son of Semri, the son of Samaias. + +These went by the names of princes in their families, and they increased abundantly in their fathers' households. + +And they went till they came to Gerara, to the east of Gai, to seek pasture for their cattle. + +And they found abundant and good pastures, and the land before them +was wide, and +there was peace and quietness; for +there were some of the children of Cham who lived there before. + +And these who are written by name came in the days of Ezekias king of Juda, and they struck the people's houses, and the Minaeans whom they found there, and utterly destroyed them until this day: and they lived in their place, because +there was pasture there for their cattle. + +And some of them, +even of the sons of Symeon, went to mount Seir, +even five hundred men; and Phalaettia, and Noadia, and Raphaia, and Oziel, sons of Jesi, +were their rulers. + +And they struck the remnant that were left of Amalec, until this day. + +

+ + +

And the sons of Ruben the firstborn of Israel (for he +was the firstborn; but because of his going up to his father's couch, +his father gave his blessing to his son Joseph, +even the son of Israel; and he was not reckoned as firstborn; + +for Judas +was very mighty even among his brethren, and one was to be a ruler out of him: but the blessing +was Joseph's). + +The sons of Ruben the firstborn of Israel; Enoch, and Phallus, Asrom, and Charmi. + +The sons of Joel; Semei, and Banaia his son: and the sons of Gug the son of Semei. + +His son +was Micha, his son Recha, his son Joel, + +his son Beel, whom Thagla-phallasar king of Assyria carried away captive: he +is the chief of the Rubenites. + +And his brethren in his family, in their distribution according to their generations; the chief, Joel, and Zacharia. + +And Balec the son of Azuz, the son of Sama, the son of Joel: he lived in Aroer, and even to Naban, and Beelmasson. + +And he lived eastward to the borders of the wilderness, from the river Euphrates: for they had much cattle in the land of Galaad. + +And in the days of Saul they made war upon the sojourners +in the land; and they fell into their hands, all of them dwelling in their tents eastward of Galaad. + +The sons of Gad lived over against them in the land of Basan even to Sela. + +Joel the firstborn, and Sapham the second, and Janin the scribe in Basan. + +And their brethren according to the houses of their fathers; Michael, Mosollam, and Sebee, and Joree, and Joachan, and Zue, and Obed, seven. + +These +are the sons of Abichaia the son of Uri, the son of Idai, the son of Galaad, the son of Michael, the son of Jesai, the son of Jeddai, the son of Buz, + + +who was the brother of the son of Abdiel, the son of Guni, +he was chief of the house of their families. + +They lived in Galaad, in Basan, and in their villages, and +in all the country round about Saron to the border. + +The enumeration of +them all took place in the days of Joatham king of Juda, and in the days of Jeroboam king of Israel. + +The sons of Ruben and Gad, and the half-tribe of Manasse, of mighty men, bearing shields and sword, and bending the bow, and skilled in war, +were forty and four thousand and seven hundred and sixty, going forth to battle. + +And they made war with the Agarenes, and Itureans, and Naphiseans, and Nadabeans, + +and they prevailed against them: and the Agaraeans were given into their hands, +they and all their tents: for they cried to God in the battle, and he listened to them, because they trusted on him. + +And they took captive their store; five thousand camels, and two hundred and fifty thousand sheep, two thousand asses, and one hundred thousand men. + +For many fell slain, because the war +was of God. And they lived in their place until the captivity. + +And the half-tribe of Manasse lived from Basan to Baal, Ermon, and Sanir, and +to the mount Aermon: and they increased in Libanus. + +And these were the heads of the houses of their families; Opher, and Sei, and Eliel, and Jeremia, and Oduia, and Jediel, mighty men of valour, men of renown, heads of the houses of their families. + +But they rebelled against the God of their fathers, and went a-whoring after the gods of the nations of the land, whom God cast out from before them. + +And the God of Israel stirred up the spirit of Phaloch king of Assyria, and the spirit of Thagla-phallasar king of Assyria, and carried away Ruben and Gaddi, and the half-tribe of Manasse, and brought them to Chaach, and Chabor, and to the river Gozan, until this day. + +

+ + +

The sons of Levi: Gedson, Caath, and Merari. + +And the sons of Caath; Ambram, and Issaar, Chebron, and Oziel. + +And the sons of Ambram; Aaron, and Moses, and Mariam: and the sons of Aaron; Nadab, and Abiud, Eleazar, and Ithamar. + +Eleazar begot Phinees, Phinees begot Abisu; + +Abisu begot Bokki, and Bokki begot Ozi; + +Ozi begot Zaraia, Zaraia begot Mariel; + +and Mariel begot Amaria, and Amaria begot Achitob; + +and Achitob begot Sadoc, and Sadoc begot Achimaas; + +and Achimaas begot Azarias, and Azarias begot Joanan; + +and Joanan begot Azarias: he ministered as priest in the house which Solomon built in Jerusalem. + +And Azarias begot Amaria, and Amaria begot Achitob; + +and Achitob begot Sadoc, and Sadoc begot Salom; + +and Salom begot Chelcias, and Chelcias begot Azarias; + +and Azarias begot Saraia, and Saraias begot Josadac. + +And Josadac went into captivity with Juda and Jerusalem under Nabuchodonosor. + +The sons of Levi: Gedson, Caath, and Merari. + +And these +are the names of the sons of Gedson; Lobeni, and Semei. + +The sons of Caath; Ambram, and Issaar, Chebron, and Oziel. + +The sons of Merari; Mooli and Musi: and these +are the families of Levi, according to their families. + +To Gedson—to Lobeni his son—were born Jeth his son, Zammath his son, + +Joab his son, Addi his son, Zara his son, Jethri his son. + +The sons of Caath; Aminadab his son, Core his son, Aser his son; + +Helcana his son, Abisaph his son, Aser his son: + +Thaath his son, Uriel his son, Ozia his son, Saul his son. + +And the sons of Helcana; Amessi, and Achimoth. + +Helcana his son, Suphi his son, Cainaath his son; + +Eliab his son, Jeroboam his son, Helcana his son. + +The sons of Samuel; the firstborn Sani, and Abia. + +The sons of Merari; Mooli, Lobeni his son, Semei his son, Oza his son; + +Samaa his son, Angia his son, Asaias his son. + +And these +were the men whom David set over the service of the singers in the house of the Lord when the ark was at rest. + +And they ministered in front of the tabernacle of witness +playing on instruments, until Solomon built the house of the Lord in Jerusalem; and they stood according to their order for their services. + +And these +were the men that stood, and their sons, of the sons of Caath: Aeman the psalm singer, son of Joel, the son of Samuel, + +the son of Helcana, the son of Jeroboam, the son of Eliel, the son of Thoas, + +the son of Suph, the son of Helcana, the son of Maath, the son of Amathi, + +the son of Helcana, the son of Joel, the son of Azarias, the son of Japhanias, + +the son of Thaath, the son of Aser, the son of Abiasaph, the son of Core, + +the son of Isaar, the son of Caath, the son of Levi, the son of Israel. + +And his brother Asaph, who stood at his right hand; Asaph the son of Barachias, the son of Samaa, + +the son of Michael, the son of Baasia, the son of Melchia, + +the son of Athani, the son of Zaarai, + +the son of Adai, the son of Aetham, the son of Zammam, the son of Semei, + +the son of Jeeth, the son of Gedson, the son of Levi. + +And the sons of Merari their brethren on the left hand: Aetham the son of Kisa, the son of Abai, the son of Maloch, + +the son of Asebi, + +the son of Amessias, the son of Bani, the son of Semer, + +the son of Mooli, the son of Musi, the son of Merari, the son of Levi. + +And their brethren according to the houses of their fathers, +were the Levites who were appointed to all the work of ministration of the tabernacle of the house of God. + +And Aaron and his sons +were to burn incense on the altar of whole burnt offerings, and on the altar of incense, for all the ministry +in the holy of holies, and to make atonement for Israel, according to all things that Moses the servant of the Lord commanded. + +And these +are the sons of Aaron; Eleazar his son, Phinees his son, Abisu his son, + +Bokki his son, Ozi his son, Saraia his son, + +Mariel his son, Amaria his son, Achitob his son, + +Sadoc his son, Achimaas his son. + +And these +are their residences in their villages, in their coasts, to the sons of Aaron, to their family the Caathites: for they had the lot. + +And they gave them Chebron in the land of Juda, and its suburbs round about it. + +But the fields of the city, and its villages, they gave to Chaleb the son of Jephonne. + +And to the sons of Aaron they gave the cities of refuge, +even Chebron, and Lobna and her suburbs round about, and Selna and her suburbs, and Esthamo and her suburbs, + +and Jethar and her suburbs, and Dabir and her suburbs, + +and Asan and her suburbs, and Baethsamys and her suburbs: + +and of the tribe of Benjamin Gabai and her suburbs, and Galemath and her suburbs, and Anathoth and her suburbs: all their cities +were thirteen cities according to their families. + +And to the sons of Caath that were left of their families, +there were given out of the tribe, +namely, out of the half-tribe of Manasse, by lot, ten cities. + +And to the sons of Gedson according to their families +there were given thirteen cities of the tribe of Issachar, of the tribe of Aser, of the tribe of Nephthali, of the tribe of Manasse in Basan. + +And to the sons of Merari according to their families +there were given, by lot, twelve cities of the tribe of Ruben, of the tribe of Gad, +and of the tribe of Zabulon. + +So the children of Israel gave to the Levites the cities and their suburbs. + +And they gave by lot out of the tribe of the children of Juda, and out of the tribe of the children of Symeon, and out of the tribe of the children of Benjamin, these cities which they call by name. + +And +to the members of the families of the sons of Caath there were also given the cities of their borders out of the tribe of Ephraim. + +And they gave them the cities of refuge, Sychem and her suburbs in mount Ephraim, and Gazer and her suburbs, + +and Jecmaan and her suburbs, and Baethoron and her suburbs, + +and Aelon and her suburbs, and Gethremmon and her suburbs: + +and of the half-tribe of Manasse Anar and her suburbs, and Jemblaan and her suburbs, to the sons of Caath that were left, according to +each several family. + +To the sons of Gedson from the families of the half-tribe of Manasse +they gave Golan of Basan and her suburbs, and Aseroth and her suburbs. + +And out of the tribe of Issachar, Kedes and her suburbs, and Deberi and her suburbs, and Dabor and her suburbs, + +and Ramoth, and Aenan and her suburbs. + +And of the tribe of Aser; Maasal and her suburbs, and Abdon and her suburbs, + +and Acac and her suburbs, and Roob and her suburbs. + +And of the tribe of Nephthali; Kedes in Galilee and her suburbs, and Chamoth and her suburbs, and Kariathaim and her suburbs. + +To the sons of Merari that were left, +they gave out of the tribe of Zabulon Remmon and her suburbs, and Thabor and her suburbs: + +out of +the country beyond Jordan; Jericho westward of Jordan: out of the tribe of Ruben; Bosor in the wilderness and her suburbs, and Jasa and her suburbs, + +and Kadmoth and her suburbs, and Maephla and her suburbs. + +Out of the tribe of Gad; Rammoth Galaad and her suburbs, and Maanaim and her suburbs, + +and Esebon and her suburbs, and Jazer and her suburbs. + +

+ + +

And +as to the sons of Issachar, +they were Thola, and Phua, and Jasub, and Semeron, four. + +And the sons of Thola; Ozi, Raphaia, and Jeriel, and Jamai, and Jemasan, and Samuel, chiefs of their fathers' houses +belonging to Thola, men of might according to their generations; their number in the days of David +was twenty and two thousand and six hundred. + +And the sons of Ozi; Jezraia: and the sons of Jezraia; Michael, Abdiu, and Joel, and Jesia, five, all rulers. + +And with them, according to their generations, according to the houses of their families, +were men mighty to set +armies in array for war, thirty and six thousand, for they had multiplied +their wives and children. + +And their brethren among all the families of Issachar, also mighty men, +were eighty-seven thousand—this was the number of them all. + +The sons of Benjamin; Bale, and Bachir, and Jediel, three. + +And the sons of Bale; Esebon, and Ozi, and Oziel, and Jerimuth, and Uri, five; heads of houses of families, mighty men; and their number +was twenty and two thousand and thirty-four. + +And the sons of Bachir; Zemira, and Joas, and Eliezer, and Elithenan, and Amaria, and Jerimuth, and Abiud, and Anathoth, and Eleemeth: all these +were the sons of Bachir. + +And their number according to their generations, (they were chiefs of their fathers' houses, men of might), +was twenty thousand and two hundred. + +And the sons of Jediel; Balaan: and the sons of Balaan; Jaus, and Benjamin, and Aoth, and Chanana, and Zaethan, and Tharsi, and Achisaar. + +All these +were the sons of Jediel, chiefs of their families, men of might, seventeen thousand and two hundred, going forth to war with might. + +And Sapphin, and Apphin, and the sons of Or, Asom, whose son +was Aor. + +The sons of Nephthali; Jasiel, Goni, and Aser, and Sellum, his sons, Balam his son. + +The sons of Manasse; Esriel, whom his Syrian concubine bore; and she bore to him also Machir the father of Galaad. + +And Machir took a wife for Apphin and Sapphin, and his sister's name was Moocha; and the name of the second +son was Sapphaad; and to Sapphaad were born daughters. + +And Moocha the wife of Machir bore a son, and called his name Phares; and his brother's name +was Surus; his sons +were Ulam, and Rocom. + +And the sons of Ulam; Badam. These +were the sons of Galaad, the son of Machir, the son of Manasse. + +And his sister Malecheth bore Isud, and Abiezer, and Maela. + +And the sons of Semira were, Aim, and Sychem, and Lakim, and Anian. + +And the sons of Ephraim; Sothalath, and Barad his son, and Thaath his son, Elada his son, Saath his son, + +and Zabad his son, Sothele his son, and Azer, and Elead: and the men of Geth who were born in the land killed them, because they went down to take their cattle. + +And their father Ephraim mourned many days, and his brethren came to comfort him. + +And he went in to his wife, and she conceived, and bore a son, and he called his name Beria, because, +said he, he was afflicted in my house. + +And his daughter +was Saraa, and he was among them that were left, and he built Baethoron the upper and the lower. And the descendants of Ozan +were Seera, + +and Raphe his son, Saraph and Thalees his sons, Thaen his son. + +To Laadan his son +was born his son Amiud, his son Helisamai, +his son + +Nun, +his son Jesue, +these were his sons. + +And their possession and their dwelling +were Baethel and her towns, to the east Noaran, westward Gazer and her towns, and Sychem and her towns, as far as Gaza and her towns. + +And as far as the borders of the sons of Manasse, Baethsaan and her towns, Thanach and her towns, Mageddo and her towns, Dor and her towns. In this the children of Joseph the son of Israel lived. + +The sons of Aser; Jemna, and Suia, and Isui, and Beria, and Sore their sister. + +And the sons of Beria; Chaber, and Melchiel; he +was the father of Berthaith. + +And Chaber begot Japhlet, and Samer, and Chothan, and Sola their sister. + +And the sons of Japhlet; Phasec, and Bamael, and Asith: these +are the sons of Japhlet. + +And the sons of Semmer; Achir, and Rooga, and Jaba, and Aram. + +And the sons of Elam his brother; Sopha, and Imana, and Selles, and Amal. + +The sons of Sopha; Sue, and Arnaphar, and Suda, and Barin, and Imran, + +and Basan, and Oa, and Sama, and Salisa, and Jethra, and Beera. + +And the sons of Jether, Jephina, and Phaspha, and Ara. + +And the sons of Ola; Orech, Aniel, and Rasia. + +All these +were the sons of Aser, all heads of families, choice, mighty men, chief leaders: their number for battle array—their number +was twenty-six thousand men. + +

+ + +

Now Benjamin begot Bale his firstborn, and Asbel his second +son, Aara the third, Noa the fourth, + +and Rapha the fifth. + +And the sons of Bale were, Adir, and Gera, and Abiud, + +and Abessue, and Noama, and Achia, + +and Gera, and Sephupham, and Uram. + +These +were the sons of Aod: these are the heads of families to them that dwell in Gabee, and they removed them to Machanathi: + +and Nooma, and Achia and Gera, he removed them, and he begot Aza, and Jachicho. + +And Saarin begot +children in the plain of Moab, after that he had sent away Osin and Baada his wives. + +And he begot of his wife Ada, Jolab, and Sebia, and Misa, and Melchas, + +and Jebus, and Zabia, and Marma: these +were heads of families. + +And of Osin he begot Abitol, and Alphaal. + +And the sons of Alphaal; Obed, Misaal, Semmer: he built Ona, and Lod, and its towns: + +and Beria, and Sama; these +were heads of families among the dwellers in Elam, and they drove out the inhabitants of Geth. + +And his brethren +were Sosec, and Arimoth, + +and Zabadia, and Ored, and Eder, + +and Michael, and Jespha, and Joda, the sons of Beria: + +and Zabadia, and Mosollam, and Azaki, and Abar, + +and Isamari, and Jexlias, and Jobab, the sons of Elphaal: + +and Jakim, and Zachri, and Zabdi, + +and Elionai, and Salathi, + +and Elieli, and Adaia, and Baraia, and Samarath, sons of Samaith: + +and Jesphan, and Obed, and Eliel, + +and Abdon, and Zechri, and Anan, + +and Anania, and Ambri, and Aelam, +and Anathoth, + +and Jathin, and Jephadias, and Phanuel, the sons of Sosec: + +and Samsari, and Saarias, and Gotholia, + +and Jarasia, and Eria, and Zechri, son of Iroam. + +These +were heads of families, chiefs according to their generations: these lived in Jerusalem. + +And the father of Gabaon lived in Gabaon; and his wife's name was Moacha. + +And her firstborn son was Abdon, and Sur, and Kis, and Baal, and Nadab, and Ner, + +and Gedur and his brother, and Zacchur, and Makeloth. + +And Makeloth begot Samaa: for these lived in Jerusalem in the presence of their brethren with their brethren. + +And Ner begot Kis, and Kis begot Saul, and Saul begot Jonathan, and Melchisue, and Aminadab, and Asabal. + +And the son of Jonathan +was Meribaal; and Meribaal begot Micha. + +And the sons of Micha; Phithon, and Melach, and Tharach, and Achaz. + +And Achaz begot Jada, and Jada begot Salaemath, and Asmoth, and Zambri; and Zambri begot Maesa; + +and Maesa begot Baana: Rhaphaea +was his son, Elasa his son, Esel his son. + +And Esel +had six sons, and these +were their name; Ezricam his firstborn, and Ismael, and Saraia, and Abdia, and Anan, and Asa: all these +were the sons of Esel. + +And the sons of Asel his brother; Aelam his firstborn, and Jas the second, and Eliphalet the third. + +And the sons of Aelam were mighty men, bending the bow, and multiplying sons and grandsons, one hundred +and fifty. All these +were of the sons of Benjamin. + +

+ + +

And +this is all Israel, +even their enrolment: and these +are written down in the book of the kings of Israel and Juda, with the +names of them that were carried away to Babylon for their transgressions. + +And they that lived before in their possessions in the cities of Israel, the priests, the Levites, and the appointed ones. + +And there lived in Jerusalem some of the children of Juda, and of the children of Benjamin, and of the children of Ephraim, and Manasse. + +And Gnothi, and the son of Samiud, the son of Amri, the son of Ambraim, the son of Buni, son of the sons of Phares, the son of Juda. + +And of the Selonites; Asaia his firstborn, and his sons. + +Of the sons of Zara; Jeel, and their brethren, six hundred and ninety. + +And of the sons of Benjamin; Salom, son of Mosollam, son of Odouia, son of Asinu. + +And Jemnaa son of Jeroboam, and Elo: these +are the sons of Ozi the son of Machir: and Mosollam, son of Saphatia, son of Raguel, son of Jemnai; + +and their brethren according to their generations, nine hundred and fifty-six, all the men +were heads of families according to the houses of their fathers. + +And of the priests; Jodae, and Joarim, and Jachin, + +and Azaria the son of Chelcias, the son of Mosollam, the son of Sadoc, the son of Maraioth, the son of Achitob, the ruler of the house of God; + +and Adaia son of Iraam, son of Phascor, son of Melchia, and Maasaia son of Adiel, son of Ezira, son of Mosollam, son of Maselmoth, son of Emmer; + +and their brethren, chiefs of their families, a thousand seven hundred and sixty, mighty +men for the work of the ministration of the house of God. + +And of the Levites; Samaia son of Asob, son of Ezricam, son of Asabia, of the sons of Merari. + +And Bacbacar, and Ares, and Galaal, and Matthanias son of Micha, son of Zechri, son of Asaph; + +and Abdia, son of Samia, son of Galaal, son of Idithun, and Barachia son of Ossa, son of Helcana—who lived in the villages of the Notephatites. + +The doorkeepers; Salom, Acum, Telmon, and Diman, and their brethren; Salom +was the chief; + +and +he waited hitherto in the king's gate eastward: these +are the gates of the companies of the sons of Levi. + +And Sellum the son of Core, the son of Abiasaph, the son of Core, and his brethren belonging to the house of his father, the Corites +were over the works of the service, keeping the watches of the tabernacle, and their fathers over the camp of the Lord, keeping the entrance. + +And Phinees son of Eleazar was head over them before the Lord, and these +were with him. + +Zacharias the son of Mosollami +was keeper of the door of the tabernacle of witness. + +All the chosen porters in the gates +were two hundred and twelve, these +were in their courts, +this was their distribution: these David and Samuel the seer established in their charge. + +And these and their sons +were over the gates in the house of the Lord, and in the house of the tabernacle, to keep watch. + +The gates were toward the four winds, eastward, westward, northward, southward. + +And their brethren +were in their courts, to enter in weekly from time to time with these. + +For four strong +men have the charge of the gates; and the Levites were over the chambers, and they keep watch over the treasures of the house of God. + +For the charge +was upon them, and these +were charged with the keys to open the doors of the temple every morning. + +And +some of them +were appointed over the vessels of service, that they should carry them in by number, and carry them out by number. + +And +some of them +were appointed over the furniture, and over all the holy vessels, and over the fine flour, the wine, the oil, the frankincense, and the spices. + +And some of the priests were makers of the ointment, and +appointed to prepare the spices. + +And Matthathias of the Levites, (he +was the firstborn of Salom the Corite,) +was set in charge over the sacrifices of meat-offering of the pan belonging to the high priest. + +And Banaias the Caathite, from among their brethren, +was set over the show bread, to prepare it every sabbath. + +And these +were the singers, heads of families of the Levites, +to whom were established daily courses, for they were employed in the services day and night. + +These +were the heads of the families of the Levites according to their generations; these chiefs lived in Jerusalem. + +And Jeel the father of Gabaon lived in Gabaon; and his wife's name +was Moocha. + +And his firstborn son +was Abdon, and +he had Sur, and Kis, and Baal, and Ner, and Nadab, + +and Gedur and +his brother, and Zacchur, and Makeloth. + +And Makeloth begot Samaa: and these lived in the midst of their brethren in Jerusalem, +even in the midst of their brethren. + +And Ner begot Kis, and Kis begot Saul, and Saul begot Jonathan, and Melchisue, and Aminadab, and Asabal. + +And the son of Jonathan +was Meribaal: and Meribaal begot Micha. + +And the sons of Micha +were Phithon and Malach, and Tharach. + +And Achaz begot Jada: and Jada begot Galemeth, and Gazmoth, and Zambri; and Zambri begot Massa. + +And Massa begot Baana, and Rhaphaia +was his son, Elasa his son, Esel his son. + +And Esel had six sons, and these +were their names; Esricam his firstborn, and Ismael, and Saraia, and Abdia, and Anan, and Asa: these +were the sons of Esel. + +

+ + +

Now the Philistines warred against Israel; and they fled from before the Philistines, and fell down slain in mount Gelbue. + +And the Philistines pursued after Saul, and after his sons; and the Philistines struck Jonathan, and Aminadab, and Melchisue, sons of Saul. + +And the battle prevailed against Saul, and the archers hit him with bows and arrows, and they were wounded of the bows. + +And Saul said to his armor-bearer, Draw your sword, and pierce me through with it, lest these uncircumcised come and mock me. But his armor-bearer would not, for he was greatly afraid: so Saul took a sword, and fell upon it. + +And his armor-bearer saw that Saul was dead, and he also fell upon his sword. + +So Saul died, and his three sons on that day, and all his family died at the same time. + +And all the men of Israel that were in the valley saw that Israel fled, and that Saul and his sons were dead, and they left their cities, and fled: and the Philistines came and lived in them. + +And it came to pass on the next +day that the Philistines came to strip the slain, and they found Saul and his sons fallen on mount Gelbue. + +And they stripped him, and took his head, and his armor, and sent them into the land of the Philistines round about, to proclaim the glad tidings to their idols, and to the people. + +And they put their armor in the house of their god, and they put his head in the house of Dagon. + +And all the dwellers in Galaad heard of all that the Philistines had done to Saul and to Israel. + +And all the mighty men rose up from Galaad, and they took the body of Saul, and the bodies of his sons, and brought them to Jabis, and buried their bones under the oak in Jabis, and fasted seven days. + +So Saul died for his transgressions, wherein he transgressed against God, against the word of the Lord, forasmuch as he kept +it not, because Saul enquired of a wizard to seek +counsel, and Samuel the prophet answered him: + +and he sought not the Lord: so he killed him, and turned the kingdom to David the son of Jesse. + +

+ + +

And all Israel came to David in Chebron, saying, Behold, we +are your bones and your flesh. + +And heretofore when Saul was king, you were he that led Israel in and out, and the Lord of Israel said to you, You shall feed my people Israel, and you shall be for a ruler over Israel. + +And all the elders of Israel came to the king to Chebron; and king David made a covenant with them in Chebron before the Lord: and they anointed David to be king over Israel, according to the word of the Lord by Samuel. + +And the king and his men went to Jerusalem, this +is Jebus; and there the Jebusites the inhabitants of the land said to David, + +You shall not enter in hither. But he took the strong hold of Sion: this +is the city of David. + +And David said, Whoever first smites the Jebusite, even he shall be chief and captain. And Joab the son of Saruia went up first, and became chief. + +And David lived in the strong hold; therefore he called it the city of David. + +And he fortified the city round about. + +And David continued to increase, and the Lord Almighty +was with him. + +And these +are the chiefs of the mighty men, whom David had, who strengthened +themselves with him in his kingdom, with all Israel, to make him king, according to the word of the Lord concerning Israel. + +And this +is the list of the mighty +men of David; Jesebada, son of Achaman, first of the thirty: he drew his sword once against three hundred whom he killed at one time. + +And after him Eleazar son of Dodai, the Achochite: he was among the three mighty men. + +He was with David in Phasodamin, and the Philistines were gathered there to battle, and +there was a portion of the field full of barley; and the people fled before the Philistines. + +And he stood in the midst of the portion, and rescued it, and struck the Philistines; and the Lord wrought a great deliverance. + +And three of the thirty chiefs went down to the rock to David, to the cave of Odollam, and the camp of the Philistines +was in the giants' valley. + +And David +was then in the hold, and the garrison of the Philistines +was then in Bethleem. + +And David longed, and said, Who will give me water to drink of the well of Bethleem, that is in the gate? + +And the three broke through the camp of the Philistines, and they drew water out of the well that was in Bethleem, which was in the gate, and they took it, and came to David: but David would not drink it, and poured it out to the Lord, and said, + +God forbid that I should do this thing: shall I drink the blood of these men with their lives? for with +the peril of their lives they brought it. So he would not drink it. These things did the three mighty +men. + +And Abisa the brother of Joab, he was chief of three: he drew his sword against three hundred slain at one time, and he had a name among the +second three. + +He was more famous than the two +others of the three, and he was chief +over them; yet he reached not to the +first three. + +And Banaia the son of Jodae was the son of a mighty man: many +were his acts for Cabasael: he struck two lion-like men of Moab, and he went down and struck a lion in a pit on a snowy day. + +And he struck an Egyptian, a wonderful man five cubits +high; and in the hand of the Egyptian +there was a spear like a weavers' beam; and Banaia went down to him with a staff, and took the spear out of the Egyptian's hand, and killed him with his own spear. + +These things did Banaia son of Jodae, and his name +was among the three mighties. + +He was distinguished beyond the thirty, yet he reached not to the +first three: and David set him over his family. + +And the mighty +men of the forces +were, Asael the brother of Joab, Eleanan the son of Dodoe of Bethleem, + +Samaoth the Arorite, Chelles the Phelonite, + +Ora the son of Ekkis the Thecoite, Abiezer the Anathothite, + +Sobochai the Usathite, Eli the Achonite, + +Marai the Netophathite, Chthaod the son of Nooza the Netophathite, + +Airi the son of Rebie of the hill of Benjamin, Banaias the Pharathonite, + +Uri of Nachali Gaas, Abiel the Garabaethite, + +Azbon the Baromite, Eliaba the Salabonite, + +the son of Asam the Gizonite, Jonathan the son of Sola the Ararite, + +Achim the son of Achar the Ararite, Elphat the son of Thyrophar + +the Mechorathrite, Achia the Phellonite, + +Esere the Charmadaite, Naarai the son of Azobai, + +Joel the son of Nathan, Mebaal son of Agari, + +Sele the son of Ammoni, Nachor the Berothite, armor-bearer to the son of Saruia, + +Ira the Jethrite, Gaber the Jethrite, + +Uria the Chettite, Zabet son of Achaia, + +Adina son of Saeza, a chief of Ruben, and thirty with him, + +Anan the son of Moocha, and Josaphat the Matthanite, + +Ozia the Astarothite, Samatha and Jeiel sons of Chotham the Ararite, + +Jediel the son of Sameri, and Jozae his brother the Thosaite, + +Eliel the Maoite, and Jaribi, and Josia his son, Ellaam, and Jethama the Moabite, + +Daliel, and Obeth, and Jessiel of Mesobia. + +

+ + +

And these +are they that came to Sikelag, when he yet kept himself close because of Saul the son of Kis; and these +were among the mighty, aiding +him in war, + +and +using the bow with the right hand and with the left, and slingers with stones, and +shooters with bows. Of the brethren of Saul of Benjamin, + +the chief +was Achiezer, and Joas son of Asma the Gabathite, and Joel and Jophalet, sons of Asmoth, and Berchia, and Jeul of Anathoth, + +and Samaias the Gabaonite a mighty man among the thirty, and over the thirty; +and Jeremia, and Jeziel, and Joanan, and Jozabath of Gadarathiim, + +Azai and Arimuth, and Baalia, and Samaraia, and Saphatias of Charaephiel, + +Helcana, and Jesuni, and Ozriel, and Jozara, and Sobocam, and the Corites, + +and Jelia and Zabadia, sons of Iroam, and the +men of Gedor. + +And from Gad these separated themselves to David from the wilderness, strong mighty men of war, bearing shields and spears, and their faces +were as the face of a lion, and they were nimble as roes upon the mountains in speed. + +Aza the chief, Abdia the second, Eliab the third, + +Masmana the fourth, Jeremias the fifth, + +Jethi the sixth, Eliab the seventh, + +Joanan the eighth, Eleazer the ninth, + +Jeremia the tenth, Melchabanai the eleventh. + +These +were chiefs of the army of the sons of Gad, the least one commander of one hundred, and the greatest one of a thousand. + +These +are the +men that crossed over Jordan in the first month, and it had overflowed all its banks; and they drove out all the inhabitants of the valleys, from the east to the west. + +And there came +some of the sons of Benjamin and Juda to the assistance of David. + +And David went out to meet them, and said to them, If you⌃ are come peaceably to me, let my heart be at peace with you: but if +you⌃ are come to betray me to my enemies unfaithfully, the God of your fathers look upon it, and reprove it. + +And the Spirit came upon Amasai, a captain of the thirty, and he said, Go, David, son of Jesse, you and your people, peace, peace be to you, and peace to your helpers, for your God has helped you. And David received them, and made them captains of the forces. + +And +some came to David from Manasse, when the Philistines came against Saul to war: and he helped them not, because the captains of the Philistines took counsel, saying, With the heads of those men will he return to his master Saul. + +When David was going to Sikelag, there came to him of Manasse, Edna and Jozabath, and Rodiel, and Michael, and Josabaith, and Elimuth, and Semathi: +these are the captains of thousands of Manasse. + +And they fought on the side of David against a troop, for they +were all men of might; and they were commanders in the army, +because of +their might. + +For daily men came to David, +till they amounted to a great force, as the force of God. + +And these +are the names of the commanders of the army, who came to David to Chebron, to turn the kingdom of Saul to him according to the word of the Lord. + +The sons of Juda, bearing shields and spears, six thousand and eight hundred mighty in war. + +Of the sons of Symeon mighty for battle, seven thousand and one hundred. + +Of the sons of Levi, four thousand and six hundred. + +And Joadas the chief +of the family of Aaron, and with him three thousand and seven hundred. + +And Sadoc, a young +man mighty in strength, and +there were twenty-two leaders of his father's house. + +And of the sons of Benjamin, the brethren of Saul, three thousand: and still the greater part of them kept the guard of the house of Saul. + +And of the sons of Ephraim, twenty thousand and eight hundred mighty men, famous in the houses of their fathers. + +And of the half-tribe of Manasse, eighteen thousand, even +those who were named by name, to make David king. + +And of the sons of Issachar having wisdom with regard to the times, knowing what Israel should do, two hundred; and all their brethren with them. + +And of Zabulon they that went out to battle, with all weapons of war, +were fifty thousand to help David, not weak-handed. + +And of Nephthali a thousand captains, and with them +men with shields and spears, thirty-seven thousand. + +And of the Danites +men ready for war twenty-eight thousand and eight hundred. + +And of Aser, they that went out to give aid in war, forty thousand. + +And from the country beyond Jordan, from Ruben, and the Gadites, and from the half-tribe of Manasse, one hundred and twenty thousand, with all weapons of war. + +All these +were men of war, setting +the army in battle array, with a peaceful mind +towards him, and they came to Chebron to make David king over all Israel: and the rest of Israel +were of one mind to make David king. + +And they were there three days eating and drinking, for their brethren +had made preparations. + +And their neighbors, as far as Issachar and Zabulon and Nephthali, brought to them upon camels, and asses, and mules, and upon calves, food, meal, cakes of figs, raisins, wine, and oil, calves and sheep abundantly: for +there was joy in Israel. + +

+ + +

And David took counsel with the captains of thousands and captains of hundreds, +even with every commander. + +And David said to the whole congregation of Israel, If it +seem good to you, and it should be prospered by the Lord our God, let us send to our brethren that are left in all the land of Israel, and let the priests the Levites who are with them in the cities of their possession +come, and let them be gathered to us. + +And let us bring over to us the ark of our God; for men have not enquired +at it since the days of Saul. + +And all the congregation said that they would do thus; for the saying was right in the eyes of all the people. + +So David assembled all Israel, from the borders of Egypt even to the entering in of Hemath, to bring in the ark of God from the city of Jarim. + +And David brought it up: and all Israel went up to the city of David, which belonged to Juda, to bring up thence the ark of the Lord God who sits between the cherubim, whose name is called +on it. + +And they set the ark of God on a new wagon +brought out of the house of Aminadab: and Oza and his brethren drove the wagon. + +And David and all Israel +were playing before the Lord with all their might, and +that together with singers, and with harps, and with lutes, with timbrels, and with cymbals, and with trumpets. + +And they came as far as the threshing floor: and Oza put forth his hand to hold the ark, because the bullock moved it from +its place. + +And the Lord was very angry with Oza, and struck him there, because of his stretching forth his hand upon the ark: and he died there before God. + +And David was dispirited, because the Lord +had made a breach on Oza: and he called that place the Breach of Oza until this day. + +And David feared God that day, saying, How shall I bring the ark of God in to myself? + +So David brought not the ark home to himself into the city of David, but he turned it aside into the house of Abeddara the Gethite. + +And the ark of God abode in the house of Abeddara three months: and God blessed Abeddara and all that he had. + +

+ + +

And Chiram king of Tyre sent messengers to David, and cedar timbers, and masons, and carpenters, to build a house for him. + +And David knew that the Lord +had designed him to be king over Israel; because his kingdom was highly exalted, on account of his people Israel. + +And David took more wives in Jerusalem: and there were born to David more sons and daughters. + +And these +are the names of those that were born, who were +born to him in Jerusalem; Samaa, Sobab, Nathan, and Solomon, + +and Baar, and Elisa, and Eliphaleth, + +and Nageth, and Naphath, and Japhie, + +and Elisamae, and Eliade, and Eliphala. + +And the Philistines heard that David was anointed king over all Israel: and all the Philistines went up to seek David; and David heard +it, and went out to meet them. + +And the Philistines came and assembled together in the giants' valley. + +And David enquired of God, saying, Shall I go up against the Philistines? and will you deliver them into my hand? And the Lord said to him, Go up, and I will deliver them into your hands. + +And he went up to Baal Pharasin, and David struck them there; and David said, God has broken through enemies by my hand like a breach of water: therefore he called the name of that place, the Breach of Pharasin. + +And the Philistines left their gods there; and David gave orders to burn them with fire. + +And the Philistines once more assembled themselves in the giants' valley. + +And David enquired of God again; and God said to him, You shall not go after them; turn away from them, and you shall come upon them near the pear trees. + +And it shall be, when you shall hear the sound of their tumult in the tops of the pear trees, then you shall go into the battle: for God has gone out before you to strike the army of the Philistines. + +And he did as God commanded him: and he struck the army of the Philistines from Gabaon to Gazera. + +And the name of David was +famous in all the land; and the Lord put the terror of him on all the nations. + +

+ + +

And +David made for himself houses in the city of David, and he prepared a place for the ark of God, and made a tent for it. + +Then said David, It is not +lawful for any to bear the ark of God, but the Levites; for the Lord has chosen them to bear the ark of the Lord, and to minister to him for ever. + +And David assembled all Israel at Jerusalem, to bring up the ark of the Lord to the place which he +had prepared for it. + +And David gathered together the sons of Aaron the Levites. + +Of the sons of Caath; +there was Uriel the chief, and his brethren, one hundred and twenty. + +Of the sons of Merari; Asaia the chief, and his brethren, two hundred and twenty. + +Of the sons of Gedson; Joel the chief, and his brethren, one hundred and thirty. + +Of the sons of Elisaphat; Semei the chief, and his brethren, two hundred. + +Of the sons of Chebrom; Eliel the chief, and his brethren eighty. + +Of the sons of Oziel; Aminadab the chief, and his brethren one hundred and twelve. + +And David called Sadoc and Abiathar the priests, and the Levites, Uriel, Asaia, and Joel, and Semaia, and Eliel, and Aminadab, + +and said to them, You⌃ +are the heads of the families of the Levites: sanctify yourselves, you and your brethren, and you⌃ shall carry up the ark of the God of Israel, +to the place which I have prepared for it. + +For because you⌃ were not +ready at the first, our God made a breach upon us, because we sought him not according to the ordinance. + +So the priests and the Levites sanctified themselves, to bring up the ark of the God of Israel. + +And the sons of the Levites took the ark of God, (as Moses commanded by the word of God according to the scripture) upon their shoulders with staves. + +And David said to the chiefs of the Levites, Set your brethren the singers with musical instruments, lutes, harps, and cymbals, to sound aloud with a voice of joy. + +So the Levites appointed Aeman the son of Joel; Asaph the son of Barachias +was one of his brethren; and Aethan the son of Kisaeus was of the sons of Merari their brethren; + +and with them their brethren of the second rank, Zacharias, and Oziel, and Semiramoth, and Jeiel, and Elioel, and Eliab, and Banaia, and Maasaia, and Matthathia, and Eliphena, and Makellia, and Abdedom, and Jeiel, and Ozias, the porters. + +And the singers, Aeman, Asaph, and Aethan, with brazen cymbals to make +a sound to be heard. + +Zacharias, and Oziel, Semiramoth, Jeiel, Oni, Eliab, Maasaeas, Banaeas, with lutes, on alaemoth. + +And Mattathias, and Eliphalu, and Makenia, and Abdedom, and Jeiel, and Ozias, with harps of Amasenith, to make a loud noise. + +And Chonenia chief of the Levites +was master of the bands, because he was skillful. + +And Barachia and Elcana +were doorkeepers of the ark. + +And Somnia, and Josaphat, and Nathanael, and Amasai, and Zacharia, and Banaea, and Eliezer, the priests, were sounding with trumpets before the ark of God: and Abdedom and Jeia +were doorkeepers of the ark of God. + +So David, and the elders of Israel, and the captains of thousands, went to bring up the ark of the covenant from the house of Abdedom with gladness. + +And it came to pass when God strengthened the Levites bearing the ark of the covenant of the Lord, that they sacrificed seven calves and seven rams. + +And David +was girded with a fine linen robe, and all the Levites +who were bearing the ark of the covenant of the Lord, and the singers, and Chonenias the master of the band of singers; also upon David +there was a robe of fine linen. + +And all Israel brought up the ark of the covenant of the Lord with shouting, and with the sound of a horn, and with trumpets, and with cymbals, playing loudly on lutes and harps. + +And the ark of the covenant of the Lord arrived, and came to the city of David; and Melchol the daughter of Saul looked down through the window, and saw king David dancing and playing: and she despised him in her heart. + +

+ + +

So they brought in the ark of God, and set it in the midst of the tabernacle which David pitched for it; and they offered whole burnt offerings and peace-offerings before God. + +And David finished offering up whole burnt offerings and peace-offerings, and blessed the people in the name of the Lord. + +And he divided to every man of Israel (both men and women), to +every man one baker's loaf, and a cake. + +And he appointed before the ark of the covenant of the Lord, Levites to minister +and lift up the voice, and to give thanks and praise the Lord God of Israel: + +Asaph +was the chief, and next to him Zacharias, Jeiel, Semiramoth, and Jeiel, Mattathias, Eliab, and Banaeas, and Abdedom: and Jeiel sounding with musical instruments, lutes +and harps, and Asaph with cymbals: + +and Banaeas and Oziel the priests +sounding continually with trumpets before the ark of the covenant of God in that day. + +Then David first gave orders to praise the Lord by the hand of Asaph and his brethren. + +Song. Give thanks to the Lord, call upon him by his name, make known his designs among the people. + +Sing +songs to him, and sing hymns to him, relate to all +people his wonderful deeds, which the Lord has wrought. + +Praise his holy name, the heart that seeks his pleasure shall rejoice. + +Seek the Lord and be strong, seek his face continually. + +Remember his wonderful works which he has wrought, his wonders, and the judgments of his mouth; + + +you⌃ seed of Israel his servants, +you⌃ seed of Jacob his chosen ones. + +He +is the Lord our God; his judgments +are in all the earth. + +Let us remember his covenant for ever, his word which he commanded to a thousand generations, + +which he covenanted with Abraham, and his oath +sworn to Isaac. + +He confirmed it to Jacob for an ordinance, to Israel +as an everlasting covenant, + +saying, To you will I give the land of Chanaan, the line of your inheritance: + +when they were few in number, when they were but little, and lived as strangers in it; + +and went from nation to nation, and from one kingdom to another people. + +He suffered not a man to oppress them, and he reproved kings for their sakes, + +saying, Touch not my anointed ones, and deal not wrongfully with my prophets. + +Sing you⌃ to the Lord, all the earth; proclaim his salvation from day to day. + +Declare among the nations his glory, his wondrous deeds among all peoples. + +For the Lord +is great, and greatly to be praised: he +is to be feared above all gods. + +For all the gods of the nations +are idols; but our God made the heavens. + +Glory and praise +are in his presence; strength and rejoicing +are in his place. + +Give to the Lord, you⌃ families of the nations, give to the Lord glory and strength. + +Give to the Lord the glory +belonging to his name: take gifts and offer +them before him; and worship the Lord in his holy courts. + +Let the whole earth fear before him; let the earth be established, and not be moved. + +Let the heavens rejoice, and let the earth exult; and let them say among the nations, The Lord reigns. + +The sea with its fullness shall resound and the tree of the field, and all things in it. + +Then shall the trees of the wood rejoice before the Lord, for he is come to judge the earth. + +Give thanks to the Lord, for +it is good, for his mercy +is for ever. + +And say you⌃, Save us, O God of our salvation, and gather us, and rescue us from among the heathen, that we may praise your holy name, and glory in your praises. + +Blessed +be the Lord God of Israel from everlasting and to everlasting: And all the people shall say, Amen. So they praised the Lord. + +And they left there Asaph and his brethren before the ark of the covenant of the Lord, to minister before the ark continually, according to the service of each day: from day to day. + +And Abdedom and his brethren +were sixty and eight; and Abdedom the son of Idithun, and Osa, +were to be doorkeepers. + +And +they appointed Sadoc the priest, and his brethren the priests, before the tabernacle of the Lord in the high place in Gabaon, + +to offer up whole burnt offerings continually morning and evening, and according to all things written in the law of the Lord, which he commanded the children of Israel by Moses the servant of God. + +And with him +were Aeman and Idithun, and the rest chosen out by name to praise the Lord, for his mercy +endures for ever. + +And with them +there were trumpets and cymbals to sound aloud, and musical instruments for the songs of God: and the sons of Idithun +were at the gate. + +And all the people went every one to his home: and David returned to bless his house. + +

+ + +

And it came to pass as David lived in his house, that David said to Nathan the prophet, Behold, I dwell in a house of cedar, but the ark of the covenant of the Lord +is under +curtains of skins. + +And Nathan said to David, Do all that is in your heart; for God +is with you. + +And it came to pass in that night, that the word of the Lord came to Nathan, +saying, + +Go and say to David my servant, Thus said the Lord, You shall not build me a house for me to dwell in it. + +For I have not lived in a house from the day that I brought up Israel until this day, but I have been in a tabernacle and a tent, + +in all places through which I have gone with all Israel: did I ever speak to +any one tribe of Israel whom I commanded to feed my people, saying, +Why is it that you⌃ have not built me a house of cedar? + +And now thus shall you say to my servant David, Thus says the Lord Almighty, I took you from the sheepfold, from following the flocks, to be a ruler over my people Israel: + +and I was with you in all places whither you went, and I destroyed all your enemies from before you, and I made for you a name according to the name of the great ones that are upon the earth. + +And I will appoint a place for my people Israel, and I will plant him, and he shall dwell by himself, and shall no longer be anxious; and the son of iniquity shall no longer afflict him, as at the beginning, + +and from the days when I appointed judges over my people Israel. Also I have humbled all your enemies, and I will increase you, and the Lord will build you a house. + +And it shall come to pass when your days shall be fulfilled, and you shall sleep with your fathers, that I will raise up your seed after you, which shall be of your bowels, and I will establish his kingdom. + +He shall build me a house, and I will set up his throne for ever. + +I will be to him a father, and he shall be to me a son: and my mercy will I not withdraw from him, as I withdrew +it from them that were before you. + +And I will establish him in my house and in his kingdom for ever; and his throne shall be set up for ever. + +According to all these words, and according to all this vision, so spoke Nathan to David. + +And king David came and sat before the Lord, and said, Who am I, O Lord God? and what +is my house, that you have loved me for ever? + +And these things were little in your sight, O God: you have also spoken concerning the house of your servant for a long time to come, and you have looked upon me as a man looks upon his fellow, and have exalted me, O Lord God. + +What shall David do more toward you to glorify +you? and you know your servant. + +And you have wrought all this greatness according to your heart. + +O Lord, there is none like you, and there is no God beside you, according to all things which we have heard with our ears. + +Neither is there another nation upon the earth +such as your people Israel, whereas God led him in the way, to redeem a people for himself, to make for himself a great and glorious name, to cast out nations from before your people, whom you redeemed out of Egypt. + +And you have appointed your people Israel as a people to yourself for ever; and you, Lord, did become a God to them. + +And now, Lord, let the word which you spoke to your servant, and concerning his house, be confirmed for ever, and do you as you have spoken. + +And let your name +be established and magnified for ever, +men saying, Lord, Lord, Almighty God of Israel: and +let the house of your servant David +be established before you. + +For you, O Lord my God, have revealed to the ear of your servant that you will build him a house; therefore your servant has found a willingness to pray before you. + +And now, Lord, you yourself are God, and you have spoken these good things concerning your servant. + +And now you have begun to bless the house of your servant, so that it should continue for ever before you: for you, Lord, have blessed +it, and do you bless +it for ever. + +

+ + +

And it came to pass afterwards, that David struck the Philistines, and routed them, and took Geth and its villages out of the hand of the Philistines. + +And he struck Moab; and the Moabites became servants to David, +and tributaries. + +And David struck Adraazar king of Suba of Emath, as he was going to establish power toward the river Euphrates. + +And David took of them a thousand chariots, and seven thousand horsemen, and twenty thousand infantry: and David houghed all the chariot +horses, but there were reserved of them one hundred chariots. + +And the Syrian came from Damascus to help Adraazar king of Suba; and David struck of the Syrian +army twenty and two thousand men. + +And David put a garrison in Syria near Damascus; and they became tributary servants to David: and the Lord delivered David wherever he went. + +And David took the golden collars that were on the servants of Adraazar, and brought them to Jerusalem. + +And David took out of Matabeth, and out of the chief cities of Adraazar very much brass: of this Solomon made the brazen sea, and the pillars, and the brazen vessels. + +And Thoa king of Emath heard that David had struck the whole force of Adraazar king of Suba. + +And he sent Aduram his son to king David to ask how he was, and to congratulate him because he had fought against Adraazar, and struck him; for Thoa was the enemy of Adraazar. + +And all the golden and silver and brazen vessels, even these king David consecrated to the Lord, with the silver and the gold which he took from all the nations; from Idumaea, and Moab, and from the children of Ammon, and from the Philistines, and from Amalec. + +And Abesa son of Saruia struck the Idumeans in the valley of Salt, eighteen thousand. + +And he put garrisons in the valley; and all the Idumaeans became David's servants: and the Lord delivered David wherever he went. + +So David reigned over all Israel; and he executed judgment and justice to all his people. + +And Joab the son of Saruia +was over the army, and Josaphat the son of Achilud +was recorder. + +And Sadoc son of Achitob, and Achimelech son of Abiathar, +were the priests; and Susa +was the scribe; + +and Banaeas the son of Jodae +was over the Cherethite and the Phelethite, and the sons of David were the chief deputies of the king. + +

+ + +

And it came to pass after this, +that Naas the king of the children of Ammon died, and Anan his son reigned in his stead. + +And David said, I will act kindly toward Anan the son of Naas, as his father acted kindly towards me. And David sent messengers to condole with him on the death of his father. So the servants of David came into the land of the children of Ammon to Anan, to comfort him. + +And the chiefs of the children of Ammon said to Anan, Is it to honor your father before you, that David has sent comforters to you? Have not his servants come to you that they might search the city, and to spy out the land? + +And Anan took the servants of David, and shaved them, and cut off the half of their garments as far as their tunic, and sent them away. + +And there came men to report to David concerning the men: and he sent to meet them, for they were greatly disgraced: and the king said, Dwell in Jericho until your beards have grown, and return. + +And the children of Ammon saw that the people of David were ashamed, and Anan and the children of Ammon sent a thousand talents of silver to hire for themselves chariots and horsemen out of Syria of Mesopotamia, and out of Syria Maacha, and from Sobal. + +And they hired for themselves two and thirty thousand chariots, and the king of Maacha and his people; and they came and encamped before Medaba: and the children of Ammon assembled out of their cities, and came to fight. + +And David heard, and sent Joab and all the host of mighty men. + +And the children of Ammon came forth, and set themselves in array for battle by the gate of the city: and the kings that were come forth encamped by themselves in the plain. + +And Joab saw that they were fronting +him to fight against him before and behind, and he chose +some out of all the young men of Israel, and they set themselves in array against the Syrian. + +And the rest of the people he gave into the hand of his brother Abesai, and they set themselves in array against the children of Ammon. + +And he said, If the Syrian should prevail against me, then shall you deliver me: and if the children of Ammon should prevail against you, then will I deliver you. + +Be of good courage, and let us be strong, for our people, and for the cities of our God: and the Lord shall do what +is good in his eyes. + +So Joab and the people that were with him set themselves in battle array against the Syrians, and they fled from them. + +And the children of Ammon saw that the Syrians fled, and they also fled from before Abesai, and from before Joab his brother, and they came to the city: and Joab came to Jerusalem. + +And the Syrian saw that Israel had defeated him, and he sent messengers, and they brought out the Syrians from beyond the river; and Sophath the commander-in-chief of the forces of Adraazar +was before them. + +And it was told David; and he gathered all Israel, and crossed over Jordan, and came upon them, and set the battle in array against them. So David set +his army in array to fight against the Syrians, and they fought against him. + +And the Syrians fled from before Israel; and David killed of the Syrians seven thousand +riders in chariots, and forty thousand infantry, and he killed Sophath the commander-in-chief of the forces. + +And the servants of Adraazar saw that they were defeated before Israel, and they made peace with David and served him: and the Syrians would not any more help the children of Ammon. + +

+ + +

And it came to pass at the return of the year, at the +time of the going forth of kings +to war, that Joab gathered the whole force of the army, and they ravaged the land of the children of Ammon; and he came and besieged Rabba. But David abode in Jerusalem. And Joab struck Rabba and destroyed it. + +And David took the crown of Molchom their king off his head, and the weight of it was found +to be a talent of gold, and on it were precious stones; and it was +placed on the head of David: and he brought out the spoils of the city +which were very great. + +And he brought out the people that were in it, and sawed them asunder with saws, and +cut them with iron axes, and with harrows: and thus David did to all the children of Ammon. And David and all his people returned to Jerusalem. + +And it came to pass afterward that there was again war with the Philistines in Gazer: then Sobochai the Sosathite struck Saphut of the sons of the giants, and laid him low. + +And there +was war again with the Philistines; and Eleanan the son of Jair struck Lachmi the brother of Goliath the Gittite, and the wood of his spear +was as a weavers' beam. + +And there was again war in Geth, and there was a man of extraordinary size, and his fingers +and toes were six on each hand and foot, four and twenty; and he was descended from the giants. + +And he defied Israel, and Jonathan the son of Samaa the brother of David killed him. + +These were born to Rapha in Geth; all four were giants, and they fell by the hand of David, and by the hand of his servants. + +

+ + +

And the devil stood up against Israel, and moved David to number Israel. + +And king David said to Joab and to the captains of the forces, Go, number Israel from Bersabee even to Dan, and bring me +the account, and I shall know their number. + +And Joab said, May the Lord add to his people, one hundred-fold as many as they +are, and +let the eyes of my lord the king see +it: all +are the servants of my lord. Why does my lord seek this thing? +do it not, lest it become a sin to Israel. + +Nevertheless the king's word prevailed against Joab; and Joab went out and passed through all Israel, and came to Jerusalem. + +And Joab gave the number of the mustering of the people to David: and all Israel was a million and one hundred thousand men that drew sword: and the sons of Juda +were four hundred and seventy thousand men that drew sword. + +But he numbered not Levi and Benjamin among them; for the word of the king was painful to Joab. + +And +there was evil in the sight of the Lord respecting this thing; and he struck Israel. + +And David said to God, I have sinned exceedingly, in that I have done this thing: and now, I pray you, remove the sin of your servant; for I have been exceedingly foolish. + +And the Lord spoke to Gad the seer, saying, + +Go and speak to David, saying, Thus says the Lord, I bring three things upon you: choose one of them for yourself, and I will do it to you. + +And Gad came to David, and said to him, Thus says the Lord, Choose for yourself, + +either three years of famine, or that you should flee three months from the face of your enemies, and the sword of your enemies +shall be employed to destroy you, or that the sword of the Lord and pestilence +should be three days in the land, and the angel of the Lord +shall be destroying in all the inheritance of Israel. And now consider what I shall answer to him that sent the message. + +And David said to Gad, They are very hard for me, even +all the three: let me fall now into the hands of the Lord, for his mercies +are very abundant, and let me not fall by any means into the hands of man. + +So the Lord brought pestilence upon Israel: and there fell of Israel seventy thousand men. + +And God sent an angel to Jerusalem to destroy it: and as he was destroying, the Lord saw, and repented for the evil, and said to the angel that was destroying, Let it suffice you; withhold your hand. And the angel of the Lord stood by the threshing floor of Orna the Jebusite. + +And David lifted up his eyes, and saw the angel of the Lord, standing between the earth and the heaven, and his sword drawn in his hand, stretched out over Jerusalem: and David and the elders clothed in sackcloth, fell upon their faces. + +And David said to God, +Was it not I +that gave orders to number the people? and I am the guilty one; I have greatly sinned: but these sheep, what have they done? O Lord God, let your hand be upon me, and upon my father's house, and not on your people for destruction, O Lord! + +And the angel of the Lord told Gad to tell David, that he should go up to erect an altar to the Lord, in the threshing floor of Orna the Jebusite. + +And David went up according to the word of Gad, which he spoke in the name of the Lord. + +And Orna turned and saw the king; and he hid himself and his four sons with him. Now Orna was threshing wheat. + +And David came to Orna; and Orna came forth from the threshing floor, and did obeisance to David with his face to the ground. + +And David said to Orna, Give me your place of the threshing floor, and I will build upon it an altar to the Lord: give it me for its worth in money, and the plague shall cease from +among the people. + +And Orna said to David, Take it to yourself, and let my lord the king do what is right in his eyes: see, I have given the calves for a whole burnt offering, and the plow for wood, and the corn for a meat-offering; I have given all. + +And king David said to Orna, Nay; for I will surely buy it for its worth in money: for I will not take your property for the Lord, to offer a whole burnt offering to the Lord without cost +to myself. + +And David gave to Orna for his place six hundred shekels of gold +by weight. + +And David built there an altar to the Lord, and offered up whole burnt offerings and peace-offerings: and he cried to the Lord, and he answered him by fire out of heaven on the altar of whole burnt offerings, and +it consumed the whole burnt offering. + +And the Lord spoke to the angel; and he put up the sword into its sheath. + +At that time when David saw that the Lord answered him in the threshing floor of Orna the Jebusite, he also sacrificed there. + +And the tabernacle of the Lord which Moses made in the wilderness, and the altar of whole burnt offerings, +were at that time in the high place at Gabaon. + +And David could not go before it to enquire of God; for he hasted not because of the sword of the angel of the Lord. + +

+ + +

And David said, This is the house of the Lord God, and this +is the altar for whole burnt offering for Israel. + +And David gave orders to gather all the strangers that were in the land of Israel; and he appointed stone-hewers to hew polished stones to build the house to God. + +And David prepared much iron for the nails of the doors and the gate; the hinges also and brass in abundance, there was no weighing +of it. + +And cedar threes without number: for the Sidonians and the Tyrians brought cedar trees in abundance to David. + +And David said, My son Solomon +is a tender child, and the house +for me to build to the Lord +is for superior magnificence for a name and for a glory through all the earth: I will make preparation for it. And David prepared abundantly before his death. + +And he called Solomon his son, and commanded him to build the house for the Lord God of Israel. + +And David said to Solomon, +My child, it was in my heart to build a house to the name of the Lord God. + +But the word of the Lord came to me, saying, You have shed blood abundantly, and have carried on great wars: you shall not build a house to my name, because you have shed much blood upon the earth before me. + +Behold, a son shall be born to you, he 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 to Israel in his days. + +He shall build a house to my name; and he shall be a son to me, and I will be a father to him; and I will establish the throne of his kingdom in Israel for ever. + +And now, my son, the Lord shall be with you, and prosper +you; and you shall build a house to the Lord your God, as he spoke concerning you. + +Only may the Lord give you wisdom and prudence, and strengthen you over Israel, both to keep and to do the law of the Lord your God. + +Then will he prosper +you, if you take heed to do the commandments and judgments which the Lord commanded Moses for Israel: be courageous and strong; fear not, nor be terrified. + +And, behold, I according to my poverty have prepared for the house of the Lord one hundred thousand talents of gold, and a million talents of silver, and brass and iron without measure; for it is abundant; and I have prepared timber and stones; and do you add to these. + +And +of them that are with you do you add to the multitude of workmen; +let there be artificers and masons, and carpenters, and every skillful +workman in every work; + +in gold and silver, brass and iron, +of which there is no number. Arise and do, and the Lord +be with you. + +And David charged all the chief men of Israel to help Solomon his son, +saying, + + +Is not the Lord with you? and he has given you rest round about, for he has given into your hands the inhabitants of the land; and the land is subdued before the Lord, and before his people. + +Now set your hearts and souls to seek after the Lord your God: and rise, and build a sanctuary to your God to carry in 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. + +

+ + +

And David was old and full of days; and he made Solomon his son king over Israel in his stead. + +And he assembled all the chief men of Israel, and the priests, and the Levites. + +And the Levites numbered +themselves from thirty years old and upward; and their number by their polls amounted to thirty and eight thousand men. + +Of the overseers over the works of the house of the Lord +there were twenty-four thousand, and +there were six thousand scribes and judges; + +and four thousand doorkeepers, and four thousand to praise the Lord with instruments which he made to praise the Lord. + +And David divided them +into daily courses, for the sons of Levi, for Gedson, Caath, and Merari. + +And for +the family of Gedson, Edan, and Semei. + +The sons of Edan +were Jeiel, the chief, and Zethan, and Joel, three. + +The sons of Semei; Salomith, Jeiel, and Dan, three: these +were the chiefs of the families of Edan. + +And to the sons of Semei, Jeth, and Ziza, and Joas, and Beria: these +were the four sons of Semei. + +And Jeth was the chief, and Ziza the second: and Joas and Beria did not multiply sons, and they became +only one reckoning according to the house of their father. + +The sons of Caath; Ambram, Isaar, Chebron, Oziel, four. + +The sons of Ambram; Aaron and Moses: and Aaron was appointed for the consecration of the most holy things, he and his sons for ever, to burn incense before the Lord, to minister and bless in his name for ever. + +And +as for Moses the man of God, his sons were reckoned to the tribe of Levi. + +The sons of Moses; Gersam, and Eliezer. + +The sons of Gersam; Subael the chief. + +And the sons of Eliezer were, Rabia the chief: and Eliezer had no other sons; but the sons of Rabia were very greatly multiplied. + +The sons of Isaar; Salomoth the chief. + +The sons of Chebron; Jeria the chief, Amaria the second, Jeziel the third, Jekemias the fourth. + +The sons of Oziel; Micha the chief, and Isia the second. + +The sons of Merari; Mooli, and Musi: the sons of Mooli; Eleazar, and Kis. + +And Eleazar died, and he had no sons, but daughters: and the sons of Kis, their brethren, took them. + +The sons of Musi; Mooli, and Eder, and Jarimoth, three. + +These +are the sons of Levi according to the houses of their fathers; chiefs of their families according to their numbering, according to the number of their names, according to their polls, doing the works of service of the house of the Lord, from twenty years old and upward. + +For David said, The Lord God of Israel has given rest to his people, and has taken up his abode in Jerusalem for ever. + +And the Levites bore not the tabernacle, and all the vessels of it for its service. + +For by the last words of David was the number of the Levites +taken from twenty years old and upward. + +For he appointed them to wait on Aaron, to minister in the house of the Lord, over the courts, and over the chambers, and over the purification of all the holy things, and over the works of the service of the house of God; + +and for the show-bread, and for the fine flour of the meat-offering, and for the unleavened cakes, and for the fried cake, and for the dough, and for every measure; + +and to stand in the morning to praise and give thanks to the Lord, and so in the evening; + +and +to be over all the whole burnt offerings that were offered up to the Lord on the sabbaths, and at the new moons, and at the feasts, by number, according to the order +given to them, continually before the Lord. + +And they are to keep the charge of the tabernacle of witness, and the charge of the holy place, and the charges of the sons of Aaron their brethren, to minister in the house of the Lord. + +

+ + +

And +they number the sons of Aaron in +their division, Nadab, and Abiud, and Eleazar, and Ithamar. + +And Nadab and Abiud died before their father, and they had no sons: so Eleazar and Ithamar the sons of Aaron ministered as priests. + +And David distributed them, even Sadoc of the sons of Eleazar, and Achimelech of the sons of Ithamar, according to their numbering, according to their service, according to the houses of their fathers. + +And there were found +among the sons of Eleazar more chiefs of the mighty ones, than of the sons of Ithamar: and he divided them, sixteen heads of families to the sons of Eleazar, eight according to +their families to the sons of Ithamar. + +And he divided them according to their lots, one with the other; for there were those who had charge of the holy things, and those who had charge of the +house of the Lord among the sons of Eleazar, and among the sons of Ithamar. + +And Samaias the son of Nathanael, the scribe, +of the family of Levi, wrote them down before the king, and the princes, and Sadoc the priest, and Achimelech the son of Abiathar +were present; and the heads of the families of the priests and the Levites, each of a household +were assigned one to Eleazar, and one to Ithamar. + +And the first lot came out to Joarim, the second to Jedia, + +the third to Charib, the fourth to Seorim, + +the fifth to Melchias, the sixth to Meiamin, + +the seventh to Cos, the eighth to Abia, + +the ninth to Jesus, the tenth to Sechenias, + +the eleventh to Eliabi, the twelfth to Jacim, + +the thirteenth to Oppha, the fourteenth to Jesbaal, + +the fifteenth to Belga, the sixteenth to Emmer, + +the seventeenth to Chezin, the eighteenth to Aphese, + +the nineteenth to Phetaea, the twentieth to Ezekel, + +the twenty-first to Achim, the twenty-second to Gamul, + +the twenty-third to Adallai, the twenty-fourth to Maasai. + +This +is their numbering according to their service to go into the house of the Lord, according to their appointment by the hand of Aaron their father, as the Lord God of Israel commanded. + +And for the sons of Levi that were left, +even for the sons of Ambram, Sobael: for the sons of Sobael, Jedia. + +For Raabia, the chief +was Isaari, + +and for Isaari, Salomoth: for the sons of Salomoth, Jath. + +The sons of Ecdiu; Amadia the second, Jaziel the third, Jecmoam the fourth. + +For the sons of Oziel, Micha: the sons of Micha; Samer. + +The brother of Micha; Isia, the son of Isia; Zacharia. + +The sons of Merari, Mooli, and Musi: the sons of Ozia, + + +That is, the sons of Merari by Ozia, —his sons +were Isoam, and Sacchur, and Abai. + +To Mooli +were born Eleazar, and Ithamar; and Eleazar died, and had no sons. + +For Kis; the sons of Kis; Jerameel. + +And the sons of Musi; Mooli, and Eder, and Jerimoth. These +were the sons of the Levites according to the houses of their families. + +And they also received lots as their brethren the sons of Aaron before the king; Sadoc also, and Achimelech, and the chiefs of the families of the priests and of the Levites, principal heads of families, even as their younger brethren. + +

+ + +

And king David and the captains of the host appointed to their services the sons of Asaph, and of Aeman, and of Idithun, prophesiers with harps, and lutes, and cymbals: and their number was according to their polls serving in their ministrations. + +The sons of Asaph; Sacchur, Joseph, and Nathanias, and Erael: the sons of Asaph +were next the king. + +To Idithun +were reckoned the sons of Idithun, Godolias, and Suri, and Iseas, and Asabias, and Matthathias, six after their father Idithun, sounding loudly on the harp thanksgiving and praise to the Lord. + +To Aeman +were reckoned the sons of Aeman, Bukias, and Matthanias, and Oziel, and Subael, and Jerimoth, and Ananias, and Anan, and Heliatha, and Godollathi, and Rometthiezer, and Jesbasaca, and Mallithi, and Otheri, and Meazoth. + +All these +were the sons of Aeman the king's chief player in the praises of God, to lift up the horn. And God gave to Aeman fourteen sons, and three daughters. + +All these sang hymns with their father in the house of God, with cymbals, and lutes, and harps, for the service of the house of God, near the king, and Asaph, and Idithun, and Aeman. + +And the number of them after their brethren, those instructed to sing to God, every one that understood +singing was two hundred and eighty-eight. + +And they also cast lots for the daily courses, for the great and the small +of them, of the perfect ones and the learners. + +And the first lot of his sons and of his brethren came forth to Asaph the son of Joseph, +namely, Godolias: the second Heneia, his sons and his brethren +being twelve. + +The third Zacchur, his sons and his brethren +were twelve: + +the fourth Jesri, his sons and his brethren +were twelve: + +the fifth Nathan, his sons and his brethren, twelve: + +the sixth Bukias, his sons and his brethren, twelve: + +the seventh Iseriel, his sons and his brethren, twelve: + +the eighth Josia, his sons and his brethren, twelve: + +the ninth Matthanias, his sons and his brethren, twelve: + +the tenth Semeia, his sons and his brethren, twelve: + +the eleventh Asriel, his sons and his brethren, twelve: + +the twelfth Asabia, his sons and his brethren, twelve: + +the thirteenth Subael, his sons and his brethren, twelve: + +the fourteenth Matthathias, his sons and his brethren, twelve: + +the fifteenth Jerimoth, his sons and his brethren, twelve: + +the sixteenth Anania, his sons and his brethren, twelve: + +the seventeenth Jesbasaca, his sons and his brethren, twelve: + +the eighteenth Ananias, his sons and his brethren, twelve: + +the nineteenth Mallithi, his sons and his brethren, twelve: + +the twentieth Heliatha, his sons and his brethren, twelve: + +the twenty-first Otheri, his sons and his brethren, twelve: + +the twenty-second Godollathi, his sons and his brethren, twelve: + +the twenty-third Meazoth, his sons and his brethren, twelve: + +the twenty-fourth Rometthiezer, his sons and his brethren, twelve: + +

+ + +

And for the divisions of the gates: the sons of the Corites +were Mosellemia, of the sons of Asaph. + +And Mosellemia's firstborn son +was Zacharias, the second Jadiel, the third Zabadia, the fourth Jenuel, + +the fifth Jolam, the sixth Jonathan, the seventh Elionai, the eighth Abdedom. + +And to Abdedom +there were born sons, Samaias the firstborn, Jozabath the second, Joath the third, Sachar the fourth, Nathanael the fifth, + +Amiel the sixth, Issachar the seventh, Phelathi the eighth: for God blessed him. + +And to Samaias his son were born the sons of his firstborn, chiefs over the house of their father, for they were mighty. + +The sons of Samai; Othni, and Raphael, and Obed, and Elzabath, and Achiud, mighty men, Heliu, and Sabachia, and Isbacom. + +All +these were of the sons of Abdedom, they and their sons and their brethren, doing mightily in service: in all sixty-two +born to Abdedom. + +And Mosellemia +had eighteen sons and brethren, mighty men. + +And to Osa of the sons of Merari +there were born sons, keeping the dominion; though he was not the firstborn, yet his father made him chief of the second division. + +Chelcias the second, Tablai the third, Zacharias the fourth: all these +were the sons and brethren of Osa, thirteen. + +To these +were assigned the divisions of the gates, to the chiefs of the mighty men the daily courses, even their brethren, to minister in the house of the Lord. + +And they cast lots for the small as well as for the great, for the several gates, according to their families. + +And the lot of the east gates fell to Selemias, and Zacharias: the sons of Soaz cast lots for Melchias, and the lot came out northward. + +To Abdedom +they gave by lot the south, opposite the house of Esephim. + + +They gave the lot for the second to Osa westward, after the gate of the chamber by the ascent, watch against watch. + +Eastward +were six +watchmen in the day; northward four by the day; southward four by the day; and two at the Esephim, + +to relieve guard, also for Osa westward after the chamber-gate, three. +There was a ward over against the ward of the ascent eastward, six +men in a day, and four for the north, and four for the south, and at the Esephim two to relieve guard, and four by the west, and two to relieve guard at the pathway. + +These +are the divisions of the porters for the sons of Core, and to the sons of Merari. + +And the Levites their brethren +were over the treasures of the house of the Lord, and over the treasures of the hallowed things. + +These +were the sons of Ladan, the sons of the Gersonite: to Ladan +belonged the heads of the families: +the son of Ladan the Gersonite +was Jeiel. + +The sons of Jeiel +were Zethom, and Joel; brethren +who were over the treasures of the house of the Lord. + +To Ambram and Issaar belonged Chebron, and Oziel. + +And Subael the +son of Gersam, the +son of Moses, +was over the treasures. + +And Rabias +was son to his brother Eliezer, and +so was Josias, and Joram, and Zechri, and Salomoth. + +This Salomoth and his brethren +were over all the sacred treasures, which David the king and the heads of families consecrated, +and the captains of thousands and captains of hundreds, and princes of the host, + +things which he took out of cities and from the spoils, and consecrated some of them, so that the building of the house of God should not lack +supplies; + +and over all the holy things of God dedicated by Samuel the prophet, and Saul the son of Kis, and Abenner the son of Ner, and Joab the son of Saruia, whatever they sanctified +was by the hand of Salomoth and his brethren. + +For the Issaarites, Chonenia, and +his sons +were over the outward ministration over Israel, to record and to judge. + +For the Chebronites, Asabias and his brethren, a thousand and seven hundred mighty men, +were over the charge of Israel beyond Jordan westward, for all the service of the Lord and work of the king. + +Of the +family of Chebron Urias +was chief, even of the Chebronites according to their generations, according to their families. In the fortieth year of his reign they were numbered, and there were found mighty men among them in Jazer of Galaad. + +And his brethren +were two thousand seven hundred mighty men, chiefs of their families, and king David set them over the Rubenites, and the Gaddites, and the half-tribe of Manasse, for every ordinance of the Lord, and business of the king. + +

+ + +

Now the sons of Israel according to their number, heads of families, captains of thousands and captains of hundreds, and scribes ministering to the king, and for every affair of the king according to +their divisions, +for every ordinance of coming in and going out monthly, for all the months of the year, one division of them +was twenty-four thousand. + +And over the first division of the first month +was Isboaz the son of Zabdiel: in his division +were twenty-four thousand. + +Of the sons of Tharez +one was chief of all the captains of the host for the first month. + +And over the division of the second month +was Dodia the son of Ecchoc, and over his division +was Makelloth also chief: and in his division +were twenty and four thousand, chief men of the host. + +The third for the third month +was Banaias the son of Jodae the chief priest: and in his division +were twenty and four thousand. + +This Banaeas +was more mighty than the thirty, and over the thirty: and Zabad his son +was over his division. + +The fourth for the fourth month +was Asael the brother of Joab, and Zabadias his son, and his brethren: and in his division +were twenty and four thousand. + +The fifth chief for the fifth month +was Samaoth the Jezraite: and in his division +were twenty and four thousand. + +The sixth for the sixth month +was Hoduias the son of Ekkes the Thecoite: and in his division +were twenty and four thousand. + +The seventh for the seventh month +was Chelles of Phallus of the children of Ephraim: and in his division +were twenty and four thousand. + +The eighth for the eighth month +was Sobochai the Usathite, +belonging to Zarai: and in his division +were twenty and four thousand. + +The ninth for the ninth month +was Abiezer of Anathoth, of the land of Benjamin: and in his division +were twenty and four thousand. + +The tenth for the tenth month +was Meera the Netophathite, +belonging to Zarai: and in his division +were twenty and four thousand. + +The eleventh for the eleventh month +was Banaias of Pharathon, of the sons of Ephraim: and in his division +were twenty and four thousand. + +The twelfth for the twelfth month +was Choldia the Netophathite, +belonging to Gothoniel: and in his division +were twenty and four thousand. + +And over the tribes of Israel, the chief for Ruben +was Eliezer the son of Zechri: for Symeon, Saphatias the son of Maacha: + +for Levi, Asabias the son of Camuel: for Aaron, Sadoc: + +for Juda, Eliab of the brethren of David: for Issachar, Ambri the son of Michael: + +for Zabulon, Samaeas the son of Abdiu: for Nephthali, Jerimoth the son of Oziel: + +for Ephraim, Ose the son of Ozia: for the half-tribe of Manasse, Joel the son of Phadaea: + +for the half-tribe of Manasse in the land of Galaad, Jadai the son of Zadaeas, for the sons of Benjamin, Jasiel the son of Abenner: + +for Dan, Azariel the son of Iroab: these +are the chiefs of the tribes of Israel. + +But David took not their number from twenty years old and under: because the Lord said that he would multiply Israel as the stars of the heaven. + +And Joab the son of Saruia began to number the people, and did not finish the work, for there was hereupon wrath on Israel; and the number was not recorded in the book of the chronicles of king David. + +And over the king's treasures +was Asmoth the son of Odiel; and over the treasures in the country, and in the towns, and in the villages, and in the towers, +was Jonathan the son of Ozia. + +And over the husbandmen who tilled the ground +was Esdri the son of Chelub. + +And over the fields +was Semei of Rael; and over the treasures of wine in the fields +was Zabdi the son of Sephni. + +And over the olive yards, and over the sycamores in the plain country +was Ballanan the Gedorite; and over the stores of oil +was Joas. + +And over the oxen pasturing in Saron +was Satrai the Saronite; and over the oxen in the valleys +was Sophat the son of Adli. + +And over the camels +was Abias the Ismaelite; and over the asses +was Jadias of Merathon. + +And over the sheep +was Jaziz the Agarite. All these +were superintendents of the substance of king David. + +And Jonathan, David's uncle by the father's side, +was a counsellor, a wise man: and Jeel the son of Achami +was with the king's sons. + +Achitophel +was the king's counsellor: and Chusi the chief friend of the king. + +And after this Achitophel Jodae the son of Banaeas +came next, and Abiathar: and Joab +was the king's commander-in-chief. + +

+ + +

And David assembled all the chief +men of Israel, the chief of the judges, and all the chief +men of the courses +of attendance on the person of the king, and the captains of thousands and hundreds, and the treasurers, and the lords of his substance, and of all the king's property, and of his sons, together with the eunuchs, and the mighty men, and the warriors of the army, at Jerusalem. + +And David stood in the midst of the assembly, and said, Hear me, my brethren, and my people: it was in my heart to build a house of rest for the ark of the covenant of the Lord, and a place for the feet of our Lord, and I prepared +materials suitable for the building: + +but God said, You shall not build me a house to call my name upon it, for you are a man of war, and have shed blood. + +Yet the Lord God of Israel chose me out of the whole house of my father to be king over Israel for ever; and he chose Juda as the kingly +house, and out of the house of Juda +he chose the house of my father; and among the sons of my father he preferred me, that I should be king over all Israel. + +And of all my sons, (for the Lord has given me many sons,) he has chosen Solomon my son, to set him on the throne of the kingdom of the Lord over Israel. + +And God said to me, Solomon your son shall build my house and my court: for I have chosen him to be my son, and I will be to him a father. + +And I will establish his kingdom for ever, if he continue to keep my commandments, and my judgments, as +at this day. + +And now +I charge you before the whole assembly of the Lord, and in the audience of our God, keep and seek all the commandments of the Lord our God, that you⌃ may inherit the good land, and leave it for your sons to inherit after you for ever. + +And now, +my son Solomon, know the God of your fathers, and serve him with a perfect heart and willing soul: for the Lord searches all hearts, and knows every thought: if you seek him, he will be found of you; but if you should forsake him, he will forsake you for ever. + +See now, for the Lord has chosen you to build him a house for a sanctuary, be strong and do +it. + +And David gave Solomon his son the plan of the temple, and its buildings, and its treasuries, and its upper chambers, and the inner store-rooms, and the place of the atonement, + +and the plan which he had in his mind of the courts of the house of the Lord, and of all the chambers round about, +designed for the treasuries of the house of God, and of the treasuries of the holy things, and of the chambers for resting: + +and +the plan of the courses of the priests and Levites, for all the work of the service of the house of the Lord, and of the stores of vessels for ministration of the service of the house of the Lord. + +And +he gave him the account of their weight, both of gold and silver +vessels. + +He gave him the weight of the candlesticks, and of the lamps. + +He gave him likewise the weight of the tables of show bread, of each table of gold, and likewise of the +tables of silver: + +also of the flesh hooks, and vessels for drink-offering, and golden bowls: and the weight of the gold and silver +articles, and censers, +and bowls, according to the weight of each. + +And he showed him the weight +of the utensils of the altar of incense, +which was of pure gold, and the plan of the chariot of the cherubs that spread out their wings, and overshadowed the ark of the covenant of the Lord. + +David gave all to Solomon in the Lord's handwriting, according to the knowledge given him of the work of the pattern. + +And David said to Solomon his son, Be strong, and play the man, and do: fear not, neither be terrified; for the Lord my God +is with you; he will not forsake you, and will not fail you, until you have finished all the work of the service of the house of the Lord. And behold the pattern of the temple, even his house, and its treasury, and the upper chambers, and the inner store-rooms, and the place of propitiation, and the plan of the house of the Lord. + +And see, +here are the courses of the priests and Levites for all the service of the house of the Lord, and +there shall be with you +men for every workmanship, and every one of ready skill in every are: also the chief men and all the people, +ready for all your commands. + +

+ + +

And David the king said to all the congregation, Solomon my son, whom the Lord has chosen, +is young and tender, and the work +is great; for +it is not for man, but for the Lord God. + +I have prepared according to all +my might for the house of my God gold, silver, brass, iron, wood, onyx stones, and costly and variegated stones for setting, and every precious stone, and much Parian +marble. + +And still farther, because I took pleasure in the house of my God, I have gold and silver which I have procured for myself, and, behold, I have given them to the house of my God over and above, beyond what I have prepared for the holy house. + +Three thousand talents of gold of Suphir, and seven thousand talents of fine silver, for the overlaying of the walls of the sanctuary: + + +for you to use the gold for +things of gold, and the silver for things of silver, and for every work by the hand of the artificers. And who is willing to dedicate himself in work this day for the Lord? + +Then the heads of families, and the princes of the children of Israel, and the captains of thousands and captains of hundreds, and the overseers of the works, and the king's builders, offered willingly. + +And they gave for the works of the house of the Lord five thousand talents of gold, and ten thousand gold +pieces, and ten thousand talents of silver, and eighteen thousand talents of brass, and one hundred thousand talents of iron. + +And they who had +precious stone, gave it into the treasuries of the house of the Lord by the hand of Jeiel the Gedsonite. + +And the people rejoiced because of the willingness, for they offered willingly to the Lord with a full heart: and king David rejoiced greatly. + +And king David blessed the Lord before the congregation, saying, Blessed are you, O Lord God of Israel, our Father, from everlasting and to everlasting. + +Your, O Lord, +is the greatness, and the power, and the glory, and the victory, and the might: for you are Lord of all things that are in heaven and upon the earth: before your face every king and nation is troubled. + +From you +come wealth and glory: you, O Lord, rule over all, the Lord of all dominion, and in your hand +is strength and rule; and +you are almighty with your hand to increase and establish all things. + +And now, Lord, we give thanks to you, and praise your glorious name. + +But who am I, and what +is my people, that we have been able to be thus forward +in offering to you? for all things +are your, and of your own have we given you, + +for we are strangers before you, and sojourners, as all our fathers +were: our days upon the earth +are as a shadow, and there is no remaining. + +O Lord our God, as for all this abundance which I have prepared that a house should be built to your holy name, it is of your hand, and all +is your. + +And I know, Lord, that you are he that searches the hearts, and you love righteousness. I have willingly offered all these things in simplicity of heart; and now I have seen with joy your people here present, willingly offering to you. + +O Lord God of Abraham, and Isaac, and Israel, our fathers, preserve these things in the thought of the heart of your people for ever, and direct their hearts to you. + +And to Solomon my son give a good heart, to perform your commandments, and +to observe your testimonies, and your ordinances, and to accomplish the building of your house. + +And David said to the whole congregation, Bless you⌃ the Lord our God. And all the congregation blessed the Lord God of their fathers, and they bowed the knee and worshipped the Lord, and +did obeisance to the king. + +And David sacrificed to the Lord, and offered up whole burnt offerings to the Lord on the morrow after the first day, a thousand calves, a thousand rams, a thousand lambs, and their drink-offerings, and sacrifices in abundance for all Israel. + +And they ate and drank joyfully that day before the Lord: and they made Solomon the son of David king a second time, and anointed him king before the Lord, and Sadoc to the priesthood. + +And Solomon sat upon the throne of his father David, and was highly honored; and all Israel obeyed him. + +The princes, and the mighty men, and all the sons of king David his father, were subject to him. + +And the Lord magnified Solomon over all Israel, and gave him royal glory, such as was not upon any king before him. + +And David the son of Jessae reigned over Israel forty years; + +seven years in Chebron, and thirty-three years in Jerusalem. + +And he died in a good old age, full of days, in wealth, and glory: and Solomon his son reigned in his stead. + +And the rest of the acts of David, the former and the latter, are written in the history of Samuel the seer, and in the history of Nathan the prophet, and in the history of Gad the seer, + +concerning all his reign, and his power, and the times which went over him, and over Israel, and over all the kingdoms of the earth. + +

+
+ +Chronicles II +CHRONICLES II +Chronicles II +2CH +

CHRONICLES II +

+ + +

And Solomon the son of David was established over his kingdom, and the Lord his God was with him, and increased him exceedingly. + +And Solomon spoke to all Israel, to the captains of thousands, and to the captains of hundreds, and to the judges, and to all the rulers over Israel, even the heads of the families; + +and Solomon and all the congregation went to the high place that was in Gabaon, where was God's tabernacle of witness, which Moses the servant of the Lord made in the wilderness. + +But David had brought up the ark of God out of the city of Cariathiarim; for David had prepared a place for it, for he had pitched a tabernacle for it in Jerusalem. + +And the brazen altar which Beseleel the son of Urias, the son of Or, had made, was there before the tabernacle of the Lord: and Solomon and the congregation enquired at it. + +And Solomon brought +victims there to the brazen altar that was before the Lord in the tabernacle, and offered upon it a thousand whole burnt offerings. + +In that night God appeared to Solomon, and said to him, Ask what I shall give you. + +And Solomon said to God, You have dealt very mercifully with my father David, and have made me king in his stead. + +And now, O Lord God, let, I pray you, your name be established upon David my father; for you have made me king over a people numerous as the dust of the earth. + +Now give me wisdom and understanding, that I may go out and come in before this people: for who shall judge this your great people? + +And God said to Solomon, Because this was in your heart, and you have not asked great wealth, nor glory, nor the life of your enemies, and you have not asked long life; but have asked for yourself wisdom and understanding, that you might judge my people, over whom I have made you king: + +I give you this wisdom and understanding; and I will give you wealth, and riches, and glory, so that there shall not have been +any like you among the kings before you, neither shall there be such after you. + +And Solomon came from the high place that was in Gabaon to Jerusalem, +from before the tabernacle of witness, and reigned over Israel. + +And Solomon collected chariots and horsemen: and he had fourteen hundred chariots, and twelve thousand horsemen: and he set them in the cities of chariots, and the people +were with the king in Jerusalem. + +And the king made silver and gold in Jerusalem +to be as stones, and cedars in Judea as sycamores in the plain for multitude. + +And Solomon imported horses from Egypt, and the charge of the king's merchants for going +was as follows, and they traded, + +and went and brought out of Egypt a chariot for six hundred +pieces of silver, and a horse for one hundred and fifty +pieces of silver: and so they brought for all the kings of the Chettites, and for the kings of Syria by their means. + +

+ + +

And Solomon said that he would build a house to the name of the Lord, and a house for his kingdom. + +And Solomon gathered seventy thousand men that bore burdens, and eighty thousand hewers of stone in the mountain, and +there were three thousand six hundred superintendents over them. + +And Solomon sent to Chiram king of Tyre, saying, Whereas you did deal +favourably with David my father, and did send him cedars to build for himself a house to dwell in, + +behold, I also his son am building a house to the name of the Lord my God, to consecrate it to him, to burn incense before him, and +to offer show bread continually, and to offer up whole burnt offerings continually morning and evening, and on the sabbaths, and at the new moons, and at the feasts of the Lord our God: this +is a perpetual +statute for Israel. + +And the house which I am building +is to be great: for the Lord our God +is great beyond all gods. + +And who will be able to build him a house? for the heaven and heaven of heavens do not bear his glory: and who am I, that I should build him a house, save only to burn incense before him? + +And now send me a man wise and skilled to work in gold, and in silver, and in brass, and in iron, and in purple, and in scarlet, and in blue, and one that knows how to grave together with the craftsmen who are with me in Juda and in Jerusalem, which materials my father David prepared. + +And send me from Libanus cedar wood, and wood of juniper, and pine; for I know that your servants are skilled in cutting timber in Libanus: and, behold, your servants shall go with my servants, + +to prepare timber for me in abundance: for the house which I am building +must be great and glorious. + +And, behold, I have given freely to your servants that work and cut the wood, corn for food, +even twenty thousand measures of wheat, and twenty thousand measures of barley, and twenty thousand measures of wine, and twenty thousand measures of oil. + +And Chiram king of Tyre answered in writing, and sent to Solomon, saying, Because the Lord loved his people, he made you king over them. + +And Chiram said, Blessed +be the Lord God of Israel, who made heaven and earth, who has given to king David a wise son, and one endowed with knowledge and understanding, who shall build a house for the Lord, and a house for his kingdom. + +And now I have sent you a wise and understanding man +who belonged to Chiram my father + +(his mother +was of the daughters of Dan, and his father +was a Tyrian), skilled to work in gold, and in silver, and in brass, and in iron, and in stones and wood; and to weave with purple, and blue, and fine linen, and scarlet; and to engrave, and to understand every device, whatever you shall give him +to do with your craftsmen, and the craftsmen of my lord David your father. + +And now, the wheat, and the barley, and the oil, and the wine which my lord mentioned, let him send to his servants. + +And we will cut timber out of Libanus according to all your need, and we will bring it on rafts to the sea of Joppa, and you shall bring it to Jerusalem. + +And Solomon gathered all the foreigners that were in the land of Israel, after the numbering with which David his father numbered them; and there were found one hundred and fifty-three thousand six hundred. + +And he made of them seventy thousand burden-bearers, and eighty thousand hewers of stone, and three thousand six hundred taskmasters over the people. + +

+ + +

And Solomon began to build the house of the Lord in Jerusalem in the mount of Amoria, where the Lord appeared to his father David, in the place which David had prepared in the threshing floor of Orna the Jebusite. + +And he began to build in the second month, in the fourth year of his reign. + +And thus Solomon began to build the house of God: the length in cubits—even the first measurement from end to end, was sixty cubits, and the breadth twenty cubits. + +And the portico in front of the house, its length in front of the breadth of the house +was twenty cubits, and its height one hundred and twenty cubits: and he gilded it within with pure gold. + +And he lined the great house with cedar wood, and gilded it with pure gold, and carved upon it palm-trees and chains. + +And he garnished the house with precious stones for beauty; and he gilded it with gold of the gold from Pharuim. + +And he gilded the house, and its +inner walls, and the door-posts, and the roofs, and the doors with gold; and he carved cherubs on the walls. + +And he built the holy of holies, its length was according to the front +of the other house, the breadth of the house +was twenty cubits, and the length twenty cubits: and he gilded +it with pure gold for cherubs, to +the amount of six hundred talents. + +And the weight of the nails, +even the weight of each was fifty shekels of gold: and he gilded the upper chamber with gold. + +And he made two cherubs in the most holy house, wood-work, and he gilded them with gold. + +And the wings of the cherubs were twenty cubits in length: and one wing of five cubits touched the wall of the house: and the other wing of five cubits touched the wing of the other cherub. + +And the wings of these cherubs expanded were of the length of twenty cubits: and they stood upon their feet, and their faces were toward the house. + +And he made the vail of blue, and purple, and scarlet, and fine linen, and wove cherubs in it. + +Also he made in front of the house two pillars, in height thirty-five cubits, and their chapters of five cubits. + +And he made chains, +as in the oracle, and put +them on the heads of the pillars; and he made one hundred pomegranates, and put them on the chains. + +And he set up the pillars in front of the temple, one on the right hand and the other on the left: and he called the name of the one on the right hand 'Stability,' and the name of the one on the left 'Strength.' + +

+ + +

And he made a brazen altar, the length of it twenty cubits, and the breadth twenty cubits, and the height ten cubits. + +And he made the molten sea, in diameter ten cubits, entirely round, and the height of it five cubits, and the circumference thirty cubits. + +And beneath it the likeness of calves, they compass it round about: ten cubits compass the laver round about, they cast the calves two rows in their casting, + +wherein they made them twelve calves, —three looking northwards, and three westwards, and three southwards, and three eastwards: and the sea was upon them above, +and their hinder parts were inward. + +And its thickness was a hand-breadth, and its brim as the brim of a cup, graven with flowers of lilies, holding three thousand measures: and he finished +it. + +And he made ten lavers, and set five on the right hand, and five on the left, to wash in them the instruments of the whole burnt offerings, and to rinse +the vessels in them; and the sea +was for the priests to wash in. + +And he made the ten golden candlesticks according to their pattern, and he put them in the temple, five on the right hand, and five on the left. + +And he made ten tables, and put them in the temple, five on the right hand, and five on the left: and he made one hundred golden bowls. + +Also he made the priests' court, and the great court, and doors to the court, and their panels +were overlaid with brass. + +And he set the sea at the corner of the house on the right, as it were fronting the east. + +And Chiram made the flesh hooks, and the fire-pans, and the grate of the altar, and all its instruments: and Chiram finished doing all the work which he wrought for king Solomon in the house of God: + +two pillars, and upon them an embossed work for the capitals on the heads of the two pillars, and two nets to cover the heads of the capitals which are on the heads of the pillars; + +and four hundred golden bells for the two nets, and two rows of pomegranates in each net, to cover the two embossed rims of the capitals which are upon the pillars. + +And he made the ten bases, and he made the lavers upon the bases; + +and the one sea, and the twelve calves under it; + +and the foot-baths, and the buckets, and the caldrons, and the flesh hooks, and all their furniture (which Chiram made, and brought to king Solomon in the house of the Lord) of pure brass. + +In the country round about Jordan the king cast them, in the clay ground in the house of Socchoth, and between +that and Saredatha. + +So Solomon made all these vessels in great abundance, for the quantity of brass failed not. + +And Solomon made all the vessels of the house of the Lord, and the golden altar, and the tables, and upon them +were to be the loaves of show bread; + +also the candlesticks, and the lamps to give light according to the pattern, and in front of the oracle, of pure gold. + +And their snuffers, and their lamps +were made, and +he made the bowls, and the censers, and the fire-pans, of pure gold. + +And +there was the inner door of the house +opening into the holy of holies, and +he made the inner doors of the temple of gold. So all the work which Solomon wrought for the house of the Lord was finished. + +

+ + +

And Solomon brought in the holy things of his father David, the silver, and the gold, and the +other vessels, and put them in the treasury of the house of the Lord. + +Then Solomon assembled all the elders of Israel, and all the heads of the tribes, +even the leaders of the families of the children of Israel, to Jerusalem, to bring up the ark of the covenant of the Lord out of the city of David, —this +is Sion. + +And all Israel were assembled +to the king in the feast, this +is the seventh month. + +And all the elders of Israel came; and all the Levites took up the ark, + +and the tabernacle of witness, and all the holy vessels that were in the tabernacle; and the priests and the Levites brought it up. + +And king Solomon, and all the elders of Israel, and the religious of them, and they of them that were gathered before the ark, +were sacrificing calves and sheep, which could not be numbered or reckoned for multitude. + +And the priests brought in the ark of the covenant of the Lord into its place, into the oracle of the house, +even into the holy of holies, under the wings of the cherubs. + +And the cherubs stretched out their wings over the place of the ark, and the cherubs covered the ark, and its staves above. + +And the staves projected, and the heads of the staves were seen from the holy place in front of the oracle, they were not seen without: and there they were to this day. + +There was nothing in the ark except the two tables which Moses placed +there in Choreb, which God gave in covenant with the children of Israel, when they went out of the land of Egypt. + +And it came to pass, when the priests when out of the holy place, (for all the priests that were found were sanctified, they were not +then arranged according to their daily course,) + +that all the singing Levites +assigned to the sons of Asaph, to Aeman, to Idithun, and to his sons, and to his brethren, of them that were clothed in linen garments, with cymbals and lutes and harps, +were standing before the altar, and with them one hundred and twenty priests, blowing trumpets. + +And there was one voice in the trumpeting and in the psalm-singing, and in the loud utterance with one voice to give thanks and praise the Lord; and when they raised their voice together with trumpets and cymbals, and instruments of music, and said, Give thanks to the Lord, for +it is good, for his mercy +endures for ever:—then the house was filled with the cloud of the glory of the Lord. + +And the priests could not stand to minister because of the cloud: for the glory of the Lord filled the house of God. + +

+ + +

Then said Solomon, The Lord said that he would dwell in thick darkness. + +But I have built a house to your name, holy to you, and prepared +for you to dwell in for ever. + +And the king turned his face, and blessed all the congregation of Israel: and all the congregation of Israel stood by. + +And he said, Blessed +be the Lord God of Israel: he has even fulfilled with his hands as he spoke with his mouth to my father David, saying, + +From the day when I brought up my people out of the land of Egypt, I chose no city of all the tribes of Israel, to build a house that my name should be there; neither did I choose a man to be a leader over my people Israel. + +But I chose Jerusalem that my name should be there; and I chose David to be over my people Israel. + +And it came into the heart of David my father, to build a house for the name of the Lord God of Israel. + +But the Lord said to my father David, Whereas it came into your heart to build a house for my name, you did well that it came into your heart. + +Nevertheless you shall not build the house; for your son who shall come forth out of your loins, he shall build the house for my name. + +And the Lord has confirmed this word, which he spoke; and I am raised up in the room of my father David, and I sit upon the throne of Israel as the Lord said, and I have built the house for the name of the Lord God of Israel: + +and I have set there the ark in which +is the covenant of the Lord, which he made with Israel. + +And he stood before the altar of the Lord in the presence of all the congregation of Israel, and spread out his hands. + +For Solomon +had made a brazen scaffold, and set it in the midst of the court of the sanctuary; the length of it +was five cubits, and the breadth of it five cubits, and the height of it three cubits: and he stood upon it, and fell upon his knees before the whole congregation of Israel, and spread abroad his hands to heaven, + +and said, Lord God of Israel, there is no God like you in heaven, or on the earth; keeping covenant and mercy with your servants that walk before you with +their whole heart. + +Even as you have kept +them with your servant David my father, as you have spoken to him in words:—you have both spoken with your mouth, and have fulfilled +it with your hands, as it is this day. + +and now, Lord God of Israel, keep with your servant David my father the things which you spoke to him, saying, There shall not fail you a man before me sitting on the throne of Israel, if only your sons will take heed to their way to walk in my law, as you did walk before me. + +And now, Lord God of Israel, let, I pray you, your word be confirmed, which you have spoken to your servant David. + +For will God indeed dwell with men upon the earth? if the heaven and the heaven of heavens will not suffice you, what then is this house which I have built? + +Yet you shall have respect to the prayer of your servant, and to my petition, O Lord God, so as to listen to the petition and the prayer which your servant prays before you this day: + +so that your eyes should be open over this house by day and by night, towards this place, whereon you said your name should be called, so as to hear the prayer which your servant prays towards this house. + +And you shall hear the supplication of your servant, and of your people Israel, whatever prayers they shall make towards this place: and you shall listen in your dwelling-place out of heaven, yes you shall hear, and be merciful. + +If a man sin against his neighbor, and he bring an oath upon him so as to make him swear, and he come and swear before the altar in this house; + +then shall you listen out of heaven, and do, and judge your servants, to recompense the transgressor, and to return his ways upon his head: and to justify the righteous, to recompense him according to his righteousness. + +And if your people Israel should be put to the worse before the enemy, if they should sin against you, and +then turn and confess to your name, and pray and make supplication before you in this house; + +then shall you listen out of heaven and shall be merciful to the sins of your people Israel, and you shall restore them to the land which you gave to them and to their fathers. + +When heaven is restrained, and there is no rain, because they shall have sinned against you, and +when they shall pray towards this place, and praise your name, and shall turn from their sins, because you shall afflict them; + +then shall you listen from heaven, and you shall be merciful to the sins of your servants, and of your people Israel; for you shall show them the good way in which they shall walk; and you shall send rain upon your land, which you gave to your people for an inheritance. + +If there should be famine upon the land, if there should be death, a pestilent wind an blight; if there should be locust and caterpiller, and if the enemy should harass them before their cities: in whatever plague and whatever distress +they may be; + +Then whatever prayer and whatever supplication shall be made by any man and all your people Israel, if a man should know his own plague and his own sickness, and should spread forth his hands toward this house; + +then shall you hear from heaven, out of your prepared dwelling-place, and shall be merciful, and shall recompense to the man according to his ways, as you shall know his heart +to be; for you alone know the heart of the children of men: + +that they may reverence all your ways all the days which they live upon the face of the land, which you gave to our fathers. + +And every stranger who is not himself of your people Israel, and who shall have come from a distant land because of your great name, and your mighty hand, and your high arm; when they shall come and worship toward this place; — + +then shall you listen out of heaven, out of your prepared dwelling-place, and shall do according to all that the stranger shall call upon you for; that all the nations of the earth may know your name, and that they may fear you, as your people Israel +do, and that they may know that your name is called upon this house which I have built. + +And if your people shall go forth to war against their enemies by the way by which you shall send them, and shall pray to you toward this city which you have chosen, and +toward the house which I have built to your name; + +then shall you hear out of heaven their prayer and their supplication, and maintain their cause. + +Whereas if they shall sin against you, (for there is no man who will not sin,) and you shall strike them, and deliver them up before their enemies, and they that take them captive shall carry them away into a land of enemies, to a land far off or near; + +and +if they shall repent in their land whither they were carried captive, and shall also turn and make supplication to you in their captivity, saying, We have sinned, we have transgressed, we have wrought unrighteously; + +and +if they shall turn to you with all their heart and all their soul in the land of them that carried them captives, whither they carried them captives, and shall pray toward their land which you gave to their fathers, and the city which you did choose, and the house which I built to your name:— + +then shall you hear out of heaven, out of your prepared dwelling-place, their prayer and their supplication, and you shall execute justice, and shall be merciful to your people that sin against you. + +And now, Lord, let, I pray you, your eyes be opened, and your ears be attentive to the petition +made in this place. + +And now, O Lord God, arise into your resting-place, you, and the ark of your strength: let your priests, O Lord God, clothe themselves with salvation, and your sons rejoice in prosperity. + +O Lord God, turn not away the face of your anointed: remember the mercies of your servant David. + +

+ + +

And when Solomon had finished praying, then the fire came down from heaven, and devoured the whole burnt offerings and the sacrifices; and the glory of the Lord filled the house. + +And the priests could not enter into the house of the Lord at that time, for the glory of the Lord filled the house. + +And all the children of Israel saw the fire descending, and the glory of the Lord was upon the house: and they fell upon their face to the ground on the pavement, and worshipped, and praised the Lord; for +it is good +to do so, because his mercy +endures for ever. + +And the king and all the people +were offering sacrifices before the Lord. + +And king Solomon offered a sacrifice of calves twenty and two thousand, of sheep one hundred and twenty thousand: so the king and all the people dedicated the house of God. + +And the priests were standing at their watches, and the Levites with instruments of music of the Lord, belonging to king David, to give thanks before the Lord, for his mercy +endures for ever, with the hymns of David, by their ministry: and the priests were blowing the trumpets before them, and all Israel standing. + +And Solomon consecrated the middle of the court that was in the house of the Lord: for he offered there the whole burnt offerings and the fat of the peace-offerings, for the brazen altar which Solomon had made was not sufficient to receive the whole burnt offerings, and the meat-offerings, and the fat. + +And Solomon kept the feast at that time seven days, and all Israel with him, a very great assembly, from the entering in of Aemath, and as far as the river of Egypt. + +And on the eighth day he kept a solemn assembly: for he kept a feast of seven days as the dedication of the altar. + +And on the twenty-third day of the seventh month he dismissed the people to their tents, rejoicing, and with a glad heart because of the good deeds which the Lord had done to David, and to Solomon, and to Israel his people. + +So Solomon finished the house of the Lord, and the king's house: and in whatever Solomon wished in his heart to do in the house of the Lord and in his own house, he prospered. + +And the Lord appeared to Solomon by night, and said to him, I have heard your prayer, and I have chosen this place to myself for a house of sacrifice. + +If I should restrain the heaven and there should be no rain, and if I should command the locust to devour the trees, and if I should send pestilence upon my people; + +then if my people, on whom my name is called, should repent, and pray, and seek my face, and turn from their evil ways, I also will hear from heaven, and I will be merciful to their sins, and I will heal their land. + +And now my eyes shall be open, and my ears attentive to the prayer of this place. + +And now I have chosen and sanctified this house, that my name should be there for ever: and my eyes and my heart shall be there always. + +And if you will walk before me as David your father +did, and will do according to all that I have commanded you, and will keep my ordinances and my judgments; + +then will I establish the throne of your kingdom, as I covenanted with David your father, saying, There shall not fail you a man ruling in Israel. + +But if you⌃ should turn away, and forsake my ordinances and my commandments, which I have set before you, and go and serve other gods, and worship them; + +then will I remove you from the land which I gave them; and this house which I have consecrated to my name I will remove out of my sight, and I will make it a proverb and a byword among all nations. + +And +as for this lofty house, every one that passes by it shall be amazed, and shall say, Therefore has the Lord done +thus to this land, and to this house? + +And +men shall say, Because they forsook the Lord God of their fathers, who brought them out of the land of Egypt, and they attached themselves to other gods, and worshipped them, and served them: and therefore he has brought upon them all this evil. + +

+ + +

And it came to pass after twenty years, in which Solomon built the house of the Lord, and his own house, + +that Solomon rebuilt the cities which Chiram had given to Solomon, and caused the children of Israel to dwell in them. + +And Solomon came to Baesoba, and fortified it. + +And he built Thoedmor in the wilderness, and all the strong cities which he built in Emath. + +And he built Baethoron the upper, and Baethoron the lower, strong cities, —they had walls, gates, and bars; + +and Balaath, and all the strong cities which Solomon had, and all his chariot cities, and cities of horsemen, and all things that Solomon desired according to his desire of building, in Jerusalem, and in Libanus, and in all his kingdom. + + +As for all the people that was left of the Chettites, and the Amorites, and the Pherezites, and the Evites, and the Jebusites, who are not of Israel, + +but were of the children of them whom the children Israel destroyed not, that were left after them in the land, even them did Solomon make tributaries to this day. + +But Solomon did not make any of the children of Israel servants in his kingdom; for, behold, +they were warriors and rulers, and mighty +men, and captains of chariots and horsemen. + +And these are the chiefs of the officers of king Solomon, two hundred and fifty overseeing the work among the people. + +And Solomon brought up the daughter of Pharao from the city of David to the house which he had built for her: for he said, My wife shall not dwell in the city of David, the king of Israel, for +the place is holy into which the ark of the Lord has entered. + +Then Solomon offered up to the Lord whole burnt offerings on the altar which he had built to the Lord before the temple, + +according to the daily rate, to offer up +sacrifices according to the commandments of Moses, on the sabbaths, and at the new moons, and at the feasts, three times in the year, at the feast of unleavened bread, and at the feast of weeks, and at the feast of tabernacles. + +And he established, according to the order of his father David, the courses of the priests, and +that according to their public ministrations: and the Levites +were appointed over their charges, to praise and minister before the priests according to the daily order: and the porters were appointed according to their courses to the different gates: for thus +were the commandments of David the man of God. + +They transgressed not the commandments of the king concerning the priests and the Levites with regard to everything else, and with regard to the treasures. + +Now all the work had been prepared from the day when the foundation was laid, until Solomon finished the house of the Lord. + +Then Solomon went to Gasion Gaber, and to Aelath near the sea in the land of Idumea. + +And Chiram sent by the hand of his servants ships, and servants skilled in naval affairs; and they went with the servants of Solomon to Sophira, and brought thence four hundred and fifty talents of gold, and they came to king Solomon. + +

+ + +

And the queen of Saba heard +of the name of Solomon, and she came to Jerusalem with a very large force, to prove Solomon with hard questions, and +she had camels bearing spices in abundance, and gold, and precious stones: and she came to Solomon, and told him all that was in her mind. + +And Solomon told her all her words; and there passed not a word from Solomon which he told her not. + +And the queen of Saba saw the wisdom of Solomon, and the house which he had built, + +and the meat of the tables, and the sitting of his servants, and the standing of his ministers, and their raiment; and his cupbearers, and their apparel; and the whole burnt offerings which he offered up in the house of the Lord; then she was in ecstasy. + +And she said to the king, +It was a true report which I heard in my land concerning your words, and concerning your wisdom. + +Yet I believed not the reports until I came, and my eyes saw: and, behold, the half of the abundance of your wisdom was not told me: you have exceeded the report which I heard. + +Blessed +are your men, blessed +are these your servants, who stand before you continually, and hear your wisdom. + +Blessed be the Lord your God, who took pleasure in you, to set you upon his throne for a king, to the Lord your God: forasmuch as the Lord your God loved Israel to establish them for ever, therefore he has set you over them for a king to execute judgment and justice. + +And she gave the king one hundred and twenty talents of gold, and spices in very great abundance, and precious stones: and there were not +any where else such spices as those which the queen of Saba gave king Solomon. + +And the servants of Solomon and the servants of Chiram brought gold to Solomon out of Suphir, and pine timber, and precious stones. + +And the king made of the pine timber steps to the house of the Lord, and to the king's house, and harps and lutes for the singers: and such were not seen before in the land of Juda. + +And king Solomon gave to the queen of Saba all that she requested, besides all that she brought to king Solomon: and she returned to her +own land. + +And the weight of the gold that was brought to Solomon in one year was six hundred and sixty-six talents of gold, + +besides what the men who were regularly appointed and the merchants brought, and all the kings of Arabia and princes of the land: all brought gold and silver to king Solomon. + +And king Solomon made two hundred shields of beaten gold: there were six hundred +shekels of pure gold to one shield. + +And three hundred buckles of beaten gold: +the weight of three hundred gold shekels went to one buckler: and the king placed them in the house of the forest of Lebanon. + +And the king made a great throne of ivory, and he gilded it with pure gold. + +And +there were six steps to the throne, riveted with gold, and elbows on either side of the seat of the throne, and two lions standing by the elbows: + +and twelve lions standing there on the six steps on each side. There was not the like in any +other kingdom. + +And all king Solomon's vessels were of gold, and all the vessels of the house of the forest of Lebanon were covered with gold: silver was not thought anything of in the days of Solomon. + +For a ship went for the king to Tharsis with the servants of Chiram: once every three years came vessels from Tharsis to the king, laden with gold, and silver, and ivory, and apes. + +And Solomon exceeded all +other kings both in riches and wisdom. + +And all the kings of the earth sought the presence of Solomon, to hear his wisdom, which God had put in his heart. + +And they brought every one his gifts, silver vessels and golden vessels, and raiment, myrrh and spices, horses and mules, a rate every year. + +And Solomon had four thousand mares for chariots, and twelve thousand horsemen; and he put them in the chariot cities, and with the king in Jerusalem. + +And he rules over all the kings from the river even to the land of the Philistines, and to the borders of Egypt. + +And the king made gold and silver in Jerusalem as stones, and cedars as the sycamore trees in the plain for abundance. + +And Solomon imported horses from Egypt, and from every +other country. + +And the rest of the acts of Solomon, the first and the last, behold, these are written in the words of Nathan the prophet, and in the words of Achia the Selonite, and in the visions of Joel the seer concerning Jeroboam the son of Nabat. + +And Solomon reigned over all Israel forty years. + +And Solomon fell asleep, and they buried him in the city of David his father: and Roboam his son reigned in his stead. + +

+ + +

And Roboam came to Sychem: for all Israel came to Sychem to make him king. + +And it came to pass when Jeroboam the son of Nabat heard +it, (now he was in Egypt, forasmuch as he had fled there from the face of king Solomon, and Jeroboam lived in Egypt,) that Jeroboam returned out of Egypt. + +And they sent and called him: and Jeroboam and all the congregation came to Roboam, saying, + +Your father made our yoke grievous: now then abate +somewhat of your father's grievous rule, and of his heavy yoke which he put upon us, and we will serve you. + +And he said to them, Go away for three days, and +then come to me. So the people departed. + +And king Roboam assembled the elders that stood before his father Solomon in his life-time, saying, How do you⌃ counsel +me to return an answer to this people? + +And they spoke to him, saying, If you would this day befriend this people, and be kind to them, and speak to them good words, then will they be your servants for ever. + +But he forsook the advice of the old men, who took counsel with him, and he took counsel with the young men who had been brought up with him, who stood before him. + +And he said to them, What do you⌃ advise that I should answer this people, who spoke to me, saying, Ease +somewhat of the yoke which your father laid upon us? + +And the young men that had been brought up with him spoke to him, saying, Thus shall you speak to the people that spoke to you, saying, Your father made our yoke heavy, and do you lighten +somewhat of it from us; thus shall you say, My little finger +shall be thicker than my father's loins. + +And whereas my father chastised you with a heavy yoke, I will also add to your yoke: my father chastised you with whips, and I will chastise you with scorpions. + +And Jeroboam and all the people came to Roboam on the third day, as the king had spoken, saying, Return to me on the third day. + +And the king answered harshly; and king Roboam forsook the counsel of the old men, + +and spoke to them according to the counsel of the young men, saying, My father made your yoke heavy, but I will add to it: my father chastised you with whips, but I will chastise you with scorpions. + +And the king listened not to the people, for there was a change +of their minds from God, saying, The Lord has confirmed his word, which he spoke by the hand of Achia the Selonite concerning Jeroboam the son of Nabat, and +concerning all Israel; + +for the king did not listen to them. And the people answered the king, saying, What portion have we in David, or inheritance in the son of Jessae? to your tents, O Israel: now see to your own house, David. So all Israel went to their tents. + +But the men of Israel, even those who lived in the cities of Juda, +remained and made Roboam king over them. + +And king Roboam sent to them Adoniram that was over the tribute; and the children of Israel stoned him with stones, and he died. And king Roboam hasted to mount +his chariot, to flee to Jerusalem. + +So Israel rebelled against the house of David until this day. + +

+ + +

And Roboam came to Jerusalem; and he assembled Juda and Benjamin, one hundred and eighty thousand young men fit for war, and he waged war with Israel to recover the kingdom to Roboam. + +And the Word of the Lord came to Samaias the man of God, saying, + +Speak to Roboam the +son of Solomon, and to all Juda and Benjamin, saying, + +Thus says the Lord, You⌃ shall not go up, and you⌃ shall not war against your brethren: return every one to his home; for this thing is of me. And they listened to the word of the Lord, and returned from going against Jeroboam. + +And Roboam lived in Jerusalem, and he built walled cities in Judea. + +And he built Bethleem, and Aetan and Thecoe, + +and Baethsura, and Sochoth, and Odollam, + +and Geth, and Marisa, and Ziph, + +and Adorai, and Lachis, and Azeca, + +and Saraa, and Aelom, and Chebron, which belong to Juda and Benjamin, walled cities. + +And he fortified them with walls, and placed in them captains, and stores of provisions, oil and wine, + +shields and spears in every several city, and he fortified them very strongly, and he had on his side Juda and Benjamin. + +And the priests and the Levites who were in all Israel were gathered to him out of all the coasts. + +For the Levites left the tents of their possession, and went to Juda to Jerusalem, because Jeroboam and his sons had ejected them so that they should not minister to the Lord. + +And he made for himself priests of the high places, and for the idols, and for the vanities, and for the calves which Jeroboam made. + +And he cast out from the tribes of Israel those who set their heart to seek the Lord God of Israel: and they came to Jerusalem, to sacrifice to the Lord God of their fathers. + +And they strengthened the kingdom of Juda; and +Juda strengthened Roboam the +son of Solomon for three years, for he walked three years in the ways of David and Solomon. + +And Roboam took to himself for a wife, Moolath daughter of Jerimuth the son of David, and Abigaia daughter of Heliab the son of Jessae. + +And she bore him sons; Jeus, and Samoria, and Zaam. + +And afterwards he took to himself Maacha the daughter of Abessalom; and she bore him Abia, and Jetthi, and Zeza, and Salemoth. + +And Roboam loved Maacha the daughter of Abessalom more than all his wives and all his concubines: for he had eighteen wives and sixty concubines; and he begot twenty-eight sons, and sixty daughters. + +And he made Abia the son of Maacha chief, +even a leader among his brethren, for he intended to make him king. + +And he was exalted beyond all his +other sons in all the coasts of Juda and Benjamin, and in the strong cities; and he gave them provisions in great abundance: and he desired many wives. + +

+ + +

And it came to pass when the kingdom of Roboam was established, and when he had grown strong, +that he forsook the commandments of the Lord, and all Israel with him. + +And it came to pass in the fifth year of the reign of Roboam, Susakim king of Egypt came up against Jerusalem, because they had sinned against the Lord, + +with twelve hundred chariots, and sixty thousand horses: and there was no number of the multitude that came with him from Egypt; Libyans, Trogodytes, and Ethiopians. + +And they obtained possession of the strong cities, which were in Juda, and came to Jerusalem. + +And Samaias the prophet came to Roboam, and to the princes of Juda that were gathered to Jerusalem for fear of Susakim, and said to them, Thus said the Lord, You⌃ have left me, and I will leave you in the hand of Susakim. + +And the elders of Israel and the king were ashamed, and said, The Lord +is righteous. + +And when the Lord saw that they repented, then came the word of the Lord to Samaias, saying, They have repented; I will not destroy them, but I will set them in safety for a little while, and my wrath shall not be poured out on Jerusalem. + +Nevertheless they shall be servants, and know my service, and the service of the kings of the earth. + +So Susakim king of Egypt went up against Jerusalem, and took the treasures that were in the house of the Lord, and the treasures that were in the king's house: he took all; and he took the golden shields which Solomon had made. + +And king Roboam made brazen shields instead of them. And Susakim set over him captains of footmen, as keepers of the gate of the king. + +And it came to pass, when the king went into the house of the Lord, the guards and the footmen went in, and they that returned to meet the footmen. + +And when he repented, the anger of the Lord turned from him, and did not destroy him utterly; for there were good things in Juda. + +So king Roboam strengthened +himself in Jerusalem, and reigned: and Roboam was forty and one years old when he began to reign, and he reigned seventeen years in Jerusalem, in the city which the Lord chose out of all the tribes of the children of Israel to call his name there: and his mother's name was Noomma the Ammanitess. + +And he did evil, for he directed not his heart to seek the Lord. + +And the acts of Roboam, the first and the last, behold, are they not written in the book of Samaia the prophet, and Addo the seer, with his achievements. + +And Roboam made war with Jeroboam all +his days. And Roboam died with his fathers, and was buried in the city of David: and Abia his son reigned in his stead. + +

+ + +

In the eighteenth year of the reign of Jeroboam Abia began to reign over Juda. + +He reigned three years in Jerusalem. And his mother's name +was Maacha, daughter of Uriel of Gabaon. And there was war between Abia and Jeroboam. + +And Abia set the battle in array with an army, with mighty men of war, +even four hundred thousand mighty men: and Jeroboam set the battle in array against him with eight hundred thousand, +they were mighty warriors of the host. + +And Abia rose up from the mount Somoron, which is in mount Ephraim, and said, Hear you⌃, Jeroboam, and all Israel: + + +Is it not for you to know that the Lord God of Israel has given a king over Israel for ever to David, and to his sons, by a covenant of salt? + +But Jeroboam the +son of Nabat, the servant of Solomon +the son of David, is risen up, and has revolted from his master: + +and there are gathered to him pestilent men, transgressors, and he has risen up against Roboam the +son of Solomon, while Roboam was young and fearful in heart, and he withstood him not. + +And now you⌃ profess to resist the kingdom of the Lord in the hand of the sons of David; and you⌃ +are a great multitude, and with you are golden calves, which Jeroboam made you for gods. + +Did you⌃ not cast out the priests of the Lord, the sons of Aaron, and the Levites, and make to yourselves priests of the people of any +other land? whoever came to consecrate himself with a calf of the heard and seven rams, he forthwith became a priest to that which is no god. + +But we have not forsaken the Lord our God, and his priests, the sons of Aaron, and the Levites, minister to the Lord; and in their daily courses + +they sacrifice to the Lord whole burnt offering, morning and evening, and compound incense, and +set the show bread on the pure table; and +there is the golden candlestick, and the lamps for burning, to light in the evening: for we keep the charge of the Lord God of our fathers; but you⌃ have forsaken him. + +And, behold, the Lord and his priests are with us at our head, and the signal trumpets to sound an alarm over us. Children of Israel, fight not against the Lord God of our fathers; for you⌃ shall not prosper. + +Now Jeroboam had caused an ambush to come round upon him from behind: and he +himself was before Juda, and the ambush behind. + +And Juda looked back, and, behold, the battle +was against them before and behind: and they cried to the Lord, and the priests sounded with the trumpets. + +And the men of Juda shouted: and it came to pass, when the men of Juda shouted, that the Lord struck Jeroboam and Israel before Abia and Juda. + +And the children of Israel fled from before Juda; and the Lord delivered them into their hands. + +And Abia and his people struck them with a great slaughter: and there fell slain of Israel five hundred thousand mighty men. + +So the children of Israel were brought low in that day, and the children of Juda prevailed, because they trusted on the Lord God of their fathers. + +And Abia pursued after Jeroboam, and he took from him the cities, Baethel and her towns, and Jesyna and her towns, and Ephron and her towns. + +And Jeroboam did not recover strength again all the days of Abia: and the Lord struck him, and he died. + +But Abia strengthened himself, and took to himself fourteen wives, and he begot twenty-two sons, and sixteen daughters. + +And the rest of the acts of Abia, and his deeds, and his sayings, are written in the book of the prophet Addo. + +

+ + +

And Abia died with his fathers, and they buried him in the city of David; and Asa his son reigned in his stead. In the days of Asa the land of Juda had rest ten years. + +And he did that which was good and right in the sight of the Lord his God. + +And he removed the altars of the strange +gods, and the high places, and broke the pillars in pieces, and cut down the groves: + +and he told Juda to seek earnestly the Lord God of their fathers, and to perform the law and commandments. + +And he removed from all the cities of Juda the altars and the idols, and established in quietness + +fortified cities in the land of Juda; for the land was quiet, and he had no war in these years; for the Lord gave him rest. + +And he said to Juda, Let us fortify these cities, and make walls, and towers, and gates, and bars: we shall prevail over the land, for as we have sought out the Lord our God, he has sought out us, and has given us rest round about, and prospered us. + +And Asa had a force of armed men bearing shields and spears in the land of Juda, +even three hundred thousand, and in the land of Benjamin two hundred and eighty thousand targeteers and archers: all these were mighty warriors. + +And Zare the Ethiopian went out against them, with a force of a million, and three hundred chariots; and came to Maresa. + +And Asa went out to meet him, and set the battle in array in the valley north of Maresa. + +And Asa cried to the Lord his God, and said, O Lord, it is not impossible with you to save by many or by few: strengthen us, O Lord our God; for we trust in you, and in your name have we come against this great multitude. O Lord our God, let not man prevail against you. + +And the Lord struck the Ethiopians before Juda; and the Ethiopians fled. + +And Asa and his people pursued them to Gedor; and the Ethiopians fell, so that they could not recover themselves; for they were crushed before the Lord, and before his host; and they took many spoils. + +And they destroyed their towns roundabout Gedor; for a terror of the Lord was upon them: and they spoiled all their cities, for they had much spoil. + +Also they destroyed the tents of cattle, and the Alimazons, and took many sheep and camels, and returned to Jerusalem. + +

+ + +

And Azarias the son of Oded—upon him came the Spirit of the Lord, + +and he went out to meet Asa, and all Juda and Benjamin, and said, Hear me, Asa, and all Juda and Benjamin. The Lord +is with you, while you⌃ are with him; and if you⌃ seek him out, he will be found of you; but if you⌃ forsake him, he will forsake you. + +And Israel +has been a long time without the true God, and without a priest to expound +the truth, and without the law. + +But he shall turn them to the Lord God of Israel, and he will be found of them. + +And in that time there is no peace to one going out, or to one coming in, for the terror of the Lord is upon all that inhabit the lands. + +And nation shall fight against nation, and city against city; for God has confounded them with every +kind of affliction. + +But be you⌃ strong, and let not your hands be weakened: for there is a reward for your work. + +And when +Asa heard these words, and the prophesy of Adad the prophet, then he strengthened himself, and cast out the abominations from all the land of Juda and Benjamin, and from the cities which Jeroboam possessed, in mount Ephraim, and he renewed the altar of the Lord, which was before the temple of the Lord. + +And he assembled Juda and Benjamin, and the strangers that lived with him, of Ephraim, and of Manasse, and of Symeon: for many of Israel were joined to him, when they saw that the Lord his God was with him. + +And they assembled at Jerusalem in the third month, in the fifteenth year of the reign of Asa. + +And he sacrificed to the Lord in that day of the spoils which they brought, seven hundred calves and seven thousand sheep. + +And he entered into a covenant that they should seek the Lord God of their fathers with all their heart and with all their soul. + +And that whoever should not seek the Lord God of Israel, should die, whether young or old, whether man or woman. + +And they swore to the Lord with a loud voice, and with trumpets, and with cornets. + +And all Juda rejoiced concerning the oath: for they swore with all their heart, and they sought him with all their desires; and he was found of them: and the Lord gave them rest round about. + +And he removed Maacha his mother from being priestess to Astarte; and he cut down the idol, and burnt it in the brook of Kedron. + +Nevertheless they removed not the high places: they still existed in Israel: nevertheless the heart of Asa was perfect all his days. + +And he brought in the holy things of David his father, and the holy things of the house of God, silver, and gold, and vessels. + +And there was no war +waged with him until the thirty-fifth year of the reign of Asa. + +

+ + +

And in the thirty-eighth year of the reign of Asa, the king of Israel went up against Juda, and built Rama, so as not to allow egress or ingress to Asa king of Juda. + +And Asa took silver and gold out of the treasures of the house of the Lord, and of the king's house, and sent +them to the son of Ader king of Syria, which lived in Damascus, saying, + +Make a covenant between me and you, and between my father and your father: behold, I have sent you gold and silver: come, and turn away from me Baasa king of Israel, and let him depart from me. + +And the son of Ader listened to king Asa, and sent the captains of his host against the cities of Israel; and struck Aeon, and Dan, and Abelmain, and all the country round Nephthali. + +And it came to pass when Baasa heard +it he left off building Rama, and put a stop to his work: + +then king Asa took all Juda, and took the stones of Rama, and its timber, +with which Baasa +had built; and he built with them Gabae and Maspha. + +And at that time came Anani the prophet to Asa king of Juda, and said to him, Because you did trust on the king of Syria, and did not trust on the Lord your God, therefore the army of Syria is escaped out of your hand. + +Were not the Ethiopians and Libyans a great force, in courage, in horsemen, in great numbers? and did not He deliver them into your hands, because you trusted in the Lord? + +For the eyes of the Lord look upon all the earth, to strengthen every heart that is perfect toward him. In this you have done foolishly; henceforth there shall be war with you. + +And Asa was angry with the prophet, and put him in prison, for he was angry at this: and Asa vexed some of the people at that time. + +And, behold, the acts of Asa, the first and the last, +are written in the book of the kings of Juda and Israel. + +And Asa was diseased +in his feet in the thirty-ninth year of his reign, until he was very ill: but in his disease he sought not to the Lord, but to the physicians. + +And Asa slept with his fathers, and died in the fortieth year of his reign. + +And they buried him in the sepulchre which he had dug for himself in the city of David, and they laid him on a bed, and filled +it with spices and +all kinds of perfumes of the apothecaries; and they made for him a very great funeral. + +

+ + +

And Josaphat his son reigned in his stead, Josaphat strengthened himself against Israel. + +And he put garrisons in all the strong cities of Juda, and appointed captains in all the cities of Juda, and in the cities of Ephraim, which Asa his father had taken. + +And the Lord was with Josaphat, for he walked in the first ways of his father, and did not seek to idols; + +but he sought to the Lord God of his father, and walked in the commandments of his father, and not according to the works of Israel. + +And the Lord prospered the kingdom in his hand; and all Juda gave gifts to Josaphat; and he had great wealth and glory. + +And his heart was exalted in the way of the Lord; and he removed the high places and the groves from the land of Juda. + +And in the third year of his reign, he sent his chief men, and his mighty men, Abdias and Zacharias, and Nathanael, and Michaias, to teach in the cities of Juda. + +And with them +were the Levites, Samaias, and Nathanias, and Zabdias, and Asiel, and Semiramoth, and Jonathan, and Adonias, and Tobias, and Tobadonias, Levites, and with them Elisama and Joram, the priests. + +And they taught in Juda, and +there was with them the book of the law of the Lord, and they passed through the cities of Juda, and taught the people. + +And a terror of the Lord was upon all the kingdoms of the land round about Juda, and they made no war against Josaphat. + +And +some of the Philistines brought to Josaphat gifts, and silver, and presents; and the Arabians brought him seven thousand seven hundred rams. + +And Josaphat increased in greatness exceedingly, and built in Judea places of abode, and strong cities. + +And he had many works in Judea: and the mighty men of war, +the men of strength, +were in Jerusalem. + +And this +is their number according to the houses of their fathers; even the captains of thousands in Juda +were, Ednas the chief, and with him mighty men of strength three hundred thousand. + +And after him, Joanan the captain, and with him two hundred eighty thousand. + +And after him Amasias the +son of Zari, who was zealous for the Lord; and with him two hundred thousand mighty men of strength. + +And out of Benjamin +there was a mighty man of strength, even Eliada, and with him two hundred thousand archers and targeteers. + +And after him Jozabad, and with him one hundred and eighty thousand mighty men of war. + +These were the king's servants besides those whom the king put in the strong cities in all Judea. + +

+ + +

And Josaphat had yet great wealth and glory, and he connected himself by marriage with the house of Achaab. + +And he went down after a term of years to Achaab to Samaria: and Achaab killed for him sheep and calves, in abundance, and for the people with him, and he much desired him to go up with him to Ramoth of the country of Galaad. + +And Achaab king of Israel said to Josaphat king of Juda, Will you go with me to Ramoth of the country of Galaad? And he said to him, As I +am, so also +are you, as your people, +so also +is my people with you for the war. + +And Josaphat said to the king of Israel, Seek, I pray you, the Lord today. + +And the king of Israel gathered the prophets, four hundred men, and said to them, Shall I go to Ramoth Galaad to battle, or shall I forbear? And they said, Go up, and God shall deliver +it into the hands of the king. + +And Josaphat said, Is there not here a prophet of the Lord besides, that we may enquire of him? + +And the king of Israel said to Josaphat, There is yet one man by whom to enquire of the Lord; but I hate him, for he does not prophesy concerning me for good, for all his days +are for evil: this +is Michaias the son of Jembla. And Josaphat said, Let not the king say so. + +And the king called an eunuch, and said, +Fetch quickly Michaias the son of Jembla. + +And the king of Israel and Josaphat king of Juda were sitting each on his throne, and clothed in their robes, sitting in the open space at the entrance of the gate of Samaria: and all the prophets were prophesying before them. + +And Sedekias son of Chanaan made for himself iron horns, and said, Thus says the Lord, With these you shall thrust Syria until it be consumed. + +And all the prophets prophesied so, saying, Go up to Ramoth Galaad, and you shall prosper; and the Lord shall deliver it into the hands of the king. + +And the messenger that went to call Michaias spoke to him, saying, Behold, the prophets have spoken favourably concerning the king with one mouth; let now, I pray you, your words be as +the words of one of them, and do you speak good things. + +And Michaias said, +As the Lord lives, whatever God shall say to me, that will I speak. + +And he came to the king, and the king said to him, Michaias, shall I go up to Ramoth Galaad to battle, or shall I forbear? And he said, Go up, and you shall prosper, and they shall be given into your hands. + +And the king said to him, How often shall I solemnly charge you that you speak to me nothing but truth in the name of the Lord? + +And he said, I saw Israel scattered on the mountains, as sheep without a shepherd: and the Lord said, These have no commander; let each return to his home in peace. + +And the king of Israel said to Josaphat, Said I not to you, that he would not prophesy concerning me good, but evil? + +But he said, Not so. Hear you⌃ the word of the Lord: I saw the Lord sitting on his throne, and all the host of heaven stood by on his right hand and on his left. + +And the Lord said, Who will deceive Achaab king of Israel, that he may go up, and fall in Ramoth Galaad? And one spoke this way, and another spoke that way. + +And there came forth a spirit, and stood before the Lord, and said, I will deceive him. And the Lord said, Whereby? + +And he said, I will go forth, and will be a lying spirit in the mouth of all his prophets. And +the Lord said, You shall deceive +him, and shall prevail: go forth, and do so. + +And now, behold, the Lord has put a false spirit in the mouth of these your prophets, and the Lord has spoken evil against you. + +Then Sedekias the son of Chanaan drew near, and struck Michaias on the cheek, and said to him, By what way passed the Spirit of the Lord from me to speak to you? + +And Michaias said, Behold, you shall see in that day, when you shall go from chamber to chamber to hide yourself. + +And the king of Israel said, Take Michaias, and carry him back to Emer the governor of the city, and to Joas the captain, the king's son; + +and you⌃ shall say, Thus said the king, Put this fellow into the prison house, and let him eat the bread of affliction, and +drink the water of affliction, until I return in peace. + +And Michaias said, If you do at all return in peace, the Lord has not spoken by me. And he said, Hear, all you⌃ people. + +So the king of Israel, and Josaphat king of Juda, went up to Ramoth Galaad. + +And the king of Israel said to Josaphat, Disguise me, and I will enter into the battle: and do you put on my raiment. so the king of Israel disguised himself, and entered into the battle. + +Now the king of Syria had commanded the captains of the chariots that were with him, saying, Fight neither against small nor great, but only against the king of Israel. + +And it came to pass, when the captains of the chariots saw Josaphat, that they said, It is the king of Israel: and they compassed him about to fight against him: and Josaphat cried out, and the Lord delivered him; and God turned them away from him. + +And it came to pass, when the captains of the chariots saw that it was not the king of Israel, that they turned away from him. + +And a man drew a bow with a good aim, and struck the king of Israel between the lungs and the breast-plate: and he said to the charioteer, Turn your hand, drive me out of the battle, for I am wounded. + +And the battle turned in that day; and the king of Israel remained on the chariot against Syria until evening, and died at sunset. + +

+ + +

And Josaphat king of Juda returned to his house at Jerusalem. + +And there went out to meet him Jeu the prophet the son of Anani, and said to him, King Josaphat, do you help a sinner, or act friendly towards one hated of the Lord? Therefore has wrath come upon you from the Lord. + +Nevertheless +some good things have been found in you, forasmuch as you did remove the groves from the land of Juda, and did direct your heart to seek after the Lord. + +And Josaphat lived in Jerusalem: and he again went out among the people from Bersabee to the mount of Ephraim, and turned them back to the Lord God of their fathers. + +And he appointed judges in all the strong cities of Juda, city by city. + +And he said to the judges, Take good heed what you⌃ do: for you⌃ judge not for man, but for the Lord, and with you are matters of judgment. + +And now let the fear of the Lord be upon you, and be wary, and do +your duty: for there is no unrighteousness with the Lord our God, neither +is it for him to respect persons, nor take bribes. + +Moreover Josaphat appointed in Jerusalem some of the priests, and Levites, and heads of houses of Israel, for the judgment of the Lord, and to judge the dwellers in Jerusalem. + +And he charged them, saying, Thus shall you⌃ do in the fear of the Lord, in truth and with a perfect heart. + +Whatsoever man of your brethren that dwell in their cities +shall bring the cause that comes before you, between blood +and blood, and between precept and commandment, and ordinances and judgments, you⌃ shall even decide for them; so they shall not sin against the Lord, and there shall not be wrath upon you, and upon your brethren: thus you⌃ shall do, and you⌃ shall not sin. + +And, behold, Amarias the priest is head over you in every matter of the Lord; and Zabdias the son of Ismael is head over the house of Juda in every matter of the king; and the scribes and Levites are before you: be strong and active, and the Lord shall be with the good. + +

+ + +

And after this came the children of Moab, and the children of Ammon, and with them +some of the Minaeans, against Josaphat to battle. + +And they came and told Josaphat, saying, There is come against you a great multitude from Syria, from beyond the sea; and, behold, they are in Asasan Thamar, this is Engadi. + +And Josaphat was alarmed, and set his face to seek the Lord earnestly, and he proclaimed a fast in all Juda. + +And Juda gathered themselves together to seek after the Lord: even from all the cities of Juda they came to seek the Lord. + +And Josaphat stood up in the assembly of Juda in Jerusalem, in the house of the Lord, in front of the new court. + +And he said, O Lord God of my fathers, are not you God in heaven above, and are not you Lord of all the kingdoms of the nations? and +is there not in your hand the might of dominion, and there is no one who can resist you? + +Are not you the Lord that did destroy the inhabitants of this land before the face of your people Israel, and did give it to your beloved seed of Abraham for ever? + +And they lived in it, and built in it a sanctuary to your name, saying, + +If there should come upon us evils, sword, judgment, pestilence, famine, we will stand before this house, and before you, (for your name +is upon this house,) and we will cry to you because of the affliction, and you shall hear, and deliver. + +And now, behold, the children of Ammon, and Moab, and mount Seir, with regard to whom you did not permit Israel to pass through their border, when they had come out of the land of Egypt, (for they turned away from them, and did not destroy them;)— + +yet now, behold, they make attempts against us, to come forth to cast us out from our inheritance which you gave us. + +O Lord our God, will you not judge them? for we have no strength to resist this great multitude that is come against us; and we know not what we shall do to them: but our eyes are toward you. + +And all Juda was standing before the Lord, and their children, and their wives. + +And Oziel the +son of Zacharias, of the children of Banaias, of the sons of Eleiel, the sons of Matthanias the Levite, of the sons of Asaph, —upon him came the Spirit of the Lord in the assembly: + +and he said, Hear you⌃, all Juda, and the dwellers in Jerusalem, and king Josaphat: Thus says the Lord to you, even you, Fear not, neither be alarmed, before all this great multitude; for the battle is not years, but God's. + +To-morrow go you⌃ down against them: behold, they come up by the ascent of Assis, and you⌃ shall find them at the extremity of the river of the wilderness of Jeriel. + +It is not for you to fight: understand these things, and see the deliverance of the Lord with you, Juda and Jerusalem: fear not, neither be afraid to go forth to-morrow to meet them; and the Lord shall be with you. + +And Josaphat bowed with his face +to the ground with all Juda and the dwellers in Jerusalem, +and they fell before the Lord to worship the Lord. + +And the Levites of the children of Caath, and +they of the sons of Core, rose up to praise the Lord God of Israel with a loud voice on high. + +And they rose early in the morning and went out to the wilderness of Thecoe: and as they went out, Josaphat stood and cried, and said, Hear me, Juda, and the dwellers in Jerusalem; put your trust in the Lord God, and your trust shall be honored; trust in his prophet, and you⌃ shall prosper. + +And he took counsel with the people, and set appointed men to sing psalms and praises, to give thanks, and sing the holy songs of praise in going forth before the host: and they said, Give thanks to the Lord, for his mercy +endures for ever. + +And when they began the praise and thanksgiving, the Lord caused the children of Ammon to fight against Moab, and +the inhabitants of mount Seir that came out against Juda; and they were routed. + +Then the children of Ammon and Moab rose up against the dwellers in mount Seir, to destroy and consume them; and when they had made an end of +destroying the inhabitants of Seir, they rose up against one another so that they were utterly destroyed. + +And Juda came to the watch-tower of the wilderness, and looked, and saw the multitude, and, behold, +they were all fallen dead upon the earth, not one escaped. + +And Josaphat and his people went out to spoil them, and they found much cattle, and furniture, and spoils, and precious things: and they spoiled them, and they were three days gathering the spoil, for it was abundant. + +And it came to pass on the fourth day they were gathered to the Valley of Blessing; for there they blessed the Lord: therefore they called the name of the place the Valley of Blessing, until this day. + +And all the men of Juda returned to Jerusalem, and Josaphat led them with great joy; for the Lord gave them joy over their enemies. + +And they entered into Jerusalem with lutes and harps and trumpets, +going into the house of the lord. + +And there was a terror of the Lord upon all the kingdoms of the land, when they heard that the Lord fought against the enemies of Israel. + +And the kingdom of Josaphat was at peace; and his God gave him rest round about. + +And Josaphat reigned over Juda, being thirty-five years +old when he began to reign, and he reigned twenty-five years in Jerusalem: and his mother's name was Azuba, daughter of Sali. + +And he walked in the ways of his father Asa, and turned not aside from doing that which was right in the sight of the Lord. + +nevertheless the high places yet remained; and as yet the people did not direct their heart to the Lord God of their fathers. + +And the rest of the acts of Josaphat, the first and the last, behold, they are written in the history of Jeu +the son of Anani, who wrote the book of the kings of Israel. + +And afterwards Josaphat king of Juda entered into an alliance with Ochozias king of Israel, (now this was an unrighteous man,) + +by acting +with and going to him, to build ships to go to Tharsis: and he built ships in Gasion Gaber. + +And Eliezer you +son of Dodia of Marisa prophesied against Josaphat, saying, Forasmuch as you have allied yourself with Ochozias, the Lord has broken your work, and your vessels have been wrecked. And they could not go to Tharsis. + +

+ + +

And Josaphat slept with his fathers, and was buried in the city of David: and Joran his son reigned in his stead. + +And he had brothers, the six sons of Josaphat, Azarias, and Jeiel, and Zacharias, and Azarias, and Michael, and Zaphatias: all these +were the sons of Josaphat king of Juda. + +And their father gave them many gifts, silver, and gold, and arms, together with fortified cities in Juda: but he gave the kingdom to Joram, for he +was the firstborn. + +And Joram entered upon his kingdom, and strengthened himself, and killed all his brothers with the sword, and +some of the princes of Israel. + +When he was thirty and two years old, Joram succeeded to his kingdom, and he reigned eight years in Jerusalem. + +And he walked in the way of the kings of Israel, as did the house of Achaab; for a daughter of Achaab was his wife: and he did that which was evil in the sight of the Lord: + +nevertheless the Lord would not utterly destroy the house of David, because of the covenant which he made with David, and as he said to him that he would give a light to him and his sons for ever. + +In those days Edom revolted from Juda, and they made a king over themselves. + +And Joram went with the princes, and all the cavalry with him: and it came to pass that he arose by night, and struck Edom that compassed him about, and the captains of the chariots, and the people fled to their tents. + +And Edom revolted from Juda until this day. Then Lomna at that time revolted from +under his hand, because he forsook the Lord God of his fathers. + +For he built high places in the cities of Juda, and caused the dwellers in Jerusalem to go a-whoring, and led Juda astray. + +And there came to him +a message in writing from Eliu the prophet, saying, Thus says the Lord God of your father David, Because you have not walked in the way of your father Josaphat, nor in the ways of Asa king of Juda, + +but have walked in the ways of the kings of Israel, and have caused Juda and the dwellers in Jerusalem to go a-whoring, as the house of Achaab caused +Israel to go a-whoring, and you have slain your brethren, the sons of your father, who were better than yourself; + +behold, the Lord shall strike you with a great plague among your people, and your sons, and your wives, and all your store: + +and you +shall be afflicted with a grievous disease, with a disease of the bowels, until your bowels shall fall out day by day with the sickness. + +So the Lord stirred up the Philistines against Joram, and the Arabians, and those who bordered on the Aethiopians: + +and they went up against Juda, and prevailed against them, and took away all the store which they found in the house of the king, and his sons, and his daughters; and there was no son left to him but Ochozias the youngest of his sons. + +And after all these things the Lord struck him in the bowels with an incurable disease. + +And it continued from day to day: and when the time of the days came +to two years, his bowels fell out with the disease, and he died by a grievous distemper: and his people performed no funeral, like the funeral of his fathers. + +He was thirty and two years old when he began to reign, and he reigned eight years in Jerusalem. And he departed without honor, and was buried in the city of David, but not in the tombs of the kings. + +

+ + +

And the inhabitants of Jerusalem made Ochozias his youngest son king in his stead: for the band of robbers that came against them, even the Arabians and the Alimazonians, had slain all the elder ones. So Ochozias son of Joram king of Juda reigned. + +Ochozias began to reign when he was twenty years old, and he reigned one year in Jerusalem: and his mother's name was Gotholia, the daughter of Ambri. + +And he walked in the way of the house of Achaab; for his mother was his counsellor to do evil. + +And he did that which was evil in the sight of the Lord as the house of Achaab +had done: for they were his counselors after the death of his father to his destruction. + +And he walked in their counsels, and he went with Joram son of Achaab king of Israel to war against Azael king of Syria to Ramoth Galaad: and the archers struck Joram. + +And Joram returned to Jezrael to be healed of the wounds wherewith the Syrians struck him in Ramoth, when he fought against Azael king of Syria. And Ochozias son of Joram, king of Juda, went down to see Joram the son of Achaab at Jezrael because he was sick. + +And destruction from God came upon Ochozias in +his coming to Joram; for when he had come, Joram went out with him against Jeu the son of Namessei, the anointed of the Lord against the house of Achaab. + +And it came to pass, when Jeu was taking vengeance on the house of Achaab, that he found the princes of Juda and the brethren of Ochozias ministering to Ochozias, and he killed them. + +And he gave orders to seek Ochozias: and they took him while he was healing his wounds in Samaria, and they brought him to Jeu, and he killed him; and they buried him, for they said, He is the son of Josaphat, who sought the Lord with all his heart. So there was none in the house of Ochozias to secure their power in the kingdom. + +And Gotholia the mother of Ochozias saw that her son was dead, and she arose and destroyed all the seed royal in the house of Juda. + +But Josabeeth, the daughter of the king, took Joas the son of Ochozias and rescued him secretly out of the midst of the sons of the king that were put to death, and she placed him and his nurse in a bedchamber. So Josabeeth daughter of king Joram, sister of Ochozias, wife of Jodae the priest, hid him, and she +even hid him from Gotholia, and she did not kill him. + +And he was with him hid in the house of God six years; and Gotholia reigned over the land. + +

+ + +

And in the eighth year Jodae strengthened +himself, and took the captains of hundreds, Azarias the son of Joram, and Ismael the son of Joanan, and Azarias the son of Obed, and Maasaeas the son of Adia, and Elisaphan the son of Zacharias, with him to the house of the Lord. + +And they went round about Juda, and gathered the Levites out of all the cities of Juda, and heads of the families of Israel, and they came to Jerusalem. + +and all the congregation of Juda made a covenant with the king in the house of God. And he showed them the king's son, and said to them, Behold, let the king's son reign, as the Lord said concerning the house of David. + +Now this +is the thing which you⌃ shall do. Let a third part of you, +even of the priests and of the Levites, enter in on the sabbath, even into the gates of the entrances; + +and let a third part be in the house of the king; and another third at the middle gate: and all the people in the courts of the Lord's house. + +And let not +any one enter into the house of the Lord, except the priests and the Levites, and the servants of the Levites; they shall enter in, because they are holy: and let all the people keep the watch of the Lord. + +And the Levites shall compass the king round about, every man's weapon in his hand; and whoever +else goes into the house shall die: but they shall be with the king when he goes out, and when he comes in. + +And the Levites and all Juda did according to all that the priest Jodae commanded them, and they took each his men from the beginning of the sabbath to the end of the sabbath, for Jodae the priest did not dismiss the courses. + +And Jodae gave to the men the swords, and the shields, and the arms, which +had belonged to King David, in the house of God. + +And he set the whole people, every man with his arms, from the right side of the house to the left side of the altar and the house, over against the king round about. + +And he brought out the king's son, and put on him the crown and the testimony, and Jodae the priest and his sons proclaimed him king, and anointed him, and said, Long live the king! + +And Gotholia heard the sound of the people running, and acknowledging and praising the king: and she went in to the king into the house of the Lord. + +And she looked, and, behold, the king +stood in his place, and the princes and trumpets were at the entrance, and the princes were round the king: and all the people of the land rejoiced, and sounded the trumpets, and there were the singers singing with instruments, and singing hymns of praise. and Gotholia tore her robe, and cried, you⌃ surely are plotting against +me. + +And Jodae the priest went forth, and Jodae the priest charged the captains of hundreds, even the captains of the host, and said to them, Thrust her forth outside the house, and follow her, and let her be slain with the sword. For the priest said, Let her not be slain in the house of the Lord. + +So they let her go +out; and she went through the horsemen's gate of the house of the king, and they killed her there. + +And Jodae made a covenant between himself, and the people, and the king, that the people should be the Lord's. + +And all the people of the land went into the house of Baal, and tore down it and its altars, and they ground his images to powder, and they killed Matthan the priest of Baal before his altars. + +And Jodae the priest committed the works of the house of the Lord into the and of the priests and Levites, and he re-established the courses of the priests and Levites which David appointed over the house of the Lord, and +he appointed them to offer whole burnt offerings to the Lord, as it is written in the law of Moses, with gladness, and with songs by the hand of David. + +And the porters stood at the gates of the house of the Lord, that no one unclean in any respect should enter in. + +And he took the heads of families, and the mighty men, and the chiefs of the people, and all the people of the land, and they conducted the king into the house of the Lord; and he went through the inner gate into the king's house, and they seated the king on the throne of the kingdom. + +And all the people of the land rejoiced; and the city was quiet: and they killed Gotholia. + +

+ + +

Joas was seven years old when he began to reign, and he reigned forty years in Jerusalem: and his mother's name was Sabia of Bersabee. + +And Joas did that which right in the sight of the Lord all the days of Jodae the priest. + +And Jodae took to himself two wives, and they bore sons and daughters. + +And it came to pass afterward that it came into the heart of Joas to repair the house of the Lord. + +And he gathered the priests and the Levites, and said to them, Go out into the cities of Juda, and collect money of all Israel to repair the house of the Lord from year to year, and make haste to speak +of it. But the Levites hasted not. + +And king Joas called Jodae the chief, and said to him, Why have you not looked after the Levites, so that they should bring from Juda and Jerusalem that which was prescribed by Moses the man of God, when he assembled Israel at the tabernacle of witness? + +For Gotholia was a transgressor, and her sons tore down the house of God; for they offered the holy things of the house of the Lord to Baalim. + +And the king said, Let a box be made, and let it be put at the gate of the house of the Lord without. + +And let +men proclaim in Juda an in Jerusalem, that +the people should bring to the Lord, as Moses the servant of God spoke concerning Israel in the wilderness. + +And all the princes and all the people gave, and brought in, and cast into the box until it was filled. + +And it came to pass, when they brought in the box to the officers of the king by the hand of the Levites, and when they saw that the money was more than sufficient, then came the king's scribe, and the officer of the high priest, and emptied the box, and restored it to its place. Thus they did day by day, and collected much money. + +And the king and Jodae the priest gave it to the workmen employed in the service of the house of the Lord, and they hired masons and carpenters to repair the house of the Lord, also smiths and braziers to repair the house of the Lord. + +And the workmen wrought, and the works prospered in their hands, and they established the house of the Lord on its foundation, and strengthened +it. + +And when they had finished +it, they brought to the king and to Jodae the remainder of the money, and they made vessels for the house of the Lord, vessels of service for whole burnt offerings, and gold and silver +censers: and they offered up whole burnt offerings in the house of the Lord continually all the days of Jodae. + +And Jodae grew old, being full of days, and he died, being one hundred and thirty years old at his death. + +And they buried him with the kings in the city of David, because he had dealt well with Israel, and with God and his house. + +And it came to pass after the death of Jodae, +that the princes of Juda went in, and did obeisance to the king. Then the king listened to them. + +And they forsook the house of the Lord God of their fathers, and served the Astartes and idols: and there was wrath upon Juda and Jerusalem in that day. + +yet he sent prophets to them, to turn them to the Lord; but they listened not: and he testified to them, but they obeyed not. + +And the Spirit of God came upon Azarias the son of Jodae the priest, and he stood up above the people, and said, Thus says the Lord, Why do you⌃ transgress the commandments of the Lord? so shall you⌃ not prosper; for you⌃ have forsaken the Lord, and he will forsake you. + +And they conspired against him, and stone him by command of king Joas in the court of the Lord's house. + +So Joas remembered not the kindness which his father Jodae had exercised towards him, but killed his son. And as he died, he said, The Lord look upon +it, and judge. + +And it came to pass after the end of the year, +that the host of Syria went up against him, and came against Juda and Jerusalem: and they killed all the chiefs of the people among the people, and all their spoils they sent to the king of Damascus. + +For the army of Syria came with few men, yet God gave into their hands a very large army, because they had forsaken the God of their fathers; and he brought judgments on Joas. + +And after they had departed from him, when they had left him in sore diseases, then his servants conspired against him because of the blood of the son of Jodae the priest, and killed him on his bed, and he died, and they buried him in the city of David, but they buried him not in the sepulchre of the kings. + +And they that conspired against him were Zabed the son of Samaath the Ammanite, and Jozabed the son of Samareth the Moabite. + +And all his sons, and the five came to him: and the other +matters, behold, they are written in the book of the kings. And Amasias his son reigned in his stead. + +

+ + +

Amasias began to reign when he was twenty and five years old, and he reigned twenty-nine years in Jerusalem; and his mother's name +was Joadaen of Jerusalem. + +And he did that which was right in the sight of the Lord, but not with a perfect heart. + +And it came to pass, when the kingdom was established in his hand, that he killed his servants who had slain the king his father. + +But he killed not their sons, according to the covenant of the law of the Lord, as it is written, +and as the Lord commanded, saying, The fathers shall not die for the children, and the sons shall not die for the fathers, but they shall die each for his own sin. + +And Amasias assembled the house of Juda, and appointed them according to the houses of their families for captains of thousands and captains of hundreds in all Juda and Jerusalem: and he numbered them from twenty years old and upwards, and found them three hundred thousand able to go out to war, holding spear and shield. + +Also he hired of Israel one hundred thousand mighty +men for one hundred talents of silver. + +And there came a man of God to him, saying, O king, let not the host of Israel go with you; for the Lord is not with Israel, +even all the sons of Ephraim. + +For if you shall undertake to strengthen +yourself with these, then the lord shall put you to flight before the enemies: for it is of the Lord both to strengthen and to put to flight. + +And Amasias said to the man of God, But what shall I do +for the hundred talents which I have given to the army of Israel? And the man of God said, The Lord can give you much more than these. + +And Amasias separated from the army that came to him from Ephraim, that they might go away to their place; and they were very angry with Juda, and they returned to their place with great wrath. + +And Amasias strengthened +himself, and took his people, and went to the valley of salt, and struck there the children of Seir ten thousand. + +And the children of Juda took ten thousand prisoners, and they carried them to the top of the precipice, and cast them headlong from the top of the precipice, and they were all dashed to pieces. + +And the men of the host whom Amasias sent back so that they should not go with him to battle, +went and attacked the cities of Juda, from Samaria to Baethoron; and they struck three thousand among them, and took much spoil. + +And it came to pass, after Amasias had returned from striking Idumea, that he brought home the gods of the children of Seir, and set them up for himself as gods, and bowed down before them, and he sacrificed to them. + +And the anger of the Lord came upon Amasias, and he sent him a prophet, and he said to him, Why have you sought the gods of the people, which have not rescued their own people out of your hand? + +And it came to pass when the prophet was speaking to him, that he said to him, have I made you king's counsellor? take heed lest you be scourged: and the prophet forebore, and said, I know that +God is disposed against you to destroy you, because you have done this thing, and have not listened to my counsel. + +And Amasias king of Juda took counsel, and sent to Joas, son of Joachaz, son of Jeu, king of Israel, saying, Come, and let us look one another in the face. + +And Joas king of Israel sent to Amasias king of Juda, saying, The thistle that was in Libanus sent to the cedar that was in Libanus, saying, Give your daughter to my son to wife; but, behold, your wild beasts of the field that are in Libanus shall come: and the wild beasts did come, and trod down the thistle. + +You have said, Behold, I have struck Idumea, and your stout heart exalts you: now stay at home; for why do you implicate yourself in mischief, that you should fall, and Juda with you. + +Nevertheless Amasias listened not, for it was of the Lord to deliver him into +the enemy's hands, because he sought after the gods of the Idumeans. + +So Joas king of Israel went up; and they saw one another, he and Amasias king of Juda, in Baethsamys, which is of Juda. + +And Juda was put to flight before Israel, and they fled every man to his tent. + +And Joas king of Israel took prisoner Amasias king of Juda, +son of Joas, son of Joachaz, in Baethsamys, and brought him to Jerusalem; and he pulled down +part of the wall of Jerusalem from the gate of Ephraim to the corner gate, four hundred cubits. + +And +he took all the gold and the silver, and all the vessels that were found in the house of the Lord and with Abdedom, and the treasures of the king's house, and the hostages, and he returned to Samaria. + +And Amasias the +son of Joas king of Juda lived after the death of Joas the +son of Joachaz king of Israel fifteen years. + +And the rest of the acts of Amasias, the first and the last, Behold! are they not written in the book of the kings of Juda and Israel? + +And at the time when Amasias departed from the Lord, then they formed a conspiracy against him; and he fled from Jerusalem to Lachis: and they sent after him to Lachis, and killed him there. + +And they took him up on horses, and buried him with his fathers in the city of David. + +

+ + +

Then all the people of the land took Ozias, and he was sixteen years old, and they made him king in the room of his father Amasias. + +He built Aelath, he recovered it to Juda, after the king slept with his fathers. + +Ozias began to reign at the age of sixteen years, and he reigned fifty-two years in Jerusalem: and his mother's name was Jechelia of Jerusalem. + +And he did that which was right in the sight of the Lord, according to all that Amasias his father did. + +And he sought the Lord in the days of Zacharias, who understood the fear of the Lord; and in his days he sought the Lord, and the Lord prospered him. + +And he went out and fought against the Philistines, and pulled down the walls of Geth, and the walls of Jabner, and the walls of Azotus, and he built cities +near Azotus, and among the Philistines. + +And the Lord strengthened him against the Philistines, and against the Arabians that lived on the rock, and against the Minaeans. + +And the Minaeans gave gifts to Ozias; and his fame spread as far as the entering in of Egypt, for he strengthened +himself exceedingly. + +And Ozias built towers in Jerusalem, both at the gate of the corners, and at the valley gate, and at the corners and he fortified them. + +And he built towers in the wilderness, and dug many wells, for he had many cattle in the low country and in the plain; and vinedressers in the mountain country and in Carmel: for he was a husbandman. + +And Ozias had a host of warriors, and that went out orderly to war, and returned orderly in number; and their number was +made by the hand of Jeiel the scribe, and Maasias the judge, by the hand of Ananias the king's deputy. + +The whole number of the chiefs of families of the mighty men of war +was two thousand six hundred; + +and with them was a warrior force, three hundred thousand and seven thousand and five hundred: these waged war mightily to help the king against +his enemies. + +And Ozias prepared for them, +even for all the host, shields, and spears, and helmets, and breastplates, and bows, and slings for stones. + +And he made in Jerusalem machines invented by a wise contriver, to be upon the towers and upon the corners, to cast darts and great stones: and +the fame of their preparation was heard at a distance; for he was wonderfully helped, till he was strong. + +And when he was strong, his heart was lifted up to his destruction; and he transgressed against the Lord his God, and went into the temple of the Lord to turn incense on the altar of incense. + +And there went in after him Azarias the priest, and with him eighty priests of the Lord, mighty men. + +And they withstood Ozias the king, and said to him, +It is not for you, Ozias, to burn incense to the Lord, but only for the priests the sons of Aaron, who are consecrated to sacrifice: go forth of the sanctuary, for you have departed from the Lord; and this shall not be for glory to you from the Lord god. + +And Ozias was angry, and in his hand +was the censer to burn incense in the temple: and when he was angry with the priests, then the leprosy rose up in his forehead before the priests in the house of the Lord, over the altar of incense. + +And Azarias the chief priest, and the +other priests, turned +to look at him, and, behold, he +was leprous in his forehead; and they got him hastily out thence, for he also hasted to go out, because the Lord had rebuked him. + +And Ozias the king was a leper to the day of his death, and he lived +as a leper in a separate house; for he was cut off from the house of the Lord: and Joathan his son +was set over his kingdom, judging the people of the land. + +And the rest of the acts of Ozias, the first and the last, +are written by Jessias the prophet. + +And Ozias slept with his fathers, and they buried him with his fathers in the field of the burial +place of the kings, for they said, He is a leper; and Joatham his son reigned in his stead. + +

+ + +

Joatham +was twenty and five years old when he began to reign, and he reigned sixteen years in Jerusalem: and his mother's name +was Jerusa, daughter of Sadoc. + +And he did that which was right in the sight of the Lord, according to all that his father Ozias did: but he went not into the temple of the Lord. And still the people corrupted themselves. + +He built the high gate of the house of the Lord, and he built much in the wall of Opel. + +In the mountain of Juda, and in the woods, +he built both dwelling-places and towers. + +He fought against the king of the children of Ammon, and prevailed against him: and the children of Ammon gave him even annually one hundred talents of silver, and ten thousand measures of wheat, and ten thousand of barley. These the king of the children of Ammon brought to him annually in the first and second and third years. + +Joatham grew strong, because he prepared his ways before the Lord his God. + +And the rest of the acts of Joatham, and his war, and his deeds, behold, +they are written in the book of the kings of Juda and Israel. + +And Joatham slept with his fathers, and was buried in the city of David: and Achaz his son reigned in his stead. + +

+ + +

Achaz was five and twenty years old when he began to reign, and he reigned sixteen years in Jerusalem: and he did not that which was right in the sight of the Lord, as David his father. + +But he walked in the ways of the kings of Israel, for he made graven images. + +And +he sacrificed to their idols in the valley of Benennom, and passed his children through the fire, according to the abominations of the heathen, whom the Lord cast out from before the children of Israel. + +And he burnt incense upon the high places, and upon the roofs, and under every shady tree. + +And the Lord his God delivered him into the hand of the king of Syria; and he struck him, and took captive of them a great band of prisoners, and carried him to Damascus. Also +God delivered him into the hands of the king of Israel, who struck him with a great slaughter. + +And Phakee the son of Romelias king of Israel, killed in Juda in one day one hundred and twenty thousand mighty men; because they had forsaken the Lord God of their fathers. + +And Zechri, a mighty man of Ephraim, killed Maasias the king's son, and Ezrican the chief of his house, and Elcana the king's deputy. + +And the children of Israel took captive of their brethren three hundred thousand, women, and sons, and daughters, and they spoiled them of much property, and brought the spoils to Samaria. + +And there was there a prophet of the Lord, his name +was Oded: and he went out to meet the host that were coming to Samaria, and said to them, Behold, the wrath of the Lord God of your fathers +is upon Juda, and he has delivered them into your hands, and you⌃ have slain them in wrath, and it has reached even to heaven. + +And now you⌃ talk of keeping the children of Juda and Jerusalem for servants and handmaidens. Behold, am I not with you to testify for the Lord your God? + +And now listen to me, and restore the prisoners of your brethren whom you⌃ have taken: for the fierce anger of the Lord +is upon you. + +And the chiefs of the sons of Ephraim rose up, Udias the son of Joanas, and Barachias the son of Mosolamoth, and Ezekias the son of Sellem, and Amasias the son of Eldai, against those that came from the war, + +and said to them, You⌃ shall not bring in hither the prisoners to us, for whereas sin against the Lord +is upon us, you⌃ mean to add to our sins, and to our trespass: for our sin +is great, and the fierce anger of the Lord +is upon Israel. + +So the warriors left the prisoners and the spoils before the princes and all the congregation. + +And the men who were called by name rose up, and took hold of the prisoners, and clothed all the naked from the spoils, and gave them garments and shoes, and gave them +food to eat, and +oil to anoint themselves +with, and they helped also every one that was weak with asses, and placed them in Jericho, the city of palm-trees, with their brethren; and they returned to Samaria. + +At that time king Achaz sent to the king of Assyria to help him, and on this occasion, + +because the Idumeans had attacked +him, and struck Juda, and taken a number of prisoners. + +Also the Philistines had made an attack on the cities of the plain country, and the cities of the south of Juda, and taken Baethsamys, and +the things in the house of the Lord, and the things in the house of the king, and of the princes: and they gave to the king Aelon, and Galero, and Socho and her villages, and Thamna and her villages, and Gamzo and her villages: and they lived there. + +For the Lord humbled Juda because of Achaz king of Juda, because he grievously departed from the Lord. + +And there came against him Thalgaphellasar king of Assyria, and he afflicted him. + +And Achaz took the things +that were in the house of the Lord, and the things in the house of the king, and of the princes, and gave them to the king of Assyria: but he was no help to him, + +but only +troubled him in his affliction: and he departed yet more from the Lord, and king Achaz said, + +I will seek after the gods of Damascus that strike me. And he said, Forasmuch as the gods of the king of Syria themselves strengthen them, therefore will I sacrifice to them, and they will help me. But they became a stumbling block to him, and to all Israel. + +And Achaz removed the vessels of the house of the Lord, and cut them in pieces, and shut the doors of the house of the Lord, and made to himself altars in every corner in Jerusalem: + +and in each several city in Juda he made high places to burn incense to strange gods: and they provoked the Lord God of their fathers. + +And the rest of his acts, and his deeds, the first and the last, behold, +they are written in the book of the kings of Juda and Israel. + +And Achaz slept with his fathers, and was buried in the city of David; for they did not bring him into the sepulchres of the kings of Israel: and Ezekias his son reigned in his stead. + +

+ + +

And Ezekias began to reign at the age of twenty-five years, and he reigned twenty-nine years in Jerusalem: and his mother's name was Abia, daughter of Zacharias. + +And he did that which was right in the sight of the Lord, according to all that his father David had done. + +And it came to pass, when he was established over his kingdom, in the first month, he opened the doors of the house of the Lord, and repaired them. + +And he brought in the priests and the Levites, and put them on the east side, + +and said to them, Hear, you⌃ Levites: now sanctify yourselves, and sanctify the house of the Lord God of your fathers, and cast out the impurity from the holy places. + +For our fathers have revolted, and done that which was evil before the Lord our God, and have forsaken him, and have turned away their face from the tabernacle of the Lord, and have turned +their back. + +And they have shut up the doors of the temple, and put out the lamps, and have not burnt incense, and have not offered whole burnt offerings in the holy +place to the God of Israel. + +And the Lord was very angry with Juda and Jerusalem, and made them an astonishment, and a desolation, and a hissing, as you⌃ see with your eyes. + +And, behold, your fathers have been struck with the sword, and your sons and your daughters and your wives are in captivity in a land not their own, as it is even now. + +Therefore it is now in my heart to make a covenant, a covenant with the Lord God of Israel, that he may turn away his fierce wrath from us. + +And now be not lacking +to your duty, for the Lord has chosen you to stand before him to minister, and to be ministers and burners of incense to him. + +Then the Levites rose up, Maath the son of Amasi, and Joel the son of Azarias, of the sons of Caath: and of the sons of Merari, Kis the son of Abdi, and Azarias the son of Haelel: and of the sons of Gedsoni, Jodaad the son of Zemmath, and Joadam: these +were the sons of Joacha. + +And of the sons of Elisaphan; Zambri, and Jeiel: and of the sons of Asaph; Zacharias, and Matthanias: + +and of the sons of Aeman; Jeiel, and Semei: and of the sons of Idithun; Samaisa, and Oziel. + +And they gathered their brethren, and they purified themselves according to the king's command by the order of the Lord, to purify the house of the Lord. + +And the priests entered into the house of the Lord, to purify +it, and they cast out all the uncleanness that was found in the house of the Lord, even into the court of the house of the Lord: and the Levites received +it to cast into the brook of Kedron without. + +And +Ezekias began on the first day, +even on the new moon of the first month, to purify, and on the eighth day of the month they entered into the temple of the Lord: and they purified the house of the Lord in eight days; and on the thirteenth day of the first month they finished +the work. + +And they went in to king Ezekias, and said, We have purified all the things in the house of the Lord, the altar of whole burnt offering, and its vessels, and the table of show-bread, and its vessels; + +and all the vessels which king Achaz polluted in his reign, in his apostasy, we have prepared and purified: behold, they are before the altar of the Lord. + +And king Ezekias rose early in the morning, and gathered the chief men of the city, and went up to the house of the Lord. + +And he brought seven calves, seven rams, seven lambs, seven kids of goats for a sin-offering, for the kingdom, and for the holy things, and for Israel: and he told the priests the sons of Aaron to go up to the altar of the Lord. + +And they killed the calves, and the priests received the blood, and poured it on the altar: and they killed the rams, and poured the blood upon the altar: also they killed the lambs, and poured the blood round the altar. + +And they brought the goats for a sin-offering before the king and the congregation; and laid their hands upon them. + +And the priests killed them, and offered their blood as a propitiation on the altar; and they made atonement for all Israel: for the king said, The whole burnt offering, and the sin-offering +are for all Israel. + +And he stationed the Levites in the house of the Lord with cymbals, and lutes, and harps, according to the commandment of king David, and of Gad the king's seer, and Nathan the prophet: for by the commandment of the Lord the order +was in the hand of the prophets. + +And the Levites stood with the instruments of David, and the priests with the trumpets. + +And Ezekias told +them to offer up the whole burnt offering on the altar: and when they began to offer the whole burnt offering, they began to sing to the Lord, and the trumpets +accompanied the instruments of David king of Israel. + +And all the congregation worshipped, and the psalm-singers +were singing, and the trumpets sounding, until the whole burnt sacrifice had been completely offered. + +And when they had done offering +it, the king and all that were present bowed, and worshipped. + +And king Ezekias and the princes told the Levites to sing hymns to the Lord in the words of David, and of Asaph the prophet: and they sang hymns with gladness, and fell down and worshipped. + +Then Ezekias answered and said, Now you⌃ have consecrated yourselves to the Lord, bring near and offer sacrifices of praise in the house of the Lord. And the congregation brought sacrifices and thank-offerings into the house of the Lord; and every one who was ready in his heart +brought whole burnt offerings. + +And the number of the whole burnt offerings which the congregation brought, was seventy calves, one hundred rams, two hundred lambs: all these +were for a whole burnt offering to the Lord. + +And the consecrated calves were six hundred, +and the sheep three thousand. + +But the priests were few, and could not flay the whole burnt offering, so their brethren the Levites helped them, until the work was finished, and until the priests had purified themselves: for the Levites +more zealously purified +themselves than the priests. + +And the whole burnt offering +was abundant, with the fat of the complete peace-offering, and the drink-offerings of the whole burnt sacrifice. So the service was established in the house of the Lord. + +And Ezekias and all the people rejoiced, because God has prepared the people: for the thing was done suddenly. + +

+ + +

And Ezekias sent to all Israel and Juda, and wrote letters to Ephraim and Manasse, that they should come into the house of the Lord to Jerusalem, to keep the passover to the Lord God of Israel. + +For the king, and the princes, and all the congregation in Jerusalem, designed to keep the passover in the second month. + +For they could not keep it at that time, because a sufficient number of priest had not purified themselves, and the people was not gathered to Jerusalem. + +And the proposal pleased the king and the congregation. + +And they established a decree that a proclamation should go through all Israel, from Bersabee to Dan, that they should come and keep the passover to the Lord God of Israel at Jerusalem: for the multitude had not done it lately according to the scripture. + +And the posts went with the letters from the king and the princes to all Israel and Juda, according to the command of the king, saying, Children of Israel, return to the Lord God of Abraam, and Isaac, and Israel, and bring back them that have escaped +even those that were left of the hand of the king of Assyria. + +And be not as your fathers, and your brethren, who revolted from the Lord God of their fathers, and he gave them up to desolation, as you⌃ see. + +And now harden not your hearts, as your fathers +did: give glory to the Lord God, and enter into his sanctuary, which he has sanctified for ever: and serve the Lord your God, and he shall turn away +his fierce anger from you. + +For when you⌃ turn to the Lord, your brethren and your children shall be pitied before all that have carried them captives, and he will restore +you to this land: for the Lord our God is merciful and pitiful, and will not turn away his face from you, if we return to him. + +So the posts went through from city to city in mount Ephraim, and Manasse, and as far as Zabulon: and they as it were laughed them to scorn, and mocked them. + +But the men of Aser, and +some of Manasses and of Zabulon, were ashamed, and came to Jerusalem and Juda. + +And the hand of the Lord was +present to give them one heart to come, to do according to the commands of the king and of the princes, by the word of the Lord. + +And a great multitude were gathered to Jerusalem to keep the feast of unleavened bread in the second month, a very great congregation. + +And they arose, and took away the altars that were in Jerusalem, and all on which they burnt incense to false +gods they tore down and cast into the brook Kedron. + +Then they killed the passover on the fourteenth day of the second month: and the priests and the Levites repented, and purified +themselves, and brought whole burnt offerings into the house of the Lord. + +And they stood at their post, according to their ordinance, according to the commandment of Moses the man of God: and the priests received the blood from the hand of the Levites. + +For a great part of the congregation was not sanctified; and the Levites were +ready to kill the passover for every one who could not sanctify himself to the Lord. + +For the greatest part of the people of Ephraim, and Manasse, and Issachar, and Zabulon, had not purified +themselves, but ate the passover contrary to the scripture. On this account also Ezekias prayed concerning them, saying, + +The good Lord be merciful with regard to every heart that sincerely seeks the Lord God of their fathers, and +is not +purified according to the purification of the sanctuary. + +And the Lord listened to Ezekias, and healed the people. + +And the children of Israel who were present in Jerusalem kept the feast of unleavened bread seven days with great joy; and they continued to sing hymns to the Lord daily, and the priests and the Levites +played on instruments to the Lord. + +And Ezekias encouraged all the Levites, and those that had good understanding of the Lord: and they completely kept the feast of unleavened bread seven days, offering peace-offerings, and confessing to the Lord God of their fathers. + +And the congregation purposed together to keep other seven days: and they kept seven days with gladness. + +For Ezekias set apart for Juda, +even for the congregation, a thousand calves and seven thousand sheep; and the princes set apart for the people a thousand calves and ten thousand sheep: and the holy things of the priests abundantly. + +And all the congregation, the priests and the Levites, rejoiced, and all the congregation of Juda, and they that were present of Jerusalem, and the strangers that came from the land of Israel, and the dwellers in Juda. + +And there was great joy in Jerusalem: from the days of Solomon the son of David king of Israel there was not such a feast in Jerusalem. + +Then the priests the Levites rose up and blessed the people: and their voice was heard, and their prayer came into his holy dwelling-place, +even into heaven. + +

+ + +

And when all these things were finished, all Israel that were found in the cities of Juda went out, and broke in pieces the pillars, and cut down the groves, and tore down the high places and the altars out of all Judea and Benjamin, also of Ephraim and Manasse, till they made an end: and all Israel returned, every one to his inheritance, and to their cities. + +And Ezekias appointed the courses of the priests and the Levites, and the courses of each one according to his ministry, to the priests and to the Levites, for the whole burnt offering, and for the peace-offering, and to praise, and to give thanks, and to minister in the gates, +and in the courts of the house of the Lord. + +And the king's proportion out of his substance +was appointed for the whole burnt offerings, the morning and the evening one, and the whole burnt offerings for the sabbaths, and for the new moons, and for the feasts that were ordered in the law of the Lord. + +And they told the people who lived in Jerusalem, to give the portion of the priests and the Levites, that they might be strong in the ministry of the house of the Lord. + +And as he gave the command, Israel brought abundantly first fruits of corn, and wine, and oil, and honey, and every fruit of the field: and the children of Israel and Juda brought tithes of everything abundantly. + +And they that lived in the cities of Juda themselves also brought tithes of calves and sheep, and tithes of goats, and consecrated them to the Lord their God, and they brought them and laid them in heaps. + +In the third month the heaps began to be piled, and in the seventh month they were finished. + +And Ezekias and the princes came and saw the heaps, and blessed the Lord, and his people Israel. + +Then Ezekias enquired of the priests and the Levites concerning the heaps. + +And Azarias the priest, the chief over the house of Sadoc, spoke to him, and said, From the time that the first fruits began to be brought into the house of the Lord, we have eaten and drunk, and left even abundantly; for the Lord has blessed his people, and we have left to this amount. + +And Ezekias told them yet farther to prepare chambers for the house of the Lord; and they prepared +them, + +and they brought there the first fruits and the tithes faithfully: and Chonenias the Levite was superintendent over them, and Semei his brother was next. + +and Jeiel, and Ozias, and Naeth, and Asael, and Jerimoth, and Jozabad, and Eliel, and Samachia, and Maath, and Banaias, and his sons, were appointed by Chonenias and Semei his brother, as Ezekias the king, and Azarias who was over the house of the Lord commanded. + +And Core, the +son of Jemna the Levite, the porter eastward, +was over the gifts, to distribute the first fruits of the Lord, and the most holy things, + +by the hand of Odom, and Benjamin, and Jesus, and Semei, and Amarias, and Sechonias, by the hand of the priests faithfully, to give to their brethren according to the courses, as well to great as small; + +besides the increase of males from three years old and upward, to every one entering into the house of the Lord, +a portion according to a daily rate, for service in the daily courses of their order. + +This +is the distribution of the priests according to the houses of their families; and the Levites in their daily courses from twenty years old and upward +were in +their order, + +to assign stations for all the increase of their sons and their daughters, for the whole number: for they faithfully sanctified the holy place. + +As for the sons of Aaron that executed the priests' office, —even those from their cities the men in each several city who were named expressly, —were appointed to give a portion to every male among the priests, and to every one reckoned among the Levites. + +And Ezekias did so through all Juda, and did that which was good and right before the Lord his God. + +And in every work which he began in service in the house of the Lord, and in the law, and in the ordinances, he sought his God with all his soul, and wrought, and prospered. + +

+ + +

And after these things and this faithful dealing, came Sennacherim king of the Assyrians, and he came to Juda, and encamped against the fortified cities, and intended to take them for himself. + +And Ezekias saw that Sennacherim was come, and +that his face +was set to fight against Jerusalem. + +And he took counsel with his elders and his mighty +men to stop the wells of water which were without the city: and they helped him. + +And he collected many people, and stopped the wells of water, and the river that flowed through the city, saying, Lest the king of Assyria come, and find much water, and strengthen +himself. + +And Ezekias strengthened +himself, and built all the wall that had been pulled down, and the towers, and another wall in front without, and fortified the strong place of the city of David, and prepared arms in abundance. + +And he appointed captains of war over the people, and they were gathered to +meet him to the open place of the gate of the valley, and he encouraged them, saying, + +Be strong and courageous, and fear not, neither be dismayed before the King of Assyria, and before all the nation that +is with him: for +there are more with us than with him. + +With him +are arms of flesh; but with us +is the Lord our God to save +us, and to fight our battle. And the people were encouraged at the words of Ezekias king of Juda. + +And afterward Sennacherim king of the Assyrians sent his servants to Jerusalem; and +he went himself against Lachis, and all his army with him, and sent to Ezekias king of Juda, and to all Juda that +was in Jerusalem, saying, + +Thus says Sennacherim king of the Assyrians, On what do you⌃ trust, that you⌃ will remain in the siege in Jerusalem? + +Does not Ezekias deceive you, to deliver you to death and famine and thirst, saying, The Lord our God will deliver us out of the hand of the king of Assyria? + +Is not this Ezekias who has taken down his altars and his high places and has spoken to Juda and the dwellers in Jerusalem, saying, You⌃ shall worship before this altar and burn incense upon it? + +Know you⌃ not what I and my fathers have done to all the nations of the countries? Could the gods of the nations of all the earth at all rescue their people out of my hand? + +Who is there among all the gods of those nations whom my fathers utterly destroyed, +worthy of trust? Could they deliver their people out of my hand, that your God should deliver you out of my hand? + +Now then, let not Ezekias deceive you, and let him not make you thus confident, and believe him not: for no god of any kingdom or nation is at all able to deliver his people out of my hand, or the hand of my fathers: therefore your God shall not deliver you out of my hand. + +And his servants continued to speak against the Lord God, and against his servant Ezekias. + +And he wrote a letter to reproach the Lord God of Israel, and spoke concerning him, saying, As the gods of the nations of the earth have not delivered their people out of my hand, so the God of Ezekias shall by no means deliver his people out of my hand. + +And he cried with a loud voice in the Jews' language to the people of Jerusalem on the wall, +calling them to assist them, and pull down +the walls, that they might take the city. + +And he spoke against the God of Jerusalem, even as against the gods of the nations of the earth, the works of the hands of men. + +And king Ezekias and Esaias the prophet the son of Amos prayed concerning these things, and they cried to heaven. + +And the Lord sent an angel, and he destroyed every mighty man and warrior, and leader and captain in the camp of the king of Assyria: and he returned with shame of face to his own land and came into the house of his god: and +some of them that came out of his bowels killed him with the sword. + +So the Lord delivered Ezekias and the dwellers in Jerusalem out of the hand of Sennacherim King of Assyria, and out of the hand of all +his enemies, and gave them rest round about. + +And many brought gifts to the Lord to Jerusalem, and presents to Ezekias king of Juda; and he was exalted in the eyes of all the nations after these things. + +In those days Ezekias was sick even to death, and prayed to the Lord: and he listened to him, and gave him a sign. + +But Ezekias did not recompense the Lord according to the return which he made him, but his heart was lifted up: and wrath came upon him, and upon Juda and Jerusalem. + +And Ezekias humbled himself after the exaltation of his heart, he and the dwellers in Jerusalem; and the wrath of the Lord did not come upon them in the days of Ezekias. + +And Ezekias had wealth and very great glory: and he made for himself treasuries of gold, and silver, and precious stones, also for spices, and stores for arms, and for precious vessels; + +and cities for the produce of corn, and wine, and oil; and stalls and mangers for every +kind of cattle, and folds for flocks; + +and cities which he built for himself, and store of sheep and oxen in abundance, for the Lord gave him a very great store. + +The same Ezekias stopped up the course of the water of Gion above, and brought the water down straight south of the city of David. And Ezekias prospered in all his works. + +Notwithstanding, in regard to the ambassadors of the princes of Babylon, who were sent to him to enquire of him +concerning the prodigy which came upon the land, the Lord left him, to try him, to know what was in his heart. + +And the rest of the acts of Ezekias, and his kindness, behold, they are written in the prophecy of Esaias the son of Amos the prophet, and in the book of the kings of Juda and Israel. + +And Ezekias slept with his fathers, and they buried him in a high place among the sepulchres of the sons of David: and all Juda and the dwellers in Jerusalem gave him glory and honor at his death. And Manasses his son reigned in his stead. + +

+ + +

Manasses was twelve years old when he began to reign, and he reigned fifty-five years in Jerusalem. + +And he did that which was evil in the sight of the Lord, according to all the abominations of the heathen, whom the Lord destroyed from before the face of the children of Israel. + +And he returned and built the high places, which his father Ezekias had pulled down, and set up images to Baalim, and made groves, and worshipped all the host of heaven, and served them. + +And he built altars in the house of the Lord, concerning which the Lord said, In Jerusalem shall be my name for ever. + +And he built altars to all the host of heaven in the two courts of the house of the Lord. + +He also passed his children through the fire in the valley of Benennom; and he divined, and used auspices, and sorceries, and appointed those who had divining spirits, and enchanters, and wrought abundant wickedness before the Lord, to provoke him. + +And he set the graven +image, the molten +statue, the idol which he made, in the house of God, of which God had said to David and to Solomon his son, In this house, and Jerusalem, which I have chosen out of all the tribes of Israel, I will put my name for ever; + +and I will not again remove the foot of Israel from the land which I gave to their fathers, if only they will take heed to do all things which I have commanded them, according to all the law and the ordinances and the judgments +given by the hand of Moses. + +So Manasses led astray Juda and the inhabitants of Jerusalem, to do evil beyond all the nations which the Lord cast out from before the children of Israel. + +And the Lord spoke to Manasses, and to his people: but they listened not. + +And the Lord brought upon them the captains of the host of the king of Assyria, and they took Manasses in bonds, and bound him in fetters, and brought him to Babylon. + +And when he was afflicted, he sought the face of the Lord his God, and was greatly humbled before the face of the God of his fathers; + +and he prayed to him: and he listened to him, and listened to his cry, and brought him back to Jerusalem to his kingdom: and Manasses knew that the Lord he is God. + +And afterward he built a wall without the city of David, from the southwest southward in the valleys and at the entrance through the fish-gate, as men go out by the gate round about, even as far as Opel: and he raised it much, and set captains of the host in all the fortified cities in Juda. + +And he removed the strange gods, and the graven +image out of the house of the Lord, and all the altars which he had built in the mount of the house of the Lord, and in Jerusalem, and without the city. + +And he repaired the altar of the Lord, and offered upon it a sacrifice of peace-offering and thank-offering, and he told Juda to serve the Lord God of Israel. + +Nevertheless the people still sacrificed on the high places, only to the Lord their God. + +And the rest of the acts of Manasses, and his prayer to God, and the words of the seers that spoke to him in the name of the God of Israel, + +behold, +they are in the account of his prayer; and +God listened to him. And all his sins, and his backslidings, and the spots on which he built the high places, and set there groves and graven images, before he repented, behold, they are written in the books of the seers. + +And Manasses slept with his fathers, and they buried him in the garden of his house: and Amon his son reigned in his stead. + +Amon was twenty and two years old when he began to reign, and he reigned two years in Jerusalem. + +And he did that which was evil in the sight of the Lord, as his father Manasses did: and Amon sacrificed to all the idols which his father Manasses had made, and served them. + +And he was not humbled before the Lord as his father Manasses was humbled; for his son Amon abounded in transgression. + +And his servants conspired against him, and killed him in his house. + +And the people of the land killed the men who had conspired against king Amon; and the people of the land made Josias his son king in his stead. + +

+ + +

Josias was eight years old when he began to reign, and he reigned thirty-one years in Jerusalem. + +And he did that which was right in the sight of the Lord, and walked in the ways of his father David, and turned not aside to the right hand or to the left. + +And in the eighth year of his reign, and he +being yet a youth, he began to seek the Lord God of his father David: and in the twelfth year of his reign he began to purge Juda and Jerusalem from the high places, and the groves, and the ornaments for the altars, and the molten images. + +And he pulled down the altars of Baalim that were before his face, and the high places that were above them; and he cut down the groves, and the graven images, and broke in pieces the molten images, and reduced them to powder, and cast +it upon the surface of the tombs of those who +had sacrificed to them. + +And he burnt the bones of the priests upon the altars, and purged Juda and Jerusalem. + +And +he did so in the cities of Manasse, and Ephraim, and Symeon, and Nephthali, and the places round about them. + +And he pulled down the altars and the groves, and he cut the idols in small pieces, and cut off all the high places from all the land of Israel, and returned to Jerusalem. + +And in the eighteenth year of his reign, after having cleansed the land, and the house, he sent Saphan the son of Ezelias, and Maasa prefect of the city, and Juach son of Joachaz his recorder, to repair the house of the Lord his God. + +And they came to Chelcias the high priest, and gave the money that was brought into the house of God, which the Levites who kept the gate collected of the hand of Manasse and Ephraim, and of the princes, and of every one that was left in Israel, and of the children of Juda and Benjamin, and of the dwellers in Jerusalem. + +And they gave it into the hand of the workmen, who were appointed in the house of the Lord, and they gave it to the workmen who wrought in the house of the Lord, to repair and strengthen the house. + +They gave +it also to the carpenters and builders, to buy squared stones, and timber for beams to cover the houses which the kings of Juda had destroyed. + +And the men +were faithfully +engaged in the works: and over them were superintendents, Jeth and Abdias, Levites of the sons of Merari, and Zacharias and Mosollam, of the sons of Caath, +appointed to oversee; and every Levite, and every one that understood +how to play on musical instruments. + +And +overseers were over the burden-bearers, and over all the workmen in the respective works; and of the Levites +were appointed scribes, and judges, and porters. + +And when they brought forth the money that had been brought into the house of the Lord, Chelcias the priest found a book of the law of the Lord +given by the hand of Moses. + +And Chelcias answered and said to Saphan the scribe, I have found a book of the law in the house of the Lord. And Chelcias gave the book to Saphan. + +And Saphan brought in the book to the king, and moreover gave an account to the king, +saying, This is all the money given into the hand of your servants that work. + +And they have collected the money that was found in the house of the Lord, and given it into the hand of the overseers, and into the hand of them that do the work. + +And Saphan the scribe brought word to the king, saying, Chelcias the priest has given me a book. And Saphan read it before the king. + +And it came to pass, when the king heard the words of the law, that he tore his garments. + +And the king commanded Chelcias, and Achicam the son of Saphan, and Abdom the son of Michaias, and Saphan the scribe, and Asia the servant of the king, saying, + +Go, enquire of the Lord for me, and for every one that is left in Israel and Juda, concerning the words of the book that is found: for great is the wrath of the Lord +which has been kindled among us, because our fathers have not listened to the words of the Lord, to do according to all the things written in this book. + +And Chelcias went, and +the others whom the king told, to Olda the prophetess, the wife of Sellem son of Thecoe, son of Aras, who kept the commandments; and she lived in Jerusalem in the second +quarter: and they spoke to her accordingly. + +And she said to them, Thus has the Lord God of Israel said, Tell the man who sent you to me, + +Thus says the Lord, Behold, I bring evil upon this place, +even all the words that are written in the book that was read before the king of Juda: + +because they have forsaken me, and burnt incense to strange gods, that they might provoke me by all the works of their hands; and my wrath is kindled against this place, and it shall not be quenched. + +And concerning the king of Juda, who sent you to seek the Lord, —thus shall you⌃ say to him, Thus says the Lord God of Israel, +As for the words which you have heard, + +forasmuch as your heart was ashamed, and you were humbled before me when you heard my words against this place, and against the inhabitants of it, and you were humbled before me, and did rend your garments, and did weep before me; I also have heard, says the Lord. + +Behold, I +will gather you to your fathers, and you shall be gathered to your grave in peace, and your eyes shall not look upon all the evils which I am bringing upon this place, and upon the inhabitants of it. And they brought back word to the king. + +And the king sent and gathered the elders of Juda and Jerusalem. + +And the king went up to the house of the Lord, +he and all Juda, 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 were found in the house of the Lord. + +And the king stood at a pillar, and made a covenant before the Lord, to walk before the Lord, to keep his commandments and testimonies, and his ordinances, with all +his heart and with all +his soul, so as to perform the words of the covenant that were written in this book. + +And he caused all that were found in Jerusalem and Benjamin to stand; and the inhabitants of Jerusalem made a covenant in the house of the Lord God of their fathers. + +And Josias removed all the abominations out of the whole land which belonged to the children of Israel, and caused all that were found in Jerusalem and in Israel, to serve the Lord their God all his days: he departed not from following the Lord God of his fathers. + +

+ + +

And Josias kept a passover to the Lord his God; and sacrificed the passover on the fourteenth day of the first month. + +And he appointed the priests at their charges, and encouraged them for the services of the house of the Lord. + +And he told the Levites that were able +to act in all Israel, that they should consecrate themselves to the Lord: and they put the holy ark in the house which Solomon the son of David king of Israel built: and the king said, You⌃ must not carry anything on your shoulders: now then minister to the Lord your God, and to his people Israel. + +And prepare yourselves according to the houses of your families, and according to your daily courses, according to the writing of David king of Israel, and +the order by the hand of his son Solomon. + +And stand you⌃ in the house according to the divisions of the houses of your families for your brethren the sons of the people; +so also let there be for the Levites a division of the house of their family. + +And kill you⌃ the passover, and prepare +it for your brethren, to do according to the word of the Lord, by the hand of Moses. + +And Josias gave as an offering to the children of the people, sheep, and lambs, and kids of the young of the goats, all for the passover, +even for all that were found, in number +amounting to thirty thousand, and three thousand calves, these +were of the substance of the king. + +And his princes gave an offering to the people, and to the priests, and to the Levites: and Chelcias and Zacharias and Jeiel the chief men gave to the priests of the house of God, they even gave for the passover sheep, and lambs, and kids, two thousand six hundred, and three hundred calves. + +And Chonenias, and Banaeas, and Samaeas, and Nathanael his brother, and Asabias, and Jeiel, and Jozabad, heads of the Levites, gave an offering to the Levites for the passover, of five thousand sheep and five hundred calves. + +And the service was duly ordered, and the priests stood in their place, and the Levites in their divisions, according to the command of the king. + +And they killed the passover, and the priests sprinkled the blood from their hand, and the Levites flayed +the victims. + +And they prepared the whole burnt offering to give to them, according to the division by the houses of families, +even to the sons of the people, to offer to the Lord, as it is written in the book of Moses. + +And thus +they did till the morning. And they roasted the passover with fire according to the ordinance; and boiled the holy +pieces in copper vessels and caldrons, and +the feast went on well, and they quickly served all the children of the people. + +And after they had prepared for themselves and for the priests, for the priests +were engaged in offering the whole burnt offerings and the fat until night, then the Levites prepared for themselves, and for their brethren the sons of Aaron. + +And the sons of Asaph the psalm-singers +were at their post according to the commands of David, and Asaph, and Aeman, and Idithom, the prophets of the king: also, the chiefs and the porters of the several gates; —it was not for them to stir from the service of the holy things, for their brethren the Levites prepared for them. + +So all the service of the Lord was duly ordered and prepared in that day, for keeping the passover, and offering the whole burnt sacrifices on the altar of the Lord, according to the command of king Josias. + +And the children of Israel that were present kept the passover at that time, and the feast of unleavened bread seven days. + +And there was no passover like it in Israel from the days of Samuel the prophet, or any king of Israel: they kept not such a passover as Josias, and the priests, and the Levites, and all Juda and Israel that were present, and the dwellers in Jerusalem, kept to the Lord. + +In the eighteenth year of the reign of Josias this passover was kept, after all these things that Josias did in the house. And king Josias burnt those who had in them a divining spirit, and the wizards, and the images, and the idols, and the sodomites which were in the land of Juda and in Jerusalem, that he might confirm the words of the law that were written in the book which Chelcias the priest found in the house of the Lord. There was no +king like him before him, who turned to the Lord with all his heart, and all his soul, and all his strength, according to all the law of Moses, and after him there rose up none like him. Nevertheless the Lord turned not from the anger of his fierce wrath, wherewith the Lord was greatly angry against Juda, for all the provocations wherewith Manasses provoked him: and the Lord said, I will even remove Juda also from my presence, as I have removed Israel, and I have rejected the city which I chose, +even Jerusalem, and thehouse of which I said, My name shall be there. + +And Pharao Nechao king of Egypt went up against the king of the Assyrians to the river Euphrates, and king Josias went to meet him. + +And he sent messengers to him, saying, What have I to do with you, O king of Juda? I am not come today to war against you; and God has told me to hasten: beware of the God that is with me, lest he destroy you. + +However, Josias turned not his face from him, but strengthened himself to fight against him, and listened not to the words of Nechao by the mouth of God, and he came to fight in the plain of Mageddo. + +And the archers shot at king Josias; and the king said to his servants, Take me away, for I am severely wounded. + +And his servants lifted him out of the chariot, and put him in the second chariot which he had, and brought him to Jerusalem; and he died, and was buried with his fathers: and all Juda and Jerusalem lamented over Josias. + +And Jeremias mourned over Josias, and all the chief men and chief women uttered a lamentation over Josias until this day: and they made it an ordinance for Israel, and, behold, it is written in the lamentations. + +And the rest of the acts of Josias, and his hope, are written in the law of the Lord. + +And his acts, the first and the last, behold, +they are written in the book of the kings of Israel and Judah. + +

+ + +

And the people of the land took Joachaz the son of Josias, and anointed him, and made him king over Jerusalem in the room of his father. + +Joachaz +was twenty-three years old when he began to reign, and he reigned three months in Jerusalem: and his mother's name was Amital, daughter of Jeremias of Lobna. And he did that which was evil in the sight of the Lord, according to all that his fathers had done. And Pharao Nechao bound him in Deblatha in the land of Aemath, that he might not reign in Jerusalem. + +And the king brought him over to Egypt; and imposed a tribute on the land, one hundred talents of silver and a talent of gold. + +And Pharao Nechao made Eliakim the son of Josias king over Juda in the room of his father Josias, and changed his name +to Joakim. And Pharao Nechao took his brother Joachaz and brought him into Egypt, and he died there: but +he had given the silver and gold to Pharao. At that time the land began to be taxed to give the money at the command of Pharao; and every one as he could borrowed the silver and the gold of the people of the land, to give to Pharao Nechao. + +Joachim was twenty-five years old when he began to reign, and he reigned eleven years in Jerusalem: and his mother's name +was Zechora, daughter of Nerias of Rama. And he did that which was evil in the sight of the Lord, according to all that his fathers did. In his days came Nabuchodonosor king of Babylon into the land, and he served him three years, and +then revolted from him. And the Lord sent against them the Chaldeans, and plundering parties of Syrians, and plundering parties of the Moabites, and of the children of Ammon, and of Samaria; but after this they departed, according to the word of the Lord by the hand of his servants the prophets. Nevertheless the wrath of the Lord was upon Juda, so that they should be removed from his presence, because of the sins of Manasses in all that he did, and for the innocent blood which Joakim shed, for he had filled Jerusalem with innocent blood; yet the Lord would not utterly destroy them. + +And Nabuchodonosor king of Babylon came up against him, and bound him with brazen fetters, and carried him away to Babylon. + +And he carried away a part of the vessels of the house of the Lord to Babylon, and put them in his temple in Babylon. + +And the rest of the acts of Joakim, and all that he did, behold, +are not these things written in the book of the chronicles of the kings of Juda? And Joakim slept with his fathers, and was buried with his fathers in Ganozae: and Jechonias his son reigned in his stead. + +Jechonias +was eight years old when he began to reign, and he reigned three months and ten days in Jerusalem, and did that which was evil in the sight of the Lord. + +And at the turn of the year, king Nabuchodonosor sent, and brought him to Babylon, with the precious vessels of the house of the Lord, and made Sedekias his father's brother king over Juda and Jerusalem. + +Sedekias +was twenty-one years old when he began to reign, and be reigned eleven years in Jerusalem. + +And he did that which was evil in the sight of the Lord his God: he was not ashamed before the prophet Jeremias, nor because of the word of the Lord; + +in that he rebelled against king Nabuchodonosor, which he adjured him by God +not to do: but he stiffened his neck, and hardened his heart, so as not to return to the Lord God of Israel. + +And all the great men of Juda, and the priests, and the people of the land transgressed abundantly in the abominations of the heathen, and polluted the house of the Lord which +was in Jerusalem. + +And the Lord God of their fathers sent by the hand of his prophets; rising early and sending his messengers, for he spared his people, and his sanctuary. + +Nevertheless they sneered at his messengers, and set at nothing his words, and mocked his prophets, until the wrath of the Lord rose up against his people, till there was no remedy. + +And he brought against them the king of the Chaldeans, and killed their young men with the sword in the house of his sanctuary, and did not spare Sedekias, and had no mercy upon their virgins, and they led away their old men: he delivered all things into their hands. + +And all the vessels of the house of God, the great and the small, and the treasures of the house of the Lord, and all the treasures of the king and the great men; he brought all to Babylon. + +And he burnt the house of the Lord, and broke down the wall of Jerusalem, and burnt its palaces with fire, and +utterly destroyed every beautiful vessel. + +And he carried away the remnant to Babylon; and they were servants to him and to his sons until +the establishment of the kingdom of the Medes. + +That the word of the Lord by the mouth of Jeremias might be fulfilled, until the land should enjoy its sabbaths in resting +and sabbath keeping all the days of its desolation, till the accomplishment of seventy years. + +In the first year of Cyrus king of the Persians, after the fulfillment of the word of the Lord by the mouth of Jeremias, the Lord stirred up the spirit of Cyrus king of the Persians, and told him to make proclamation in writing throughout all his kingdom, saying, + +Thus says Cyrus king of the Persians to all the kingdoms of the earth, The Lord God of heaven has given me +power, and he has commanded me to build a house to him in Jerusalem, in Judea. Who +is there of you of all his people? His God shall be with him, and let him go up. + +

+
+ +Ezra +EZRA +Ezra +EZR +

EZRA +

+ + +

Now in the first year of Cyrus king of the Persians, that the word of the Lord by the mouth of Jeremias might be fulfilled, the Lord stirred up the spirit of Cyrus king of the Persians, and he issued a proclamation through all his kingdom, and that in writing, saying, + +Thus said Cyrus king of the Persians, The Lord God of heaven has given me all the kingdoms of the earth, and he has given me a charge to build him a house in Jerusalem that is in Judea. + +Who +is there among you of all his people? for his God shall be with him, and he shall go up to Jerusalem that is in Judea, and let him build the house of the God of Israel: he +is the God that is in Jerusalem. + +And +let every +Jew that is left +go from every place where he sojourns, and the men of his place shall help him with silver, and gold, and goods, and cattle, together with the voluntary offering for the house of God that is in Jerusalem. + +Then the chiefs of the families of Juda and Benjamin arose, and the priests, and the Levites, all whose spirit the Lord stirred up to go up to build the house of the Lord that +is in Jerusalem. + +And all that were round about strengthened their hands with vessels of silver, with gold, with goods, and with cattle, and with presents, besides the voluntary offerings. + +And king Cyrus brought out the vessels of the house of the Lord, which Nabuchodonosor had brought from Jerusalem, and put in the house of his god. + +And Cyrus king of the Persians brought them out by the hand of Mithradates the treasurer, and he numbered them to Sasabasar, the chief man of Juda. + +And this +is their number: thirty gold basins, and a thousand silver basins, nine and twenty changes, thirty golden goblets, + +and four hundred +and ten double silver +vessels, and a thousand other vessels. + +All the gold and silver vessels were five thousand four hundred, +even all that went up with Sasabasar from the +place of transportation, from Babylon to Jerusalem. + +

+ + +

And these +are the people of the land that went up, of the number of prisoners who were removed, whom Nabuchodonosor king of Babylon carried away to Babylon, and they returned to Juda and Jerusalem, every man to his city; + +who came with Zorobabel: Jesus, Neemias, Saraias, Reelias, Mardochaeus, Balasan, Masphar, Baguai, Reum, Baana. The number of the people of Israel: + +the children of Phares, two thousand one hundred and seventy-two. + +The children of Saphatia, three hundred and seventy-two. + +The children of Ares, seven hundred and seventy-five. + +The children of Phaath Moab, belonging to the sons of Jesue +and Joab, two thousand eight hundred and twelve. + +The children of Aelam, a thousand two hundred and fifty-four. + +The children of Zatthua, nine hundred and forty-five. + +The children of Zacchu, seven hundred and sixty. + +The children of Banui, six hundred and forty-two. + +The children of Babai, six hundred and twenty-three. + +The children of Asgad, a thousand two hundred and twenty-two. + +The children of Adonicam, six hundred and sixty-six. + +The children of Bague, two thousand and fifty-six. + +The children of Addin, four hundred and fifty-four. + +The children of Ater +the son of Ezekias, ninety eight. + +The children of Bassu, three hundred and twenty-three. + +The children of Jora, one hundred and twelve. + +The children of Asum, two hundred and twenty-three. + +The children of Gaber, ninety-five. + +The children of Bethlaem, one hundred and twenty-three. + +The children of Netopha, fifty-six. + +The children of Anathoth, one hundred and twenty-eight. + +The children of Azmoth, forty-three. + +The children of Cariathiarim, Chaphira, and Beroth, seven hundred and forty-three. + +The children of Rama and Gabaa, six hundred and twenty-one. + +The men of Machmas, one hundred and twenty-two. + +The men of Baethel and Aia, four hundred and twenty-three. + +The children of Nabu, fifty-two. + +The children of Magebis, one hundred and fifty-six. + +The children of Elamar, a thousand two hundred and fifty-four. + +The children of Elam, three hundred and twenty. + +The children of Lodadi and Ono, seven hundred and twenty-five. + +The children of Jericho, three hundred and forty-five. + +The children of Senaa, three thousand six hundred and thirty. + +And the priests, the sons of Jedua, +belonging to the house of Jesus, +were nine hundred and seventy-three. + +The children of Emmer, a thousand +and fifty-two. + +The children of Phassur, a thousand two hundred +and forty-seven. + +The children of Erem, a thousand +and seven. + +And the Levites, the sons of Jesus and Cadmiel, belonging to the sons of Oduia, seventy-four. + +The sons of Asaph, singers, one hundred +and twenty-eight. + +The children of the porters, the children of Sellum, the children of Ater, the children of Telmon, the children of Acub, the children of Atita, the children of Sobai, +in all one hundred +and thirty-nine. + +The Nathinim: the children of Suthia, the children of Asupha, the children of Tabaoth, + +the sons of Cades, the children of Siaa, the children of Phadon, + +the children of Labano, the children of Agaba, the sons of Acub, + +the children of Agab, the children of Selami, the children of Anan, + +the children of Geddel, the children of Gaar, the children of Raia, + +the children of Rason, the children of Necoda, the children of Gazem, + +the children of Azo, the children of Phase, the children of Basi, + +the children of Asena, the children of Mounim, the children of Nephusim, + +the children of Bacbuc, the children of Acupha, the children of Arur, + +the children of Basaloth, the children of Mauda, the children of Arsa, + +the children of Barcos, the children of Sisara, the children of Thema, + +the children of Nasthie, the children of Atupha. + +The children of the servants of Solomon: the children of Sotai, the children of Sephera, the children of Phadura, + +the children of Jeela, the children of Darcon, the children of Gedel, + +the children of Saphatia, the children of Atil, the children of Phacherath, the children of Aseboim, the children of Emei. + +All the Nathanim, and the sons of Abdeselma +were three hundred and ninety-two. + +And these +are they that went up from Thelmelech, Thelaresa, Cherub, Hedan, Emmer: and they were not able to tell the house of their fathers, and their seed, whether they were of Israel: + +the children of Dalaea, the children of Bua, the children of Tobias, the children of Necoda, six hundred +and fifty-two. + +And of the children of the priests, the children of Labeia, the children of Akkus, the children of Berzellai, who took a wife of the daughter of Berzellai the Galaadite, and was called by their name. + +These sought their genealogy +as though they had been reckoned, but they were not found; and they were removed, +as polluted, from the priesthood. + +And the Athersastha told them that they should not eat of the most holy things, until a priest should arise with Lights and Perfections. + +And all the congregation together +were about forty-two thousand three hundred and sixty; + +besides their menservants and maidservants, +and these were seven thousand three hundred +and thirty-seven: and +among these were two hundred singing men and singing women. + +Their horses +were seven hundred +and thirty-six, their mules, two hundred +and forty-five. + +Their camels, four hundred +and thirty-five; their asses, six thousand seven hundred +and twenty. + +And +some of the chiefs of families, when they went into the house of the Lord that was in Jerusalem, offered willingly for the house of God, to establish it on its prepared place. + +According to their power they gave into the treasury of the work pure gold sixty-one thousand pieces, and five thousand pounds of silver, and one hundred priests' garments. + +So the priests, and the Levites, and some of the people, and the singers, and the porters, and the Nathinim, lived in their cities, and all Israel in their cities. + +

+ + +

And the seventh month came on, and the children of Israel +were in their cities, and the people assembled as one man at Jerusalem. + +Then stood up Jesus the +son of Josedec, and his brethren the priests, and Zorobabel the +son of Salathiel, and his brethren, and they built the altar of the God of Israel, to offer upon it whole burnt offerings, according to the things that were written in the law of Moses the man of God. + +And they set up the altar on its place, for there was a terror upon them because of the people of the lands: and the whole burnt offerings was offered up upon it to the Lord morning and evening. + +And they kept the feast of tabernacles, according to that which was written, and +offered whole burnt offerings daily in number according to the ordinance, the exact daily rate. + +And after this the perpetual whole burnt offering, and +offering for the season of new moon, and for all the hallowed feasts to the Lord, and for every one that offered a free will offering to the Lord. + +On the first day of the seventh month they began to offer whole burnt offerings to the Lord: but the foundation of the house of the Lord was not laid. + +And they gave money to the stone-hewers and carpenters, and meat and drink, and oil, to the Sidonians, and Tyrians, to bring cedar trees from Libanus to the sea of Joppa, according to the grant of Cyrus king of the Persians to them. + +And in the second year of their coming to the house of God in Jerusalem, in the second month, began Zorobabel the +son of Salathiel, and Jesus the +son of Josedec, and the rest of their brethren the priests and the Levites, and all who came from the captivity to Jerusalem, and they appointed the Levites, from twenty years old and upward, over the workmen in the house of the Lord. + +And Jesus and his sons and his brethren stood, Cadmiel and his sons the sons of Juda, over them that wrought the works in the house of God: the sons of Enadad, their sons and their brethren the Levites. + +And they laid a foundation for building the house of the Lord: and the priests in their robes stood with trumpets and the Levites the sons of Asaph with cymbals, to praise the Lord, according to the order of David king of Israel. + +And they answered +each other with praise and thanksgiving to the Lord, +saying, For +it is good, for his mercy to Israel +endures for ever. And all the people shouted with a loud voice to praise the Lord at the laying the foundation of the house of the Lord. + +But many of the priests and the Levites, and the elder men, heads of families, who had seen the former house on its foundation, and +who saw this house with their eyes, wept with a loud voice: but the multitude shouted with joy to raise a song. + +And the people did not distinguish the voice of the glad shout from the voice of the weeping of the people: for the people shouted with a loud voice, and the voice was heard even from afar off. + +

+ + +

And they that afflicted Juda and Benjamin heard, that the children of the captivity were building a house to the Lord God of Israel. + +And they drew near to Zorobabel, and to the heads of families, and said to them, We will build with you; for as you⌃ +do, we seek +to serve our God, and we do sacrifice to him from the days of Asaradan king of Assur, who brought us hither. + +then Zorobabel, and Jesus and the rest of the heads of the families of Israel said to them, +It is not for us and you to build a house to our God, for we ourselves will build together to the Lord our God, as Cyrus the king of the Persians commanded us. + +And the people of the land weakened the hands of the people of Juda, and hindered them in building, + +and +continued hiring +persons against them, plotting to frustrate their counsel, all the days of Cyrus king of the Persians, and until the reign of Darius king of the Persians. + +And in the reign of Assuerus, even in the beginning of his reign, they wrote a letter against the inhabitants of Juda and Jerusalem. + +And in the days of Arthasastha, Tabeel wrote peaceably to Mithradates and to the rest of his fellow-servants: the tribute-gatherer wrote to Arthasastha king of the Persians a writing in the Syrian tongue, and +the same interpreted. + +Reum the chancellor, and Sampsa the scribe wrote an epistle against Jerusalem to King Arthasastha, +saying, + +Thus has judged Reum the chancellor, and Sampsa the scribe, and the rest of our fellow-servants, the Dinaeans, the Apharsathachaeans, the Tarphalaeans, the Apharsaeans, the Archyaeans, the Babylonians, the Susanachaeans, Davaeans, + +and the rest of the nations whom the great and noble Assenaphar removed, and settled them in the cities of Somoron, and the rest +of them beyond the river. + +This +is the purport of the letter, which they sent to him: Your servants the men beyond the river to king Arthasastha. + +Be it known to the king, that the Jews who came up from you to us have come to Jerusalem the rebellious and wicked city, which they are building, and its walls are set in order, and they have established the foundations of it. + +Now then be it known to the king, that if that city be built up, and its walls completed, you shall have no tribute, neither will they pay +anything, and this injures kings. + +And it is not lawful for us to see the dishonor of the king: therefore have we sent and made known +the matter to the king; + +That examination may be made in your fathers' book of record; and you shall find, and you shall know that city +is rebellious, and does harm to kings and countries, and there are in the midst of it from very old time refuges for +runaway slaves: therefore this city has been made desolate. + +We therefore declare to the king, that, if that city be built, and its walls be set up, you shall not have peace. + +Then the king sent to Reum the chancellor, and Sampsa the scribe, and the rest of their fellow-servants who lived in Samaria, and the rest beyond the river, +saying, +Peace; and he says, + +The tribute-gatherer whom you⌃ sent to us, has been called before me. + +And a decree has been made by me, and we have examined, and found that city of old time exalts itself against kings, and that rebellions and desertions take place within it. + +And there were powerful kings in Jerusalem, and they ruled over all the +country beyond the river, and abundant revenues and tribute were given to them. + +Now therefore make a decree to stop the work of those men, and that city shall no more be built. + + +See that you⌃ be careful of the decree, +not to be remiss concerning this matter, lest at any time destruction should abound to the harm of kings. + +Then the tribute-gatherer of king Arthasastha read +the letter before Reum the chancellor, and Sampsa the scribe, and his fellow-servants: and they went in haste to Jerusalem and through Juda, and caused them to cease with horses and an +armed force. + +Then ceased the work of the house of God in Jerusalem, and it was at a stand until the second year of the reign of Darius king of the Persians. + +

+ + +

And Aggaeus the prophet, and Zacharias the +son of Addo, prophesied a prophesy to the Jews in Juda and Jerusalem in the name of the God of Israel, +even to them. + +Then rose up Zorobabel the +son of Salathiel, and Jesus the son of Josedec, and began to build the house of God that was in Jerusalem: and with them +were the prophets of God assisting them. + +At the same time came there upon them Thanthanai, the governor on this side the river, and Satharbuzanai, and their fellow-servants, and spoke thus to them, Who has ordained a decree for you to build this house, and to +provide this preparation? + +Then they spoke thus to them, What are the names of the men that build this city? + +But the eyes of God were upon the captivity of Juda, and they did not cause them to cease till the decree was brought to Darius; and then was sent by the tribute-gatherer concerning this + +the copy of a letter, which Thanthanai, the governor of the part on this side the river, and Satharbuzanai, and their fellow-servants the Apharsachaeans who were on this side of the river, sent to king Darius. + +They sent an account to him, and thus it was written in it: All peace to king Darius. + +Be it known to the king, that we went into the land of Judea, to the house of the great God; and it is building with choice stones, and they are laying timbers in the walls, and that work is prospering, and goes on favorably in their hands. + +Then we asked those elders, and thus we said to them, Who gave you the order to build this house, and to +provide this preparation? + +And we asked them their names, +in order to declare +them to you, so as to write to you the names of their leading men. + +And they answered us thus, saying, We +are the servants of the God of heaven and earth, and we +are building the house which had been built many years before this, and a great king of Israel built it, and established it for them. + +But after that our fathers provoked the God of heaven, he gave them into the hands of Nabuchodonosor the Chaldean, king of Babylon, and he destroyed this house, and carried the people captive to Babylon. + +And in the first year of king Cyrus, Cyrus the king made a decree that this house of God should be built. + +And the gold and silver vessels of the house of God, which Nabuchodonosor brought out from the house that was in Jerusalem, and carried them into the temple of the king, them did king Cyrus bring out from the temple of the king, and gave them to Sabanasar the treasurer, who was over the treasurer; + +and said to him, Take all the vessels, and go, put them in the house that is in Jerusalem in their place. + +Then that Sabanazar came, and laid the foundations of the house of God in Jerusalem: and from that time even until now it has been building, and has not been finished. + +And now, if it +seem good to the king, lest search be made in the treasure-house of the king at Babylon, that you may know +if it be that a decree was made by king Cyrus to build that house of God that was in Jerusalem, and let the king send to us when he has learned concerning this +matter. + +

+ + +

Then Darius the king made a decree, and caused a search to be made in the record-offices, where the treasure is stored in Babylon. + +And there was found in the city, in the palace, a volume, and this was the record written in it. + +In the first year of king Cyrus, Cyrus the king made a decree concerning the holy house of God that was in Jerusalem, +saying, +Let the house be built, and the place where they sacrifice the sacrifices. (Also he appointed its elevation, in height sixty cubits; its breadth +was of sixty cubits.) + +And +let there be three strong layers of stone, and one layer of timber; and the expense shall be paid out of the house of the king. + +And the silver and the gold vessels of the house of God, which Nabuchodonosor carried off from the house that was in Jerusalem, and carried to Babylon, let them even be given, and be carried to the temple that is in Jerusalem, and put in the place where they were set in the house of God. + +Now, you⌃ rulers beyond the river, Satharbuzanai, and their fellow-servants the Apharsachaeans, who +are on the other side of the river, give +these things, keeping far from that place. + +Now let alone the work of the house of God: let the rulers of the Jews and the elders of the Jews build that house of God on its place. + +Also a decree has been made by me, if haply you⌃ may do somewhat in concert with the elders of the Jews for the building of that house of God: to wit, out of the king's property, +even the tributes beyond the river, let there be money to defray the expenses carefully granted to those men, so that they be not hindered. + +And whatever need +there may be, you⌃ shall give both the young of bulls and rams, and lambs for whole burnt offerings to the God of heaven, wheat, salt, wine, oil:—let it be given them according to the word of the priests that are in Jerusalem, day by day whatever they shall ask; + +that they may offer sweet savours to the God of heaven, and that they may pray for the life of the king and his sons. + +And a decree has been made by me, that every man who shall alter this word, timber shall be pulled down from his house, and let him be lifted up and slain upon it, and his house shall be confiscated. + +And may the God whose name dwells there, overthrow every king and people who shall stretch out his hand to alter or destroy the house of God which is in Jerusalem. I Darius have made a decree; let it be diligently +attended to. + +Then Thanthanai the governor on this side beyond the river, Satharbuzanai, and his fellow-servants, according to that which king Darius sent, so they did diligently. + +And the elders of the Jews and the Levites built, at the prophecy of Aggaeus the prophet, and Zacharias the son of Addo: and they built up, and finished +it, by the decree of the God of Israel, and by the decree of Cyrus, and Darius, and Arthasastha, kings of the Persians. + +And they finished this house by the third day of the month Adar, which is the sixth year of the reign of Darius the king. + +And the children of Israel, the priests, and the Levites, and the rest of the children of the captivity, kept the dedication of the house of God with gladness. + +And they offered for the dedication of the house of God one hundred calves, two hundred rams, four hundred lambs, twelve kids of the goats for a sin-offering for all Israel, according to the number of the tribes of Israel. + +And they set the priests in their divisions, and the Levites in their separate orders, for the services of God in Jerusalem, according to the writing of the book of Moses. + +And the children of the captivity kept the passover on the fourteenth day of the first month. + +For the priests and Levites were purified, all were clean to a man, and they killed the passover for all the children of the captivity, and for their brethren the priests, and for themselves. + +And the children of Israel ate the passover, +even they that were of the captivity, and every one who separated himself to them from the uncleanness of the nations of the land, to seek the Lord God of Israel. + +and they kept the feast of unleavened bread seven days with gladness, because the Lord made them glad, and he turned the heart of the king of Assyria to them, to strengthen their hands in the works of the house of the God of Israel. + +

+ + +

Now after these things, in the reign of Arthasastha king of the Persians, came up Esdras the son of Saraias, the son of Azarias, the son of Chelcias, + +the son of Selum, the son of Sadduc, the son of Achitob, + +the son of Samarias, the son of Esria, the son of Mareoth, + +the son of Zaraia, the son of Ozias, the son of Bokki, + +the son of Abisue, the son of Phinees, the son of Eleazar, the son of Aaron the first priest. + +This Esdras went up out of Babylon; and he was a ready scribe in the law of Moses, which the Lord God of Israel gave: and the king gave him +leave, for the hand of the Lord his God was upon him in all things which he sought. + +And +some of the children of Israel went up, and +some of the priests, and of the Levites, and the singers, and the doorkeepers, and the Nathinim, to Jerusalem, in the seventh year of Arthasastha the king. + +And they came to Jerusalem in the fifth month, this +was the seventh year of the king. + +For in the first +day of the first month he began the going up from Babylon, and in the first day of the fifth month, they came to Jerusalem, for the good hand of his God was upon him. + +For Esdras had determined in his heart to seek the law, and to do and teach the ordinances and judgments in Israel. + +And this +is the copy of the order which Arthasastha gave to Esdras the priest, the scribe of the book of the words of the commandments of the Lord, and of his ordinances to Israel. + +Arthasastha, king of kings, to Esdras, the scribe of the law of the Lord God of heaven, Let the order and the answer be accomplished. + +A decree is made by me, that every one who is willing in my kingdom of the people of Israel, and of the priests and Levites, to go to Jerusalem, +be permitted to go with you. + + +One has been sent from the king and the seven councillors, to visit Judea and Jerusalem, according to the law of their God that is in your hand. + +And for the house of the Lord +there have been sent silver and gold, which the king and the councillors have freely given to the God of Israel, who dwells in Jerusalem. + +And all the silver and gold, whatever you shall find in all the land of Babylon, with the free will offering of the people, and the priests that offer freely for the house of God which is in Jerusalem. + +And as for every one that arrives +there, speedily order him by this letter +to bring calves, rams, lambs, and their meat-offerings, and their drink-offerings; and you shall offer them on the altar of the house of your God which is in Jerusalem. + +And whatever it shall seem good to you and to your brethren to do with the rest of the silver and the gold, do as it is pleasing to your God. + +And deliver the vessels that are given you for the service of the house of God, before God in Jerusalem. + +And as to the rest of the need of the house of your God, you shall give from the king's treasure-houses, + +and from me, whatever it shall seem +good to you to give. I king Arthasastha have made a decree for all the treasuries that are in the +country beyond the river, that whatever Esdras the priest and scribe of the God of heaven may ask you, it shall be done speedily, + +to +the amount of one hundred talents of silver, and one hundred measures of wheat, and one hundred baths of wine, and one hundred baths of oil, and salt without reckoning. + +Let whatever is in the decree of the God of heaven, be done: take heed lest any one make an attack on the house of the God of heaven, lest at any time there shall be wrath against the realm of the king and his sons. + +Also this has been declared to you, with respect to all the priests, and Levites, the singers, porters, Nathinim and ministers of the house of God, let no tribute be +paid to you; you shall not have power to oppress them. + +And you, Esdras, as the wisdom of God +is in your hand, appoint scribes and judges, that they may judge for all the people beyond the river, all that know the law of the Lord your God; and you⌃ shall make it known to him that knows not. + +And whoever shall not do the law of God, and the law of the king readily, judgment shall be taken upon him, whether for death or for chastisement, or for a fine of his property, or casting into prison. + +Blessed +be the Lord God of our fathers, who has put it thus into the heart of the king, to glorify the house of the Lord which is in Jerusalem; + +and has given me favor in the eyes of the king, and of his councillors, and all the rulers of the king, the exalted ones. And I was strengthened according to the good hand of God upon me, and I gathered chief men of Israel to go up with me. + +

+ + +

And these +are the heads of their families, the leaders that went up with me in the reign of Arthasastha the king of Babylon. + +Of the sons of Phinees; Gerson: of the sons of Ithamar; Daniel: of the sons of David; Attus. + +Of the sons of Sachania, and the sons of Phoros; Zacharias: and with him a company +of one hundred and fifty. + +Of the sons of Phaath-Moab; Eliana the son of Saraia, and with him two hundred that were males. + +And of the sons of Zathoes; Sechenias the son of Aziel, and with him three hundred males. + +And of the sons of Adin; Obeth the son of Jonathan, and with him fifty males. + +And of the sons of Elam; Isaeas the son of Athelia, and with him seventy males. + +And of the sons of Saphatia; Zabadias the son of Michael, and with him eighty males. + +And of the sons of Joab; Abadia the son of Jeiel, and with him two hundred and eighteen males. + +And of the sons of Baani; Selimuth the son of Josephia, and with him one hundred and sixty males. + +And of the sons of Babi; Zacharias the son of Babi, and with him twenty-eight males. + +And of the sons of Asgad; Joanan the son of Accatan, and with him one hundred and ten males. + +And of the sons of Adonicam +were the last, and these +were their names, Eliphalat, Jeel, and Samaea, and with them sixty males. + +And of the sons of Baguae, Uthai, and Zabud, and with him seventy males. + +And I gathered them to the river that comes to Evi, and we encamped there three days: and I reviewed the people and the priests, and found none of the sons of Levi there. + +And I sent men of understanding to Eleazar, to Ariel, to Semeias, and to Alonam, and to Jarib, and to Elnatham, and to Nathan, and to Zacharias, and to Mesollam, and to Joarim, and to Elnathan. + +And I forwarded them to the rulers with the money of the place, and I put words in their mouth to speak to their brethren the Athinim with the money of the place, that they should bring us singers for the house of our God. + +And they came to us, as the good hand of our God was upon us, even a man of understanding of the sons of Mooli, the son of Levi, the son of Israel, and at the commencement came his sons and his brethren, eighteen. + +And Asebia, and Isaia of the sons of Merari, his brethren and his sons, twenty. + +And of the Nathinim; whom David and the princes had appointed for the service of the Levites +there were two hundred and twenty Nathinim; all were gathered by +their names. + +And I proclaimed there a fast, at the river Aue, that +we should humble ourselves before our God, to seek of him a straight way for us, and for our children, and for all our property. + +For I was ashamed to ask of the king a guard and horsemen to save us from the enemy in the way: for we had spoken to the king, saying, The hand of our God +is upon all that seek him, for good; but his power and his wrath +are upon all that forsake him. + +So we fasted, and asked of our God concerning this; and he listened to us. + +And I gave charge to twelve of the chiefs of the priests, to Saraia, to Asabia, and ten of their brethren with them. + +And I weighed to them the silver, and the gold, and the vessels of the first fruits of the house of our God, which the king, and his councillors, and his princes, and all Israel that were found, had dedicated. + +I even weighed into their hands six hundred and fifty talents of silver, and one hundred silver vessels, and one hundred talents of gold; + +and twenty golden bowls, +weighing about a thousand drachmas, and superior vessels of fine shining brass, +precious as gold. + +And I said to them, You⌃ +are holy to the Lord; and the vessels +are holy; and the silver and the gold are free will offerings to the Lord God of our fathers. + +Be watchful and keep them, until you⌃ weigh +them before the chief priests and the Levites, and the chiefs of families in Jerusalem, at the chambers of the house of the Lord. + +So the priests and the Levites took the weight of the silver, and the gold, and the vessels, to bring to Jerusalem into the house of our God. + +And we departed from the river of Aue on the twelfth day of the first month, to come to Jerusalem: and the hand of our God was upon us, and delivered us from the hand of the enemy and adversary in the way. + +And we came to Jerusalem, and abode there three days. + +And it came to pass on the fourth day that we weighed the silver, and the gold, and the vessels, in the house of our God, into the hand of Merimoth the son of Uria the priest; and with him +was Eleazar the son of Phinees, and with them Jozabad the son of Jesus, and Noadia the son of Banaia, the Levites. + +All things +were reckoned by number and weight, and the whole weight was written +down. + +At that time the children of the banishment that came from the captivity offered whole burnt offerings to the God of Israel, twelve calves for all Israel, ninety-six rams, seventy-seven lambs, twelve goats for a sin-offering; all whole burnt offerings to the Lord. + +And they gave the king's mandate to the king's lieutenants, and the governors beyond the river: and they honored the people and the house of God. + +

+ + +

And when these things were finished, the princes drew near to me, saying, The people of Israel, and the priests, and the Levites, have not separated themselves from the people of the lands in their abominations, +even the Chananite, the Ethite, the Pherezite, the Jebusite, the Ammonite, the Moabite, and the Moserite and the Amorite. + +For they have taken of their daughters for themselves and their sons; and the holy seed has passed among the nations of the lands, and the hand of the rulers +has been first in this transgression. + +And when I heard this thing, I tore my garments, and trembled, and plucked +some of the hairs of my head and of my beard, and sat down mourning. + +Then there assembled to me all that followed the word of the God of Israel, on account of the transgression of the captivity; and I remained mourning until the evening sacrifice. + +And at the evening sacrifice I rose up from my humiliation; and when I had torn my garments, then I trembled, and I bow myself on my knees, and spread out my hands to the Lord God, + +and I said, O Lord, I am ashamed and confounded, O my God, to lift up my face to you: for our transgressions have abounded over our head, and our trespasses have increased even to heaven. + +From the days of our fathers we have been in a great trespass until this day: and because of our iniquities we, and our kings, and our children, have been delivered into the hand of the kings of the Gentiles by the sword, and by captivity, and by spoil, and with shame of our face, as at this day. + +And now our God has dealt mercifully with us, so as to leave us to escape, and to give us an establishment in the place of his sanctuary, to enlighten our eyes, and to give a little quickening in our servitude. + +For we are slaves, yet in our servitude the Lord our God has not deserted us; and he has extended favor to us in the sight of the kings of the Persians, to give us a quickening, that they should raise up the house of our God, and restore the desolate places of it, and to give us a fence in Juda and Jerusalem. + +What shall we say, our God, after this? for we have forsaken your commandments, + +which you have given us by the hand of your servants the prophets, saying, The land, into which you⌃ go to inherit it, is a land subject to disturbance by the removal of the people of the nations for their abominations, wherewith they have filled it from one end to the other by their uncleanness. + +And now give not your daughters to their sons, and take not of their daughters for your sons, neither shall you⌃ seek their peace or their good for ever: that you⌃ may be strong, and eat the good of the land, and transmit it as an inheritance to your children for ever. + +And after all that is come upon us because of our evil deeds, and our great trespass, +it is clear that there is none such as our God, for you have lightly visited our iniquities, and given us deliverance; + +whereas we have repeatedly broken your commandments, and intermarried with the people of the lands: be not very angry with us to +our utter destruction, so that there should be no remnant or escaping one. + +O Lord God of Israel, you +are righteous; for we remain +yet escaped, as at this day: behold, we +are before you in our trespasses: for we can’t stand before you on this account. + +

+ + +

So when Esdras +had prayed, and when he +had confessed, weeping and praying before the house of God, a very great assembly of Israel came together to him, men and women and youths; for the people wept, and wept aloud. + +And Sechenias the son of Jeel, of the sons of Elam, answered and said to Esdras, We have broken covenant with our God, and have taken strange wives of the nations of the land: yet now there is patience +of hope to Israel concerning this thing. + +Now then let us make a covenant with our God, to put away all the wives, and their offspring, as you shall advise: + +arise, and alarm them with the commands of our God; and let +it be done according to the law. Rise up, for the matter +is upon you; and we +are with you: be strong and do. + +Then Esdras arose, and caused the rulers, the priests, and Levites, and all Israel, to swear that they would do according to this word: and they swore. + +And Esdras rose up from before the house of God, and went to the treasury of Joanan the son of Elisub; he even went there: he ate no bread, and drank no water; for he mourned over the unfaithfulness +of them of the captivity. + +And they made proclamation throughout Juda and Jerusalem to all the children of the captivity, that they should assemble at Jerusalem, +saying, + +Every one who shall not arrive within three days, as +is the counsel of the rulers and the elders, all his substance shall be forfeited, and he shall be separated from the congregation of the captivity. + +So all the men of Juda and Benjamin assembled at Jerusalem within the three days. This +was the ninth month: on the twentieth day of the month all the people sat down in the street of the house of the Lord, because of their alarm concerning the word, and because of the storm. + +And Esdras the priest arose, and said to them, You⌃ have broken covenant, and have taken strange wives, to add to the trespass of Israel. + +Now therefore give praise to the Lord God of our fathers, and do that which is pleasing in his sight: and separate yourselves from the peoples of the land, and from the strange wives. + +Then all the congregation answered and said, This your word +is powerful upon us to do it. + +But the people +is numerous, and the season +is stormy, and there is no power to stand without, and the work is more than enough for one day or for two; for we have greatly sinned in this matter. + +Let now our rulers stand, and for all those in our cities who have taken strange wives, let them come at appointed times, and with them elders from every several city, and judges, to turn away the fierce wrath of our God from us concerning this matter. + +Only Jonathan the son of Asael, and Jazias the son of Thecoe +were with me concerning this; and Mesollam, and Sabbathai the Levite helped them. + +And the children of the captivity did thus: and Esdras the priest, and heads of families according to +their house were separated, and all by their names, for they returned in the first day of the tenth month to search out the matter. + +And they made an end with all the men who had taken strange wives by the first day of the first month. + +And there were found +some of the sons of the priests who had taken strange wives: of the sons of Jesus the son of Josedec, and his brethren; Maasia, and Eliezer, and Jarib, and Gadalia. + +And they pledged themselves to put away their wives, and +offered a ram of the flock for a trespass-offering because of their trespass. + +And of the sons of Emmer; Anani, and Zabdia. + +And of the sons of Eram; Masael, and Elia, and Samaia, and Jeel, and Ozia. + +And of the sons of Phasur; Elionai, Maasia, and Ismael, and Nathanael, and Jozabad, and Elasa. + +And of the Levites; Jozabad, and Samu, and Colia (he +is Colitas,) and Phetheia, and Judas, and Eliezer. + +And of the singers; Elisab: and of the porters; Solmen, and Telmen, and Oduth. + +Also of Israel: of the sons of Phoros; Ramia, and Azia, and Melchia, and Meamin, and Eleazar, and Asabia, and Banaia. + +And of the sons of Helam; Matthania, and Zacharia, and Jaiel, and Abdia, and Jarimoth, and Elia. + +And of the sons of Zathua; Elionai, Elisub, Matthanai, and Armoth, and Zabad, and Oziza. + +And of the sons of Babei; Joanan, Anania, and Zabu, and Thali. + +And of the sons of Banui; Mosollam, Maluch, Adaias, Jasub, and Saluia, and Remoth. + +And of the sons of Phaath Moab; Edne, and Chalel, and Banaia, Maasia, Matthania, Beseleel, and Banui, and Manasse. + +And of the sons of Eram; Eliezer, Jesia, Melchia, Samaias, Semeon, + +Benjamin, Baluch, Samaria. + +And of the sons of Asem; Metthania, Matthatha, Zadab, Eliphalet, Jerami, Manasse, Semei. + +And of the sons of Bani; Moodia, Amram, Uel, + +Banaia, Badaia, Chelkia, + +Uvania, Marimoth, Eliasiph, + +Matthania, Matthanai: + +and +so did the children of Banui, and the children of Semei, + +and Selemia, and Nathan, and Adaia, + +Machadnabu, Sesei, Sariu, + +Ezriel, and Selemia, and Samaria, + +and Sellum, Amaria, Joseph. + +Of the sons of Nabu; Jael, Matthanias, Zabad, Zebennas, Jadai, and Joel, and Banaia. + +All these had taken strange wives, and had begotten sons of them. + +

+
+ +Nehemiah +NEHEMIAH +Nehemiah +NEH +

NEHEMIAH +

+ + +

The words of Neemias the son of Chelcia. And it came to pass in the month Chaseleu, of the twentieth year, that I was in Susan the palace. + +And Anani, one of my brethren, came, he and +some men of Juda; and I asked them concerning those that had escaped, who had been left of the captivity, and concerning Jerusalem. + +And they said to me, The remnant, +even those that are left of the captivity, +are there in the land, in great distress and reproach: and the walls of Jerusalem +are thrown down, and its gates are burnt with fire. + +And it came to pass, when I heard these words, +that I sat down and wept, and mourned for +several days, and continued fasting and praying before the God of heaven. + +And I said, Nay, I pray you, O Lord God of heaven, the mighty, the great and terrible, keeping your covenant and mercy to them that love him, and to those that keep his commandments: + +let now your ear be attentive, and your eyes open, that you may hear the prayer of your servant, which I pray before you at this time, this day +both day and night, for the children of Israel your servants, and make confession for the sins of the children of Israel, which we have sinned against you: both I and the house of my father have sinned. + +We have altogether broken +covenant with you, and we have not kept the commandments, and the ordinances, and the judgments, which you did command your servant Moses. + +Remember, I pray you, the word wherewith you did charge your servant Moses, saying, If you⌃ break covenant +with me, I will disperse you among the nations. + +But if you⌃ turn again to me, and keep my commandments, and do them; if you⌃ should be scattered under the utmost +bound of heaven, thence will I gather them, and I will bring them into the place which I have chosen to cause my name to dwell there. + +Now they +are your servants and your people, whom you have redeemed with your great power, and with your strong hand. + + +Turn not +away, I pray you, O Lord, but let your ear be attentive to the prayer of your servant, and to the prayer of your servants, who desire to fear your name: and prosper, I pray you, your servant this day, and cause him to find mercy in the sight of this man. Now I was the king's cupbearer. + +

+ + +

And it came to pass in the month Nisan of the twentieth year of king Arthasastha, that the wine was before me: and I took the wine, and gave +it to the king: and there was not another before him. + +And the king said to me, Why is your countenance sad, and do you not control yourself? and now this is nothing but sorrow of heart. Then I was very much alarmed, + +and I said to the king, Let the king live for ever: why should not my countenance be said, forasmuch as the city, even the home of the sepulchres of my fathers, has been laid waste, and her gates have been devoured with fire? + +And the king said to me, For what do you ask thus? So I prayed to the God of heaven. + +And I said to the king, If +it seem good to the king, and if your servant shall have found favor in your sight, +I ask that +you would send him into Juda, to the city of the sepulchres of my fathers; then will I rebuild it. + +And the king, and his concubine that sat next to him, said to me, For how long will your journey be, and when will you return? and +the proposal was pleasing before the king, and he sent me away, and I appointed him a time. + +And I said to the king, If +it seem good to the king, let him give me letters to the governors beyond the river, so as to forward me till I come to Juda; + +and a letter to Asaph the keeper of the garden which belongs to the king, that he may give me timber to cover the gates, and for the wall of the city, and for the house into which I shall enter. And the king gave to me, according as the good hand of God +was upon me. + +And I came to the governors beyond the river, and I gave them the king's letters. (Now the king had sent with me captains of the army and horsemen.) + +And Sanaballat the Aronite heard +it, and Tobia the servant, the Ammonite, and it was grievous to them that a man was come to seek good for the children of Israel. + +So I came to Jerusalem, and was there three days. + +And I rose up by night, I and a few men with me; and I told no man what God put into my heart to do with Israel; and there was no beast with me, except the beast which I rode upon. + +And I went forth by the gate of the valley by night, and to the mouth of the well of fig trees, and to the dung-gate: and I mourned over the wall of Jerusalem which they were destroying, and her gates were devoured with fire. + +And I passed on to the fountain gate, and to the king's pool; and there was no room for the beast to pass under me. + +And I went up by the wall of the brook by night, and mourned over the wall, and passed through the gate of the valley, and returned. + +And the sentinels knew not why I went, nor what I was doing; and until that time I told +it not to the Jews, or to the priests, or to the nobles, or to the captains, or to the rest +of the men who wrought the works. + +Then I said to them, You⌃ see this evil, in which we are, how Jerusalem is desolate, and her gates have been set on fire: come, and let us build throughout the wall of Jerusalem, and we shall be no longer a reproach. + +And I told them of the hand of God which was good upon me, also about the words of the king which he spoke to me: and I said, Let us arise and build. And their hands were strengthened for the good +work. + +And Sanaballat the Aronite, and Tobia the servant, the Ammonite, and Gesam the Arabian, heard +it, and they laughed us to scorn, and came to us, and said, What +is this thing that you⌃ are doing? are you⌃ revolting against the king? + +And I answered them, and said to them, The God of heaven, he shall prosper us, and we his servants are pure, and we will build: but you⌃ have no part, nor right, nor memorial, in Jerusalem. + +

+ + +

Then Eliasub the high priest, and his brethren the priests, rose up, and built the sheep-gate; they sanctified it, and set up the doors of it; even to the tower of the hundred they sanctified +it, to the tower of Anameel. + +And +they builded by the side of the men of Jericho, and by the side of the sons of Zacchur, the son of Amari. + +And the sons of Asana built the fish-gate; they roofed it, and covered in its doors, and bolts, and bars. + +And next to them +the order reached to Ramoth the son of Uria, the son of Accos, and next to them Mosollam son of Barachias the son of Mazebel took +his place: and next to them Sadoc the son of Baana took +his place. + +And next to them the Thecoim took +their place; but the Adorim applied not their neck to their service. + +And Joida the son of Phasec, and Mesulam son of Basodia, repaired the old gate; they covered it in, and set up its doors, and its bolts, and its bars. + +And next to them repaired Maltias the Gabaonite, and Evaron the Meronothite, the men of Gabaon and Maspha, to the throne of the governor on this side the river. + +And next to him Oziel the son of Arachias of the smiths, carried on the repairs: and next to them Ananias the son of one of the apothecaries repaired, and they finished Jerusalem to the broad wall. + +And next to them repaired Raphaea the son of Sur, the ruler of half the district round about Jerusalem. + +And next to them repaired Jedaia the son of Eromaph, and +that in front of his house: and next to him repaired Attuth son of Asabania. + +And next +to him repaired Melchias son of Heram, and Asub son of Phaat Moab, even to the tower of the furnaces. + +And next to him repaired Sallum the son of Alloes, the ruler of half the district round about Jerusalem, he and his daughters. + +Anun and the inhabitants of Zano repaired the gate of the valley: they built it, and set up its doors, and its bolts, and its bars, and a thousand cubits of the wall as far as the dung-gate. + +And Melchia the son of Rechab, the ruler of the district round about Beth-accharim, repaired the dung-gate, he and his sons; and they covered it, and set up its doors, and its bolts, and its bars. + +But Solomon the son of Choleze repaired the gate of the fountain, the ruler of part of Maspha; he built it, and covered it, and set up its doors and its bars, and the wall of the pool of the skins by the meadow of the king, and as far as the steps that lead down from the city of David. + +After him repaired Neemias son of Azabuch, ruler of half the district round about Bethsur, as far as the garden of David's sepulchre, and as far as the artificial pool, and as far as the house of the mighty men. + +After him repaired the Levites, +even Raum the son of Bani: next to him repaired Asabia, ruler of half the district round about Keila, in his district. + +And after him repaired his brethren, Benei son of Enadad, ruler of half the district round about Keila. + +And next to him repaired Azur the son of Joshua, ruler of Masphai, another portion of the tower of ascent, where it meets the corner. + +After him repaired Baruch the son of Zabu, a second portion, from the corner as far as the door of the house of Eliasub the high priest. + +After him repaired Meramoth the son of Uria the son of Accos, a second part from the door of the house of Eliasub, to the end of the house of Eliasub. + +And after him repaired the priests, the men of Ecchechar. + +And after him repaired Benjamin and Asub over against their house: and after him repaired Azarias son of Maasias the son of Ananias, +the parts near to his house. + +After him repaired Bani the son of Adad, another portion from the house of Azaria as far as the corner and to the turning, + +of Phalach the son of Uzai, opposite the corner, and +where is also the tower that projects from the king's house, even the upper one of the prison-house: and after him +repaired Phadaea the son of Phoros. + +And the Nathinim lived in Ophal, as far as the garden of the water-gate eastward, and +there is the projecting tower. + +And after them the Thecoim repaired, another portion opposite the great projecting tower, even as far as the wall of Ophla. + +The priests repaired above the horse-gate, +every man over against his own house. + +And after him Sadduc the son of Emmer repaired opposite his own house: and after him repaired Samaea son of Sechenia, guard of the east-gate. + +After him repaired Anania son of Selemia, and Anom, the sixth son of Seleph, another portion: after him Mesulam the son of Barachia repaired over against his treasury. + +After him repaired Melchia the son of Sarephi as far as the house of the Nathinim, and the chapmen over against the gate of Maphecad, and as far as the steps of the corner. + +And between +that and the sheep-gate the smiths and chapmen repaired. + +

+ + +

Now it came to pass, when Sanaballat heard that we were building the wall, that it was grievous to him, and he was very angry, and railed against the Jews. + +And he said before his brethren (that +is the army of the Samaritans) +Is it true that these Jews are building their city? do they indeed offer sacrifices? will they prevail? and will they this day restore the stones, after they have been burnt and made a heap of rubbish? + +And Tobias the Ammanite came near to him, and said to them, Do they sacrifice or eat in their place? shall not a fox go up and pull down their wall of stones? + +Hear, O our God, for we have become a scorn; and return you their reproach upon their head, and make them a scorn in a land of captivity, + +and do not cover +their iniquity. + +But it came to pass, when Sanaballat and Tobia, and the Arabians, and the Ammanites, heard that the building of the walls of Jerusalem was advancing, +and that the breaches began to be stopped, that it appeared very grievous to them. + +And all of them assembled together, to come to fight against Jerusalem, and to destroy it utterly. + +So we prayed to our God and set watchmen against them day and night, because of them. + +And Juda said, The strength of the enemies is broken, yet +there is much rubbish, and we shall not be able to build the wall. + +And they that afflicted us said, They shall not know, and they shall not see, until we come into the midst of them, and kill them, and cause the work to cease. + +And it came to pass, when the Jews who lived near them came, that they said to us, They are coming up against us from every quarter. + +So I set +men in the lowest part of the place behind the wall in the lurking-places, I even set the people according to their families, with their swords, their spears, and their bows. + +And I looked, and arose, and said to the nobles, and to the captains, and to the rest of the people, Be not afraid of them: remember our great and terrible God, and fight for your brethren, your sons, your daughters, your wives, and your houses. + +And it came to pass, when our enemies heard that it was made known to us, and God had frustrated their counsel, that we all returned to the wall, +every man to his work. + +And it came to pass from that day +that half of them that had been driven forth, wrought the work, and half of them kept guard; and +there were spears, and shields, and bows, and breastplates, and rulers behind the whole house of Juda, + +even of them that were building the wall:—and those who carried the burdens +were under arms: +each with one hand wrought his work, and with the other held his dart. + +And the builders +wrought each man having his sword girded upon his loins, and so they built: and the trumpeter with his trumpet next to him. + +And I said to the nobles, and to the rulers, and to the rest of the people, The work +is great and abundant, and we are dispersed upon the wall, each at a great distance from his brother. + +In whatever place you⌃ shall hear the sound of the cornet, there gather yourselves together to us; and our God shall fight for us. + +So we +continued laboring at the work: and half of them held the spears from the rising of the morning until the stars appeared. + +And at that time I said to the people, Lodge you⌃ every man with his servant in the midst of Jerusalem, and let the night be a watch-time to you, and the day a work-time. + +And I was +there, and the watchmen behind me, and there was not a man of us that put off his garments. + +

+ + +

And the cry of the people and their wives +was great against their brethren the Jews. + +And some said, We +are numerous with our sons and our daughters; so we will take corn, and eat, and live. + +And some said, +As to our fields and vineyards and houses, let us pledge +them, and we will take corn, and eat. + +And some said, We have borrowed money for the king's tributes:—our fields, and our vineyards, and houses +are pledged. + +And now our flesh +is as the flesh of our brethren, our children +are as their children: yet, behold, we are reducing our sons and our daughters to slavery, and some of our daughters are enslaved: and there is no power of our hands, for our fields and our vineyards +belong to the nobles. + +And I was much grieved as I heard their cry and these words. + +And my heart took counsel within me, and I contended against the nobles, and the princes, and I said to them, Should every man demand of his brother what you⌃ demand? And I appointed against them a great assembly, + +and I said to them, We of our free-will have redeemed our brethren the Jews that were sold to the Gentiles; and do you⌃ sell your brethren? and shall they be delivered to us? And they were silent, and found no answer. + +And I said, The thing which you⌃ do +is not good; you⌃ will not so walk in the fear of our God because of the reproach of the Gentiles our enemies. + +Both my brethren, and my acquaintances, and I, have lent them money and corn: let us now leave off this exaction. + +Restore to them, I pray, as at this day, their fields, and their vineyards, and their olive yards, and their houses, and bring forth to them corn and wine and oil of the money. + +And they said, We will restore, and we will not exact of them; we will do thus as you say. Then I called the priests, and bound them by oath to do according to this word. + +And I shook out my garment, and said, So may God shake out every man who shall not keep to this word, from his house, and from his labors, he shall be even thus shaken out, as an outcast and empty. And all the congregation said, Amen, and they praised the Lord: and the people did this thing. + +From the day that he charged me to be their ruler in the land of Juda, from the twentieth year even to the thirty-second year of Arthasastha, twelve years, I and my brethren ate not +provision extorted from them. + +But as for the former acts of extortion wherein +those who were before me oppressed them, they even took of them their last money, forty didrachmas for bread and wine; and the +very outcasts of them exercised authority over the people: but I did not so, because of the fear of God. + +Also in the work of the wall I treated them not with rigor, I bought not land: and all that were gathered together +came there to the work. + +And the Jews, to +the number of one hundred and fifty men, besides those coming to us from the nations round about, +were at my table. + +And there came +to me for one day one calf, and I had six choice sheep and a goat; and every ten days wine in abundance of all sorts: yet with these I required not the bread of extortion, because the bondage was heavy upon this people. + +Remember me, O God, for good, +in all that I have done to this people. + +

+ + +

Now it came to pass, when Sanaballat, and Tobias, and Gesam the Arabian, and the rest of our enemies, heard that I had built the wall, and +that there was no opening left therein; (but hitherto I had not set up the doors on the gates;) + +that Sanaballat and Gesam sent to me, saying, Come and let us meet together in the villages in the plain of Ono. But they +were plotting to do me mischief. + +So I sent messengers to them, saying, I am doing a great work, and I shall not be able to come down, lest the work should cease: as soon as I shall have finished it, I will come down to you. + +And they sent to me +again to this effect; and I sent them +word accordingly. + +Then Sanaballat sent his servant to me with an open letter in his hand. + +And in it was written, It has been reported among the Gentiles that you and the Jews are planning to revolt: therefore you are building the wall, and you will be a king to them. + +And moreover you have appointed prophets to yourself, that you might dwell in Jerusalem as a king over Juda: and now these words will be reported to the king. Now then, come, let us take counsel together. + +And I sent to him, saying, It has not happened according to these words, +even as you say, for you frame them falsely out of your heart. + +For all were trying to alarm us, saying, Their hands shall be weakened from this work, and it shall not be done. Now therefore I have strengthened my hands. + +And I came into the house of Semei the son of Dalaia the Son of Metabeel, and he was shut up; and he said, Let us assemble together in the house of God, in the midst of it, and let us shut the doors of it; for they are coming by night to kill you. + +And I said, Who is the man that shall enter into the house, that he may live? + +And I observed, and, behold, God had not sent him, for the prophecy was a fable +devised against me: + +and Tobias and Sanaballat had hired against me a multitude, that I might be frightened, and do this, and sin, and become to them an ill name, that they might reproach me. + +Remember, O God, Tobias and Sanaballat, according to these their deeds, and the prophetess Noadia, and the rest of the prophets who tried to alarm me. + +So the wall was finished on the twenty-fifth day of the +month Elul, in fifty-two days. + +And it came to pass, when all our enemies heard +of it, that all the nations round about us feared, and great alarm fell upon them, and they knew that it was of our God that this work should be finished. + +And in those days letters came to Tobias from many nobles of Juda, and those of Tobias came to them. + +For many in Juda were bound to him by oath, because he was son-in-law of Sechenias the son of Herae; and Jonan his son had taken the daughter of Mesulam the son of Barachia to wife. + +And they reported his words to me, and carried out my words to him: and Tobias sent letters to terrify me. + +

+ + +

And 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, + +that I gave charge to Ananias my brother, and Ananias the ruler of the palace, over Jerusalem: for he was a true man, and one that feared God beyond many. + +And I said to them, The gates of Jerusalem shall not be opened till sunrise; and while they are still watching, let the doors be shut, and bolted; and set watches of them that dwell in Jerusalem, +every man at his post, and +every man over against his house. + +Now the city +was wide and large; and the people +were few in it, and the houses were not built. + +And God put +it into my heart, and I gathered the nobles, and the rulers, and the people, into companies: and I found a register of the company that came up first, and I found written in it as follows: + +Now these +are the children of the country, that came up from captivity, of the number which Nabuchodonosor king of Babylon carried away, and they returned to Jerusalem and to Juda, +every man to his city; + +with Zorobabel, and Jesus, and Neemia, Azaria, and Reelma, Naemani, Mardochaeus, Balsan, Maspharath, Esdra, Boguia, Inaum, Baana, Masphar, men of the people of Israel. + +The children of Phoros, two thousand one hundred and seventy-two. + +The children of Saphatia, three hundred and seventy-two. + +The children of Era, six hundred and fifty-two. + +The children of Phaath Moab, with the children of Jesus and Joab, two thousand six hundred and eighteen. + +The children of Aelam, a thousand two hundred and fifty-four. + +The children of Zathuia, eight hundred and forty-five. + +The children of Zacchu, seven hundred and sixty. + +The children of Banui, six hundred and forty-eight. + +The children of Bebi, six hundred and twenty-eight. + +The children of Asgad, two thousand three hundred and twenty-two. + +The children of Adonicam, six hundred and sixty-seven. + +The children of Bagoi, two thousand and sixty-seven. + +The children of Edin, six hundred and fifty-five. + +The children of Ater, +the son of Ezekias, ninety-eight. + +The children of Esam, three hundred and twenty-eight. + +The children of Besei, three hundred and twenty-four. + +The children of Ariph, one hundred and twelve: the children of Asen, two hundred and twenty-three. + +The children of Gabaon, ninety-five. + +The children of Baethalem, one hundred and twenty-three: the children of Atopha, fifty-six. + +The children of Anathoth, one hundred and twenty-eight. + +The men of Bethasmoth, forty-two. + +The men of Cariatharim, Caphira, and Beroth, seven hundred and forty-three. + +The men of Arama and Gabaa, six hundred and twenty. + +The men of Machemas, one hundred and twenty-two. + +The men of Baethel and Ai, one hundred and twenty-three. + +The men of Nabia, one hundred an fifty-two. + +The men of Elamaar, one thousand two hundred and fifty-two. + +The children of Eram, three hundred and twenty. + +The children of Jericho, three hundred and forty-five. + +The children of Lodadid and Ono, seven hundred and twenty-one. + +The children of Sanana, three thousand nine hundred and thirty. + +The priests; the sons of Jodae, +pertaining to the house of Jesus, nine hundred and seventy-three. + +The children of Emmer, one thousand and fifty-two. + +The children of Phaseur, one thousand two hundred and forty-seven. + +The children of Eram, a thousand and seventeen. + +The Levites; the children of Jesus the son of Cadmiel, with the children of Uduia, seventy-four. + +The singers; the children of Asaph, one hundred and forty-eight. + +The porters; the children of Salum, the children of Ater, the children of Telmon, the children of Acub, the children of Atita, the children of Sabi, one hundred and thirty-eight. + +The Nathinim; the children of Sea, the children of Aspha, the children of Tabaoth, + +the children of Kiras, the children of Asuia, the children of Phadon, + +the children of Labana, the children of Agaba, the children of Selmei, + +the children of Anan, the children of Gadel, the children of Gaar, + +the children of Raaia, the children of Rasson, the children of Necoda, + +the children of Gezam, the children of Ozi, the children of Phese, + +the children of Besi, the children of Meinon, the children of Nephosasi, + +the children of Bacbuc, the children of Achipha, the children of Arur, + +the children of Basaloth, the children of Mida, the children of Adasan, + +the children of Barcue, the children of Sisarath, the children of Thema, + +the children of Nisia, the children of Atipha. + +The children of the servants of Solomon; the children of Sutei, the children of Sapharat, the children of Pherida, + +the children of Jelel, the children of Dorcon, the children of Gadael, + +the children of Saphatia, the children of Ettel, the children of Phacarath, the children of Sabaim, the children of Emim. + +All the Nathinim, and children of the servants of Solomon, +were three hundred and ninety-two. + +And these went up from Thelmeleth, Thelaresa, Charub, Eron, Jemer: but they could not declare the houses of their families, or their seed, whether they were of Israel. + +The children of Dalaia, the children of Tobia, the children of Necoda, six hundred and forty-two. + +And of the priests; the children of Ebia, the children of Acos, the children of Berzelli, for they took wives of the daughters of Berzelli the Galaadite, and they were called by their name. + +These sought the pedigree of their company, and it was not found, and they were removed +as polluted from the priesthood. + +And the Athersastha said, that they should not eat of the most holy things, until a priest should stand up to give light. + +And all the congregation was about forty-two thousand three hundred and sixty, + +besides their menservants and their maidservants: these were seven thousand three hundred and thirty seven: and the singing-men and singing-women, two hundred and forty-five. + +Two thousand seven hundred asses. + +And part of the heads of families gave into the treasury to Neemias for the work a thousand pieces of gold, fifty bowls, and thirty priests' +garments. + +And +some of the heads of families gave into the treasuries of the work, twenty thousand pieces of gold, and two thousand three hundred pounds of silver. + +And the rest of the people gave twenty thousand pieces of gold, and two thousand two hundred pounds of silver, and sixty-seven priests' +garments. + +And the priests, and Levites, and porters, and singers, and +some of the people, and the Nathinim, and all Israel, lived in their cities. + +

+ + +

And the seventh month arrived, and the children of Israel +were settled in their cities; and all the people were gathered as one man to the broad place before the water-gate, and they told Esdras the scribe to bring the book of the law of Moses, which the Lord commanded Israel. + +So Esdras the priest brought the law before the congregation both of men and women, and every one who had understanding +was present to listen, on the first day of the seventh month. + +And he read in it from the time of sunrise to the middle of the day, before the men and the women; and they understood +it, and the ears of all the people +were attentive to the book of the law. + +And Esdras the scribe stood on a wooden stage, and there stood next to him Mattathias, and Samaeas, and Ananias, and Urias, and Chelcia, and Massia, on his right hand; and on his left Phadaeas, and Misael, and Melchias, and Asom, and Asabadma, and Zacharias, and Mesollam. + +And Esdras opened the book before all the people, for he was above the people; and it came to pass when he had opened it, +that all the people stood. + +And Esdras blessed the Lord, the great God: and all the people answered, and said, Amen, lifting up their hands: and they bowed down and worshipped the Lord with their face to the ground. + +And Jesus and Banaias and Sarabias instructed the people in the law, and the people +stood in their place. + +And they read in the book of the law of God, and Esdras taught, and instructed them distinctly in the knowledge of the Lord, and the people understood +the law in the reading. + +And Neemias, and Esdras the priest and scribe, and the Levites, and they that instructed the people, spoke and said to all the people, It is a holy day to the Lord our God; do not mourn, nor weep. For all the people wept when they heard the words of the law. + +And +the governor said to them, Go, eat the fat, and drink the sweet, and send portions to them that have nothing; for the day is holy to our Lord: and faint not, for the Lord is our strength. + +And the Levites caused all the people to be silent, saying, Be silent, for +it is a holy day, and despond not. + +So all the people departed to eat, and to drink, and to send portions, and to make great mirth, for they understood the words which he made known to them. + +And on the second day the heads of families assembled with all the people, +also the priests and Levites, to Esdras the scribe, to attend to all the words of the law. + +And they found written in the law which the Lord commanded Moses, that the children of Israel should dwell in booths, in the feast in the seventh month: + +and that they should sound with trumpets in all their cities, and in Jerusalem. And Esdras said, Go forth to the mountain, and bring branches of olive, and branches of cypress trees, and branches of myrtle, and branches of palm trees, and branches of +every thick tree, to make booths, according to that which was written. + +And the people went forth, and brought +them, and made booths for themselves, each one upon his roof, and in their courts, and in the courts of the house of God, and in the streets of the city, and as far as the gate of Ephraim. + +And all the congregation who had returned from the captivity, made booths, and lived in booths: for the children of Israel +had not done so from the days of Jesus the son of Naue until that day: and there was great joy. + +And +Esdras read in the book of the law of God daily, from the first day even to the last day: and they kept the feast seven days; and on the eighth day a solemn assembly, according to the ordinance. + +

+ + +

Now on the twenty-fourth day of this month the children of Israel assembled with fasting, and in sackcloths, and with ashes on their head. + +And the children of Israel separated themselves from every stranger, and stood and confessed their sins, and the iniquities of their fathers. + +And they stood in their place, and read in the book of the law of the Lord their god: and they confessed +their sins to the Lord, and worshipped the Lord their God. + + +And there stood upon the stairs, of the Levites, Jesus, and the sons of Cadmiel, Sechenia the son of Sarabia, sons of Choneni; and they cried with a loud voice to the Lord their God. + +And the Levites, Jesus and Cadmiel, said, Rise up, bless the Lord our God forever and ever: and let them bless your glorious name, and exalt it with all blessing and praise. + +And Esdras said, You are the only true Lord; you made the heaven, and the heaven of heavens, and all their array, the earth, and all things that are in it, the seas, and all things in them; and you quicken all things, and the hosts of heaven worship you. + +You are the Lord God, you did choose Abram, and brought him out of the land of the Chaldeans, and gave him the name of Abraam: + +and you found his heart faithful before you, and did make a covenant with him to give to him and to his seed the land of the Chananites, and the Chettites, and Amorites, and Pherezites, and Jebusites, and Gergesites; and you have confirmed your words, for you +are righteous. + +And you saw the affliction of our fathers in Egypt, and you heard their cry at the Red Sea. + +And you showed signs and wonders in Egypt, on Pharao and all his servants, and on all the people of his land: for you know that they behaved insolently against them: and you made yourself a name, as at this day. + +And you did cleave the sea before them, and they passed through the midst of the sea on dry land; and you did cast into the deep them that were about to pursue them, as a stone in the mighty water. + +And you guided them by day by a pillar of cloud, and by night by a pillar of fire, to enlighten for them the way wherein they should walk. + +Also you came down upon mount Sina, and you spoke to them out of heaven, and gave them right judgments, and laws of truth, ordinances, and good commandments. + +And you did make known to them your holy sabbath; you did enjoin upon them commandments, and ordinances, and a law, by the hand of your servant Moses. + +And you gave them bread from heaven for their food, and you brought them forth water from a rock for their thirst; and you bade them go in to inherit the land over which you stretched out your hand to give +it them. + +But they and our fathers behaved proudly, and hardened their neck, and did not listen to your commandments, + +and refused to listen, and remembered not your wonders which you wrought with them; and they hardened their neck, and appointed a leader to return to their slavery in Egypt: but you, O God, +are merciful and compassionate, longsuffering, and abundant in mercy, and you did not forsake them. + +And still farther they even made to themselves a molten calf, and said, These +are the gods that brought us up out of Egypt: and they wrought great provocations. + +Yet you in your great compassions did not forsake them in the wilderness: you did not turn away from them the pillar of the cloud by day, to guide them in the way, nor the pillar of fire by night, to enlighten for them the way wherein they should walk. + +And you gave your good Spirit to instruct them, and you did not withhold your manna from their mouth, and gave them water in their thirst. + +And you did sustain them forty years in the wilderness; you did not allow anything to fail them: their garments did not wax old, and their feet were not bruised. + +Moreover, you gave them kingdoms, and did divide nations to them: and they inherited the land of Seon king of Esebon, and the land of Og king of Basan. + +And you did multiply their children as the stars of heaven, and brought them into the land of which you spoke to their fathers; + +And they inherited it: and you did destroy from before them the dwellers in the land of the Chananites, and you gave into their hands them and their kings, and the nations of the land, to do to them as it pleased them. + +And they took lofty cities, and inherited houses full of all good things, wells dug, vineyards, and olive yards, and every fruit tree in abundance: so they ate, and were filled, and grew fat, and rioted in your great goodness. + +But they turned, and revolted from you, and cast your law behind their backs; and they killed your prophets, who testified against them to turn them back to you, and they wrought great provocations. + +Then you gave them into the hand of them that afflicted them, and they did afflict them: and they cried to you in the time of their affliction, and you did hear them from your heaven, and in your great compassions gave them deliverers, and did save them from the hand of them that afflicted them. + +But when they rested, they did evil again before you: so you left them in the hands of their enemies, and they ruled over them: and they cried again to you, and you heard +them from heaven, and did deliver them in your great compassions. + +And you did testify against them, to bring them back to your law: but they listened not, but sinned against your commandments and your judgments, which if a man do, he shall live in them; and they turned their back, and hardened their neck, and heard not. + +Yet you did bear long with them many years, and did testify to them by your Spirit by the hand of your prophets: but they listened not; so you gave them into the hand of the nations of the land. + +But you in your many mercies did not appoint them to destruction, and did not forsake them; for you are strong, and merciful, and pitiful. + +And now, O our God, the powerful, the great, the mighty, and the terrible, keeping your covenant and your mercy, let not all the trouble seem little in your sight which has come upon us, and our kings, and our princes, and our priests, and our prophets, and our fathers, and upon all your people, from the days of the kings of Assur even to this day. + +But you +are righteous in all the things that come upon us; for you have wrought faithfully, but we have greatly sinned. + +And our kings, and our princes, and our priests, and our fathers, have not performed your law, and have not given heed to your commandments, and +have not kept your testimonies which you did testify to them. + +And they did not serve you in your kingdom, and in your great goodness which you gave to them, and in the large and fat land which you did furnish before them, and they turned not from their evil devices. + +Behold, we are servants this day, and +as for the land which you gave to our fathers to eat the fruit of it and the good things of it, behold, we are servants upon it: + +and its produce +is abundant for the kings whom you did appoint over us because of our sins; and they have dominion over our bodies, and over our cattle, as it pleases them, and we are in great affliction. + +And in regard to all these circumstances we make a covenant, and write +it, and our princes, our Levites, +and our priests, set their seal to +it. + +

+ + +

And over them that sealed were Neemias the Artasastha, son of Achalia, and Zedekias, + +the son of Araea, and Azaria, and Jeremia, + +Phasur, Amaria, Melchia, + +Attus, Sebani, Maluch, + +Iram, Meramoth, Abdia, + +Daniel, Gannathon, Baruch, + +Mesulam, Abia, Miamin, + +Maazia, Belgai, Samaia; these +were priests. + +And the Levites; Jesus the son of Azania, Banaiu of the sons of Enadad, Cadmiel + +and his brethren, Sabania, Oduia, Calitan, Phelia, Anan, + +Micha, Roob, Asebias, + +Zacchor, Sarabia, Sebania, + +Odum, the sons of Banuae. + +The heads of the people; Phoros, Phaath Moab, Elam, Zathuia, + +the sons of Bani, Asgad, Bebai, + +Adania, Bagoi, Hedin + +Ater, Ezekia, Azur, + +Oduia, Esam, Besi, + +Ariph, Anathoth, Nobai, + +Megaphes, Mesullam, Ezir, + +Mesozebel, Saduc, Jeddua, + +Phaltia, Anan, Anaea, + +Osee, Anania, Asub, + +Aloes, Phalai, Sobec, + +Reum, Essabana, Maasia, + +and Aia, Aenan, Enam, + +Maluch, Eram, Baana. + +And the rest of the people, the priests, the Levites, the porters, the singers, the Nathinim, and every one who drew off from the nations of the land to the law of God, their wives, their sons, their daughters, every one who had knowledge and understanding, + +were urgent with their brethren, and bound them under a curse, and entered into a curse, and into an oath, to walk in the law of God, which was given by the hand of Moses, the servant of God; to keep and to do all the commandments of the Lord, and his judgments, and his ordinances; + +and that we will not, +they said, +give our daughters to the people of the land, nor will we take their daughters to our sons. + +And +as for the people of the land who bring wares and all +manner of merchandise to sell on the sabbath-day, we +will not buy of them on the sabbath or on the holy day: and we will leave the seventh year, and the exaction of every debt. + +And we will impose ordinances upon ourselves, to levy on ourselves the third part of a didrachm yearly for the service of the house of our God; + +the show bread, and the continual meat-offering, and for the continual whole burnt offering, of the sabbaths, of the new moon, for the feast, and for the holy things, and the sin-offerings, to make atonement for Israel, and for the works of the house of our God. + +And we cast lots for the office of wood-bearing, +we the priests, and the Levites, and the people, to bring +wood into the house of our God, according to the house of our families, at certain set times, year by year, to burn on the altar of the Lord our God, as it is written in the law: + +and to bring the first fruits of our land, and the first fruits of the fruit of every tree, year by year, into the house of the Lord: + +the firstborn of our sons, and of our cattle, as it is written in the law, and the firstborn of our herds and of our flocks, to bring to the house of our God, for the priests that minister in the house of our God. + +And the first fruits of our corn, and the fruit of every tree, of wine, and of oil, will we bring to the priests to the treasury of the house of God; and a tithe of our land to the Levites: for the Levites themselves shall receive tithes in all the cities of the land we cultivate. + +And the priest the son of Aaron shall be with the Levites in the tithe of the Levite: and the Levites shall bring up the tenth part of +their tithe to the house of our God, into the treasuries of the house of God. + +For the children of Israel and the children of Levi shall bring into the treasuries the first fruits of the corn, and wine, and oil; and there +are the holy vessels, and the priests, and the ministers, and the porters, and the singers: and we will not forsake the house of our God. + +

+ + +

And the chiefs of the people lived in Jerusalem: and the rest of the people cast lots, to bring one of +every ten to dwell in Jerusalem the holy city, and nine parts in the +other cities. + +And the people blessed all the men that volunteered to dwell in Jerusalem. + +Now these +are the chiefs of the province who lived in Jerusalem, and in the cities of Juda; +every man lived in his possession in their cities: Israel, the priests, and the Levites, and the Nathinim, and the children of the servants of Solomon. + +And there lived in Jerusalem +some of the children of Juda, and of the children of Benjamin. Of the children of Juda; Athaia son of Azia, the son of Zacharia, the son of Samaria, the son of Saphatia, the son of Maleleel, and +some of the sons of Phares; + +and Maasia son of Baruch, son of Chalaza, son of Ozia, son of Adaia, son of Joarib, son of Zacharias, son of Seloni. + +All the sons of Phares who lived in Jerusalem +were four hundred and sixty-eight men of might. + +And these +were the children of Benjamin; Selo son of Mesulam, son of Joad, son of Phadaia, son of Coleia, son of Maasias, son of Ethiel, son of Jesia. + +And after him Gebe, Seli, nine hundred and twenty-eight. + +And Joel son of Zechri +was overseer over them: and Juda son of Asana was second in the city. + +Of the priests: both Jadia son of Joarib, and Jachin. + +Saraia, son of Elchia, son of Mesulam, son of Sadduc, son of Marioth, son of Aetoth, was over the house of God. + +And their brethren doing the work of the house were eight hundred and twenty-two: and Adaia son of Jeroam, son of Phalalia, son of Amasi, son of Zacharia, son of Phassur, son of Melchia, + +and his brethren, chiefs of families, two hundred and forty-two: and Amasia son of Esdriel, son of Mesarimith, son of Emmer, + +and his brethren, mighty men of war, one hundred and twenty-eight: and +their overseer +was Badiel son of +one of the great men. + +And of the Levites; Samaia, son of Esricam, + +Matthanias son of Micha, and Jobeb son of Samui, + +two hundred and eighty-four. + +And the porters; Acub, Telamin, and their brethren, one hundred and seventy-two. + +And the overseer of the Levites +was the son of Bani, son of Ozi, son of Asabia, the son of Micha. Of the sons of Asaph the singers +some were over the house of God, + +For so was the king's commandment concerning them. + +And Phathaia son of Baseza was in attendance on the king in every matter for the people, + +and with regard to villages in their country district: and +some of the children of Juda lived in Cariatharboc, + +and in Jesu, + +and in Bersabee: + +And their villages +were Lachis and her hands: and they pitched their tents in Bersabee. + +And the children of Benjamin +lived from Gabaa +to Machmas. + +And of the Levites there were divisions to Juda +and to Benjamin. + +

+ + +

Now these +are the priests and the Levites that went up with Zorobabel the son of Salathiel and Jesus: Saraia, Jeremia, Esdra, + +Amaria, Maluch, + +Sechenia. + +These +were the chiefs of the priests, and their brethren in the days of Jesus. + +And the Levites +were, Jesus, Banui, Cadmiel, Sarabia, Jodae, Matthania: he +was over the bands, + +and his brethren +were appointed to the daily courses. + +And Jesus begot Joakim, and Joakim begot Eliasib, and Eliasib +begot Jodae, + +and Jodae begot Jonathan, and Jonathan begot Jadu. + +And in the days of Joakim, his brethren the priests and the heads of families +were, belonging to Saraia, Amaria; to Jeremia, Anania; + +to Esdra, Mesulam; to Amaria, Joanan; + +to Amaluch, Jonathan; to Sechenia, Joseph; + +to Are, Mannas; to Marioth, Elcai; + +to Adadai, Zacharia; to Ganathoth, Mesolam; + +to Abia, Zechri; to Miamin, Maadai; to Pheleti, +one; + +to Balgas, Samue; to Semia, Jonathan; + +to Joarib, Matthanai; to Edio, Ozi; + +to Salai, Callai; to Amec, Abed; + +to Elkia, Asabias; to Jedeiu, Nathanael. + +The Levites in the days of Eliasib, Joada, and Joa, and Joanan, and Idua, +were recorded heads of families: also the priests, in the reign of Darius the Persian. + +And the sons of Levi, heads of families, +were written in the book of the chronicles, even to the days of Joanan son of Elisue. + +And the heads of the Levites +were Asabia, and Sarabia, and Jesu: and the sons of Cadmiel, and their brethren over against them, were to sing hymns of praise, according to the commandment of David the man of God, course by course. + +When I gathered the porters, + + +it was in the days of Joakim son of Jesus, son of Josedec, and in the days of Neemia: and Esdras the priest +was scribe. + +And at the dedication of the wall of Jerusalem they sought the Levites in their places, to bring them to Jerusalem, to keep a feast of dedication and gladness with thanksgiving, and they sounded cymbals with songs, and +had lutes and harps. + +And the sons of the singers were assembled both from the neighbourhood round about to Jerusalem, and from the villages, + +and from the country: for the singers built themselves villages by Jerusalem. + +And the priests and the Levites purified themselves, and they purified the people, and the porters, and the wall. + +And they brought up the princes of Juda on the wall, and they appointed two great +companies for thanksgiving, and they passed on the right hand on the wall of the dung-gate. + +And after them went Osaia, and half the princes of Juda, + +and Azarias, and Esdras, and Mesollam, + +and Juda, and Benjamin, and Samaias and Jeremia. + +And +some of the sons of the priest with trumpets, Zacharias son of Jonathan, son of Samaias, son of Matthania, son of Michaia, son of Zacchur, son of Asaph: + +and his brethren, Samaia, and Oziel, Gelol, Jama, Aia, Nathanael, and Juda, Anani, to praise with the hymns of David the man of God; and Esdras the scribe +was before them, + +at the gate, to praise before them, and they went up by the steps of the city of David, in the ascent of the wall, above the house of David, even to the water-gate + +of Ephraim, and to the fish-gate, and by the tower of Anameel, and as far as the sheep-gate. + +And the singers were heard, and were numbered. + +And in that day they offered great sacrifices, and rejoiced; for God had made them very joyful: and their wives and their children rejoiced: and the joy in Jerusalem was heard from afar off. + +And in that day they appointed men over the treasuries, for the treasures, the first fruits, and the tithes, and +for the chiefs of the cities who were assembled among them, +to furnish portions for the priests and Levites: for +there was joy in Juda over the priests and over the Levites that waited. + +And they kept the charges of their God, and the charges of the purification, and +ordered the singers and the porters, according to the commandments of David and his son Solomon. + +For in the days of David Asaph was originally first of the singers, and +they sang hymns and praise to God. + +And all Israel in the days of Zorobabel, and in the days of Neemias, gave the portions of the singers and the porters, a daily rate: and consecrated them to the Levites: and the Levites consecrated them to the sons of Aaron. + +

+ + +

In that day they read in the book of Moses in the ears of the people; and it was found written in it, that the Ammonites and Moabites should not enter into the congregation of God for ever; + +because they met not the children of Israel with bread and water, but hired Balaam against them to curse them: but our God turned the curse into a blessing. + +And it came to pass, when they heard the law, that they were separated, +even every alien in Israel. + +And before this time Eliasib the priest lived in the treasury of the house of our God, connected with Tobias; + +and he made himself a great treasury, and there they were formerly in the habit of bestowing the offerings, and the frankincense, and the vessels, and the tithe of the corn, and the wine, and the oil, the ordered portion of the Levites, and singers, and porters; and the first fruits of the priests. + +But in all this +time I was not in Jerusalem; for in the thirty-second year of Arthasastha king of Babylon I came to the king, and after a certain time I made my request of the king; + +and I came to Jerusalem, and I understood the mischief which Eliasib had done in the case of Tobias, in making for him a treasury in the court of the house of God. + +And it appeared very evil to me: so I cast forth all the furniture of the house of Tobias from the treasury. + +And I gave orders, and they purified the treasuries: and I restored there the vessels of the house of God, +and the offerings, and the frankincense. + +And I understood that the portion of the Levites had not been given: and they had fled every one to his field, the Levites and the singers doing the work. + +And I strove with the commanders, and said, Therefore has the house of God been abandoned? and I assembled them, and set them in their place. + +And all Juda brought a tithe of the wheat and the wine and the oil into the treasuries, + +to the charge of Selemia the priest, and Sadoc the scribe, and Phadaea of the Levites: and next to them +was Anan the son of Zacchur, son of Matthanias; for they were accounted faithful: +it was their office to distribute to their brethren. + +Remember me, O God, in this, and let not my kindness be forgotten which I have wrought in +regard to the house of the Lord God. + +In those days I saw in Juda +men treading wine presses on the sabbath, and carrying sheaves, and loading asses with both wine, and grapes, and figs, and every +kind of burden, and bringing them into Jerusalem on the sabbath-day: + +and I testified in the day of their sale. Also their lived in it +men bringing fish, and selling every +kind of merchandise to the children of Juda and in Jerusalem on the sabbath. + +And I strove with the free children of Juda, and said to them, What +is this evil thing which you⌃ do, and profane the sabbath-day? + +Did not your fathers thus, and our God brought upon them and upon us and upon this city all these evils? and do you⌃ bring additional wrath upon Israel by profaning the sabbath? + +And it came to pass, when the gates were set up in Jerusalem, before the sabbath, that I spoke, and they shut the gates; and I gave orders that they should not be opened till after the sabbath: and I set +some of my servants at the gates, that none should bring +in burdens on the sabbath-day. + +So all +the merchants lodged, and carried on traffic without Jerusalem once or twice. + +Then I testified against them, and said to them, Why do you⌃ lodge in front of the wall? if you⌃ do so again, I will stretch out my hand upon you. From that time they came not on the sabbath. + +and I told the Levites who were purifying themselves, and came and kept the gates, that they should sanctify the sabbath-day. Remember me, O God, for these things, and spare me according to the abundance of your mercy. + +And in those days I saw the Jews who had married women of Ashdod, of Ammon, +and of Moab: + +and their children spoke half in the language of Ashdod, and did not know how to speak in the Jewish language. + +And I strove with them and cursed them; and I struck some of them, and plucked off their hair, and made them swear by God, +saying, +You⌃ shall not give your daughters to their sons, and you⌃ shall not take of their daughters to your sons. + +Did not Solomon king of Israel sin thus? though there was no king like him among many nations, and he was beloved of God, and God made him king over all Israel; yet strange women turned him aside. + +So we will not listen to you to do all this evil, to break covenant with our God, —to marry strange wives. + +and Elisub the high priest, +one of the sons of Joada, +being son-in-law of Sanaballat the Uranite, I chased him away from me. + +Remember them, O God, for their +false connection with the priesthood, and +the breaking the covenant of the priesthood, and +for defiling the Levites. + +So I purged them from all foreign connection, and established courses for the priests and the Levites, +every man according to his work. + +And the offering of the wood-bearers +was at certain set times, and in the +times of the first fruits. Remember me, O our God, for good. + +

+
+ +Esther +ESTHER +Esther +EST +

ESTHER +

+ + +

[In the second year of the reign of Artaxerxes the great king, on the first +day of Nisan, Mardochaeus the +son of Jarius, the +son of Semeias, the +son of Cisaus, of the tribe of Benjamine, a Jew dwelling in the city Susa, a great man, serving in the king's palace, saw a vision. Now he was of the captivity which Nabuchodonosor king of Babylon had carried captive from Jerusalem, with Jachonias the king of Judea. And this was his dream: Behold, voices and a noise, thunders and earthquake, tumult upon the earth. And, behold, two great serpents came forth, both ready for conflict, and there came from them a great voice, and by their voice every nation was prepared for battle, even to fight against the nation of the just. And, behold, a day of darkness and blackness, tribulation and anguish, affection and tumult upon the earth. And all the righteous nation was troubled, fearing their own afflictions; and they prepared to die, and cried to God: and from their cry there came as it were a great river from a little fountain, +even much water. And light and the sun arose, and the lowly were exalted, and devoured the honorable. And Mardochaeus who had seen this vision and what God desired to do, having +1:1 +Or, +arisen. + awoke, kept it in his heart, and desired by all means to interpret it, even till night. And Mardochaeus rested quiet in the palace with Gabatha and Tharrha the king's two chamberlains, eunuchs who guarded the palace. And he heard their reasoning and searched out their plans, and learned that they were preparing to lay hands on king Artaxerxes: and he informed the king concerning them. And the king examined the two chamberlains, and they confessed, and were +1:1 +Lit +led away, see Acts 12:19. + executed. And the king wrote these things for a memorial: also Mardochaeus wrote concerning these matters. And the king commanded Mardochaeus to attend in the palace, and gave gifts for this service. And Aman the son of Amadathes the Bugean was honorable in the sight of the king, and he endeavored to hurt Mardochaeus and his people, because of the two chamberlains of the king.] +1:1 +Note. - +In the +Heb. +and some copies of LXX, Esther begins here. + And it came to pass after these +1:1 +Gr. +words. + things in the days of Artaxerxes, —(this Artaxerxes ruled over one hundred and twenty-seven provinces from India)— + +in those days, when king Artaxerxes was on the throne in the city of Susa, + +in the third year of his reign, he made a feast to his friends, and the other nations, and to the nobles of the Persians and Medes, and the chief of the satraps. + +And after this, after he had shown to them the wealth of his kingdom, and the abundant glory of his wealth during one hundred and eighty days, + +when, +I say, the days of the marriage feast were completed, the king made a banquet to the nations who were present in the city six days, in the court of the king's house, + + +which was adorned with +hangings of fine linen and flax on cords of fine linen and purple, fastened to golden and silver studs, on pillars of Parian marble and stone: +there were golden and silver couches on a pavement of emerald stone, and of pearl, and of Parian stone, +1:6 +Lit. +transparent. + and open-worked coverings variously flowered, +having roses worked round about; + +gold and silver cups, and a small cup of carbuncle set out of the value of thirty thousand talents, abundant and sweet wine, which the king himself drank. + +And this banquet was not according to the appointed law; but so the king would have it: and he charged the stewards to perform his will and that of the company. + +Also Astin the queen made a banquet for the women in the palace where king Artaxerxes +lived. + +Now on the seventh day the king, being merry, told Aman, and Bazan, and Tharrha, and Barazi, and Zatholtha, and Abataza, and Tharaba, the seven chamberlains, servants of king Artaxerxes, + +to bring in the queen to him, to +1:11 +Gr. +to make her queen. + enthrone her, and crown her with the diadem, and to show her to the princes, and her beauty to the nations: for she was beautiful. + +But queen Astin listened not to him to come with the chamberlains: so the king was grieved and angered. + +And he said to his friends, Thus have Astin spoken: pronounce therefore upon this +case law and judgment. + +So Arkesaeus, and Sarsathaeus, and Malisear, the princes of the Persians and Medes, who were near the king, who sat chief +in rank by the king, drew near to him, + +and reported to him according to the laws how it was proper to do to queen Astin, because she had not done the things commanded of the king by the chamberlains. + +And Muchaeus said to the king and to the princes, Queen Astin has not wronged the king only, but also all the king's rulers and princes: + +for he has told them the words of the queen, and how she +1:17 +Gr. +contradicted. + disobeyed the king. As then, +said he, she refused +to obey king Artaxerxes, + +so this day shall the other ladies of the chiefs of the Persians and Medes, having heard what she said to the king, dare in the same way to dishonor their husbands. + +If then it seem good to the king, let him make a royal decree, and let it be written according to the laws of the Medes and Persians, and let him not alter +it: and let not the queen come in to him any more; and let the king give her royalty to a woman better than she. + +And let the law of the king which he shall have made, be widely proclaimed, in his kingdom: and so shall all the women give honor to their husbands, from the poor even to the rich. + +And the saying pleased the king and the princes; and the king did as Muchaeus had said, + +and sent into all his kingdom through the several provinces, according to their language, +1:22 +Gr. +that there might be fear to them, etc. + in order that men might be feared in their own houses. + +

+ + +

And after this the king's anger was pacified, and he no more mentioned Astin, bearing in mind what she had said, and how he had condemned her. + +Then the servants of the king said, Let there be sought for the king chaste +and beautiful young virgins. + +And let the king appoint local governors in all the provinces of his kingdom, and let them select fair +and chaste young damsels +and bring them to the city Susa, into the women's apartment, and let them be consigned to the king's chamberlain, the keeper of the women; and let things for purification and other attendance be given +to them. + +And let the woman who shall please the king be queen instead of Astin. And the thing pleased the king; and he did so. + +Now there was a Jew in the city Susa, and his name was Mardochaeus, the +son of Jairus, +the son of Semeias, +the son of Cisaeus, of the tribe of Benjamin; + +who had been brought a prisoner from Jerusalem, which Nabuchodonosor king of Babylon had carried into captivity. + +And he had a foster child, daughter of Aminadab his father's brother, and her name +was Esther; and when her parents were dead, he brought her up for a wife for himself: and the damsel was beautiful. + +And because the king's ordinance was published, many damsels were gathered to the city Susa under the hand of Gai; and Esther was brought to Gai the keeper of the women. + +And the damsel pleased him, and she found favor in his sight; and he hasted to give her the things for purification, and her portion, and the seven maidens appointed her out of the palace: and he treated her and her maidens well in the women's apartment. + +But Esther did not reveal her family nor her kindred: for Mardochaeus had charged her not to tell. + +But Mardochaeus used to walk every day by the women's court, to see what would become of Esther. + +Now this was the time for a virgin to go into the king, when she should have fulfilled twelve months; for so are the days of purification fulfilled, six months while they are anointing themselves with oil of myrrh, and six months with spices and women's purifications. + +And then +the damsel goes in to the king; and +the officer to whoever he shall give the command, will bring her to come in with him from the women's apartment to the king's chamber. + +She enters in the evening, and in the morning she departs to the second women's apartment, where Gai the king's chamberlain +is keeper of the women: and she goes not in to the king again, unless she should be called by name. + +And when the time. was fulfilled for Esther the daughter of Aminadab the brother of Mardochaeus' father to go in to the king, she neglected nothing which the chamberlain, the women's keeper, commanded; for Esther found grace in the sight of all that looked upon her. + +So Esther went in to king Artaxerxes in the twelfth month, which is Adar, in the seventh year of his reign. + +And the king loved Esther, and she found favor beyond all the +other virgins: and he put on her the queen's crown. + +And the king made a banquet for all his friends and great men for seven days, and he highly celebrated the marriage of Esther; and he made a release to those who were under his dominion. + +But Mardochaeus served in the palace. + +Now Esther had not revealed her +2:20 +Gr. +country. + kindred; for so Mardochaeus commanded her, to fear God, and perform his commandments, as when she was with him: and Esther changed not her manner of life. + +And two chamberlains of the king, the chiefs of the body-guard, were grieved, because Mardochaeus was promoted; and they sought to kill king Artaxerxes. + +And the matter was revealed to Mardochaeus, and he made it known to Esther, and she declared to the king the matter of the conspiracy. + +And the king examined the two chamberlains, and hanged them: and the king gave orders to make a note for a memorial in the royal +2:23 +Gr. +library. + records of the good offices of Mardochaeus, as a commendation. + +

+ + +

And after this king Artaxerxes highly honored Aman +son of Amadathes, the Bugaean, and exalted him, and set his seat above all his friends. + +And all in the palace did him obeisance, for so the king had given orders to do: but Mardochaeus did not do him obeisance. + +And they in the king's palace said to Mardochaeus, Mardochaeus, why do you transgress the commands of the king? + + +Thus they spoke daily to him, but he listened not to them; so they represented to Aman that Mardochaeus resisted the commands of the king: and Mardochaeus had shown to them that he was a Jew. + +And when Aman understood that Mardochaeus did not obeisance to him, he was greatly enraged, + +and took counsel to destroy utterly all the Jews who were under the rule of Artaxerxes. + +And he made a +3:7 +Gr. +vote by ballot. + decree in the twelfth year of the reign of Artaxerxes, and cast lots daily and monthly, to kill in one day the race of Mardochaeus: and the lot fell on the fourteenth +day of the month which is Adar. + +And he spoke to king Artaxerxes, saying, There is a nation scattered among the nations in all your kingdom, and their laws differ from +those of all the +other nations; and they disobey the laws of the king; and it is not expedient for the king to let them alone. + +If it seem good to the king, let him make a decree to destroy them: and I will remit into the king's treasury ten thousand talents of silver. + +And the king took off his ring, and gave it into the hands of Aman, to seal the decrees against the Jews. + +And the king said to Aman, Keep the silver, and treat the nation as you will. + +So the king's recorders were called in the first month, on the thirteenth +day, and they wrote as Aman commanded to the captains and governors in every province, from India even to Ethiopia, to one hundred and twenty-seven provinces; and to the rulers of the nations according to their +several languages, in the name of king Artaxerxes. + +And +the message was sent by posts throughout the kingdom of Artaxerxes, to destroy utterly the race of the Jews on the first day of the twelfth month, which is Adar, and to plunder their goods. +3:13 +Note. - +The part in brackets is not in +Heb. [And the following is the copy of the letter; The great king Artaxerxes writes thus to the rulers and inferior governors of one hundred and twenty-seven provinces, from India even to Ethiopia, who hold authority under +him. Ruling over many nations and having obtained dominion over the whole world, I was minded (not elated by the confidence of power, but ever conducting +myself with great moderation and gentleness) to make the lives of +my subjects continually tranquil, desiring both to maintain the kingdom quiet and orderly to +its utmost limits, and to restore the peace desired by all men. But when I had enquired of my counselors how this should be brought to pass. Aman, who excels in soundness of judgment among us, and has been manifestly well inclined without wavering and with unshaken fidelity, and had obtained the second post in the kingdom, informed us that a certain ill-disposed people is mixed up with all the tribes throughout the world, opposed in their law to every +other nation, and continually neglecting the commands of the king, so that the united government blamelessly administered by us is not quietly established. Having then conceived that this nation +alone of all others is continually set in opposition to every man, introducing as a change a foreign code of laws, and injuriously plotting to accomplish the worst of evils against our interests, and against the happy establishment of the monarchy; we signified to you in the letter written by Aman, who is set over +the public affairs and is our second governor, to destroy them all utterly with their wives and children by the swords of the enemies, without pitying or sparing any, on the fourteenth day of the twelfth month Adar, of the present year; that the people aforetime and now ill-disposed +to us having been violently consigned to death in one day, may hereafter secure to us continually a well constituted and quiet +state of affairs.] + + +And the copies of the letters were published in every province; and an order was given to all the nations to be ready against that day. + +And the business was hastened, and +that at Susa: and the king and Aman began to drink; but the city was troubled. + +

+ + +

But Mardochaeus having perceived what was done, tore his garments, and put on sackcloth, and sprinkled dust upon himself; and having rushed forth through the open street of the city, he cried with a loud voice, A nation that has done no wrong is going to be destroyed. + +And he came to the king's gate, and stood; for it was not lawful for him to enter into the palace, wearing sackcloth and ashes. + +And in every province where the letters were published, +there was crying and lamentation and great mourning on the part of the Jews: they spread for themselves sackcloth and ashes. + +And the queen's maids and chamberlains went in and told her: and when she had heard what was done, she was disturbed; and she sent to clothe Mardochaeus, and take away his sackcloth; but he consented not. + +So Esther called for her chamberlain Achrathaeus, who waited upon her; and she sent to learn the truth from Mardochaeus. + +And Mardochaeus showed him what was done, and the promise which Aman had made the king of ten thousand talents +to be paid into the treasury, that he might destroy the Jews. + +And he gave him the copy +of the writing that was published in Susa concerning their destruction, to show to Esther; and told him to charge her to go in and entreat the king, and to beg him for the people, remembering, +said he, the days of your low estate, how you were nursed by my hand: because Aman who holds the next place to the king has spoken against us for death. Do you call upon the Lord, and speak to the king concerning us, to deliver us from death. + +So Achrathaeus went in and told her all these words. + +And Esther said to Achrathaeus, Go to Mardochaeus, and say, + +All the nations of the empire know, that whoever, man or woman, shall go in to the king into the inner court uncalled, that person can’t live: only to whoever the king shall stretch out +his golden sceptre, he shall live: and I have not been called to go into the king, for these thirty days. + +And Achrathaeus reported to Mardochaeus all the words of Esther. + +Then Mardochaeus said to Achrathaeus, Go, and say to her, Esther, say not to yourself that you alone will escape in the kingdom, more than all the +other Jews. + +For if you shall refuse to listen on this occasion, help and protection will be to the Jews from another quarter; but you and your father's house will perish: and who knows, if you have been made queen for this +very occasion? + +And Esther sent the +man that came to her to Mardochaeus, saying, + +Go and assemble the Jews that are in Susa, and fast you⌃ for me, and eat not and drink not for three days, night and day: and I also and my maidens will fast; and then I will go in to the king contrary to the law, even if I must die. + +So Mardochaeus went and did all that Esther commanded him. +4:17 +Note. - +The part between brackets, +i.e. +to the end of chap. +iv. +is not in the +Heb. [And he implored the Lord, making mention of all the works of the Lord; and he said, Lord +4:17 +See 3 Kings 8:53. +Note. God, king ruling over all, for all things are in your power, and there is no one that shall oppose you, in your purpose to save Israel. - For you have made the heaven and the earth and every wonderful thing in the +world under heaven. And you are Lord of all, and there is no one who shall resist you Lord. You know all things: you know, Lord, that it is not in insolence, nor haughtiness, nor love of glory, that I have done this, to refuse obeisance to the haughty Aman. For I would gladly have kissed the soles of his feet for the safety of Israel. But I have done this, that I might not set the glory of man above the glory of God: and I will not worship any one except you, my Lord, and I will not do these things in haughtiness. And now, O Lord God, the King, the God of Abraam, spare your people, for +our enemies are looking upon us to +our destruction, and they have desired to destroy your ancient inheritance. Do not overlook your +4:17 +Gr. +portion. + peculiar people, whom you have redeemed for yourself out of the land of Egypt. Listen to my prayer, and be propitious to your inheritance, and turn our mourning into gladness, that we may live and sing praise to your name, O Lord; and do not utterly destroy the mouth of them that praise you, O Lord. And all Israel cried with +all their might, for death +was before their eyes. And queen Esther betook herself for refuge to the Lord, being taken +as it were in the agony of death. And having taken off her glorious apparel, she put on garments of distress and mourning; and instead of grand perfumes she filled her head with ashes and dung, and she greatly brought down her body, and she filled every place of her glad adorning with the +torn curls of her hair. And she implored the Lord God of Israel, and said, O my Lord, you alone are our king: help me +who am destitute, and have no helper but you, for my danger +is +4:17 +Gr. +in my hand. + near at hand. I have heard from my birth, in the tribe of my kindred that you, Lord, took Israel out of all the nations, and our fathers out of all their kindred for a perpetual inheritance, and have wrought for them all that you have said. And now we have sinned before you, and you have delivered us into the hands of our enemies, because we honored their gods: you are righteous, O Lord. But now they have not been contented with the bitterness of our slavery, but have laid their hands on the hands of their idols, +in order to abolish the decree of your mouth, and utterly to destroy your inheritances, and to stop the mouth of them that praise you, and to extinguish the glory of your house and your altar, and to open the mouth of the Gentiles to +speak the +4:17 +Gr. +virtues. + praises of vanities, and +in order that a mortal king should be admired for ever. O Lord, do not resign your sceptre to them that are not, and let them not laugh at our fall, but turn their counsel against themselves, and make an example of him who has +4:17 +Gr. +begun against us. + begun +to injure us. Remember +us, O Lord, manifest yourself in the time of our affliction, and encourage me, O King of gods, and ruler of all dominion. Put harmonious speech into my mouth before the lion, and turn his heart to hate him that fights against us, to the utter destruction of him that consent with him. But deliver us by your hand, and help me +who am destitute, and have none but the, O Lord. You know all things, and know that I hate the +4:17 +Or, +opinion. + glory of transgressors, and that I abhor the couch of the uncircumcised, and of every stranger. You know my necessity, for I abhor the symbol of my proud station, which is upon my head in the days of my +4:17 +Gr. +vision. +q. d. +quo die +spectanda + fui. + splendor: I abhor it as a menstruous cloth, and I wear it not in the days of my tranquility. And your handmaid has not eaten +at the table of Aman, and I have not honored the banquet of the king, neither have I drunk wine of libations. Neither has your handmaid rejoiced since the day of my promotion until now, except in you, O Lord God of Abraam. O god, who has power over all, listen to the voice of the desperate, and deliver us from the hand of them that devise mischief; and deliver me from my fear.] + +

+ + +

+5:1 +From the first verse to the third, theGr. +widely differs from the +Heb. And it came to pass on the third day, when she had ceased praying, that she put off her mean dress, and put on her glorious apparel. And being splendidly arrayed, +and having called upon God the Overseer and Preserver of all things, she took her two maids, and she leaned upon one, as a delicate female, and the other followed bearing her train. And she +was blooming in the perfection of her beauty; and her face +was cheerful, and +it were benevolent, but her heart +was straitened for fear. And having passed through all the doors, she stood before the king: and he was sitting upon his royal throne, and he had put on all his glorious apparel, +covered all over with gold and precious stones, and was very terrible. And having raised his face resplendent with glory, he looked with intense anger: and the queen fell, and changed her color as she fainted; and she bowed herself upon the head of the maid that went before +her. But God changed the spirit of the king to gentleness, and in intense feeling he sprang from off his throne, and took her into his arms, until she recovered: and he comforted her with peaceful words, and said to her, What is +the matter, Esther? I +am your brother; be of good cheer, you shall not die, for our command is openly declared +to you, Draw near. + +And having raised the golden sceptre he laid it upon her neck, and embraced her, and said, Speak to me. And she said to him, I saw you, +my lord, as an angel of God, and my heart was troubled for fear of your glory; for you, +my lord, are to be wondered at, and your face +is full of grace. And while she was speaking, she fainted and fell. Then the king was troubled, and all his servants comforted her. + +And the king said, What will you, Esther? and what is your request? +ask even to the half of my kingdom, and it shall be yours. + +And Esther said, To-day is my great day: if then it seem good to the king, let both him and Aman come to the feast which I will prepare this day. + +And the king said, Hasten Aman hither, that we may perform the word of Esther. So they both come to the feast of which Esther had spoken. + +And at the banquet the king said to Esther, What is +your request, queen Esther? +speak, and you shall have all that you require. + +And she said, My request and my petition +are: + +if I have found favor in the sight of the king, let the king and Aman come again to-morrow to the feast which I shall prepare for them, and to-morrow I will do the same. + +So Aman went out from the king very glad +and merry: but when Aman saw Mardochaeus the Jew in the court, he was greatly enraged. + +And having gone into his own house, he called his friends, and his wife Zosara. + +And he showed them his wealth, and the glory with which the king had invested him, and how he had caused him to take precedence and bear chief rule in the kingdom. + +And Aman said, The queen has called no one to the feast with the king but me, and I am invited to-morrow. + +But these things please me not, while I see Mardochaeus the Jew in the court. + +And Zosara his wife and his friends said to him, Let there be a +5:14 +Gr. +a tree cut. + gallows made for you of fifty cubits, and in the morning do you speak to the king, and let Mardochaeus be hanged on the gallows: but do you go in to the feast with the king, and be merry. And the saying pleased Aman, and the gallows was prepared. + +

+ + +

But the Lord removed sleep from the king that night: and he told his servant to bring in the +6:1 +Gr. +letters. + books, the registers of daily events, to read to him. + +And he found the +6:2 +Gr. +letters. + records written concerning Mardochaeus, how he had told the king concerning the two chamberlains of the king, when they were keeping guard, and sought to lay hands on Artaxerxes. + +And the king said, What honor or favor have we done to Mardochaeus? And the king's servants said, You have not done anything to him. + +And while the king was enquiring about the kindness of Mardochaeus, behold, Aman +was in the court. And the king said, Who +is in the court? Now Aman was come in to speak to the king, that he should hang Mardochaeus on the gallows, which he had prepared. + +And the king's servants said, Behold, Aman stands in the court. And the king said, Call him. + +And the king said to Aman, What shall I do to the man whom I wish to honor? And Aman said within himself, Whom would the king honor but myself? + +and he said to the king, As for the man whom the king wishes to honor, + +let the king's servants bring the robe of fine linen which the king puts on, and the horse on which the king rides, + +and let him give +it to one of the king's noble friends, and let him array the man whom the king loves; and let him mount him on the horse, and proclaim through the +6:9 +Or, +wide space. + street of the city, saying, Thus shall it be +done to every man whom the king honors. + +Then the king said to Aman, You have well said: so do to Mardochaeus the Jew, who waits in the palace, and let not a word of what you have spoken be neglected. + +So Aman took the robe and the horse, and arrayed Mardochaeus, and mounted him on the horse, and went through the street of the city, and proclaimed, saying, Thus shall it be to every man whom the king wishes to honor. + +And Mardochaeus returned to the palace: but Aman went home mourning, and having his head covered. + +And Aman related the events that had befallen him to Zosara his wife, and to +his friends: and his friends and his wife said to him, +6:13 +Or, +if it be M. etc. before whom. + If Mardochaeus +be of the race of the Jews, +and you have begun to be humbled before him, you will assuredly fall, and you will not be able to withstand him, for the living God +is with him. + +While they were yet speaking, the chamberlains arrived, to hasten Aman to the banquet which Esther had prepared. + +

+ + +

So the king and Aman went in to drink with the queen. + +And the king said to Esther at the banquet on the second day, What is it, queen Esther? and what +is your request, and what +is your petition? and it shall be +done for you, to the half of my kingdom. + +And she answered and said, If I have found favor in the sight of the king, let +my life be granted to my petition, and my people to my request. + +For both I and my people are sold for destruction, and pillage, and slavery; +both we and our children for bondmen and bondwomen: and I consented not to it, for the +7:4 +see +Heb. slanderer + +is not worthy of the king's palace. + +And the king said, Who +is this that has dared to do this thing? + +And Esther said, the +7:6 +Gr. +hostile man. + adversary +is Aman, this wicked man. Then Aman was troubled before the king and the queen. + +And the king rose up from the banquet to go into the garden: and Aman began to entreat the queen; for he saw that he was in +7:7 +Gr. +evils. + an evil case. + +And the king returned from the garden; and Aman had fallen upon the bed, intreating the queen. And the king said, Will you even force +my wife in my house? And when Aman heard it, he changed countenance. + +And Bugathan, one of the chamberlains, said to the king, Behold, Aman has also prepared a gallows for Mardochaeus, who spoke concerning the king, and a gallows of fifty cubits high has been set up in the premises of Aman. And the king said, Let him be +7:9 +Or, +impaled. + hanged thereon. + +So Aman was hanged on the gallows that had been prepared for Mardochaeus: and then the king's wrath was appeased. + +

+ + +

And in that day king Artaxerxes gave to Esther all that belonged to Aman the slanderer: and Mardochaeus was called by the king; for Esther had shown that he was related to her. + +And the king took the ring which he had taken away from Aman, and gave it to Mardochaeus: and Esther appointed Mardochaeus over all that had been Aman's. + +And she spoke yet again to the king, and fell at his feet, and implored +him to do away the mischief of Aman, and all that he had done against the Jews. + +Then the king stretched out to Esther the golden sceptre: and Esther arose to stand near the king. + +And Esther said, If it seem good to you, and I have found favor +in your sight, let an order be sent that the letters sent by Aman may be reversed, that were written for the destruction of the Jews, who are in your kingdom. + +For how shall I be able to look upon the affliction of my people, and how shall I be able to survive the destruction of my +8:6 +Gr. +country. + kindred? + +And the king said to Esther, If I have given and freely granted you all that was Aman's, and hanged him on a gallows, because he laid his hands upon the Jews, what do you yet further seek? + +Write you⌃ also in my name, as it seems good to you, and seal +it with my ring: for whatever +orders are written at the command of the king, and sealed with my ring, it is not +8:8 +Or, +possible + lawful to gainsay them. + +So the scribes were called in the first month, which is Nisan, on the three and twentieth day of the same year; and +orders were written to the Jews, whatever +the king had commanded to the +8:9 +Gr. +stewards. + local governors and chiefs of the satraps, from India even to Ethiopia, one hundred and twenty-seven satraps, according to the several provinces, according to their dialects. + +And they were written by order of the king, and sealed with his ring, and they sent the letters by the posts: + +wherein he charged them to use their +own laws in every city, and to help each other, and to treat their adversaries, and those who attacked them, as they pleased, + +on one day in all the kingdom of Artaxerxes, on the thirteenth +day of the twelfth month, which is Adar. + +And let the copies be posted in conspicuous places throughout the kingdom, and let all the Jews be ready against this day, to fight against their enemies. And the following is the copy of the letter of the orders. +8:13 +the passages in brackets are not in the +Hebrew. [The great king Artaxerxes sends greetings to the rulers of provinces +in one hundred and twenty-seven satrapies, from India to Ethiopia, even to those who are faithful to our interests. Many who have been frequently honored by the most abundant kindness of their +8:13 +perhaps rulers, see Luke 22:25. + benefactors have conceived ambitious designs, and not only endeavor to hurt our subjects, but moreover, not being able to bear prosperity, they also endeavor to plot against their own benefactors. And they not only would utterly abolish gratitude from among men, but also, elated by the boastings of men who are strangers to all that is good, they supposed that they shall escape the sin-hating vengeance of the ever-seeing God. And oftentimes +evil exhortation has made partakers of the guilt of shedding innocent blood, and has involved in irremediable calamities, many of those who had been appointed to offices of authority, who had been entrusted with the management of their friends' affairs; while +men, by the false sophistry of an evil disposition, have deceived the simple candour of the ruling powers. And it is possible to see +this, not so much from more ancient traditionary accounts, as it is immediately in your power +to see it by examining what things have been wickedly +8:13 +Gr. +contrived. + perpetrated by the baseness of men unworthily holding power. And +it is right to take heed with regard to the future, that we may maintain the government in undisturbed peace for all men, adopting +needful changes, and ever judging those cases which come under our notice, with truly equitable decision. For whereas Aman, a Macedonian, the son of Amadathes, in reality an alien from the blood of the Persians, and differing widely from our mild course of government, having been hospitable entertained by us, obtained so large a share of our universal kindness, as to be called our father, and to continue the person next to the royal throne, reverenced of all; +he however, +8:13 +Gr. +not having borne. + overcome by the pride +of his station, endeavored to deprive us of our dominion, and our +8:13 +Gr. +spirit. + life: having by various and subtle artifices demanded for destruction both Mardochaeus our deliverer and perpetual benefactor, and Esther the blameless consort of +our kingdom, with their whole nation. For by these methods he thought, having surprised us in a defenceless state, to transfer the dominion of the Persians to the Macedonians. But we find that the Jews, who have been consigned to destruction by the +8:13 +Gr. +thrice guilty. + most abominable of men, are not malefactors, but living according to the justest laws, and being the sons of the living God, the most high and +8:13 +Gr. +greatest. + mighty, who maintains the kingdom. to us as well as to our forefathers, in the most excellent order. You⌃ will therefore do well in refusing to obey the letter sent by Aman the son of Amadathes, because he that has done these things, has been hanged with his whole family at the gates of Susa, Almighty God having swiftly returned to him a worthy recompence, +We enjoin you then, having openly published a copy of this letter in every place, to give the Jews permission to use their own lawful customs, and to strengthen them, that on the thirteenth of the twelfth month Adar, on the self-same day, they may defend themselves against those who attack them in a time of affliction. For in the place of the destruction of the chosen race, Almighty God has granted them this +time of gladness. Do you⌃ therefore also, among your +notable feasts, keep a distinct day with all festivity, that both now and hereafter it may be a day of deliverance to us and who are well disposed toward the Persians, but to those that plotted against us a memorial of destruction. And every city and province collectively, which shall not do accordingly, shall be consumed with vengeance by spear and fire: it shall be made not only inaccessible to men, but most hateful to wild beasts and birds for ever.] And let the copies be posted in conspicuous places throughout the kingdom and let all the Jews be ready against this day, to fight against their enemies. + +So the horsemen went forth with haste to perform the king's commands; and the ordinance was also published in Susa. + +And Mardochaeus went forth robed in the royal apparel, and wearing a golden crown, and a diadem of fine purple linen: and the people in Susa saw +it and rejoiced. + +And the Jews had light and gladness, + +in every city and province wherever the ordinance was published: wherever the proclamation took place, the Jews had joy and gladness, feasting and mirth: and many of the Gentiles were circumcised, and became Jews, for fear of the Jews. + +

+ + +

For in the twelfth month, on the thirteenth day of the month which is Adar, the letters written by the king arrived. + +In that day the adversaries of the Jews perished: for no one resisted, through fear of them. + +For the chiefs of the satraps, and the princes and the royal scribes, honored the Jews; for the fear of Mardochaeus lay upon them. + +For the order of the king was in force, that he should be celebrated in all the kingdom. + +And in the city Susa the Jews killed five hundred men: + +both Pharsannes, and Delphon and Phasga, + +and Pharadatha, and Barea, and Sarbaca, + +and Marmasima, and Ruphaeus, and Arsaeus, and Zabuthaeus, + +the ten sons of Aman the son of Amadathes the Bugaean, the enemy of the Jews, and they plundered +their property on the same day: + +and the number of them that perished in Susa was rendered to the king. + +And the king said to Esther, The Jews have slain five hundred men in the city Susa; and how, think you, have they used them in the rest of the country? What then do you yet ask, that it may be +done for you? + +And Esther said to the king, let it be granted to the Jews so to treat them tomorrow as to hand the ten sons of Aman. + +And he permitted it to be so done; and he gave up to the Jews of the city the bodies of the sons of Aman to hang. + +And the Jews assembled in Susa on the fourteenth +day of Adar, and killed three hundred men, but plundered no property. + +And the rest of the Jews who were in the kingdom assembled, and helped one another, and obtained rest from their enemies: for they destroyed fifteen thousand of them on the thirteenth +day of Adar, but took no spoil. + +And they rested on the fourteenth of the same month, and kept it as a day of rest with joy and gladness. + +And the Jews in the city Susa assembled also on the fourteenth +day and rested; and they kept also the fifteenth with joy and gladness. + +On this account then +it is that the Jews dispersed in every foreign land keep the fourteenth of Adar +as a +9:19 +Gr. +good day. + holy day with joy, sending portions each to his neighbor. + +And Mardochaeus wrote these things in a book, and sent them to the Jews, as many as were in the kingdom of Artaxerxes, both them that were near and them that were afar off, + +to establish these +as joyful days, and to keep the fourteenth and fifteenth of Adar; + +for on these days the Jews obtained rest from their enemies; and +as to the month, which was Adar, in which a change was made for them, from mourning to joy, and from sorrow to a good day, to spend the whole of it +in good days of +9:22 +Gr. +weddings. + feasting and gladness, sending portions to their friends, and to the poor. + +And the Jews consented +to this accordingly as Mardochaeus wrote to them, + + +showing how Aman the son of Amadathes the Macedonian fought against them, how he made a decree and cast +9:24 +Gr. +lot. + lots to destroy them utterly; + +also how he went in to the king, telling +him to hang Mardochaeus: but all the calamities he tried to bring upon the Jews came upon himself, and he was hanged, and his children. + +Therefore these days were called Phrurae, because of the lots; (for in their language they are called Phrurae;) because of the words of this letter, and +because of all they suffered on this account, and all that happened to them. + +And +Mardochaeus established it, and the Jews took upon themselves, and upon their seed, and upon those that were joined to them +to observe it, neither would they on any account behave differently: but these days +were to be a memorial kept in every generation, and city, and family, and province. + +And these days of the Phrurae, +said they, +shall be kept for ever, and their memorial shall not fail in any generation. + +And queen Esther, the daughter of Aminadab, and Mardochaeus the Jew, wrote all that they had done, and the confirmation of the letter of Phrurae. + +And Mardochaeus and Esther the queen appointed +a fast for themselves privately, even at that time also having formed their plan against their own health. + +And Esther established it by a command for ever, and it was written for a memorial. + +

+ + +

And the king levied +a tax upon +his kingdom both by land and sea. + +And +as for his strength and valour, and the wealth and glory of his kingdom, behold, they are written in the book of the Persians and Medes, for a memorial. + +And Mardochaeus +10:3 +Gr. +succeded to +Or, +came into the place of. + was viceroy to king Artaxerxes, and was a great man in the kingdom, and honored by the Jews, and passed his life beloved of all his nation. +10:3 +the passages in brackets are not in the +Hebrew. [And Mardocheus said, These things have been done of God. For I remember the dream which I had concerning these matters: for not one particular of them has failed. +There was the little fountain which became a river, and there was light, and the sun and much water. The river is Esther, whom the king married, and made queen. And the two serpents are I and Aman. And the nations are those +nations that combined to destroy the name of the Jews. But +as for my nation, this is Israel, +even they that cried to God and were delivered: for the Lord delivered his people. And the Lord rescued us out of all these calamities; and God wrought such signs and great wonders as have not been done among the nations. Therefore did he ordain two lots. One for the people of God, and one for all the other +nations. And these two lots came for an appointed season, and for a day of judgment, before God, and for all the nations. And God remembered his people, and vindicated his inheritance. And they shall observe these days in the month Adar, on the fourteenth and on the fifteenth +day of the month, with an assembly, and joy and gladness before God, throughout the generations for ever among his people Israel. In the fourth year of the reign of Ptolemeus and Cleopatra, Dositheus, who said he was a priest and Levite, and Ptolemeus his son, brought this epistle of Phurim, which they said was the same, and that Lysimachus the son of Ptolemeus, that was in Jerusalem, had interpreted.] + +

+
+ +Job +JOB +Job +JOB +

JOB +

+ + +

There was a certain man in the land of Ausis, whose name +was Job; and that man was true, blameless, righteous, +and godly, abstaining from everything evil. + +And he had seven sons and three daughters. + +And his cattle consisted of seven thousand sheep, three thousand camels, five hundred yoke of oxen, five hundred she-asses in the pastures, and a very great household, and he had a great husbandry on the earth; and that man was +most noble of the +men of the east. + +And his sons visiting one another prepared a banquet every day, taking with them also their three sisters to eat and drink with them. + +And when the days of the banquet were completed, Job sent and purified them, having risen up in the morning, and offered sacrifices for them, according to their number, and one calf for a sin-offering for their souls: for Job said, Lest perhaps my sons have thought evil in their minds against God. Thus, then Job did continually. + +And it came to pass on a day, that behold, the angels of God came to stand before the Lord, and the devil came with them. + +And the Lord said to the devil, Whence are you come? And the devil answered the Lord, and said, I am come from compassing the earth, and walking up and down in the world. + +And the Lord said to him, Have you diligently considered my servant Job, that there is none like him on the earth, a man blameless, true, godly, abstaining from everything evil? + +Then the devil answered, and said before the Lord, Does Job worship the Lord for nothing? + +Have you not made a hedge about him, and about his household, and all his possessions round about? and have you not blessed the works of his hands, and multiplied his cattle upon the land? + +But put forth your hand, and touch all that he has: verily he will bless you to +your face. + +Then the Lord said to the devil, Behold, I give into your hand all that he has, but touch not himself. So the devil went out from the presence of the Lord. + +And it came to pass on a certain day, that Job's sons and his daughters were drinking wine in the house of their elder brother. + +And, behold, there came a messenger to Job, and said to him, The yokes of oxen were plowing, and the she-asses were feeding near them; + +and the spoilers came and took them for a prey, and killed the servants with the sword; and I having escaped alone am come to tell you. + +While he was yet speaking, there came another messenger, and said to Job, Fire has fallen from heaven, and burnt up the sheep, and devoured the shepherds like wise; and I having escaped alone am come to tell you. + +While he was yet speaking, there came another messenger, and said to Job, The horsemen formed three companies against us, and surrounded the camels, and took them for a prey, and killed the servants with the sword; and I only escaped, and am come to tell you. + +While he is yet speaking, another messenger comes, saying to Job, While your sons and your daughters were eating and drinking with their elder brother, + +suddenly a great wind came on from the desert, and caught the four corners of the house, and the house fell upon your children, and they are dead; and I have escaped alone, and am come to tell you. + +So Job arose, and tore his garments, and shaved the hair of his head, and fell on the earth, and worshipped, + +and said, I myself came forth naked from my mother's womb, and naked shall I return there; the Lord gave, the Lord has taken away: as it seemed good to the Lord, so has it come to pass; blessed be the name of the Lord. + +In all these events that befell him Job sinned not at all before the Lord, and did not impute folly to God. + +

+ + +

And it came to pass on a certain day, that the angels of God came to stand before the Lord, and the devil came among them to stand before the Lord. + +And the Lord, said to the devil, Whence come you? Then the devil said before the Lord, I am come from going through the world, and walking about the whole earth. + +And the Lord said to the devil, Have you then observed my servant Job, that there is none of +men upon the earth like him, a harmless, true, blameless, godly man, abstaining from all evil? and he yet cleaves to innocence, whereas you have told +me to destroy his substance without cause? + +And the devil answered and said to the Lord, Skin for skin, all that a man has will he give as a ransom for his life. + +Nay, but put forth your hand, and touch his bones and his flesh: verily he will bless you to +your face. + +And the Lord said to the devil, Behold, I deliver him up to you; only save his life. + +So the devil went out from the Lord, and struck Job with sore boils from +his feet to +his head. + +And he took a potsherd to scrape away the discharge, and sat upon a dung-heap outside the city. + +And when much time had passed, his wife said to him, How long will you hold out, saying, Behold, I wait yet a little while, expecting the hope of my deliverance? for, behold, your memorial is abolished from the earth, +even your sons and daughters, the pangs and pains of my womb which I bore in vain with sorrows; and you yourself sit down to spend the nights in the open air among the corruption of worms, and I am a wanderer and a servant from place to place and house to house, waiting for the setting of the sun, that I may rest from my labors and my pangs which now beset me: but say some word against the Lord, and die. + +But he looked on her, and said to her, You have spoken like one of the foolish women. If we have received good things of the hand of the Lord, shall we not endure evil things? In all these things that happened to him, Job sinned not at all with his lips before God. + +Now his three friends having heard of all the evil that was come upon him, came to him each from his own country: Eliphaz the king of the Thaemans, Baldad sovereign of the Saucheans, Sophar king of he Minaeans: and they came to him with one accord, to comfort and to visit him. + +And when they saw him from a distance they did not know him; and they cried with a loud voice, and wept, and tore every one his garment, and sprinkled dust upon +their heads, + +and they sat down beside him seven days and seven nights, and no one of them spoke; for they saw that his affliction was dreadful and very great. + +

+ + +

After this Job opened his mouth, and cursed his day, + +saying, + +Let the day perish in which I was born, and that night in which they said, Behold a boy! + +Let that night be darkness, and let not the Lord regard it from above, neither let light come upon it. + +But let darkness and the shadow of death seize it; let blackness come upon it; + +let that day and night be cursed, let darkness carry them away; let it not come into the days of the year, neither let it be numbered with the days of the months. + +But let that night be pain, and let not mirth come upon it, nor joy. + +But let him that curses that day curse it, +even he that is ready to attack the great whale. + +Let the stars of that night be darkened; let it remain +dark, and not come into light; and let it not see the morning star arise: + +because it shut not up the gates of my mother's womb, for +so it would have removed sorrow from my eyes. + +For why died I not in the belly? and +why did I not come forth from the womb and die immediately? + +and why did the knees support me? and why did I suck the breasts? + +Now I should have lain down and been quiet, I should have slept and been at rest, + +with kings +and councillors of the earth, who gloried in +their swords; + +or with rulers, whose gold was abundant, who filled their houses with silver: + +or +I should have been as an untimely birth proceeding from his mother's womb, or as infants who never saw light. + +There the ungodly have burnt out the fury of rage; there the wearied in body rest. + +And the men of old time have together ceased to hear the exactor's voice. + +The small and great are there, and the servant that feared his lord. + +For why is light given to those who are in bitterness, and life to those souls which are in griefs? + +who desire death, and obtain it not, digging +for it as +for treasures; + +and would be very joyful if they should gain it? + +Death +is rest to +such a man, for God has hedged him in. + +For my groaning comes before my food, and I weep being beset with terror. + +For the terror of which I meditated has come upon me, and that which I had feared has befallen me. + +I was not at peace, nor quiet, nor had I rest; yet wrath came upon me. + +

+ + +

Then Eliphaz the Thaemanite answered and said, + +Have you been often spoken to in distress? but who shall endure the force of your words? + +For whereas you have instructed many, and have strengthened the hands of the weak one, + +and have supported the failing with words, and have imparted courage to feeble knees. + +Yet now +that pain has come upon you, and touched you, you are troubled. + +Is not your fear +founded in folly, your hope also, and the mischief of your way? + +Remember then who has perished, being pure? or when were the true-hearted utterly destroyed? + +Accordingly as I have seen men plowing barren places, and they that sow them will reap sorrows for themselves. + +They shall perish by the command of the Lord, and shall be utterly consumed by the breath of his wrath. + +The strength of the lion, and the voice of the lioness, and the exulting cry of serpents are quenched. + +The old lion has perished for lack of food, and the lions' whelps have forsaken one another. + +But if there had been any truth in your words, none of these evils would have befallen you. Shall not my ear receive excellent +revelations from him? + +But +as when terror falls upon men, with dread and a sound in the night, + +horror and trembling seized me, and caused all my bones greatly to shake. + +And a spirit came before my face; and my hair and flesh quivered. + +I arose and perceived it not: I looked, and there, was no form before my eyes: but I only heard a breath and a voice, +saying, + +What, shall a mortal be pure before the Lord? or a man be blameless in regard to his works? + +Whereas he trust not in his servants, and perceives perverseness in his angels. + +But +as for them that dwell in houses of clay, of whom we also are formed of the same clay, he smites them like a moth. + +And from the morning to evening they no longer exist: they have perished, because they can’t help themselves. + +For he blows upon them, and they are withered: they have perished for lack of wisdom. + +

+ + +

But call, if any one will listen to you, or if you shall see any of the holy angels. + +For wrath destroys the foolish one, and envy slays him that has gone astray. + +And I have seen foolish ones taking root: but suddenly their habitation was devoured. + +Let their children be far from safety, and let them be crushed at the doors of vile men, and let there be no deliverer. + +For what they have collected, the just shall eat; but they shall not be delivered out of calamities: let their strength be utterly exhausted. + +For labor can’t by any means come out of the earth, nor shall trouble spring out of the mountains: + +yet man is born to labor, and +even so the vulture's young seek the high places. + +Nevertheless I will beseech the Lord, and will call upon the Lord, the sovereign of all; + +who does great things and untraceable, glorious things also, and marvelous, of which there is no number: + +who gives rain upon the earth, sending water on the earth: + +who exalts the lowly, and raises up them that are lost: + +frustrating the counsels of the crafty, and their hands shall not perform the truth: + +who takes the wise in their wisdom, and subverts the counsel of the crafty + +In the day darkness shall come upon them, and let them grope in the noon-day even as in the night: + +and let them perish in war, and let the weak escape from the hand of the mighty. + +And let the weak have hope, but the mouth of the unjust be stopped. + +But blessed +is the man whom the Lord has reproved; and reject not you the chastening of the Almighty. + +for he causes +a man to be in pain, and restores +him again: he smites, and his hands heal. + +Six time he shall deliver you out of distresses: and in the seventh harm shall not touch you. + +In famine he shall deliver you from death: and in war he shall free you from the power of the sword. + +He shall hide you from the scourge of the tongue: and you shall not be afraid of coming evils. + +You shall laugh at the unrighteous and the lawless: and you shall not be afraid of wild beasts. + +For the wild beasts of the field shall be at peace with you. + +Then shall you know that your house shall be at peace, and the provision for your tabernacle shall not fail. + +And you shall know that your seed +shall be abundant; and your children shall be like the herbage of the field. + +And you shall come to the grave like ripe corn reaped in its season, or as a heap of the corn-flour collected in proper time. + +Behold, we have thus sought out these matters; these are what we have heard: but do you reflect with yourself, if you have done anything +wrong. + +

+ + +

But Job answered and said, + +Oh that one would indeed weigh the wrath that is upon me, and take up my griefs in a balance together! + +And verily they would be heavier than the sand by the seashore: but, as it seems, my words are vain. + +For the arrows of the Lord are in my body, whose violence drinks up my blood: whenever I am going to speak, they pierce me. + +What then? will the wild ass bray for nothing, if he is not seeking food? or again, will the ox low at the manger, when he has a fodder? + +Shall bread be eaten without salt? or again, is there taste in empty words? + +For my wrath can’t cease; for I perceive my food as the smell of a lion +to be loathsome. + +For oh that he would grant +my desire, and my petition might come, and the Lord would grant my hope! + +Let the Lord begin and wound me, but let him not utterly destroy me. + +Let the grave be my city, upon the walls of which I have leaped: I will not shrink from it; for I have not denied the holy words of my God. + +For what is my strength, that I continue? what is my time, that my soul endures? + +Is my strength the strength of stones? or is my flesh of brass? + +Or have I not trusted in him? but help is +far from me. + +Mercy has rejected me; and the visitation of the Lord has disregarded me. + +My nearest relations have not regarded me; they have passed me by like a failing brook, or like a wave. + +They who used to reverence me, now have come against me like snow or congealed ice. + +When it has melted at the approach of heat, it is not known what it was. + +Thus I also have been deserted of all; and I am ruined, and become an outcast. + +Behold the ways of the Thaemanites, you⌃ that mark the paths of the Sabaeans. + +They too that trust in cities and riches shall come to shame. + +But you⌃ also have come to me without pity; so that beholding my wound you⌃ are afraid. + +What? have I made any demand of you? or do I ask for strength from you, + +to deliver me from enemies, or to rescue me from the hand of the mighty ones? + +Teach you⌃ me, and I will be silent: if in anything I have erred, tell me. + +But as it seems, the words of a true man are vain, because I do not ask strength of you. + +Neither will your reproof cause me to cease my words, for neither will I endure the sound of your speech. + +Even because you⌃ attack the fatherless, and insult your friend. + +But now, having looked upon your countenances, I will not lie. + +Sit down now, and let there not be unrighteousness; and unite again with the just. + +For there is no injustice in my tongue; and does not my throat meditate understanding? + +

+ + +

Is not the life of man upon earth a state of trial? and his existence as that of a hireling by the day? + +Or as a servant that fears his master, and one who has grasped a shadow? or as a hireling waiting for his pay? + +So have I also endured months of vanity, and nights of pain have been appointed me. + +Whenever I lie down, I say, When +will it be day? and whenever I rise up, again +I say when +will it be evening? and I am full of pains from evening to morning. + +And my body is covered with loathsome worms; and I waste away, scraping off clods of dust from my eruption. + +And my life is lighter than a word, and has perished in vain hope. + +Remember then that my life is breath, and my eye shall not yet again see good. + +The eye of him that sees me shall not see me +again: your eyes are upon me, and I am no more. + + +I am as a cloud that is cleared away from the sky: for if a man go down to the grave, he shall not come up again: + +and he shall surely not return to his own house, neither shall his place know him any more. + +Then neither will I refrain my mouth: I will speak being in distress; being in anguish I will disclose the bitterness of my soul. + +Am I a sea, or a serpent, that you have set a watch over me? + +I said that my bed should comfort me, and I would privately counsel with myself on my couch. + +You scare me with dreams, and do terrify me with visions. + +You will separate life from my spirit; and yet +keep my bones from death. + +For I shall not live for ever, that I should patiently endure: depart from me, for my life +is vain. + +For what is man, that you have magnified him? or that you give heed to him? + +Will you visit him till the morning, and judge him till +the time of rest? + +How long do you not let me alone, nor let me go, until I shall swallow down my spittle? + +If I have sinned, what shall I be able to do, O you that understand the mind of men? why have you made me as your accuser, and +why am I a burden to you? + +Why have you not forgotten my iniquity, and purged my sin? but now I shall depart to the earth; and in the morning I am no more. + +

+ + +

Then Baldad the Sauchite answered, and said, + +How long will you speak these things, +how long shall the breath of your mouth +be abundant in words? + +Will the Lord be unjust when he judges; or will he that has made all things pervert justice? + +If your sons have sinned before him, he has cast them away because of their transgression. + +But be you early in prayer to the Lord Almighty. + +If you are pure and true, he will listen to your supplication, and will restore to you the habitation of righteousness. + +Though then your beginning should be small, yet your end should be unspeakably great. + +For ask of the former generation, and search diligently among the race of +our fathers: + +(for we are of yesterday, and know nothing; for our life upon the earth is a shadow:) + +shall not these teach you, and report +to you, and bring out words from +their heart? + +Does the rush flourish without water, or shall the flag grow up without moisture? + +When it is yet on the root, and +though it has not been cut down, does not any herb wither before it has received moisture? + +Thus then shall be the end of all that forget the Lord: for the hope of the ungodly shall perish. + +For his house shall be without inhabitants, and his tent shall prove a spider's web. + +If he should prop up his house, it shall not stand: and when he has taken hold of it, it shall not remain. + +For it is moist under the sun, and his branch shall come forth out of his dung-heap. + +He lies down upon a gathering of stones, and shall live in the mist of flints. + +If +God should destroy +him, his place shall deny him. Have you not seen such things, + +that such is the overthrow of the ungodly? and out of the earth another shall grow. + +For the Lord will by no means reject the harmless man; but he will not receive any gift of the ungodly. + +But he will fill with laughter the mouth of the sincere, and their lips with thanksgiving. + +But their adversaries shall clothe themselves with shame; and the habitation of the ungodly shall perish. + +

+ + +

Then Job answered and said, + +I know of a truth that it is so: for how shall a mortal man be just before the Lord? + +For if he would enter into judgment with him, +God would not listen to him, so that he should answer to one of his charges of a thousand. + +For he is wise in mind, and mighty, and great: who has hardened himself against him and endured? + +Who wears out the mountains, and +men know it not: who overturns them in anger. + +Who shakes the +earth under heaven from its foundations, and its pillars totter. + +Who commands the sun, and it rises not; and he seals up the stars. + +Who alone has stretched out the heavens, and walks on the sea as on firm ground. + +Who makes Pleias, and Hesperus, and Arcturus, and the chambers of the south. + +Who does great and unsearchable things; glorious also and excellent things, innumerable. + +If ever he should go beyond me, I shall not see him: if he should pass by me, neither thus have I known +it. + +If he would take away, who shall turn him back? or who shall say to him, What have you done? + +For +if he has turned away +his anger, the whales under heaven have stooped under him. + +Oh then that he would listen to me, or judge my cause. + +For though I be righteous, he will not listen to me: I will entreat his judgment. + +And if I should call and he should not listen, I can’t believe that he has listened to my voice. + +Let him not crush me with a dark storm: but he has made by bruises many without cause. + +For he suffers me not to take breath, but he has filled me with bitterness. + +For indeed he is strong in power: who then shall resist his judgment? + +For though I should seem righteous, my mouth will be profane: and though I should seem blameless, I shall be proved perverse. + +For even if I have sinned, I know it not +in my soul: but my life is taken away. + +Therefore I said, Wrath slays the great and mighty man. + +For the worthless die, but the righteous are laughed to scorn. + +For they are delivered into the hands of the unrighteous +man: he covers the faces of the judges +of the earth: but if it be not he, who is it? + +But my life is swifter than a post: +my days have fled away, and they knew it not. + +Or again, is there a trace of +their path +left by ships? or is there one of the flying eagle as it seeks +its prey? + +And if I should say, I will forget to speak, I will bow down my face and groan; + +I quake in all my limbs, for I know that you will not leave me alone +as innocent. + +But since I am ungodly, why have I not died? + +For if I should wash myself with snow, and purge myself with pure hands, + +you had thoroughly plunged me in filth, and my garment had abhorred me. + +For you are not man like me, with whom I could contend, that we might come together to judgment. + +Would that +he our mediator were +present, and a reprover, and one who should hear +the cause between both. + +Let him remove +his rod from me, and let not his fear terrify me: + +so shall I not be afraid, but I will speak: for I am not thus conscious +of guilt. + +

+ + +

Weary in my soul, I will pour my words with groans upon him: I will speak being straitened in the bitterness of my soul. + +And I will say to the Lord, Do not teach me to be impious; and therefore have you thus judged me? + +Is it good before you if I be unrighteous? for you have disowned the work of your hands, and attended to the counsel of the ungodly. + +Or do you see as a mortal sees? or will you look as a man sees? + +Or is your life human, or your years +the years of a man, + +that you have enquired into my iniquity, and searched out my sins? + +For you know that I have not committed iniquity: but who is he that can deliver out of your hands? + +Your hands have formed me and made me; afterwards you did change +your mind, and strike me. + +Remember that you have made me +as clay, and you do turn me again to earth. + +Have you not poured me out like milk, and curdled me like cheese? + +And you did clothe me with skin and flesh, and frame me with bones and sinews. + +And you did bestow upon me life and mercy, and your oversight has preserved my spirit. + +Having these things in yourself, I know that you can do all things; for nothing is impossible with you. + +And if I should sin, you watch me; and you have not cleared me from iniquity. + +Or if I should be ungodly, woe is me: and if I should be righteous, I can’t lift myself up, for I am full of dishonor. + +For I am hunted like a lion for slaughter; for again you have changed and are terribly destroying me; + +renewing against me my torture: and you have dealt with me in great anger, and you have brought trials upon me. + +Why then did you bring me out of the womb? and why did I not die, and no eye see me, + +and I become as if I had not been? for why was I not carried from the womb to the grave? + +Is not the time of my life short? suffer me to rest a little, + +before I go whence I shall not return, to a land of darkness and gloominess; + +to a land of perpetual darkness, where there is no light, neither +can any one see the life of mortals. + +

+ + +

Then Sophar the Minaean answered and said, + +He that speaks much, should also hear on the other side: or does the fluent speaker think himself to be righteous? blessed +is the short lived offspring of woman. + +Be not a speaker of many words; for is there none to answer you? + +For say not, I am pure in my works, and blameless before him. + +But oh that the Lord would speak to you, and open his lips to you! + +Then shall he declare to you the power of wisdom; for it shall be double of that which is with you: and then shall you know, that a just recompence of your sins has come to you from the Lord. + +Will you find out the traces of the Lord? or have you come to the end +of that which the Almighty has made? + +Heaven +is high; and what will you do? and there are deeper things than those in hell; what do you know? + +Or longer than the measure of the earth, or the breadth of the sea. + +And if he should overthrow all things, who will say to him, What have you done? + +For he knows the works of transgressors; and when he sees wickedness, he will not overlook +it. + +But man vainly buoys himself up with words; and a mortal born of woman +is like an ass in the desert. + +For if you have made your heart pure, and lift up +your hands towards him; + +if there is any iniquity in your hands, put it far from you, and let not unrighteousness lodge in your habitation. + +For thus shall your countenance shine again, as pure water; and you shall dive yourself of uncleanness, and shall not fear. + +And you shall forget trouble, as a wave that has passed by; and you shall not be scared. + +And your prayer +shall be as the morning star, and life shall arise to you +as from the noonday. + +And you shall be confident, because you have hope; and peace shall dawn to you from out of anxiety and care. + +For you shall be at ease, and there shall be no one to fight against you; and many shall charge, and make supplication to you. + +But safety shall fail them; for their hope is destruction, and the eyes of the ungodly shall waste away. + +

+ + +

And Job answered and said, + +So then you⌃ +alone are men, and wisdom shall die with you? + + +But I also have a heart as well as you. + +For a righteous and blameless man has become a subject for mockery. + +For it had been ordained that he should fall under others at the appointed time, and that his houses should be spoiled by transgressors: let not however any one trust that, being evil, he shall be +held guiltless, + +even as many as provoke the Lord, as if there were indeed to be no inquisition +made of them. + +But ask now the beasts, if they may speak to you; and the birds of the air, if they may declare to you. + +Tell the earth, if it may speak to you: and the fishes of the sea shall explain to you. + +Who then has not known in all these things, that the hand of the Lord has made them? + +Whereas the life of all living things is in his hand, and the breath of every man. + +For the ear tries words, and the palate tastes meats. + +In length of time is wisdom, and in long life knowledge. + +With him are wisdom and power, with him counsel and understanding. + +If he should cast down, who will build up? if he should shut up against man, who shall open? + +If he should withhold the water, he will dry the earth: and if he should let it loose, he overthrows and destroys it. + +With him are strength and power: he has knowledge and understanding. + +He leads counselors away captive, and maddens the judges of the earth. + +He seats kings upon thrones, and girds their loins with a girdle. + +He sends away priests into captivity, and overthrows the mighty ones of the earth. + +He changes the lips of the trusty, and he knows the understanding of the elders. + +He pours dishonor upon princes, and heals the lowly. + +Revealing deep things out of darkness: and he has brought into light the shadow of death. + +Causing the nations to wander, and destroying them: overthrowing the nations, and leading them +away. + +Perplexing the minds of the princes of the earth: and he causes them to wander in a way, they have not known, +saying, + +Let them grope +in darkness, and +let there be no light, and let them wander as a drunken man. + +

+ + +

Behold, my eye has seen these things, and my ear has heard +them. + +And I know all that you⌃ too know; and I have not less understanding than you. + +Nevertheless I will speak to the Lord, and I will reason before him, if he will. + +But you⌃ are all bad physicians, and healers of diseases. + +But would that you⌃ were silent, and it would be wisdom to you in the end. + +But hear you⌃ the reasoning of my mouth, and attend to the judgment of my lips. + +Do you⌃ not speak before the Lord, and utter deceit before him? + +Or will you⌃ draw back? nay do, you⌃ yourselves be judges. + +For +it were well if he would thoroughly search you: for though doing all things +in your power you⌃ should attach yourselves to him, + +he will not reprove you at all the less: but if moreover you⌃ should secretly respect persons, + +shall not his whirlpool sweep you round, and terror from him fall upon you? + +And your glorying shall prove in the end to you like ashes, and your body +like a body of clay. + +Be silent, that I may speak, and cease from +my anger, + +while I may take my flesh in my teeth, and put my life in my hand. + +Though the Mighty One should lay hand upon me, forasmuch as he has begun, verily I will speak, and plead before him. + +And this shall turn to me for salvation; for fraud shall have no entrance before him. + +Hear, hear you⌃ my words, for I will declare in your hearing. + +Behold, I am near my judgment: I know that I shall appear evidently just. + +For who is he that shall plead with me, that I should now be silent, and expire? + +But grant me two things: then I will not hide myself from your face. + +Withhold +your hand from me: and let not your fear terrify me. + +Then shall you call, and I will listen to you: or you shall speak, and I will give you an answer. + +How many are my sins and my transgressions? teach me what they are. + +Therefore hide you yourself from me, and deem me your enemy? + +Will you be startled +at me, as +at a leaf shaken by the wind? or will you set yourself against me as against grass borne upon the breeze? + +for you have written evil things against me, and you have compassed me with the sins of my youth. + +And you have placed my foot in the stocks; and you have watched all my works, and have penetrated my heels. + + +I am as that which waxes old like a bottle, or like a moth-eaten garment. + +

+ + +

For a mortal born of a woman +is short lived, and full of wrath. + +Or he falls like a flower that has bloomed; and he departs like a shadow, and can’t continue. + +Have you not taken account even of him, and caused him to enter into judgment before you? + +For who shall be pure from uncleanness? not even one; + +if even his life should be +but one day upon the earth: and his months are numbered by him: you have appointed +him for a time, and he shall by no means exceed +it. + +Depart from him, that he may be quiet, and take pleasure in his life, +though as a hireling. + +For there is hope for a tree, even if it should be cut down, +that it shall blossom again, and its branch shall not fail. + +For though its root should grow old in the earth, and its stem die in the rock; + +it will blossom from the scent of water, and will produce a crop, as one newly planted. + +But a man that has died is utterly gone; and when a mortal has fallen, he is no more. + +For the sea wastes in +length of time, and a river fails and is dried up. + +And man that has lain down +in death shall certainly not rise again till the heaven be dissolved, and they shall not awake from their sleep. + +For oh that you had kept me in the grave, and had hidden me until your wrath should cease, and you should set me a time in which you would remember me! + +For if a man should die, shall he live +again, having accomplished the days of his life? I will wait till I exist again? + +Then shall you call, and I will listen to you: but do not you reject the work of your hands. + +But you have numbered my devices: and not one of my sins shall escape you? + +And you have sealed up my transgressions in a bag, and marked if I have been guilty of any transgression unawares. + +And verily a mountain falling will utterly be destroyed, and a rock shall be worn out of its place. + +The waters wear the stones, and waters falling headlong +overflow a heap of the earth: and you destroy the hope of man. + +You drive him to an end, and he is gone: you set your face against him, and send him away; + +and though his children be multiplied, he knows +it not; and if they be few, he is not aware. + +But his flesh is in pain, and his soul mourns. + +

+ + +

Then Eliphaz the Thaemanite answered and said, + +Will a wise man give for answer a +mere breath of wisdom? and does he fill up the pain of his belly, + +reasoning with improper sayings, and with words wherein is no profit? + +Have not you moreover cast off fear, and accomplished such words before the Lord? + +You are guilty by the words of your mouth, neither have you discerned the words of the mighty. + +Let your own mouth, and not me, reprove you: and your lips shall testify against you. + +What! are you the first man that was born? or were you established before the hills? + +Or have you heard the ordinance of the Lord? or has God used you as +his counsellor? and has wisdom come +only to you? + +For what know you, that, we know not? or what understand you, which we do not also? + +Truly among us +are both the old and very aged man, more advanced in days than your father. + +You have been scourged for +but few of your sins: you have spoken haughtily +and extravagantly. + +What has your heart dared? or what have your eyes +aimed at, + +that you have vented +your rage before the Lord, and delivered such words from +your mouth? + +For who, being a mortal, +is such that he shall be blameless? or, +who that is born of a woman, that he should be just? + +Forasmuch as he trusts not his saints; and the heaven is not pure before him. + +Alas then, abominable and unclean is man, drinking unrighteousness as a draught. + +But I will tell you, listen to me; I will tell you now what I have seen; + +things wise men say, and their fathers have not hidden. + +To them alone the earth was given, and no stranger came upon them. + +All the life of the ungodly +is spent in care, and the years granted to the oppressor are numbered. + +And his terror is in his ears: just when he seems to be at peace, his overthrow will come. + +Let him not trust that he shall return from darkness, for he has been already made over to the power of the sword. + +And he has been appointed to be food for vultures; and he knows within himself that he is doomed to be a carcass: and a dark day shall carry him away as with a whirlwind. + +Distress also and anguish shall come upon him: he shall fall as a captain in the first rank. + +For he has lifted his hands against the Lord, and he has hardened his neck against the Almighty Lord. + +And he has run against him with insolence, on the thickness of the back of his shield. + +For he has covered his face with his fat, and made layers of fat upon his thighs. + +And let him lodge in desolate cities, and enter into houses without inhabitant: and what they have prepared, others shall carry away. + +Neither shall he at all grow rich, nor shall his substance remain: he shall not cast a shadow upon the earth. + +Neither shall he in any wise escape the darkness: let the wind blast his blossom, and let his flower fall off. + +Let him not think that he shall endure; for his end shall be vanity. + +His harvest shall perish before the time, and his branch shall not flourish. + +And let him be gathered as the unripe grape before the time, and let him fall as the blossom of the olive. + +For death is the witness of an ungodly man, and fire shall burn the houses of them that receive gifts. + +And he shall conceive sorrows, and his end shall be vanity, and his belly shall bear deceit. + +

+ + +

But Job answered and said, + +I have heard many such things: poor comforters are you⌃ all. + +What! is there any reason in vain words? or what will hinder you from answering? + +I also will speak as you⌃ +do: if indeed your soul were in my +soul's stead, + +then would I insult you with words, and I would shake my head at you. + +And would there were strength in my mouth, and I would not spare the movement of my lips. + +For if I should speak, I shall not feel the pain of my wound: and if I should be silent, how shall I be wounded the less? + +But now he has made me weary, and a worn-out fool; and you have laid hold of me. + +My falsehood has become a testimony, and has risen up against me: it has confronted me to my face. + +In his anger he has cast me down; he has gnashed his teeth upon me: the weapons of his robbers have fallen upon me. + +He has attacked me with the keen glances of his eyes; with his sharp +spear he has struck me +down upon my knees; and they have run upon me with one accord. + +For the Lord has delivered me into the hands of unrighteous men, and thrown me upon the ungodly. + +When I was at peace he distracted me: he took me by the hair of the head, and plucked it out: he set me up as a mark. + +They surrounded me with spears, aiming at my reins: without sparing +me they poured out my gall upon the ground. + +They overthrew me with fall upon fall: they ran upon me in +their might. + +They sewed sackcloth upon my skin, and my strength has been spent on the ground. + +My belly has been parched with wailing, and darkness is on my eyelids. + +Yet there was no injustice in my hands, and my prayer is pure. + +Earth, cover not over the blood of my flesh, and let my cry have no place. + +And now, behold, my witness is in heaven, and my advocate is on high. + +Let my supplication come to the Lord, and let my eye weep before him. + +Oh that a man might plead before the Lord, even +as the son of man with his neighbor! + +But my years are numbered and +their end come, and I shall go by the way by which I shall not return. + +

+ + +

I perish, carried away by the wind, and I seek for burial, and obtain +it not. + +Weary I entreat; and what have I done? and strangers have stolen my goods. + +Who is this? let him join hands with me. + +For you have hid their heart from wisdom; therefore you shall not exalt them. + +He shall promise mischief to +his companions: but +their eyes have failed for +their children. + +But you have made me a byword among the nations, and I am become a scorn to them. + +For my eyes are dimmed through pain; I have been grievously beset by all. + +Wonder has seized true men upon this; and let the just rise up against the transgressor. + +But let the faithful hold on his own way, and let him that is pure of hands take courage. + +Howbeit, do you⌃ all strengthen +yourselves and come now, for I do not find truth in you. + +My days have passed in groaning, and my heart-strings are broken. + +I have turned the night into day: the light is short because of darkness. + +For if I remain, Hades is my habitation: and my bed has been made in darkness. + +I have called upon death to be my father, and corruption +to be my mother and sister. + +Where then is yet my hope? or +where shall I see my good? + +Will they go down with me to Hades, or shall we go down together to the tomb? + +

+ + +

Then Baldad the Sauchite answered and said, + +How long will you continue? forbear, that we also may speak. + +For therefore have we been silent before you like brutes? + +Anger has possessed you: for what if you should die; would +the earth under heaven be desolate? or shall the mountains be overthrown from their foundations? + +But the light of the ungodly shall be quenched, and their flame shall not go up. + +His light +shall be darkness in +his habitation, and his lamp shall be put out with him. + +Let the meanest of men spoil his goods, and let his counsel deceive +him. + +His foot also has been caught in a snare, +and let it be entangled in a net. + +And let snares come upon him: he shall strengthen those that thirst for his destruction. + +His snare is hid in the earth, and that which shall take him is by the path. + +Let pains destroy him round about, and let many +enemies come about him, + + +vex him with distressing hunger: and a signal destruction has been prepared for him. + +Let the soles of his feet be devoured: and death shall consume his beauty. + +And let health be utterly banished from his tabernacle, and let distress seize upon him with a charge from the king. + +It shall dwell in his tabernacle in his night: his excellency shall be sown with brimstone. + +His roots shall be dried up from beneath, and his crop shall fall away from above. + +Let his memorial perish out of the earth, and his name shall be publicly cast out. + +Let +one drive him from light into darkness. + +He shall not be known among his people, nor his house preserved on the earth. + +But strangers shall dwell in his possessions: the last groaned for him, and wonder seized the first. + +These are the houses of the unrighteous, and this is the place of them that know not the Lord. + +

+ + +

Then Job answered and said, + +How long will you⌃ vex my soul, and destroy me with words? only know that the Lord has dealt with me thus. + +You⌃ speak against me; you⌃ do not feel for me, but bear hard upon me. + +Yes verily, I have erred in truth, (but the error abides with myself) in having spoken words which it was not right +to speak; and my words err, and are unreasonable. + +But alas! for you⌃ magnify yourselves against me, and insult me with reproach. + +Know then that it is the Lord that has troubled +me, and has raised his bulwark against me. + +Behold, I laugh at reproach; I will not speak: +or I will cry out, but +there is nowhere judgment. + +I am fenced round about, and can by no means escape: he has set darkness before my face. + +And he has stripped me of my glory, and has taken the crown from my head. + +He has torn me around about, and I am gone: and he has cut off my hope like a tree. + +And he has dreadfully handled me in anger, and has counted me for an enemy. + +His troops also came upon me with one accord, liars in wait compassed my ways. + +My brethren have stood aloof from me; they have recognized strangers +rather than me: and my friends have become pitiless. + +My nearest of kin have not acknowledged me, and they that knew my name, have forgotten me. + + +As for my household, and my maidservants, I was a stranger before them. + +I called my servant, and he listened not; and my mouth entreated +him. + +And I implored my wife, and earnestly entreated the sons of my concubines. + +But they rejected me for ever; whenever I rise up, they speak against me. + +They that saw me abhorred me: the very persons whom I had loved, rose up against me. + +My flesh is corrupt under my skin, and my bones are held in +my teeth. + +Pity me, pity me, O friends; for it is the hand of the Lord that has touched me. + +Therefore do you⌃ persecute me as also the Lord +does, and are not satisfied with my flesh? + +For oh that my words were written, and that they were recorded in a book forever, + +with an iron pen and lead, or graven in the rocks! + +For I know that he is eternal who is about to deliver me, + + +and to raise up upon the earth my skin that endures these +sufferings: for these things have been accomplished to me of the Lord; + +which I am conscious of in myself, which my eye has seen, and not another, but all have been fulfilled to me in +my bosom. + +But if you⌃ shall also say, What shall we say before him, and +so find the root of the matter in him? + +Do you⌃ also beware of deceit: for wrath will come upon transgressors; and then shall they know where their substance is. + +

+ + +

Then Sophar the Minaean answered and said, + +I did not suppose that you would answer thus: neither do you⌃ understand more than I. + +I will hear my shameful reproach; and the spirit of my understanding answers me. + +Have you +not known these things of old, from the time that man was set upon the earth? + +But the mirth of the ungodly is a signal downfall, and the joy of transgressors is destruction: + +although his gifts should go up to heaven, and his sacrifice reach the clouds. + +For when he shall seem to be now established, then he shall utterly perish: and they that knew him shall say, Where is he? + +Like a dream that has fled away, he shall not be found; and he has fled like a vision of the night. + +The eye has looked upon him, but shall not +see him again; and his place shall no longer perceive him. + +Let +his inferiors destroy his children, and let his hands kindle the fire of sorrow. + +His bones have been filled with +vigour of his youth, and it shall lie down with him in the dust. + +Though evil be sweet in his mouth, +though he will hide it under his tongue; + +though he will not spare it, and will not leave it, but will keep it in the midst of his throat: + +yet he shall not at all be able to help himself; the gall of an asp is in his belly. + + +His wealth unjustly collected shall be vomited up; a messenger +of wrath shall drag him out of his house. + +And let him suck the poison of serpents, and let the serpent's tongue kill him. + +Let him not see the milk of the pastures, nor the supplies of honey and butter. + +He has laboured unprofitably and in vain, +for wealth of which he shall not taste: +it is as a lean thing, unfit for food, which he can’t swallow. + +For he has broken down the houses of many mighty men: and he has plundered an habitation, though he built +it not. + +There is no security to his possessions; he shall not be saved by his desire. + +There is nothing remaining of his provisions; therefore his goods shall not flourish. + +But when he shall seem to be just satisfied, he shall be straitened; and all distress shall come upon him. + +If by any means he would fill his belly, let +God send upon him the fury of wrath; let him bring a torrent of pains upon him. + +And he shall by no means escape from the power of the sword; let the brazen bow wound him. + +And let the arrow pierce through his body; and let the stars be against his dwelling-place: let terrors come upon him. + +And let all darkness wait for him: a fire that burns not out shall consume him; and let a stranger plague his house. + +And let the heaven reveal his iniquities, and the earth rise up against him. + +Let destruction bring his house to an end; let a day of wrath come upon him. + +This is the portion of an ungodly man from the Lord, and the possession of his goods +appointed him by the all-seeing +God. + +

+ + +

But Job answered and said, + +Hear you⌃, hear you⌃ my words, that I may not have this consolation from you. + +Raise me, and I will speak; then you⌃ shall not laugh me to scorn. + +What! is my reproof of man? and why should I not be angry? + +Look upon me, and wonder, laying your hand upon your cheek. + +For even when I remember, I am alarmed, and pains seize my flesh. + +Therefore do the ungodly live, and grow old even in wealth? + +Their seed is according to +their desire, and their children are in +their sight. + +Their houses are prosperous, neither +have they any where +cause for fear, neither is there a scourge from the Lord upon them. + +Their cow does not cast her calf, and their +beast with young is safe, and does not miscarry. + +And they remain as an unfailing flock, and their children play before +them, taking up the lute and harp; + +and they rejoice at the voice of a song. + +And they spend their days in wealth, and fall asleep in the rest of the grave. + +Yet +such a man says to the Lord, Depart from me; I desire not to know your ways. + +What is the Mighty One, that we should serve him? and what profit is there that we should approach him? + +For their good things were in +their hands, but he regards not the works of the ungodly. + +Nevertheless, the lamp of the ungodly also shall be put out, and destruction shall come upon them, and pangs of vengeance shall seize them. + +And they shall be as chaff before the wind, or as dust which the storm has taken up. + +Let his substance fail +to supply his children: +God shall recompense him, and he shall know it. + +Let his eyes see his own destruction, and let him not be saved by the Lord. + +For his desire is in his house with him, and the number of his months has been suddenly cut off. + +Is it not the Lord who teaches understanding and knowledge? and does not he judge murders? + +One shall die in his perfect strength, and wholly at ease and prosperous; + +and his inwards are full of fat, and his marrow is diffused +throughout him. + +And another dies in bitterness of soul, not eating any good thing. + +But they lie down in the earth together, and corruption covers them. + +So I know you, that you⌃ presumptuously attack me: + +so that you⌃ will say, Where is the house of the prince? and where is the covering of the tabernacles of the ungodly? + +Ask those that go by the way, and do not disown their tokens. + +For the wicked hastens to the day of destruction: they shall be led away for the day of his vengeance. + +Who will tell him his way to his face, whereas he has done +it? who shall recompense him? + +And he has been led away to the tombs, and he has watched over the heaps. + +The stones of the valley have been sweet to him, and every man shall depart after him, and +there are innumerable +ones before him. + +How then do you⌃ comfort me in vain? whereas I have no rest from your molestation. + +

+ + +

Then Eliphaz the Thaemanite answered and said, + +Is it not the Lord that teaches understanding and knowledge? + +For what matters it to the Lord, if you were blameless in +your works? or is it profitable that you should perfect your way? + +Will you maintain and plead your own cause? and will he enter into judgment with you? + +Is not your wickedness abundant, and your sins innumerable? + +And you have taken security of your brethren for nothing, and have taken away the clothing of the naked. + +Neither have you given water to the thirsty to drink, but have taken away the morsel of the hungry. + +And you have accepted the persons of some; and you have established those +that were already settled on the earth. + +But you have sent widows away empty, and has afflicted orphans. + +Therefore snares have compassed you, and disastrous war has troubled you. + +The light has proved darkness to you, and water has covered you on your lying down. + +Does not he that dwells in the high places observe? and has he not brought down the proud? + +And you have said, What does the Mighty One know? does he judge in the dark? + +A cloud is his hiding-place, and he shall not be seen; and he passes through the circle of heaven. + +Will you +not mark the old way, which righteous men have trodden? + +who were seized before their time: their foundations +are as an overflowing stream. + +Who say, What will the Lord do to us? or what will the Almighty bring upon us? + +Yet he filled their houses with good things: but the counsel for the wicked is far from him. + +The righteous have seen +it, and laughed, and the blameless one has derided +them. + +Verily their substance has been utterly destroyed, and the fire shall devour what is left of their +property. + +Be firm, I pray you, if you can endure; then your fruit shall prosper. + +And receive a declaration from his mouth, and lay up his words in your heart. + +And if you shall turn and humble yourself before the Lord, you have +thus removed unrighteousness far from your habitation. + +You shall lay up for yourself +treasure in a heap on the rock; and Sophir +shall be as the rock of the torrent. + +So the Almighty shall be your helper from enemies, and he shall bring you forth pure as silver that has been tried by fire. + +Then shall you have boldness before the Lord, looking up cheerfully to heaven. + +And he shall hear you when you pray to him, and he shall grant you +power to pay your vows. + +And he shall establish to you again a habitation of righteousness and there shall be light upon your paths. + +Because you have humbled yourself; and you shall say, +Man has behaved proudly, but he shall save him that is of lowly eyes. + +He shall deliver the innocent, and do you save yourself by your pure hands. + +

+ + +

Then Job answered and said, + +Yes, I know that pleading is out of my reach; and his hand has been made heavy upon my groaning. + +Who would then know that I might find him, and come to an end +of the matter? + +And I would plead my own cause, and he would fill my mouth with arguments. + +And I would know the remedies which he would speak to me, and I would perceive what he would tell me. + +Though he should come on me in +his great strength, then he would not threaten me; + +for truth and reproof are from him; and he would bring forth my judgment to an end. + +For if I shall go first, and exist no longer, still what do I know +concerning the latter end? + +When he wrought on the left hand, then I observed +it not: his right hand shall encompass me but I shall not see +it. + +For he knows already my way; and he has tried me as gold. + +And I will go forth according to his commandments, for I have kept his ways; and I shall not turn aside from his commandments, + +neither shall I transgress; but I have hid his words in my bosom. + +And if too he has thus judged, who is he that has contradicted, for he has both willed +a thing and done it. + +Therefore am I troubled at him; and when I was reproved, I thought of him. Therefore let me take good heed before him: I will consider, and be afraid of him. + +But the Lord has softened my heart, and the Almighty has troubled me. + +For I knew not that darkness would come upon me, and thick darkness has covered +me before my face. + +

+ + +

But why have the seasons been hidden from the Lord, + +while the ungodly have passed over the bound, carrying off the flock with the shepherd? + +They have led away, the ass of the fatherless, and taken the widow's ox for a pledge. + +They have turned aside the weak from the right way: and the meek of the earth have hidden themselves together. + +And they have departed like asses in the field, having gone forth on my account according to their own order: his bread is sweet to +his little ones. + +They have reaped a field that was not their own before the time: the poor have laboured in the vineyards of the ungodly without pay and without food. + +They have caused many naked to sleep without clothes, and they have taken away the covering of their body. + +They are wet with the drops of the mountains: they have embraced the rock, because they had no shelter. + +They have snatched the fatherless from the breast, and have afflicted the outcast. + +And they have wrongfully caused +others to sleep without clothing, and taken away the morsel of the hungry. + +They have unrighteously laid wait in narrow places, and have not known the righteous way. + +Who have cast forth +the poor from the city and their own houses, and the soul of the children has groaned aloud. + +Why then has he not visited these? forasmuch as they were upon the earth, and took no notice, and they knew not the way of righteousness, neither have they walked in their +appointed paths? + +But having known their works, he delivered them into darkness: and in the night one will be as a thief: + +and the eye of the adulterer has watched +for the darkness, saying, Eye shall not perceive me, and he puts a covering on his face. + +In darkness he digs through houses: by day they conceal themselves securely: they know not the light. + +For the morning is to them all +as the shadow of death, for +each will be conscious of the terror of the shadow of death. + +He is swift on the face of the water: let his portion be cursed on the earth; and let their plants be laid bare. + + +Let them be withered upon the earth; for they have plundered the sheaves of the fatherless. + +Then is his sin brought to remembrance, and he vanishes like a vapor of dew: but let what he has done be recompensed to him, and let every unrighteous one be crushed like rotten wood. + +For he has not treated the barren woman well, and has had no pity on a feeble woman. + +And in wrath he has overthrown the helpless: therefore when he has arisen, +a man will not feel secure of his own life. + +When he has fallen sick, let him not hope to recover: but let him perish by disease. + +For his exaltation has hurt many; but he has withered as mallows in the heat, or as an ear of corn falling off of itself from the stalk. + +But if not, who is he that says I speak falsely, and will make my words of no account? + +

+ + +

Then Baldad the Sauchite answered and said, + +What beginning or fear is his—even he that makes all things in the highest? + +For let none think that there is a respite for robbers: and upon whom will there not come a snare from him? + +For how shall a mortal be just before the Lord? or who that is born of a woman shall purify himself? + +If he gives an order to the moon, then it shines not; and the stars are not pure before him. + +But alas! man is corruption, and the son of man a worm. + +

+ + +

But Job answered and said, + +To whom do you attach yourself, or whom are you going to assist? is it not he that +has much strength, and +he who has a strong arm? + +To whom have you given counsel? is it not to him who has all wisdom? whom will you follow? is it not one who has the greatest power? + +To whom have you uttered words? and whose breath is it that has come forth from you? + +Shall giants be born from under the water and the inhabitants thereof? + +Hell is naked before him, and destruction has no covering. + +He stretches out the north wind upon nothing, and he upon nothing hangs the earth; + +binding water in his clouds, and the cloud is not torn under it. + +He keeps back the face of his throne, stretching out his cloud upon it. + +He has encompassed the face of the water by an appointed ordinance, until the end of light and darkness. + +The pillars of heaven are prostrate and astonished at his rebuke. + +He has calmed the sea with +his might, and by +his wisdom the whale has been overthrown. + +And the barriers of heaven fear him, and by a command he has slain the apostate dragon. + +Behold, these are parts of his way; and we will listen to him at the least intimation of his word: but the strength of his thunder who knows, when he shall employ +it? + +

+ + +

And Job further continued and said in his parable, + + +As God lives, who has thus judge me; and the Almighty, who has embittered my soul; + +verily, while my breath is yet in +me, and the breath of God which remains to me is in my nostrils, + +my lips shall not speak evil words, neither shall my soul meditate unrighteous thoughts. + +Far be it from me that I should justify you till I die; for I will not let go my innocence, + +but keeping fast to +my righteousness I will by no means let it go: for I am not conscious to myself of having done any thing amiss. + +Nay rather, but let my enemies be as the overthrow of the ungodly, and they that rise up against me, as the destruction of transgressors. + +For what is the hope of the ungodly, that he holds to it? will he indeed trust in the Lord +and be saved? + +Will God hear his prayer? or, when distress has come upon him, + +has he any confidence before him? or will +God hear him as he calls upon him? + +Yet now I will tell you what is in the hand of the Lord: I will not lie concerning the things which are with the Almighty. + +Behold, you⌃ all know that you⌃ are adding vanity to vanity. + +This is the portion of an ungodly man from the Lord, and the possession of oppressors shall come upon them from the Almighty. + +And if their children be many, they shall be for slaughter: and if they grow up, they shall beg. + +And they that survive of him shall utterly perish, and no one shall pity their widows. + +Even if he should gather silver as earth, and prepare gold as clay; + +All these things shall the righteous gain, and the true-hearted shall possess his wealth. + +And his house is gone like moths, and like a spider's web. + +The rich man shall lie down, and shall not continue: he has opened his eyes, and he is not. + +Pains have come upon him as water, and darkness has carried him away by night. + +And a burning wind shall catch him, and he shall depart, and it shall utterly drive him out of his place. + +And +God shall cast +trouble upon him, and not spare: he would fain flee out of his hand. + +He shall cause +men to clap their hands against them, and shall hiss him out of his place. + +

+ + +

For there is a place for the silver, whence it comes, and a place for the gold, whence it is refined. + +For iron comes out of the earth, and brass is hewn out like stone. + +He has set a bound to darkness, and he searches out every limit: a stone +is darkness, and the shadow of death. + +There is a cutting off the torrent by reason of dust: so they that forget the right way are weakened; they are removed from +among men. + + +As for the earth, out of it shall come bread: under it has been turned up as it were fire. + +Her stones are the place of the sapphire: and +her dust +supplies man with gold. + + +There is a path, the fowl has not known it, neither has the eye of the vulture seen it: + +neither have the sons of the proud trodden it, a lion has not passed upon it. + +He has stretched forth his hand on the sharp +rock, and turned up mountains by the roots: + +and he has interrupted the whirlpools of rivers, and my eye has seen every precious thing. + +And he has laid bare the depths of rivers, and has brought his power to light. + +But whence has wisdom been discovered? and what is the place of knowledge? + +A mortal has not known its way, neither indeed has it been revealed among men. + +The depth said, It is not in me: and the sea said, It is not with me. + +One shall not give fine gold instead of it, neither shall silver be weighed in exchange for it. + +Neither shall it be compared with gold of Sophir, with the precious onyx and sapphire. + +Gold and crystal shall not be equalled to it, neither shall vessels of gold be its exchange. + +Coral and fine pearl shall not be mentioned: but do you esteem wisdom above the most precious things. + +The topaz of Ethiopia shall not be equalled to it; it shall not be compared with pure gold. + +Whence then is wisdom found? and of what kind is the place of understanding? + +It has escaped the notice of every man, and has been hidden from the birds of the sky. + +Destruction and Death said, We have heard the report of it. + +God has well ordered the way of it, and he knows the place of it. + +For he surveys the whole +earth under heaven, knowing the things in the earth: + +all that he has made; the weight of the winds, the measures of the water. + +When he made +them, thus he saw and numbered them, and made a way for the pealing of the thunder. + +Then he saw it, and declared it: he prepared it +and traced it out. + +And he said to man, Behold, godliness is wisdom: and to abstain from evil is understanding. + +

+ + +

And Job continued and said in his parable, + +Oh that I were as in months past, wherein God preserved me! + +As when his lamp shone over my head; when by his light I walked through darkness. + + +As when I steadfastly pursued my ways, when God took care of my house. + +When I was very fruitful, and my children were about me; + +when my ways were moistened with butter, and the mountains flowed for me with milk. + +When I went forth early in the city, and the seat was placed for me in the streets. + +The young men saw me, and hid themselves: and all the old men stood up. + +And the great men ceased speaking, and laid their finger on their mouth. + +And they that heard +me blessed me, and their tongue clave to their throat. + +For the ear heard, and blessed me; and the eye saw me, and turned aside. + +For I saved the poor out of the hand of the oppressor, and helped the fatherless who had no helper. + +Let the blessing of the perishing one come upon me; yes, the mouth of the widow has blessed me. + +Also I put on righteousness, and clothed myself with judgment like a mantle. + +I was the eye of the blind, and the foot of the lame. + +I was the father of the helpless; and I searched out the cause which I knew not. + +And I broke the jaw teeth of the unrighteous; I plucked the spoil out of the midst of their teeth. + +And I said, My age shall continue as the stem of a palm tree; I shall live a long while. + + +My root was spread out by the water, and the dew would lodge on my crop. + +My glory was fresh in me, and by bow prospered in his hand. + + +Men heard me, and gave heed, and they were silent at my counsel. + +At my word they spoke not again, and they were very gland whenever I spoke to them. + +As the thirsty earth expecting the rain, so they +waited for my speech. + +Were I to laugh on them, they would not believe +it; and the light of my face has not failed. + +I chose out their way, and sat chief, and lived as a king in the midst of warriors, as one comforting mourners. + +

+ + +

But now the youngest have laughed me to scorn, now they reprove me in +their turn, whose fathers I set at nothing; whom I did not deem worthy +to be with my shepherd dogs. + +Yes, why had I the strength of their hands? for them the full term +of life was lost. + + +One is childless in lack and famine, +such as they that fled but lately the distress and misery of drought. + +Who compass the salt places on the sounding +shore, who had salt +herbs for their food, and were dishonorable and of no repute, in lack of every good thing; who also ate roots of trees by reason of great hunger. + +Thieves have risen up against me, + +whose houses were the caves of the rocks, who lived under the wild shrubs. + +They will cry out among the rustling +bushes. + + +They are sons of fools and vile men, +whose name and glory +are quenched from off the earth. + +But now I am their music, and they have me for a byword. + +And they stood aloof and abhorred me, and spared not to spit in my face. + +For he has opened his quiver and afflicted me: they also have cast off the restraint of my presence. + +They have risen up against +me on the right hand of +their offspring; they have stretched out their foot, and directed against me the ways of their destruction. + +My paths are ruined; for they have stripped off my raiment: he has shot at me with his weapons. + +And he has pleaded against me as he will: I am overwhelmed with pains. + +My pains return upon +me; my hope is gone like the wind, and my safety as a cloud. + +Even now my life shall be poured forth upon me; and days of anguish seize me. + +And by night my bones are confounded; and my sinews are relaxed. + +With great force +my disease has taken hold of my garment: it has compassed me as the collar of my coat. + +And you have counted me as clay; my portion in dust and ashes. + +And I have cried to you, but you hear me not: but they stood still, and observed me. + +They attacked me also without mercy: you have scourged me with a strong hand. + +And you have put me to grief, and have cast me away from safety. + +For I know that death will destroy me: for the earth is the house +appointed for every mortal. + +Oh then that I might lay hands upon myself, or at least ask another, and he should do this for me. + +Yet I wept over every helpless man; I groaned when I saw a man in distress. + +But I, when I waited for good things, behold, days of evils came the more upon me. + +My belly boiled, and would not cease: the days of poverty prevented me. + +I went mourning without restraint: and I have stood and cried out in the assembly. + +I am become a brother of monsters, and a companion of ostriches. + +And my skin has been greatly blackened, and my bones are burned with heat. + +My harp also has been turned into mourning, and my song into my weeping. + +

+ + +

I made a covenant with my eyes, and I will not think upon a virgin. + +Now what portion has God given from above? and is there an inheritance +given of the Mighty One from the highest? + +Alas! destruction to the unrighteous, and rejection to them that do iniquity. + +Will he not see my way, and number all my steps? + +But if I had gone with scorners, and if too my foot has hasted to deceit: + +(for I am weighed in a just balance, and the Lord knows my innocence:) + +if my foot has turned aside out of the way, or if my heart has followed my eye, and if too I have touched gifts with my hands; + +then let me sow, and let others eat; and let me be uprooted on the earth. + +If my heart has gone forth after another man's wife, and if I laid wait at her doors; + +then let my wife also please another, and let my children be brought low. + +For the rage of anger is not to be controlled, +in the case of defiling +another man's wife. + +For it is a fire burning on every side, and whoever it attacks, it utterly destroys. + +And if too I despised the judgment of my servant or +my handmaid, when they pleaded with me; + +what then shall I do if the Lord should try me? and if also he should at all visit me, can I make an answer? + +Were not they too formed as I also was formed in the womb? yes, we were formed in the same womb. + +But the helpless missed not whatever need they had, and I did not cause the eye of the widow to fail. + +And if too I ate my morsel alone, and did not impart +of it to the orphan; + +(for I nourished +them as a father from my youth and guided +them from my mother's womb.) + +And if too I overlooked the naked as he was perishing, and did not clothe him; + +and if the poor did not bless me, and their shoulders were +not warmed with the fleece of my lambs; + +if I lifted my hand against an orphan, trusting that my strength was far superior +to his: + +let them my shoulder start from the blade-bone, and my arm be crushed off from the elbow. + +For the fear of the Lord constrained me, and I can’t bear up by reason of his burden. + +If I made gold my treasure, and if too I trusted the precious stone; + +and if too I rejoiced when my wealth was abundant, and if too I laid my hand on innumerable +treasures: + +(do we not see the shining sun eclipsed, and the moon waning? for they have not +power to continue:) + +and if my heart was secretly deceived, and if I have laid my hand upon my mouth and kissed it: + +let this also then be reckoned to me as the greatest iniquity: for I +should have lied against the Lord Most High. + +And if too I was glad at the fall of my enemies, and my heart said, Aha! + +let then my ear hear my curse, and let me be a byword among my people in my affliction. + +And if too my handmaids have often said, Oh that we might be satisfied with his flesh; (whereas I was very kind: + +for the stranger did not lodge without, and my door was opened to every one that came:) + +or if too having sinned unintentionally, I hid my sin; + +(for I did not stand in awe of a great multitude, so as not to declare boldly before them:) and if too I permitted a poor man to go out of my door with an empty bosom: + +(Oh that I had a hearer,) and if I had not feared the hand of the Lord; and +as to the written charge which I had against any one, + +I would place +it as a chaplet on my shoulders, and read it. + +And if I did not read it and return it, having taken nothing from the debtor: + +If at any time the land groaned against me, and if its furrows mourned together; + +and if I ate its strength alone without price, and if I too grieved the heart of the owner of the soil, by taking +anything from +him: + +then let the nettle come up to me instead of wheat, and a bramble instead of barley. And Job ceased speaking. + +

+ + +

And his three friends also ceased any longer to answer Job: for Job was righteous before them. + +Then Elius the son of Barachiel, the Buzite, of the kindred of Ram, of the country of Ausis, was angered: and he was very angry with Job, because he justified himself before the Lord. + +And he was also very angry with +his three friends, because they were not able to return answers to Job, yet set him down for an ungodly man. + +But Elius had forborne to give an answer to Job, because they were older than he. + +And Elius saw that there was no answer in the mouth of the three men; and he was angered in his wrath. + +And Elius the Buzite the son of Barachiel answered and said, I am younger in age, and you⌃ are elder, therefore I kept silence, fearing to declare to you my own knowledge. + +And I said, It is not time that speaks, though in many years +men know wisdom: + +but there is a spirit in mortals; and the inspiration of the Almighty is that which teaches. + +The long-lived are not wise +as such; neither do the aged know judgment. + +Therefore I said, Hear me, and I will tell you what I know. + +Listen to my words; for I will speak in your hearing, until you⌃ shall have tried +the matter with words: + +and I shall understand as far as you; and, behold, there was no one of you that answered Job his words in argument, + +lest you⌃ should say, We have found that we have added wisdom to the Lord. + +And you⌃ have commissioned a man to speak such words. + +They were afraid, they answered no longer; they gave up their speaking. + +I waited, (for I had not spoken,) because they stood still, they answered not. + +And Elius continued, and said, I will again speak, + +for I am full of words, for the spirit of my belly destroys me. + +And my belly is as a skin of sweet wine, bound up +and ready to burst; or as a brazier's laboring bellows. + +I will speak, that I may open my lips and relieve myself. + +For truly I will not be awed because of man, nor indeed will I be confounded before a mortal. + +For I know not how to respect persons: and if otherwise, even the moths would eat me. + +

+ + +

Howbeit hear, Job, my words, and listen to my speech. + +For behold, I have opened my mouth, and my tongue has spoken. + +My heart +shall be found pure by +my words; and the understanding of my lips shall meditate purity. + +The Divine Spirit is that which formed me, and the breath of the Almighty that which teaches me. + +If you can, give me an answer: wait therefore; stand against me, and I +will stand against you. + +You are formed out of the clay as also I: we have been formed out of the same +substance. + +My fear shall not terrify you, neither shall my hand be heavy upon you. + +But you have said in my ears, (I have heard the voice of your words;) because you say, I am pure, not having sinned; + +I am blameless, for I have not transgressed. + +Yet he has revealed a charge against me, and he has reckoned me as an adversary. + +And he has put my foot in the stocks, and has watched all my ways. + +For how say you, I am righteous, yet he has not listened to me? for he that is above mortals is eternal. + +But you say, Why has he not heard every word of my cause? + +For when the Lord speaks once, or a second time, + + +sending a dream, or in the meditation of the night; (as when a dreadful alarm happens to fall upon men, in slumberings on the bed:) + +then opens he the understanding of men: he scares them with such fearful visions: + +to turn a man from unrighteousness, and he delivers his body from a fall. + +He spares also his soul from death, and +suffers him not to fall in war. + +And again, he chastens him with sickness on his bed, and the multitude of his bones is benumbed. + +And he shall not be able to take any food, though his soul shall desire meat; + +until his flesh shall be consumed, and he shall show his bones bare. + +His soul also draws near to death, and his life is in Hades. + +Though there should be a thousand messengers of death, not one of them shall wound him: if he should purpose in his heart to turn to the Lord, and declare to man his fault, and show his folly; + +he will support him, that he should not perish, and will restore his body as +fresh plaster upon a wall; and he will fill his bones with morrow. + +And he will make his flesh tender as that of a babe, and he will restore him among men in +his full strength. + +And he shall pray to the Lord, and his prayer shall be accepted of him; he shall enter with a cheerful countenance, with a full expression +of praise: for he will render to men +their due. + +Even then a man shall blame himself, saying, What kind of things have I done? and he has not punished me according to the full amount of my sins. + +Deliver my soul, that it may not go to destruction, and my life shall see the light. + +Behold, all these things, the Mighty One works in a threefold manner with a man. + +And he has delivered my soul from death, that my life may praise him in the light. + +Listen, Job, and hear me: be silent, and I will speak. + +If you have words, answer me: speak, for I desire you to be justified. + +If not, do you hear me: be silent, and I will teach you. + +

+ + +

And Elius continued, and said, + +Hear me, you⌃ wise men; listen, you⌃ that have knowledge. + +For the ear tries words, and the mouth tastes meat. + +Let us choose judgment to ourselves: let us know amount ourselves what is right. + +For Job has said, I am righteous: the Lord has removed my judgment. + +And he has erred in my judgment: my wound is severe without unrighteousness +of mine. + +What man is as Job, drinking scorning like water? + + +saying, I have not sinned, nor committed ungodliness, nor had fellowship with workers of iniquity, to go with the ungodly. + +For you should not say, There shall be no visitation of a man, whereas +there is a visitation on him from the Lord. + +Therefore hear me, you⌃ that are wise in heart: far be it from me to sin before the Lord, and to pervert righteousness before the almighty. + +Yes, he renders to a man accordingly as each of them does, and in a man's path he will find him. + +And think you that the Lord will do wrong, or will the Almighty who made the earth wrest judgment? + +And who is he that made +the whole world under heaven, and all things therein? + +For if he would confine, and restrain his spirit with himself; + +all flesh would die together, and every mortal would return to the earth, whence also he was formed. + +Take heed lest he rebuke +you: hear this, listen to the voice of words. + +Behold then the one that hates iniquities, and that destroys the wicked, who is for ever just. + + +He is ungodly that says to a king, You are a transgressor, +that says to princes, O most ungodly one. + + +Such a one as would not reverence the face of an honorable man, neither knows how to give honor to the great, so as that their persons should be respected. + +But it shall turn out vanity to them, to cry and beseech a man; for they dealt unlawfully, the poor being turned aside +from their right. + +For he surveys the works of men, and nothing of what they do has escaped him. + +Neither shall there be a place for the workers of iniquity to hide themselves. + +For he will not lay upon a man more +than right. + +For the Lord looks down upon all men, who comprehends unsearchable things, glorious also and excellent things without number. + +Who discovers their works, and will bring night about +upon them, and they shall be brought low. + +And he quite destroys the ungodly, for they are seen before him. + +Because they turned aside from the law of God, and did not regard his ordinances, + +so as to bring before him the cry of the needy; for he will hear the cry of the poor. + +And he will give quiet, and who will condemn? and he will hide his face, and who shall see him? whether +it be done against a nation, or against a man also: + +causing a hypocrite to be king, because of the waywardness of the people. + +For +there is one that says to the Mighty One, I have received +blessings; I will not take a pledge: + +I will see apart from myself: do you show me if I have done unrighteousness; I will not do +so any more. + +Will he take vengeance for it on you, whereas you will put +it far +from you? for you shall choose, and not I; and what you know, speak you. + +Because the wise in heart shall say this, and a wise man listens to my word. + +But Job has not spoken with understanding, his words are not +uttered with knowledge. + +Howbeit do you learn, Job: no longer make answer as the foolish: + +that we add not to our sins: for iniquity will be reckoned against us, if +we speak many words before the Lord. + +

+ + +

And Elius resumed and said, + +What is this that you think to be according to right? who are you that you have said, I am righteous before the Lord? + +I will answer you, and your three friends. + +Look up to the sky and see; and consider the clouds, how high +they are above you. + +If you have sinned, what will you do? + +and if too you have transgressed much, what can you perform? + +And suppose you are righteous, what will you give him? or what shall he receive of your hand? + +Your ungodliness +may affect a man who is like to you; or your righteousness a son of man. + +They that are oppressed of a multitude will be ready to cry out; they will call for help because of the arm of many. + +But none said, Where is God that made me, who appoints the night-watches; + +who makes me to differ from the four-footed beasts of the earth, and from the birds of the sky? + +There they shall cry, and none shall listen, even because of the insolence of wicked men. + +For the Lord desires not to look on error, for he is the Almighty One. + +He beholds them that perform lawless deeds, and he will save me: and do you plead before him, if you can praise him, as it is +possible even now. + +For he is not +now regarding his wrath, nor has he noticed severely any trespass. + +Yet Job vainly opens his mouth, in ignorance he multiplies words. + +

+ + +

And Elius further continued, and said, + +Wait for me yet a little while, that I may teach you: for there is yet speech in me. + +Having fetched my knowledge from afar, and according to my works, + +I will speak just things truly, and you shall not unjustly receive unjust words. + +But know that the Lord will not cast off an innocent man: being mighty in strength of wisdom, + +he will not by any means save alive the ungodly: and he will grant the judgment of the poor. + +He will not turn away his eyes from the righteous, but +they shall be with kings on the throne: and he will establish them in triumph, and they shall be exalted. + +But they that are bound in fetters shall be holden in cords of poverty. + +And he shall recount to them their works, and their transgressions, for such will act with violence. + +But he will listen to the righteous: and he has said that they shall turn from unrighteousness. + +If they should hear and serve +him, they shall spend their days in prosperity, and their years in honor. + +But he preserves not the ungodly; because they are not willing to know the Lord, and because when reproved they were disobedient. + +And the hypocrites in heart will array wrath +against themselves; they will not cry, because he has bound them. + +Therefore let their soul die in youth, and their life be wounded by messengers +of death. + +Because they afflicted the weak and helpless: and he will vindicate the judgment of the meek. + +And he has also enticed you out of the mouth of the enemy: + + +there is a deep gulf +and a rushing stream beneath it, and your table came down full of fatness. Judgment shall not fail from the righteous; + +but there shall be wrath upon the ungodly, by reason of the ungodliness of the bribes which they received for iniquities. + +Let not +your mind willingly turn you aside from the petition of the feeble that are in distress. + +And draw not forth all the mighty +men by night, so that the people should go up instead of them. + +But take heed lest you do that which is wrong: for of this you have made choice because of poverty. + +Behold, the Mighty One shall prevail by his strength: for who is powerful as he is? + +And who is he that examines his works? or who can say, he has wrought injustice? + +Remember that his works are great +beyond those which men have attempted. + +Every man has seen in himself, how many mortals are wounded. + +Behold, the Mighty One is great, and we shall not know +him: the number of his years is even infinite. + +And the drops of rain are numbered by him, and shall be poured out in rain to form a cloud. + +The ancient +heavens shall flow, and the clouds overshadow innumerable mortals: he has fixed a time to cattle, and they know the order of rest. +Yet by all these things your understanding is not astonished, neither is your mind disturbed in +your body. + +And though one should understand the outspreadings of the clouds, +or the measure of his tabernacle; + +behold he will stretch his bow against him, and he covers the bottom of the sea. + +For by them he will judge the nations: he will give food to him that has strength. + +He has hidden the light in +his hands, and given charge concerning it to the interposing +cloud. + +The Lord will declare concerning this +to his friend: +but there is a portion also for unrighteousness. + +

+ + +

At this also my heart is troubled, and moved out of its place. + +Hear you a report by the anger of the Lord's wrath, and a discourse shall come out of his mouth. + +His dominion is under the whole heaven, and his light is at the extremities of the earth. + +After him shall be a cry with a +loud voice; he shall thunder with the voice of his excellency, yet he shall not cause men to pass away, for one shall hear his voice. + +The Mighty One shall thunder wonderfully with his voice: for he has done great things which we knew not; + +commanding the snow, Be you upon the earth, and the stormy rain, and the storm of the showers of his might. + +He seals up the hand of every man, that every man may know his own weakness. + +And the wild beasts come in under the covert, and rest in +their lair. + +Troubles come on out of the secret chambers, and cold from the mountain-tops. + +And from the breath of the Mighty One he will send frost; and he guides the water in whatever way he pleases. + +And +if a cloud obscures +what is precious +to him, his light will disperse the cloud. + +And he will carry round the encircling +clouds by his governance, to +perform their works: whatever he shall command them, + +this has been appointed by him on the earth, whether for correction, +or for his land, or if he shall find him +an object for mercy. + +Listen to this, O Job: stand still, and be admonished of the power of the Lord. + +We know that god has disposed his works, having made light out of darkness. + +And he knows the divisions of the clouds, and the signal overthrows of the ungodly. + +But your robe is warm, and there is quiet upon the land. + +Will you establish with him +foundations for the ancient +heavens? they are strong as a molten mirror. + +Therefore teach me, what shall we say to him? and let us cease from saying much. + +Have I a book or a scribe my me, that I may stand and put man to silence? + +But the light is not visible to all: it shines afar off in the heavens, as that which is from him in the clouds. + +From the +north come the clouds shining like gold: in these great are the glory and honor of the Almighty; + +and we do not find another his equal in strength: +as for him that judges justly, do you not think that he listens? + +Therefore men shall fear him; and the wise also in heart shall fear him. + +

+ + +

And after Elius had ceased from speaking, the Lord spoke to Job through the whirlwind and clouds, +saying, + +Who is this that hides counsel from me, and confines words in +his heart, and thinks to conceal +them from me? + +Gird your loins like a man; and I will ask you, and do you answer me. + +Where were you when I founded the earth? tell me now, if you have knowledge, + +who set the measures of it, if you know? or who stretched a line upon it? + +On what are its rings fastened? and who is he that laid the corner-stone upon it? + +When the stars were made, all my angels praised me with a loud voice. + +And I shut up the sea with gates, when it rushed out, coming forth out its mother's womb. + +And I made a cloud its clothing, and swathed it in mist. + +And I set bounds to it, surrounding it with bars and gates. + +And I said to it, Hitherto shall you come, but you shall not go beyond, but your waves shall be confined within you. + +Or did I order the morning light in your time; and +did the morning star +then first see his appointed place; + +to lay hold of the extremities of the earth, to cast out the ungodly out of it? + +Or did you take clay of the ground, and form a living creature, and set it with the power of speech upon the earth? + +And have you removed light from the ungodly, and crushed the arm of the proud? + +Or have you gone to the source of the sea, and walked in the tracks of the deep? + +And do the gates of death open to you for fear; and did the porters of hell quake when they saw you? + +And have you been instructed in the breadth of the +whole earth under heaven? tell me now, what is the extent of it? + +And in what kind of a land does the light dwell? and of what kind is the place of darkness? + +If you could bring me to their +utmost boundaries, and if also you know their paths; + +I know then that you were born at that time, and the number of your years is great. + +But have you gone to the treasures of snow? and have you seen the treasures of hail? + +And is there a store +of them, for you against the time of +your enemies, for the day of wars and battle? + +And whence proceeds the frost? or +whence is the south wind dispersed over the +whole world under heaven? + +And who prepared a course for the violent rain, and a way for the thunders; + +to rain upon the land where +there is no man, the wilderness, where there is not a man in it; so as to feed the untrodden and uninhabited +land, + +and cause it to send forth a crop of green herbs? + +Who is the rain's father? and who has generated the drops of dew? + +And out of whose womb comes the ice? and who has produced the frost in the sky, + +which descends like flowing water? who has terrified the face of the ungodly? + +And do you understand the band of Pleias, and have you opened the barrier of Orion? + +Or will you reveal Mazuroth in his season, and the evening star with his rays? Will you guide them? + +And know you the changes of heaven, or the events which take place together under heaven? + +And will you call a cloud with your voice, and will it obey you with a violent shower of much rain? + +And will you send lightnings, and they shall go? and shall they say to you, What is +your pleasure? + +And who has given to women skill in weaving, or knowledge of embroidery? + +And who is he that numbers the clouds in wisdom, and has bowed the heaven +down to the earth? + +For it is spread out as dusty earth, and I have cemented it as one hewn stone to another. + +And will you hunt a prey for the lions? and satisfy the desires of the serpents? + +For they fear in their lairs, and lying in wait couch in the woods. + +And who has prepared food for the raven? for its young ones wander and cry to the Lord, in search of food. + +

+ + +

+Say if you know the time of the bringing forth of the wild goats of the rock, and +if you have marked the calving of the hinds: + +and +if you have have numbered the full months of their being with young, and +if you have relieved their pangs: + +and have reared their young without fear; and will you loosen their pangs? + +Their young will break forth; they will be multiplied with offspring: +their young will go forth, and will not return to them. + +And who is he that sent forth the wild ass free? and who loosed his bands? + +whereas I made his habitation the wilderness, and the salt land his coverts. + +He laughs to scorn the multitude of the city, and hears not the chiding of the tax-gatherer. + +He will survey the mountains +as his pasture, and he seeks after every green thing. + +And will the unicorn be willing to serve you, or to lie down at your manger? + +And will you bind his yoke with thongs, or will he plow furrows for you in the plain? + +And do you trust him, because his strength is great? and will you commit your works to him? + +And will you believe that he will return to you your seed, and bring +it in +to your threshing floor? + +The peacock has a beautiful wing: if the stork and the ostrich conceive, +it is worthy of notice, + +for +the ostrich will leave her eggs in the ground, and warm them on the dust, + +and has forgotten that the foot will scatter them, and the wild beasts of the field trample them. + +She has hardened +herself against her young ones, as though +she bereaved not herself: she labors in vain without fear. + +For God has withholden wisdom from her, and not given her a portion in understanding. + +In her season she will lift herself on high; she will scorn the horse and his rider. + +Have you invested the horse with strength, and clothed his neck with terror? + +And have you clad him in perfect armor, and made his breast glorious with courage? + +He paws exulting in the plain, and goes forth in strength into the plain. + +He laughs to scorn a king as he meets him, and will by no means turn back from the sword. + +The bow and sword resound against him; and +his rage will swallow up the ground: + +and he will not believe until the trumpet sounds. + +And when the trumpet sounds, he says, Aha! and afar off he smells the war with prancing and neighing. + +And does the hawk remain steady by your wisdom, having spread out her wings unmoved, looking toward the region of the south? + +And does the eagle rise at your command, and the vulture remain sitting over his nest, + +on a crag of a rock, and in a secret +place? + +Thence he seeks food, his eyes observe from far. + +And his young ones roll themselves in blood, and wherever the carcasses may be, immediately they are found. + +And the Lord God answered Job, and said, + +Will +any one pervert judgment with the Mighty One? and he that reproves God, let him return it for answer. + +And Job answered and said to the Lord, + +Why do I yet plead? being rebuked even while reproving the Lord: hearing such things, whereas I am nothing: and what shall I answer to these +arguments? I will lay my hand upon my mouth. + +I have spoken once; but I will not do so a second time. + +

+ + +

And the Lord yet again answered and spoke to Job out of the cloud, +saying, + +Nay, gird up now your loins like a man; and I will ask you, and do you answer me. + +Do not set aside my judgment: and do you think that I have dealt with you in any other way, than that you might appear to be righteous? + +Have you an arm like the Lord's? or do you thunder with a voice like his? + +Assume now a lofty bearing and power; and clothe yourself with glory and honor. + +And send forth messengers with wrath; and lay low every haughty one. + +Bring down also the proud man; and consume at once the ungodly. + +And hide them together in the earth; and fill their faces with shame. + + +Then will I confess that your right hand can save +you. + +But now look at the wild beasts with you; they eat grass like oxen. + +Behold now, his strength is in his loins, and his force is in the navel of his belly. + +He sets up his tail like a cypress; and his nerves are wrapped together. + +His sides are sides of brass; and his backbone is +as cast iron. + +This is the chief of the creation of the Lord; made to be played with by his angels. + +And when he has gone up to a steep mountain, he causes joy to the quadrupeds in the deep. + +He lies under trees of every kind, by the papyrus, and reed, and bulrush. + +And the great trees make a shadow over him with their branches, and +so do the bushes of the field. + +If there should be a flood, he will not perceive it; he trust that Jordan will rush up into his mouth. + + +Yet one shall take him in his sight; +one shall catch +him with a cord, and pierce his nose. + +But will you catch the serpent with a hook, and put a halter about his nose? + +Or will you fasten a ring in his nostril, and bore his lip with a clasp? + +Will he address you with a petition? softly, with the voice of a suppliant? + +And will he make a covenant with you? and will you take him for a perpetual servant? + +And will you play with him as with a bird? or bind him as a sparrow for a child? + +And do the nations feed upon him, and the nations of the Phoenicians share him? + +And all the ships come together would not be able to bear the mere skin of his tail; neither +shall they carry his head in fishing vessels. + +But you shall lay your hand upon him +once, remembering the war that is waged by his mouth; and let it not be done any more. + +

+ + +

Have you not seen him? and have you not wondered at the things said +of him? Do you not fear because preparation has been made by me? for who is there that resists me? + +Or who will resist me, and abide, since the whole +world under heaven is mine? + +I will not be silent because of him: though because of his power +one shall pity his antagonist. + +Who will open the face of his garment? and who can enter within the fold of his breastplate? + +Who will open the doors of his face? terror is round about his teeth. + +His inwards are as brazen plates, and the texture of his +skin as a smyrite stone. + +One +part cleaves fast to another, and the air can’t come between them. + +They will remain united each to the other: they are closely joined, and can’t be separated. + +At his sneezing a light shines, and his eyes are +as the appearance of the morning star. + +Out of his mouth proceed as it were burning lamps, and as it were hearths of fire are cast abroad. + +Out of his nostrils proceeds smoke of a furnace burning with fire of coals. + +His breath is +as live coals, and a flame goes out of his mouth. + +And power is lodged in his neck, before him destruction runs. + +The flesh also of his body is joined together: +if one pours +violence upon him, he shall not be moved. + +His heart is firm as a stone, and it stands like an unyielding anvil. + +And when he turns, +he is a terror to the four-footed wild beasts which leap upon the earth. + +If spears should come against him, +men will effect nothing, +either with the spear or the breast-plate. + +For he considers iron as chaff, and brass as rotten wood. + +The bow of brass shall not wound him, he deems a slinger as grass. + +Mauls are counted as stubble; and he laughs to scorn the waving of the firebrand. + +His lair is +formed of sharp points; and all the gold of the sea under him is an immense +quantity of clay. + +He makes the deep boil like a brazen caldron; and he regards the sea as a pot of ointment, + +and the lowest part of the deep as a captive: he reckons the deep as +his range. + +There is nothing upon the earth like to him, formed to be sported with by my angels. + +He beholds every high thing: and he is king of all that are in the waters. + +

+ + +

Then Job answered and said to the Lord, + +I know that you can do all things, and nothing is impossible with you. + +For who is he that hides counsel from you? or who keeps back his words, and thinks to hide them from you? and who will tell me what I knew not, great and wonderful things which I understood not? + +But hear me, O Lord, that I also may speak: and I will ask you, and do you teach me. + +I have heard the report of you by the ear before; but now my eye has seen you. + +Therefore I have counted myself vile, and have fainted: and I esteem myself dust and ashes. + +And it came to pass after the Lord had spoken all these words to Job, +that the Lord said to Eliphaz the Thaemanite, You have sinned, and your two friends: for you⌃ have not said anything true before me, as my servant Job +has. + +Now then take seven bullocks, and seven rams, and go to my servant Job, and he shall offer a burnt offering for you. And my servant Job shall pray for you, for I will only accept him: for but his sake, I would have destroyed you, for you⌃ have not spoken the truth against my servant Job. + +So Eliphaz the Thaemanite, and Baldad the Sauchite, and Sophar the Minaean, went and did as the Lord commanded them: and he pardoned their sin for the sake of Job. + +And the Lord prospered Job: and when he prayed also for his friends, he forgave them +their sin: and the Lord gave Job twice as much, even the double of what he had before. + +And all his brethren and his sisters heard all that had happened to him, and they came to him, and +so did all that had known him from the first: and they ate and drank with him, and comforted him, and wondered at all that the Lord had brought upon him: and each one gave him a lamb, and four drachmas' weight of gold, even of unstamped +gold. + +And the Lord blessed the latter end of Job, +more than the beginning: and his cattle were fourteen thousand sheep, six thousand camels, a thousand yoke of oxen, a thousand she-asses of the pastures. + +And there were born to him seven sons and three daughters. + +And he called the first Day, and the second Casia, and the third Amalthaea's horn. + +And there were not found in comparison with the daughters of Job, fairer +women than they in all the world: and their father gave them an inheritance among their brethren. + +And Job lived after +his affliction one hundred and seventy years: and all the years he lived were two hundred and forty: and Job saw his sons and his sons' sons, the fourth generation. + +And Job died, an old man and full of days: and it is written that he will rise again with those whom the Lord raises up. This man is described in the Syriac book +as living in the land of Ausis, on the borders of Idumea and Arabia: and his name before was Jobab; and having taken an Arabian wife, he begot a son whose name was Ennon. And he himself was the son of his father Zare, one of the sons of Esau, and of his mother Bosorrha, so that he was the fifth from Abraam. And these were the kings who reigned in Edom, which country he also ruled over: first, Balac, the son of Beor, and the name of his city was Dennaba: but after Balac, Jobab, who is called Job, and after him Asom, who was governor out of the country of Thaeman: and after him Adad, the son of Barad, who destroyed Madiam in the plain of Moab; and the name of his city was Gethaim. And +his friends who came to him were Eliphaz, of the children of Esau, king of the Thaemanites, Baldad sovereign the Sauchaeans, Sophar king of the Minaeans. + +

+
+ +Psalms +PSALMS +Psalms +PSA +

PSALMS +

+Psalm. + + +Blessed is the man who has not walked in the counsel of the ungodly, and has not stood in the way of sinners, and has not sat in the seat of +1:1 +Gr. +pestilent. + evil men. + + +But his +1:2 +Gr. +will. + pleasure is in the law of the Lord; and in his law will he meditate day and night. + + +And he shall be as a tree planted by the brooks of waters, which shall yield its fruit in its season, and its leaf shall not fall off; and whatever he shall do shall be prospered. + + +Not so the ungodly; —not so: but rather as the +1:4 +Or. +dust or down. + chaff which the wind scatters away from the face of the earth. + + +Therefore the ungodly shall not rise in judgment, nor sinners in the counsel of the just. + + +For the Lord knows the way of the righteous; but the way of the ungodly shall perish. + + + + + +2:1 +Acts 4:25 + Therefore did the heathen rage, and the nations imagine vain things? + + +The kings of the earth stood up, and the rulers gathered themselves together, against the Lord, and against his Christ; + + + +saying, Let us break through their bonds, and cast away their yoke from us. + + +He that dwells in the heavens shall laugh them to scorn, and the Lord shall mock them. + + +Then shall he speak to them in his anger, and trouble them in his fury. + + +But I have been made king by him on Sion his holy mountain, + + +declaring the ordinance of the Lord: the Lord said to me, +2:7 +Acts 13:33; Heb 1:5 + You are my Son, today have I begotten you. + + +Ask of me, and I will give you the heathen +for your inheritance, and the ends of the earth +for your possession. + + +You shall +2:9 +Gr. +tend them as a shepherd. Rev. 2:27. + rule them with a rod of iron; you shall dash them in pieces as a potter's vessel. + + +Now therefore understand, you⌃ kings: be instructed, all you⌃ that judge the earth. + + +Serve the Lord with fear, and rejoice in him with trembling. + + + +2:12 +Note. +- This rendering or a similar one the Jews maintain. + Accept correction, lest at any time the Lord be angry, and you⌃ should perish from the righteous way: whenever his wrath shall be suddenly kindled, blessed are all they that trust in him. + + + + +A Psalm of David, when he fled from the presence of his son Abessalom. + +O Lord, why are they that afflict me multiplied? many rise up against me. + + +Many say concerning my soul, There is no deliverance for him in his God. +3:2 +The word Διάψαλμα (Selah) has been rendered Pause, as most intelligible to the English reader. + Pause. + + +But you, O Lord, are my helper: my glory, and the one that lifts up my head. + + +I cried to the Lord with my voice, and he heard me out of his holy mountain. Pause. + + +I lay down and slept; I awaked; for the Lord will help me. + + +I will not be afraid of ten thousands of people, who beset me round about. + + +Arise, Lord; deliver me, my God: for you have struck all who were without cause my enemies; you have broken the teeth of sinners. + + +Deliverance is the Lord's, and your blessing is upon your people. + + + + +For the End, a Song of David among +the +Psalms. + +When I called upon +him, the God of my righteousness heard me: you have made room for me in tribulation; pity me, and listen to my prayer. + + +O you⌃ sons of men, how long +will you⌃ be +4:2 +Lit. +heavy of heart. + slow of heart? therefore do you⌃ love vanity, and seek falsehood? Pause. + + +But know you⌃ that the Lord has done wondrous things for his holy one: the Lord will hear me when I cry to him. + + + +4:4 +Eph 4:26 + Be you⌃ angry, and sin not; feel compunction upon your beds for what you⌃ say in your hearts. Pause. + + +Offer the sacrifice of righteousness, and trust in the Lord. + + +Many say, Who will show us good things? the light of your countenance, O Lord, has been manifested towards us. + + +You have put gladness into my heart: they have been satisfied with the fruit of their corn and wine and oil. + + +I will +4:8 +Or. +at the same time. + both lie down in peace and sleep: for you, Lord, only have caused me to dwell securely. + + + + +For the end, a Psalm of David, concerning her that inherits. + +Listen to my words, O Lord, +5:1 +Lit. +understand. + attend to my cry. + + +Attend to the voice of my supplication, my King, and my God: for to you, O Lord, will I pray. + + +In the morning you shall hear my voice: in the morning will I wait upon you, and will look up. + + +For you are not a god that desires iniquity; neither shall the worker of wickedness dwell with you. + + +Neither shall the transgressors continue in your sight: you hate, O Lord, all them that work iniquity. + + +You will destroy all that speak falsehood: the Lord abhors the bloody and deceitful man. + + +But I will enter into your house in the multitude of your mercy: I will worship in your fear toward your holy temple. + + +Lead me, O Lord, in your righteousness because of my enemies; make my way plain before your face. + + +For there is no truth in their mouth; their heart is vain; their +5:9 +Rom 3:13 + throat is an open sepulchre; with their tongues they have used deceit. + + +Judge them, O God; let them +5:10 +Gr. +fall from, +or, +by reason of. + fail of their counsels: cast them out according to the abundance of their ungodliness; for they have provoked you, O Lord. + + +But let all that trust on you be glad in you: they shall exult for ever, and you shall dwell among them; and all that love your name shall rejoice in you. + + +For you, Lord, shall bless the righteous: you have +5:12 +Lit. +crowned. + compassed us as with a shield of favor. + + + + +For the End, a Psalm of David among the Hymns for the eighth. + +O Lord, rebuke me not in your wrath, neither chasten me in your anger. + + +Pity me, O Lord; for I am weak: heal me, O Lord; for my bones are vexed. + + +My soul also is grievously vexed: but you, O Lord, how long? + + +Return, O Lord, deliver my soul: save me for your mercy's sake. + + +For in death no man remembers you: and who will give you thanks in Hades? + + + +6:6 +Gr. +I have laboured. + I am wearied with my groaning; I shall wash my bed every night; I shall water my couch with tears. + + +My eye is troubled because of my wrath; I am worn out because of all my enemies. + + +Depart from me, all you⌃ that work iniquity; for the Lord has heard the voice of my weeping. + + +The Lord has listened to my petition; the Lord has accepted my prayer. + + +Let all my enemies be put to shame and sore troubled: let them be turned back and grievously put to shame speedily. + + + + +A Psalm of David, which he sang to the Lord because of the words of Chusi the +7:0 +Lit. +son of Jemini. + Benjamite. + +O Lord my God, in you have I trusted: save me from all them that persecute me, and deliver me. + + +Lest at any time +the enemy seize my soul as a lion, while there is none to ransom, nor to save. + + +O Lord my God, if I have done this; (if there is unrighteousness in my hands;) + + +if I have requited with evil those who requited me +with good; may I then perish empty by means of my enemies. + + +Let the enemy persecute my soul, and take it; and let him trample my life on the ground, and lay my glory in the dust. Pause. + + +Arise, O Lord, in your wrath; be exalted +7:6 +Heb. 'because of my enemies.' + in the utmost boundaries of my enemies: awake, O Lord my God, according to the decree which you did command. + + +And the congregation of the nations shall compass you: and for this cause do you return on high. + + +The Lord shall judge the nations: judge me, O Lord, according to my righteousness, and according to my innocence that is in me. + + +Oh let the wickedness of sinners come to an end; and +then you shall direct the righteous, O God that search the hearts and reins. + + +My help is righteous, +coming from God who saves the upright in heart. + + +God is a righteous judge, and strong, and patient, not inflicting vengeance every day. + + +If you⌃ will not repent, he will furbish his sword; he has bent his bow, and made it ready. + + +And on it he has fitted the instruments of death; he has completed his arrows for the +7:13 +See +Heb. perhaps 'persecuting ones.' + raging ones. + + +Behold, he has travailed with unrighteousness, he has conceived trouble, and brought forth iniquity. + + +He has opened a pit, and dug it up, and he shall fall into the ditch which he has made. + + +His trouble shall return on his own head, and his unrighteousness shall come down on his own crown. + + +I will give thanks to the Lord according to his righteousness; I will sing to the name of the Lord most high. + + + + +For the end, concerning the wine presses, a Psalm of David. + +O Lord, our Lord, how wonderful is your name in all the earth! for your magnificence is exalted above the heavens. + + + +8:2 +Matt 21:16 + Out of the mouth of babes and sucklings have you perfected praise, because of your enemies; that you might put down the enemy and avenger. + + +For I will regard the heavens, the work of your fingers; the moon and stars, which you have established. + + + +8:4 +Heb 2:6-9 + What is man, that you are mindful of him? or the son of man, that you visit him? + + +You made him a little less than angels, you have crowned him with glory and honor; + + +and you have set him over the works of your hands: you have put all things under his feet: + + +sheep and all +8:7 +Gr. +cows. + oxen, yes and the cattle of the field; + + +the birds of the sky, and the fish of the sea, the +creatures passing through the paths of the sea. + + +O Lord our Lord, how wonderful is your name in all the earth! + + + + +For the end, a Psalm of David, concerning the secrets of the Son. + +I will give thanks to you, O Lord, with my whole heart; I will recount all your wonderful works. + + +I will be glad and exult in you: I will sing to your name, O you Most High. + + +When my enemies are turned back, they shall be feeble and perish at your presence. + + +For you have maintained my cause and my right; you sat on the throne, that judge righteousness. + + +You have rebuked the nations, and the ungodly one has perished; you have blotted out their name for ever, even for ever and ever. + + +The swords of the enemy have failed utterly; and you have destroyed cities: their memorial has been destroyed with a noise, + + +but the Lord endures for ever: he has prepared his throne for judgment. + + +And he will judge the world in righteousness, he will judge the nations in uprightness. + + +The Lord also is become a refuge for the poor, a seasonable help, in affliction. + + +And let them that know your name hope in you: for you, O Lord, have not failed them that diligently seek you. + + +Sing praises to the Lord, who dwells in Sion: declare his dealings among the nations. + + +For he remembered them, +in making inquisition for blood: he has not forgotten the supplication of the poor. + + +Have mercy upon me, O Lord; look upon my affliction +which I suffer of my enemies, you that lift me up from the gates of death: + + +that I may declare all your praises in the gates of the daughter of Sion: I will exult in your salvation. + + +The heathen are caught in the destruction which they planned: in the very snare which they hid is their foot taken. + + +The Lord is known as executing judgments: the sinner is taken in the works of his hands. A song of Pause. + + +Let sinners be driven away into Hades, +even all the nations that forget God. + + +For the poor shall not be forgotten for ever: the patience of the needy ones shall not perish for ever. + + +Arise, O Lord, let not man prevail: let the heathen be judged before you. + + +Appoint, O Lord, a lawgiver over them: let the heathen know that they are men. Pause. + + +(Psalm 9a9:20 +Note. +- Here begins a change of numbers as compared with the +Heb. which continues to Ps. 146, this psalm having no number, and the eleventh being called the tenth. The following verses 21-37 are numbered 1-18 in the original text. +) + +Why stand you afar off, O Lord? +why do you overlook +us in times of need, in affliction? + + +While the ungodly one acts proudly, the poor is +9:22 +Gr. +inflamed, as in a fever. + hotly pursued: +the wicked are taken in the crafty counsels which they imagine. + + +Because the sinner praises himself for the desires of his heart; and the unjust one blesses himself. + + +The sinner has provoked the Lord: according to the abundance of his +9:24 +Or, +anger. + pride he will not seek after +him: God is not before him. + + +His ways are +9:25 +Gr. +profaned. + profane at all times; your judgments are removed from before him: he will gain the mastery over all his enemies. + + +For he has said in his heart, I shall not be moved, +continuing without evil from generation to generation. +9:26 +Rom 8:14 + + + +Whose mouth is full of cursing, and bitterness, and fraud: under his tongue are trouble and pain. + + +He lies in wait with rich +men in secret places, in order to kill the innocent: his eyes are +9:28 +Gr. +look. + set against the poor. + + +He lies in wait in secret as a lion in his den: he lies in wait to ravish the poor, to ravish the poor when he draws him +after him: he will bring him down in his snare. + + +He will bow down and fall when he has mastered the poor. + + +For he has said in his heart, God has forgotten: he has turned away his face so as never to look. + + +Arise, O Lord God; let your hand be lifted up: forget not the poor. + + +Therefore, has the wicked provoked God? for he has said in his heart, He will not require +it. + + +You see +it; for you do observe trouble and wrath, to deliver them into your hands: the poor has been left to you; you were a helper to the orphan. + + +Break you the arm of the sinner and wicked man: his sin shall be sought for, and shall not be found. + + +The Lord shall reign for ever, even for ever and ever: you⌃ Gentiles shall perish out his land. + + +The Lord has heard the desire of the poor: your ear has inclined to the preparation of their heart; + + +to plead for the orphan and afflicted, that man may no more boast upon the earth. + + + + +(11 in KJV) For the end, a Psalm of David. + +In the Lord I have put my trust: how will you⌃ say to my soul, + + +Flee to the mountains as a sparrow? + + +For behold the sinners have bent their +bow, they have prepared their arrows for the quiver, to shoot +10:3 +Gr. +in dark moon, or little moonlight, +q. d. +luce malignâ +privily at the upright in heart. + + +For they have pulled down what you did frame, but what has the righteous done? + + +The Lord is in his holy temple, as for the Lord, his throne is in heaven: his eyes look upon the poor, his eyelids try the sons of men. + + +The Lord tries the righteous and the ungodly: and he that loves unrighteousness hates his own soul. + + +He shall rain upon sinners snares, fire, and brimstone, and a stormy blast +shall be the portion of their cup. + + +For the Lord +is righteous, and loves +10:8 +Gr. +righteousnessesrighteousness; his face beholds uprightness. + + + + +(12) For the end, A Psalm of David, upon the eighth. + +Save me, O Lord; for the godly man has failed; for +11:1 +Gr. +truths are become rare + truth is diminished from among the children of men. + + +Every one has spoken vanity to his neighbor: their lips are deceitful, they have spoken with a double heart. + + +Let the Lord destroy all the deceitful lips, and the tongue that speaks great words: + + +who have said, We will magnify our tongue; our lips are our own: who is Lord of us? + + +Because of the misery of the poor, and because of the sighing of the needy, now will I arise, says the Lord, I will set +them in safety; I will speak +to them thereof openly. + + +The oracles of the Lord are pure oracles; as silver tried in the fire, proved +in +11:6 +Gr. +the earth. + a furnace of earth, purified seven times. + + +You, O Lord, shall keep us, and shall preserve us, from this generation, and for ever. + + +The ungodly walk around: according to your greatness you have greatly exalted the sons of men. + + + + +(13) For the end, a Psalm of David. + +How long, O Lord, will you forget me? for ever? how long will you turn away your face from me? + + +How long shall I take counsel in my soul, +having sorrows in my heart daily? how long shall my enemy be exalted over me? + + +Look on me, listen to me, O Lord my God: lighten my eyes, lest I sleep in death; + + +lest at any time my enemy say, I have prevailed against him: my persecutors will exult if ever I should be moved. + + +But I have hoped in your mercy; my heart shall exult in your salvation. + + +I will sing to the Lord who has dealt bountifully with me, and I will sing psalms to the name of the Lord most high. + + + + +(14) For the end, Psalm of David. + +The fool has said in his heart, There is no God. They have corrupted +themselves, and become abominable in their devices; there is none that does goodness, there is not even so much as one. + + +The Lord looked down from heaven upon the sons of men, to see if there were any that understood, or sought after god. + + +They are all gone out of the way, they are together become good for nothing, there is none that does good, no not one. Their throat is an open sepulchre; with their tongues they have used deceit; the poison of asps is under their lips: whose mouth is full of cursing and bitterness; their feet are swift to shed blood: destruction and misery are in their ways; and the way of peace they have not known: there is no fear of God before their eyes. + + +Will not all the workers of iniquity know, who eat up my people as they would eat bread? they have not called upon the Lord. + + +There were they alarmed with fear, where there was no fear; for God is in the righteous generation. + + +You⌃ have shamed the counsel of the poor, because the Lord is his hope. + + +Who will bring the salvation of Israel out of Sion? when the Lord brings back the captivity of his people, let Jacob exult, and Israel be glad. + + + + +(15) A Psalm of David. + +O Lord, who shall sojourn in your tabernacle? and who shall dwell in your holy mountain? + + +He that walks blameless, and works righteousness, who speaks truth in his heart. + + +Who has not spoken craftily with his tongue, neither has done evil to his neighbor, nor taken up a reproach against them that lived nearest to him. + + +In his sight an evil-worker is set at nothing, but he honors them that fear the Lord. He swears to his neighbor, and disappoints +him not. + + +He has not +14:5 +Gr. +given. + lent his money on usury, and has not received bribes against the innocent. He that does these things shall never be moved. + + + + +(16) A writing of David. + +Keep me, O Lord; for I have hoped in you. + + +I said to the Lord, You are my Lord; for you have no need of my +15:2 +Gr. +good deeds, or things. + goodness. + + +On behalf of the saints that are in his land, he has magnified all his pleasure in them. + + +Their weaknesses have been multiplied; afterward they hasted. I will by no means assemble their bloody meetings, neither will I make mention of their names with my lips. + + +The Lord is the portion of my inheritance and of my cup: you are he that restores my inheritance to me. + + +The lines have fallen to me in the best places, yes, I have a most excellent heritage. + + +I will bless the Lord who has instructed me; my reins too have chastened me even +15:7 +Possibly, +during the night. +q. d. +as long as night lasted. + till night. + + +I foresaw the Lord always before my face; for he is on my right hand, that I should not be moved. + + +Therefore my heart rejoiced and my tongue exulted; moreover also my flesh shall rest in hope: + + +because you will not leave my soul in hell, neither +15:10 +Rom 13:35 + will you suffer your Holy One to see corruption. + + +You have made known to me the ways of life; you will fill me with joy with your countenance: at your right hand +there are delights for ever. + + + + +(17) A prayer of David. + +Listen, O Lord +16:1 +Or, +to my righteous plea, etc. + of my righteousness, attend to my petition; give ear to my prayer not +uttered with deceitful lips. + + +Let my judgment come forth from your presence; let my eyes behold righteousness. + + +You have tested my heart; you have visited +me by night; you have tried me as with fire, and unrighteousness has not been found in me: +I am purposed that my mouth shall not speak +amiss. + + +As for the works of men, by the words of your lips I have +16:4 +Lit. +I have observed hard ways. + guarded +myself from hard ways. + + +Direct my steps in your paths, that my steps slip not. + + +I have cried, for you heard me, O God: incline your ear to me, and listen to my words. + + +Show the marvels of your mercies, you that save them that hope in you. + + +Keep me as the apple of the eye from those that resist your right hand: you shall screen me by the covering of your wings, + + +from the face of the ungodly that have afflicted me: my enemies have compassed about my soul. + + +They have enclosed +themselves with their own fat: their mouth has spoken pride. + + +They have now cast me out and compassed me round about: they have set their eyes +so as to bow them down to the ground. + + +They laid wait for me as a lion ready for prey, and like a lion's whelp dwelling in secret +places. + + +Arise, O Lord, prevent them, and cast them down: deliver my soul from the ungodly: +draw your sword, + + +because of the enemies of your hand: O Lord, destroy them from the earth; scatter them in their life, though their belly has been filled with your hidden +treasures: they have been satisfied with +16:14 +Alex. +children. + uncleanness, and have left the remnant +of their possessions to their babes. + + +But I shall appear in righteousness before your face: I shall be satisfied when your glory appears. + + + + +(18) For the end, +a Psalm of David, the servant of the Lord; +the words which he spoke to the Lord, +even the words of this Song, in the day in which the Lord delivered him out the hand of all his enemies, and out the hand of Saul: and he said: + +I will love you, O Lord, my strength. + + +The Lord is my firm support, and my refuge, and my deliverer; my God is my helper, I will hope in him; +he is my defender, and the horn of my salvation, and my helper. + + +I will call upon the Lord with praises, and I shall be saved from my enemies. + + +The pangs of death compassed me, and the torrents of ungodliness troubled me exceedingly. + + +The pangs of hell came round about me: the snares of death prevented me. + + +And when I was afflicted I called upon the Lord, and cried to my God: he heard my voice out of this holy temple, and my cry shall enter before him, +even into his ears. + + +Then the earth shook and quaked, and the foundations of the mountains were disturbed, and were shaken, because God was angry with them. + + +There went up a smoke in his wrath, and fire burst into a flame at his presence: coals were kindled at it. + + +And he bowed the heaven, and came down: and thick darkness was under his feet. + + +And he mounted on cherubs and flew: he flew on the wings of winds. + + +And he made darkness his secret place: round about him was his tabernacle, +even dark water in the clouds of the air. + + +At the brightness before him the clouds passed, hail and coals of fire. + + +The Lord also thundered from heaven, and the Highest uttered his voice. + + +And he sent forth +his weapons, and scattered them; and multiplied lightnings, and routed them. + + +And the springs of waters appeared, and the foundations of the world were exposed, at your rebuke, O Lord, at the blasting of the breath of your wrath. + + +He sent from on high and took me, he drew me to himself out of many waters. + + +He will deliver me from my mighty enemies, and from them that hate me; for they are stronger than I. + + +They prevented me in the day of my affliction: but the Lord was my stay against +them. + + +And he brought me out into a wide place: he will deliver me, because he has pleasure in me. + + +And the Lord will recompense me according to my righteousness; even according to the purity of my hands will he recompense me. + + +For I have kept the way of the Lord and have not wickedly departed from my God. + + +For all his judgments were before me, and his ordinances departed not from me. + + +And I shall be blameless with him, and shall keep myself from my iniquity. + + +And the Lord shall recompense me according to my righteousness, and according to the purity of my hands before his eyes. + + +With the holy you will be holy; and with the innocent man you will be innocent. + + +And with the excellent +man you will be excellent; and with the perverse you will show frowardness. + + +For you will save the lowly people, and will humble the eyes of the proud. + + +For you, O Lord, will light my lamp: my God, you will lighten my darkness. + + +For by you shall I be delivered from a troop; and by my God I will pass over a wall. + + + +As for my God, his way is perfect: the oracles of the Lord are tried in the fire; he is a protector of all them that hope in him. + + +For who is God but the Lord? and who is a God except our God? + + + +It is God that girds me with strength, and has made my way blameless: + + +who strengthens my feet as hart's feet, and sets me upon high places. + + +He instructs my hands for war: and you have made my arms +as a brazen bow. + + +And you have made me +17:35 +Gr. +the protection of. + secure in my salvation: and your right hand has helped me, and your correction has upheld me to the end; yes, your correction itself shall instruct me. + + +You have made room for my goings under me, and by footsteps did not fail. + + +I will pursue my enemies, and overtake them; and I will not turn back until they are consumed. + + +I will dash them to pieces and they shall not be able to stand: they shall fall under my feet. + + +For you have girded me with strength for war: you have beaten down under me all that rose up against me. + + +And you have made my enemies turn their backs before me; and you have destroyed them that hated me. + + +They cried, but there was no deliverer: +even to the Lord, but he listened not to them. + + +I will grind them as the mud of the streets: and I will beat them small as dust before the wind. + + +Deliver me from the gain sayings of the people: you shall make me head of the Gentiles: a people whom I knew not served me, + + +at the hearing of the ear they obeyed me: the strange children +17:44 +Or, +feigned obedience. + lied to me. + + +The strange children waxed old, and fell away from their paths through lameness. + + +The Lord lives; and blessed +be my God; and let the God of my salvation be exalted. + + + +It is God that avenges me, and has subdued the nations under me; + + +my deliverer from angry enemies: you shall set me on high +17:48 +Or, +out of the way of. + above them that rise up against me: you shall deliver me from the unrighteous man. + + +Therefore will I confess to you, O Lord, among the Gentiles, and sing to your name. + + + +God magnifies the deliverances of his king; and deals mercifully with David his anointed, and his seed, for ever. + + + + +(19) For the end, a Psalm of David. + +The heavens declare the glory of God; and the firmament proclaims the work of his hands. + + +Day to day +18:2 +Gr. +eructat. + utters speech, and night to night proclaims knowledge. + + +There are no speeches or words, +18:3 +Gr. +of which. + in which their voices are not heard. + + + +18:4 +Rom 10:18 + Their voice is gone out into all the earth, and their words to the ends of the world. + + +In the sun he has set his tabernacle; and he comes forth as a bridegroom out of his chamber: he will exult as a giant to run his course. + + +His going forth is from the extremity of heaven, and his +18:6 +Gr. +meeting. + circuit to the +other end of heaven: and no one shall be hidden from his heat. + + +The law of the Lord is +18:7 +Gr. +spotless. + perfect, converting souls: the testimony of the Lord is faithful, instructing babes. + + +The ordinances of the Lord are right, rejoicing the heart: the commandment of the Lord is bright, enlightening the eyes. + + +The fear of the Lord is pure, enduring for ever and ever: the judgments of the Lord are true, +and justified altogether. + + +To be desired more than gold, and much precious stone: sweeter also than honey and the honey-comb. + + +For your servant keeps to them: in the keeping of them +there is great reward. + + +Who will understand +his transgressions? purge you me from my secret +sins. + + +And spare your servant +the attack of strangers: if they do not gain the dominion over me, then shall I be blameless, and I shall be clear from great sin. + + +So shall the sayings of my mouth, and the meditation of my heart, be pleasing continually before you, O Lord my helper, and my redeemer. + + + + +(20) For the end, a Psalm of David. + +The Lord hear you in the day of trouble; the name of the God of Jacob defend you. + + +Send you help from the sanctuary, and aid you out of Sion. + + +Remember all your +19:3 +Or, +meat offering. + sacrifice, and enrich your whole burnt offering. Pause. + + +Grant you according to your heart, and fulfill all your desire. + + +We will exult in your salvation, and in the name of our God shall we be magnified: the Lord fulfil all your petitions. + + +Now I know that the Lord has saved his Christ: he shall hear him from his holy heaven: the salvation of his right hand is mighty. + + +Some +glory in chariots, and some in horses: but we will +19:7 +Gr. +be magnified. + glory in the name of the Lord our God. + + +They are overthrown and fallen: but we are risen, and have been set upright. + + +O Lord, save the king: and hear us in whatever day we call upon you. + + + + +(21) For the end, a Psalm of David. + +O Lord, the king shall rejoice in your strength; and in your salvation he shall greatly exult. + + +You have granted him the desire of his soul, and have not withheld from him the request of his lips. Pause. + + +For you have prevented him with blessings of goodness: you have set upon his head a crown of precious stone. + + +He asked life of you, and you gave him length of days for ever and ever. + + +His glory is great in your salvation: you will crown him with glory and majesty. + + +For you will give him a blessing for ever and ever: you will gladden him with joy with your countenance. + + +For the king trusts in the Lord, and through the mercy of the Highest he shall not be moved. + + +Let your hand be found by all your enemies: let your right hand find all that hate you. + + +You shall make them as a fiery oven at the time of your presence: the Lord shall trouble them in his anger, and fire shall devour them. + + +You shall destroy their fruit from the earth, and their seed from +among the sons of men. + + +For they intended evils against you; they imagined a device which they shall by no means be able to perform. + + +For you shall make them +turn their back in your latter end, you will prepare their face. + + +Be you exalted, O Lord, in your strength: we will sing and praise your mighty acts. + + + + +(22) For the end, concerning the morning aid, a Psalm of David. + + +21:1 +Matt 27:46 + O God, my God, attend to me: why have you forsaken me? the account of my transgressions is far from my salvation. + + +O my God, I will cry to you by day, but you will not hear: and by night, and +it shall not +be accounted for folly to me. + + +But you, the praise of Israel, dwell in a sanctuary. + + +Our fathers hoped in you; they hoped, and you did deliver them. + + +They cried to you, and were saved: they hoped in you, and were not ashamed. + + +But I am a worm, and not a man; a reproach of men, and scorn of the people. + + +All that saw me mocked me: they spoke with +their lips, they shook the head, +saying, + + +He hoped in the Lord: let him deliver him, let him save him, because he takes pleasure in him. + + +For you are he that drew me out of the womb; my hope from my mother's breasts. + + +I was cast on you from the womb: you are my God from my mother's belly. + + +Stand not aloof from me; for affliction is near; for there is no helper. + + +Many +21:12 +Gr. +calves + bullocks have compassed me: fat bulls have beset me round. + + +They have opened their mouth against me, as a ravening and roaring lion. + + +I am poured out like water, and all my bones are loosened: my heart in the midst of my belly is become like melting wax. + + +My strength is dried up, like a potsherd; and my tongue is glued to my throat; and you have brought me down to the dust of death. + + +For many dogs have compassed me: the assembly of the wicked doers has beset me round: they pierced my hands and my feet. + + +They counted all my bones; and they observed and looked upon me. + + + +21:18 +Matt 27:35 + They parted my garments +among themselves, and cast lots upon my raiment. + + +But you, O Lord, remove not my help afar off: be ready for my aid. + + +Deliver my soul from the sword; my only-begotten one from the power of the dog. + + +Save me from the lion's mouth; and +regard my +21:21 +See +Hebrew. + lowliness from the horns of the unicorns. + + +I will declare your name to my brethren: in the midst of the church will I sing praise to you. + + +You⌃ that fear the Lord, praise him; all you⌃ seed of Jacob, glorify him: let all the seed of Israel fear him. + + +For he has not despised nor been angry at the supplication of the poor; nor turned away his face from me; but when I cried to him, he heard me. + + +My praise is of you in the great congregation: I will pay my vows before them that fear him. + + +The poor shall eat and be satisfied; and they shall praise the Lord that seek him: their heart shall live for ever. + + +All the ends of the earth shall remember and turn to the Lord: and all the kindred of the nations shall worship before him. + + +For the kingdom is the Lord's; and he is the governor of the nations. + + +All the fat ones of the earth have eaten and worshipped: all that go down to the earth shall fall down before him: my soul also lives to him. + + +And my seed shall serve him: the generation that is coming shall be reported to the Lord. + + +And they shall report his righteousness to the people that shall be born, whom the Lord has made. + + + + +(23) A Psalm of David. + +The Lord tends me as a shepherd, and I shall lack nothing. + + +In a place of green grass, there he has made me dwell: he has nourished me by the water of rest. + + +He has restored my soul: he has guided me into the paths of righteousness, for his name's sake. + + +Yes, even if I should walk in the midst of the shadow of death, I will not be afraid of evils: for you are with me; your rod and your staff, these have comforted me. + + +You have prepared a table before me in presence of them that afflict me: you have thoroughly anointed my head with oil; and your cup cheers me like the best +wine. + + +Your mercy also shall follow me all the days of my life: and my dwelling +shall be in the house of the Lord for a very long time. + + + + +(24) A Psalm for David on the first day of the week. + +The earth is the Lord's and the fullness thereof; the world, and all that dwell in it. + + +He has founded it upon the seas, and prepared it upon the rivers. + + +Who shall go up to the mountain of the Lord, and who shall stand in his holy place? + + +He that is innocent in his hands and pure in his heart; who has not lifted up his soul to vanity, nor sworn deceitfully +23:4 +Or, +against. + to his neighbor. + + +He shall receive a blessing from the Lord, and mercy from God his Saviour. + + +This is the generation of them that seek him, that seek the face of the God of Jacob. Pause. + + +Lift up your gates, you⌃ princes, and be you⌃ lifted up, you⌃ everlasting doors; and the king of glory shall come in. + + +Who is this king of Glory? the Lord strong and mighty, the Lord mighty in battle. + + +Lift up your gates, you⌃ princes; and be you⌃ lift up, you⌃ everlasting doors; and the king of glory shall come in. + + +Who is this king of glory? The Lord of hosts, he is this king of glory. + + + + +(25) A Psalm of David. + +To you, O Lord, have I lifted up my soul. + + +O my God, I have trusted in you: let me not be confounded, neither let my enemies laugh me to scorn. + + +For none of them that wait on you shall in any wise be ashamed: let them be ashamed that transgress without cause. + + +Show me your ways, O Lord; and teach me your paths. + + +Lead me in your truth, and teach me: for you are God my Saviour: and I have waited on you all the day. + + +Remember your compassions, O Lord, and your mercies, for they are from everlasting. + + +Remember not the sins of my youth, nor +my sins of ignorance: remember me according to your mercy, for your goodness' sake, O Lord. + + +Good and upright is the Lord: therefore will he +24:8 +sc. +as a law-giver + instruct sinners in +the way. + + +The meek will he guide in judgment: the meek will he teach his ways. + + +All the ways of the Lord are mercy and truth to them that seek his covenant and his testimonies. + + +For your name's sake, O Lord, do you also be merciful to my sin; for it is great. + + +Who is the man that fears the Lord? he shall instruct him in the way which he has chosen. + + +His soul shall dwell in prosperity; and his seed shall inherit the earth. + + +The Lord is the strength of them that fear him; and his covenant is to manifest +24:14 +Or, +'it,' +sc. +what has just been stated. + +truth to them. + + +My eyes are continually to the Lord; for he shall draw my feet out of the snare. + + +Look upon me, and have mercy upon me; for I am an only child and poor. + + +The afflictions of my heart have been multiplied; deliver me from my distresses. + + +Look upon my affliction and my trouble; and forgive all my sins. + + +Look upon my enemies; for they have been multiplied; and they have hated me with unjust hatred. + + +Keep my soul, and deliver me: let me not be ashamed; for I have hoped in you. + + +The harmless and upright joined themselves to me: for I waited for you, O Lord. + + +Deliver Israel, O God, out of all his afflictions. + + + + +(26) +A Psalm of David. + +Judge me, O Lord; for I have walked in my innocence: and hoping in the Lord I shall not be moved. + + +Prove me, O Lord, and try me; purify as with fire my reins and my heart. + + +For your mercy is before my eyes: and I am well pleased with your truth. + + +I have not sat with the council of vanity, and will in nowise enter in with transgressors. + + +I have hated the assembly of wicked doers; and will not sit with ungodly +men. + + +I will wash my hands in +25:6 +Gr. +innocent +things. + + innocency, and compass your altar, O Lord: + + +to hear the voice of praise, and to declare all your wonderful works. + + +O Lord, I have loved the beauty of your house, and the place of the tabernacle of your glory. + + +Destroy not my soul together with the ungodly, nor my life with bloody men: + + +in whose hands +are iniquities, +and their right hand is filled with bribes. + + +But I have walked in my innocence: redeem me, and have mercy upon me. + + +My foot stands in +25:12 +Gr. +in evenness or uprightness. + an even place: in the congregations will I bless you, O Lord. + + + + +(27) +A Psalm of David, before he was anointed. + +The Lord is my light and my Saviour; whom shall I fear? the Lord is the defender of my life; of whom shall I be afraid? + + +When evil-doers drew near against me to eat up my flesh, my persecutors and my enemies, they fainted and fell. + + +Though an army should set itself in array against me, my heart shall not be afraid: though war should rise up against me, in this am I confident. + + +One thing have I asked of the Lord, this will I earnestly seek: that I should dwell in the house of the Lord, all the days of my life, that I should behold the fair beauty of the Lord, and survey his temple. + + +For in the day of my afflictions he hid me in his tabernacle: he sheltered me in the secret of his tabernacle; he set me up on a rock. + + +And now, behold, he has lifted up my head over my enemies: I went round and offered in his tabernacle the sacrifice of +26:6 +Gr. +shouting. + joy; I will sing +26:6 +Or, +and play on a lute. + even sing psalms to the Lord. + + +Hear, O Lord, my voice which I have uttered aloud: pity me, and listen to me. + + +My heart said to you, I have diligently sought your face: your face, O Lord, I will seek. + + +Turn not your face away from me, turn not you away from your servant in anger: be you my helper, forsake me not; and, O God my Saviour, overlook me not. + + +For my father and my mother have forsaken me, but the Lord has taken me to himself. + + +Teach me, O Lord, in your way, and guide me in a right path, because of my enemies. + + +Deliver me not over to the desire of them that afflict me; for unjust witnesses have risen up against me, and injustice has lied within herself. + + +I believe that I shall see the +26:13 +Gr. +good +things. + + goodness of the Lord in the land of the living. + + +Wait on the Lord: be of good courage, and let your heart be strengthened: yes wait on the Lord. + + + + +(28) +A Psalm of David. + +To you, O Lord, have I cried; my God, be not silent toward me: lest you be silent toward me, and so I should be likened to them that go down to the pit. + + +Listen to the voice of my supplication, when I pray to you, when I lift up my hands toward your holy temple. + + +Draw not away my soul with sinners, and destroy me not with the workers of iniquity, who speak peace with their neighbors, but evils are in their hearts. + + +Give them according to their works, and according to the wickedness of their devices: give them according to the works of their hands; render their recompense to them. + + +Because they have not attended to the works of the Lord, even to the works of his hands, you shall pull them down, and shall not build them up. + + +Blessed be the Lord, for he has listened to the voice of my petition. + + +The Lord is my helper and my defender; my heart has hoped in him, and I am helped: my flesh has revived, and willingly will I +27:7 +Or, +confess to him. + give praise to him. + + +The Lord is the strength of his people, and the +27:8 +Gr. +defender of the salvation of. + saving defender of his anointed. + + +Save your people, and bless your inheritance: and take care of them, and lift them up for ever. + + + + +(29) A Psalm of David +on the occasion of the solemn assembly of the Tabernacle. + +Bring to the Lord, you⌃ sons of God, bring to the Lord young rams; bring to the Lord glory and honor. + + +Bring to the Lord glory, +due to his name; worship the lord in his holy court. + + +The voice of the Lord is upon the waters: the God of glory has thundered: the Lord is upon many waters. + + +The voice of the Lord is mighty; the voice of the Lord is full of majesty. + + + +There is the voice of the Lord who breaks the cedars; the Lord will break the cedars of Libanus. + + +And he will beat them small, +even Libanus itself, like a calf; and the beloved one is as a young unicorn. + + + +There is a voice of the Lord who divides a flame of fire. + + +A voice of the Lord who shakes the wilderness; the Lord will shake the wilderness of Cades. + + +The voice of the Lord +28:9 +Gr. +participle. + strengthens the hinds, and will uncover the thickets: and in his temple every one speaks +of his glory. + + +The Lord will dwell on the waterflood: and the Lord will sit a king for ever. + + +The Lord will give strength to his people; the Lord will bless his people with peace. + + + + +(30) For the end, a Psalm +29:0 +Gr. +of a song. + and Song at the dedication of the house of David. + +I will exalt you, O Lord; for you have lifted me up, and not caused my enemies to rejoice over me. + + +O Lord my God, I cried to you, and you did heal me. + + +O Lord, you have brought up my soul from Hades, you have delivered me from +among them that go down to the pit. + + +Sing to the Lord, you⌃ his saints, and give thanks for the remembrance of his holiness. + + +For anger is in his wrath, but life in his favor: weeping shall wait for the evening, but joy shall be in the morning. + + +And I said in my prosperity, I shall never be moved. + + +O Lord, in your good pleasure you did add strength to my beauty: but you did turn away your face, and I was troubled. + + +To you, O Lord, will I cry; and to my God will I make supplication. + + +What profit is there in my blood, when I go down to destruction? Shall the dust give praise to you? or shall it declare your truth? + + +The Lord heard, and had compassion upon me; the Lord is become my helper. + + +You have turned my mourning into joy for me: you have torn off my sackcloth, and girded me with gladness; + + +that my glory may sing praise to you, and I may not be pierced +with sorrow. O Lord my God, I will give thanks to you for ever. + + + + +(31) For the end, a Psalm of David, +an utterance of +30:0 +Gr. +ecstasy. See title. + extreme fear. + +O Lord, I have hoped in you; let me never be ashamed: deliver me in your righteousness and rescue me. + + +Incline your ear to me; make haste to rescue me: be you to me for a protecting God, and for a house of refuge to save me. + + +For you are my strength and my refuge; and you shall guide me for your name's sake, and maintain me. + + +You shall bring me out of the snare which they have hidden for me; for you, O Lord, are my defender. + + +Into your hands I will commit my spirit: you have redeemed me, O Lord God of truth. + + +You have hated them that idly persist in vanities: but I have hoped in the Lord. + + +I will exult and be glad in your mercy: for you have looked upon my affliction; you have saved my soul from distresses. + + +And you have not shut me up into the hands of the enemy: you have set my feet in a wide place. + + +Pity me, O Lord, for I am afflicted: my eye is troubled with indignation, my soul and by belly. + + +For my life is spent with grief, and my years with groanings: my strength has been weakened through poverty, and my bones are troubled. + + +I became a reproach among all my enemies, but exceedingly so to my neighbors, and a fear to my acquaintance: they that saw me without fled from me. + + +I have been forgotten as a dead man out of mind: I am become as a broken vessel. + + +For I heard the slander of many that lived round about: when they were gathered together against me, they took counsel to take my life. + + +But I hoped in you, O Lord: I said, You are my God. + + +My lots are in your hands: deliver me from the hand of my enemies, + + +and from them that persecute me. Make your face to shine upon your servant: save me in your mercy. + + +O Lord, let me not be ashamed, for I have called upon you: let the ungodly be ashamed, and brought down to Hades. + + +Let the deceitful lips become dumb, which speak iniquity against the righteous with pride and scorn. + + +How abundant is the multitude of your goodness, O Lord, which you have laid up for them that fear you! you have wrought +it out for them that hope on you, in the presence of the sons of men. + + +You will hide them in the secret of your presence from the vexation of man: you will screen them in a tabernacle from the contradiction of tongues. + + +Blessed be the Lord: for he has magnified his mercy in a fortified city. + + +But I said in my extreme fear, I am cast out from the sight of your eyes: therefore you did listen, O Lord, to the voice of my supplication when I cried to you. + + +Love the Lord, all you⌃ his saints: for the Lord seeks for truth, and renders +a reward to them that deal very proudly. + + +Be of good courage, and let your heart be strengthened, all you⌃ that hope in the Lord. + + + + +(32) +A Psalm of +31:0 +Gr. +for +or, +of. + instruction by David. + + +31:1 +Rom 4:7-8 + Blessed +are they whose transgressions are forgiven, and who sins are covered. + + +Blessed is the man to whom the Lord will not impute sin, and whose mouth there is no guile. + + +Because I kept silence, my bones waxed old, from my crying all the day. + + +For day and night your hand was heavy upon me: I became thoroughly miserable while a +31:4 +See +Heb. + thorn was fastened in +me. Pause. + + +I acknowledged my sin, and hid not my iniquity: I said, I will confess my iniquity to the Lord against myself; and you forgave the ungodliness of my heart. Pause. + + +Therefore shall every holy one pray to you in a fit time: only in the deluge of many waters they shall not come near to him. + + +You are my refuge from the affliction that encompasses me; my joy, to deliver me from them that have compassed me. Pause. + + +I will instruct you and guide you in this way wherein you shall go: I will fix my eyes upon you. + + +Be you⌃ not as horse and mule, which have no understanding; +31:9 +See +Alex. +ἄγξεις + +but you must constrain their jaws with bit and curb, lest they should come near to you. + + +Many are the scourges of the sinner: but him that hopes in the Lord mercy shall compass about. + + +Be glad in the Lord, and exult, you⌃ righteous: and glory, all you⌃ that are upright in heart. + + + + +(33) +A Psalm of David. + +Rejoice in the Lord, you⌃ righteous; praise becomes the upright. + + + +32:2 +Rather, 'confess' +or +give thanks to.' + Praise the Lord on the harp; platy to him on a lute of ten strings. + + +Sing to him a new song; play skillfully with a loud noise. + + +For the word of the Lord is right; and all his works are +32:4 +Rather, +Gr. +in +or +with faithfulness. + faithful. + + +He loves mercy and judgment; the earth is full the mercy of the Lord. + + +By the word of the Lord the heavens were established; and all the host of them by the breath of his +mouth. + + +Who gathers the waters of the sea as +in a bottle; who lays up the deeps in treasuries. + + +Let all the earth fear the Lord; and let all that dwell in the world be moved because of him. + + +For he spoke, and they were made; he commanded, and they were created. + + +The Lord frustrates the counsels of the nations; he brings to nothing also the reasonings of the peoples, and brings to nothing the counsels of princes. + + +But the counsel of the Lord endures for ever, the thoughts of his heart from generation to generation. + + +Blessed is the nation whose God is the Lord; the people whom he has chosen for his own inheritance. + + +The Lord looks out of heaven; he beholds all the sons of men. + + +He looks from his prepared habitation on all the dwellers on the earth; + + +who fashioned their hearts +32:15 +Perhaps 'individually.' +Vulg. +sigillatim. + alone; who understands all their works. + + +A king is not saved by reason of a great host; and a giant shall not be delivered by the greatness of his strength. + + +A horse is vain for safety; neither shall he be delivered by the greatness of his power. + + +Behold, the eyes of the Lord are on them that fear him, those that hope in his mercy; + + +to deliver their souls from death, and to keep them alive in famine. + + +Our soul waits on the Lord; for he is our helper and defender. + + +For our heart shall rejoice in him, and we have hoped in his holy name. + + +Let your mercy, O Lord, be upon us, according as we have hoped in you. + + + + +(34) +A Psalm of David, when he changed his countenance before Abimelech; and he let him go, and he departed. + +I will bless the Lord at all times: his praise shall be continually in my mouth. + + +My soul shall +33:2 +Gr. +be praised. + boast herself in the Lord: let the meek hear, and rejoice. + + +Magnify you⌃ the Lord with me, and let us exalt his name together. + + +I sought the Lord diligently, and he listened to me, and delivered me from all my +33:4 +Lit. +neighbourhoods. + sojournings. + + +Draw near to him, and be enlightened: and your faces shall not +by any means be ashamed. + + +This poor man cried, and the Lord listened to him, and delivered him out of all his afflictions. + + +The angel of the Lord will encamp round about them that fear him, and will deliver them. + + +Taste and see that the Lord is good: blessed is the man who hopes in him. + + +Fear the Lord, all you⌃ his saints: for there is no lack to them that fear him. + + +The rich have become poor and hungry: but they that seek the Lord diligently shall not lack any good thing. Pause. + + +Come, you⌃ children, hear me: I will teach you the fear of the Lord. + + + +33:12 +1 Pe 3:10-13 + What man is there that desires life, loving to see good days? + + +Keep your tongue from evil, and your lips from speaking guile. + + +Turn away from evil, and do good; seek peace, and pursue it. + + +The eyes of the Lord are over the righteous, and his ears +are open to their prayer: + + +but the face of the Lord is against them that do evil, to destroy their memorial from the earth. The righteous cried, and the Lord listened to them, + + +and delivered them out of all their afflictions. + + +The Lord is near to +33:18 +Gr. +the broken in heart. + them that are of a contrite heart; and will save the lowly in spirit. + + +Many are the afflictions of the righteous: but out of them all Lord will deliver them. + + +He keeps all their bones: not one of them shall be broken. + + +The death of sinners is evil: and they that hate righteousness will go wrong. + + +The Lord will redeem the souls of his servants: and none of those that hope in him shall go wrong. + + + + +(35) +A Psalm of David. + +Judge you, O Lord, them that injure me, fight against them that fight against me. + + +Take hold of shield and buckler, and arise for my help. + + +Bring forth a sword, and stop +the way against them that persecute me: say to my soul, I am your salvation. + + +Let them that seek my soul be ashamed and confounded: let them that devise evils against me be turned back and put to shame. + + +Let them be as dust before the wind, and an angel of the Lord afflicting them. + + +Let their way be dark and slippery, and an angel of the Lord persecuting them. + + +For without cause they have hid for me their destructive snare: without a cause they have reproached my soul. + + +Let a snare which they know not come upon them; and the gin which they hid take them; and let them fall into the very same snare. + + +But my soul shall exult in the Lord: it shall delight in his salvation. + + +All my bones shall say, O Lord, who is like to you? delivering the poor out of the hand of them that are stronger than he, yes, the poor and needy one from them that spoil him. + + +Unjust witnesses arose, and asked me of things I new not. + + +They rewarded me evil for good, and bereavement to my soul. + + +But I, when they troubled me, put on sackcloth, and humbled my soul with fasting: and my prayer shall return to my +own bosom. + + +I behaved agreeably towards them as +if it had been our neighbor +or brother: I humbled myself as one mourning and sad of countenance. + + +Yet they rejoiced against me, and plagues were +34:15 +The +Gr. +is repeated, by a Hebraism. + plentifully brought against me, and I knew +it not: they were scattered, but +34:15 +See Acts 2:37. + repented not. + + +They tempted me, they sneered at me most contemptuously, they gnashed their teeth upon me. + + +O Lord, when will you look upon me? Deliver my soul from their mischief, my only-begotten one from the lions. + + +I will give thanks to you even in a great congregation: in an abundant people I will praise you. + + +Let not them that are my enemies without a cause rejoice against me; who hate me for nothing, and wink with their eyes. + + +For to me they spoke peaceably, but imagined deceits in +their anger. + + +And they opened wide their mouth upon me; they said Aha, aha, our eyes have seen +it. + + +You have seen +it, O Lord: keep not silence: O Lord, withdraw not +yourself from me. + + +Awake, O Lord, and attend to my judgment, +even to my cause, my God and my Lord. + + +Judge me, O Lord, according to your righteousness, O Lord my God; and let them not rejoice against me. + + +Let them not say in their hearts, Aha, aha, +it is pleasing to our soul: neither let them say, We have devoured him. + + +Let them be confounded and ashamed together that rejoice at my afflictions: let them be clothed with shame and confusion that speak great swelling words against me. + + +Let them that rejoice in my righteousness exult and be glad: and let them say continually, The Lord be magnified, who desire the peace of his servant. + + +And my tongue shall meditate on your righteousness, +and on your praise all the day. + + + + +(36) For the end, by David the servant of the Lord. + +The transgressor, that he may sin, says within himself, +that +35:1 +Rom 3:18 + there is no fear of God before his eyes. + + +For he has dealt craftily before him, +35:2 +q. d. +with regard to the discovering. + to discover his iniquity and hate it. + + +The words of his mouth are transgression and deceit: he is not inclined to understand +how to do good. + + +He devises iniquity on his bed; he gives himself to every evil way; and does not abhor evil. + + +O Lord, your mercy is in the heaven; and your truth +reaches to the clouds. + + +Your righteousness is as the +35:6 +Or, +vast mountains. + mountains of God, your judgments are as a great deep: O Lord, you will preserve men and beasts. + + +How have you multiplied your mercy, O God! so the children of men shall trust in the shelter of your wings. + + +They shall be +35:8 +Gr. +intoxicated. + fully satisfied with the fatness of your house; and you shall cause them to drink of the full stream of your delights. + + +For with you is the fountain of life: in your light we shall see light. + + +Extend your mercy to them that know you; and your righteousness to the upright in heart. + + +Let not the foot of pride come against me, and let not the hand of sinners move me. + + +There have all the workers of iniquity fallen: they are cast out, and shall not be able to stand. + + + + +(37) +A Psalm of David. + +Fret not yourself because of evil-doers, neither be envious of them that do iniquity. + + +For they shall soon be withered as the grass, and shall soon fall away as the green herbs. + + +Hope in the Lord, and do good; and dwell on the land, and you shall be fed with the wealth of it. + + +Delight +yourself in the Lord; and he shall grant you the requests of your heart. + + +Disclose your way to the Lord, and hope in him; and he shall bring +it to pass. + + +And he shall bring forth your righteousness as the light, and your judgment as the noon-day. + + +Submit yourself to the Lord, and supplicate him: fret not yourself because of him that prospers in his way, at the man that does unlawful deeds. + + +ease from anger, and forsake wrath: fret not yourself so as to do evil. + + +For evil-doers shall be destroyed: but they that wait on the Lord, they shall inherit the land. + + +And yet a little while, and the sinner shall not be, and you shall seek for his place, and shall not find +it. + + +But the meek shall inherit the earth; and shall delight +themselves in the abundance of peace. + + +The sinner will watch for the righteous, and gnash his teeth upon him. + + +But the Lord shall laugh at him: for he foresees that his day will come. + + +Sinners have drawn their swords, they have bent their bow, to cast down the poor and needy one, +and to kill the upright in heart. + + +Let their sword enter into their +own heart, and their bows be broken. + + +A little is better to the righteous than abundant wealth of sinners. + + +For the arms of sinners shall be broken; but the Lord supports the righteous. + + +The Lord knows the ways of the perfect; and their inheritance shall be for ever. + + +They shall not be ashamed in an evil time; and in days of famine they shall be satisfied. + + +For the sinners shall perish; and the enemies of the Lord at the moment of their being honored and exalted have utterly vanished like smoke. + + +The sinner borrows, and will not pay again: but the righteous has compassion, and gives. + + +For they that bless him shall inherit the earth; and they that curse him shall be utterly destroyed. + + +The steps of a man are rightly ordered by the Lord: and he will take pleasure in his way. + + +When he falls, he shall not be ruined: for the Lord supports his hand. + + +I was +once young, indeed I am now old; yet I have not seen the righteous forsaken, nor his seed seeking bread. + + +He is merciful, and lends continually; and his seed shall be +36:26 +Gr. +for a blessing. + blessed. + + +Turn aside from evil, and do good; and dwell for ever. + + +For the Lord loves judgment, and will not forsake his saints; they shall be preserved for ever: the blameless shall be +36:28 +Or, +cleared in judgement. + avenged, but the seed of the ungodly shall be utterly destroyed. + + +But the righteous shall inherit the earth, and dwell upon it for ever. + + +The mouth of the righteous will meditate wisdom, and his tongue will speak of judgment. + + +The law of his God is in his heart; and his steps shall not +36:31 +Gr. +be tripped up, or supplanted. + slide. + + +The sinner watches the righteous, and seeks to kill him. + + +But the Lord will not leave him in his hands, nor by any means condemn him when he is judged. + + +Wait on the Lord, and keep his way, and he shall exalt you to inherit the land: when the wicked are destroyed, you shall see +it. + + +I saw the ungodly very highly exalting himself, and lifting himself up like the cedars of Libanus. + + +Yet I passed by, and behold! he was not: and I sought him, but his place was not found. + + +Maintain innocence, and behold uprightness: for there is a remnant to the peaceful man. + + +But the transgressors shall be utterly destroyed together: the remnants of the ungodly shall be utterly destroyed. + + +But the salvation of the righteous is of the Lord; and he is their defender in the time of affliction. + + +And the Lord shall help them, and deliver them: and he shall rescue them from sinners, and save them, because they have hoped in him. + + + + +(38) A Psalm of David for remembrance concerning the Sabbath-day. + +O Lord, rebuke me not in your wrath, neither chasten me in your anger. + + +For your weapons are fixed in me, and you have pressed your hand heavily upon me. + + +For there is no health in my flesh because of your anger; there is no peace to my bones because of my sins. + + +For my transgressions have gone over my head: they have pressed heavily upon me like a weighty burden. + + +My bruises have become noisome and corrupt, because of my foolishness. + + +I have been wretched and bowed down continually: I went with a mourning countenance all the day. + + +For my soul is filled with mockings; and there is no health in my flesh. + + +I have been afflicted and brought down exceedingly: I have roared for the groaning of my heart. + + +But all my desire is before you; and my groaning is not hidden from you. + + +My heart is troubled, my strength has failed me; and the light of my eyes is not with me. + + +My friends and my neighbors drew near before me, and stood still; and my nearest of kin stood afar off. + + +While they pressed hard upon me that sought my soul: and they that sought my hurt spoke vanities, and devised deceits all the day. + + +But I, as a deaf man, heard not; and was as a dumb man not opening his mouth. + + +And I was as a man that hears not, and who has no reproofs in his mouth. + + +For I hoped in you, O Lord: you will hear, O Lord my God. + + +For I said, Lest my enemies rejoice against me: for when my feet were moved, they spoke boastingly against me. + + +For I am ready for +37:17 +Gr. +scourges. + plagues, and my grief is continually before me. + + +For I will declare my iniquity, and be distressed for my sin. + + +But my enemies live, and are mightier than I: and they that hate me unjustly are multiplied. + + +They that reward evil for good slandered me; because I followed righteousness. + + +Forsake me not, O Lord my God: depart not from me. + + +Draw near to my help, O Lord of my salvation. + + + + +(39) For the end, a Song of David, to Idithun. + +I said, I will take heed to my ways, that I sin not with my tongue: I set a guard on my mouth, while the sinner stood in my presence. + + +I was dumb, and humbled myself, and kept silence from good +words; and my grief was renewed. + + +My heart grew hot within me, and a fire would kindle in my meditation: I spoke with my tongue, + + +O Lord, make me to know my end, and the number of my days, what it is; that I may know what I lack. + + +Behold, you have made my days +38:5 +Alex. +a span long. + old; and my existence +is as nothing before you: nay, every man living +is altogether vanity. Pause. + + +Surely man walks in a +38:6 +Gr. +image. + shadow; nay, he is disquieted in vain: he lays up treasures, and knows not for whom he shall gather them. + + +And now what +is my expectation? +is it not the Lord? and my ground +of hope is with you. Pause. + + +Deliver me from all my transgressions: you have made me a reproach to the foolish. + + +I was +38:9 +Gr. +made dumb. + dumb, and opened not my mouth; for you are he that made me. + + +Remove your scourges from me: I have fainted by reason of the strength of your hand. + + +You chasten man with rebukes for iniquity, and you make his life to consume away like a spider's web; nay, every man is disquieted in vain. Pause. + + +O Lord, listen to my prayer and my supplication: attend to my tears: be not silent, for I am a sojourner in the land, and a stranger, as all my fathers +were. + + +Spare me, that I may be refreshed, before I depart, and be no more. + + + + +(40) For the end, a Psalm of David. + +I waited patiently for the Lord; and he attended to me, and listened to my supplication. + + +And he brought me up out of a pit of misery, and from miry clay: and he set my feet on a rock, and ordered my goings aright. + + +And he put a new song into my mouth, +even a hymn to our God: many shall see +it, and fear, and shall hope in the Lord. + + +Blessed +is the man whose hope is in the name of the Lord, and +who has not regarded vanities and false frenzies. + + +O Lord my God, you have multiplied your wonderful works, and in your thoughts there is none who shall be likened to you: I declared and spoke +of them: they exceeded number. + + + +39:6 +Heb 10:5-6 + Sacrifice and offering you would not; but a body have you prepared me: whole burnt offering and +sacrifice for sin you did not require. + + +Then I said, Behold, I +39:7 +Or, +am come. + come: in the volume of the book it is written concerning me, + + +I desired to do your will, O my God, and your law in the midst of my heart. + + +I have preached righteousness in the great congregation; behold! I will not refrain my lips; O Lord, you know my righteousness. + + +I have not hid your truth within my heart, and I have declared your salvation; I have not hid your mercy and your truth from the great congregation. + + +But you, Lord, remove not your compassion far from me; your mercy and your truth have helped me continually. + + +For innumerable evils have encompassed me; my transgressions have taken hold of me, and I could not see; they are multiplied more than the hairs of my head; and my heart has failed me. + + +Be pleased, O Lord, to deliver me; O Lord, draw near to help me. + + +Let those that seek my soul, to destroy it, be ashamed and confounded together; let those that wish me evil be turned backward and put to shame. + + +Let those that say to me, Aha, aha, quickly receive shame for their reward. + + +Let all those that seek you, O Lord, exult and rejoice in you; and let them that love your salvation say continually, The Lord be magnified. + + +But I am poor and needy; the Lord will take care of me; you are my helper, and my defender, O my God, delay not. + + + + +(41) For the end, a Psalm of David. + +Blessed +is the man who thinks, on the poor and needy: the Lord shall deliver him in an evil day. + + +May the Lord preserve him and keep him alive, and bless him on the earth, and not deliver him into the hands of his enemy. + + +May the Lord help him upon the bed of his pain; you have made all his bed in his sickness. + + +I said, O Lord, have mercy upon me; heal my soul; for I have sinned against you. + + +Mine enemies have spoken evil against me, +saying, When shall he die, and his name perish? + + +And if he came to see +me, his heart spoke vainly; he gathered iniquity to himself; he went forth and spoke in like manner. + + +All my enemies whispered against me; against me they devised my hurt. + + +They denounced a wicked word against me, +saying, Now that he lies, shall he not rise up again? + + +For even the man of my peace, in whom I trusted, +40:9 +John 13:18 + who ate my bread, lifted up +his heel against me. + + +But you, O Lord, have compassion upon me, and raise me up, and I shall requite them. + + +By this I know that you have delighted in me, because my enemy shall not rejoice over me. + + +But you did help me because of +my innocence, and have established me before you for ever. + + +Blessed +be the Lord God of Israel from everlasting, and to everlasting. So be it, so be it. + + + + +(42) For the end, +a Psalm for instruction, for the sons of Core. + +As the hart earnestly desires the fountains of water, so my soul earnestly longs for you, O God. + + +My soul has thirsted for the living God: when shall I come and appear before God? + + +My tears have been bread to me day and night, while they daily said to me, Where is your God? + + +I remembered these things, and poured out my soul in me, for I will go to the place of your wondrous tabernacle, +even to the house of God, with a voice of exultation and thanksgiving and of the sound of those who keep festival. +41:4 +There are several difficulties connected with this passage. In the first place it seems evident that the LXX. read בסך, and the English translators בסר, or something similar. The Hebrew Text (to which no קרי is appended) thus far favours the LXX.; who, however, appear to have read אררס as a part of ארר, and made an adjective of it. Again, τόπῳ has nothing immediately answering it in the Hebrew, and may be accounted for on the principle so often referred to of +double translation. + + +Therefore are you very sad, O my soul? and therefore do you trouble me? hope in God; for I will give thanks to him; +he is the salvation of my countenance. + + +O my God, my soul has been troubled within me: therefore will I remember you from the land of Jordan, and of the Ermonites, from the little hill. + + +Deep calls to deep at the voice of your cataracts: all your billows and your waves have gone over me. + + +By day the Lord will command his mercy, and +41:8 +Heb. +and +Alex. +his song shall be, etc. + manifest +it by night: with me +is prayer to the God of my life. + + +I will say to God, You are my helper; why have you forgotten me? therefore do I go sad of countenance, while the enemy oppresses +me? + + +While my bones were breaking, they that afflicted me reproached me; while they said to me daily, Where is your God? + + +Therefore are you very sad, O my soul? and therefore do you trouble me? hope in God; for I will give thanks to him; +he is the health of my countenance, and my God. + + + + +(43) A Psalm of David. + +Judge me, O God, and plead my cause, against an ungodly nation: deliver me from the unjust and crafty man. + + +For you, O God, are my strength: therefore have you cast me off? and why do I go sad of countenance, while the enemy oppresses +me? + + +Send forth your light and your truth: they have led me, and brought me to your holy mountain, and to your tabernacles. + + +And I will go in to the altar of God, to God who gladdens my youth: I will give thanks to you on the harp, O God, my God. + + +Therefore are you very sad, O my soul? and therefore do you trouble me? Hope in God; for I will give thanks to him, +who is the health of my countenance, +and my God. + + + + +(44) For the end, a Psalm for +43:0 +Gr. +understanding. + instruction, for the sons of Core. + +O God, we have heard with our ears, our fathers have told us, the work which you wrought in their days, in the days of old. + + +Your hand utterly destroyed the heathen, and you did plant them: you did afflict the nations, and cast them out. + + +For they inherited not the land by their +own sword, and their +own arm did not deliver them; but your right hand, and your arm, and the light of your countenance, because you were well pleased in them. + + +You are indeed my King and my God, who command deliverances for Jacob. + + +In you will we push down our enemies, and in your name will we bring to nothing them that rise up against us. + + +For I will not trust in my bow, and my sword shall not save me. + + +For you have saved us from them that afflicted us, and have put to shame them that hated us. + + +In God +43:8 +Gr. +will be praised etc. See Ps. 106. + will we make our boast all the day, and to your name will we give thanks for ever. Pause. + + +But now you have cast off, and put us to shame; and you will not go forth with our hosts. + + +You have turned us back before our enemies; and they that hated us spoiled for themselves. + + +You made us as sheep for meat; and you scattered us among the nations. + + +You have sold your people without price, and there was no profit by their exchange. + + +You have made us a reproach to our neighbors, a scorn and derision them that are round about us. + + +You have made us a proverb among the Gentiles, a shaking of the head among the nations. + + +All the day my shame is before me, and the confusion of my face has covered me, + + +because of the voice of the slanderer and reviler; because of the enemy and avenger. + + +All these things are come upon us: but we have not forgotten you, neither have we dealt unrighteously in your covenant. + + +And our heart has not gone back; but you have turned aside our paths from your way. + + +For you have laid us low in a place of affliction, and the shadow of death has covered us. + + +If we have forgotten the name of our God, and if we have spread out our hands to a strange god; shall not God search these things out? + + +for he knows the secrets of the heart. + + + +43:22 +Rom 8:36 + For, for your sake we are killed all the day long; we are counted as sheep for slaughter. + + +Awake, therefore sleep you, O Lord? arise, and do not cast +us off for ever. + + +Therefore turn you your face away, +and forget our poverty and our affliction? + + +For our soul has been brought down to the dust; our belly has cleaved to the earth. + + +Arise, O Lord, help us, and redeem us for your name's sake. + + + + +(45) For the end, for +44:0 +See also Ps 68 and 79, titles; +q. d. +repeated, see +Hebrew. + alternate +strains by the sons of Core; for instruction, a Song concerning the beloved. + +My heart +44:1 +Lit. +eructavit. + has uttered a good matter: I declare my works to the king: my tongue is the pen of a quick writer. + + +You are more beautiful than the sons of men: grace has been shed forth on your lips: therefore God has blessed you for ever. + + +Gird your sword upon your thigh, O Mighty One, in your comeliness, and in your beauty; + + +and bend +your bow, and prosper, and reign, because of truth and meekness and righteousness; and your right hand shall guide you wonderfully. + + +Your weapons are sharpened, Mighty One, (the nations shall fall under you) +they are in the heart of the king's enemies. + + + +44:6 +Heb 1:8-10 + Your throne, O God, is for ever and ever: the sceptre of your kingdom is a sceptre of righteousness. + + +You have loved righteousness, and hated iniquity: therefore God, your God, has anointed you with the oil of gladness beyond your fellows. + + +Myrrh, and stacte, and cassia +are exhaled from your garments, +and out of the ivory palaces, + + +with which kings' daughters have gladdened you for your honor: the queen stood by on your right hand, clothed in vesture wrought with gold, +and arrayed in various colors. + + +Hear, O daughter, and see, and incline your ear; forget also your people, and your father's house. + + +Because the king has desired your beauty; for he is your Lord. + + +And the daughter of Tyre shall adore him with gifts; the rich of the people of the land shall supplicate your +44:12 +Gr. +face. + favor. + + +All her glory +is that of the daughter of the king +44:13 +Alex. +ἔσωθεν, within, so +Heb. of Esebon, robed +as she is in golden fringed garments, + + +in embroidered +clothing: virgins shall be brought to the king after her: her fellows shall be brought to you. + + +They shall be brought with gladness and exultation: they shall be led into the king's temple. + + +Instead of your fathers children are born to you: you shall make them princes over all the earth. + + +They shall make mention of your name from generation to generation: therefore shall the nations give thanks to you +44:17 +Gr. +to the age of the age. + for ever, even for ever and ever. + + + + +(46) For the end, for the sons of Core; a Psalm concerning secret things. + +God is our refuge and strength, a help in the afflictions that have come heavily upon us. + + +Therefore will we not fear when the earth is troubled, and the mountains are removed into the depths of the seas. + + +Their waters have roared and been troubled, the mountains have been troubled by his might. Pause. + + +The flowings of the river gladden the city of God: the Most High has sanctified his tabernacle. + + +God is in the midst of her; she shall not be moved: God shall help her +45:5 +Alex. +and +Heb. +before, +or, +toward the morning. + with his countenance. + + +The nations were troubled, the kingdoms tottered: he uttered his voice, the earth shook. + + +The Lord of hosts is with us; the God of Jacob is our helper. Pause. + + +Come, and behold the works of the Lord, what wonders he has achieved on the earth. + + +Putting an end to wars as for the ends of the earth; he will crush the bow, and break in pieces the weapon, and burn the bucklers with fire. + + +Be still, and know that I am God: I will be exalted among the nations, I will be exalted in the earth. + + +The Lord of hosts is with us; the God of Jacob is our helper. + + + + +(47) For the end, a Psalm for the sons of Core. + +Clap your hands, all you⌃ nations; shout to God with a voice of exultation. + + +For the Lord most high is terrible; +he is a great king over all the earth. + + +He has subdued the peoples under us, and the nations under our feet. + + +He has chosen out his inheritance for us, the beauty of Jacob which he loved. Pause. + + +God is gone up with a shout, the Lord with a sound of a trumpet. + + +Sing praises to our God, sing praises: sing praises to our King, sing praises. + + +For God is king of all the earth: sing praises with understanding. + + +God reigns over the nations: God sits upon the throne of his holiness. + + +The rulers of the people are assembled with the God of Abraam: for God's mighty ones of the earth have been greatly exalted. + + + + +(48) A Psalm of +47:0 +A song. + praise for the sons of Core on the second +day of the week. + +Great is the Lord, and greatly to be praised in the city of our God, in his holy mountain. + + +The city of the great King is well planted +on the mountains of Sion, with the joy of the whole earth, +on the sides of the north. + + +God is known in her palaces, when he undertakes to help her. + + +For, behold the kings of the earth were assembled, they came together. + + +They saw, and so they wondered: they were troubled, they were moved. + + +Trembling took hold on them: there were the pangs as of a woman in travail. + + +You will break the ships of Tharsis with a vehement wind. + + +As we have heard, so have we also seen, in the city of the Lord of hosts, in the city of our God: God has founded it for ever. Pause. + + +We have thought of your mercy, O God, in the midst of your people. + + +According to your name, O God, so is also your praise to the ends of the earth: your right hand is full of righteousness. + + +Let mount Sion rejoice, let the daughters of Judaea exult, because of your judgments, O Lord. + + +Go round about Sion, and encompass her: tell you⌃ her towers. + + +Mark you⌃ well her strength, and observe her palaces; that you⌃ may tell the next generation. + + +For this is our God for ever and ever: he will be our guide for evermore. + + + + +(49) For the end, a Psalm for the sons of Core. + +Hear these words, all you⌃ nations, listen, all you⌃ that dwell upon the earth: + + +both the +48:2 +Gr. +earth-born. + sons of mean men, and sons of +great men; the rich and poor +man together. + + +My mouth shall speak of wisdom; and the meditation of my heart shall bring +forth understanding. + + +I will incline my ear to a parable: I will open my +48:4 +Gr. +problem. + riddle on the harp. + + +Therefore +48:5 +Gr. +shall. + should I fear in the evil day? the iniquity of my heel shall compass me. + + +They that trust in their strength, and boast themselves in the multitude of their wealth— + + +A brother does not redeem, shall a man redeem? he shall not give to God a ransom for himself, + + +or the price of the redemption of his soul, though he labor for ever, + + +and live to the end, +so that he should not see corruption. + + +When he shall see wise men dying, the fool and the senseless one shall perish together; and they shall leave their wealth to strangers. + + +And their sepulchres are their houses for ever, +even their tabernacles to all generations: they have called their lands after their own names. + + +And man being in honor, understands not: he is compared to the senseless cattle, and is like to them. + + +This their way is an offense to them: yet afterwards men will commend their sayings. Pause. + + +They have laid +them as sheep in Hades; death shall feed on them; and the upright shall have dominion over them in the morning, and their help shall fail in Hades from their glory. + + +But God shall deliver my soul from the power of Hades, when he shall receive me. Pause. + + +Fear not when a man is enriched, and when the glory of his house is increased. + + +For he shall take nothing when he dies; neither shall his glory descend with him. + + +For his soul shall be blessed in his life: he shall give thanks to you when you do well to him. + + + +Yet he shall go in +48:19 +Gr. +as far as. + to the generation of his fathers; he shall never see light. + + +Man that is in honor, understands not: he is compared to the senseless cattle, and is like them. + + + + +(50) A Psalm +49:0 +Or, +of. + for Asaph. + +The God of gods, the Lord, has spoken, and called the earth from the rising of the sun to the going down +thereof. + + +Out of Sion +comes the excellence of his beauty. + + +God, our God, shall come manifestly, and shall not keep silence: a fire shall be kindled before him, and round about him there shall be a very great tempest. + + +He shall summon the heaven above, and the earth, that he may +49:4 +Heb 10:30 + judge his people. + + +Assemble you⌃ his saints to him, those that have engaged in a covenant with him upon sacrifices. + + +And the heavens shall declare his righteousness: for God is judge. Pause. + + +Hear, my people, and I will speak to you, O Israel: and I will testify to you: I am God, your God. + + +I will not reprove you on account of your sacrifices; for your whole burnt offerings are before me continually. + + +I will take no bullocks out of your house, nor he-goats out of your flocks. + + +For all the wild beasts of the thicket are mine, the cattle on the mountains, and oxen. + + +I know all the birds of the sky; and the beauty of the field is mine. + + +If I should be hungry, I will not tell you: for the world is mine, and the fullness of it. + + +Will I eat the flesh of bulls, or drink the blood of goats? + + +Offer to God the sacrifice of praise; and pay your vows to the Most High. + + +And call upon me in the day of affliction; and I will deliver you, and you shall glorify me. Pause. + + +But to the sinner God has said, Why do you declare my ordinances, and take up my covenant in your mouth? + + +Whereas you have hated instruction, and have cast my words behind +you. + + +If you saw a thief, you +49:18 +See 1 Pe 4:4. + ran along with him, and have cast in your lot with adulterers. + + +Your mouth has multiplied wickedness, and your tongue has framed deceit. +49:19 +From these words in +Alex. +to Ps. 79. 11, thirty psalms are lacking. + + + +You did sit and speak against your brother, and did scandalize your mother's son. + + +These things you did, and I kept silence: you thought wickedly that I should be like you, +but I will reprove you, and set +your offenses before you. + + +Now consider these things, you⌃ that forget God, lest he rend +you, and there is no deliverer. + + +The sacrifice of praise will glorify me: and +49:23 +Gr. +there. + that is the way wherein I will show to him the salvation of God. + + + + +(51) For the end, a Psalm of David, when Nathan the prophet came to him, when he had gone to Bersabee. + +Have mercy upon me, O God, according to your great mercy; and according to the multitude of your compassions blot out my transgression. + + +Wash me thoroughly from my iniquity, and cleanse me from my sin. + + +For I am conscious of my iniquity; and my sin is continually before me. + + +Against you only have I sinned, and done evil before you: that you might be justified in your sayings, and might overcome when you are judged. + + +For, behold, I was conceived in iniquities, and in sins did my mother conceive me. + + +For, behold, you love truth: you have manifested to me the secret and hidden things of your wisdom. + + +You shall sprinkle me with hyssop, and I shall be purified: you shall wash me, and I shall be made whiter than snow. + + +You shall cause me to hear gladness and joy: the afflicted bones shall rejoice. + + +Turn away your face from my sins, and blot out all my iniquities. + + +Create in me a clean heart, O God; and renew a right spirit in my inward parts. + + +Cast me not away from your presence; and remove not your holy Spirit from me. + + +Restore to me the joy of your salvation: establish me with your +50:12 +Gr. +governing. + directing Spirit. + + + +Then will I teach transgressors your ways; and ungodly men shall turn to you. + + +Deliver me from blood-guiltiness, O God, the God of my salvation: +and my tongue shall joyfully declare your righteousness. + + +O Lord, you shall open my lips; and my mouth shall declare your praise. + + +For if you desired sacrifice, I would have given +it: you will not take pleasure in whole burnt offerings. + + +Sacrifice to God is a broken spirit: a broken and humbled heart God will not despise. + + +Do good, O Lord, to Sion in your good pleasure; and let the walls of Jerusalem be built. + + +Then shall you be pleased with a sacrifice of righteousness, +50:19 +Properly, a heave or wave-offfering. + offering, and whole burnt sacrifices: then shall they offer calves upon your altar. + + + + +(52) For the end, +a Psalm of +51:0 +Gr. +governing. + instruction by David, when Doec the Idumean came and told Saul, and said to him, David is gone to the house of Abimelech. + +Why do you, O mighty man, boast of iniquity in +your mischief? All the day + + +your tongue has devised unrighteousness; like a sharpened razor you have wrought deceit. + + +You have loved wickedness more than goodness; unrighteousness better than to speak righteousness. Pause. + + +You have loved all words of destruction, +and a deceitful tongue. + + +Therefore may God destroy you for ever, may he pluck you up and utterly remove you from +your dwelling, and your root from the land of the living. Pause. + + +And the righteous shall see, and fear, and shall laugh at him, and say, + + +Behold the man who made not God his help; but trusted in the abundance of his wealth, and strengthened himself in his vanity. + + +But I am as a fruitful olive in the house of God: I have trusted in the mercy of God for ever, even for evermore. + + +I will give thanks to you for ever, for you have done +it: and I will wait on your name; for +it is good before the saints. + + + + +(53) For the end, +a Psalm of David upon Maeleth, of instruction. + +The fool has said in his heart, There is no God. They have corrupted +themselves, and become abominable in iniquities: there is none that does good. + + +God looked down from heaven upon the sons of men, to see if there were any that understood, or sought after God. + + + +52:3 +Rom 3:10-12 + They have all gone out of the way, they are together become unprofitable; there is none that does good, there is not even one. + + +Will none of the workers of iniquity know, who devour my people as they would eat bread? they have not called upon God. There were they greatly afraid, where there was no fear: + + +or God has scattered the bones of the men-pleasers; they were ashamed, for God despised them. + + +Who will bring the salvation of Israel out of Sion? When the Lord turns the captivity of his people, Jacob shall exult, and Israel shall be glad. + + + + +(54) For the end, among Hymns of instruction by David, when the Ziphites came and said to Saul, Behold, is not David hid with us? + +Save me, O God, by your name, and judge me by your might. + + +O God, hear my prayer; listen to the words of my mouth. + + +For strangers have risen up against me, and mighty men have sought my life: they have not set God before them. Pause. + + +For behold! God assists me; and the Lord is the helper of my soul. + + +He shall return evil to my enemies; utterly destroy them in your truth. + + +I will willingly sacrifice to you: I will give thanks to your name, O Lord; for +it is good. + + +For you have delivered me out of all affliction, and my eye has seen +my desire upon my enemies. + + + + +(55) For the end, among Hymns of instruction by David. + +Listen, O God, to my prayer; and disregard not my supplication. + + +Attend to me, and listen to me: I was grieved in my meditation, and troubled; + + +because of the voice of the enemy, and because of the oppression of the sinner: for they brought iniquity against me, and were wrathfully angry with me. + + +My heart was troubled within me; and the fear of death fell upon me. + + +Fear and trembling came upon me, and darkness covered me. + + +And I said, O that I had wings as +those of a dove! then would I flee away, and be at rest. + + +Behold! I have fled afar off, and lodged in the wilderness. Pause. + + +I waited for him that should deliver me from distress of spirit and tempest. + + +Destroy, O Lord, and divide their tongues: for I have seen iniquity and gain saying in the city. + + +Day and night +54:10 +Or, +it, +sc. +iniquity. + he shall go round about it upon its walls: iniquity and sorrow and unrighteousness +are in the midst of it; + + +and usury and craft have not failed from its streets. + + +For if an enemy had reproached me, I would have endured it; and if one who hated +me had spoken vauntingly against me, I would have hid myself from him. + + +But you, O man like minded, my guide, and my acquaintance, + + +who in companionship with me sweetened +our food: we walked in the house of God in concord. + + +Let death come upon them, and let them go down alive into Hades, for iniquity is in their dwellings, in the midst of them. + + +I cried to God, and the Lord listened to me. + + +Evening, and morning, and at noon I will declare and make known +my wants: and he shall hear my voice. + + +He shall deliver my soul in peace from them that draw near to me: for they were with me in many +cases. + + +God shall hear, and bring them low, +even he that has existed from eternity. Pause. +54:19 +Or, +they have nothing to give in exchange, +q. d. +to redeem their souls. Compare Ps. 48. 7,8. Mark 8:37. + For they suffer no reverse, and +therefore they have not feared God. + + +He has reached forth his hand for retribution; they have profaned his covenant. + + +They were scattered at the anger of his countenance, and his heart drew near +54:21 +Compare +Heb. +and +A. V. them. His words were smoother than oil, yet are they darts. + + + +54:22 +1 Pe 5:7 + Cast your care upon the Lord, and he shall +54:22 +Or, +nourish. + sustain you; he shall never suffer the righteous to be moved. + + +But you, O God, shall bring them down to the pit of destruction; bloody and crafty men shall not live out half their days; but I will hope in you, O Lord. + + + + +(56) For the end, concerning the people that were removed from the +55:0 +Or, +holy things. + sanctuary, by David for a memorial, when the Philistines caught him in Geth. + +Have mercy upon me, O God; for man has trodden me down; all the day long he warring has afflicted me. + + +Mine enemies have trodden me down all the day from the dawning of the day; for there are many warring against me. + + +They shall be afraid, but I will trust in you. + + +In God I will praise my words; all the day have I hoped in God; I will not fear what flesh shall do to me. + + +All the day long they have abominated my words; all their devices +are against me for evil. + + +They will dwell near and hide +themselves; they will watch my steps, accordingly as I have waited patiently in my soul. + + +You will on no account save them; you will bring down the people in wrath. + + +O God, I have declared my life to you; you have set my tears before you, even according to your promise. + + +Mine enemies shall be turned back, in the day wherein I shall call upon you; behold, I know that you are my God. + + +In God, will I praise +his word; in the Lord will I praise +his saying. + + +I have hoped in God; I will not be afraid of what man shall do to me. + + +The vows of your praise, O God, which I will pay, are upon me. + + +For you have delivered my soul from death, and my feet from sliding, that I should be well-pleasing before God in the land of the living. + + + + +(57) For the end. Destroy not: by David, for a memorial, when he fled from the presence of Saul to the cave. + +Have mercy, upon me, O God, have mercy upon me: for my soul has trusted in you: and in the shadow of your wings will I hope, until the iniquity have passed away. + + +I will cry to God most high; the God who has benefited me. Pause. + + +He sent from heaven and saved me; he gave to reproach them that trampled on me: God has sent forth his mercy and his truth; + + +and he has delivered my soul from the midst of +lions'whelps: I lay down to sleep, +though troubled. +As for the sons of men, their teeth are arms and +missile weapons, and their tongue a sharp sword. + + +Be you exalted, O God, above the heavens; and your glory above all the earth. + + +They have prepared snares for my feet, and have bowed down my soul: they have dug a pit before my face, and fallen into it +themselves. Pause. + + +My heart, O God, +is ready, my heart +is ready: I will sing, yes will sing psalms. + + +Awake, my glory; awake, lute and harp: I will awake early. + + +O Lord, I will give thanks to you among the nations: I will sing to you among the Gentiles. + + +For your mercy has been magnified even to the heavens, and your truth to the clouds. + + +Be you exalted, O God, above the heavens; and your glory above all the earth. + + + + +(58) For the end. Destroy not: by David, for a memorial. + +If you⌃ do indeed speak righteousness, +then do you⌃ judge rightly, you⌃ sons of men. + + +For you⌃ work iniquities in +your hearts in the earth: your hands plot unrighteousness. + + +Sinners have gone astray from the womb: they go astray from the belly: they speak lies. + + +Their venom is like +that of a serpent; as +that of a deaf asp, and that stops her ears; + + +which will not hear the voice of charmers, nor +heed the +57:5 +Gr. +poison. + charm prepared skillfully by the wise. + + +God has crushed their teeth in their mouth: God has broken the cheek-teeth of the lions. + + +They shall utterly pass away like water running through: he shall bend his bow till they shall fail. + + +They shall be destroyed as melted wax: the fire has fallen and they have not seen the sun. + + +Before your thorns feel the white thorn, he shall swallow you up as living, as in his wrath. + + +The righteous shall rejoice when he sees the vengeance of the ungodly: he shall wash his hands in the blood of the sinner. + + +And a man shall say, Verily then there is +57:11 +Gr. +fruit. + a reward for the righteous: verily there is a God that judges them in the earth. + + + + +(59) For the end. Destroy not: by David for a memorial, when Saul sent, and watched his house to kill him. + +Deliver me from my enemies, O God; and ransom me from those that rise up against me. + + +Deliver me from the workers of iniquity, and save me from bloody men. + + +For, behold, they have hunted after my soul; violent men have set upon me: neither +is it my iniquity, nor my sin, O Lord. + + +Without iniquity I ran and directed +my course aright: awake to help me, and behold. + + +And you, Lord God of hosts, the God of Israel, draw near to visit all the heathen; pity not any that work iniquity. Pause. + + +They shall return at evening, and hunger like a dog, and go round about the city. + + +Behold, they shall utter a voice with their mouth, and a sword is in their lips; for who, +say they, has heard? + + +But you, Lord, will laugh them to scorn; you will utterly set at nothing all the heathen. + + +will keep my strength, +looking to you; for you, O God, are my helper. + + + +As for my God, his mercy shall go before me: my God will show me +vengeance on my enemies. + + +Slay them not, lest they forget your +58:11 +some read λαοῦ 'people'. + law; scatter them by your power; and bring them down, O Lord, my defender. + + + +For the sin of their mouth, +and the word of their lips, let them be even taken in their pride. + + +And for +their cursing and falsehood shall utter destruction be denounced: +they shall fall by the wrath of utter destruction, and shall not be; so shall they know that the God of Jacob is Lord of the ends of the earth. Pause. + + +They shall return at evening, and be hungry as a dog, and go round about the city. + + +They shall be scattered hither and there for meat; and if they be not satisfied, they shall even murmur. + + +But I will sing to your strength, and in the morning will I exult +in your mercy; for you have been my supporter, and my refuge in the day of my affliction. + + + +You are my helper; to you, my God, will I sing; you are my supporter, O my God, +and my mercy. + + + + +(60) For the end, for them that shall yet be changed; for an inscription by David for instruction, when he +had burned Mesopotamia of Syria, and Syria Sobal, and Joab +had returned and struck +in the valley of salt twelve thousand. + +O God, you have rejected and destroyed us; you have been angry, yet have pitied us. + + +You have shaken the earth, and troubled it; heal its breaches, for it has been shaken. + + +You have shown your people hard things: you have made us drink the wine of astonishment. + + +You have given a token to them that fear you, that they might flee from the bow. Pause. + + +That your beloved ones may be delivered; save with your right hand, and hear me. + + +God has spoken in his holiness; I will rejoice, and divide Sicima, and measure out the valley of tents. + + +Galaad is mine, and Manasse is mine; and Ephraim is the +59:7 +Or, +strengthening. + strength of my head; + + +Judas is my king; Moab is the caldron of my hope; over Idumea will I stretch out my shoe; the Philistines have been subjected to me. + + +Who will lead me into the fortified city? who will guide me as far a Idumea? + + +Will not you, O God, who have cast us off? and will not you, O God, go forth with our forces? + + +Give us help from trouble: for vain is the deliverance of man. + + +In God will we +59:12 +Gr. +work power. + do valiantly; and he shall bring to nothing them that harass us. + + + + +(61) For the end, among the Hymns of David. + +O God, listen to my petition; attend to my prayer. + + +From the ends of the earth have I cried to you, when my heart was in trouble: you lifted me up on a rock you did guide me: + + +because you were my hope, a tower of strength from the face of the enemy. + + +I will dwell in your tabernacle for ever; I will shelter myself under the shadow of your wings. Pause. + + +For you, o God, have heard my prayers; you have given an inheritance to them that fear your name. + + +You shall add days to the days of the king; +you shall lengthen his years to all generations. + + +He shall endure for ever before God: which of them will seek out his mercy and truth? + + +So will I sing to your name for ever and ever, that I may daily perform my vows. + + + + +(62) For the end, a Psalm of David for Idithun. + +Shall not my soul be subjected to God? for of him is my salvation. + + +For he is my God, and my savior; my helper, I shall not be moved +61:2 +Or, +any more. + very much. + + +How long will you⌃ assault a man? you⌃ are all slaughtering as with a bowed wall and a broken hedge. + + +They only took counsel to set at nothing my honor: I ran in thirst: with their mouth they blessed, but with their heart they cursed. Pause. + + +Nevertheless do you, my soul, be subjected to God; for of him +is my patient hope. + + +For he +is my God and my Saviour; my helper, I shall not be moved. + + + +61:7 +Gr. +on. + In God +is my salvation and my glory: +he is the God of my help, and my hope is in God. + + +Hope in him, all you⌃ congregation of the people; pour out your hearts before him, for God is our helper. Pause. + + +But the sons of men are vain; the sons of men are false, so as to be deceitful in the balances; they are +61:9 +Gr. +altogether. + all alike +formed out of vanity. + + +Trust not in unrighteousness, and lust not after robberies: if wealth should flow in, set not your heart upon it. + + +God has spoken once, +and I have heard these two things, that power is of God; + + +and mercy is your, O Lord; for you will recompense every one according to his works. + + + + +(63) A Psalm of David, when he was in the wilderness of Idumea. + +O God, my God, I cry to you early; my soul has thirsted for you: how often has my flesh +longed after you, in a barren and trackless and dry land! + + +Thus have I appeared before you in the sanctuary, that I might see your power and your glory. + + +For your mercy is better than +62:3 +Gr. +lives. + life: my lips shall praise you. + + +Thus will I bless you during my life: I will lift up my hands in your name. + + +Let my soul be filled as with marrow and fatness; and +my joyful lips shall praise your name. + + + +62:6 +Gr. +if. See Acts 26:23 Forasmuch as I have remembered you on my bed: in the early seasons I have meditated on you. + + +For you have been my helper, and in the shelter of your wings will I rejoice. + + +My soul has +62:8 +Gr. +been glued. + kept very close behind you: your right hand has upheld me. + + +But they vainly sought after my soul; they shall go into the lowest parts o the earth. + + +They shall be delivered up to the power of the sword; they shall be portions for foxes. + + +But the king shall rejoice in God; every one that swears by him shall be praised; for the mouth of them that speak unjust things has been stopped. + + + + +(64) For the end, a Psalm of David. + +Hear my prayer, O God, when I make my petition to you; deliver my soul from fear of the enemy. + + +You have sheltered me from the conspiracy of them that do wickedly; from the multitude of them that work iniquity; + + +who have sharpened their tongues as a sword; they have bent their bow maliciously; + + +to shoot in secret at the blameless; they will shoot him suddenly, and will not fear. + + +They have set up for themselves an evil matter, they have given counsel to hide snares; they have said, Who shall see them? + + +They have searched out iniquity; they have wearied themselves with searching diligently, a man shall approach and the heart is deep, + + +and God shall be exalted, their wounds were +caused by the weapon of the foolish children, + + +and their tongues have set him at nothing, all that saw them were troubled; + + +and every man was alarmed, and they related the works of God, and understood his deeds. + + +The righteous shall rejoice in the Lord, and hope on him, and all the upright in heart shall be praised. + + + + +(65) For the end, a Psalm +and Song of David. + +Praise becomes you, O God, in Sion; and to you shall the vow be performed. + + +Hear my prayer; to you all flesh shall come. + + +The words of transgressors have overpowered us; but do you pardon our sins. + + +Blessed +is he whom you have chosen and adopted; he shall dwell in your courts; we shall be filled with the good things of your house; your temple is holy. + + + +You are wonderful in righteousness. Listen to us, O God our Saviour; the hope of all the ends of the earth, and of them +that are on the sea afar off: + + +who do +64:6 +Gr. +prepare. + establish the mountains in your strength, being girded about with power; + + +who trouble the depth of the sea, the sounds of its waves. + + +The nations shall be troubled, and they that inhabit the ends +of the earth shall be afraid of your signs; you will cause the outgoings of morning and evening to rejoice. + + +You have visited the earth, and saturated it; you have abundantly enriched it. The river of God is filled with water; you have prepared their food, for thus is the preparation +of it. + + +Saturate her furrows, multiply her fruits; +the crop springing up shall rejoice in its drops. + + +You will bless the crown of the year +because of your goodness; and your plains shall be filled with fatness. + + +The mountains of the wilderness shall be enriched; and the hills shall gird themselves with joy. + + +The rams of the flock are clothed +with wool, and the valleys shall abound in corn; they shall cry aloud, yes they shall sing hymns. + + + + +(66) For the end, a Song of Psalm of resurrection. + +Shout to God, all the earth. + + +O sing praises to his name; give glory to his praise. + + +Say to God, How awful are your works! through the greatness of your power your enemies shall lie to you. + + +Let all the earth worship you, and sing to you; let them sing to your name. Pause. + + +Come and behold the works of God; +he is terrible in +his counsels beyond the children of men. + + +Who turns the sea into dry land; they shall go through the river on foot; there shall we rejoice in him, + + +who by his power +65:7 +Or, +has dominion for ever. + is Lord over the age, his eyes look upon the nations; let not them that provoke +him be exalted in themselves. Pause. + + +Bless our God, you⌃ Gentiles, and make the voice of his praise to be heard; + + +who quickens my soul in life, and does not suffer my feet to be moved. + + +For you, O God, has proved us; you have tried us with fire as silver is tried. + + +You brought us into the snare; you laid afflictions on our back. + + +You did mount men upon our heads; we went through the fire and water; but you brought us out into +a place of refreshment. + + +I will go into your house with whole burnt offerings; I will pay you my vows, + + +which my lips framed, and my mouth uttered in my affliction. + + +I will offer to you whole burnt sacrifices full of marrow, with incense and rams; I will sacrifice to you oxen with goats. Pause. + + +Come, hear, and I will tell, all you⌃ that fear God, how great things he has done for my soul. + + +I cried to him with my mouth, and exalted him with my tongue. + + +If I have regarded iniquity in my heart, let not the Lord listen +to me. + + +Therefore God has listened to me; he has attended to the voice of my prayer. + + +Blessed be God, who has not turned away my prayer, nor his mercy from me. + + + + +(67) For the end, a Psalm of David among the Hymns. + +God be merciful to us, and bless us; +and cause his face to shine upon us. Pause. + + +That +men may know your way on the earth, your salvation among all nations. + + +Let the nations, O God, give thanks to you; let all the nations give thanks to you. + + +Let the nations rejoice and exult, for you shall judge the peoples in equity, and shall guide the nations on the earth. Pause. + + +Let the peoples, O God, give thanks to you; let all the peoples give thanks to you. + + +The earth has yielded her fruit; let God, our God bless us. + + +Let God bless us; and let all the ends of the earth fear him. + + + + +(68) For the end, a Psalm of a Song by David. + +Let God arise, and let his enemies be scattered; and let them that hate him flee from before him. + + +As smoke vanishes, let them vanish: as wax melts before the fire, so let the sinners perish from before God. + + +But let the righteous rejoice; let them exult before God: let them be delighted with joy. + + +Sing to God, sing praises to his name: make a way for him that rides upon the west (the Lord is his name) and exult before him. They shall be troubled before the face of him, + + + +who is the father of the orphans, and judge of the widows: +such is God in his holy place. + + +God settles the solitary in a house; leading forth prisoners mightily, also them that act provokingly, +even them that dwell in tombs. + + +O God, when you went forth before your people, when you went through the wilderness; Pause: + + +the earth quaked, yes, the heavens dropped +water at the presence of the God of Sina, at the presence of the God of Israel. + + +O God, you will grant to your inheritance a gracious rain; for it was weary, but you did refresh it. + + +Your +67:10 +See the +Hebrew. + creatures dwell in it: you have in your goodness prepared for the poor. + + +The Lord God will give a word to them that preach +it in a great company. + + +The king of the forces of the beloved, of the beloved, +will even +grant them for the beauty of the house to divide the spoils. + + +Even if you⌃ should lie among the lots, +you⌃ shall have the wings of a dove covered with silver, and her breast with +67:13 +Lit. +greenness of gold. + yellow gold. + + +When the heavenly One scatters kings upon it, they shall be made snow-white in Selmon. + + +The mountain of God is a rich mountain; a +67:15 +Gr. +curdled like cheese. + swelling mountain, a rich mountain. + + +Therefore do you⌃ conceive +evil, you⌃ swelling mountains? +this is the mountain which God has delighted to dwell in; yes, the Lord will dwell +in it for ever. + + +The chariots of God are ten thousand fold, thousands of rejoicing ones: the Lord is among them, in Sina, in the holy place. + + + +67:18 +Gr. +having gone up. + You are gone up on high, you have led captivity captive, you have received gifts for man, yes, for +they were rebellious, that you might dwell among them. + + +Blessed be the Lord God, blessed be the Lord daily; and the God of our salvation shall prosper us. Pause. + + +Our God is the God of salvation; and to the Lord belong the issues from death. + + +But God shall crust the heads of his enemies; the hairy crown of them that go on in their trespasses. + + +The Lord said, I will bring again from Basan, I will bring +my people again through the depths of the sea. + + +That your foot may be dipped in blood, +and the tongue of your dogs +be stained with that of +your enemies. + + +Your goings, O God, have been seen; the goings of my God, the king, in the sanctuary. + + +The princes went first, next before the players on instruments, in the midst of damsels playing on timbrels. + + +Praise God in the congregations, the Lord from the fountains of Israel. + + +There is Benjamin the younger +one in ecstasy, the princes of Juda their rulers, the princes of Zabulon, the princes of Nephthali. + + +O God, command you your strength: strengthen, O God, this which you have wrought in us. + + +Because of your temple at Jerusalem shall kings bring presents to you. + + +Rebuke the wild beasts of the reed: let the crowd of bulls with the heifers of the nations +be rebuked, so that they who have been proved with silver may not be shut out: scatter you the nations that wish for wars. + + +Ambassadors shall arrive out of Egypt; Ethiopia shall hasten +to stretch out her hand readily to God. + + +Sing to God, you⌃ kingdoms of the earth; sing psalms to the Lord. Pause. + + +Sing to God that +67:33 +Gr. +mounts, +or, +has mounted. + rides on the heaven of heaven, eastward: behold, he will utter a mighty sound with his voice. + + +Give you⌃ glory to God: his excellency is over Israel, and his power is in the clouds. + + +God is wonderful +67:35 +Or, +among his holy ones. + in his holy +places, the God of Israel: he will give power and strength to his people: blessed be God. + + + + +(69) For the end, +a Psalm of David, for +68:0 +See Ps 44. title. + alternate +strains. + +Save me, O God; for the waters have come in to my soul. + + +I am stuck fast in deep mire, and there is no standing: I am come in to the depths of the sea, and a storm has overwhelmed me. + + +I am weary +of crying, my throat has become hoarse; my eyes have failed by my waiting on my God. + + +They that hate me without a cause are more than the hairs of my head: my enemies that persecute me unrighteously are strengthened: then I +68:4 +Or, +paid for, +or, +made up for. + restored that which I took not away. + + +O God, you know my foolishness; and my transgressions are not hidden from you. + + +Let not them that wait on you, O Lord of hosts, be ashamed on my account: let not them that seek you, be ashamed on my account, O God of Israel. + + +For I have suffered reproach for your sake; shame has covered my face. + + +I became strange to my brethren, and a stranger to my mother's children. + + + +68:9 +John 2:17; Rom 15:3 + For the zeal of your house has eaten me up; and the reproaches of them that reproached you are fallen upon me. + + +And I bowed down my soul with fasting, and that was made my reproach. + + +And I put on sackcloth for my covering; and I became a proverb to them. + + +They that sit in the gate talked against me, and they that drank wine sang against me. + + +But I +will cry to you, O Lord, in my prayer; O God, it is a propitious time: in the multitude of your mercy hear me, in the truth of your salvation. + + +Save me from the mire, that I stick not +in it: let me be delivered from them that hate me, and from the deep waters. + + +Let not the waterflood drown me, nor let the deep swallow me up; neither let the well shut its mouth upon me. + + +Hear me, O Lord; for your mercy is good: according to the multitude of your compassions look upon me. + + +And turn not away your face from your +68:17 +Or, +son. + servant; for I am afflicted: hear me speedily. + + +Draw near to my soul and redeem it: deliver me because of my enemies. + + +For you know my reproach, and my shame, and my confusion; all that afflict me are before you. + + +My soul has waited for reproach and misery; and I waited for one to grieve with me, but there was none; and for one to comfort me, but I found none. + + +They gave +me also gall for my food, and made me drink vinegar for my thirst. + + + +68:22 +Rom 11:9-10 + Let their table before them be for a snare, and for a recompense, and for a stumbling block. + + +Let their eyes be darkened that they should not see; and bow down their back continually. + + +Pour out your wrath upon them, and let the fury of your anger take hold on them. + + + +68:25 +Acts 1:20 + Let their habitation be made desolate; and let there be no inhabitant in their tents: + + +Because they persecuted him whom you have struck; and they have added to the grief of my wounds. + + +Add iniquity to their iniquity; and let them not come into your righteousness. + + +Let them be blotted out of the book of the living, and let them not be written with the righteous. + + +I am poor and sorrowful; but the salvation of your countenance has helped me. + + +I will praise the name of my God with a song, I will magnify him with praise; + + +and +this shall please God more than a young calf having horns and hoofs. + + +Let the poor see and rejoice; seek the Lord diligently, and you⌃ shall live. + + +For the Lord hears the poor, and does not set at nothing his fettered ones. + + +Let the heavens and the earth raise him, the sea, and all things moving in them. + + +For God will save Sion, and the cities of Judea shall be built; and +men shall dwell there, and inherit it. + + +And the seed of his servants shall possess it, and they that love his name shall dwell therein. + + + + +(70) For the end, by David for a remembrance, that the Lord may save me. + +Draw near, O God, to my help. + + +Let them be ashamed and confounded that seek my soul: let them be turned backward and put to shame, that wish me evil. + + +Let them that say to me, Aha, aha, be turned back and put to shame immediately. + + +Let all that seek you exult and be glad in you: and let those that love your salvation say continually, Let God be magnified. + + +But I am poor and needy; O God, help me: you are my helper and deliverer, O Lord, delay not. + + + + +(71) By David, +a Psalm sung by the sons of Jonadab, and the first that were taken captive. + +O Lord, I have hoped in you: let me never be put to shame. + + +In your righteousness deliver me and rescue me: incline your ear to me, and save me. + + +Be to me a protecting God, and a strong hold to save me: for you are my fortress and my refuge. + + +Deliver me, O my God, from the hand of the sinner, from the hand of the transgressor and unjust man. + + +For you are my support, O Lord; O Lord, +you are my hope from my youth. + + +On you have I been stayed from the womb: from the belly of my mother you are my protector: of you is my +70:6 +Gr. +hymn singing. + praise continually. + + +I am become as it were a wonder to many: but you are +my strong helper. + + +Let my mouth be filled with praise, that I may hymn your glory, +and your majesty all the day. + + +Cast me not off at the time of old age; forsake me not when my strength fails. + + +For my enemies have spoken against me; and they that lay wait for my soul have taken counsel together, + + +saying, God has forsaken him: persecute you⌃ and take him; for there is none to deliver +him. + + +O God, go not far from me, O my God, draw near to my help. + + +Let those that plot against my soul be ashamed and utterly fail: let those that seek my hurt be clothed with shame and dishonor. + + +But I will hope continually, and will praise you more and more. + + +My mouth shall declare your righteousness openly, +and your salvation all the day; for I am not acquainted with the affairs +of men. + + +I will go on in the might of the Lord: O Lord, I will make mention of your righteousness only. + + +O God, you have taught me from my youth, and until now will I declare your wonders; + + +even until I am old and advanced in years. O God, forsake me not; until I shall have declared your arm to all the generation that is to come: + + +even your power and your righteousness, O God, up to the highest +heavens, even the mighty works which you have done: O God, who is like to you? + + +What afflictions many and sore have you showed me! yet you did turn and quicken me, and brought me again from the depths of the earth. + + +You did multiply your righteousness, and did turn and comfort me, and brought me again out of the depths of the earth. + + +I will also therefore give thanks to you, O God, +because of your truth, on an instrument of psalmody: I will sing psalms to you on the harp, O Holy One of Israel. + + +My lips shall rejoice when I sing to you; and my soul, which you have redeemed. + + +Moreover also my tongue shall +70:24 +Lit. +meditate. + dwell all the day upon your righteousness; when they shall be ashamed and confounded that seek my hurt. + + + + +(72) For Solomon. + +O God, give your judgment to the king, and your righteousness to the king's son; + + + +that he may judge your people with righteousness, and your poor with judgment. + + +Let the mountains and the hills raise peace to your people: + + +he shall judge the poor of the people in righteousness, and save the children of the needy; and shall bring low the false accuser. + + +And he shall continue as long as the sun, and before the moon for ever. + + +He shall come down as rain upon a fleece; and as drops falling upon the earth. + + +In his days shall righteousness spring up; and abundance of peace till the moon be removed. + + +And he shall have dominion from sea to sea, and from the river to the ends of the earth. + + +The Ethiopians shall fall down before him; and his enemies shall lick the dust. + + +The kings of Tharsis, and the isles, shall bring presents: the kings of the Arabians and Saba shall offer gifts. + + +And all kings shall worship him; all the Gentiles shall serve him. + + +For he has delivered the poor from the oppressor; and the needy who had no helper. + + +He shall spare the poor and needy, and shall deliver the souls of the needy. + + +He shall redeem their souls from usury and injustice: and their name +shall be precious before him. + + +And he shall live, and there shall be given him of the gold of Arabia: and +men shall pray for him continually; +and all the day shall they praise him. + + +There shall be an establishment on the earth on the tops of the mountains: the fruit thereof shall be exalted above Libanus, and they of the city shall flourish as grass of the earth. + + +Let his name be blessed for ever: his name shall endure +71:17 +Gr. +before. + longer than the sun: and all the tribes of the earth shall be blessed in him: all nations shall call him blessed. + + +Blessed is the Lord God of Israel, who alone does wonders. + + +And blessed is his glorious name for ever, even for ever and ever: and all the earth shall be filled with his glory. So be it, so be it. + + +The hymns of David the son of Jessae are ended. + + + + +(73) A Psalm for Asaph. + +How good is God to Israel, to the upright in heart! + + +But my feet were almost overthrown; my goings very nearly slipped. + + +For I was jealous of the transgressors, beholding the tranquility of sinners. + + +For there is no sign of reluctance in their death: and +they have firmness under their affliction. + + +They are not in the troubles of +other men; and they shall not be scourged with +other men. + + +Therefore pride has possessed them; they have clothed themselves with their injustice and ungodliness. + + +Their injustice shall go forth as out of fatness: they have fulfilled their intention. + + +They have taken counsel and spoken in wickedness: they have uttered unrighteousness loftily. + + +They have set their mouth against heaven, and their tongue has gone through upon the earth. + + +Therefore shall my people return hither: and full days shall be found +72:10 +Gr. +in. + with them. + + +And they said, How does God know? and +72:11 +Gr. +if there is. + is there knowledge in the Most High? + + +Behold, these +are the sinners, and they that prosper always: they have possessed wealth. + + +And I said, Verily in vain have I justified my heart, and washed my hands in innocency. + + +For I was plagued all the day, and my reproof +was every morning. + + +If I said, I will speak thus; behold, I +should have broken covenant with the generation of your children. + + +And I undertook to understand this, +but it is too hard for me, + + +until I go into the sanctuary of God; +and so understand the latter end. + + +Surely you have appointed +judgments to them because of their crafty dealings: you have cast them down when they were lifted up. + + +How have they become desolate! suddenly they have failed: they have perished because of their iniquity. + + +As the dream of one awakening, O Lord, in your city you will despise their image. + + +For my heart has rejoiced, and my reins have been +72:21 +Gr. +changed. + gladdened. + + +But I +was vile and knew not: I became brutish before you. + + +Yet I am continually with you: you have holden my right hand. + + +You have guided me by your counsel, and you have taken me to yourself with glory. + + +For what have I in heaven +but you? and what have I desired upon the earth beside you? + + +My heart and my flesh have failed: +but God +is the strength of my heart, and God is my portion for ever. + + +For, behold, they that remove themselves far from you shall perish: you have destroyed every one that goes a whoring from you. + + +But it is good for me to cleave close to God, to put my trust in the Lord; that I may proclaim all your praises in the gates of the daughter of Sion. + + + + +(74) +A Psalm of +73:0 +Gr. +understanding. + instruction for Asaph. + +Therefore have you rejected +us, O God, for ever? +therefore is your wrath kindled against the sheep of your pasture? + + +Remember your congregation which you have purchased from the beginning; you did ransom the rod of your inheritance; this mount Sion wherein you have lived. + + +Lift up your hands against their pride continually; +because of all that the enemy has done wickedly in your holy places. + + +And they that hate you have boasted in the midst of your feast; they have set up their standards for signs, + + +ignorantly as it were in the entrance above; + + +they cut down its doors at once with axes as in a wood of trees; they have broken it down with hatchet and stone cutter. + + +They have burnt your sanctuary with fire to the ground; they have profaned the +73:7 +Gr. +tabernacle. + habitation of your name. + + +They have said in their heart, +even all their kindred together, Come, let us abolish the feasts of the Lord from the earth. + + +We have not seen our signs; there is no longer a prophet; and +God will not know us any more. + + +How long, O God, shall the enemy reproach? shall the enemy provoke your name forever? + + +Therefore turn you away your hand, and your right hand from the midst of your bosom for ever? + + +But God is our King +73:12 +Gr. +before the age. + of old; he has wrought salvation in the midst of the earth. + + +You did establish the sea, in your might, you did break to pieces the heads of the +73:13 +Or, +serpents. + dragons in the water. + + +You did break to pieces the heads of the dragon; you did give him +for meat to the Ethiopian nations. + + +You did cleave fountains and torrents; you dried up +73:15 +Heb. rivers of Etham. + mighty rivers. + + +The day is yours, and the night is yours; you have prepared the sun and the moon. + + +You have made all the borders of the earth; you have made summer and spring. + + +Remember this your creation: an enemy has reproached the Lord, and a foolish people has provoked your name. + + +Deliver not to the wild beasts a soul that gives praise to you: forget not for ever the souls of your poor. + + +Look upon your covenant: for the dark +places of the earth are filled with the habitations of iniquity. + + +let not the afflicted and shamed one be rejected: the poor and needy shall praise your name. + + +Arise, O God, plead your cause: remember your reproaches that come from the foolish one all the day. + + +Forget not the voice of your suppliants: let the pride of them that hate you continually ascend before you. + + + + +(75) For the end, Destroy not, a Psalm of a Song for Asaph. + +We will give thanks to you, O God, we will give thanks, and call upon your name: I will declare all your wonderful works. + + +When I shall take a set time, I will judge righteously. + + +The earth is dissolved, and all that dwell in it: I have strengthened its pillars. Pause. + + +I said to the transgressors, Do not transgress; and to the sinners, Lift not up the horn. + + +Lift not up your horn on high; speak not unrighteousness against God. + + +For +good comes neither from the east, nor from the west, nor from the desert mountains. + + +For God is the judge; he puts down one, and raises up another. + + +For +there is a cup in the hand of the Lord, full of unmingled wine; and he has +74:8 +Gr. +from this into that. + turned +it from side to side, but its dregs have not been wholly poured out; all the sinners of the earth shall drink +them. + + +But I will exult for ever: I will sing praises to the God of Jacob. + + +And I will break all the horns of sinners; but the horns of the righteous one shall be exalted. + + + + +(76) For the end, among the Hymns, a Psalm for Asaph; a Song for the Assyrian. + +God is known in Judea: his name is great in Israel. + + +And his place has been in +75:2 +Or, +Salem, see the Hebrew. + peace, and his dwelling-place in Sion. + + +There he broke the power of the bows, the shield, and the sword, and the battle. Pause. + + +You do wonderfully shine forth from the everlasting mountains. + + +All the simple ones in heart were troubled; all the men of wealth have slept their sleep, and have found nothing in their hands. + + +At your rebuke, O God of Jacob, the riders on horses slumbered. + + +You are terrible; and who shall withstand you, because of your anger? + + +You did cause judgment to be heard from heaven; the earth feared, and was still, + + +when God arose to judgment, to save all the meek in heart. Pause. + + +For the inward thought of man shall give thanks to you: and the memorial of his inward thought shall keep a feast to you. + + +Vow, and pay +your vows to the Lord our God; all that are round about him shall bring gifts, +even to him that is terrible, + + +and that takes away the spirits of princes; to him that is terrible among the kings of the earth. + + + + +(77) For the end, for Idithun, a Psalm of Asaph. + +I cried to the Lord with my voice, yes, my voice +was addressed to God; and he gave heed to me. + + +In the day of my affliction I earnestly sought the Lord; +even with my hands by night before him, and I was not deceived; my soul refused to be comforted. + + +I remembered God, and rejoiced; I poured out my complaint, and my soul fainted. Pause. + + +All my enemies set a watch +against me: I was troubled, and spoke not. + + +I considered the days of old, and remembered ancient years. + + +And I meditated; I communed with my heart by night, and diligently searched my spirit, +saying, + + +Will the Lord cast off for ever? and will he be well pleased no more? + + +Will he cut off his mercy for ever, even for ever and ever? + + +Will God forget to pity? or will he shut up his compassions in his wrath? Pause. + + +And I said, Now I have begun; this is the change of the right hand of the Most High. + + +I remembered the works of the Lord; for I will remember your wonders from the beginning. + + +And I will meditate on all your works, and will consider your doings. + + +O God, your way is in the sanctuary; who is a great God as our God? + + +You are the God that do wonders; you have made known your power among the nations. + + +You have with your arm redeemed your people, the sons of Jacob and Joseph. Pause. + + +The waters saw you, O God, the waters saw you, and feared; and the depths were troubled. + + + +There was an abundant sound of waters: the clouds uttered a voice; for your arrows went abroad. + + +The voice of your thunder was abroad, and around your lightnings appeared to the world; the earth trembled a quaked. + + +Your way is in the sea, and your paths in many waters, and your footsteps can’t be known. + + +You did guide your people as sheep by the hand of Moses and Aaron. + + + + +(78) +A Psalm of +77:0 +Gr. +understanding. instruction for Asaph. + +Give heed, O my people, to my law: incline your ear to the words of my mouth. + + + +77:2 +Matt 13:35 + I will open my mouth in parables: I will utter dark sayings +which have been from the beginning. + + +All which we have heard and known, and our fathers have declared to us. + + +They were not hid from their children to a second generations; +the fathers declaring the praises of the Lord, and his mighty acts, and his wonders which he wrought. + + +And he raised up a testimony in Jacob, and appointed a law in Israel, which he commanded our fathers, to make it known to their children: + + +that another generation might know, even the sons which should be born; and they should arise and declare them to their children. + + +That they might set their hope on God, and not forget the works of God, but diligently seek his commandments. + + +That they should not be as their fathers, a perverse and provoking generation; a generation which set not its heart aright, and its spirit was not +77:8 +Or, +faithfully secured. steadfast with God. + + +The children of Ephraim, bending and shooting +with the bow, turned +back in the day of battle. + + +They kept not the covenant of God, and would not walk in his law. + + +And they forgot his benefits, and his miracles which he +had showed them; + + +the miracles which he wrought before their fathers, in the land of Egypt, in the plain of Tanes. + + +He clave the sea, and led them through: he made the waters to stand as +in a bottle. + + +And he guided them with a cloud by day, and all the night with a light of fire. + + +he clave a rock in the wilderness, and made them drink as in a great deep. + + +And he brought water out of the rock, and caused waters to flow down as rivers. + + +And they sinned yet more against him; they provoked the Most High in the wilderness. + + +And they tempted God in their hearts, in asking meat for +the desire of their souls. + + +They spoke also against God, and said, Will God be able to prepare a table in the wilderness? + + +Forasmuch as he struck the rock, and the waters flowed, and the torrents ran abundantly; will he be able also to give bread, or prepare a table for his people? + + +Therefore the Lord heard, and was provoked: and fire was kindled in Jacob, and wrath went up against Israel. + + +Because they believed not in God, and trusted not in his salvation. + + +Yet he commanded the clouds from above, and opened the doors of heaven, + + +and rained upon them manna to eat, and gave them the bread of heaven. + + +Man ate angels' bread; +77:25 +Matt 6:31 + he sent them provision to the full. + + +He removed the south wind from heaven; and by his might he brought in the southwest wind. + + +And he rained upon them flesh like dust, and feathered birds like the sand of the seas. + + +And they fell into the midst of their camp, round about their tents. + + +So they ate, and were completely filled; and he gave them their desire. + + +They were not disappointed of their desire: +but when their food was yet in their mouth, + + +then the indignation of God rose up against them, and killed the fattest of them, and overthrew the choice men of Israel. + + +In the midst of all this they sinned yet more, and believed not his miracles. + + +And their days were consumed in vanity, and their years with anxiety. + + +When he killed them, they sought him: and they returned and called betimes upon God. + + +And they remembered that God was their helper, and the most high God was their redeemer. + + +Yet they loved him +only with their mouth, and lied to him with their tongue. + + +For their heart +was not right with him, neither were they steadfast in his covenant. + + +But he is compassionate, and will +77:38 +Gr. +be propitious, +or, +merciful to. + forgive their sins, and will not destroy +them: yes, he will frequently turn away his wrath, and will not kindle all his anger. + + +And he remembered that they are flesh; a wind that passes away, and returns not. + + +How often did they provoke him in the wilderness, +and anger him in a dry land! + + +Yes, they turned back, and tempted God, and provoked the Holy One of Israel. + + +They remembered not his hand, the day in which he delivered them from the hand of the oppressor. + + +How he had wrought his signs in Egypt, and his wonders in the field of Tanes: + + +and had changed their rivers into blood; and their +77:44 +Gr. +rains, +or, +showers. + streams, that they should not drink. + + +He sent against them the dog-fly, and it devoured them; and the frog, and it spoiled them. + + +And he gave their fruit to the canker worm, and their labors to the locust. + + +He killed their vines with hail, and their sycamores with frost. + + +And he gave up their cattle to hail, and their substance to the fire. + + +He sent out against them the fury of his anger, wrath, and indignation, and affliction, a message by evil angels. + + +He made a way for his wrath; he spared not their souls from death, but consigned their cattle to death; + + +and struck every firstborn in the land of Egypt; the first fruits of their labors in the tents of Cham. + + +And he removed his people like sheep; he led them as a flock in the wilderness. + + +And he guided them with hope, and they feared not: but the sea covered their enemies. + + +And he brought them in to the mountain of his sanctuary, this mountain which his right hand had purchased. + + +And he cast out the nations from before them, and made them to inherit by a line of inheritance, and made the tribes of Israel to dwell in their tents. + + +Yet they tempted and provoked the most high God, and kept not his testimonies. + + +And they turned back, and broke covenant, even as also their fathers: they became like a crooked bow. + + +And they provoked him with their high places, and moved him to jealousy with their graven images. + + +God heard and +77:59 +Lit. +overlooked them. See Acts 17:30. + lightly regarded +them, and greatly despised Israel. + + +And he rejected the tabernacle of Selom, his tent where he lived among men. + + +And he gave their strength into captivity, and their beauty into the enemy's hand. + + +And he +77:62 +Gr. +shut up. + gave his people to the sword; and disdained his inheritance. + + +Fire devoured their young men; and their virgins mourned not. + + +Their priests fell by the sword; and their widows shall not be wept for. + + +So the Lord awaked as one out of sleep, +and as a mighty man who has been heated with wine. + + +And he struck his enemies in the hinder parts: he brought on them a perpetual reproach. + + +And he rejected the tabernacle of Joseph, and chose not the tribe of Ephraim; + + +but chose the tribe of Juda, the mount Sion which he loved. + + +And he built his sanctuary as +the place of unicorns; he founded it for ever on the earth. + + +He chose David also his servant, and took him up from the flocks of sheep. + + +He took him from following the ewes great with young, to be the shepherd of Jacob his servant, and Israel his inheritance. + + +So he tended them in the innocency of his heart; and guided them by the skillfulness of his hands. + + + + +(79) A Psalm for Asaph. + +O God, the heathen are come into your inheritance; they have polluted your holy temple; they have made Jerusalem a storehouse of fruits. + + +They have given the dead bodies of your servants +to be food for the birds of the sky, the flesh of your holy ones for the wild beasts of the earth. + + +They have shed their blood as water, round about Jerusalem; and there was none to bury +them. + + +We are become a reproach to our neighbors, a scorn and derision to them +that are round about us. + + +How long, O Lord? will you be angry for ever? shall your jealousy burn like fire? + + +Pour out your wrath upon the heathen that have not known you, and upon the kingdoms which have not called upon your name. + + +For they have devoured Jacob, and laid his place waste. + + +Remember not our old transgressions; let your tender mercies speedily prevent us; for we are greatly impoverished. + + +Help us, O God our Saviour; for the glory of your name, O Lord, deliver us; and be merciful to our sins, for your name's sake. + + +Lest haply they should say among the heathen, Where is their God? and let the avenging of your servant's blood that has been shed be known among the heathen before our eyes. + + +Let the groaning of the prisoners come in before you; according to the greatness of your arm preserve the +78:11 +i.e. +men appointed to die. + sons of the slain ones. + + +Repay to our neighbors sevenfold into their bosom their reproach, with which they have reproached you, O Lord. + + +For we are your people and the sheep of your pasture; we will give you thanks for ever; we will declare your praise throughout all generations. + + + + +(80) For the +79:0 +See Ps 44, and 68, titles. + end, for alternate +strains, a testimony for Asaph, a Psalm concerning the Assyrian. + +Attend, O Shepherd of Israel, who guide Joseph like a flock; you who sit upon the cherubs, manifest yourself; + + +before Ephraim and Benjamin and Manasse, stir up your power, and come to deliver us. + + +Turn us, O God, and cause your face to shine; and we shall be delivered. + + +O Lord God of hosts, how long are you angry with the prayer of your servant? + + +You will feed us with bread of tears; and will cause us to drink tears by measure. + + +You have made us a strife to our neighbors; and our enemies have mocked at us. + + +Turn us, O Lord God of hosts, and cause your face to shine; and we shall be saved. Pause. + + +You have transplanted a vine out of Egypt: you have cast out the heathen, and planted it. + + +You made a way before it, and did cause its roots to strike, and the land was filled +with it. + + +Its shadow covered the mountains, and its shoots +equalled the +79:10 +Gr. +Cedars of God, see Gen. 30:8; Jonah 3:3; Acts 7:20. + goodly cedars. + + +It sent forth its branches to the sea, and its shoots to the river. + + +Therefore have you broken down its hedge, while all that pass by the way pluck it? + + +The boar out of the wood has laid it waste, and the wild beast has devoured it. + + +O God of hosts, turn, we pray you: look on +us from heaven, and behold and visit this vine; + + +and restore that which your right hand has planted: and look on the son of man whom you did strengthen for yourself. + + + +It is burnt with fire and dug up: they shall perish at the rebuke of your +79:16 +Gr. +See Ps. 20:9. + presence. + + +Let your hand be upon the man of your right hand, and upon the son of man whom you did strengthen for yourself. + + +So will we not depart from you: you shall quicken us, and we will call upon your name. + + +Turn us, O Lord God of hosts, and make your face to shine; and we shall be saved. + + + + +(81) For the end, a Psalm for +80:0 +Alex. +David. + Asaph, concerning the wine presses. + +Rejoice you⌃ in God our helper; shout aloud to the God of Jacob. + + +Take a psalm, and produce the timbrel, the pleasant lute with the harp. + + +Blow the trumpet at the new moon, in the glorious day of +80:3 +Alex. +our. + your feast. + + +For +this is an ordinance for Israel, and a statute of the God of Jacob. + + +He made +80:5 +Gr. +him, +sc. +Israel. + it +to be a testimony in Joseph, when he came forth out of the land of Egypt: he heard a language which he understood not. + + +He removed his back from burdens: his hands slaved in making the baskets. + + +You did call upon me in trouble, and I delivered you; I heard you in the secret place of the storm: I proved you at the water of +80:7 +Lit. +contradiction. + Strife. Pause. + + +Hear, my people, and I will speak to you, O Israel; and I will testify to you: if you will listen to me; + + +there shall be no new god in you; neither shall you worship a strange god. + + +For I am the Lord your God, that brought you out of the land of Egypt: open your mouth wide, and I will fill it. + + +But my people listened not to my voice; and Israel gave no heed to me. + + +So I let them go after the ways of their own hearts: they will go on in their own ways. + + +If my people had listened to me, if Israel had walked in my ways, + + +I should have put down their enemies very quickly, and should have laid my hand upon those that afflicted them. + + +The Lord's enemies +should have lied to him: but +80:15 +sc. +of the others. + their time shall be for ever. + + +And he fed them with the fat of wheat; and satisfied them with honey out of the rock. + + + + +(82) A Psalm for Asaph. + +God stands in the assembly of gods; and in the midst +of them will judge gods. + + +How long will you⌃ judge unrighteously, and accept the persons of sinners? Pause. + + +Judge the orphan and poor: +81:3 +Gr. +justify. + do justice to the low and needy. + + +Rescue the needy, and deliver the poor out of the hand of the sinner. + + +They know not, nor understand; they walk on in darkness: all the foundations of the earth shall be shaken. + + +I have said, You⌃ are gods; and all +of you children of the Most High. + + +But you⌃ die as men, and fall as one of the princes. + + +Arise, O God, judge the earth: for you shall inherit all nations. + + + + +(83) A Song of a Psalm for Asaph. + +O God, who shall be compared to you? be not silent, neither be still, O God. + + +For behold, your enemies have made a noise; and they that hate you have lifted up the head. + + +Against your people they have craftily imagined a device, and have taken counsel against your saints. + + +They have said, Come, and let us utterly destroy them out of the nation; and let the name of Israel be remembered no more at all. + + +For they have taken counsel together with one consent: they have made a confederacy against you; + + +even the tents of the Idumeans, and the Ismaelites; Moab, and the Agarenes; + + +Gebal, and Ammon, and Amalec; the Philistines also, with them that dwell at Tyre. + + +Yes, Assur too is come with them: they have become a help to the children of Lot. Pause. + + +Do you to them as to Madiam, and to Sisera; as to Jabin at the brook of Kison. + + +They were utterly destroyed at Aendor: they became as dung for the earth. + + +Make their princes as Oreb and Zeb, and Zebee and Salmana; +even all their princes: + + +who said, let us take to ourselves the +82:12 +Alex. +sanctuary. + altar of God as an inheritance. + + +O my God, make them as a wheel; as stubble before the face of the wind. + + +As fire which shall burn up a wood, as the flame may consume the mountains; + + +so shall you persecute them with your tempest, and trouble them in your anger. + + +Fill their faces with dishonor; so shall they seek your name, O Lord. + + +Let them be ashamed and troubled for evermore; yes, let them be confounded and destroyed. + + +And let them know that your name is Lord; that you alone are Most High over all the earth. + + + + +(84) For the end, a Psalm for the sons of Core, concerning the wine presses. + +How amiable are your tabernacles, O Lord of hosts! + + +My soul longs, and faints for the courts of the Lord: my heart and my flesh have exulted in the living god. + + +Yes, the sparrow has found himself a home, and the turtle-dove a nest for herself, where she may lay her young, +even your altars, O Lord of hosts, my King, and my God. + + +Blessed are they that dwell in your house: they will praise you evermore. Pause. + + +Blessed is the man whose help is of you, O Lord; in his heart he has purposed to go up + + +the valley of weeping, to the place which he has appointed, for +there the law-giver will grant blessings. + + +They shall go from strength to strength: the God of gods shall be seen in Sion. + + +O Lord God of hosts, hear my prayer: listen, O God of Jacob. Pause. + + +Behold, O God our defender, and look upon the face of your anointed. + + +For one day in your courts is better than thousands. I would rather be an abject in the house of God, than dwell in the tents of sinners. + + +For the Lord loves mercy and truth: God will give grace and glory: the Lord will not withhold good things from them that walk in innocence. + + +O Lord of hosts, blessed is the man that trusts in you. + + + + +(85) For the end, a Psalm for the sons of Core. + +O Lord, you have taken pleasure in your land: you have turned back the captivity of Jacob. + + +You have forgiven your people their transgressions; you have covered all their sins. Pause. + + +You have caused all your wrath to cease: you have turned from your fierce anger. + + +Turn us, O God of our salvation, and turn your anger away from us. + + +Wouldest you be angry with us for ever? or will you continue your wrath from generation to generation? + + +O God, you will turn and quicken us; and your people shall rejoice in you. + + +Show us your mercy, O Lord, and grant us your salvation. + + +I will hear what the Lord God will say concerning me: for he shall speak peace to his people, and to his saints, and to those that turn their heart toward him. + + +Moreover his salvation is near them that fear him; that glory may dwell in our land. + + +Mercy and truth are met together: righteousness and peace have kissed +each other. + + +Truth has sprung out of the earth; and righteousness has looked down from heaven. + + +For the Lord will give goodness; and our land shall yield her fruit. + + +Righteousness shall go before him; and shall set his steps in the way. + + + + +(86) A Prayer of David. + +O Lord, incline your ear, and listen to me; for I am poor and needy. + + +Preserve my soul, for I am holy; save your servant, O God, who hopes in you. + + +Pity me, O Lord: for to you will I cry all the day. + + +Rejoice the soul of your servant: for to you, O Lord, have I lifted up my soul. + + +For you, O Lord, are kind, and gentle; and plenteous in mercy to all that call upon you. + + +Give ear to my prayer, o Lord; and attend to the voice of my supplication. + + +In the day of my trouble I cried to you: for you did hear me. + + +There is none like to you, O Lord, among the gods; and there are no +works like to your works. + + +All nations whom you have made shall come, and shall worship before you, O Lord; and shall glorify your name. + + +For you are great, and do wonders: you are the only +and the great God. + + +Guide me, O Lord, in your way, and I will walk in your truth: let my heart rejoice, that I may fear your name. + + +I will give you thanks, O Lord my God, with all my heart; and I will glorify your name for ever. + + +For your mercy is great toward me; and you have delivered my soul from the lowest hell. + + +O God, transgressors have risen up against me, and an assembly of violent +men have sought my life; and have not set you before them. + + +But you, O Lord God, are compassionate and merciful, longsuffering, and abundant in mercy and true. + + +Look you upon me, and have mercy upon me: give your strength to your servant, and save the son of your handmaid. + + +Establish with me a token for good; and let them that hate me see +it and be ashamed; because you, O Lord, have helped me, and comforted me. + + + + +(87) A Psalm of a Song for the sons of Core. + +His foundations are in the holy mountains. + + +The Lord loves the gates of Sion, more than all the tabernacles of Jacob. + + +Glorious things have been spoken of you, O city of God. Pause. + + +I will make mention of Raab and Babylon to them that know me: behold also the Philistines, and Tyre, and the people of the Ethiopians: these were born there. + + +A man shall say, Sion +is my mother; and +such a man was born in her; and the Highest himself has founded her. + + +The Lord shall recount +it in the writing of the people, and of these princes that +86:6 +Gr. +have been in her. + were born in her. + + +The dwelling of all within you is +as the dwelling of those that rejoice. + + + + +(88) A song of a Psalm for the sons of Core for the end, upon Maeleth for responsive +strains, of +87:0 +Gr. +understanding. + instruction for Aeman the Israelite. + +O Lord God of my salvation, I have cried by day and in the night before you. + + +Let my prayer come in before you; incline your ear to my supplication, O Lord. + + +For my soul is filled with troubles, and my life has drawn near to Hades. + + +I have been reckoned with them that go down to the pit; I became as a man without help; + + +free among the dead, as the slain ones +87:5 +Alex. +om. ἐῤῥιμμένοι, cast out. + cast out, who sleep in the tomb; whom you remember no more; and they are rejected from your hand. + + +They laid me in the lowest pit, in dark +places, and in the shadow of death. + + +Your wrath has pressed heavily upon me, and you have brought upon me all your billows. Pause. + + +You have removed my acquaintance far from me; they have made me an abomination to themselves; I have been delivered up, and have not gone forth. + + +My eyes are dimmed from poverty; but I cried to you, O Lord, all the day; I spread forth my hands to you. + + +Will you work wonders for the dead? or shall +87:10 +See +Heb. + physicians raise +them up, that they shall praise you? + + +Shall any one declare your mercy in the tomb? and your truth in destruction? + + +Shall your wonders be known in darkness? and your righteousness in a forgotten land? + + +But I cried to you, O Lord; and in the morning shall my prayer prevent you. + + +Therefore, O Lord, do you reject my +87:14 +Heb. and +Alex. +soul. + prayer, +and turn your face away from me? + + +I am poor and in troubles from my youth; and having been exalted, I was brought low and into +87:15 +See 2 Cor 4:8. + despair. + + +Your wrath has passed over me; and your terrors have greatly disquieted me. + + +They compassed me like water; all the day they beset me together. + + +You have put far from me +87:18 +Alex. +friend and neighbor. + +every friend, and my acquaintances because of +my wretchedness. + + + + +(89) +A Psalm of instruction for Aetham the Israelite. + +I will sing of your mercies, O Lord, for ever: I will declare your truth with my mouth to all generations. + + +For you have said, Mercy shall be built up for ever: your truth shall be established in the heavens. + + +I made a covenant with my chosen ones, I swore to David my servant. + + +I will +88:4 +Gr. +prepare. + establish your seed for ever, and build up your throne to all generations. Pause. + + +The heavens shall declare your wonders, O Lord; and your truth in the assembly of the saints. + + +For who in the +88:6 +Gr. +clouds. + heavens shall be compared to the Lord? and who shall be likened to the Lord among the sons of God? + + +God is glorified in the council of the saints; great and terrible toward all that are round about him. + + +O Lord God of hosts, who is like to you? you are mighty, O Lord, and your truth is round about you. + + +You rule the power of the sea; and you calm the tumult of its waves. + + +You have brought down the proud as one that is slain; and with the arm of your power you have scattered your enemies. + + +The heavens are your, and the earth is your: you have founded the world, and the fullness of it. + + +You have created the north and the +88:12 +Gr. +sea. + west: Thabor and Hermon shall rejoice in your name. + + +Your is the mighty arm: let your hand be strengthened, let your right hand be exalted. + + +Justice and judgment are the establishment of your throne: mercy and truth shall go before your face. + + +Blessed is the people that knows the joyful sound: they shall walk, O Lord, in the light of your countenance. + + +And in your name shall they rejoice all the day: and in your righteousness shall they be exalted. + + +For you are the boast of their strength; and in your good pleasure shall our horn be exalted, + + +for +our help is of the Lord; and of the Holy One of Israel, our king. + + +Then you spoke in vision to your children, and said, I have laid help on a mighty one; I have exalted one chosen out of my people. + + +88:20 +Acts 13:22 + I have found David my servant; I have anointed him by +my holy +88:20 +Heb. and +Alex. +oil, see Ps. 91. (92) 10. + mercy. + + +For my hand shall support him; and my arm shall strengthen him. + + +The enemy shall have no advantage against him; and the son of transgression shall not hurt him again. + + +And I will hew down his foes before him, and put to flight those that hate him. + + +But my truth and my mercy shall be with him; and in my name shall his horn be exalted. + + +And I will set his hand in the sea, and his right hand in the rivers. + + +He shall call upon me, +saying, You are my Father, my God, and the helper of my salvation. + + +And I will make him +my firstborn, higher than the kings of the earth. + + +I will keep my mercy for him for ever, and my covenant +shall be firm with him. + + +And I will establish his seed for ever and ever, and his throne as the days of heaven. + + +If his children should forsake my law, and walk not in my judgments; + + +if they should profane my ordinances, and not keep my commandments; + + +I will visit their transgressions with a rod, and their sins with scourges. + + +But my mercy I will not utterly remove from him, nor wrong my truth. + + +Neither will I by any means profane my covenant; and I will not make void the things that proceed out of my lips. + + +Once have I sworn by my holiness, that I will not lie to David. + + +His seed shall endure for ever, and his throne as the sun before me; + + +and as the moon +that is established for ever, and as the faithful witness in heaven. Pause. + + +But you have cast off and set at nothing, you have rejected your anointed. + + +You have overthrown the covenant of your servant; you have profaned his sanctuary, +casting it to the ground. + + +You have broken down all his hedges; you have made his strong holds a terror. + + +All that go by the way have spoiled him: he is become a reproach to his neighbors. + + +You have exalted the right hand of his enemies; you have made all his enemies to rejoice. + + +You have turned back the help of his sword, and have not helped him in the battle. + + +You have deprived him of +88:44 +Gr. +purification. + glory: you have broken down his throne to the ground. + + +You have shortened the days of his +88:45 +Alex. +time. + throne: you have poured shame upon him. Pause. + + +How long, O Lord, will you turn away, for ever? shall your anger flame out as fire? + + +Remember what my being is: for have you created all the sons of men in vain? + + +What man is there who shall live, and not see death? shall +any one deliver his soul from the hand of Hades? Pause. + + +Where are your ancient mercies, O Lord, which you swore to David in your truth? + + +Remember, O Lord, the reproach of your servants, which I have borne in my bosom, +even the reproach of many nations; + + +wherewith your enemies have reviled, O Lord: wherewith they have reviled the recompense of your anointed. + + +Blessed be the Lord for ever. So be it, so be it. + + + + +(90) A Prayer of Moses the man of God. + +Lord, you have been our refuge in all generations. + + +Before the mountains existed, and +before the earth and the world were formed, even from age to age, You are. + + +Turn not man back to +his low place, whereas you said, Return, you⌃ sons of men? + + +For a thousand years in your sight are as the yesterday which is past, and as a watch in the night. + + +Years shall be +89:5 +Gr. +their vanities or rejections. + vanity to them: let the morning pass away as grass. + + +In the morning let it flower, and pass away: in the evening let it droop, let it be withered and dried up. + + +For we have perished in your anger, and in your wrath we have been troubled. + + +You have set our transgressions before you: our age is in the light of your countenance. + + +For all our days are gone, and we have passed away in your wrath: our years have +89:9 +Gr. +mediated. + spun out their tale as a spider. + + + +As for the days of our years, in them are seventy years; and if +men should be in strength, eighty years: and +89:10 +Or, +what is more than these. + the greater part of them would be labor and trouble; for weakness overtakes us, and we shall be chastened. + + +Who knows the power of your wrath? + + +and +who knows how to number +his days because of the fear of your wrath? So manifest your right hand, and those that are instructed in wisdom in the heart. + + +Return, O Lord, how long? and +89:13 + be entreated concerning your servants. + + +We have been satisfied in the morning with your mercy; and we did exult and rejoice: + + +let us rejoice in all our days, in return for the days wherein you did afflict us, the years wherein we saw evil. + + +And look upon your servants, and upon your works; and guide their children. + + +And let the brightness of the Lord our God be upon us: and do you +89:17 +Or, +prosper. + direct for us the works of our hands. +89:17 +Alex. ++ yes, prosper you the work of our hands. + + + + + +(91) Praise of a Song, by David. + +He that dwells in the help of the Highest, shall sojourn under the shelter of the God of heaven. + + +He shall say to the Lord, You are my helper and my refuge: my God; I will hope in him. + + +For he shall deliver you from the snare of the hunters, from +every troublesome matter. + + +He shall overshadow you with his shoulders, and you shall trust under his wings: his truth shall cover you with a shield. + + +You shall not be afraid of terror by night; nor of the arrow flying by day; + + + +nor of the +evil +90:6 +See ver 3. + thing that walks in darkness; +nor of calamity, and the evil spirit at noon-day. + + +A thousand shall fall at your side, and ten thousand at your right hand; but it shall not come near you. + + +Only with your eyes shall you observe and see the reward of sinners. + + +For you, O Lord, are my hope: you, my soul, have made the Most High your refuge. + + +No evils shall come upon you, and no scourge shall draw near to your dwelling. + + +For he shall give his angels charge concerning you, to keep you in all your ways. + + + +90:12 +Matt 4:6 + They shall bear you up on their hands, lest at any time you dash your foot against a stone. + + +You shall tread on the asp and basilisk: and you shall trample on the lion and dragon. + + +For he has hoped in me, and I will deliver him: I will protect him, because he has known my name. + + +He shall call upon me, and I will listen to him: I am with him in affliction; and I will deliver him, and glorify him. + + +I will satisfy him with length of days, and show him my salvation. + + + + +(92) A Psalm of a Song for the Sabbath-day. + +It is a good thing to give thanks to the Lord, and to sing praises to your name, O you Most High; + + +to proclaim your mercy in the morning, and your truth by night, + + +on a lute of ten strings, with a song on the harp. + + +For you, O Lord, have made me glad with your work: and in the operations of your hands will I exult. + + +How have your works been magnified, O Lord! your thoughts are very deep. + + +A foolish man will not know, and a senseless man will not understand this. + + +When the sinners spring up as the grass, and all the workers of iniquity +91:7 +Perhaps, 'come to light'. + have watched; +it is that they may be utterly destroyed for ever. + + +But you, O Lord, are most high for ever. + + + +91:9 +Alex. ++ for behold your enemies, O Lord, as in +Heb. + For, behold, your enemies shall perish; and all the workers of iniquity shall be scattered. + + +But my horn shall be exalted +as the horn of a unicorn; and my old age with rich +91:10 +Alex. +oil. See Ps. 88:20. + mercy. + + +And my eye has seen my enemies, and my ear shall hear the wicked that rise up against me. + + +The righteous shall flourish as a palm tree: he shall be increased as the cedar in Libanus. + + +They that are planted in the house of the Lord shall flourish in the courts of our God. + + +Then shall they be increased in a +91:14 +Gr. +fat. + fine old age; and they shall be prosperous; that they may declare + + +that the Lord my God is righteous, and there is no iniquity in him. + + + + +(93) For +92:0 +Alex. +the sabbath-day. + the day before the Sabbath, when the land was +first inhabited, the praise of a Song by David. + +The Lord reigns; he has clothed himself with honor: the Lord has clothed and girded himself with strength; for he has established the world, which shall not be moved. + + +Your throne is prepared of old: you are from everlasting. + + +The rivers have lifted up, O Lord, the rivers have lifted up their voices, +92:3 +Alex. ++ the floods will lift up their waves. See +Heb. + + + +at +92:4 +q. d. +in answer to. + the voices of many waters: the billows of the sea are wonderful: the Lord is wonderful in high places. + + +Your testimonies are made very sure: holiness becomes your house, O Lord, +92:5 +Gr. +to length of days. + for ever. + + + + +(94) A Psalm of David for the fourth +day of the week. + +The Lord is a God of vengeance; the God of vengeance +93:1 +Gr. +plural, +bis. has declared himself. + + +Be you exalted, you that judge the earth: render a reward to the proud. + + +How long shall sinners, O Lord, how long shall sinners boast? + + +They will utter and speak unrighteousness; all the workers of iniquity will speak +so. + + +They have afflicted your people, O Lord, and hurt your heritage. + + +They have slain the widow and fatherless, and murdered the stranger. + + +And they said, The Lord shall not see, neither shall the God of Jacob understand. + + +Understand now, you⌃ simple among the people; and you⌃ fools, at length be wise. + + +He that planted the ear, does he not hear? or he that formed the eye, does not he perceive? + + +He that chastises the heathen, shall not he punish, +even he that teaches man knowledge? + + + +93:11 +1 Cor 3:20 + The Lord knows the thoughts of men, that they are vain. + + +Blessed is the man whoever you shall chasten, O Lord, and shall teach him out of your law; + + +to give him rest from evil days, until a pit be digged for the sinful one. + + +For the Lord will not cast off his people, neither will he forsake his inheritance; + + +until righteousness return to judgment, and all the upright in heart shall follow it. Pause. + + +Who will rise up for me against the transgressors? or who will stand up with me against the workers of iniquity? + + +If the Lord had not helped me, my soul had almost sojourned in Hades. + + +If I said, My foot has been moved; + + +your mercy, O Lord, helped me. O Lord, according to the multitude of my griefs within my heart, your consolation have +93:19 +Lit. +'have loved'. +Alex. +ἠὺφπαναν, 'have gladdened'. soothed my soul. + + +Shall the throne of iniquity have fellowship with you, which frames mischief by an ordinance? + + +They will hunt for the soul of the righteous, and condemn innocent blood. + + +But the Lord was my refuge; and my God the helper of my hope. + + +And he will recompense to them their iniquity and their wickedness: the Lord our God shall utterly destroy them. + + + + +(95) The praise of a Song by David. + +Come, let us exult +94:1 +Gr. +to. + in the Lord; let us make a joyful noise to God our Saviour. + + +Let us come before his presence with thanksgiving, and make a joyful noise to him with psalms. + + +For the Lord is a great God, and a great king over all gods: +94:3 +Heb. and +Alex. +omit this clause. See Ps. 93:14. + for the Lord will not cast off his people. + + +For the ends of the earth are in his hands; and the heights of the mountains are his. + + +For the sea is his, and he made it: and his hands formed the dry land. + + +Come, let us worship and fall down before him; and weep before the Lord that made us. + + +For he is our God; and we are the people of his pasture, and the sheep of his hand. + + +94:8 +Heb 3:7-12 + To-day, if you⌃ will hear his voice, harden not your hearts, as in the provocation, according to the day of +94:8 +Note, πειρασμοῦ is the reading of several editions. + irritation in the wilderness: + + +where your fathers tempted me, proved me, and saw my works. + + +Forty years was I grieved with this generation, and said, They do always err in their heart, and they have not known my ways. + + +So I swore in my wrath, They shall not enter into my rest. + + + + +(96) When the house was built after the Captivity, a Song of David. + +Sing to the Lord a new song; sing to the Lord, all the earth. + + +Sing to the Lord, bless his name: proclaim his salvation from day to day. + + +Publish his glory among the Gentiles, his wonderful works among all people. + + +For the Lord is great, and greatly to be praised: he is terrible above all gods. + + +For all the gods of the heathen are devils: but the Lord made the heavens. + + +Thanksgiving and beauty are before him: holiness and majesty are in his sanctuary. + + +Bring to the Lord, you⌃ families of the Gentiles, bring to the Lord glory and honor. + + +Bring to the Lord the glory +becoming his name: take offerings, and go into his courts. + + +Worship the Lord in his holy court: let all the earth tremble before him. + + +Say among the heathen, The Lord reigns: for he has established the world so that it shall not be moved: he shall judge the people in righteousness. + + +Let the heavens rejoice, and the earth exult; let the sea be moved, and the fullness of it. + + +The plains shall rejoice, and all things in them: then shall all the trees of the wood exult before the presence of the Lord: + + +for he comes, for he comes to judge the earth; he shall judge the world in righteousness, and the people with his truth. + + + + +(97) For David, when his land is established. + +The Lord reigns, let the earth exult, let many islands rejoice. + + +Cloud, and darkness are round about him; righteousness and judgment are the establishment of his throne. + + +Fire shall go before him, and burn up his enemies round about. + + +His lightnings appeared to the world; the earth saw, and trembled. + + +The mountains melted like wax at the presence of the Lord, at the presence of the Lord of the whole earth. + + +The heavens have declared his righteousness, and all the people have seen his glory. + + +Let all that worship graven images be ashamed, who boast of their idols; +96:7 +Heb 1:6 + worship him, all you⌃ his angels. + + +Sion heard and rejoiced; and the daughters of Judea exulted, because of your judgments, O Lord. + + +For you are Lord most high over all the earth; you are greatly exalted above all gods. + + +You⌃ that love the Lord, hate evil; the Lord preserves the souls of his saints; he shall deliver them from the hand of sinners. + + +Light is sprung up for the righteous, and gladness for the upright in heart. + + +Rejoice in the Lord, you⌃ righteous; and give thanks for a remembrance of his holiness. + + + + +(98) A Psalm of David. + +Sing to the Lord a new song; for the Lord has wrought wonderful works, his right hand, and his holy arm, have wrought salvation for him. + + +The Lord has made known his salvation, he has revealed his righteousness in the sight of the nations. + + +He has remembered his mercy to Jacob, and his truth to the house of Israel; all the ends of the earth have seen the salvation of our God. + + +Shout to God, all the earth; sing, and exult, and sing psalms. + + +Sing to the Lord with a harp, with a harp, and the voice of a psalm. + + +With trumpets of metal, and the sound of a trumpet of horn make a joyful noise to the Lord before the king. + + +Let the sea be moved, and the fullness of it; the world, and they that dwell in it. + + +The rivers shall clap their hands together; the mountains shall exult. +97:8 +Alex. ++ before the Lord, for he comes. + + + +For he is come to judge the earth; he shall judge the world in righteousness, and the nations in uprightness. + + + + +(99) A Psalm of David. + +The Lord reigns; —let the people rage; +it is he that sits upon the cherubs, let the earth be moved. + + +The Lord is great in Sion, and is high over all the people. + + +Let them give thanks to your great name; for it is terrible and holy. + + +And the king's honor loves judgment; you have prepared +98:4 +Gr. +equities. + equity, you have wrought judgment and justice in Jacob. + + +Exalt you⌃ the Lord our God, and worship +at his footstool; for he is holy. + + +Moses and Aaron among his priests, and Samuel among them that call upon his name; they called upon the Lord, and he heard them. + + +He spoke to them in a pillar of cloud; they kept his testimonies, and the ordinances which he gave them. + + +O Lord our God, you heard them; O God, you became propitious to them, though you did take vengeance on all their devices. + + +Exalt you⌃ the Lord our God, and worship at his holy mountain; for the Lord our God is holy. + + + + +(100) A Psalm for Thanksgiving. + +Make a joyful noise to the Lord, all the earth. + + +Serve the Lord with gladness; come before his presence with exultation. + + +Know that the Lord he is God; he made us, and not we ourselves; +we are his people, and the sheep of his pasture. + + +Enter into his gates with thanksgiving, and his courts with hymns; give thanks to him, praise his name. + + +For the Lord is good, his mercy is for ever; and his truth +endures to generation and generation. + + + + +(101) A Psalm of David. + + I will sing to you, O Lord, of mercy and judgment; I will sing a psalm, + + +and I will be wise in a blameless way. When will you come to me? I walked in the innocence of my heart, in the midst of my house. + + +I have not set before my eyes any unlawful thing; I have hated transgressors. + + +A perverse heart has not cleaved to me; I have not known an evil man, forasmuch as he turns away from me. + + +Him that privily speaks against his neighbor, him have I driven from +me: he that is proud in look and insatiable in heart, —with him I have not eaten. + + +My eyes +shall be upon the faithful of the land, that they may dwell with me: he that walked in a perfect way, the same ministered to me. + + +The proud doer lived not in the midst of my house; the unjust speaker prospered not in my sight. + + +Early did I kill all the sinners of the land, that I might destroy out of the city of the Lord all that work iniquity. + + + + +(102) A Prayer for the Poor; when he is deeply afflicted, and pours out his supplication before the Lord. + +Hear my prayer, O Lord, and let my cry come to you. + + +Turn not away your face from me: in the day +when I am afflicted, incline your ear to me: in the day +when I shall call upon you, speedily hear me. + + +For my days have vanished like smoke, and my bones have been parched like a stick. + + +I am blighted like grass, and my heart is dried up; for I have forgotten to eat my bread. + + +By reason of the voice of my groaning, my bone has cleaved to my flesh. + + +I have become like a pelican of the wilderness; + + +I have become like an owl in a ruined house. I have watched, and am become as a sparrow dwelling alone on a roof. + + +All the day long my enemies have reproached me; and they that praised me have sworn against me. + + +For I have eaten ashes as it were bread, and mingled my drink with weeping; + + +because of your anger and your wrath: for you have lifted me up, and dashed me down. + + +My days have declined like a shadow; and I am withered like grass. + + +But you, Lord, endure for ever, and your memorial to generation and generation. + + +You shall arise, and have mercy upon Sion: for +it is time to have mercy upon her, for the set time is come. + + +For your servants have taken pleasure in her stones, and they shall pity her dust. + + +So the nations shall fear your name, O Lord, and all kings your glory. + + +For the Lord shall build up Sion, +101:16 +Or, +then shall be. + and shall appear in his glory. + + +He has had regard to the prayer of the lowly, and has not despised their petition. + + +Let this be written for another generation; and the people that shall be created shall praise the Lord. + + +For he has looked out from the height of his sanctuary; the Lord looked upon the earth from heaven; + + +to hear the groaning of the fettered ones, to loosen the sons of the slain; + + +to proclaim the name of the Lord in Sion, and his praise in Jerusalem; + + +when the people are gathered together, and the kings, to serve the Lord. + + +He answered him in the way of his strength: tell me the fewness of my days. + + +Take me not away in the midst of my days: your years +are +101:24 +Heb 1:11,13 + through all generations. + + +In the +101:25 +Gr. +plural. + beginning you, O Lord, did lay the foundation of the earth; and the heavens are the works of your hands. + + +They shall perish, but you remain: and +they all shall wax old as a garment; and as a vesture shall you fold them, and they shall be changed. + + +But you are the same, and your years shall not fail. + + +The children of your servants shall dwell +securely, and their seed shall +101:28 +Or, +be directed aright. + prosper for ever. + + + + +(103) +A Psalm of David. + +Bless the Lord, O my soul; and all +that is within me, +bless his holy name. + + +Bless the Lord, O my soul, and forget not all his praises: + + +who forgives all your transgressions, who heals all your diseases; + + +who redeems your life from corruption; who crowns you with mercy and compassion; + + +who satisfies your desire with good things: +so that your youth shall be renewed like +that of the eagle. + + +The Lord executes mercy and judgment for all that are injured. + + +He made known his ways to Moses, his will to the children of Israel. + + +The Lord is compassionate and pitiful, longsuffering, and full of mercy. + + +He will not be always angry; neither will he be wrathful for ever. + + +He has not dealt with us according to our sins, nor recompensed us according to our iniquities. + + +For as the heaven is high above the earth, the Lord has +so increased his mercy toward them that fear him. + + +As far as the east is from the west, +so far has he removed our transgressions from us. + + +As a father pities +his children, the Lord pities them that fear him. + + +For he knows our frame: remember that we are dust. + + + +As for man, his days are as grass; as a flower of the field, so shall he flourish. + + +For the wind passes over it, and it shall not be; and it shall know its place no more. + + +But the mercy of the Lord is from generation to generation upon them that fear him, and his righteousness to children's children; + + +to them that keep his covenant, and remember his commandments to do them. + + +The Lord has prepared his throne in the heaven; and his kingdom rules over all. + + +Bless the Lord, all you⌃ his angels, mighty in strength, who perform his bidding, +ready to listen to the voice of his words. + + +Bless the Lord, all you⌃ his hosts; +you⌃ ministers of his that do his will. + + +Bless the Lord, all his works, in every place of his dominion: bless the Lord, O my soul. + + + + +(104) +A Psalm of David. + +Bless the Lord, O my soul. O Lord my God, you are very great; you have clothed yourself with praise and honor: + + +who do robe yourself with light as with a garment; spreading out the heaven as a curtain. + + +Who covers his chambers with waters; who makes the clouds his chariot; who walks on the wings of the wind. + + + +103:4 +Heb 1:7 + Who makes his angels spirits, and his ministers a flaming fire. + + +Who establishes the earth on her sure foundation: it shall not be moved for ever. + + +The deep, as it were a garment, is his covering: the waters shall stand +103:6 +Or, +above. + on the hills. + + +At your rebuke they shall flee; at the voice of your thunder they shall be alarmed. + + +They go up to the mountains, and down to the plains, to the place which you have founded for them. + + +You have set a bound which they shall not pass, neither shall they turn again to cover the earth. + + +He sends forth his fountains among the valleys: the waters shall run between the mountains. + + +They shall give drink to all the wild beasts of the field: the wild asses shall take +of them to +quench their thirst. + + +By them shall the birds of the sky lodge: they shall utter a voice out of the midst of the rocks. + + +He waters the mountains from his chambers: the earth shall be satisfied with the fruit of your works. + + +He makes grass to grow for the cattle, and green herb for the service of men, to bring bread out of the earth; + + +and wine makes glad the heart of man, to make his face cheerful with oil: and bread strengthens man's heart. + + +The trees of the plain shall be full +of sap; +even the cedars of Libanus which he has planted. + + +There the sparrows will build their nests; and the house of the heron takes the lead among them. + + +The high mountains are a refuge for the stags, +and the rock for the rabbits. + + +He appointed the moon for seasons: the sun knows his going down. + + +You did make darkness, and it was night; in it all the wild beasts of the forest will be abroad: + + + +even young lions roaring for prey, and to seek meat for themselves from God. + + +The sun arises, and they shall be gathered together, and shall lie down in their dens. + + +Man shall go forth to his work, and to his labor till evening. + + +How great are your works, O Lord! in wisdom have you wrought them all: the earth is filled with your creation. + + + +So is this great and wide sea: there are things creeping innumerable, small animals and great. + + +There go the ships; +and this dragon whom you have made to play in it. + + +All wait upon you, to give them +their food in due season. + + +When you have given +it them, they will gather +it; and when you have opened your hand, they shall all be filled with good. + + +But when you have turned away your face, they shall be troubled: you will take away their breath, and they shall fail, and return to their dust. + + +You shall send forth your Spirit, and they shall be created; and you shall renew the face of the earth. + + +Let the glory of the Lord be for ever: the Lord shall rejoice in his works; + + +who looks upon the earth, and makes it tremble; who touches the mountains, and they smoke. + + +I will sing to the Lord while I live; I will sing praise to my God while I exist. + + +Let my meditation be sweet to him: and I will rejoice in the Lord. + + +Let the sinners fail from off the earth, and transgressors, so that they shall be no more. Bless the Lord, O my soul. + + + + +(105) Alleluia. + +Give thanks to the Lord, and call upon his name; declare his works among the heathen. + + +Sing to him, yes, sing praises to him: tell forth all his wonderful works. + + +Glory in his holy name: let the heart of them that seek the Lord rejoice. + + +Seek you⌃ the Lord, and be strengthened; seek his face continually. + + +Remember his wonderful works that he has done; his wonders, and the judgments of his mouth; + + +you⌃ seed of Abraam, his servants, +you⌃ children of Jacob, his chosen ones. + + +He is the Lord our God; his judgments are in all the earth. + + +He has remembered his covenant for ever, the word which he commanded for a thousand generation: + + +which he established as a covenant to Abraam, and +he remembered his oath to Isaac. + + +And he established it to Jacob for an ordinance, and to Israel for an everlasting covenant; + + +saying To you will I give the land of Chanaan, the line of your inheritance: + + +when they were few in number, very few, and sojourners in it. + + +And they went from nation to nation, and from +one kingdom to another people. + + +He suffered no man to wrong them; and he rebuked kings for their sakes: + + +saying, Touch not my anointed ones; and do my prophets no harm. + + +Moreover he called for a famine upon the land; he broke the whole support of bread. + + +He sent a man before them; Joseph was sold for a slave. + + +They +104:18 +Gr. +humbled. + hurt his feet with fetters; +104:18 +Or, +his body, see +Heb. + his soul passed into iron, + + +until the time that his cause came on; the word of the Lord tried him as fire. + + +The king sent and loosed him; +even the prince of the people, and let him go free. + + +He made him Lord over his house, and ruler of all his substance; + + +to chastise his rulers at his pleasure, and to teach his elders wisdom. + + +Israel also came into Egypt, and Jacob sojourned in the land of Cham. + + +And he increased his people greatly, and made them stronger than their enemies. + + +And he turned their heart to hate his people, to deal craftily with his servants. + + +He sent forth Moses his servant, +and Aaron whom he had chosen. + + +He established among them his signs, and +his wonders in the land of Cham. + + +He sent forth darkness, and made it dark; yet they +104:28 +Gr. +embittered. + rebelled against his words. + + +He turned their waters into blood, and killed their fish. + + +Their land produced frogs abundantly, in the chambers of their kings. + + +He spoke, and the dog-fly came, and lice in all their coasts. + + +He turned their rain into hail, +and sent flaming fire in their land. + + +And he struck their vines and their fig trees; and broke every tree of their coast. + + +He spoke, and the locust came, and caterpillars innumerable, + + +and devoured all the grass in their land, and devoured the fruit of the ground. + + +He struck also every firstborn of their land, the first fruits of all their labor. + + +And he brought them out with silver and gold; and there was not a feeble one among their tribes. + + +Egypt rejoiced at their departing; for the fear of them fell upon them. + + +He spread out a cloud for a covering to them, and fire to give them light by night. + + +They asked, and the quail came, and he satisfied them with the bread of heaven. + + +He clave the rock, and the waters flowed, rivers ran in dry places. + + +For he remembered his holy word, which +he promised to Abraam his servant. + + +And he brought out his people with exultation, and his chosen with joy; + + +and gave them the lands of the heathen; and they inherited the labors of the people; + + +that they might keep his ordinances, and diligently seek his law. + + + + +(106) Alleluia. + +Give thanks to the Lord; for he is good: for his mercy +endures for ever. + + +Who shall tell the mighty acts of the Lord? +who shall cause all his praises to be heard? + + +Blessed are they that keep judgment, and do righteousness at all times. + + +Remember us, O Lord, with the favor +you have to your people: visit us with your salvation; + + +that we may behold the good of your elect, that we may rejoice in the gladness of your nation, that we may glory with your inheritance. + + +We have sinned with our fathers, we have transgressed, we have done unrighteously. + + +Our fathers in Egypt understood not your wonders, and remembered not the multitude of your mercy; but provoked +him as they went up by the Red Sea. + + +Yet he saved them for his name's sake, that he might cause his mighty power to be known. + + +And he rebuked the Red Sea, and it was dried up: so he led them through the deep as through the wilderness. + + +And he saved them out of the hand of them that hated +them, and redeemed them out of the hand of the enemy. + + +The water covered those that oppressed them: there was not one of them left. + + +Then they believed his words, and celebrated his praise. + + +They made haste, they forgot his works; they waited not for his counsel. + + +And they lusted exceedingly in the wilderness, and tempted God in the dry +land. + + +And he gave them their request, and sent fullness into their souls. + + +They provoked Moses also in the camp, and Aaron the holy one of the Lord. + + +The earth opened and swallowed up Dathan, and closed upon the congregation of Abiron. + + +And a fire was kindled in their congregation, and a flame burnt up the sinners. + + +And they made a calf in Choreb, and worshipped the graven image, + + +and they changed their glory into the similitude of a calf that feeds on grass. + + +They forgot God that saved them, who had wrought great deeds in Egypt; + + +wondrous +works in the land of Cham, and terrible things at the Red Sea. + + +So he said that he would have destroyed them, had not Moses his chosen stood before him in the breach, to turn +him away from the fierceness of his anger, so that he should not destroy them. + + +Moreover they set at nothing the desirable land, and believed not his word. + + +And they murmured in their tents: they listened not to the voice of the Lord. + + +So he lifted up his hand against them, to cast them down in the wilderness; + + +and to cast down their seed among the nations, and to scatter them in the countries. + + +They were joined also to Beelphegor, and ate the sacrifices of the dead. And they provoked him with their devices; + + +and destruction, was multiplied among them. + + +Then Phinees stood up, and made atonement: and the plague ceased. + + +And it was counted to him for righteousness, to all generations for ever. + + +They provoked him also at the water of Strife, and Moses was hurt for their sakes; + + +for they provoked his spirit, and he +105:33 +Or, +gave commandment. + spoke +unadvisedly with his lips. + + +They destroyed not the nations which the Lord told them +to destroy; + + +but were mingled with the heathen, and learned their works. + + +And they served their graven images; and it became an offense to them. + + +And they sacrificed their sons and their daughters to devils, + + +and shed innocent blood, the blood of their sons and daughters, whom they sacrificed to the idols of Chanaan; and the land was +105:38 +Or, +murderously defiled. + defiled with blood. + + +and was polluted with their works; and they went a whoring with their own devices. + + +So the Lord was very angry with his people, and he abhorred his inheritance. + + +And he delivered them into the hands of +their enemies; and they that hated them ruled over them. + + +Ands their enemies oppressed them, and they were brought down under their hands. + + +Many a time he delivered them; but they provoked him by their counsel, and they were brought low by their iniquities. + + +You⌃ the Lord looked upon their affliction, when he heard their petition. + + +And he remembered his covenant, and repented according to the multitude of his mercy. + + +And he caused them to be pitied in the sight of all who carried them captive. + + +Save us, O Lord our God, and gather us from among the heathen, that we may give thanks to your holy name, that we may glory in your praise. + + +Blessed be the Lord God of Israel from everlasting and to everlasting; and all the people shall say, Amen, Amen. + + + + +(107) Alleluia. + +Give thanks to the Lord, for he is good; for his mercy +endures for ever. + + +Let them say +so who have been redeemed by the Lord, whom he has redeemed from the hand of the enemy; + + +and gathered them out of the countries, from the east, and west, and north, and +106:3 +Gr. +sea. + south. + + +They wandered in the wilderness in a dry land; they found no way to a city of habitation. + + +Hungry and thirsty, their soul fainted in them. + + +Then they cried to the Lord in their affliction, and he delivered them out of their distresses. + + +And he guided them into a straight path, that they might go to a city of habitation. + + +Let them acknowledge to the Lord his mercies, and his wonderful works to the children of men. + + +For he satisfies the empty soul, and fills the hungry +soul with good things, + + + +even them that sit in darkness and the shadow of death, fettered in poverty and iron; + + +because they +106:11 +Gr. +embittered the oracles. + rebelled against the words of God, and provoked the counsel of the Most High. + + +So their heart was brought low with troubles; they were weak, and there was no helper. + + +Then they cried to the Lord in their affliction, and he saved them out of their distresses. + + +And he brought them out of darkness and the shadow of death, and broke their bonds asunder. + + +Let them acknowledge to the Lord his mercies, and his wonders to the children of men. + + +For he broke to pieces the brazen gates, and crushed the iron bars. + + + +106:17 +see the Hebrew. + He helped them out of the way of their iniquity; for they were brought low because of their iniquities. + + +Their soul abhorred all meat; and they drew near to the gates of death. + + +Then they cried to the Lord in their affliction, and he saved them out of their distresses. + + +He sent his word, and healed them, and delivered them out of their destructions. + + +Let them acknowledge to the Lord his mercies, and his wonderful works to the children of men. + + +And let them offer to him the sacrifice of praise, and proclaim this works with exultation. + + +They that go down to the sea in ships, doing business in many waters; + + +these +men have seen the works of the Lord, and his wonders in the deep. + + +He speaks, and the stormy wind arises, and its waves are lifted up. + + +They go up to the heavens, and go down to the depths; their soul melts because of troubles. + + +They are troubled, they stagger as a drunkard, and all their wisdom is swallowed up. + + +Then they cry to the Lord in their affliction, and he brings them out of their distresses. + + +And he commands the storm, and it is calmed into a gentle breeze, and its waves are still. + + +And they are glad, because they are quiet; and he guides them to their desire haven. + + +Let them acknowledge to the Lord his mercies, and his wonderful works to the children of men. + + +Let them exalt him in the congregation of the people, and praise him in the seat of the elders. + + +He turns rivers into a desert, and streams of +106:33 +Gr. +waters. + water into +106:33 +Gr. +thirst. + a dry land; + + +a fruitful land into saltness, for the wickedness of them that dwell in it. + + +He turns a wilderness into pools of water, and a dry land into streams of water. + + +And there he causes the hungry to dwell, and they establish for themselves cities of habitation. + + +And they sow fields, and plant vineyards, and they yield fruit of increase. + + +And he blesses them, and they multiply exceedingly, and he diminishes not the number of their cattle. + + +Again they become few, and are brought low, by the pressure of evils and pain. + + +Contempt is poured upon their princes, and he causes them to wander in a desert and trackless land. + + +But he helps the poor out of poverty, and makes +him families as a flock. + + +The upright shall see and rejoice; and all iniquity shall stop her mouth. + + +Who is wise, and will observe these things, and understand the mercies of the Lord? + + + + +(108) Song of a Psalm by David. + +O God, my heart is ready, my heart is ready; I will sing and sing psalms with my glory. + + +Awake, lute and harp; I will awake early. + + +I will give thanks to you, O Lord, among the people; I will sing praise to you among the Gentiles. + + +For your mercy is great above the heavens, and your truth +reaches to the clouds. + + +Be you exalted, O God, above the heavens; and your glory above all the earth. + + +That your beloved +ones may be delivered, save with your right hand, and hear me. God has spoken in his sanctuary; + + +I will be exalted, and will divide Sicima, and will measure out the valley of tents. + + +Galaad is mine; and Manasses is mine; and Ephraim is the help of my head; Judas is my king; + + +Moab is the caldron of my hope; over Idumea will I cast my sandal; the Philistines are made subject to me. + + +Who will bring me into the fortified city? or who will guide me to Idumea? + + +Will not you, O God, who have rejected us? and will not you, O God, go forth with our hosts? + + +Give us help from tribulation: for vain is the help of man. + + +Through God we shall +107:13 +Gr. +work power. + do valiantly; and he will bring to nothing our enemies. + + + + +(109) For the end, a Psalm of David. + +For the end, a Psalm of David. O God, pass not over my praise in silence; + + +for the mouth of the sinner and the mouth of the crafty +man have been opened against me: they have spoken against me with a crafty tongue. + + +And they have compassed me with words of hatred; and fought against me without a cause. + + + +108:4 +Or, +in return for my love. + Instead of loving me, they falsely accused me: but I continued to pray. + + +And they rewarded me evil for good, and hatred for my love. + + +Set you a sinner against him; and let +108:6 +Or, +the accuser. + the devil stand at his right hand. + + +When he is judged, let him go forth condemned: and let his prayer become sin. + + +Let his days be few: and +108:8 +Acts 1:20 + let another take his office of overseer. + + +Let his children be orphans, and his wife a widow. + + +Let his children wander without a dwelling-place, and beg: let them be cast out of their habitations. + + +Let +his creditor exact all that belongs to him: and let strangers spoil his labors. + + +Let him have no helper; neither let there be any one to have compassion on his fatherless children. + + +Let his children be +given up to utter destruction: in one generation let his name be blotted out. + + +Let the iniquity of his fathers be remembered before the Lord; and let not the sin of his mother be blotted out. + + +Let them be before the Lord continually; and let their memorial be blotted out from the earth. + + +Because he remembered not to show mercy, but persecuted the needy and poor man, and +that to kill him that was pricked in the heart. + + +He loved cursing also, and it shall come upon him; and he took not pleasure in blessing, so it shall be removed far from him. + + +Yes, he put on cursing as a garment, and it is come as water into his bowels, and as oil into his bones. + + +Let it be to him as a garment which he puts on, and as a girdle with which he girds himself continually. + + +This is the dealing of the Lord with those who falsely accuse me, and of them that speak evil against my soul. + + +But you, O Lord, Lord, deal +mercifully with me, for your name's sake: for your mercy is good. + + +Deliver me, for I am poor and needy; and my heart is troubled within me. + + +I am removed as a shadow in its going down: I am tossed up and down like locusts. + + +My knees are weakened through fasting, and my flesh is changed by reason of +the lack of oil. + + +I became also a reproach to them: +when they saw me they shook their heads. + + +Help me, O Lord my God; and save me according to your mercy. + + +And let them know that this is your hand; and +that you, Lord, have wrought it. + + +Let them curse, but you shall bless: let them that rise up against me be ashamed, but let your servant rejoice. + + +Let those that falsely accuse me be clothed with shame, and let them cover themselves with their shame as with a mantle. + + +I will give thanks to the Lord abundantly with my mouth; and in the midst of many I will praise him. + + +For he stood on the right hand of the poor, to save +me from them that persecute my soul. + + + + +(110) A Psalm of David. + + +109:1 +Matt 22:44 + The Lord said to my Lord, Sit you on my right hand, until I make your enemies your footstool. + + +The Lord shall send out a rod of power for you out of Sion: rule you in the midst of your enemies. + + +With you is dominion in the day of your power, in the splendors of +109:3 +Or, +holiness, +i.e. +holy things. + your saints: I have begotten you from the womb before the morning. + + +The Lord swore, and will not repent, You are a priest for ever, after the order of Melchisedec. + + +The Lord at your right hand has dashed in pieces kings in the day of his wrath. + + +He shall judge among the nations, he shall fill up +the number of corpses, he shall crush the heads of many on the earth. + + +He shall drink of the brook in the way; therefore shall he lift up the head. + + + + +(111) Alleluia. + +I will give you thanks, O Lord, with my whole heart, in the council of the upright, and +in the congregation. + + +The works of the Lord are great, sought out +110:2 +Comp. +Gr. +with +Heb. + according to all his will. + + +His work is +worthy of thanksgiving and honor: and his righteousness endures for ever and ever. + + +He has caused his wonderful works to be remembered: the Lord is merciful and compassionate. + + +He has given food to them that fear him: he will remember his covenant for ever. + + +He has declared to his people the power of his works, to give them the inheritance of the heathen. + + +The works of his hands are truth and judgment: all his commandments are sure: + + +established for ever and ever, done in truth and uprightness. + + +He sent redemption to his people: he commanded his covenant for ever: holy and fearful is his name. + + +The fear of the Lord is the +110:10 +Or, +sum. + beginning of wisdom, and all that act accordingly have a good understanding; his praise endures for ever and ever. + + + + +(112) Alleluia. + +Blessed is the man that fears the Lord: he will delight greatly in his commandments. + + +His seed shall be mighty in the earth: the generation of the upright shall be blessed. + + +Glory and riches shall be in his house; and his righteousness endures for evermore. + + +To the upright light has sprung up in darkness: he is pitiful, and merciful, and righteous. + + +The good man is he that pities and lends: he will direct his affairs with judgment. + + +For he shall not be moved for ever; the righteous shall be in everlasting remembrance. + + +He shall not be afraid of +any evil report: his heart is ready to trust in the Lord. + + +His heart is established, he shall not fear, till he shall see +his desire upon his enemies. + + + +111:9 +2 Cor 9:9 + He has dispersed abroad; he has given to the poor; his righteousness endures for evermore: his horn shall be exalted with honor. + + +The sinner shall see and be angry, he shall gnash his teeth, and consume away: the desire of the sinner shall perish. + + + + +(113) Alleluia. + +Praise the Lord, you⌃ servants +of his, praise, the name of the Lord. + + +Let the name of the Lord be blessed, from this present time and for ever. + + +From the rising of the sun to his setting, the name of the Lord is to be praised. + + +The Lord is high above all the nations; his glory is above the heavens. + + +Who is as the Lord our God? who dwells in the high places, + + +and +yet looks upon the low things in heaven, and on the earth: + + +who lifts up the poor from the earth, and raises up the needy from the dunghill; + + +to set him with princes, +even with the princes of his people: + + +who settles the barren +woman in a house, +as a mother rejoicing over children. + + + + +(114) Alleluia. + +At the going forth of Israel from Egypt, of the house of Jacob from a barbarous people, + + +Judea became his +113:2 +Or, +consecrated thing. + sanctuary, +and Israel his dominion. + + +The sea saw and fled: Jordan was turned back. + + +The mountains skipped like rams, and the hills like lambs. + + +What +ailed you, O sea, that you fled? and you Jordan, that you were turned back? + + + +You⌃ mountains, that you⌃ skipped like rams, and +you⌃ hills, like lambs? + + +The earth trembled at the presence of the Lord, at the presence of the God of Jacob; + + +who turned the rock into pools of water, and the +113:8 +Gr. +sharp rock. + flint into fountains of water. + + + + +(115) + +Not to us, O Lord, not to us, but to your name give glory, because of your mercy and your truth; + + +lest at any time the nations should say, Where is their God? + + +But our God has done in heaven and on earth, whatever he has pleased. + + +The idols of the nations are silver and gold, the works of men's hands. + + +They have a mouth, but they +114:5 +Gr. +will not. + can’t speak; they have eyes, but they can’t see: + + +they have ears, but they can’t hear; they have noses, but they can’t smell; + + +they have hands, but they can’t handle; they have feet, but they can’t walk: they can’t speak through their throat. + + +Let those that make them become like to them, and all who trust in them. + + +The house of Israel trusts in the Lord: he is their helper and defender. + + +The house of Aaron trusts in the Lord: he is their helper and defender. + + +They that fear the Lord trust in the Lord: he is their helper and defender. + + +The Lord has remembered us, and blessed us: he has blessed the house of Israel, he has blessed the house of Aaron. + + +He has blessed them that fear the Lord, both small and great. + + +The Lord +114:14 +Or, +increase you. + add +blessings to you and to your children. + + +Blessed are you⌃ of the Lord, who made the heaven and the earth. + + +The heaven of +114:16 +Gr. +sing. + heavens +belongs to the Lord: but he has given the earth to the sons of men. + + +The dead shall not praise you, O Lord, nor any that go down to Hades. + + +But we, the living, will bless the Lord, from henceforth and for ever. + + + + +(116) Alleluia. + +I am well pleased, because the Lord will listen to the voice of my supplication. + + +Because he has inclined his ear to me, therefore will I call upon him while I live. + + +The pangs of death compassed me; the dangers of hell found me: I found affliction and sorrow. + + +Then I called on the name of the Lord: O Lord, deliver my soul. + + +The Lord is merciful and righteous; yes, our God has pity. + + +The Lord preserves +115:6 +Gr. +infants. + the simple: I was brought low, and he delivered me. + + +Return to your rest, O my soul; for the Lord has dealt bountifully with you. + + +For he has delivered my soul from death, my eyes from tears, and my feet from falling. + + +I shall be well-pleasing before the Lord in the land of the living. + +(115) Alleluia. + + +115:10 +In Brenton's text, Psalm 115 commences here, but verse numbers continue from v10 to v19. + +115:10 +2 Cor 4:13 + I believed, therefore I have spoken: but I was greatly afflicted. + + +And I said in my amazement, Every man is a liar. + + +What shall I render to the Lord for all the things wherein he has rewarded me? + + +I will take the cup of salvation, and call upon the name of the Lord. + + +I will pay my vows to the Lord, in the presence of all his people. + + +Precious in the sight of the Lord is the death of his saints. + + +O Lord, I am your servant; I am your servant, and the son of your handmaid: you have burst my bonds asunder. + + +I will offer to you the sacrifice of praise, and will call upon the name of the Lord. + + +I will pay my vows to the Lord, in the presence of all his people, + + +in the courts of the Lord's house, in the midst of you, Jerusalem. + + + + +(117) Alleluia. + + +116:1 +Rom 15:11 + Praise the Lord, all you⌃ nations: praise him, all you⌃ peoples. + + +For his mercy has been abundant toward us: and the truth of the Lord endures for ever. + + + + +(118) Alleluia. + +Give thanks to the Lord; for +he is good: for his mercy +endures for ever. + + +Let now the house of Israel say, that +he is good: for his mercy +endures for ever. + + +Let now the house of Aaron say, that +he is good: for his mercy +endures for ever. + + +Let now all that fear the Lord say, that +he is good: for his mercy +endures for ever. + + +I called on the Lord out of affliction: and he listened to me, +so as to bring me into a wide place. + + + +117:6 +Heb 13:6 + The Lord is my helper; and I will not fear what man shall do to me. + + +The Lord is my helper; and I shall see +my desire upon my enemies. + + + +It is better to trust in the Lord than to trust in man. + + + +It is better to hope in the Lord, than to hope in princes. + + +All nations compassed me about: but in the name of the Lord I repulsed them. + + +They completely compassed me about: but in the name of the Lord I repulsed them. + + +They compassed me about as bees +do a honeycomb, and they burst into flame as fire among thorns: but in the name of the Lord I repulsed them. + + +I was thrust, and sorely shaken, that I might fall: but the Lord helped me. + + +The Lord is my strength and my song, and is become my salvation. + + +The voice of exultation and salvation is in the tabernacles of the righteous: the right hand of the Lord has wrought mightily. + + +The right hand of the Lord has exalted me: the right hand of the Lord has wrought powerfully. + + +I shall not die, but live, and recount the works of the Lord. + + +The Lord has chastened me sore: but he has not given me up to death. + + +Open to me the gates of righteousness: I will go into them, and give praise to the Lord. + + +This is the gate of the Lord: the righteous shall enter by it. + + +I will give thanks to you; because you have heard me, and are become my salvation. + + + +117:22 +Matt 21:42 + The stone which the builders rejected, the same is become the head of the corner. + + +This has been done of the Lord; and it is wonderful in our eyes. + + +This is the day which the Lord has made: let us exult and rejoice in it. + + +O Lord, save now: O Lord, send now prosperity. + + + +117:26 +Matt 21:9 + Blessed is he that comes in the name of the Lord: we have blessed you out of the house of the Lord. + + +God is the Lord, and he has shined upon us: celebrate the feast with +117:27 +Possibly, the multitude, +q. d. +cœtu frequenti. + thick +branches, binding the victims even to the horns of the altar. + + +You are my God, and I will give you thanks: you are my God, and I will exalt you. I will give thanks to you, for you have heard me, and are become my salvation. + + +Give thanks to the Lord; for he is good: for his mercy +endures for ever. + + + + +(119) Alleluia. + +Blessed are the blameless in the way, who walk in the law of the Lord. + + +Blessed are they that search out his testimonies: they will diligently seek him with the whole heart. + + +For they that work iniquity have not walked in his ways. + + +You have commanded +us diligently to keep your precepts. + + +O that my ways were directed to keep your ordinances. + + +Then shall I not be ashamed, when I have respect to all your commandments. + + +I will give you thanks with uprightness of heart, when I have learned the judgments of your righteousness. + + +I will keep your ordinances: O forsake me not greatly. + + +Wherewith shall a young man direct his way? by keeping your words. + + +With my whole heart have I diligently sought you: cast me not away from your commandments. + + +I have hidden your oracles in my heart, that I might not sin against you. + + +Blessed are you, O Lord: teach me your ordinances. + + +With my lips have I declared all the judgments of your mouth. + + +I have delighted in the way of your testimonies, +as much as in all riches. + + +I will meditate on your commandments, and consider your ways. + + +I will meditate on your ordinances: I will not forget your words. + + +Render a recompense to your servant: +so shall I live, and keep your words. + + +Unveil you my eyes, and I shall perceive wondrous things of your law. + + +I am a stranger in the earth: hide not your commandments from me. + + +My soul has longed exceedingly for your judgments at all times. + + +You have rebuked the proud: cursed are they that turn aside from your commandments. + + +Remove from me reproach and contempt; for I have sought out your testimonies. + + +For princes sat and spoke against me: but your servant was meditating on your ordinances. + + +For your testimonies are my meditation, and your ordinances are my counselors. + + +My soul has cleaved to the ground; quicken you me according to your word. + + +I declared my ways, and you did hear me: teach me your ordinances. + + +Instruct me in the way of your ordinances; and I will meditate on your wondrous works. + + +My soul has slumbered for sorrow; strengthen you me with your words. + + +Remove from me the way of iniquity; and be merciful to me +118:29 +q.d. +in teaching me your law. + by your law. + + +I have chosen the way of truth; and have not forgotten your judgments. + + +I have cleaved to your testimonies, O Lord; put me not to shame. + + +I ran the way of your commandments, when you did enlarge my heart. + + + +118:33 +sc. +as a lawgiver. + Teach me, O Lord, the way of your ordinances, and I will seek it out continually. + + +Instruct me, and I will search out your law, and will keep it with my whole heart. + + +Guide me in the path of your commandments; for I have delighted in it. + + +Incline my heart to your testimonies, and not to covetousness. + + +Turn away my eyes that I may not behold vanity: quicken you me in your way. + + +Confirm your oracle to your servant, that he may fear you. + + +Take away my reproach which I have feared: for your judgments are good. + + +Behold, I have desired your commandments: quicken me in your righteousness. + + +And let your mercy come upon me, O Lord; +even your salvation, according to your word. + + +And +so I shall render an answer to them that reproach me: for I have trusted in your words. + + +And take not the word of truth utterly out of my mouth; for I have hoped in your judgments. + + +So shall I keep your law continually, for ever and ever. + + +I walked also at large: for I sought out your commandments. + + +And I spoke of your testimonies before kings, and was not ashamed. + + +And I +118:47 +Or, +exercised myself in. + meditated on your commandments, which I loved exceedingly. + + +And I lifted up my hands to your commandments which I loved; and I meditated in your ordinances. + + +Remember your words to your servant, wherein you have made me hope. + + +This has comforted me in my affliction: for your oracle has quickened me. + + +The proud have transgressed exceedingly; but I swerved not from your law. + + +I remembered your judgments of old, O Lord; and was comforted. + + +Despair took hold upon me, because of the sinners who forsake your law. + + +Your ordinances were my songs in the place of my sojourning. + + +I remembered your name, O Lord, in the night, and kept your law. + + +This I had, because I diligently sought your ordinances. + + +You are my portion, O Lord: I said that I would keep your law. + + +I implored your +118:58 +Gr. +presence, +or, +countenance. + favor with my whole heart: have mercy upon me according to your word. + + +I thought on your ways, and turned my feet to your testimonies. + + +I prepared myself, (and was not terrified,) to keep your commandments. + + +The snares of sinners entangled me: but I forgot not your law. + + +At midnight I arose, to give thanks to you for the judgments of your righteousness. + + +I am a companion of all them that fear you, and of them that keep your commandments. + + +O Lord, the earth is full of your mercy: teach me your ordinances. + + +You have wrought kindly with your servant, o Lord, according to your word. + + +Teach me kindness, and instruction, and knowledge: for I have believed your commandments. + + +Before I was afflicted, I transgressed; therefore have I kept your word. + + +Good are you, O Lord; therefore in your goodness teach me your ordinances. + + +The injustice of the proud has been multiplied against me: but I will search out your commandments with all my heart. + + +Their heart has been curdled like milk; but I have meditated on your law. + + + +It is good for me that you have afflicted me; that I might learn your ordinances. + + +The law of your mouth is better to me than thousands of gold and silver. + + +Your hands have made me, and fashioned me: instruct me, that I may learn your commandments. + + +They that fear you will see me and rejoice: for I have hoped in your words. + + +I know, O Lord, that your judgments are righteousness, and +that you in truthfulness have afflicted me. + + +Let, I pray you, your mercy be to comfort me, according to your word to your servant. + + +Let your compassions come to me, that I may live: for your law is my meditation. + + +Let the proud be ashamed; for they transgressed against me unjustly: but I will meditate in your commandments. + + +Let those that fear you, and those that know your testimonies, turn to me. + + +Let my heart be blameless in your ordinances, that I may not be ashamed. + + +My soul faints for your salvation: I have hoped in your words. + + +My eyes failed +in waiting for your word, saying, When will you comfort me? + + +For I am become as a bottle in the frost: +yet I have not forgotten your ordinances. + + +How many are the days of your servant? when will you execute judgment for me on them that persecute me? + + +Transgressors told me +idle tales; but not according to your law, O Lord. + + +All your commandments are truth; they persecuted me unjustly; help you me. + + +They nearly made an end of me in the earth; but I forsook not your commandments. + + +Quicken me according to your mercy; so shall I keep the testimonies of your mouth. + + +Your word, O Lord, abides in heaven for ever. + + +Your truth +endures to all generations; you have founded the earth, and it abides. + + +The day continues by your arrangement; for all things are your servants. + + +Were it not that your law is my meditation, then I should have perished in my affliction. + + +I will never forget your ordinances; for with them you have quickened me. + + +I am your, save me; for I have sought out your ordinances. + + +Sinners laid wait for me to destroy me; +but I understood your testimonies. + + +have seen an end of all perfection; +but your commandment is very broad. + + +How I have loved your law, O Lord! it is my meditation all the day. + + +You have made me wiser than my enemies +in your commandment; for it is mine for ever. + + +I have more understanding than all my teachers; for your testimonies are my medication. + + +I understand more that the aged; because I have sought out your commandments. + + +I have kept back my feet from every evil way, that I might keep your words. + + +I have not declined from your judgments; for you have +118:102 +That is, as a lawgiver. + instructed me. + + +How sweet are your oracles to my throat! more so than honey to my mouth! + + +I gain understanding by your commandments: therefore I have hated every way of unrighteousness. + + +Your law is a lamp to my feet, and a light to my paths. + + +I have sworn and determined to keep the judgments of your righteousness. + + +I have been very greatly afflicted, O Lord: quicken me, according to your word. + + +Accept, I pray you, O Lord, the free will offerings of my mouth, and teach me your judgments. + + +My soul is continually in +118:109 +Heb. and +Alex. +my. + your hands; and I have not forgotten your law. + + +Sinners spread a snare for me; but I erred not from your commandments. + + +I have inherited your testimonies for ever; for they are the joy of my heart. + + +I have inclined my heart to perform your ordinances for ever, +118:112 +See +Heb. + in return +for your mercies. + + +I have hated transgressors; but I have loved your law. + + +You are my helper and my supporter; I have hoped in your words. + + +Depart from me, you⌃ evil-doers; for I will search out the commandments of my God. + + +Uphold me according to your word, and quicken me; and make me not ashamed of my expectation. + + +Help me, and I shall be saved; and I will meditate in your ordinances continually. + + +You have brought to nothing all that depart from your ordinances; for their inward thought is unrighteous. + + +I have reckoned all the sinners of the earth as transgressors; therefore have I loved your testimonies. + + +Penetrate my flesh with your fear; for I am afraid of your judgments. + + +I have done judgment and justice; deliver me not up to them that injure me. + + +Receive your servant for good: let not the proud accuse me falsely. + + +My eyes have failed for your salvation, and for the word of your righteousness. + + +Deal with your servant according to your mercy, and teach me your ordinances. + + +I am your servant; instruct me, and I shall know your testimonies. + + + +It is time for the Lord to work: they have utterly broken your law. + + +Therefore have I loved your commandments more than gold, or the topaz. + + +Therefore I directed myself +according to all your commandments: I have hated every unjust way. + + +Your testimonies are wonderful: therefore my soul has sought them out. + + +The manifestation of your words will enlighten, and instruct the simple. + + +I opened my mouth, and drew breath: for I earnestly longed after your commandments. + + +Look upon me and have mercy upon me, after the manner of them that love your name. + + +Order my steps according to your word: and let not any iniquity have dominion over me. + + +Deliver me from the false accusation of men: so will I keep your commandments. + + +Cause your face to shine upon your servant: and teach me your ordinances. + + +My eyes have been bathed in streams of water, because I kept not your law. + + +Righteous are you, O Lord, and upright are your judgments. + + +You have commanded righteousness and perfect truth, +as your testimonies. + + +Your zeal has quite wasted me: because my enemies have forgotten your words. + + +Your word +has been very fully tried; and your servant loves it. + + +I am young and despised: +yet I have not forgotten your ordinances. + + +Your righteousness is an everlasting righteousness, and your law is truth. + + +Afflictions and distresses found me: +but your commandments +were my meditation. + + +Your testimonies +are an everlasting righteousness: instruct me, and I shall live. + + +I cried with my whole heart; hear me, O Lord: I will search out your ordinances. + + +I cried to you; save me, and I will keep your testimonies. + + +I arose before the dawn, and cried: I hoped in your words. + + +My eyes prevented the dawn, that I might meditate on your oracles. + + +Hear my voice, O Lord, according to your mercy; quicken me according to your judgment. + + +They have drawn near who persecuted me unlawfully; and they are far removed from your law. + + +You are near, O Lord; and all your +118:151 +Alex. +ἐντολαί, commands. + ways are truth. + + +I have known of old +118:152 +Gr. +of. + concerning your testimonies, that you have founded them for ever. + + +Look upon my affliction, and rescue me; for I have not forgotten your law. + + +Plead my cause, and ransom me: quicken me because of your word. + + +Salvation is far from sinners: for they have not searched out your ordinances. + + +Your mercies, O Lord, are many: quicken me according to your judgment. + + +Many are they that persecute me and oppress me: +but I have not declined from your testimonies. + + +I saw men acting foolishly, and I pined away; for they kept not your oracles. + + +Behold, I have loved your commandments, O Lord: quicken me in your mercy. + + +The beginning of your words is truth; and all the judgments of your righteousness +endure for ever. + + +Princes persecuted me without a cause, but my heart feared because of your words. + + +I will exult because of your oracles, as one that finds much spoil. + + +I hate and abhor unrighteousness; but I love your law. + + +Seven times in a day have I praised you because of the judgments of your righteousness. + + +Great peace have they that love your law: and there is no stumbling block to them. + + +I waited for your salvation, O Lord, and have loved your commandments. + + +My soul has kept your testimonies, and loved them exceedingly. + + +I have kept your commandments and your testimonies; for all my ways are before you, O Lord. + + +Let my supplication come near before you, o Lord; instruct me according to your oracle. + + +Let my petition come in before you, O Lord; deliver me according to your oracle. + + +Let my lips utter a hymn, when you shall have taught me your ordinances. + + +Let my tongue utter your oracles; for all your commandments are righteous. + + +Let your hand be +prompt to save me; for I have chosen your commandments. + + +I have longed after your salvation, O Lord; and your law is my meditation. + + +My soul shall live, and shall praise you; and your judgments shall help me. + + +I have gone astray like a lost sheep; seek your servant; for I have not forgotten your commandments. + + + + +(120) A Song of Degrees. + +In my affliction I cried to the Lord, and he listened to me. + + +Deliver my soul, O Lord, from unjust lips, and from a deceitful tongue. + + +What should be given to you, and what should be added to you, for +your crafty tongue? + + +Sharpened weapons of the mighty, with coals of the desert. + + +Woe is me, that my sojourning is +119:5 +Heb. משך + prolonged; I have tabernacled among the tents of Kedar. + + +My soul has long been a sojourner; + + +I was peaceful among them that hated peace; when I spoke to them, they warred against me without a cause. + + + + +(121) A Song of Degrees. + +I lifted up my eyes to the mountains, whence my help shall come. + + +My help +shall come from the Lord, who made the heaven and the earth. + + +Let not your foot be moved; and let not your keeper slumber. + + +Behold, he that keeps Israel shall not slumber nor sleep. + + +The Lord shall keep you: the Lord is your shelter upon your right hand. + + +The sun shall not burn you by day, neither the moon by night. + + +May the Lord preserve you from all evil: the Lord shall keep your soul. + + +The Lord shall keep your coming in, and your going out, from henceforth and even for ever. + + + + +(122) A Song of Degrees. + +I was glad when they said to me, Let us go into the house of the Lord. + + +Our feet stood in your courts, O Jerusalem. + + +Jerusalem is built as a city whose fellowship is complete. + + +For there the tribes went up, the tribes of the Lord, as a testimony for Israel, to give thanks to the name of the Lord. + + +For there are set thrones for judgment, +even thrones for the house of David. + + + +121:6 +Or, +ask Jerusalem how it is with her. + Pray now for the peace of Jerusalem: and +let there be prosperity to them that love you. + + +Let peace, I pray, be within your host, and prosperity in your palaces. + + +For the sake of my brethren and my neighbors, I have indeed spoken peace concerning you. + + +Because of the house of the Lord our God, I have diligently sought your good. + + + + +(123) A Song of Degrees. + +To you who dwell in heaven have I lifted up my eyes. + + +Behold, as the eyes of servants +are directed to the hands of their masters, +and as the eyes of a maidservant to the hands of her mistress; so our eyes +are directed to the Lord our God, until he have mercy upon us. + + +Have pity upon us, O Lord, have pity upon us: for we are exceedingly filled with contempt. + + + +Yes, our soul has been exceedingly filled +with it: +122:4 +Or, +we are the reproach of them that are at ease. + +let the reproach +be to them that are at ease, and contempt to the proud. + + + + +(124) A Song of Degrees. + +If it had not been that the Lord was among us, let Israel now say; + + +if it had not been that the Lord was among us, when men rose up against us; + + +verily they would have swallowed us up alive, when their wrath was kindled against us: + + +verily the water would have drowned us, our soul would have gone under the torrent. + + +Yes, our soul would have gone under the overwhelming water. + + +Blessed be the Lord, who has not given us for a prey to their teeth. + + +Our soul has been delivered as a sparrow from the snare of the fowlers: the snare is broken, and we are delivered. + + +Our help is in the name of the Lord, who made heaven and earth. + + + + +(125) A Song of Degrees. + +They that trust in the Lord +shall be as mount Sion: he that dwells in Jerusalem shall never be moved. + + +The mountains are round about her, and +so the Lord is round about his people, from henceforth and even for ever. + + +For the Lord will not allow the rod of sinners to be upon the lot of the righteous; lest the righteous should stretch forth their hands to iniquity. + + +Do good, O Lord, to them +that are good, and to them +that are upright in heart. + + +But them that turn aside to crooked ways the Lord will lead away with the workers of iniquity: +124:5 +Or, +let peace be. + +but peace +shall be upon Israel. + + + + +(126) A Song of Degrees. + +When the Lord turned the captivity of Sion, we became as comforted ones. + + +Then was our mouth filled with joy, and our tongue with exultation: then would they say among the Gentiles, + + +The Lord has done great things among them. The Lord has done great things for us, we became joyful. + + +Turn, O Lord, our captivity, as the streams in the south. + + +They that sow in tears shall reap in joy. + + +They went on and wept as they cast their seeds; but they shall surely come with exultation, bringing their sheaves +with them. + + + + +(127) A Song of Degrees. + +Except the Lord build the house, they that build labor in vain: except the Lord keep the city, the watchman watches in vain. + + +It is vain for you to rise early: you⌃ rise up after resting, you⌃ that eat the bread of grief; while he gives sleep to his beloved. + + +Behold, the inheritance of the Lord, children, the reward of the fruit of the womb. + + +As arrows in the hand of a mighty man; so are the children of those who were outcasts. + + +Blessed is the man who shall satisfy his desire with them: they shall not be ashamed when they shall speak to their enemies in the gates. + + + + +(128) A Song of Degrees. + +Blessed are all they that fear the Lord; who walk in his ways. + + +You shall eat the +127:2 +Alex. +fruits of your labors. labors of your hands: blessed are you, and it shall be well with you. + + +Your wife shall be as a fruitful vine on the sides of your house: your children as young olive-plants round about your table. + + +Behold, thus shall the man be blessed that fears the Lord. + + +May the Lord bless you out of Sion; and may you see the prosperity of Jerusalem all the days of your life. + + +And may you see your children's children. Peace be upon Israel. + + + + +A Song of Degrees. Many a time have they warred against me from my youth, let Israel now say: + + +Many a time have they warred against me from my youth: and yet they prevailed not against me. + + +The sinners wrought upon my back: they prolonged their +128:3 +שיך iniquity, easily read for שוכה a furrow. iniquity. + + +The righteous Lord has cut asunder the necks of sinners. + + +Let all that hate Sion be put to shame and turned back. + + +Let them be as the grass of the housetops, which withers before it is plucked up. + + +Wherewith the reaper fills not his hand, nor he that makes up the sheaves, his bosom. + + +Neither do they that go by say, The blessing of the Lord be upon you: we have blessed you in the name of the Lord. + + + + +(130) A Song of Degrees. + +Out of the depths have I cried to you, O Lord. + + +O Lord, listen to my voice; let your ears be attentive to the voice of my supplication. + + +If you, O Lord, should mark iniquities, O Lord, who shall stand? + + +For with you is +129:4 +Or, +propitiation. + forgiveness: for your +129:4 +See Gen 31:53. + name's sake + + +have I waited for you, O Lord, my soul has waited for your word. + + +My soul has hoped in the Lord; from the morning watch till night. + + +Let Israel hope in the Lord: for with the Lord is mercy, and with him is plenteous redemption. + + +And he shall redeem Israel from all his iniquities. + + + + +(131) +130:0 +Alex. ++ 'for David.' + A Song of Degrees. + +O Lord, my heart is not exalted, neither have my eyes been +haughtily raised: neither have I exercised myself in great +matters, nor in things too wonderful for me. + + + +I shall have sinned if I have not been humble, but have exulted my soul: according to +the relation of a weaned child to his mother, so will you recompense my soul. + + +Let Israel hope in the Lord, from henceforth and for ever. + + + + +(132) A Song of Degrees. + +Lord, remember David, and all his meekness: + + +how he swore to the Lord, +and vowed to the God of Jacob, +saying, + + + +131:3 +Gr. +if I shall, etc. +Hebraism. I will not go into the tabernacle of my house; I will not go up to the couch of my bed; + + +I will not give sleep to my eyes, nor slumber to my eyelids, nor rest to my temples, + + +until I find a place for the Lord, a tabernacle for the God of Jacob. + + +Behold, we heard of it in Ephratha; we found it in the fields of the wood. + + +Let us enter into his tabernacles: let us worship at the place where his feet stood. + + +Arise, O Lord, into your rest; you, and the ark of your holiness. + + +Your priests shall clothe themselves with righteousness; and your saints shall exult. + + +For the sake of your servant David turn not away the face of your anointed. + + +The Lord swore +in truth to David, and he will not annul it, +saying, Of the fruit of your body will I set +a king upon your throne. + + +If your children will keep my covenant, and these my testimonies which I shall teach them, their children also shall sit upon your throne for ever. + + +For the Lord has elected Sion, he has chosen her for a habitation for himself, +saying, + + +This is my rest for ever: here will I dwell; for I have chosen it. + + +I will surely bless her provision: I will satisfy her poor with bread. + + +I will clothe her priests with salvation; and her saints shall greatly exult. + + +There will I cause to spring up a horn to David: I have prepared a lamp for my anointed. + + +His enemies will I clothe with a shame; but upon himself shall my +131:18 +See Ps 88. (89) 39. + holiness flourish. + + + + +(133) +132:0 +Alex. ++ 'for David.' + A Song of Degrees. + +See now! what is so good, or what so pleasant, as for brethren to dwell together? + + + +It is as ointment on the head, that ran down to the beard, +even the beard of Aaron; that ran down to the fringe of his clothing. + + +As the dew of Aermon, that comes down on the mountains of Sion: for there, the Lord commanded the blessing, even life for ever. + + + + +(134) A Song of Degrees. + +Behold now, bless you⌃ the Lord, all the servants of the Lord, who stand in the house of the Lord, in the courts of the house of our God. + + +Lift up your hands by night +133:2 +Or, +to the holy places. + in the sanctuaries, and bless the Lord. + + +May the Lord, who made heaven and earth, bless you out of Sion. + + + + +(135) Alleluia. + +Praise you⌃ the name of the Lord; praise the Lord, +you⌃ his servants, + + +who stand in the house of the Lord, in the courts of the house of our God. + + +Praise you⌃ the Lord; for the Lord is good: sing praises to his name; for +it is good. + + +For the Lord has chosen Jacob for himself, +and Israel for his peculiar treasure. + + +For I know that the Lord is great, and our Lord is above all gods; + + +all that the Lord willed, he did in heaven, and on the earth, in the sea, and in all deeps. + + +Who brings up clouds from the extremity of the earth: he has made lightnings for the rain: he brings winds out of his treasures. + + +Who struck the firstborn of Egypt, both of man and beast. + + +He sent signs and wonders into the midst of you, O Egypt, on Pharao, and on all his servants. + + +Who struck many nations, and killed mighty kings; + + +Seon king of the Amorites, and Og king of Basan, and all the kingdoms of Chanaan: + + +and gave their land +for an inheritance, an inheritance to Israel his people. + + +O Lord, your name +endures for ever, and your memorial to all generations. + + +For the Lord shall judge his people, and comfort himself concerning his servants. + + +The idols of the heathen are silver and gold, the works of men's hands. + + +They have a mouth, but they can’t speak; they have eyes, but they can’t see; + + +they have ears, but they can’t hear; for there is no breath in their mouth. + + +Let those who make them be made like to them; and all those who trust in them. + + +O house of Israel, bless you⌃ the Lord: O house of Aaron, bless you⌃ the Lord: + + +O house of Levi, bless you⌃ the Lord: you⌃ that fear the Lord, bless the Lord. + + +Blessed in Sion be the Lord, who dwells in Jerusalem. + + + + +(136) Alleluia. + +Give thanks to the Lord: for he is good: for his mercy +endures for ever. + + +Give thanks to the God of gods; for his mercy +endures for ever. + + +Give thanks to the Lord of lords: for his mercy +endures for ever. + + +To him who alone has wrought great wonders: for his mercy +endures for ever. + + +To him who made the heavens by understanding; for his mercy +endures for ever. + + +To him who established the earth on the waters; for his mercy +endures for ever. + + +To him who alone made great lights; for his mercy +endures for ever. + + +The sun to rule by day; for his mercy +endures for ever. + + +The moon and the stars to rule the night; for his mercy +endures for ever. + + +To him who struck Egypt with their firstborn; for his mercy +endures for ever. + + +And brought Israel out of the midst of them; for his mercy +endures for ever: + + +with a strong hand, and a high arm: for his mercy +endures for ever. + + +To him who divided the Red Sea into parts: for his mercy +endures for ever: + + +and brought Israel through the midst of it: for his mercy +endures for ever: + + +and overthrew Pharao and his host in the Red Sea: for his mercy endures for ever. + + +To him who led his people through the wilderness: for his mercy +endures for ever. + + +To him who struck great kings: for his mercy +endures for ever: + + +and killed mighty kings; for his mercy +endures for ever: + + +Seon king of the Amorites: for his mercy +endures for ever: + + +and Og king of Basan: for his mercy +endures for ever: + + +and gave their land +for an inheritance: for his mercy +endures for ever: + + +even an inheritance to Israel his servant: for his mercy +endures for ever. + + +For the Lord remembered us in our low estate; for his mercy +endures for ever: + + +and redeemed us from our enemies; for his mercy +endures for ever. + + +Who gives food to all flesh; for his mercy +endures for ever. + + +Give thanks to the God of heaven; for his mercy +endures for ever. + + + + +(137) +136:0 +Alex. +omits. + For David, +a Psalm of Jeremias. + +By the rivers of Babylon, there we sat; and wept when we remembered Sion. + + +We hung our +136:2 +Gr. +organs, +or, +instruments. + harps on the willows in the midst of it. + + +For there they that had taken us captive asked of us the words of a song; and they that had carried us away +asked a hymn, +saying, Sing us +one of the songs of Sion. + + +How should we sing the Lord's song +136:4 +Gr. +on + in a strange land? + + +If I forget you, O Jerusalem, let my right hand forget +its skill. + + +May my tongue cleave to my throat, if I do not remember you; if I do not prefer Jerusalem as the chief of my joy. + + +Remember, O Lord, the children of Edom in the day of Jerusalem; who said, Rase +it, +136:7 +Gr. +empty, empty. + rase +it, even to its foundations. + + +Wretched daughter of Babylon! blessed +shall he be who shall reward you as you have rewarded us. + + +Blessed +shall he be who shall seize and dash your infants against the rock. + + + + +(138) A Psalm for David, of Aggaeus and Zacharias. + +I will give you thanks, O Lord, with my whole heart; and I will sing psalms to you before the angels; for you have heard all the words of my mouth. + + +I will worship toward your holy temple, and give thanks to your name, on account of your mercy and your truth; for you have magnified your holy name above every thing. + + +In whatever day I shall call upon you, hear me speedily; you shall abundantly provide me with your power in my soul. + + +Let all the kings of the earth, o Lord, give thanks to you; for they have heard all the words of your mouth. + + +And let them sing in the ways of the Lord; for great is the glory of the Lord. + + +For the Lord is high, and +yet regards the lowly; and he knows high things from afar off. + + +Though I should walk in the midst of affliction, you will quicken me; you have stretched forth your hands against the wrath of my enemies, and your right hand has saved me. + + +O Lord, you shall recompense +them on my behalf: your mercy, O Lord, +endures for ever: overlook not the works of your hands. + + + + +(139) For the end, a Psalm of David. +138:0 +Alex. ++ of Zacharias in the dispersion. + + +O Lord, you have proved me, and known me. + + +You know my down-sitting and my up-rising: you understand my thoughts +138:2 +Gr. +from afar. + long before. + + +You have traced my path and my +138:3 +q.d. +of rushes, +lit. +rush. + bed, and have foreseen all my ways. + + +For there is no unrighteous word in my tongue: behold, O Lord, you have known all things, + + +the last and the first: you have fashioned me, and laid your hand upon me. + + +The knowledge of you is too wonderful for me; it is very difficult, I can’t +attain to it. + + +Whither shall I go from your Spirit? and whither shall I flee from your presence? + + +If I should go up to heaven, you are there: if I should go down to hell, you are present. + + +If I should spread my wings +to fly +138:9 +Alex. +κατ᾿ ὄρθον, toward the dawn. + straight forward, and sojourn at the extremity of the sea, +it would be vain, + + +for even there your hand would guide me, and your right hand would hold me. + + +When I said, Surely the darkness will cover me; even the night +was light in my +138:11 +Comp. +Heb. + luxury. + + +For darkness will not be darkness with you; but night will be light as day: as its darkness, so shall its light +be to you. + + +For you, O Lord, have possessed my reins; you have helped me from my mother's womb. + + +I will give you thanks; for you are fearfully wondrous; wondrous are your works; and my soul knows +it well. + + +My bones, which you made in secret were not hidden from you, nor my substance, in the lowest parts of the earth. + + +Your eyes saw my unwrought +substance, and all +men shall be written in your book; they shall be formed by day, though +there should for a time be no one among them. + + +But your friends, O God, have been greatly honored by me; their rule has been greatly strengthened. + + +I will number them, and they shall be multiplied beyond the sand; I awake, and am still with you. + + +Oh that you would kill the wicked, O God; depart from me, you⌃ men of blood. + + +For you will say concerning +their thought, +that they shall take your cities in vain. + + +Have I not hated them, O Lord, that hate you? and wasted away because of your enemies? + + +I have hated them with perfect hatred; they were counted my enemies. + + +Prove me, O God, and know my heart; examine me, and know my paths; + + +and see if +there is any way of iniquity in me, and lead me in an everlasting way. + + + + +(140) For the end, a Psalm of David. + +Rescue me, O Lord, from the evil man; deliver me from the unjust man. + + +Who have devised injustice in their hearts; all the day they prepared war. + + +They have sharpened their tongue as +the tongue of a serpent; +139:3 +Rom 3:13 + the poison of asps is under their lips. Pause. + + +Keep me, O Lord, from the hand of the sinner; rescue me from unjust men; who have purposed to overthrow my goings. + + +The proud have hid a snare for me, and have stretched out ropes +for snares for my feet; they set a stumbling block for me near the path. Pause. + + +I said to the Lord, You are my God; listen, O Lord, to the voice of my supplication. + + +O Lord God, the strength of my salvation; you have screened my head in the day of battle. + + +Deliver me not, O Lord, to the sinner, +139:8 + according to my desire: they have devised +mischief against me; forsake me not, lest they should be exalted. Pause. + + + +As for the head of them that compass me, the mischief of their lips shall cover them. + + +Coals of fire shall fall upon them on the earth; and you shall cast them down in afflictions: they shall not bear up +under them. + + +A talkative man shall not prosper on the earth: evils shall hunt the unrighteous man to destruction. + + +I know that the Lord will maintain the cause of the +139:12 +Gr. +singular. + poor, and the right of the needy ones. + + +Surely the righteous shall give thanks to your name: the upright shall dwell in your presence. + + + + +(141) A Psalm of David. + +O Lord, I have cried to you; hear me: attend to the voice of my supplication, when I cry to you. + + +Let my prayer be set forth before you as incense; the lifting up of my hands +as an evening sacrifice. + + +Set a watch, O Lord, on my mouth, and a +140:3 +Lit. +a door of fortification. + strong door about by lips. + + +Incline not my heart to evil things, to +140:4 +Gr. +pretend pretences. + employ pretexts +140:4 +Gr. +in. + for sins, with those who work iniquity. Let me not unite with their choice ones. + + +The righteous shall chasten me with mercy, and reprove me: but let not the oil of the sinner anoint my head: for yet shall my prayer also be in their +140:5 +q.d. +lest I be injured by them. + pleasures. + + +Their mighty ones have been swallowed up near the rock: they shall hear my words, for they are sweet. + + +As a lump of earth is crushed upon the ground, our bones have been scattered by the +mouth of the grave. + + +For my eyes are to you, O Lord God: I have hoped in you; take not away my life. + + +Keep me from the snare which they have set for me, and from the stumbling blocks of them that work iniquity. + + +Sinners shall fall by their own net: I am alone until I shall escape. + + + + +(142) +A Psalm of instruction for David, when he was in the cave, —a Prayer. + +I cried to the Lord with my voice; with my voice I made supplication to the Lord. + + +I will pour out before him my supplication: I will declare before him my affliction. + + +When my spirit was fainting within me, then you knew my paths; in the very way wherein I was walking, they hid a snare for me. + + +I looked on +my right hand, and behold, for there was none that noticed me; refuge failed me; and there was none that cared for my soul. + + +I cried to you, O Lord, and said, You are my hope, my portion in the land of the living. + + +Attend to my supplication, for I am brought very low; deliver me from them that persecute me; for they are stronger than I. + + +Bring my soul out of prison, that I may give thanks to your name, O Lord; the righteous shall wait for me, until you recompense me. + + + + +(143) A Psalm of David, when his son pursued him. + +O Lord, attend to my prayer: listen to my supplication in your truth; hear me in your righteousness. + + +And enter not into judgment with your servant, for in your sight shall no +man living be justified. + + +For the enemy has persecuted my soul; he has brought my life down to the ground; he has made me to dwell in a dark +place, as those that have been long dead. + + +Therefore my spirit was grieved in me; my heart was troubled within me. + + +I remembered the days of old; and I meditated on all your doings: +yes, I meditated on the works of your hands. + + +I spread forth my hands to you; my soul +thirsts for you, as a dry land. Pause. + + +Hear me speedily, O Lord; my spirit has failed; turn not away your face from me, else I shall be like to them that go down to the pit. + + +Cause me to hear your mercy in the morning; for I have hoped in you; make known to me, O Lord, the way wherein I should walk; for I have lifted up my soul to you. + + +Deliver me from my enemies, O Lord; for I have fled to you for refuge. + + +Teach me to do your will; for you are my God; your good Spirit shall guide me in the +142:10 +Alex. +as +Heb. 'land of uprightness.' + straight +way. + + +You shall quicken me, O Lord, for your name's sake; in your righteousness you shall bring my soul out of affliction. + + +And in your mercy you will destroy my enemies, and will destroy all those that afflict my soul; for I am your servant. + + + + +(144) +A Psalm of David concerning Goliad. + +Blessed +be the Lord my God, who instructs my hands for battle, +and my fingers for war. + + +My mercy, and my refuge; my helper, and my deliverer; my protector, in whom I have trusted; who subdues my people under me. + + +Lord, what is man, that you are made known to him? or the son of man, that you take account of him? + + +Man is like to vanity: his days pass as a shadow. + + +O Lord, bow your heavens, and come down: touch the mountains, and they shall smoke. + + +Send lightning, and you shall scatter them: send forth your arrows, and you shall discomfit them. + + +Send forth your hand from on high; rescue me, and deliver me out of great +143:7 +Gr. +many. + waters, out of the hand of strange children; + + +whose mouth has spoken vanity, and their right hand is a right hand of iniquity. + + +O God, I will sing a new song to you: I will play to you on a lute of ten strings. + + + +Even to him who gives +143:10 +Or, +victory. + salvation to kings: who redeems his servant David from the hurtful sword. + + +Deliver me, and rescue me from the hand of strange children, whose mouth has spoken vanity, and their right hand is a right hand of iniquity; + + +whose children are as plants, strengthened in their youth: their daughters are beautiful, sumptuously adorned after the similitude of a temple. + + +Their garners are full, and bursting with one kind of store after another; their sheep are prolific, multiplying in their streets. + + +Their oxen are fat: there is no falling down of a hedge, nor going out, nor cry in their +143:14 +Or, +habitations. + folds. + + +Men bless the people to whom this lot belongs, +but blessed is the people whose God is the Lord. + + + + +(145) David's +Psalm of praise. + +I will exalt you, my God, my king; and I will bless your name +144:1 +Lit. +to the age, and to the age of the age. + for ever and ever. + + +Every day will I bless you, and I will praise your name +144:2 +Lit. +to the age, and to the age of the age. + for ever and ever. + + +The Lord is great, and greatly to be praised; and there is no end to his greatness. + + +Generation after generation shall praise your works, and tell of your power. + + +And they shall speak of the glorious majesty of your holiness, and recount your wonders. + + +And they shall speak of the power of your terrible +acts; and recount your greatness. + + +They shall utter the memory of the abundance of your goodness, and shall exult in your righteousness. + + +The Lord is compassionate, and merciful; long suffering, and abundant in mercy. + + +The Lord is good to those that wait +on him; and his compassions are over all his works. + + +Let all your works, O Lord, give thanks to you; and let your saints bless you. + + +They shall speak of the glory of your kingdom, and talk of your dominion; + + +to make known to the sons of men your power, and the glorious majesty of your kingdom. + + +Your kingdom is +144:13 +Gr. +a kingdom of all ages. + an everlasting kingdom, and your dominion +endures +144:13 +Gr. +in every generation and generation. + through all generations. The Lord is faithful in his words, and holy in all his works. + + +The Lord supports all that are falling, and sets up all that are broken down. + + +The eyes of all wait upon you; and you give +them their food in due season. + + +You open your hands, and fill every living thing with pleasure. + + +The Lord is righteous in all his ways, and holy in all his works. + + +The Lord is near to all that call upon him, to all that call upon him in truth. + + +He will perform the desire of them that fear him: and he will hear their supplication, and save them. + + +The Lord preserves all that love him: but all sinners he will utterly destroy. + + +My mouth shall speak the praise of the Lord: and let all flesh bless his holy name for ever and ever. + + + + +(146) Alleluia, +a Psalm of Aggaeus and Zacharias. + +My soul, praise the Lord. + + +While I live will I praise the Lord: I will sing praises to my God as long as I exist. + + +Trust not in princes, nor in the children of men, in whom there is no safety. + + +His breath shall go forth, and he shall return to his earth; in that day all his thoughts shall perish. + + +Blessed is he whose helper is the God of Jacob, whose hope is in the Lord his God: + + +who made heaven, and earth, the sea, and all things in them: who keeps truth for ever: + + +who executes judgment for the wronged: who gives food to the hungry. The Lord looses the fettered ones: + + +the Lord gives wisdom to the blind: The Lord sets up the broken down: the Lord loves the righteous: the Lord preserves the strangers; + + +he will relieve the orphan and widow: but will utterly remove the way of sinners. + + +The Lord shall reign for ever, +even your God, O Sion, to all generations. + + + + +(147) Alleluia, +a Psalm of Aggaeus and Zacharias. + +Praise you⌃ the Lord: for psalmody is a good thing; let praise be sweetly sung to our God. + + +The Lord builds up Jerusalem; and he will gather together the dispersed of Israel. + + +He heals the broken in heart, and binds up their wounds. + + +He numbers the multitudes of stars; and calls them all by names. + + +Great is our Lord, and great is his strength; and his understanding is infinite. + + +The Lord lifts up the meek; but brings sinners down to the ground. + + +Begin +the song with thanksgiving to the Lord; sing praises on the harp to our God: + + +who covers the heaven with clouds, who prepares rain for the earth, who causes grass to spring up on the mountains, [146:8 +See Ps 103 (104) 14. +and green herb for the service of men;] + + +and gives cattle their food, and to the young ravens that call upon him. + + +He will not take pleasure in the strength of a horse; neither is he well-pleased with the legs of a man. + + +The Lord takes pleasure in them that fear him, and in all that hope in his mercy. + + + + +Alleluia, a Psalm of Aggaeus and Zacharias. +147:0 +In the original text, the following verses are numbered 12 to 20. + + +Praise the Lord, O Jerusalem; praise your God, O Sion. + + +For he has strengthened the bars of your gates; he has blessed your children within you. + + +He makes your borders peaceful, and fills you with the +147:3 +Lit. +fat of wheat. + flour of wheat. + + +He sends his oracle to the earth: his word will run swiftly. + + +He gives snow like wool: he scatters the mist like ashes. + + +Casting +forth his ice like morsels: who shall stand before his cold? + + +He shall send out his word, and melt them: he shall blow +with his wind, and the waters shall flow. + + +He sends his word to Jacob, his ordinances and judgments to Israel. + + +He has not done so to +147:9 +Gr. +every. + any +other nation; and he has not shown them his judgments. + + + + +Alleluia, +a Psalm of Aggaeus and Zacharias. + +Praise you⌃ the Lord from the heavens: praise him in the highest. + + +Praise you⌃ him, all his angels: praise you⌃ him, all his hosts. + + +Praise him, sun and moon; praise him, all you⌃ stars and light. + + +Praise him, you⌃ heavens of heavens, and the water that is above the heavens. + + +Let them praise the name of the Lord: for he spoke, and they were made; he commanded, and they were created. + + +He has established them for ever, even for ever and ever: he has made an ordinance, and it shall not pass away. + + +Praise the Lord from the earth, you⌃ serpents, and all deeps. + + +Fire, hail, snow, ice, stormy wind; the things that perform his word. + + +Mountains, and all hills; fruitful trees, and all cedars: + + +wild beasts, and all cattle; reptiles, and winged birds: + + +kings of the earth, and all peoples; princes, and all judges of the earth: + + +young men and virgins, old men with youths: + + +let them praise the name of the Lord: for his name only is exalted; his praise is above the earth and heaven, + + +and he shall exalt the horn of his people, +148:14 +Or, +who is the praise of. + +there is a hymn for all his saints, +even of the children of Israel, a people who draw near to him. + + + + +Alleluia. + +Sing to the Lord a new song: his praise is in the assembly of the saints. + + +Let Israel rejoice in him that made him; and let the children of Sion exult in their king. + + +Let them praise his name in the dance: let them sings praises to him with timbrel and lute. + + +For the Lord takes pleasure in his people; and will exalt the meek with salvation. + + +The saints shall rejoice in glory; and shall exult on their beds. + + +The +149:6 +Gr. +exaltations, +q.d. +extollings. high praises of God shall be in their throat, and two-edged swords in their hands; + + +to execute vengeance on the nations, +and punishments among the peoples; + + +to bind their kings with fetters, and their nobles with manacles of iron; to execute on them the judgment +149:8 +Gr. +inscribed, +sc. +in the scripture. + written: this honor have all his saints. + + + + +Alleluia. + +Praise God in his holy places: praise him in the firmament of his power. + + +Praise him on +account of his mighty acts: praise him according to his abundant greatness. + + +Praise him with the sound of a trumpet: praise him with lute and harp. + + +Praise him with timbrel and dance: praise him with stringed instruments and the organ. + + +Praise him with melodious cymbals: praise him with loud cymbals. + + +Let every thing that has breath praise the Lord. + + + + +This Psalm is a genuine one of David, though supernumerary, composed when he fought in single combat with +151:0 +Alex. +Goliath + Goliad. + +I was small among my brethren, and youngest in my father's house: I tended my father's sheep. + + +My hands formed a musical instrument, and my fingers tuned a lute. + + +And who shall tell my Lord? the Lord himself, he himself hears. + + +He sent forth his angel, and took me from my father's sheep, and he anointed me with the oil of his anointing. + + +My brothers were handsome and tall; but the Lord did not take pleasure in them. + + +I went forth to meet the Philistine; and he cursed me by his idols. + + +But I drew his own sword, and beheaded him, and removed reproach from the children of Israel. + + +
+ +Proverbs +PROVERBS +Proverbs +PRO +

PROVERBS +

+ + +

The Proverbs of Solomon son of David, who reigned in Israel; + +to know wisdom and instruction, and to perceive words of understanding; + +to receive also +1:3 +Gr. turnings, q.d. knotty words. See Heb. + hard saying, and to understand true justice, and +how to direct judgment; + +that he might give subtlety to the simple, and to the young man +1:4 +Or, discretion. + discernment and understanding. + +For by the hearing of these a wise man will be wiser, and man of understanding will gain direction; + +and will understand a parable, and a dark speech; the saying of the wise also, and riddles. + +The fear of the Lord is the +1:7 +Or, sum, or, top. + beginning of wisdom; and +there is good understanding to all that practise it: and piety toward God is the beginning of discernment; but the ungodly will set at nothing wisdom and instruction. + +Hear, +my son, the instruction of your father, and reject not the rules of your mother. + +For you shall receive for your head a crown of graces, and a chain of gold round your neck. + + +My son, let not ungodly men lead you astray, neither consent you +to them. + +If they should exhort you, saying, Come with us, partake in blood, and let us unjustly hide the just man in the earth: + +and let us swallow him alive, as Hades +would, and remove the memorial of him from the earth: + +let us seize on his valuable property, and let us fill our houses with spoils: + +but do you cast in your lot with us, and let us all provide a common purse, and let us have one pouch: + +go not in the way with them, but turn aside your foot from their paths: + + +1:16 +this verse is not in the text. The Alexandrine text is shown here + +For their feet run to do evil, and are swift to shed blood. + + +for nets are not without cause spread for birds. + +For they that are concerned in murder store up evils for themselves; and the overthrow of transgressors is evil. + +These are the ways of all that perform lawless deeds; for by ungodliness they destroy their own life. + +Wisdom sings aloud in passages, and in the broad places speaks boldly. + +And she makes proclamation on the top of the walls, and sits by the gates of princes; and at the gates of the city boldly says, + +So long as the simple cleave to justice, they shall not be ashamed: but the foolish being lovers of haughtiness, having become ungodly have hated knowledge, and are become subject to reproofs. + +Behold, I will bring forth to you the utterance of my breath, and I will instruct you in my speech. + +Since I called, and you⌃ did not listen; and I spoke at length, and you⌃ gave no heed; + +but you⌃ set at nothing my counsels, and disregarded my reproofs; + +therefore I also will laugh at your destruction; and I will rejoice against +you when ruin comes upon you: + +yes when dismay suddenly comes upon you, and +your overthrow shall arrive like a tempest; and when tribulation and distress shall come upon you, or when ruin shall come upon you. + +For it shall be that when you⌃ call upon me, I will not listen to you: wicked men shall seek me, but shall not find +me. + +For they hated wisdom, and did not choose the word of the Lord: + +neither would they attend to my counsels, but derided my reproofs. + +Therefore shall they eat the fruits of their own way, and shall be filled with their own ungodliness. + +For because they wronged the simple, they shall be slain; and an inquisition shall ruin the ungodly. + +But he that hearkens to me shall dwell in +1:33 +Gr. hope. See Ps 16. + confidence, and shall rest securely from all evil. + +

+ + +

+My son, if you will receive the utterance of my commandment, and hide it with you; + +your ear shall listen to wisdom; you shall also apply your heart to understanding, and shall apply it to the instruction of your son. + +For if you shall call to wisdom, and utter your voice for understanding; + +and if you shall seek it as silver, and search diligently for it as for treasures; + +then shall you understand the fear of the Lord, and find the knowledge of God. + +For the Lord gives wisdom; and from his presence +come knowledge and understanding, + +and he treasures up salvation for them that walk uprightly: he will protect their way; + +that he may guard the righteous ways: and he will preserve the way of them that fear him. + +Then shall you understand righteousness, and judgment; and shall direct +2:9 +Lit. all good a les. + all your course aright. + +For if wisdom shall come into your understanding, and discernment shall seem pleasing to your soul, + +good counsel shall guard you, and holy understanding shall keep you; + +to deliver you from the evil way, and from the man that speaks nothing faithfully. + +Alas +for those who forsake right paths, to walk in ways of darkness; + +who rejoice in evils, and delight in wicked perverseness; + +whose paths are crooked, and their +2:15 +Lit. wheel tracks. Compare Heb 12:13. + courses winding; + +to remove you far from the straight way, and to estrange you from a righteous purpose. +My son, let not evil counsel overtake you, + + +of her who has forsaken the instruction of her youth, and forgotten the covenant of God. + +For she has fixed her house near death, and +guided her wheels near Hades with the +2:18 +See Heb. + giants. + +None that go by her shall return, neither shall they take hold of right paths, for they are not apprehended of the +2:19 +Singular variation from Heb. + years of life. + +For had they gone in good paths, they would have found the paths of righteousness +2:20 +Gr. smooth. + easy. + +For the upright shall dwell in the earth, and the holy shall be left behind in it. + +The paths of the ungodly shall perish out of the earth, and transgressors shall be driven away from it. + +

+ + +

+My son, forget not my laws; but let your heart keep my words: + +for length of existence, and years of life, and peace, shall they add to you. + +Let not mercy and truth forsake you; but bind them about your neck: + +so shall you find favor: +3:4 +Alex. + 'and write them on the table of your heart.' + and do you +3:4 +See Rom 12:17. + provide things honest in the sight of the Lord, and of men. + +Trust in God with all your heart; and be not exalted in your own wisdom. + +In all your ways acquaint yourself with her, that she may rightly +3:6 +Gr. divide. See 2 Tim 2:13. + direct your paths. + +Be not wise in your own conceit; but fear God, and depart from all evil. + +Then shall there be health to your body, and good keeping to your bones. + +Honor the Lord with your just labors, and give him the first of your fruits of righteousness: + +that your storehouses may be completely filled with corn, and that your presses may burst forth with wine. + + +3:11 +Heb 12. 5, 6. + +My son, despise not the chastening of the Lord; nor faint when you are rebuked of him: + +for whom the Lord loves, he rebukes, and scourges every son whom he receives. + +Blessed is the man who has found wisdom, and the mortal who knows prudence. + +For it is better to traffic for her, than for treasures of gold and silver. + +And she is more valuable than precious stones: no evil thing shall resist her: she is well known to all that approach her, and no precious thing is equal to her in value. + +For length of existence and years of life are in her right hand; and in her left hand are wealth and glory: out of her mouth proceeds righteousness, and she carries law and mercy upon her tongue. + +Her ways are good ways, and all her paths are peaceful. + +She is a tree of life to all that lay hold upon her; and she is +a secure +help to all that stay themselves on her, as on the Lord. + +God by wisdom founded the earth, and by prudence he prepared the heavens. + +By understanding were the depths broken up, and the clouds dropped water. + + +My son, let +them not +3:21 +See Heb 2:1. + pass from +you, but keep my counsel and understanding: + +that your soul may live, and that there may be grace round your neck; and it shall be health to your flesh, and safety to your bones: + +that you may go confidently in peace in all your ways, and that your foot may not stumble. + +For if you +3:24 +Gr. sit down. + rest, you shall be undismayed; and if you sleep, you shall slumber sweetly. + +And you shall not be afraid of alarm coming upon you, neither of approaching attacks of ungodly men. + +For the Lord shall be over all your ways, and shall establish your foot that you be not moved. + +Forbear not to do good to the poor, whenever your hand may have +power to help +him. + +Say not, Come back another time, to-morrow I will give; while you are able to do +him good: for you know not what the next day will bring forth. + +Devise not evil against your friend, living near you and trusting in you. + +Be not ready to quarrel with a man without a cause, lest he do you some harm. + +Procure not the reproaches of bad men, neither do you covet their ways. + +For every transgressor is unclean before the Lord; neither does he sit among the righteous. + +The curse of God is in the houses of the ungodly; but the habitations of the just are blessed. + + +3:34 +See 1 Pet 5:5. + The Lord resists the proud; but he gives grace to the humble. + +The wise shall inherit glory; but the ungodly have exalted +their own dishonor. + +

+ + +

Hear, you⌃ children, the instruction of a father, and attend to know understanding. + +For I give you a good gift; forsake you⌃ not my law. + +For I also was a son obedient to +my father, and loved in the sight of +my mother: + +who spoke and instructed me, +saying, Let our speech be fixed in your heart, keep +our commandments, forget them not: + +and do not neglect the speech of my mouth. +4:5 +Alexandrian codex has: “Get wisdom, get understanding, forget not, nor decline from the words of my mouth.” + + +And forsake it not, and it shall cleave to you: love it, and it shall keep you. + + +4:8 +Lit. dig a trench about her, see Heb. + Secure it, and it shall exalt you: honor it, that it may embrace you; + +that it may give to your head a crown of graces, and may cover you with a crown of delight. + +Hear, +my son, and receive my words; and the years of your life shall be increased, that the resources of your life may be many. + +For I teach you the ways of wisdom; and I cause you to go in right +4:11 +Gr. wheel-tracks, see chap 2:18; Heb 12:13. + paths. + +For when you go, your steps shall not be straitened; and when you run, you shall not be distressed. + +Take hold of my instruction; let it not go, —but keep it for yourself for your life. + +Go not in the ways of the ungodly, neither covet the ways of transgressors. + +In whatever place they shall pitch their camp, go not there; but turn from them, and pass away. + +For they can’t sleep, unless they have done evil: their sleep is taken away, and they rest not. + +For these live upon the bread of ungodliness, and are drunken with wine of transgression. + +But the ways of the righteous shine like light; they go on and shine, until the day +4:18 +Gr. order itself aright. + be fully come. + +But the ways of the ungodly are dark; they know not how they stumble. + + +My son, attend to my speech; and apply your ear to my words: + +that your fountains may not fail you; keep them in +your heart. + +For they are life to those that find them, and +4:22 +Or, healing. + health to all +their flesh. + +Keep your heart with the utmost care; for out of these are the issues of life. + +Remove from you a froward mouth, and put far away from you unjust lips. + +Let your eyes look right on, and let your eyelids assent +to just +things. + +Make straight paths for your feet, and order your ways aright. + +Turn not aside to the right hand nor to the left, but turn away your foot from an evil way: +4:27 +Heb. omits. + +for God knows the ways on the right hand, but those on the left are crooked: and he will make your ways straight, and will guide your steps in peace. + +

+ + +

+My son, attend to my wisdom, and apply your ear to my words; + +that you may keep good understanding, and the discretion of my lips gives you a charge. Give no heed to a worthless woman; + +for honey drops from the lips of a harlot, who for a season pleases your palate: + +but afterwards you will find her +5:4 +Gr. a more bitter thing. + more bitter than gall, and sharper than a two-edged sword. + +For the feet of folly lead those who deal with her down to the grave with death; and her steps are not established. + +For she goes not upon the paths of life; but her ways are slippery, and not easily known. + +Now then, +my son, hear me, and make not my words of none effect. + +Remove your way far from her; draw not near to the doors of her house: + +lest you give away your life to others, and your substance to the merciless: + +lest strangers be filled with your strength, and your labors come into the houses of strangers; + +And you repent at last, when the flesh of your body is consumed, + +and you shall say, How have I hated instruction, and my heart avoided reproofs! + + +5:13 +Alex. omits 'not.' + I heard not the voice of him that instructed me, and taught me, neither did I apply my ear. + +I was almost in all evil in the midst of the congregation and assembly. + +Drink waters out of your own vessels, and out of your own springing wells. + +Let not waters out of your fountain be spilled by you, but let your waters go into your streets. + +Let them be only your own, and let no stranger partake with you. + +Let your fountain of water be +truly your own; and rejoice with the wife of your youth. + +Let +your loving hart and your graceful colt company with you, and let her be considered your own, and be with you at all times; for ravished with her love you shall be greatly increased. + +Be not intimate with a strange woman, neither fold yourself in the arms of a woman not your own. + +For the ways of a man are before the eyes of God, and he looks on all his paths. + +Iniquities ensnare a man, and every one is bound in the chains of his own sins. + +Such a man dies with the uninstructed; and he is cast forth from the abundance of his own substance, and has perished through folly. + +

+ + +

+My son, if you become surety for your friend, you shall deliver your hand to an enemy. + +For a man's own lips become a strong snare to him, and he is caught with the lips of his own mouth. + + +My son, do what I command you, and deliver yourself; for on your friend's account you are come into the power of evil +men: faint not, but stir up even your friend for whom you are become surety. + +Give not sleep to your eyes, nor slumber with your eyelids; + +that you may deliver yourself as a doe out of the toils, and as a bird out of a snare. + +Go to the ant, O sluggard; and see, and emulate his ways, and become wiser than he. + +For whereas he has no husbandry, nor any one to compel him, and is under no master, + +he prepares food for himself in the summer, and lays by abundant store in harvest. Or go to the bee, and learn how diligent she is, and how earnestly she is engaged in her work; whose labors kings and private men use for health, and she is desired and respected by all: though weak in +6:8 +Gr. strength. + body, she is advanced by honouring wisdom. + +How long will you lie, O sluggard? and when will you awake out of sleep? + +You sleep a little, and you rest a little, and you slumber a short +time, and you fold your arms over your breast a little. + +Then poverty comes upon you as an evil traveller, and lack as a swift courier: but if you be diligent, your harvest shall arrive as a fountain, and poverty shall flee away as a bad courier. + +A foolish man and a transgressor goes in ways that are not good. + +And the same winks with the eye, and makes a sign with his foot, and teaches with the beckonings of his fingers. + + +His perverse heart devises evils: at all times such a one causes troubles to a city. + +Therefore his destruction shall come suddenly; overthrow and irretrievable ruin. +6:15 +Comp. Heb. + + +For he rejoices in all things which God hates, and he is ruined by reason of impurity of soul. + +The eye of the haughty, a tongue unjust, hands shedding the blood of the just; + +and a heart devising evil thoughts, and feet hastening to do evil, —are hateful to God. + +An unjust witness kindles falsehoods, and +6:19 +Gr sends forth judgments. + brings on quarrels between brethren. + + +My son, keep the laws of your father, and reject not the ordinances of your mother: + +but bind them upon your soul continually, and hang them as a chain about your neck. + +Whenever you walk, lead this along and let it be with you; that it may talk with you when you wake. + +For the commandment of the law is a lamp and a light; a way of life; reproof also and correction: + +to keep you continually from a married woman, and from the calumny of a strange tongue. + +Let not the desire of beauty overcome you, neither be you caught by your eyes, neither be captivated with her eyelids. + +For the value of a harlot is as much as of one loaf; and a woman hunts for the precious souls of men. + +Shall any one bind fire in his bosom, and not burn his garments? + +or will any one walk on coals of fire, and not burn his feet? + +So is he that goes in to a married woman; he shall not be held guiltless, neither any one that touches her. + +It is not to be wondered at if one should be taken stealing, for he steals that when hungry he may satisfy his soul: + +but if he should be taken, he shall repay sevenfold, and shall deliver himself by giving all his goods. + +But the adulterer through lack of sense procures destruction to his soul. + +He endures both pain and disgrace, and his reproach shall never be wiped off. + +For the soul of her husband is full of jealousy: he will not spare in the day of vengeance. + +He will not forego +his enmity for any ransom: neither will he be reconciled for many gifts. + +

+ + +

+My son, keep my words, and hide with you my commandments. +My son, honor the Lord, and you shall be strong; and fear none but him: + +keep my commandments, and you shall live; and +keep my words as the pupils of +your eyes. + +And bind them on your fingers, and write +them on the table of your heart. + +Say that wisdom is your sister, and gain prudence as an acquaintance for yourself; + +that she may keep you from the strange and wicked woman, if she should assail you with flattering words. + +For she looks from a window out of her house into the streets, at one whom she may see of the senseless ones, a young man void of understanding, + +passing by the corner in the passages +7:7 +Gr. of. + near her house, + +and speaking, in the dark of the evening, + +when there happens +to be the stillness of night and of darkness: + +and the woman meets him having the appearance of a harlot, that causes the hearts of young men to flutter. + +And she is fickle, and debauched, and her feet abide not at home. + +For at one time she wanders without, and at +another time she lies in wait in the streets, at every corner. + +Then she caught him, and kissed him, and with an impudent face said to him, + +I have a peace-offering; today I pay my vows: + +therefore I came forth to meet you, desiring your face; +and I have found you. + +I have spread my bed with sheets, and I have covered it with double tapestry from Egypt. + +I have sprinkled my couch with saffron, and my house with cinnamon. + +Come, and let us enjoy love until the morning; come, and let us embrace in love. + +For my husband is not at home, but is gone on a long journey, + +having taken in his hand a bundle of money: after many days he will return to his house. + +So with much converse she prevailed on him to go astray, and with the snares of her lips forced him from +the right path. + +And he followed her, being gently led on, and +that as an ox is led to the slaughter, and as a dog to bonds, or as a hart shot in the liver with an arrow: + +and he hastens as a bird into a snare, not knowing that he is running for +his life. + +Now then, +my son, listen to me, and attend to the words of my mouth. + +Let not your heart turn aside to her ways +7:25 +Alex. + 'and stray not in her paths.' +: + +for she has wounded and cast down many, and those whom she has slain are innumerable. + +Her house is the +7:27 +Gr. ways. + way of hell, leading down to the chambers of death. + +

+ + +

You shall proclaim wisdom, that understanding may be obedient to you. + +For she is on lofty eminences, and stands in the midst of the ways. + +For she sits by the gates of princes, and sings in the entrances, +saying, + +You, O men, I exhort; and utter my voice to the sons of men. + +O you⌃ simple, +8:5 +For the use of ἄκατος and πανοῦργος in this book, see Proverbs 8. 5 — It is frequently the case in Proverbs that ἄκατος is used in a bad sense, and πανοῦργος in a good one. For ἄκατος see chap 1. 4, 22; 8. 5; 14. 15; 21:11 For πανοῦργος, 12. 16; 13. 1, 16; 14. 8, 15, 18; 15. 5; 21. 11; 22. 3; 27. 12; 28:2. + understand subtlety, and you⌃ that are untaught, imbibe knowledge. + +Listen to me; for I will speak solemn +truths; and will produce right +sayings from my lips. + +For my throat shall meditate truth; and false lips are an abomination before me. + +All the words of my mouth are in righteousness; there is nothing in them wrong or perverse. + +They are all evident to those that understand, and right to those that find knowledge. + +Receive instruction, and not silver; and knowledge rather than tried gold. + +For wisdom is better than precious stones; and no valuable substance is of equal worth with it. + +I wisdom have lived +with counsel and knowledge, and I have called upon understanding. + +The fear of the Lord hates unrighteousness, and insolence, and pride, and the ways of wicked men; and I hate the perverse ways of bad men. + +Counsel and safety are mine; prudence is mine, and strength is mine. + +By me kings reign, and princes decree justice. + +By me nobles become great, and monarchs by me rule over the earth. + +I love those that love me; and they that seek me shall find +me. + +Wealth and glory belong to me; yes, abundant possessions and righteousness. + + +It is better to have my fruit than +to have gold and precious stones; and my produce is better than choice silver. + +I walk in ways of righteousness, and +am conversant with the paths of judgment; + +that I may divide substance to them that love me, and may fill their treasures with good things. If I declare to you the things that daily happen, I will remember +also to recount the things of old. + +The Lord made me the beginning of his ways for his works. + +He established me +8:23 +Gr. before the age. + before time +was in the beginning, before he made the earth: + +even before he made the depths; before the fountains of water came forth: + +before the mountains were settled, and before all hills, he begets me. + +The Lord made countries and uninhabited +tracks, and the highest inhabited parts of the world. + +When he prepared the heaven, I was present with him; and when he +8:27 +Or, marked out. + prepared his throne upon the winds: + +and when he strengthened the clouds above; and when he secured the fountains of the earth: + + +8:29 +The Alexandrine text has: When he set to the sea its bound, and the waters shall not pass his [note: Gr. mouth.] + decree. and when he strengthened the foundations of the earth: + +I was by him, +8:30 +Or, arranging all things. + suiting +myself to him, I was that wherein he took delight; and daily I rejoiced in his presence continually. + +For he rejoiced when he had completed the world, and rejoiced among the children of men. + +Now then, +my son, hear me: blessed is the man who shall listen to me, and the mortal who shall keep my ways; +8:32 +Alexandrine text reads: “And blessed are they that keep my ways.” + + + +8:33 +not in Codex Vaticanus, but Alexandrine codex has this text + +Hear wisdom and be wise, and +8:33 +More lit., do not separate yourselves from it. +be not strangers to it. + + +watching daily at my doors, waiting at the posts of my entrances. + +For my outgoings are the outgoings of life, and +in them is prepared favor from the Lord. + +But they that sin against me act wickedly against their own souls: and they that hate me love death. + +

+ + +

Wisdom has built a house for herself, and set up seven pillars. + +She has killed her beasts; she has mingled her wine in a bowl, and prepared her table. + +She has sent forth her servants, calling with a loud proclamation to the feast, saying, + +Whoso is foolish, let him turn aside to me: and to them that lack understanding she says, + +Come, eat of my bread, and drink wine which I have mingled for you. + +Leave folly, that you⌃ may reign for ever; and seek +9:6 +Alex. + 'that you⌃ may live.' + wisdom, and improve understanding by knowledge. + +He that reproves evil +men shall get dishonor to himself; and he that rebukes an ungodly +man shall disgrace himself. + +Rebuke not evil +men, lest they should hate you: rebuke a wise +man, and he will love you. + +Give an opportunity to a wise +man, and he will be wiser: instruct a just man, and he will receive more +instruction. + +The fear of the Lord is the +9:10 +Or, summit. + beginning of wisdom, and the counsel of saints is understanding: for to know the law is +the character of a sound mind. + +For in this way you shall live long, and years of your life shall be added to you. + +Son, if you be wise for yourself, you shall also be wise for your neighbors; and if you should prove wicked, you alone will bear the evil. +9:12 +Heb. — to beginning of verse 13. + He that stays himself upon falsehoods, attempts to rule the winds, and the same will pursue birds in their fight: for he has forsaken the ways of his own vineyard, and he has caused the axles of his own husbandry to go astray; and he goes through a dry desert, and a +land appointed to drought, and he gathers barrenness with his hands. + +A foolish and bold woman, who knows not modesty, comes to lack a morsel. + +She sits at the doors of her house, on a seat openly in the streets, + +calling to passers by, and to those that are going right on their ways; + + +saying, Whoso is most senseless of you, let him turn aside to me; and I exhort those that lack prudence, saying, + +Take and enjoy secret bread, and the sweet water of theft. + +But he knows that mighty men die by her, and he falls in with a snare of hell. But hasten away, delay not in the place, neither fix your eye upon her: for thus shall you go through strange water; but do you abstain from strange water, and drink not of a strange fountain, that you may live long, and years of life may be added to you. + +

+ + +

A wise son makes +his father glad: but a foolish son is a grief to his mother. + +Treasures shall not profit the lawless: but righteousness shall deliver from death. + +The Lord will not famish a righteous soul: but he will overthrow the life of the ungodly. + +Poverty brings a man low: but the hands of the vigorous make rich. A son who is instructed shall be wise, and shall use the fool for a servant. + +A wise son is saved from heat: but a lawless son is blighted of the winds in harvest. + +The blessing of the Lord is upon the head of the just: but untimely grief shall cover the mouth of the ungodly. + +The memory of the just is praised; but the name of the ungodly +man is extinguished. + +A wise man in heart will receive commandments; but he that is unguarded in his lips shall be overthrown in his perverseness. + +He that walks simply, walks confidently; but he that perverts his ways shall be known. + +He that winks with his eyes deceitfully, procures griefs for men; but he that reproves boldly is a peacemaker. + + +There is a fountain of life in the hand of a righteous man; but destruction shall cover the mouth of the ungodly. + +Hatred stirs up strife; but affection covers all that do not love strife. + +He that brings forth wisdom from his lips smites the +10:13 +Lit. heartless man, Hebraism. + fool with a rod. + +The wise will hide discretion; but the mouth of the hasty draws near to ruin. + +The wealth of rich men is a strong city; but poverty is the ruin of the ungodly. + +The works of the righteous produce life; but the fruits of the ungodly +produce sins. + +Instruction keeps the right ways of life; but instruction unchastened goes astray. + +Righteous lips cover enmity; but they that utter railings are most foolish. + +By a multitude of words you shall not escape sin; but if you refrain your lips you will be prudent. + +The tongue of the just is tried silver; but the heart of the ungodly shall fail. + +The lips of the righteous know sublime +truths: but the foolish die in lack. + +The blessing of the Lord is upon the head of the righteous; it enriches +him, and grief of heart shall not be added to +it. + +A fool does mischief in +10:23 +Gr. laughter. + sport; but wisdom brings forth prudence for a man. + +The ungodly is engulfed in destruction; but the desire of the righteous is acceptable. + +When the storm passes by, the ungodly vanishes away; but the righteous turns aside and escapes for ever. + +As a sour grape is hurtful to the teeth, and smoke to the eyes, so iniquity hurts those that practise it. + +The fear of the Lord adds +length of days: but the years of the ungodly shall be shortened. + +Joy rests long with the righteous: but the hope of the ungodly shall perish. + +The fear of the Lord is a strong hold of the saints: but ruin +comes to them that work wickedness. + +The righteous shall never fail: but the ungodly shall not dwell in the earth. + +The mouth of the righteous drops wisdom: but the tongue of the unjust shall perish. + +The lips of just men drop grace: but the mouth of the ungodly is perverse. + +

+ + +

False balances are an abomination before the Lord: but a just weight is acceptable to him. + +Wherever pride enters, there will be also disgrace: but the mouth of the lowly meditates wisdom. + +11:3 +the Alexandrine text reads: “The integrity of the upright shall guide them, but the overthrow of the rebellious shall spoil them.” + When a just man dies he +11:3 +Comp. Heb. + leaves regret: but the destruction of the ungodly is speedy, and causes joy. + +11:4 +there is no verse 4. The Alexandrine text has this. + +Possessions will not profit in a day of wrath, but righteousness will deliver from death. + + +Righteousness +11:5 +Gr. right divides. + traces out blameless paths: but ungodliness encounters unjust dealing. + +The righteousness of upright men delivers them: but transgressors are caught in their own destruction. + +At the death of a just man his hope does not perish: but the boast of the ungodly perishes. + +A righteous man escapes from a snare, and the ungodly man is delivered up in his place. + +In the mouth of ungodly men is a snare to citizens: but the understanding of righteous men is prosperous. + +In the prosperity of righteous men a city prospers: +11:10 +The Alexandrine text reads: “[note - Part of verse 10.]— but at the destruction of the wicked there is exultation.” + but by the mouth of ungodly men it is overthrown. + +11:11 +there is no verse 11, but the Alexandrine text reads. + +At the blessing of the upright a city shall be exalted. + + +A man void of understanding sneers at +his fellow citizens: but a sensible man is quiet. + +A double-tongued man discloses the +secret counsels of an assembly: but he that is +11:13 +See chap 20:27. + faithful in spirit conceals matters. + +They that have no +11:14 +Or, governance. + guidance fall like leaves: but in much counsel there is safety. + +A bad man does harm wherever he meets a just man: and he hates the sound of safety. + +A gracious wife +11:16 +Gr. raises. + brings glory to her husband: but a woman hating righteousness is a theme of dishonor. The slothful come to lack: but the +11:16 +Gr. manly. + diligent support themselves with wealth. + +A merciful man does good to his own soul: but the merciless destroys his own body. + +An ungodly man performs unrighteous works: but the seed of the righteous is a reward of truth. + +A righteous son is born for life: but the persecution of the ungodly +ends in death. + +Perverse ways are an abomination to the Lord: but all they that are blameless in their ways are acceptable to him. + +He that unjustly strikes hands shall not be unpunished: but he that sows righteousness he shall receive a faithful reward. + +As an ornament in a swine's snout, so is beauty to an ill-minded woman. + +All the desire of the righteous is good: but the hope of the ungodly shall perish. + +There are +some who scatter their own, and make it more: and there are +some also who gather, +yet have less. +11:24 +Gr. diminished. + + +Every sincere soul is blessed: but a passionate man is not graceful. + +May he that hoards corn leave it to the nation: but blessing be on the head of him that gives +it. + +He that devises good +counsels seeks good favor: but +as for him that seeks after evil, +evil shall overtake him. + +He that trusts in wealth shall fall; but he that helps righteous men shall rise. +11:28 +See 1 Tim 5:8. + + +He that deals not graciously with his own house shall inherit the wind; and the fool shall be servant to the wise man. + +Out of the fruit of righteousness grows a tree of life; but the souls of transgressors are cut off before their time. + +11:31 +See 1 Pet. + If the righteous scarcely be saved, where shall the ungodly and the sinner appear? + +

+ + +

He that loves instruction loves sense, but he that hates reproofs is a fool. + + +12:2 +Or. better is he, etc. + He that has found favor with the Lord +is made better; but a transgressor shall be passed over in silence. + +A man shall not prosper by wickedness; but the roots of the righteous shall not be taken up. + +A virtuous woman is a crown to her husband; but as a worm in wood, so a bad woman destroys her husband. + +The thoughts of the righteous +are true judgments; but ungodly men devise deceits. + +The words of ungodly men are crafty; but the mouth of the upright shall deliver them. + +When the ungodly is overthrown, he vanishes away; but the houses of the just remain. + +The mouth of an understanding +man is praised by a man; but he that is dull of heart is had in derision. + +Better is a man in dishonor serving himself, than one honouring himself and lacking bread. + +A righteous man has pity for the lives of his cattle; but the bowels of the ungodly are unmerciful. + +He that tills his own land shall be satisfied with bread; but they that pursue vanities are void of understanding. He that enjoys himself in banquets of wine, shall leave dishonor in his own strong holds. + +The desires of the ungodly are evil; but the roots of the godly are firmly set. + +For the sin of +his lips a sinner falls into snare; but a righteous man escapes from them. He whose looks are gentle shall be pitied, but he that contends in the gates will afflict souls. + +The soul of a man shall be filled with good from the fruits of his mouth; and the recompence of his lips shall be given to him. + +The ways of fools are right in their own eyes; but a wise man hearkens to counsels. + +A fool declares his wrath the same day; but a prudent man hides his own disgrace. + +A righteous man declares the open truth; but an unjust witness is deceitful. + +Some wound as they speak, +like swords; but the tongues of the wise heal. + +True lips establish testimony; but a hasty witness has an unjust tongue. + + +There is deceit in the heart of him that imagines evil; but they that love peace shall rejoice. + +No injustice will please a just man; but the ungodly will be filled with mischief. + +Lying lips are a abomination to the Lord; but he that deals faithfully is accepted with him. + +An understanding man is a throne of wisdom; but the heart of fools shall meet with curses. + +The hand of chosen men shall easily obtain rule; but the deceitful shall be for a prey. + +A terrible word troubles the heart of a righteous man; but a good message rejoices him. + +A just arbitrator shall be his own friend; but mischief shall pursue sinners; and the way of ungodly men shall lead them astray. + +A deceitful man shall catch no game; but a +12:27 +Gr. pure. + blameless man is a precious possession. + +In the ways of righteousness is life; but the ways of those that remember injuries +lead to death. + +

+ + +

A wise son is obedient to his father: but a disobedient son will be destroyed. + +A good +man shall eat of the fruits of righteousness: but the lives of transgressors shall perish before their time. + +He that keeps his own mouth keeps his own life: but he that is hasty with his lips shall bring terror upon himself. + +Every slothful man desires, but the hands of the active are diligent. + +A righteous man hates an unjust word: but an ungodly man is ashamed, and will have no confidence. +13:5 +Alexandrine text reads: “Righteousness preserves the simple in the way, but sin makes worthless the ungodly.” + + +There are +some who, having nothing, enrich themselves: and there are +some who bring themselves down in +the midst of much wealth. + +A man's own wealth is the ransom of his life: but the poor +13:8 +Or, comes not in for. + endures not threatening. + +The righteous always have light: but the light of the ungodly is quenched. Crafty souls go astray in sins: but just men pity, and are merciful. + +A bad man does evil with insolence: but they that are judges of themselves are wise. + +Wealth gotten hastily with iniquity is diminished: but he that gathers for himself with godliness shall be increased. The righteous is merciful, and lends. + +Better is he that begins to help heartily, than he that promises and leads +another to hope: for a good desire is a tree of life. + +He that slights a matter shall be slighted of it: but he that fears the commandment has health +of soul. To a crafty son there shall be nothing good: but a wise servant shall have prosperous doings, and his way shall be directed aright. + +The law of the wise is fountain of life: but the man void of understanding shall die by a snare. + +Sound discretion gives favor, and to know the law is the part of a sound understanding: but the ways of scorners tend to destruction. + +Every prudent man acts with knowledge: but the fool displays his own mischief. + +A rash king shall fall into mischief: but a wise messenger shall deliver him. + +Instruction removes poverty and disgrace: but he that attends to reproofs shall be honored. + +The desires of the godly gladden the soul, but the works of the ungodly are far from knowledge. + +If you walk with wise men you shall be wise: but he that walks with fools shall be known. + +Evil shall pursue sinners; but good shall overtake the righteous. + +A good man shall inherit children's children; and the wealth of ungodly men is laid up for the just. + +The righteous shall spend many years in wealth: but the unrighteous shall perish suddenly. + +He that spares the rod hates his son: but he that loves, carefully chastens +him. + +A just +man eats and satisfies his soul: but the souls of the ungodly are in lack. + +

+ + +

Wise women build houses: but a foolish one digs +hers down with her hands. + +He that walks uprightly fears the Lord; but he that is perverse in his ways shall be dishonored. + +Out of the mouth of fools +comes a rod of pride; but the lips of the wise preserve them. + +Where no oxen are, the cribs are clean; but where there is abundant produce, the strength of the ox is apparent. + +A faithful witness does not lie; but an unjust witness kindles falsehoods. + +You shall seek wisdom with bad men, and shall not find it; but discretion is easily available with the prudent. + +All things are adverse to a foolish man; but wise lips are the weapons of discretion. + +The wisdom of the prudent will understand their ways; but the folly of fools leads astray. + +The houses of transgressors +14:9 +Gr. shall owe. See Job 6:21. + will need purification; but the houses of the just are acceptable. + + +If a man's +14:10 +Or, heart be sensitive. + mind is intelligent, his soul is sorrowful; and when he rejoices, he has no fellowship with pride. + +The houses of ungodly men shall be utterly destroyed; but the tabernacles of them that walk uprightly shall stand. + +There is a way which seems to be right with men, but the ends of it +14:12 +Gr. come. + reach to the depths of hell. + +Grief mingles not with mirth; and joy in the end comes to grief. + +A +14:14 +Lit. bold-hearted. + stout-hearted +man shall be filled with his own ways; and a good man with his own thoughts. + +The simple believes every word: but the prudent man betakes himself to afterthought. + +A wise man fears, and departs from evil; but the fool trusts in himself, and joins himself with the transgressor. + +A passionate man acts inconsiderately; but a sensible man bears up under many things. + +Fools shall have mischief for their portion; but the prudent shall take fast hold of understanding. + +Evil men shall fall before the good; and the ungodly shall attend at the gates of the righteous. + +Friends will hate poor friends; but the friends of the rich are many. + +He that dishonors the needy sins: but he that has pity on the poor is most blessed. + +They that go astray devise evils: but the good devise mercy and truth. The framers of evil do not understand mercy and truth: but compassion and faithfulness are with the framers of good. + +With every one +who is careful there is abundance: but the pleasure-taking and indolent shall be in lack. + +A prudent man is the crown of the wise: but the occupation of fools is evil. + +A faithful witness shall deliver a soul from evil: but a deceitful +man kindles falsehoods. + +In the fear of the Lord is strong confidence: and he leaves his children a support. + +The commandment of the Lord is a fountain of life; and it causes +men to turn aside from the snare of death. + +In a populous nation is the glory of a king: but in the failure of people is the ruin of a prince. + +A man slow to wrath abounds in wisdom: but a man of impatient spirit is very foolish. + +A meek-spirited man is a healer of the heart: but a sensitive heart is a corruption of the bones. + +He that oppresses the needy provokes his Maker: but he that honors him has pity upon the poor. + +The ungodly shall be driven away in his wickedness: but +14:32 +Comp. Heb. + he who is secure in his own holiness is just. + +There is wisdom in the good heart of a man: but in the heart of fools it is not discerned. + +Righteousness exalts a nation: but sins diminish tribes. + +An understanding servant is acceptable to a king; and by his good behavior he removes disgrace. + +

+ + +

Anger slays even wise men; yet a submissive answer turns away wrath: but a grievous word stirs up anger. + +The tongue of the wise knows what is good: but the mouth of the foolish tells out evil things. + +The eyes of the Lord behold both the evil and the good in every place. + + +15:4 +Gr. the healing of the tongue. + The wholesome tongue is a tree of life, and he that keeps it shall be filled with +15:4 +Gr. spirit. + understanding. + +A fool scorns his father's instruction; but he that keeps his commandments is more prudent. In abounding righteousness is great strength: but the ungodly shall +15:5 +Gr. with the roots wholly torn up. + utterly perish from the earth. + +In the houses of the righteous is much strength: but the fruits of the ungodly shall perish. + +The lips of the wise are bound by discretion: but the hearts of the foolish are not safe. + +The sacrifices of the ungodly are an abomination to the Lord; but the prayers of them that walk honestly are acceptable with him. + +The ways of an ungodly +man are an abomination to the Lord; but he loves those that follow after righteousness. + +The instruction of the simple is known by them that pass by; but they that hate reproofs die disgracefully. + +Hell and destruction are manifest to the Lord; how shall not also be the hearts of men? + +An uninstructed person will not love those that reprove him; neither will he associate with the wise. + +When the heart rejoices the countenance is cheerful; but when it is in sorrow, +the countenance is sad. + +An upright heart seeks discretion; but the mouth of the uninstructed will experience evils. + +The eyes of the wicked are always looking for evil things; but the good are always quiet. + +Better is a small portion with the fear of the Lord, than great treasures without the fear +of the Lord. + +Better is an entertainment of herbs with friendliness and kindness, than a feast of calves, with enmity. + +A passionate man stirs up strife; but +he that is slow to anger appeases even a +15:18 +Gr. future. + rising one. A man slow to anger will extinguish quarrels; but an ungodly man rather stirs +them up. + +The ways of sluggards are strewn with thorns; but those of the diligent are made smooth. + +A wise son gladdens +his father; but a foolish son sneers at his mother. + +The ways of a foolish man are void of sense; but a wise man proceeds on his way aright. + +They that honor not councils put off deliberation; but counsel abides in the hearts of counselors. + +A bad man will by no means +15:23 +Or, obey. + attend to counsel; neither will he say anything seasonable, or good for the common +weal. + +The thoughts of the wise are ways of life, that he may turn aside and escape from hell. + +The Lord pulls down the houses of scorners; but he establishes the border of the widow. + +An unrighteous thought is abomination to the Lord; but the sayings of the pure are held in honor. + +A receiver of bribes destroys himself; but he that hates the receiving of bribes is safe. +By alms and by faithful dealings +15:27 +Observe, this is not in the Heb. nor any such doctrine. +sins are purged away; but by the fear of the Lord every one departs from evil. + +The hearts of the righteous meditate faithfulness; but the mouth of the ungodly answers evil things. The ways of righteous men are acceptable with the Lord; and through them even enemies become friends. + +God is far from the ungodly; but he hearkens to the prayers of the righteous. Better are small receipts with righteousness, than abundant fruits with unrighteousness. Let the heart of a man think justly, that his steps may be rightly ordered of God. The eye that sees rightly rejoices the heart; and a good report fattens the bones. + +He that rejects instruction hates himself; but he that mind reproofs loves his soul. + +The fear of the Lord is instruction and wisdom; and the highest honor will correspond therewith. + +

+ + +

All the works of the humble +man are manifest with God; but the ungodly shall perish in an evil day. + +Every one that is proud in heart is unclean before God, and he that unjustly strikes hands with hand shall not be held guiltless. The beginning of a good way is to do justly; and it is more acceptable with God than to offer sacrifices. He that seeks the Lord shall find knowledge with righteousness: and they that rightly seek him shall find peace. All of the works of the Lord +are done with righteousness; and the ungodly +man is kept for the evil day. + + +There is an oracle upon the lips of a king; and his mouth shall not err in judgment. + +The poise of the balance is righteousness with the Lord; and his works are righteous measures. + +An evil-doer is an abomination to a king; for the throne of rule is established by righteousness. + +Righteous lips are acceptable to a king; and he loves right words. + +The anger of a king is a messenger of death; but a wise man will pacify him. + +The son of a king is in the light of life; and they that are in favor with him are as a cloud of latter rain. + +The +16:16 +Or, Abodes. Comp. Heb. See Lu 13:35. + brood of wisdom is more to be chosen than gold, and the brood of prudence more to be chosen than silver. + +The paths of life turn aside from evil; and the ways of righteousness are length of life. He that receives instruction shall be in prosperity; and he that regards reproofs shall be made wise. He that keeps his ways, preserves his own soul; and he that loves his life will spare his mouth. + +Pride goes before destruction, and folly before a fall. + +Better is a meek-spirited +man with +16:19 +Or, affliction. + lowliness, than one who divides spoils with the proud. + + +He who is skillful in business finds good: but he that trusts in God is most blessed. + + +Men call the wise and understanding evil: but they that are pleasing in speech shall hear more. + +Understanding is a fountain of life to its possessors; but the instruction of fools is evil. + +The heart of the wise will discern the +things which proceed from his own mouth; and on his lips he will wear knowledge. + +Good words are honeycombs, and the sweetness thereof is a healing of the soul. + +There are ways that seem to be right to a man, but the end of them looks to the depth of hell. + +A man who labors, labors for himself, and drives from +him his own ruin. + +But the perverse bears destruction upon his own mouth: a foolish man digs up evil for himself, and treasures fire on his own lips. + +A perverse man spreads mischief, and will kindle a torch of deceit with mischiefs; and he separates friends. + +A transgressor tries +to ensnare friends, and leads them in ways +that are not good. + +And the man that fixes his eyes devises perverse things, and marks out with his lips all evil: he is a furnace of wickedness. + +Old age is a crown of +16:31 +Gr. boasting. + honor, but it is found in the ways of righteousness. + +A man slow to anger is better than a strong +man; and he that governs +his temper better than he that takes a city. + +All +evils come upon the ungodly into +their bosoms; but all righteous things +come of the Lord. + +

+ + +

Better is a morsel with pleasure in peace, than a house +full of many good things and unjust sacrifices, with strife. + +A wise servant shall have rule over foolish masters, and shall divide portions among brethren. + +As silver and gold are tried in a furnace, so are choice hearts with the Lord. + +A bad man hearkens to the tongue of transgressors: but a righteous man attends not to false lips. + +He that laughs at the poor provokes him that made him; and he that rejoices at the destruction of another shall not be held guiltless: but he that has compassion shall find mercy. + +Children's children are the crown of old men; and their fathers are the glory of children. The faithful has the whole world full of wealth; but the faithless not even a farthing. + +Faithful lips will not suit a fool; nor lying lips a just man. + +Instruction is to them that use it a gracious reward; and wherever it may turn, it shall prosper. + +He that conceals injuries seeks love; but he that hates to hide +them separates friends and +17:9 +Comp. Heb. + kindred. + +A threat breaks down the heart of a wise man; but a fool, though scourged, understands not. + +Every bad man stirs up strifes: but the Lord will send out against him an unmerciful messenger. + +Care may befall a man of understanding; but fools will meditate evils. + +Whoso rewards evil for good, evil shall not be removed from his house. + +Rightful rule gives power to words; but sedition and strife precede poverty. + +He that pronounces the unjust just, and the just unjust, is unclean and abominable with God. + +Why has the fool wealth? for a senseless man will not be able to purchase wisdom. He that exalts his own house seeks ruin; and he that turns aside from instruction shall fall into mischief. + +Have you a friend for every time, and let brethren be useful in distress; for on this account are they born. + +A foolish man applauds and rejoices over himself, +as he also that becomes surety would make himself responsible for his own friends. + +A lover of sin rejoices in strifes; + +and the hard-hearted man +17:20 +Or, meets not with good men. + comes not in for good. A man of a changeful tongue will fall into mischiefs; + +and the heart of a fool is grief to its possessor. A father rejoices not over an uninstructed son; but a wise son gladdens his mother. + +A glad heart promotes health; but the bones of a sorrowful man dry up. + +The ways of a man who unjustly receives gifts in +his bosom do not prosper; and an ungodly man perverts the ways of righteousness. + +The countenance of a wise man is sensible; but the eyes of a fool +go to the ends of the earth. + +A foolish son +is a cause of anger to his father, and grief to her that bore him. + + +It is not right to punish a righteous man, nor +is it holy to plot against righteous princes. + +He that forbears to utter a hard word is discreet, and a patient man is wise. + +Wisdom shall be imputed to a fool who asks after wisdom: and he who holds his peace shall seem to be sensible. + +

+ + +

A man who wishes to separate from friends seeks excuses; but at all times he will be liable to reproach. + +A senseless man feels no need of wisdom, for he is rather led by folly. + +When an ungodly man comes into a depth of evils, he despises +them; but dishonor and reproach come upon him. + +A word in the heart of a man is a deep water, and a river and fountain of life spring forth. + + +It is not good to accept the person of the ungodly, nor +is it holy to pervert justice in judgment. + +The lips of a fool bring +him into troubles, and his bold mouth calls for death. + +A fool's mouth is ruin to him, and his lips are a snare to his soul. + +Fear casts down the slothful; and the souls of the effeminate shall hunger. + +A man who helps not himself by his labor is brother of him that ruins himself. + +The name of the Lord is of great strength; and the righteous +18:10 +Gr. having run. + running to it are exalted. + +The wealth of a rich man is a strong city; and its glory casts a broad shadow. + +Before ruin a man's heart is exalted, and before honor it is humble. + +Whoso answers a word before he hears +a cause, it is folly and reproach to him. + +A wise servant calms a man's anger; but who can endure a faint-hearted man? + +The heart of the sensible +man purchases discretion; and the ears of the wise seek understanding. + +A man's gift +18:16 +See Ps 188. (119) 32. + enlarges him, and seats him among princes. + +A righteous man accuses himself at the beginning of his speech, but +18:17 +Comp. Mark 14. ult. and margin, with 2 Tim 4. 14-17. + when he has entered upon the attack, the adversary is reproved. + +A silent +man quells strifes, and determines between great powers. + +A brother helped by a brother is as a strong and high city; and is +as strong as a +well-founded palace. + +A man fills his belly with the fruits of his mouth; and he shall be satisfied with the fruits of his lips. + +Life and death are in the power of the tongue; and they that rule it shall eat the fruits thereof. + +He that has found a good wife has found favours, and has received gladness from God. +18:22 +Heb. omits this verse. + +He that puts away a good wife, puts away a +18:22 +Gr. plural. +good thing, and he that keeps an adulteress is foolish and ungodly. + +

+ + +

The folly of a man spoils his ways: and he blames God in his heart. + +Wealth acquires many friends; but the poor is deserted even of the friend he has. + +A false witness shall not be unpunished, and he that accuses unjustly shall not escape. + +Many court the favor of kings; but every bad man becomes a reproach to +another man. + +Every one who hates +his poor brother shall also be far from friendship. Good understanding will draw near to them that know it, and a sensible man will find it. He that does much harm perfects mischief; and he that used provoking words shall not escape. + +He that procures wisdom loves himself; and he that keeps wisdom shall find good. + +A false witness shall not be unpunished; and whoever shall kindle mischief shall perish by it. + +Delight does not suit a fool, nor +is it seemly if a servant should begin to rule with haughtiness. + +A merciful man is longsuffering; and his +19:11 +Gr. boasting comes upon. + triumph overtakes transgressors. + +The threatening of a king is like the roaring of a lion; but as dew on the grass, so is his favor. + +A foolish son is a disgrace to his father: vows +paid out of the hire of a harlot are not pure. + +Fathers divide house and substance to +their children: but a wife is suited to a man by the Lord. + + +19:15 +Or, keeps down. + Cowardice possesses the effeminate +man; and the soul of the sluggard shall hunger. + +He that keeps the commandment keeps his own soul; but he that despises his ways shall perish. + +He that has pity on the poor lends to the Lord; and he will recompense to him according to his gift. + +Chasten your son, for so he shall be hopeful; and be not exalted in your soul to haughtiness. + +A malicious man shall be severely punished, and if he commit injury, he shall also lose his life. + +Hear, son, the instruction of your father, that you may be wise at your latter end. + + +There are many thoughts in a man's heart; but the counsel of the Lord abides for ever. + +Mercy is a fruit to a man: and a poor man is better than a rich liar. + +The fear of the Lord is life to a man: +19:23 +Or, 'but he that is without fear (sc. of the Lord) shall dwell' etc. + and he shall lodge without fear in places where knowledge is not seen. + +He that unjustly hides his hands in his bosom, will not even +bring them up to his mouth. + +When a pestilent character is scourged, a simple man is made wiser: and if you reprove a wise man, he will understand discretion. + +He that dishonors his father, and drives away his mother, shall be disgraced and shall be exposed to reproach. + +A son who ceases to attend to the instruction of a father will cherish evil designs. + +He that becomes surety for a foolish child will despise the ordinance: and the mouth of ungodly men shall drink down judgment. + +Scourges are preparing for the intemperate, and punishments likewise for fools. + +

+ + +

Wine is an intemperate thing, and strong drink full of violence: but every fool is entangled with them. + +The threat of a king differs not from the rage of a lion; and he that provokes him sins against his own soul. + + +It is a glory to a man to turn aside from railing; but every fool is entangled with such matters. + +A sluggard when reproached is not ashamed: so also he who borrows corn in harvest. + +Counsel in a man's heart is deep water; but a prudent man will draw it out. + +A man is valuable, and a merciful man precious: but +it is hard to find a faithful man. + +He that walks blameless in justice, shall leave his children blessed. + +Whenever a righteous king sits on the throne, no evil thing can stand before his presence. + +Who will boast that he has a pure heart? or who will boldly say that he is pure from sins? + +A large and small weight, and +20:10 +Gr. double. + various measures, are even both of them unclean before the Lord; and +so is he that makes them. + +A youth +when in company with a godly man, will be restrained in his devices, and +then his way will be straight. + +The ear hears, and the eye sees: even both of them are the Lord's work. + +Love not to speak ill, lest you be cut off: open your eyes, and be filled with bread. + +The lamp of him that reviles father or mother shall be put out, and his eyeballs shall see darkness. + +A portion hastily gotten at first shall not be blessed in the end. + +Say not, I will avenge myself on my enemy; but wait on the Lord, that he may help you. + +A double weight is an abomination to the Lord; and a deceitful balance is not good in his sight. + +A man's goings are directed of the Lord: how then can a mortal understand his ways? + +It is a snare to a man hastily to consecrate some of his own property: for +in that case repentance comes after vowing. + +A wise king utterly crushes the ungodly, and will bring a wheel upon them. + +The +20:27 +Comp. chap 11:13. + spirit of man is a light of the Lord, who searches the inmost parts of the belly. + +Mercy and truth are a guard to a king, and will surround his throne with righteousness. + +Wisdom is an ornament to young men; and grey +hairs are the glory of old men. + +Bruises and contusions befall bad men; and plagues +shall come in the inward parts of +their belly. + +

+ + +

As a rush of water, so is the king's heart in God's hand: he turns it wherever he may desire to point out. + +Every man seems to himself righteous; but the Lord directs the hearts. + +To do justly and to speak truth, are more pleasing to God than the blood of sacrifices. + +A high-minded man is stout-hearted in +his pride; and the lamp of the wicked is sin. + +He that gathers treasures with a lying tongue pursues vanity +on to the snares of death. + +Destruction shall lodge with the ungodly; for they refuse to do justly. + +To the froward God sends froward ways; for his works are pure and right. + + +It is better to dwell in a corner +21:9 +Gr. in the open air. + on the house-top, than in plastered +rooms with unrighteousness, and in an open house. + +The soul of the ungodly shall not be pitied by any man. + +When an intemperate man is punished the simple becomes wiser: and a wise man understanding will receive knowledge. + +A righteous man understands the hearts of the ungodly: and despises the ungodly for their wickedness. + +He that stops his ears from hearing the poor, himself also shall cry, and there shall be none to hear +him. + +A secret gift calms anger: but he that forbears to give stirs up strong wrath. + + +It is the joy of the righteous to do judgment: but a holy +man is abominable with evil-doers. + +A man that wanders out of the way of righteousness, shall rest in the congregation of +21:16 +Heb. Rephaim. giants. + +A poor man loves mirth, loving wine and oil in abundance; + +and a transgressor is the +21:18 +Gr. `off-scouring;' perhaps `ransom,' q. d. that which cleans. + abomination of a righteous man. + + +It is better to dwell in a wilderness than with a quarrelsome and talkative and passionate woman. + +A desirable treasure will rest on the mouth of the wise; but foolish men will swallow it up. + +The way of righteousness and mercy will find life and glory. + +A wise man assaults strong cities, and demolishes the fortress in which the ungodly trusted. + +He that keeps his mouth and his tongue keeps his soul from trouble. + +A bold and self-willed and insolent +man is called a pest: and he that remembers injuries is a transgressor. + +Desires kill the sluggard; for his hands do not choose to do anything. + +An ungodly man entertains evil desires all the day: but the righteous is unsparingly merciful and compassionate. + +The sacrifices of the ungodly are abomination to the Lord, for they offer them wickedly. +21:27 +Or, unlawfully. + + +A false witness shall perish; but an obedient man will speak cautiously. + +An ungodly man +21:29 +See Alex. ungodly. + impudently withstands with his face; but the upright man himself understands his ways. + +There is no wisdom, there is no courage, there is no counsel against the ungodly. + +A horse is prepared for the day of battle; but help is of the Lord. + +

+ + +

A fair name is better than much wealth, and good favor is above silver and gold. + +The rich and the poor meet together; but the Lord made them both. + +An intelligent man seeing a bad man severely punished is himself instructed, but fools pass by and are punished. + +The fear of the Lord is the offspring of wisdom, and wealth, and glory, and life. + +Thistles and snares are in perverse ways; but he that keeps his soul will refrain from them. + +The rich will rule over the poor, and servants will lend to their own masters. + +He that sows wickedness shall reap troubles; and shall fully receive the punishment of his deeds. +22:8 +See 2 Cor 9:7. Compare Heb. + God loves a cheerful and liberal man; but +a man shall fully prove the folly of his works. + +He that has pity on the poor shall himself be maintained; for he has given of his own bread to the poor. He that gives liberally secures victory an honor; but he takes away the life of them that posses +them. + +Cast out a pestilent person from the council, and strife shall go out with him; for when he sits in the council he dishonors all. + +The Lord loves holy hearts, and all blameless persons are acceptable with him: a king rules with his lips. + +But the eyes of the Lord preserve discretion; but the transgressor despises +wise words. + +The sluggard makes excuses, and says, +There is a lion in the ways, and murderers in the streets. + +The mouth of a transgressor is a deep pit; and he that is hated of the Lord shall fall into it. Evil ways are before a man, and he does not like to turn away from them; but it is needful to turn aside from a perverse and bad way. + +Folly is attached to the heart of a child, but the rod and instruction are +then far from him. + +He that oppresses the poor, increases his own substance, yet gives to the rich so as to make it less. + +Incline your ear to the words of wise men: hear also my word, and apply your heart, + +that you may know that they are good: and if you lay them to heart, they shall also gladden you on your lips. + +That your hope may be in the Lord, and he may make your way known to you. + +And do you too repeatedly record them for yourself on the table of your heart, for counsel and knowledge. + +I therefore teach you truth, and knowledge good to hear; that you may answer words of truth to them that +22:21 +See 1 Peter 3:15. + question you. + +Do no violence to the poor, for he is needy: neither dishonor the helpless +man in the gates. + +For the Lord will plead his cause, and you shall deliver your soul in safety. + +Be not companion to a furious man; neither lodge with a passionate man: + +lest you learn of his ways, and get snares to your soul. + +Become not surety from respect of a man's person. + +For if those have not whence to give compensation, they will take the bed +that is under you. + +Remove not the old +22:28 +Gr. eternal. + landmarks, which your fathers placed. + +It is fit that an observant man and +one diligent in his business should attend on kings, and not attend on slothful men. + +

+ + +

If you sit to sup at the table of a prince, consider attentively the things set before you: + +and apply your hand, knowing that it behoves you to prepare such +meats: but if you are very insatiable, + +desire not his provisions; for these belong to a false life. + +If you are poor, measure not yourself with a rich man; but refrain yourself in your wisdom. + +If you should fix your eye upon him, he will disappear; for wings like an eagle's are prepared for him, and he returns to the house of his master. + +Sup not with an envious man, neither desire you his meats: + +so he eats and drinks as if any one should swallow a hair, and do not bring him in to yourself, nor eat your morsel with him: + +for he will vomit it up, and spoil your fair words. + +Say nothing in the ears of a fool, lest at any time he sneer at your wise words. + +Remove not the ancient landmarks; and enter not upon the possession of the fatherless: + +for the Lord is their redeemer; he is mighty, and will plead their cause with you. + +Apply your heart to instruction, and prepare your ears for words of discretion. + +Refrain not from chastening a child; for if you beat him with the rod, he shall not die. + +For you shall beat him with the rod, and shall deliver his soul from death. + +Son, if your heart be wise, you shall also gladden my heart; + +and your lips shall converse with my lips, if they be right. + +Let not your heart envy sinners: but be you in the fear of the Lord all the day. + +For if you should keep these things, you shall have posterity; and your hope shall not be removed. + +Hear, +my son, and be wise, and rightly direct the thoughts of your heart. + +Be not a wine-bibber, neither continue long at feasts, and purchases of flesh: + +for every drunkard and whoremonger shall be poor; and every sluggard shall clothe himself with tatters and ragged garments. + +Listen, +my son, to your father which begot you, and despise not +your mother because she is grown old. + +A righteous father brings up +his children well; and his soul rejoices over a wise son. + +Let your father and your mother rejoice over you, and let her that bore you be glad. + + +My son, give me your heart, and let your eyes observe my ways. + +For a strange house is a vessel full of holes; and a strange well is narrow. + +For such a one shall perish suddenly; and every transgressor shall be cut off. + +Who +has woe? who trouble? who +has quarrels? and who vexations and disputes? who +has bruises without a cause? whose eyes are livid? + +Are not those of them that stay long at wine? +are not +those of them that haunt +the places where banquets are? Be not drunk with wine; but converse with just men, and converse +with them +23:30 +Gr. in public walks. + openly. + +For if you should set your eyes on bowls and cups, you shall afterwards go more naked than a pestle. + +But at last +such a one stretches himself out as one struck by a serpent, and venom is diffused through him as by a horned serpent. + +Whenever your eyes shall behold a strange woman, then your mouth shall speak perverse things. + +And you shall lie as in the midst of the sea, and as a pilot in a great storm. + +And you shall say, They struck me, and I was not pained; and they mocked me, and I knew it not: when will it be morning, that I may go and seek those with whom I may go in company? + +

+ + +

+My son, envy not bad men, nor desire to be with them. + +For their heart meditates falsehoods, and their lips speak mischiefs. + +A house is built by wisdom, and is set up by understanding. + +By discretion the chambers are filled with all precious and excellent wealth. + +A wise man is better than a strong man; and a man who has prudence than a large estate. + +War is carried on with generalship, and aid is supplied to the heart of a counsellor. + +Wisdom and good understanding are in the gates of the wise: the wise turn not aside from the mouth of the Lord, + +but deliberate in council. Death befalls uninstructed +men. + +The fools also dies in sins; and uncleanness +attaches to a pestilent man. + +He shall be defiled in the evil day, and in the day of affliction, until he be utterly consumed. + +Deliver them that are led away to death, and redeem them that are appointed to be slain; spare not +your help. + +But if you should say, I know not this man; know that the Lord knows the hearts of all; and he that formed breath for all, he knows all things, who renders to every man according to his works. + + +My son, eat honey, for the honeycomb is good, that your throat may be sweetened. + +Thus shall you perceive wisdom in your soul: for if you find it, your end shall be good, and hope shall not fail you. + +Bring not an ungodly man into the dwelling of the righteous: neither be deceived by the feeding of the belly. + +For a righteous man will fall seven times, and rise +again: but the ungodly shall be without strength in troubles. + +If your enemy should fall, rejoice not over him, neither be elated at his overthrow. + +For the Lord will see +it, and it will not please him, and he will turn away his wrath from him. + +Rejoice not in evil-doers, neither be envious of sinners. + +For the evil man shall have no posterity: and the light of the wicked shall be put out. + + +My son, fear God and the king; and do not disobey either of them. + +For they will suddenly punish the ungodly, and who can know the vengeance +inflicted by both? +24:22 +Heb. omits to the end. + [A son that keeps the commandment shall +24:22 +Lit. be outside of. + escape destruction; for +such an one has fully received it. Let no falsehood be spoken by the king from the tongue; yes, let no falsehood proceed from his tongue. The king's tongue is a sword, and not one of flesh; and whoever shall be given up to +it shall be destroyed: for if his wrath should be provoked, he destroys men with cords, and devours men's bones, and burns them up as a flame, so that they are not +even fit to be eaten by the young eagles. +My son, reverence my words, and receive them, and repent.] + +And this thing I say to you that are wise +for you to learn: It is not good to have respect of persons in judgment. + +He that says of the ungodly, He is righteous, shall be cursed by peoples, and hateful among the nations. + +But they that reprove +him shall appear more excellent, and blessing shall come upon them; + +and +men will kiss lips that answer well. + +Prepare your works for +your going forth, and prepare yourself for the field; and come after me, and you shall rebuild your house. + +Be not a false witness against your +fellow citizen, neither exaggerate with your lips. + +Say not, As he has treated me, so will I treat him, and I will avenge myself on him for that wherein he has injured me. + +A foolish man is like a farm, and a senseless man is like a vineyard. + +If you let him alone, he will altogether remain barren and covered with weeds; +24:31 +Gr. grass. + and he becomes destitute, and his stone walls are broken down. + +Afterwards I reflected, I looked that I might receive instruction. + + +The sluggard says, +I slumber a little, and I sleep a little, and for a little while I fold my arms across +my breast. + +But if you do this, your poverty will come speedily; and your lack like a swift courier. + +

+ + +

These are the +25:1 +Possibly genuine, q. d. beyond doubt. + miscellaneous instructions of Solomon, which the friends of Ezekias king of Judea copied out. + +The glory of God conceals a matter: but the glory of a king honors business. + +Heaven is high, and earth is deep, and a king's heart is unsearchable. + +Beat the drossy silver, and it shall be made entirely pure. + +Slay the ungodly from before the king, and his throne shall prosper in righteousness. + +Be not boastful in the presence of the king, and remain not in the places of princes; + +for +it is better for you that it should be said, Come up to me, than that +one should humble you in the presence of the prince; speak of that which your eyes have seen. + +Get not suddenly into a quarrel, lest you repent at last. + +Whenever your friend shall reproach you, retreat backward, despise +him not; + +lest your friend continue to reproach you, so your quarrel and enmity shall not depart, but shall be to you like death. Favour and friendship set +a man free, which do you keep for yourself, lest you be made liable to reproach; but take heed to your ways peaceably. + + +As a golden apple in a necklace of sardius, so +is it to speak a +wise word. + +In an ear-ring of gold a precious sardius is also set; +so is a wise word to an obedient ear. + +As a fall of snow in the time of harvest is good against heat, so a faithful messenger +refreshes those that send him; for he helps the souls of his employers. + +As winds and clouds and rains are most evident +objects, so is he that boasts of a false gift. + +In longsuffering is prosperity to kings, and a soft tongue breaks the bones. + +Having found honey, eat +only what is enough, lest haply you be filled, and vomit it up. + +Enter sparingly into your friend's house, lest he be satiated with your company, and hate you. + + +As a club, and a dagger, and a pointed arrow, so also is a man who bears false witness against his friend. + +The way of the wicked and the foot of the transgressor shall perish in an evil day. + +As vinegar is bad for a sore, so trouble befalling the body afflicts the heart. As a moth in a garment, and a worm in wood, so the grief of a man hurts the heart. + +If your enemy hunger, feed him; if he thirst, give him drink; + +for so doing you shall heap coals of fire upon his head, and the Lord shall reward you +with good. + +The north wind raises clouds; so an impudent face provokes the tongue. + + +It is better to dwell on a corner of the roof, than with a railing woman in an open house. + +As cold water is agreeable to a thirsting soul, so is a good message from a land far off. + +As if one should stop a well, and corrupt a spring of water, so +is it unseemly for a righteous man to fall before an ungodly man. + + +It is not good to eat much honey; but it is right to honor venerable sayings. + +As a city whose walls are broken down, and which is unfortified, so is a man who does anything without counsel. + +

+ + +

As dew in harvest, and as rain in summer, so honor is not +seemly for a fool. + +As birds and sparrows fly, so a curse shall not come upon any one without a cause. + +As a whip for a horse, and a goad for an ass, so +is a rod for a simple nation. + +Answer not a fool according to his folly, lest you become like him. + +Yet answer a fool according to his folly, lest he seem wise in his own conceit. + +He that sends a message by a foolish messenger procures for himself a reproach from his own ways. + + +As well take away the motion of the legs, as transgression from the mouth of fools. + +He that binds up a stone in a sling, is like one that gives glory to a fool. + +Thorns +26:9 +Compare Heb. + grow in the hand of a drunkard, and servitude in the hand of fools. + + +26:10 +Great variation from Hebrew here. + All the flesh of fools endures much hardship; for their fury is brought to nothing. + +As when a dog goes to his own vomit, and becomes abominable, so is fool who returns in his wickedness to his own sin. [There is a shame that brings sin: and there is a shame +that is glory and grace.] + +I have seen a man who seemed +26:12 +Gr. by. + to himself to be wise; but a fool had more hope than he. + +A sluggard when sent on a journey says, +There is a lion in the ways, and +there are murderers in the streets. + +As a door turns on the hinge, so does a sluggard on his bed. + +A sluggard having hid his hand in his bosom, will not be able to bring it up to his mouth. + +A sluggard seems to himself wiser than one who +26:16 +Compare Heb. + most satisfactorily brings back a message. + +As he that lays hold of a dog's tail, so is he that makes himself the champion of another's cause. + +As those who need correction put forth +fair words to men, and he that first falls in with the proposal will be overthrown; + +so are all that lay wait for their own friends, and when they are revealed, say, I did it in jest. + +With much wood fire increases; but where there is not a double-minded man, strife ceases. + +A hearth for coals, and wood for fire; and railing man for the tumult of strife. + +The words of cunning knaves are soft; but they strike +even to the inmost parts of the bowels. + +Silver dishonestly given is to be considered as a potsherd: smooth lips cover a grievous heart. + +A weeping enemy promises all things with his lips, but in his heart he contrives deceit. + +Though +your enemy entreat you with a loud voice, consent not: for there are seven abominations in his heart. + +He that hides enmity frames deceit: but being easily discerned, exposes his own sins in the public assemblies. + +He that digs a pit for his neighbor shall fall into it: and he that rolls a stone, rolls it upon himself. + +A lying tongue hates the truth; and an unguarded mouth causes tumults. + +

+ + +

Boast not of to-morrow; for you know not what the next day shall bring forth. + +Let your neighbor, and not your own mouth, praise you; a stranger, and not your own lips. + +A stone is heavy, and sand cumbersome; but a fool's wrath is heavier than both. + +Wrath is merciless, and anger sharp: but envy can bear nothing. + +Open reproofs are better than secret love. + +The wounds of a friend are more to be trusted than the spontaneous kisses of an enemy. + +A full soul scorns honeycombs; but to a hungry soul even bitter things appear sweet. + +As when a bird flies down from its own nest, so a man is brought into bondage whenever he estranges himself from his own place. + +The heart delights in ointments and wines and perfumes: but the soul is broken by calamities. + +Your own friend, and your father's friend, forsake not; and when you are in distress go not into your brother's house: better is a friend +that is near than a brother living far off. + +Son, be wise, that your heart may rejoice; and remove you from yourself reproachful words. + +A wise man, when evils are approaching, hides himself; but fools pass on, and will be punished. + +Take away the man's garment, (for a scorner has passed by) whoever lays waste another's goods. + +Whosoever shall bless a friend in the morning with a loud voice, shall seem to differ nothing from one who curses +him. + +On a stormy day drops +of rain drive a man out of his house; so also does a railing woman +drive a man out of his own house. + +The north wind is sharp, but it is called by name propitious. + +Iron sharpens iron; and a man sharpens his friend's countenance. + +He that plants a fig tree shall eat the fruits of it: so he that waits on his own master shall be honored. + +As faces are not like +other faces, so neither are the thoughts of men. + +Hell and destruction are not filled; so also are the eyes of men insatiable. +27:20 +Heb. omits to ver 21. + +He that fixes his eye is an abomination to the Lord; and the uninstructed do not restrain their tongue. + +Fire is the trial for silver and gold; and a man is tried by the mouth of them that praise him. The heart of the transgressor seeks after mischiefs; but an upright heart seeks knowledge. + +Though you scourge a fool, disgracing him in the midst of the council, you will +still in no wise remove his folly from him. + +Do you thoroughly know the number of your flock, and pay attention to your herds. + +For a man +has not strength and power for ever; neither does he transmit it from generation to generation. + +Take care of the herbage in the field, and you shall cut grass, and gather the mountain hay; + +that you may have +wool of sheep for clothing: pay attention to the land, that you may have lambs. + + +My son, you have from me words very useful for your life, and for the life of your servants. + +

+ + +

The ungodly +man flees when no one pursues: but the righteous is confident as a lion. + +By reason of the sins of ungodly men quarrels arise; but a wise man will +28:2 +Gr. quench. + quell them. + +A bold man oppresses the poor by ungodly deeds. As an impetuous and profitable rain, + +so they that forsake the law praise ungodliness; but they that love the law fortify themselves with a wall. + +Evil men will not understand judgment: but they that seek the Lord will understand +28:5 +Gr. in everything. + everything. + +A poor man walking in truth is better than a rich liar. + +A wise son keeps the law: but he that keeps up debauchery dishonors his father. + +He that increases his wealth by usuries and +unjust gains, gathers it for him that pities the poor. + +He that turns away his ear from hearing the law, even he has +28:9 +Or, abhorred his prayer. + made his prayer abominable. + +He that causes upright men to err in an evil way, himself shall fall into destruction: transgressor also shall pass by prosperity, but shall not enter into it. + +A rich man is wise in his own conceit; but an intelligent poor man will condemn him. + +By reason of the help of righteous men great glory arises: but in the places of the ungodly men are caught. + +He that covers his own ungodliness shall not prosper: but he that blames +himself shall be loved. + +Blessed is the man who religiously fears +28:14 +Gr. all things. + always: but the hard of heart shall fall into mischiefs. + +A hungry lion and a thirsty wolf +is he, who, being poor, rules over a poor nation. + +A king in need of revenues is a great oppressor: but he that hates injustice shall live a long time. + +He that becomes surety for a man charged with murder shall be an exile, and not in safety. Chasten your son, and he shall love you, and give honor to your soul: he shall not obey a sinful nation. + +He that walks justly is assisted: but he that walks in crooked ways shall be entangled +therein. + +He that tills his own land shall be satisfied with +28:19 +Gr. plural. + bread: but he that follows idleness shall have plenty of poverty. + +A man worthy of credit shall be much blessed: but the wicked shall not be unpunished. + +He that reverences not the persons of the just is not good: such a one will sell a man for a morsel of bread. + +An envious man makes haste to be rich, and knows not that the merciful man will have the mastery over him. + +He that reproves a man's ways shall have more favor than he that flatters with the tongue. + + +28:24 +Mark 7:11. + He that casts off father or mother, and thinks he sins not; the same is partaker with an ungodly man. + +An unbelieving man judges rashly: but he that trusts in the Lord will act carefully. + +He that trusts to a bold heart, such an one is a fool: but he that walks in wisdom shall be safe. + +He that gives to the poor shall not be in lack: but he that turns away his eye +from him shall be in great distress. + +In the places of ungodly +men the righteous +28:28 +Gr. groan. + mourn: but in their destruction the righteous shall be multiplied. + +

+ + +

A reprover is better than a stiff-necked man: for when the latter is suddenly set on fire, there shall be no remedy. + +When the righteous are praised, the people will rejoice: but when the ungodly rule, men mourn. + +When a man loves wisdom, his father rejoices: but he that keeps harlots will waste wealth. + +A righteous king establishes a country: but a transgressor destroys +it. + +He that prepares a net in the way of his own friend, entangles his own feet in it. + +A great snare +is spread for a sinner: but the righteous shall be in joy and gladness. + +A righteous man knows how to judge for the poor: but the ungodly understands not knowledge; and the poor man has not an understanding mind. + +Lawless men burn down a city: but wise men turn away wrath. + +A wise man shall judge nations: but a worthless man being angry laughs and fears not. + +Bloody men hate a holy +person, but the upright will seek his soul. + +A fool utters all his mind: but the wise reserves his in part. + +When a king hearkens to unjust language, all his subjects are transgressors. + +When the creditor and debtor meet together, the Lord oversees them both. + +When a king judges the poor in truth, his throne shall be established +29:14 +Heb. 'for ever.' See Amos 1. 11; Mich 7. 18; in the Greek. + for a testimony. + +Stripes and reproofs give wisdom: but an erring child disgraces his parents. + +When the ungodly abound, sins abound: but when they fall, the righteous are warned. + +Chasten your son, and he shall give you rest; and he shall give honor to your soul. + +There shall be no interpreter to a sinful nation: but he that observes the law is +29:18 +Or, 'most blessed.' + blessed. + +A stubborn servant will not be reproved by words: for even if he understands, still he will not obey. + +If you see a man hasty in +his words, know that the fool has hope rather than he. + +He that lives wantonly from a child, shall be a servant, and in the end shall grieve over himself. + +A furious man stirs up strife, and a passionate man digs up sin. + +Pride brings a man low, but the Lord upholds the humble-minded with honor. + +He that shares with a thief, hates his own soul: and if any having heard an oath uttered tell not of it, + + +they fearing and reverencing men +unreasonably have been overthrown, but he that trusts in the Lord shall rejoice. Ungodliness causes a man to stumble: but he that trusts in +29:25 +Possibly, 'in the Lord.' See 2 Pet 2:1. + his master shall be safe. + +Many wait on the favor of rulers; but justice comes to a man from the Lord. + +A righteous man is an abomination to an unrighteous man, and the direct way is an abomination to the sinner. + +

+ + +

These things says the man to them that trust in God; and I cease. + +For I am the most simple of all men, and there is not in me the wisdom of men. + +God has taught me wisdom, and I know the knowledge of the holy. + +Who has gone up to heaven, and come down? who has gathered the winds in his +30:4 +Or, fold of his robe. + bosom? who has wrapped up the waters in a garment? who has dominion of all the ends of the earth? what is his name? or what is the name of his children? + +For all the words of God are tried in the fire, and he defends those that reverence him. + +Add not to his words, lest he reprove you, and you be made a liar. + +Two things I ask of you; take not favor from me before I die. + +Remove far from me vanity and falsehood: and give me not wealth +or poverty; but appoint me what is needful and sufficient: + +lest I be filled and become false, and say, Who sees me? or be poor and steal, and swear +vainly by the name of God. + +Deliver not a servant into the hands of his master, lest he curse you, and you be utterly destroyed. + +A wicked generation curse their father, and do not bless their mother. + +A wicked generation judge themselves to be just, but do not cleanse their way. + +A wicked generation have lofty eyes, and exalt themselves with their eyelids. + +A wicked generation have swords +for teeth and jaw teeth +as knives, so as to destroy and devour the lowly from the earth, and the poor of them from among men. + +The horse-leech had three dearly beloved daughters: and these three did not satisfy her; and the fourth was not contented so as to say, Enough. + +The grave, and the love of a woman, and the earth not filled with water; water also and fire will not say, It is enough. + +The eye that laughs to scorn a father, and dishonors the old age of a mother, let the ravens of the valleys pick it out, and let the young eagles devour it. + +Moreover there are three things impossible for me to comprehend, and the fourth I know not: + +the track of a flying eagle; and the ways of a serpent on a rock; and the paths of a ship passing through the sea; and the ways of a man in youth. + +Such is the way of an adulterous woman, who having washed herself from what she has done, says she has done nothing +30:20 +Gr. out of place. + amiss. + +By three things the earth is troubled, and the fourth it can’t bear: + +if a servant reign; or a fool be filled with food; + +or if a maidservant should cast out her own mistress; and if a hateful woman should marry a good man. + +And +there are four very little things upon the earth, but these are wiser than the wise: + +the ants which are weak, and +yet prepare +their food in summer; + +the rabbits also +are a feeble race, who make their houses in the rocks. + +The locusts have no king, and +yet march orderly at one command. + +And the eft, which supports itself by +its hands, and is easily taken, dwells in the fortresses of kings. + +And there are three things which go well, and a fourth which passes along finely. + +A lion's whelp, stronger than +all other beasts, which turns not away, nor fears +any beast; + +and a cock walking in boldly among the hens, and the goat leading the herd; and a king publicly speaking before a nation. + +If you abandon yourself to mirth, and stretch forth your hand in a quarrel, you shall be disgraced. + +Milk out milk, and there shall be butter, and if you wing +one's nostrils there shall come out blood: so if you extort words, there will come forth quarrels and strifes. + +

+ + +

My words have been spoken by God—the oracular answer of a king, whom his mother instructed. + +What will you keep, my son, what? the words of God. My firstborn son, I speak to you: what? son of my womb? what? +31:2 +The usual punctuation has been altered. + son of my vows? + +Give not your wealth to women, nor your mind and living to remorse. Do all things with counsel: drink wine with counsel. + +Princes are prone to anger: let them then not drink wine: + +lest they drink, and forget wisdom, and be not able to judge the poor rightly. + +Give strong drink to those that are in sorrow, and the wine to drink to those in pain: + +that they may forget their poverty, and may not remember their troubles any more. + +Open your mouth with the word of God, and judge all fairly. + +Open your mouth and judge justly, and plead the cause of the poor and weak. + +Who shall find a virtuous woman? for such a one is more valuable than precious stones. + +The heart of her husband trusts in her: such a one shall stand in no need of fine spoils. + +For she employs all her living for her husband's good. + +Gathering wool and flax, she makes it serviceable with her hands. + +She is like a ship trading from a distance: so she procures her livelihood. + +And she rises by night, and gives food to her household, and +appointed tasks to her maidens. + +She views a farm, and buys it: and with the fruit of her hands she plants a possession. + +She strongly girds her loins, and strengthens her arms for work. + +And she finds by experience that working is good; and her candle goes not out all night. + +She reaches forth her arms to needful +works, and applies her hands to the spindle. + +And she opens her hands to the needy, and reaches out fruit to the poor. + +Her husband is not anxious about those at home when he tarries anywhere abroad: for all +31:21 +Gr. those with her. + her household are clothed. + +She makes for her husband +31:22 +Comp. Heb. and A.V. + clothes of double texture, and garments for herself of fine linen and scarlet. + +And her husband becomes a distinguished +person in the gates, when he sits in council with the old inhabitants of the land. + +She makes fine linens, and sells girdles to the Chananites: she opens her mouth heedfully and with propriety, and controls her tongue. + +She puts on strength and honor; and rejoices in the last days. + +But she opens her mouth wisely, and according to law. + +The ways of her household are careful, and she eats not the bread of idleness. + +And +her kindness to them sets up her children for them, and they grow rich, and her husband praises her. + +Many daughters have obtained wealth, many have wrought valiantly; but you have exceeded, you have surpassed all. + +Charms are false, and woman's beauty is vain: for it is a wise woman that is blessed, and let her praise the fear the Lord. + +Give her of the fruit of her lips; and let her husband be praised in the gates. + +

+
+ +Ecclesiastes +ECCLESIASTES +Ecclesiastes +ECC +

ECCLESIASTES +

+ + +

The words of the Preacher, the son of David, king of Israel in Jerusalem. + +Vanity of vanities, said the Preacher, vanity of vanities; all is vanity. + +What advantage +is there to a man in all his labor that he takes under the sun? + +A generation goes, and a generation comes: but the earth stands for ever. + +And the sun arises, and the sun goes down and draws toward its place; + +arising there it proceeds southward, and goes round toward the north. The wind goes round and round, and the wind returns to its circuits. + +All the rivers run into the sea; and yet the sea is not filled: to the place whence the rivers come, there they return again. + +All things are full of labor; a man will not be able to speak +of them: neither shall the eye be satisfied with seeing, neither shall the ear be filled with hearing. + +What is that which has been? the very thing which shall be: and what is that which has been done? the very thing which shall be done: and there is no new thing under the sun. + + +Who is he that shall speak and say, Behold, this is new? it has already been in the ages that have passed before us. + +There is no memorial to the first things; neither to the things that have been last shall their memorial be with them that shall at the last +time. + +I the Preacher was king over Israel in Jerusalem. + +And I applied my heart to seek out and examine by wisdom concerning all things that are done under heaven, for God has given to the sons of men an evil trouble to be troubled therewith. + +I saw all the works that were done under the sun; and, behold, all were vanity and waywardness of spirit. + +That which is crooked can’t be made straight: and deficiency can’t be numbered. + +I spoke in my heart, saying, Behold, I am increased, and have acquired wisdom beyond all who were before me in Jerusalem: also I applied my heart to know wisdom and knowledge. + +And my heart knew much—wisdom, and knowledge, parables and understanding: I perceived that this also is waywardness of spirit. + +For in the abundance of wisdom is abundance of knowledge; and he that increases knowledge will increase sorrow. + +

+ + +

I said in my heart, Come now, I will prove you with mirth, and behold you good: and, behold, this is also vanity. + +I said to laughter, Madness: and to mirth, Why do you this: + +And I examined whether my heart would excite my flesh as +with wine, (though my heart guided +me in wisdom,) and +I desired to lay hold of mirth, until I should see of what kind is the good to the sons of men, which they should do under the sun all the days of their life. + +I enlarged my work; I built me houses; I planted me vineyards. + +I made me gardens and orchards, and planted in them every kind of fruit tree. + +I made me pools of water, to water from them the timber-bearing wood. + +I got servants and maidens, and servants were born to me in the house: also I had abundant possession of flocks and herds, beyond all who were before me in Jerusalem. + +Moreover I collected for myself both silver and gold also, and the peculiar treasures of kings and provinces: I procured me singing men and singing women, and delights of the sons of men, a butler and female cupbearers. + +So I became great, and advanced beyond all that were before in Jerusalem: also my wisdom was established to me. + +And whatever my eyes desired, I withheld not from them, I withheld not my heart from all my mirth: for my heart rejoiced in all my labor; and this was my portion of all my labor. + +And I looked on all my works which my hands had wrought, and on my labor which I laboured to perform: and behold, all was vanity and waywardness of spirit, and there is no advantage under the sun. + +Then I looked on to see wisdom, and madness, and folly: for who is the man who will follow after counsel, in all things where in he employs it? + +And I saw that wisdom excels folly, as much as light excels darkness. + +The wise man's eyes are in his head; but the fool walks in darkness: and I perceived, even I, that one event shall happen to them all. + +And I said in my heart, As the event of the fool is, so shall it be to me, even to me: and to what purpose have I gained wisdom? I said moreover in my heart, This is also vanity, because the fool speaks of his abundance. + +For there is no remembrance of the wise man with the fool for ever; forasmuch as now +in the coming days all things are forgotten: and how shall the wise man die with the fool? + +So I hated life; because the work that was wrought under the sun was evil before me: for all is vanity and waywardness of spirit. + +And I hated the whole of my labor which I took under the sun; because I must leave it to the man who will come after me. + +And who knows whether he will be a wise +man or a fool? and whether he will have power over all my labor in which I laboured, and wherein I grew wise under the sun? this is also vanity. + +so I went about to dismiss from my heart all my labor wherein I had laboured under the sun. + +For there is +such a man that his labor is in wisdom, and in knowledge, and in fortitude; +yet this man shall give his portion to one who has not laboured therein. This is also vanity and great evil. + +For it happens to a man in all his labor, and in the purpose of his heart wherein he labors under the sun. + +For all his days +are days of sorrows, and vexation of spirit is his; in the night also his heart rests not. This is also vanity. + +A man has nothing +really good to eat, and to drink, and to show his soul +as good in his trouble. This also I saw, that it is from the hand of God. + +For who shall eat, or who shall drink, without him? + +For +God has given to the man who is good in his sight, wisdom, and knowledge, and joy: but he has given to the sinner trouble, to add and to heap up, that he may give to him that is good before God; for this is also vanity and waywardness of spirit. + +

+ + +

To all things there is a time, and a season for every matter under heaven. + +A time of birth, and a time to die; a time to plant, and a time to pluck up what has been planted; + +a time to kill, and a time to heal; a time to pull down, and a time to build up; + +a time to weep, and a time to laugh; a time to lament, and a time to dance; + +a time to throw stones, and a time to gather stones together; a time to embrace, and a time to abstain from embracing; + +a time to seek, and a time to lose; a time to keep, and a time to cast away; + +a time to rend, and a time to sew; a time to be silent, and a time to speak; + +a time to love, and a time to hate; a time of war, and a time of peace. + +What advantage +has he that works in those things wherein he labors? + +I have seen all the trouble, which God has given to the sons of men to be troubled with. + +All the things which he has made are beautiful in his time: he has also set the whole world in their heart, that man might not find out the work which God has wrought from the beginning even to the end. + +I know that there is no good in them, except +for a man to rejoice, and to do good in his life. + +Also +in the case of every man who shall eat and drink, and see good in all his labor, +this is a gift of God. + +I know that whatever things God has done, they shall be for ever: it is impossible to add to it, and it is impossible to take away from it: and God has done +it, that +men may fear before him. + +That which has been is now; and whatever things +are appointed to be have already been; and God will seek out that which is past. + +And moreover I saw under the sun the place of judgment, there was the ungodly one; and the place of righteousness, there was the godly one. + +And I said in my heart, God will judge the righteous and the ungodly: for there is a time there for every action and for every work. + +I said in my heart, concerning the speech of the sons of man, God will judge them, and that to show that they are beasts. + +Also to them is the event of the sons of man, and the event of the brute; one event befalls them: as is the death of the one, so also the death of the other; and there is one breath to all: and what has the man more than the brute? nothing; for all is vanity. + +All +go to one place; all were formed of the dust, and all will return to dust. + +And who has seen the spirit of the sons of man, whether it goes upward? and the spirit of the beast, whether it goes downward to the earth? + +And I saw that there was no good, but that wherein a man shall rejoice in his works, for it is his portion, for who shall bring him to see any thing of that which shall be after him? + +

+ + +

So I returned, and saw all the oppressions that were done under the sun: and behold the tear of the oppressed, and they had no comforter; and on the side of them that oppressed them was power; but they had no comforter: + +and I praised all the dead that had already died more than the living, as many as are alive until now. + +Better also than both these is he who has not yet been, who has not seen all the evil work that is done under the sun. + +And I saw all labor, and all the diligent work, that this is a man's envy from his neighbor. This is also vanity and waywardness of spirit. + +The fool folds his hands together, and eats his own flesh. + +Better is a handful of rest than two handfuls of trouble and waywardness of spirit. + +So I returned, and saw vanity under the sun. + +There is one +alone, and there is not a second; yes, he has neither son nor brother: yet there is no end to all his labor; neither is his eye satisfied with wealth; and for whom do I labor, and deprive my soul of good? this is also vanity, and an evil trouble. + +Two +are better than one, +seeing they have a good reward for their labor. + +For if they fall, the one will lift up his fellow: but woe to him that is alone when he falls, and there is not a second to lift him up. + +Also if two should lie together, they also get heat: but how shall one be warmed +alone? + +And if one should prevail against +him, the two shall withstand him; and a threefold cord shall not be quickly broken. + +Better is a poor and wise child than an old and foolish king, who knows not how to take heed any longer. + +For he shall come forth out of the house of the prisoners to reign, because +he also that was in his kingdom has become poor. + +I saw all the living who were walking under the sun, with the second youth who shall stand up in each one's place. + +There is no end to all the people, to all who were before them: and the last shall not rejoice in him: for this also is vanity and waywardness of spirit. + +Keep your foot, whenever you go to the house of God; and +when you are near to hear, let your sacrifice +be better than the gift of fools: for they know not that they are doing evil. + +

+ + +

Be not hasty with your mouth, and let not your heart be swift to utter anything before God; for God is in heaven above, and you upon earth: therefore let your words be few. + +For through the multitude of trial a dream comes; and a fool's voice is with a multitude of words. + +Whenever you shall vow a vow to God, defer not to pay it; for +he has no pleasure in fools: pay you therefore whatever you shall have vowed. + + +It is better that you should not vow, than that you should vow and not pay. + +Suffer not your mouth to lead your flesh to sin; and say not in the presence of God, It was an error: lest God be angry at your voice, and destroy the works of your hands. + +For +there is evil in a multitude of dreams and vanities and many words: but fear you God. + +If you should see the oppression of the poor, and the wresting of judgment and of justice in the land, wonder not at the matter: for +there is a high one to watch over him that is high, and high ones over them. + +Also the abundance of the earth is for every one: the king +is dependent on the tilled field. + +He that loves silver shall not be satisfied with silver: and who has loved gain, in the abundance thereof? this is also vanity. + +In the multitude of good they are increased that eat it: and what virtue has the owner, but the right of beholding +it with his eyes? + +The sleep of a servant is sweet, whether he eat little or much: but to one who is satiated with wealth, there is none that suffers him to sleep. + +There is an infirmity which I have seen under the sun, +namely, wealth kept for its owner to his hurt. + +And that wealth shall perish in an evil trouble: and +the man begets a son, and there is nothing in his hand. + +As he came forth naked from his mother's womb, he shall return back as he came, and he shall receive nothing for his labor, that it should go +with him in his hand. + +And this is also an evil infirmity: for as he came, so also shall he return: and what is his gain, for which he vainly labors? + +Yes, all his days are in darkness, and in mourning, and much sorrow, and infirmity, and wrath. + +Behold, I have seen good, that it is a fine thing +for a man to eat and to drink, and to see good in all his labor in which he may labor under the sun, +all the number of the days of his life which God has given to him: for it is his portion. + +Yes, and +as for every man to whom God has given wealth and possessions, and has given him power to eat thereof, and to receive his portion, and to rejoice in his labor; this is the gift of God. + +For he shall not much remember the days of his life; for God troubles him in the mirth of his heart. + +

+ + +

There is an evil which I have seen under the sun, and it is abundant with man: + +a man to whom God shall give wealth, and substance, and honor, and he wants nothing for his soul of all things that he shall desire, yet God shall not give him power to eat of it, for a stranger shall devour it: this is vanity, and an evil infirmity. + +If a man beget one hundred +children, and live many years, yes, however abundant the days of his years shall be, yet +if his soul shall not be satisfied with good, and also he have no burial; I said, An untimely birth is better than he. + +For he came in vanity, and departs in darkness, and his name shall be covered in darkness. + +Moreover he has not seen the sun, nor known rest: there is +no more rest to this one than another. + +Though he has lived to the return of a thousand years, yet he has seen no good: do not all go to one place? + +All the labor of a man is for his mouth, and yet the appetite shall not be satisfied. + +For +what advantage has the wise man over the fool, since +even the poor knows how to walk in the direction of life? + +The sight of the eyes is better than that which wanders in soul: this is also vanity, and waywardness of spirit. + +If anything has been, its name has already been called: and it is known what man is; neither can he contend with him who is stronger than he. + +For there are many things which increase vanity. + +

+ + +

What advantage has a man? for who knows +what is good for a man in his life, +during the number of the life of the days of his vanity? and he has spent them as a shadow; for who shall tell a man what shall be after him under the sun? + +A good name is better than good oil; and the day of death than the day of birth. + + +It is better to go to the house of mourning, than to go to the banquet house: since this is the end of every man; and the living man will apply good +warning to his heart. + +Sorrow is better than laughter: for by the sadness of the countenance the heart will be made better. + +The heart of the wise is in the house of mourning; but the heart of fools is in the house of mirth. + + +It is better to hear a reproof of a wise man, than for a man to hear the song of fools. + +As the sound of thorns under a caldron, so is the laughter of fools: this is also vanity. + +for oppression makes a wise man mad, and destroys his noble heart. + +The end of a matter is better than the beginning thereof: the patient is better than the high-minded. + +Be not hasty in your spirit to be angry: for anger will rest in the bosom of fools. + +Say not, What has happened, that the former days were better than these? for you do not enquire in wisdom concerning this. + +Wisdom is good with an inheritance: and +there is an advantage +by it to them that see the sun. + +For wisdom in its shadow is as the shadow of silver: and the excellence of the knowledge of wisdom will give life to him that has it. + +Behold the works of God: for who shall be able to straighten him whom God has made crooked? + +In the day of prosperity live joyfully, and consider in the day of adversity: consider, +I say, God also has caused the one to agree with the other for +this reason, that man should find nothing after him. + +I have seen all things in the days of my vanity: there is a just man perishing in his justice, and there is an ungodly man remaining in his wickedness. + +Be not very just; neither be very wise: lest you be confounded. + +Be not very wicked; and be not stubborn: lest you should die before your time. + +It is well for you to hold fast by this; also by this defile not your hand: for to them that fear God all things shall come forth +well. + +Wisdom will help the wise man more than ten mighty men which are in the city. + +For there is not a righteous man in the earth, who will do good, and not sin + +Also take no heed to all the words which ungodly men shall speak; lest you hear your servant cursing you. + +For many times he shall trespass against you, and repeatedly shall he afflict your heart; for thus also have you cursed others. + +All these things have I proved in wisdom: I said, I will be wise; but it was far from me. + + +That which is far beyond what was, and a great depth, who shall find it out? + +I and my heart went round about to know, and to examine, and to seek wisdom, and the account +of things, and to know the folly and trouble and madness of the ungodly man. + +And I find her +to be, and I will pronounce +to be more bitter than death the woman which is a snare, and her heart nets, +who has a band in her hands: +he that is good in the sight of God shall be delivered from her; but the sinner shall be caught by her. + +Behold, this have I found, said the Preacher, +seeking by one at a time to find out the account, + +which my soul sought after, but I found not: for I have found one man of a thousand; but a woman in all these I have not found. + +But, behold, this have I found, that God made man upright; but they have sought out many devices. + +

+ + +

Who knows the wise? and who knows the interpretation of a saying? A man's wisdom will lighten his countenance; but a man of shameless countenance will be hated. + +Observe the commandment of the king, and +that because of the word of the oath of God. + +Be not hasty; you shall go forth out of his presence: stand not in an evil matter; for he will do whatever he shall please, + +even as a king having power: and who will say to him, What do you? + +He that keeps the commandment shall not know an evil thing: and the heart of the wise knows the time of judgment. + +For to every thing there is time and judgment; for the knowledge of a man is great to him. + +For there is no one that knows what is going to be: for who shall tell him how it shall be? + +There is no man that has power over the spirit to retain the spirit; and there is no power in the day of death: and there is no discharge in the day of the battle; neither shall ungodliness save her votary. + +So I saw all this, and I applied my heart to every work that has been done under the sun; all the things wherein man has power over man to afflict him. + +And then I saw the ungodly carried into the tombs, and +that out of the holy place: and they departed, and were praised in the city, because they had done thus: this also is vanity. + +Because there is no contradiction made on the part of those who do evil quickly, therefore the heart of the children of men is fully determined in them to do evil. + +He that has sinned has done evil from that time, and long from beforehand: nevertheless I know, that it is well with them that fear God, that they may fear before him: + +but it shall not be well with the ungodly, and he shall not prolong his days, +which are as a shadow; forasmuch as he fears not before God. + +There is a vanity which is done upon the earth; that there are righteous persons to whom it happens according to the doing of the ungodly; and there are ungodly men, to whom it happens according to the doing of the just: I said, This is also vanity. + +Then I praised mirth, because there is no good for a man under the sun, but to eat, and drink, and be merry: and this shall attend him in his labor all the days of his life, which God has given him under the sun. + +Whereupon I set my heart to know wisdom, and to perceive the trouble that was wrought upon the earth: for there is that neither by day nor night sees sleep with his eyes. + +And I saw all the works of God, that a man shall not be able to discover the work which is wrought under the sun; whatever things a man shall endeavor to seek, however a man may labor to seek it, yet he shall not find it; yes, how much soever a wise man may speak of knowing it, he shall not be able to find it: for I applied all this to my heart, and my heart has seen all this. + +

+ + +

+I saw that the righteous, and the wise, and their works, are in the hand of God: yes, there is no man that knows either love or hatred, +though all are before their face. + +Vanity is in all: there is one event to the righteous, and to the wicked; to the good, and to the bad; both to the pure, and to the impure; both to him that sacrifices, and to him that sacrifice not: as is the good, so is the sinner: as is the swearer, even so is he that fears an oath. + +There is this evil in all that is done under the sun, that there is one event to all: yes, the heart of the sons of men is filled with evil, and madness is in their heart during their life, and after that +they go to the dead. + +for who is he that has fellowship with all the living? there is hope +of him: for a living dog is better than a dead lion. + +For the living will know that they shall die: but the dead know nothing, and there is no longer any reward to them; for their memory is lost. + +also their love, and their hatred, and their envy, have now perished; yes, there is no portion for them any more for ever in all that is done under the sun. + +Go, eat your bread with mirth, and drink your wine with a joyful heart; for now God has favourably accepted your works. + +Let your garments be always white; and let not oil be lacking on your head. + +And see life with the wife whom you love all the days of the life of your vanity, which are given you under the sun: for that is your portion in your life, and in your labor wherein you labor under the sun. + +Whatsoever your hand shall find to do, do with all your might; for there is no work, nor device, nor knowledge, nor wisdom, in Hades wither you go. + +I returned, and saw under the sun, that the race is not to the swift, nor the battle to the strong, nor yet bread to the wise, nor yet wealth to men of understanding, nor yet favor to men of knowledge; for time and chance will happen to them all. + +For surely man also knows not his time: as fishes that are taken in an evil net, and as birds that are caught in a snare; even thus the sons of men are snared at an evil time, when it falls suddenly upon them. + +This I also saw +to be wisdom under the sun, and it is great before me: + + +suppose there were a little city, and few men in it; and there should come against it a great king, and surround it, and build great mounds against it; + +and should find in it a poor wise man, and he should save the city through his wisdom: yet no man would remember that poor man. + +And I said Wisdom is better than power: yet the wisdom of the poor man is set at nothing, and his words not listened to. + +The words of the wise are heard in quiet more than the cry of them that rule in folly. + +Wisdom is better than weapons of war: and one sinner will destroy much good. + +

+ + +

Pestilent flies will corrupt a preparation of sweet ointment: +and a little wisdom is more precious than great glory of folly. + +A wise man's heart is at his right hand; but a fool's heart at his left. + +Yes, and whenever a fool walks by the way, his heart will fail him, and all that he thinks of is folly. + +If the spirit of the ruler rise up against you, leave not your place; for soothing will put an end to great offenses. + +There is an evil which I have seen under the sun, wherein an error has proceeded from the ruler. + +The fool has been set in very high places, while rich men would sit in a low one. + +I have seen servants upon horses, and princes walking as servants on the earth. + +He that digs a pit shall fall into it; and him that breaks down a hedge a serpent shall bite. + +He that removes stones shall be troubled thereby; he that cleaves wood shall be endangered thereby. + +If the axe-head should fall off, then the man troubles his countenance, and he must put forth more strength: and +in that case skill is of no advantage to a man. + +If a serpent bite when there is no +charmer's whisper, then there is no advantage to the charmer. + +The words of a wise mouth are gracious: but the lips of a fool will swallow him up. + +The beginning of the words of his mouth is folly: and the end of his talk mischievous madness. + +A fool moreover multiplies words: man knows not what has been, nor what will be: who shall tell him what will come after him? + +The labor of fools will afflict them, +as that of one who knows not to go to the city. + +Woe to you, O city, whose king is young, and your princes eat in the morning! + +Blessed are you, O land, whose king is a son of nobles, and whose princes shall eat seasonably, for strength, and shall not be ashamed. + +By slothful neglect a building will be brought low: and by idleness of the hands the house will fall to pieces. + +Men prepare bread for laughter, and wine and oil that the living should rejoice: but to money all things will humbly yield obedience. + +Even in your conscience, curse not the king; and curse not the rich in your bedchamber: for a bird of the air shall carry your voice, and that which has wings shall report your speech. + +

+ + +

Send forth your bread upon the face of the water: for you shall find it after many days. + +Give a portion to seven, and also to eight; for you know not what evil there shall be upon the earth. + +If the clouds be filled with rain, they pour +it out upon the earth: and if a tree fall southward, or if it fall northward, in the place where the tree shall fall, there it shall be. + +He that observes the wind sows not; and he that looks at the clouds will not reap. + +Among whom none knows what is the way of the wind: as the bones +are hid in the womb of a pregnant +woman, so you shall not know the works of God, +even all things whatever he shall do. + +In the morning sow your seed, and in the evening let not your hand be slack: for you know not what sort shall prosper, whether this or that, or whether both shall be good alike. + +Moreover the light is sweet, and it is good for the eyes to see the sun. + +For even if a man should live many years, +and rejoice in them all; yet let him remember the days of darkness; for they shall be many. All that comes is vanity. + +Rejoice, O young man, in your youth; and let your heart cheer you in the days of your youth, and walk in the ways of your heart blameless, but not in the sight of your eyes: yet know that for all these things God will bring you into judgment. + +Therefore remove sorrow from your heart, and put away evil from your flesh: for youth and folly are vanity. + +

+ + +

And remember your Creator in the days of your youth, before the days of evil come, and the years overtake +you in which you shall say, I have no pleasure in them. + +While the sun and light are not darkened, nor the moon and the stars; nor the clouds return after the rain: + +in the day wherein the keepers of the house shall tremble, and the mighty men shall become bent, and the grinding +women cease because they have become few, and the +women looking out at the windows be dark; + +and they shall shut the doors in the marketplace, because of the weakness of the voice of her that grinds +at the mill; and he shall rise up at the voice of the sparrow, and all the daughters of song shall be brought low; + +and they shall look up, and fears +shall be in the way, and the almond tree shall blossom, and the locust shall increase, and the caper shall be scattered: because man has gone to his eternal home, and the mourners have gone about the market: + +before the silver cord be +let go, or the choice gold be broken, or the pitcher be broken at the fountain, or the wheel run down to the cistern; + + +before the dust also return to the earth as it was, and the spirit return to God who gave it. + +Vanity of vanities, said the Preacher; all is vanity. + +And because the Preacher was wise above +others, so it was that he taught man excellent knowledge, and the ear will trace out the parables. + +The Preacher sought diligently to find out acceptable words, and a correct writing, +even words of truth. + +The words of the wise are as goads, and as nails firmly fastened, which have been given from one shepherd by agreement. + +And moreover, my son, guard yourself by means of them: of making many books there is no end; and much study is a weariness of the flesh. + +Hear the end of the matter, the sun: Fear God, and keep his commandments: for this is the whole man. + +For God will bring every work into judgment, with everything that has been overlooked, whether +it be good, or whether +it be evil. + +

+
+ +Song of Songs +SONG OF SONGS +Song of Songs +SNG +

SONG OF SONGS +

+ + +

The Song of songs, which is Solomon's. + +Let him kiss me with the kisses of his mouth: for your breasts are better than wine. + +And the smell of your ointments is better than all spices: your name is ointment poured forth; therefore do the young maidens love you. + +They have drawn you: we will run after you, for the smell of your ointments: the king has brought me into closet: let us rejoice and be glad in you; we will love your breasts more than wine: righteousness loves you. + +I am black, but beautiful, you⌃ daughters of Jerusalem, as the tents of Kedar, as the curtains of Solomon. + +Look not upon me, because I am dark, because the sun has looked unfavourably upon me: my mother's sons strove with me; they made me keeper in the vineyards; I have not kept my own vineyard. + +Tell me, +you whom my soul loves, where you tend your flock, where you cause +them to rest at noon, lest I become as one that is veiled by the flocks of your companions. + +If you know not yourself, you fair one among women, go you forth by the footsteps of the flocks, and feed your kids by the shepherd's tents. + +I have likened you, my companion, to my horses in the chariots of Pharao. + +How are your cheeks beautiful as +those of a dove, your neck as chains! + +We will make you figures of gold with studs of silver. + +So long as the king was at table, my spikenard gave forth its smell. + +My kinsman is to me a bundle of myrrh; he shall lie between my breasts. + +My kinsman is to me a cluster of camphor in the vineyards of Engaddi. + +Behold, you are fair, my companion; behold, you are fair; your eyes are doves. + +Behold, you are fair, my kinsman, yes, beautiful, overshadowing our bed. + +The beams of our house are cedars, our ceilings are of cypress. + +

+ + +

I am a flower of the plain, a lily of the valleys. + +As a lily among thorns, so is my companion among the daughters. + +As the apple among the trees of the wood, so is my kinsman among the sons. I desired his shadow, and sat down, and his fruit was sweet in my throat. + +Bring me into the wine house; set love before me. + +Strengthen me with perfumes, stay me with apples: for I +am wounded with love. + +His left +hand shall be under my head, and his right hand shall embrace me. + +I have charged you, you⌃ daughters of Jerusalem, by the powers and by the virtues of the field, that you⌃ do not rouse or wake +my love, until he please. + +The voice of my kinsman! behold, he comes leaping over the mountains, bounding over the hills. + +My kinsman is like a roe or a young hart on the mountains of Baethel: behold, he is behind our wall, looking through the windows, peeping through the lattices. + +My kinsman answers, and says to me, Rise up, come, my companion, my fair one, my dove. + +For, behold, the winter is past, the rain is gone, it has departed. + +The flowers are seen in the land; the time of pruning has arrived; the voice of the turtle-dove has been heard in our land. + +The fig tree has put forth its young figs, the vines put forth the tender grape, they yield a smell: arise, come, my companion, my fair one, my dove; yes, come. + + +You are my dove, in the shelter of the rock, near the wall: show me your face, and cause me to hear your voice; for your voice is sweet, and your countenance is beautiful. + +Take us the little foxes that spoil the vines: for our vines put forth tender grapes. + +My kinsman is mine, and I am his: he feeds +his flock among the lilies. + +Until the day dawn, and the shadows depart, turn, my kinsman, be you like to a roe or young hart on the mountains of the ravines. + +

+ + +

By night on my bed I sought him whom my soul loves: I sought him, but found him not; I called him, but he listened not to me. + +I will rise now, and go about in the city, in the marketplaces, and in the streets, and I will seek him whom my soul loves: I sought him, but I found him not. + +The watchmen who go their rounds in the city found me. +I said, Have you⌃ seen him whom my soul loves? + + +It was as a little +while after I parted from them, that I found him whom my soul loves: I held him, and did not let him go, until I brought him into my mother's house, and into the chamber of her that conceived me. + +I have charged you, O daughters of Jerusalem, by the powers and by the virtues of the field, that you⌃ rouse not nor awake +my love, until he please. + +Who is this that comes up from the wilderness as pillars of smoke, perfumed with myrrh and frankincense, with all powders of the perfumer? + +Behold Solomon's bed; sixty mighty men of the mighty ones of Israel are round about it. + +They all hold a sword, being expert in war: every man +has his sword upon his thigh because of fear by night. + +King Solomon made himself a litter of woods of Lebanon. + +He made the pillars of it silver, the bottom of it gold, the covering of it scarlet, in the midst of it a pavement of love, for the daughters of Jerusalem. + +Go forth, you⌃ daughters of Sion, 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. + +

+ + +

Behold, you are fair, my companion; behold, you are fair; your eyes are doves, beside your veil: your hair is as flocks of goats, that have appeared from Galaad. + +Your teeth are as flocks of shorn +sheep, that have gone up from the washing; all of them bearing twins, and there is not a barren one among them. + +Your lips are as a thread of scarlet, and your speech is comely: like the rind of a pomegranate is your cheek without your veil. + +Your neck is as the tower of David, that was built for an armory: a thousand shields hang upon it, +and all darts of mighty men. + +Your two breasts are as two twin fawns, that feed among the lilies. + +Until the day dawn, and the shadows depart, I will betake me to the mountain of myrrh, and to the hill of frankincense. + +You are all fair, my companion, and there is no spot in you. + +Come from Libanus, +my bride, come from Libanus: you shall come and pass from the top of Faith, from the top of Sanir and Hermon, from the lions' dens, from the mountains of the leopards. + +My sister, +my spouse, you have ravished my heart; you have ravished my heart with one of your eyes, with one chain of your neck. + +How beautiful are your breasts, my sister, my spouse! how much more beautiful are your breasts than wine, and the smell of your garments than all spices! + +Your lips drop honeycomb, my spouse: honey and milk are under your tongue; and the smell of your garments is as the smell of Libanus. + +My sister, +my spouse is a garden enclosed; a garden enclosed, a fountain sealed. + +Your shoots are a garden of pomegranates, with the fruit of choice berries; camphor, with spikenard: + +spikenard and saffron, calamus and cinnamon; with all woods of Libanus, myrrh, aloes, with all chief spices: + +a fountain of a garden, and a well of water springing and gurgling from Libanus. + +Awake, O north wind; and come, O south; and blow through my garden, and let my spices flow out. + +

+ + +

Let my kinsman come down into his garden, and eat the fruit of his choice berries. I am come into my garden, my sister, +my spouse: I have gathered my myrrh with my spices; I have eaten my bread with my honey; I have drunk my wine with my milk. Eat, O friends, and drink; yes, brethren, drink abundantly. + +I sleep, but my heart is awake: the voice of my kinsman knocks at the door, +saying, Open, open to me, my companion, my sister, my dove, my perfect one: for my head is filled with dew, and my locks with the drops of the night. + +I have put off my coat; how shall I put it on? I have washed my feet, how shall I defile them? + +My kinsman put forth his hand by the hole +of the door, and my belly moved for him. + +I rose up to open to my kinsman; my hands dropped myrrh, my fingers choice myrrh, on the handles of the lock. + +I opened to my kinsman; my kinsman was gone: my soul failed at his speech: I sought him, but found him not; I called him, but he answered me not. + +The watchman that go their rounds in the city found me, they struck me, they wounded me; the keepers of the walls took away my veil from me. + +I have charged you, O daughters of Jerusalem, by the powers and the virtues of the field: if you⌃ should find my kinsman, what are you⌃ to say to him? That I am wounded with love. + +What is your kinsman +more than +another kinsman, O you beautiful among women? what is your kinsman +more than +another kinsman, that you have so charged us? + +My kinsman is white and ruddy, chosen out from myriads. + +His head is +as very fine gold, his locks are flowing, black as a raven. + +His eyes are as doves, by the pools of waters, washed with milk, sitting by the pools. + +His cheeks are as bowls of spices pouring forth perfumes: his lips are lilies, dropping choice myrrh. + +His hands are as turned gold set with beryl: his belly is an ivory tablet on a sapphire stone. + +His legs are marble pillars set on golden sockets: his form is as Libanus, choice as the cedars. + +His throat is most sweet, and altogether desirable. This is my kinsman, and this is my companion, O daughters of Jerusalem. + +Whither is your kinsman gone, you beautiful among women? whither has your kinsman turned aside? +tell us, and we will seek him with you. + +

+ + +

My kinsman is gone down to his garden, to the beds of spice, to feed +his flock in the gardens, and to gather lilies. + +I am my kinsman's, and my kinsman is mine, who feeds among the lilies. + +You are fair, my companion, as Pleasure, beautiful as Jerusalem, terrible as +armies set in array. + +Turn away your eyes from before me, for they have ravished me: your hair is as flocks of goats which have appeared from Galaad. + +Your teeth are as flocks of shorn +sheep, that have gone up from the washing, all of them bearing twins, and there is none barren among them: your lips are as a thread of scarlet, and your speech is comely. + +Your cheek is like the rind of a pomegranate, +being seen without your veil. + +There are sixty queens, and eighty concubines, and maidens without number. + +My dove, my perfect one is one; she is the +only one of her mother; she is the choice of her that bore her. The daughters saw her, and the queens will pronounce her blessed, yes, and the concubines, and they will praise her. + +Who is this that looks forth as the morning, fair as the moon, choice as the sun, terrible as +armies set in array? + +I went down to the garden of nuts, to look at the fruits of the valley, to see if the vine flowered, +if the pomegranates blossomed. + +There I will give you my breasts: my soul knew +it not: it made me as the chariots of Aminadab. + +Return, return, O Sunamite; return, return, and we will look at you. What will you⌃ see in the Sunamite? She comes as bands of armies. + +

+ + +

Your steps are beautiful in shoes, O daughter of the prince: the joints of +your thighs are like chains, the work of the craftsman. + +Your navel is +as a turned bowl, not lacking liquor; your belly is +as a heap of wheat set about with lilies. + +Your two breasts are as two twin fawns. + +Your neck is as an ivory tower; your eyes are as pools in Esebon, by the gates of the daughter of many: your nose is as the tower of Libanus, looking toward Damascus. + +Your head upon you is as Carmel, and the curls of your hair like scarlet; the king is bound in the galleries. + +How beautiful are you, and how sweet are you, +my love! + +This is your greatness in your delights: you were made like a palm tree, and your breasts to cluster. + +I said, I will go up to the palm tree, I will take hold of its high boughs: and now shall your breasts be as clusters of the vine, and the smell of your nose of apples; + +and your throat as good wine, going well with my kinsman, suiting my lips and teeth. + +I am my kinsman's, and his desire is toward me. + +Come, my kinsman, let us go forth into the field; let us lodge in the villages. + +Let us go early into the vineyards; let us see if the vine has flowered, +if the blossoms have appeared, if the pomegranates have blossomed; there will I give you my breasts. + +The mandrakes have given a smell, and at our doors +are all kinds of choice fruits, new and old. O my kinsman, I have kept +them for you. + +

+ + +

I would that you, O my kinsman, were he that sucked the breasts of my mother; when I found you without, I would kiss you; yes, they should not despise me. + +I would take you, I would bring you into my mother's house, and into the chamber of her that conceived me; I would make you to drink of spiced wine, of the juice of my pomegranates. + +His left hand +should be under my head, and his right hand should embrace me. + +I have charged you, you⌃ daughters of Jerusalem, by the virtues of the field, that you⌃ stir not up, nor awake +my love, until he please. + +Who is this that comes up all white, leaning on her kinsman? I raised you up under an apple tree; there your mother brought you forth; there she that bore you brought you forth. + +Set me as a seal upon your heart, as a seal upon your arm; for love is strong as death; jealousy is cruel as the grave, her shafts are shafts of fire, +even the flames thereof. + +Much water will not be able to quench love, and rivers shall not drown it; if a man would give all his substance for love, +men would utterly despise it. + +Our sister is little, and has no breasts; what shall we do for our sister, in the day wherein she shall be spoken for? + +If she is a wall, let us build upon her silver bulwarks; and if she is a door, let us carve for her cedar panels. + +I am a wall, and my breasts are as towers; I was in their eyes as one that found peace. + +Solomon had a vineyard in Beelamon; he let his vineyard to keepers; every one was to bring for its fruit a thousand +pieces of silver. + +My vineyard, even mine, is before me; Solomon +shall have a thousand, and they that keep its fruit two hundred. + +You that dwell in the gardens, the companions listen to your voice: make me hear +it. + +Away, my kinsman, and be like a doe or a fawn on the mountains of spices. + +

+
+ +Esias +ESIAS +Esias +ISA +

ESIAS +

+ + +

The vision which Esaias the son of Amos saw, which he saw against Juda, and against Jerusalem, in the reign of Ozias, and Joatham, and Achaz, and Ezekias, who reigned over Judea. + +Hear, O heaven, and listen, O earth: for the Lord has spoken, +saying, I have begotten and reared up children, but they have +1:2 +Or, +'set me at nothing.' + rebelled against me. + +The ox knows his owner, and the ass his master's crib: but Israel does not know me, and the people has not regarded me. + +Ah sinful nation, a people full of sins, an evil seed, lawless children: you⌃ have forsaken the Lord, and provoked the Holy One of Israel. + +Why should you⌃ be struck +any more, transgressing more and more? the whole head is pained, and the whole heart sad. + +From the feet to the head, there is no soundness in them; neither wound, nor bruise, nor festering ulcer +are healed: it is not possible to apply a plaister, nor oil, nor bandages. + +Your land is desolate, your cities burned with fire: your land, strangers devour it in your presence, and it is made desolate, overthrown by strange nations. + +The daughter of Sion shall be deserted as a tent in a vineyard, and as a storehouse of fruits in a garden of cucumbers, as a besieged city. + + +1:9 +Rom 9:29 + And if the Lord of Sabaoth had not left us a seed, we should have been as Sodom, and we should have been made like Gomorrha. + +Hear the word of the Lord, you⌃ rulers of Sodoma; attend to the law of God, you people of Gomorrha. + +Of what +value to me is the abundance of your sacrifices? says the Lord: I am full of whole burnt offerings of rams; and I delight not in the fat of lambs, and the blood of bulls and goats: + +neither shall you⌃ come +with these to appear before me; for who has required these things at your hands? You⌃ shall no more tread my court. + +Though you⌃ bring fine flour, +it is vain; incense is an abomination to me; I can’t bear your new moons, and your sabbaths, and the great day; + + +your fasting, and rest from work, your new moons also, and your feasts my soul hates: you⌃ have become loathsome to me; I will no more pardon your sins. + +When you⌃ stretch forth your hands, I will turn away my eyes from you: and though you⌃ make many supplications, I will not listen to you; for your hands are full of blood. + +Wash you, be clean; remove your iniquities from your souls before my eyes; cease from your iniquities; + +learn to do well; diligently seek judgment, deliver him that is suffering wrong, plead for the orphan, and obtain justice for the widow. + +And come, let us reason together, says the Lord: and though your sins be as purple, I will make them white as snow; and though they be as scarlet, I will make +them white as wool. + +And if you⌃ be willing, and listen to me, you⌃ shall eat the good of the land: + +but if you⌃ be not willing, nor listen to me, a sword shall devour you: for the mouth of the Lord has spoken this. + +How has the faithful city Sion, +once full of judgment, become a harlot! wherein righteousness lodged, but now murderers. + +Your silver is worthless, your wine merchants mix the wine with water. + +Your princes are rebellious, companions of thieves, loving bribes, seeking after rewards; not pleading for orphans, and not heeding the cause of widows. + +Therefore thus says the Lord, the Lord of hosts, Woe to the mighty +men of Israel; for my wrath shall not cease against my adversaries, and I will execute judgment on my enemies. + +And I will bring my hand upon you, and purge you +1:25 +Gr. +to pureness. + completely, and I will destroy the rebellious, and will take away from you all transgressors. + +And I will establish your judges as before, and your counselors as at the beginning: and afterward you shall be called the city of righteousness, the faithful mother-city of Sion. + +For her captives shall be saved with judgment, and with mercy. + +And the transgressors and the sinners shall be crushed together, and they that forsake the Lord shall be utterly consumed. + +For they shall be ashamed of their idols, which they delighted in, and they are made ashamed of the gardens which they coveted. + +For they shall be as a turpentine tree that has cast its leaves, and as a garden that has no water. + +And their strength shall be as a thread of tow, and their works as sparks, and the transgressors and the sinners shall be burnt up together, and there shall be none to quench +them. + +

+ + +

The word which came to Esaias the son of Amos concerning Judea, and concerning Jerusalem. + +For in the last days the mountain of the Lord shall be +2:2 +Or, +conspicuous. + glorious, and the house of God +shall be on the top of the mountains, and it shall be exalted above the hills; and all nations shall come to it. + +And many nations shall go 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 tell us his way, and we will walk in it: for out of Sion shall go forth the law, and the word of the Lord out of Jerusalem. + +And he shall judge among the nations, and shall rebuke many people: and they shall beat their swords into plowshares, and their spears into sickles: and nation shall not take up sword against nation, neither shall they learn to war any more. + +And now, O house of Jacob, come, +and let us walk in the light of the Lord. + +For he has forsaken his people the house of Israel, because their land is filled as at the beginning with divinations, as the +land of the +2:6 +Or, +aliens, or Philistines. The LXX. generally render by Φιλιστεὶμ or Φυλιστιὶμ till about the middle of Judges, after which the word almost always used is ἀλλόφυλοι. In this there was probably some accommodation of sound to tense. + Philistines, and many strange children were born to them. + +For their land is filled with silver and gold, and there was no number of their treasures; their land also is filled with horses, and there was no number of chariots. + +And the land is filled with abominations, +even the works of their hands; and they have worshipped +the works which their fingers made. + +And the mean man bowed down, and the great man was humbled: and I will not pardon them. + +Now therefore enter you⌃ into the rocks, and hide yourselves in the earth, for fear of the Lord, and by reason of the glory of his might, when he shall arise to strike terribly the earth. + +For the eyes of the Lord are high, but man is low; and the haughtiness of men shall be brought low, and the Lord alone shall be exalted in that day. + +For the day of the Lord of hosts shall be upon every one that is proud and haughty, and upon every one that is high and towering, and they shall be brought down; + +and upon every cedar of Libanus, of them that are high and towering, and upon every oak of Basan, + +and upon every high mountain, and upon every high hill, + +and upon every high tower, and upon every high wall, + +and upon every ship of the sea, and upon every display of fine ships. + +And every man shall be brought low, and the pride of men shall fall: and the Lord alone shall be exalted in that day. + +And they shall hide all +idols made with hands, + +having carried +them into the caves, and into the clefts of the rocks, and into the caverns of the earth, for fear of the Lord, and +2:19 +See ver 10. + by reason of the glory of his might, when he shall arise to strike terribly the earth. + +For in that day a man shall cast forth his silver and gold abominations, which they made +in order to worship vanities and bats; + +to enter into the caverns of the solid rock, and into the clefts of the rocks, for fear of the Lord, and by reason of the glory of his might, when he shall arise to strike terribly the earth. + +

+ + +

Behold now, the Lord, the Lord of hosts, will take away from Jerusalem and from Judea the mighty man and mighty woman, the strength of bread, and the strength of water, + +the great and mighty man, the warrior and the judge, and the prophet, and the counsellor, and the elder, + +the captain of fifty also, and the honorable counsellor, and the wise artificer, and the intelligent hearer. + +And I will make youths their princes, and mockers shall have dominion over them. + +And the people shall fall, man upon man, and +every man upon his neighbor: the child shall insult the elder man, and the base the honorable. + +For a man shall lay hold of his brother, as one of his father's household, saying, You have raiment, be you our ruler, and let my meat be under you. + +And he shall answer in that day, and say, I will not be your ruler; for I have no bread in my house, nor raiment: I will not be the ruler of this people. + +For Jerusalem is +3:8 +Or, +forsaken, +or, +let go. + ruined, and Judea has fallen, and their tongues +have spoken with iniquity, disobedient +as they are towards the Lord. + +Therefore now their glory has been brought low, and the shame of their countenance has withstood them, and they have proclaimed their sin as Sodom, and made it manifest. + +Woe to their soul, for they have devised an evil counsel against themselves, saying against themselves, Let us bind the just, for he is burdensome to us: therefore shall they eat the fruits of their works. + +Woe to the transgressor! evils shall happen to him according to the works of his hands. + +O my people, your exactors +3:12 +Gr. +glean you. + strip you, and extortioners rule over you: O my people, they that pronounce you blessed lead you astray, and pervert the path of your feet. + +But now the Lord will stand up for judgment, and will enter into judgment with his people. + +The Lord himself shall enter into judgment with the elders of the people, and with their rulers: but why have you⌃ set my vineyard on fire, and +why is the spoil of the poor in your houses? + +Why do you⌃ wrong my people, and shame the face of the poor? + +Thus says the Lord, Because the daughters of Sion are haughty, and have walked with an outstretched neck, and with winking of the eyes, and motion of the feet, at the same time drawing their garments in trains, and at the same time sporting with their feet: + +therefore the Lord will humble the chief daughters of Sion, and the Lord will expose their form in that day; + +and the Lord will take away the glory of their raiment, the curls and the fringes, and the crescents, + +and the chains, and the ornaments of their faces, + +and the array of glorious ornaments, and the armlets, and the bracelets, and the wreathed work, and the finger-rings, and the ornaments for the right hand, + +and the ear-rings, and the garments with scarlet borders, and the garments with purple grounds, and the shawls to be worn in the house, and the Spartan transparent dresses, and those made of fine linen, and the purple +ones, and the scarlet +ones, and the fine linen, interwoven with gold and purple, and the light coverings for couches. + +And there shall be instead of a sweet smell, dust; and instead of a girdle, you shall gird yourself with a rope; and instead of a golden ornament for the head, you shall have baldness on account of your works; and instead of a tunic with a scarlet ground, you shall gird yourself with sackcloth. + +And your most beautiful son whom you love shall fall by the sword; and your mighty men shall fall by the sword, and shall be brought low. + +And the +3:24 +Gr. +cases, +or, +repositories. + stores of your ornaments shall mourn, and you shall be left alone, and shall be levelled with the ground. + +

+ + +

And seven women shall take hold of one man, saying, We will eat our own bread, and wear our own raiment: only let your name be called upon us, +and take away our reproach. + +And in that day God shall shine gloriously in counsel on the earth, to exalt and glorify the remnant of Israel. + +And it shall be, +that the remnant left in Sion, and the remnant left in Jerusalem, +even all that are +4:3 +Gr. +written for life. + appointed to life in Jerusalem, shall be called holy. + +For the Lord shall wash away the filth of the sons and daughters of Sion, and shall purge out the blood from the midst of them, with the spirit of judgment, and the spirit of burning. + +And he shall come, and it shall be with regard to every place of mount Sion, yes, all the region round about it shall a cloud overshadow by day, and +there shall be as it were the smoke and light of fire burning by night: and upon all the glory shall be a defence. + +And it shall be for a shadow from the heat, and as a shelter and a hiding place from inclemency +of weather and from rain. + +

+ + +

Now I will sing to +my beloved a song of my beloved concerning my vineyard. +My beloved had a vineyard on a +5:1 +Gr. +horn, so +Heb. + high hill in a fertile place. + +And I made a hedge round it, and dug a trench, and planted a choice vine, and built a tower in the midst of it, and dug a place for the wine-vat in it: and I waited +for it to bring forth grapes, and it brought forth thorns. + +And now, you⌃ dwellers in Jerusalem, and +every man of Juda, judge between me and my vineyard. + +What shall I do any more to my vineyard, that I have not done to it? Whereas I expected +it to bring forth grapes, but it has brought forth thorns. + +And now I will tell you what I will do to my vineyard: I will take away its hedge, and it shall be for a spoil; and I will pull down its walls, and it shall be +left to be trodden down. + +And I will forsake my vineyard; and it shall not be pruned, nor dug, and thorns shall come up upon it as on barren land; and I will command the clouds to rain no rain upon it. + +For the vineyard of the Lord of hosts is the house of Israel, and +5:7 +Gr. +a man. + the men of Juda +his beloved plant: I expected +it to bring forth judgment, and it brought forth iniquity; and not righteousness, but a cry. + +Woe +to them that join house to house, and add field to field, that they may take away something of their neighbor's: will you⌃ dwell alone upon the land? + +For these things have reached the ears of the Lord of hosts: for though many houses should be built, many and fair houses shall be desolate, and there shall be no inhabitants in them. + +For where ten yoke of oxen plow +the land shall yield one , and he that sows six homers shall produce three measures. + +Woe +to them that rise up in the morning, and follow strong drink; who wait +at it till evening: for the wine shall inflame them. + +For they drink wine with harp, and lute, and drums, and pipes: but they regard not the works of the Lord, and consider not the works of his hands. + +Therefore my people have been taken captive, because they know not the Lord: and there has been a multitude of dead +bodies, because of hunger and of thirst for water. + +Therefore +5:14 +Gr. +Hades. + hell has enlarged its desire and opened its mouth without ceasing: and her glorious and great, and her rich and her pestilent men shall go down +into it. + +And the mean man shall be brought low, and the great man shall be disgraced, and the lofty eyes shall be brought low. + +But the Lord of hosts shall be exalted in judgment, and the holy God shall be glorified in righteousness. + +And they that were spoiled shall be fed as bulls, and lambs shall feed on the waste places of them that are taken away. + +Woe +to them that draw sins to them as with a long rope, and iniquities as with a thong of the heifer's yoke: + +who say, Let him speedily hasten what he will do, that we may see +it: and let the counsel of the Holy One of Israel come, that we may know +it. + +Woe +to them that call evil good, and good evil; who make darkness light, and light darkness; who make bitter sweet, and sweet bitter. + +Woe +to them that are wise in their own conceit, and knowing in their own sight. + +Woe to the strong +ones of you that drink wine, and the mighty +ones that mingle strong drink: + +who justify the ungodly for rewards, and take away the righteousness of the righteous. + +Therefore as stubble shall be burnt by a coal of fire, and shall be consumed by a violent flame, their root shall be as chaff, and their flower shall go up as dust: for they rejected the law of the Lord of hosts, and insulted the word of the Holy One of Israel. + +Therefore the Lord of hosts was greatly angered against his people, and he reached forth his hand upon them, and struck them: and the mountains were troubled, and their carcasses were as dung in the midst of the way: yet for all this his anger has not been turned away, but his hand is yet +5:25 +Gr. +High. + raised. + +Therefore shall he lift up a signal to the nations that are afar, and shall hiss for them from the end of the earth; and, behold, they are coming very quickly. + +They shall not hunger nor be weary, neither shall they slumber nor sleep; neither shall they loose their girdles from their loins, neither shall their shoe-latchets be broken. + +Whose arrows are sharp, and their bows bent; their horses' hoofs are counted as solid rock: their chariot-wheels are as a storm. + +They rage as lions, and draw near as a lion's whelps: and he shall seize, and roar as a wild beast, and he shall cast +them forth, and there shall be none to deliver them. + +And he shall roar on account of them in that day, as the sound of the swelling sea; and they shall look to the land, and, behold, +there shall be thick darkness in their perplexity. + +

+ + +

And it came to pass in the year in which king Ozias died, +that I saw the Lord sitting on a high and exalted throne, and the house was full of his glory. + +And seraphs stood round about him: each one had six wings: and with two they covered +their face, and with two they covered +their feet, and with two they flew. + +And one cried to the other, and they said, Holy, holy, holy +is the Lord of hosts: the whole earth is full of his glory. + +And the lintel +6:4 +Gr. +was lifted. + shook at the voice they uttered, and the house was filled with smoke. + +And I said, Woe is me, for I am pricked to the heart; for being a man, and having unclean lips, I dwell in the midst of a people having unclean lips; and I have seen with my eyes the King, the Lord of hosts. + +And there was sent to me one of the seraphs, and he had in his hand a coal, which he had taken off the altar with the tongs: + +and he touched my mouth, and said, Behold, this has touched your lips, and will take away your iniquities, and will purge off your sins. + +And I heard the voice of the Lord, saying, Whom +6:8 +Or, +should I send? + shall I send, and who will go to this people? And I said, behold, I am +here, send me. And he said, Go, and say to this people, + +You⌃ shall hear indeed, but you⌃ shall not understand; and you⌃ shall see indeed, but you⌃ shall not perceive. + + +6:10 +Matt 13:15; Mark 4:12 + For the heart of this people has become 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 be converted, and I should heal them. + +And I said, How long, O Lord? And he said, Until cities be deserted +6:11 +Compare use of παρὰ, Jer 40.(33) 10,12; also 1 Cor 12.15,16. + by reason of their not being inhabited, and the houses by reason of there being no men, and the land shall be left desolate. + +And after this God shall remove the men far off, and they that are left upon the land shall be multiplied. + +And yet there +6:13 +Gr. +is. + shall be a tenth upon it, and again it shall be for a spoil, as a turpentine tree, and as an acorn when it falls out of its husk. + +

+ + +

And it came to pass in the days of Achaz +the son of Joatham, the son of Ozias, king of Juda, there came up Rasim king of Aram, and Phakee son of Romelias, king of Israel, against Jerusalem to war against it, but they could not +7:1 +Lit. +besiege See +Heb. + take it. + +And a message was brought to the house of David, saying, Aram has conspired with Ephraim. And his soul was amazed, and the soul of his people, as in a wood a tree is moved by the wind. + +And the Lord said to Esaias, Go forth to meet Achaz, you, and your son Jasub who is left, to the pool of the upper way of the fuller's field. + +And you shall say to him, Take care to be quiet, and fear not, neither let your soul be disheartened because of these two smoking firebrands: for when my fierce anger is over, I will heal again. + +And +as for the son of Aram, and the son of Romelias, forasmuch as they have devised an evil counsel, +saying, + +We will go up against Judea, and having conferred with them we will turn them away to our side, and we will make the son of Tabeel king of it; + +thus says the Lord of hosts, This counsel shall not abide, nor come to pass. + +But the head of Aram is Damascus, and the head of Damascus, Rasim; and yet within sixty and five years the kingdom of Ephraim shall cease from +being a people. + +And the head of Ephraim is Somoron, and the head of Somoron the son of Romelias: but +7:9 +Comp. +Heb. + if you⌃ believe not, neither will you⌃ at all understand. + +And the Lord again spoke to Achaz, saying, + +Ask for yourself a sign of the Lord your God, in the depth or in the height. + +And Achaz said, I will not ask, neither will I tempt the Lord. + +And he said, Hear you⌃ now, O house of David; is it a little thing for you to contend with men? and how do you⌃ contend against the Lord? + +Therefore the Lord himself shall give you a sign; +7:14 +Matt 1:23 + behold, a virgin shall conceive in the womb, and shall bring forth a son, and you shall call his name Emmanuel. + +Butter and honey shall he eat, before he knows either to prefer evil +or choose the good. + +For before the child shall know good or evil, he refuses evil, to choose the good; and the land shall be forsaken which you are afraid of because of the two kings. + +But God shall bring upon you, and upon your people, and upon the house of your father, days which have never come, from the day that Ephraim took away from Juda the king of the Assyrians. + +And it shall come to pass in that day that the Lord shall hiss for the flies, +7:18 +Or, +which part +of the enemy, + etc. shall rule over the river of Egypt; but according to +Alex. +the reading in the text is the right one. + which +insect shall rule over a part of the river of Egypt, and for the bee which is in the land of the Assyrians. + +And they all shall enter into the clefts of the land, and into the holes of the rocks, and into the caves, and into every ravine. + +In that day the Lord shall shave with the hired razor of the king of Assyria beyond the river the head, and the hairs of the feet, and will remove the beard. + +And it shall come to pass in that day, +that a man shall rear a heifer, and two sheep. + +And it shall come to pass from their +7:22 +Alex. +ποιεῖν, 'giving.' + drinking an abundance of milk, +that every one that is left on the land shall eat butter and honey. + +And it shall come to pass in that day, +for every place where there shall be a thousand vines at a thousand shekels, they shall become +7:23 +Gr. +for land and for a thorn. + barren land and thorns. + + +Men shall enter there with arrow and bow; for all the land shall be +barren ground and thorns. + +And every mountain shall be certainly plowed: there shall no fear come there: for there shall be from +among the +barren ground and thorns that whereon cattle shall feed and oxen shall tread. + +

+ + +

And the Lord said to me, Take to yourself a volume of a great new +8:1 +Alex. +paper, +or, +parchment. + +book, and write in it with a man's pen concerning the making a rapid plunder of spoils; for it is near at hand. + +And make me witnesses +of faithful men, Urias, and Zacharias the son of Barachias. + +And I went in to the prophetess; and she conceived, and bore a son. And the Lord said to me, Call his name, Spoil quickly, plunder speedily. + +For before the child shall know +how to call +his father or +his mother, +one shall take the power of Damascus and the spoils of Samaria before the king of the Assyrians. + +And the Lord spoke to me yet again, +saying, + +Because this people chooses not the water of Siloam that goes softly, but wills to have Rassin, and the son of Romelias +to be king over you; + +therefore, behold, the Lord brings up upon you the water of the river, strong and abundant, +even the king of the Assyrians, and his glory: and he shall come up over every valley of yours, and shall walk over every wall of yours: + +and he shall take away from Juda +every man who shall be able to lift up his head, +and every one able to accomplish anything; and his camp shall fill the breadth of your land, +O +8:8 +Heb. Immanuel. + God with us. + +Know, you⌃ Gentiles, and be conquered; listen you⌃, even to the extremity of the earth: be conquered, after you⌃ strengthened yourselves; for even if you⌃ should again strengthen yourselves, you⌃ shall again be conquered. + +And whatever counsel you⌃ shall take, the Lord shall bring it to nothing; and whatever word you⌃ shall speak, it shall not stand among you: for God is with us. + +Thus says the Lord, With a strong hand they +8:11 +Gr. +disobey. + revolt from the course of the way of this people, saying, + +Let them not say, +It is hard, for whatever this people says, is hard: but fear not you⌃ their fear, neither be dismayed. + +Sanctify you⌃ the Lord himself; and +8:13 +Or, +let him be. + he shall be your fear. + +And if you shall trust in him, he shall be to you for a sanctuary; and you⌃ shall not come against +him as against +8:14 +Rom 9:33 + a stumbling-stone, neither as against the falling of a rock: but the houses of Jacob are in a snare, and the dwellers in Jerusalem in a pit. + +Therefore many among them shall be weak, and fall, and be crushed; and they shall draw near, and men shall be taken securely. + +Then shall those who seal themselves that they may +8:16 +Alex. +— 'not.' + not learn the law be made manifest. + +And +one shall say, I will wait for God, who has turned away his face from the house of Jacob, and I will trust in him. + + +8:18 +Heb 2:13 + Behold I and the children which God has given me: and they shall be +for signs and wonders in the house of Israel from the Lord of hosts, who dwells in mount Sion. + +And if they should say to you, Seek +8:19 +Gr. +ventriloquists. + those who have in them a divining spirit, and them that speak out of the earth, them that speak vain words, who speak out of their belly: shall not a nation diligently seek to their God? why do they seek to the dead concerning the living? + +For he has given the law for a help, that they should not speak according to this word, concerning which there are no +8:20 +See +Heb. + gifts to give for it. + +And famine shall come sorely upon you, and it shall come to pass, +that when you⌃ shall be hungry, you⌃ shall be grieved, and you⌃ shall speak ill of the prince and your fathers' ordinances: and they shall look up to heaven above, + +and they shall look on the earth below, and behold severe distress, and darkness, affliction, and +8:22 +Or, +a strait. + anguish, and darkness so that +one can’t see; and he that is in anguish shall not be distressed only for a time. + +

+ + +

Drink this first. +9:1 +Or, +do it quickly, +i.e. +‘drink’; See +Hebrew. + Act quickly, +9:1 +Matt 4:15,16 + O land of Zabulon, land of Nephthalim, and the rest +inhabiting the sea-coast, and +the land beyond Jordan, Galilee of the Gentiles. + +O people walking in darkness, behold a great light: you⌃ that dwell in the region +and shadow of death, a light shall shine upon you. + +The +9:3 +Gr. +greatest part + multitude of the people which you have brought down in your joy, they shall even rejoice before you as they that rejoice in harvest, and as they that divide the spoil. + +Because the yoke that was laid upon them has been taken away, and the rod that was on their neck: for he has broken the rod of the exactors, as in the day of Madiam. + +For they shall compensate for every garment that has been acquired by deceit, and +all raiment with +9:5 +Gr. +reconciliation, +or, +exchange + restitution; and they shall be willing, +even if they were burnt with fire. + +For a child is born to us, and a son is given to us, whose government is upon his shoulder: and his name is called the Messenger of great counsel: +9:6 +Alex. ++ Wonderful, Counsellor, Mighty One, Potentate, Prince of Peace, Father of the age to come; Compare Heb 2:2. + for I will bring peace upon the princes, and health to him. + +His government shall be great, and of his peace there is no end: +it shall be upon the throne of David, and +upon his kingdom, to establish it, and to support +it with judgment and with righteousness, from henceforth and forever. The seal of the Lord of hosts shall perform this. + +The Lord has sent death upon Jacob, and it has come upon Israel. + +And all the people of Ephraim, and they that lived in Samaria shall know, who say in their pride and lofty heart, + +The bricks are fallen down, but come, let us hew stones, and cut down sycamores and cedars, and let us build for ourselves a tower. + +And God shall dash down them that rise up against him on mount Sion, and shall scatter his enemies; + + +even Syria from the rising of the sun, and the Greeks from the setting of the sun, who devour Israel with open mouth. For all this +his anger is not turned away, but still +his hand is exalted. + +But the people turned not until they were struck, and they sought not the Lord. + +So the Lord took away from Israel the head and tail, great and small, in one day: + +the old man, and them that respect persons, this is the head; and the prophet teaching unlawful things, he is the tail. + +And they that pronounce this people blessed shall mislead them; and they mislead them that they may devour them. + +Therefore the Lord shall not take pleasure in their young men, neither shall he have pity on their orphans or on their widows: for they are all transgressors and wicked, and every mouth speaks unjustly. For all this +his anger is not turned away, but +his hand is yet exalted. + +And iniquity shall burn as fire, and shall be devoured by fire as dry grass: and it shall burn in the thickets of the wood, and shall devour all that is round about the hills. + +The whole earth is set on fire because of the fierce anger of the Lord, and the people shall be as men burnt by fire: no man shall pity his brother. + +But +one shall turn aside to the right hand, for he shall be hungry; and shall eat on the left, and a man shall by no means be satisfied with eating the flesh of his own arm. + +For Manasses shall eat +the flesh of Ephraim, and Ephraim +the flesh of Manasses; for they shall besiege Juda together. For all this +his anger is not turned away, but +his hand is yet exalted. + +

+ + +

Woe to them that write wickedness; for when they write they do write wickedness, + +perverting the cause of the poor, violently wresting the judgment of the needy ones of my people, that the widow may be a prey to them, and the orphan a spoil. + +And what will they do in the day of visitation? for affliction shall come to you from afar: and to whom will you⌃ flee for help? and where will you⌃ leave your glory, + +that you⌃ may not fall into +10:4 +Heb. +and +Alex. ++ ‘and they shall fall under the slain’ + captivity? For all this +his wrath is not turned away, but +his hand is yet exalted. + +Woe to the Assyrians; the rod of my wrath, and anger are in their hands. + +I will send my wrath against a sinful nation, and I will charge my people to take plunder and spoil, and to trample the cities, and to make them dust. + +But he meant not thus, neither did he devise thus in his soul: but his mind shall change, and +that to destroy nations not a few. + +And if they should say to him, You alone are ruler; + +then shall he say, Have I not taken the country above Babylon and Chalanes, where the tower was built? and have I +not taken Arabia, and Damascus, and Samaria? + +As I have taken them, I will also take all the kingdoms: howl, you⌃ idols in Jerusalem, and in Samaria. + +For as I did to Samaria and her idols, so will I do also to Jerusalem and her idols. + +And it shall come to pass, when the Lord shall have finished doing all things on Mount Sion and Jerusalem, +that I will visit upon the +10:12 +Gr. +great mind + proud heart, +even upon the ruler of the Assyrians, and upon the boastful haughtiness of his eyes. + +For he said, I will act in strength, and in the wisdom of +my understanding I will remove the boundaries of nations, and will spoil their strength. + +And I will shake the inhabited cities: and I will take with my hand all the world as a nest: and I will even take them as eggs that have been left; and there is none that shall escape me, or contradict me. + +Shall the axe glorify itself without him that hews with it? or shall the saw lift up itself without him that uses it, as if one should lift a rod or staff? but it shall not be so; + +but the Lord of hosts shall send dishonor upon your honor, and burning fire shall be kindled upon your glory. + +And the light of Israel shall be for a fire, and he shall sanctify him with burning fire, and it shall devour the wood as grass. + +In that day the mountains shall be consumed, and the hills, and the forests, and +fire shall devour +both soul and body: and he that flees shall be as one fleeing from burning flame. + +And they that are left of them shall be a +small number, and a child shall write them. + +And it shall come to pass in that day +that the remnant of Israel shall no more +10:20 +Or, +repeat their offense + join themselves with, and the saved of Jacob shall no more trust in, them that injured them; but they shall trust in the Holy God of Israel, in truth. + +And the remnant of Jacob shall +trust on the mighty God. + + +10:22 +Rom 9:27,28 + And though the people of Israel be as the sand of the sea, a remnant of them shall be saved. + + +10:23 +Gr. +finishing — cutting + He will finish the work, and cut it short in righteousness: because the Lord will make a short work in all the world. + +Therefore thus says the Lord of hosts, Be not afraid, my people who dwell in Sion, of the Assyrians, because he shall strike you with a rod: for I am bringing a stroke upon you, that +you may see the way of Egypt. + +For yet a little while, and the indignation shall cease: but my wrath shall be against their +10:25 +sc. +of their enemies + council. + +And God will stir up +enemies against them, according to the stroke of Madiam in the place of affliction: and his wrath shall be by the way of the sea, +even to the way that leads to Egypt. + +And it shall come to pass in that day, +that his yoke shall be taken away from your shoulder, and his fear from you, and the yoke shall be destroyed from off your shoulders. + +For he shall arrive at the city of Angai, and shall pass on to Maggedo, and shall lay up his stores in Machmas. + +And he shall pass by the valley, and shall arrive at Angai: fear shall seize upon Rama, the city of Saul. + +The daughter of Gallim shall flee; Laisa shall hear; one shall hear in Anathoth. + +Madebena also is amazed, and the inhabitants of Gibbir. + +Exhort you⌃ +them today to remain in the way: exhort you⌃ +beckoning with the hand the mountain, the daughter of Sion, even you⌃ hills that are in Jerusalem. + +Behold, the Lord, the Lord of hosts, will mightily confound the glorious ones; and the haughty in pride shall be crushed, and the lofty shall be brought low: + +and the lofty ones shall fall by the sword, and the Libanus shall fall with his lofty ones. + +

+ + +

+11:1 +Rom 15:12 + And there shall come forth a rod out of the root of Jesse, and a blossom shall come up from +his root: + +and the Spirit of God shall rest upon him, the spirit of wisdom and understanding, the spirit of counsel and strength, the spirit of knowledge and godliness shall fill him; + +the spirit of the fear of God. He shall not judge according to appearance, nor reprove according to report: + +but he shall judge the cause of the lowly, and shall reprove the lowly of the earth: and he shall strike the earth with the word of his mouth, and with the breath of his lips shall he destroy the ungodly one. + +And he shall have his loins girded with righteousness, and his sides clothed with truth. + +And the wolf shall feed with the lamb, and the leopard shall lie down with the kid; and the young calf and bull and lion shall feed together; and a little child shall lead them. + +And the ox and bear shall feed together; and their young shall be together: and the lion shall eat straw like the ox. + +And an infant shall put his hand on the holes of asps, and on the nest of young asps. + +And they shall not hurt, nor shall they at all be able to destroy any one on my holy mountain: for the whole +world is filled with the knowledge of the Lord, as much water +11:9 +Gr. +may cover + covers the seas. + +And in that day +11:10 +Rom 15:12 + there shall be a root of Jesse, and he that shall arise to rule over the Gentiles; in him shall the Gentiles trust, and his rest shall be glorious. + +And it shall be in that day, +that the Lord shall again show his hand, to be zealous for the remnant that is left of the people, which shall be left by the Assyrians, and +that from Egypt, and from the country of Babylon, and from Ethiopia, and from the Elamites, and from the rising of the sun, and out of Arabia. + +And he shall lift up a standard for the nations, and he shall gather the lost ones of Israel, and he shall gather the dispersed of Juda from the four corners of the earth. + +And the envy of Ephraim shall be taken away, and the enemies of Juda shall perish: Ephraim shall not envy Juda, and Juda shall not afflict Ephraim. + +And they shall fly in the ships of the Philistines: they shall at the same time spoil the +11:14 +sc. +the west + sea, and them +that come from the east, and Idumea: and they shall lay their hands on Moab first; but the children of Ammon shall first obey +them. + +And the Lord shall make desolate the sea of Egypt; and he shall lay his hand on the river with a strong wind, and he shall +11:15 +q. d. +form by striking. + strike the seven channels, so that men shall pass through it dry-shod. + +And there shall be a passage for my people that is left in Egypt: and it shall be to Israel as the day when he came forth out of the land of Egypt. + +

+ + +

And in that day you shall say, I +will bless you, O Lord; for you were angry with me, but you have turned aside your wrath, and have pitied me. + +Behold, my God is my Saviour; I will trust in him, and not be afraid: for the Lord is my glory and my praise, and is become my salvation. + +Draw you⌃ therefore water with joy out of the wells of salvation. + +And in that day you shall say, sing to the Lord, call aloud upon his name, proclaim his glorious +deeds among the Gentiles; make mention that his name is exalted. + +Sing praise to the name of the Lord; for he has done great +things: declare this in all the earth. + +Exalt and rejoice, you⌃ that dwell in Sion: for the Holy One of Israel is exalted in the midst +12:6 +Heb. +and +Alex. +‘of you’ + of her. + +

+ + +

THE VISION WHICH ESAIAS SON OF AMOS SAW AGAINST BABYLON. + +Lift up a standard on the mountain of the plain, exalt the voice to them, beckon with the hand, open +the gates, you⌃ rulers. + +I give command, and I bring them: giants are coming to fulfil my wrath, rejoicing at the same time and insulting. + +A voice of many nations on the mountains, +even like +to that of many nations; a voice of kings and nations gathered together: the Lord of hosts has given command to +13:4 +Lit. +fighting with armor or weapons + a warlike nation, + +to come from a land afar off, from the utmost foundation of heaven; the Lord and his warriors +are coming to destroy all the world. + +Howl you⌃, for the day of the Lord is near, and destruction from God shall arrive. + +Therefore every hand shall become powerless, and every soul of man shall be dismayed. + +The elders shall be troubled, and pangs shall seize them, as of a woman in travail: and they shall mourn one to another, and shall be amazed, and shall change their countenance as a flame. + +For behold! the day of the Lord is coming which can’t be +13:9 +Gr. +healed + escaped, +a day of wrath and anger, to make the world desolate, and to destroy sinners out of it. + +For the stars of heaven, and Orion, and all the host of heaven, shall not give their light; and it shall be dark at sunrise, and the moon shall not give her light. + +And I will command evils for the whole world, and +will visit their sins on the ungodly: and I will destroy the pride of transgressors, and will bring low the pride of the haughty. + +And they that are left shall be more precious than gold tried in the fire; and a man shall be more precious than the stone that is in Suphir. + +For the heaven shall be enraged, and the earth shall be shaken from her foundation, because of the fierce anger of the Lord of hosts, in the day in which his wrath shall come on. + +And they that are left shall be as a fleeing fawn, and as a stray sheep, and there shall be none to gather +them: so that a man shall turn back to his people, and a man shall flee to his own land. + +For whoever shall be taken shall be overcome; and they that are gathered together shall fall by the sword. + +And they shall dash their children before their eyes; and they shall spoil their houses, and shall take their wives. + +Behold, I will stir up against you the Medes, who do not regard silver, neither have they need of gold. + +They shall break the bows of the young men; and they shall have no mercy on your children; nor shall their eyes spare your children. + +And Babylon, which is called glorious by the king of the Chaldeans, shall be as +when God overthrew Sodoma, and Gomorrha. + +It shall never be inhabited, neither shall any enter into it for many generations: neither shall the Arabians pass through it; nor shall shepherds at all rest in it. + +But wild beasts shall rest there; and the houses shall be filled with howling; and +13:21 +See Job 30:29; Isa 34:13, etc. + monsters shall rest there, and devils shall dance there, and satyrs shall dwell there; and hedgehogs shall make their nests in their houses. +13:21 +See Heb 10.37; Hab 2.3 + It will come soon, and will not wait. + +

+ + +

And the Lord will have mercy on Jacob, and will yet choose Israel, and they shall rest on their land: and the stranger shall be added to them, yes, shall be added to the house of Jacob. + +And the Gentiles shall take them, and bring them into their place: and they shall +14:2 +i.e. +the Israelites + inherit them, and +14:2 +i.e. +the Gentiles + they shall be multiplied upon the land for servants and handmaidens: and they that took them captives shall become captives +to them; and they that had lordship over them shall be under +their rule. + +And it shall come to pass in that day, +that the Lord shall give you rest from your sorrow and vexation, +and from your hard servitude wherein you did serve them. + +And you shall take up this lamentation against the king of Babylon, +14:4 +Alex. ++ 'and you shall say in that day' + How has the extortioner ceased, and the taskmaster ceased! + +The Lord has broken the yoke of sinners, the yoke of princes. + +Having struck a nation in wrath, with an incurable plague, striking a nation with a wrathful plague, which spared +them not, he rested in quiet. + +All the earth cries aloud with joy: + +the trees also of Libanus rejoice against you, and the cedar of Libanus, +saying, From the time that you have been laid low, no one has come up to cut us down. + +Hell from beneath is provoked to meet you: all the great ones that have ruled over the earth have risen up together against you, they that have raised up from their thrones all the kings of the nations. + +All shall answer and say to you, You also have been taken, even as we; and you are numbered among us. + +Your glory has come down to Hades, and your great mirth: under you they shall spread corruption, and the worm shall be your covering. + +How has Lucifer, that rose in the morning, fallen from heaven! He that sent +orders to all the nations is crushed to the earth. + +But you said in your heart, I will go up to heaven, I will set my throne above the stars of heaven: I will sit on a lofty mount, on the lofty mountains toward the north: + +I will go up above the clouds: I will be like the Most High. + +But now you shall go down to hell, even to the foundations of the earth. + +They that see you shall wonder at you, and say, +14:16 +See chap 5:25. + This is the man that troubled the earth, that made kings to shake; + +that made the whole world desolate, and destroyed its cities; he loosed not those who were in captivity. + +All the kings of the nations lie in honor, +every man in his house. + +But you shall be cast forth on the mountains, as a loathed carcass, with many dead who have been pierced with swords, going down to the grave. + +As a garment defiled with blood shall not be pure, so neither shall you be pure; because you have destroyed my land, and have slain my people: you shall not endure for ever, —you an evil seed. + +Prepare your children to be slain for the sins of their father; that they arise not, and inherit the earth, nor fill the earth with wars. + +And I will rise up against them, says the Lord of hosts, and I will destroy their name, and remnant, and seed: thus says the Lord. + +And I will make the region of Babylon desert, so that hedgehogs shall dwell +there, and it shall come to nothing: and I will make it a pit of clay for destruction. + +Thus says the Lord of hosts, As I have said, so it shall be: and as I have purposed, so +the matter shall remain: + + +even to destroy the Assyrians upon my land, and upon my mountains: and they shall be for trampling; and their yoke shall be taken away from them, and their glory shall be taken away from their shoulders. + +This is the purpose which the Lord has purposed upon the whole earth: and this the hand that is uplifted against all the nations. + +For what the Holy God has purposed, who shall frustrate? and who shall turn back his uplifted hand? + +In the year in which king Achaz died this word came. + +Rejoice not, all you⌃ Philistines, because the yoke of him that struck you is broken: for out of the seed of the serpent shall come forth the young asps, and their young shall come forth flying serpents, + +And the poor shall be fed by him, and poor men shall rest in peace: but he shall destroy your seed with hunger, and shall destroy your remnant. + +Howl, you⌃ gates of cities; let the cities be troubled and cry, +even all the Philistines: for smoke is coming from the north, and there is no +possibility +14:31 +Gr. +of being + of living. + +And what shall the kings of the nations answer? That the Lord has founded Sion, and by him the poor of the people shall be saved. + +

+ + +

THE WORD AGAINST THE LAND OF MOAB. By night the land of Moab shall be destroyed; for by night the wall of the land of Moab shall be destroyed. + +Grieve for yourselves; for even Debon, where your altar is, shall be destroyed: there shall you⌃ go up to weep, over Nabau of the land of Moab: howl you⌃: baldness shall be on every head, +and all arms +shall be +15:2 +Gr. +cut to pieces + wounded. + +Gird yourselves with sackcloth in her streets: and lament upon her roofs, and in her streets, and in her ways; howl all of you with weeping. + +For Esebon and Eleale have cried: their voice was heard to Jassa: therefore the loins of the region of Moab cry aloud; her soul shall know. + +The heart of the region of Moab cries within her to Segor; for it is +as a heifer of three years old: and on the ascent of Luith they shall go up to you weeping by the way of Aroniim: she cries, Destruction, and trembling. + +The water of Nemerim shall be desolate, and the grass thereof shall fail: for there shall be no green grass. + +Shall +Moab even thus be delivered? for I +will bring the Arabians upon the valley, and they shall take it. + +For the cry has reached the border of the region of Moab, +even of Agalim; and her howling +has gone as far as the well of Aelim. + +And the water of Dimon shall be filled with blood: for I will bring Arabians upon Dimon, and I will take away the seed of Moab, and Ariel, and the remnant of Adama. + +

+ + +

I will send as it were reptiles on the land: is +not the mount of the daughter of Sion a desolate rock? + +For you shall be as a young bird taken away from a bird that has flown: +even you shall be +so, daughter of Moab: and then do you, O Arnon, + +take farther counsel, and continually make you a shelter from grief: they flee in darkness at mid-day; they are amazed; be not you led captive. + +The fugitives of Moab shall sojourn with you; they shall be to you a shelter from the face of the pursuer: for your alliance has been taken away, and the oppressing ruler has perished from off the earth. + +And a throne shall be established with mercy; and one shall sit upon it with truth in the tabernacle of David, judging, and earnestly seeking judgments, and hasting righteousness. + +We have heard of the pride of Moab; he is very proud. I have cut off his pride: your prophecy shall not be thus, +no not thus. + +Moab shall howl; for all shall howl in the land of Moab: but you shall care for them that dwell in Seth, and you shall not be ashamed. + +The plains of Esebon shall mourn, the vine of Sebama: swallowing up the nations, trample you⌃ her vines, even to Jazer: you⌃ shall not come together; wander you⌃ in the desert: they that were sent are deserted, for they have gone over to the sea. + +Therefore will I weep as with the weeping of Jazer for the vine of Sebama; Esebon and Eleale have cast down your trees; for I will trample on your harvest and on your vintages, and all +your plants shall fall. + +And gladness and rejoicing shall be taken away from the vineyards; and they shall not at all tread wine into the vats; for +the vintage has ceased. + +Therefore my belly shall sound as a harp for Moab, and +16:11 +Compare the Hebrew + you have repaired my inward parts as a wall. + +And it shall be to your shame, (for Moab is wearied at the altars,) that he shall go in to the idols thereof to pray, but they shall not be at all able to deliver him. + +This is the word which the Lord spoke against Moab, when he spoke. + +And now I say, in three years, of the years of an hireling, the glory of Moab shall be dishonored +with all his great wealth; and he shall be left few in number, and not honored. + +

+ + +

THE WORD AGAINST DAMASCUS. Behold, Damascus shall be taken away from among cities, and shall become a ruin; + +abandoned for ever, to +be a fold and resting-place for flocks, and there shall be none to go after them. + +And she shall no longer be a strong place for Ephraim to flee to, and there shall no longer be a kingdom in Damascus, or a remnant of Syrians; for you are no better than the children of Israel, +even than their glory; thus says the Lord of hosts. + +There shall be in that day a failure of the glory of Jacob, and the riches of his glory shall be shaken. + +And it shall be as if one should gather standing corn, and reap the grain of the ears; and it shall be as if one should gather ears in a rich valley; + +and +as if there should be left stubble therein, or +as it were the berries of an olive tree, two or three on the topmost bough, or +as if four or five should be left on their branches; thus says the Lord, the God of Israel. + +In that day a man shall trust in him that made him, and his eyes shall have respect to the Holy One of Israel. + +And they shall not at all trust in their altars, nor in the works of their hands, which their fingers made; and they shall not look to the trees, nor to their abominations. + +In that day your cities shall be deserted, as the Amorites and the Evaeans deserted +theirs, because of the children of Israel; and they shall be desolate. + +Because you have forsaken God your Saviour, and have not been mindful of the Lord your helper; therefore shall you plant a +17:10 +Gr. +faithless + false plant, and a false seed. + +In the day wherein you shall plant you shall be deceived; but if you sow in the morning, +the seed shall spring up for a crop in the day wherein you shall obtain an inheritance, and as a man's father, you shall obtain an inheritance for your sons. + +Woe +to the multitude of many nations, as the swelling sea, so shall you⌃ be confounded; and the +17:12 +Gr. +back; Complut. reads ἠχος, ‘noise’ + force of many nations shall sound like water; + +many nations like much water, as when much water rushes violently: and they shall drive him away, and pursue him afar, as the dust of chaff when men winnow before the wind, and as a storm whirling the dust of the wheel. + +Toward evening, and there shall be grief; before the morning, and he shall not be. This is the portion of them that spoiled you, and the inheritance to them that robbed you of your inheritance. + +

+ + +

Woe to you, you⌃ wings of the land of ships, beyond the rivers of Ethiopia. + + +18:2 +Gr. +He that sends + He sends messengers by the sea, and paper letters on the water: for swift messengers shall go to a lofty nation, and to a strange and harsh people. Who is beyond it? a nation not looked for, and trodden down. + +Now all the rivers of the land shall be inhabited as an inhabited country; their land shall be as when a signal is raised from a mountain; it shall be audible as the sound of a trumpet. + +For thus said the Lord to me, There shall be security in my city, as the light of noonday heat, and it shall be as a cloud of dew in the day of harvest. + +Before the reaping time, when the flower has been completely formed, and the unripe grape has put forth its flower and blossomed, then shall he take away the little clusters with pruning-hooks, and shall take away the small branches, and cut them off; + +And he shall leave +them together to the birds of the sky, and to the wild beasts of the earth: and the fowls of the sky shall be gathered upon them, and all the beasts of the land shall come upon him. + +In that time shall presents be brought to the Lord of hosts from a people afflicted and peeled, and from a people great from henceforth and for ever; a nation hoping and +yet trodden down, which is in a part of a river of his land, to the place where is the name of the Lord of hosts, the mount Sion. + +

+ + +

THE VISION OF EGYPT. Behold, the Lord sits on a swift cloud, and shall come to Egypt: and the idols of Egypt shall be moved at his presence, and their heart shall faint within them. + +And the Egyptians shall be stirred up against the Egyptians: and a man shall fight against his brother, and a man against his neighbor, city against city, and +19:2 +Alex. +‘district,’ the accent being different + law against +19:2 +Alex. +‘district,’ the accent being different + law. + +And the spirit of the Egyptians shall be troubled within them; and I will frustrate their counsel: and they shall enquire of their gods and their images, and +19:3 +Gr. +the ventriloquists + them that speak out of the earth, and them that have in them a divining spirit. + +And I will deliver Egypt into the hands of men, of cruel lords; and cruel kings shall rule over them: thus says the Lord of hosts. + +And the Egyptians shall drink the water that is by the sea, but the river shall fail, and be dried up. + +And the streams shall fail, and the canals of the river; and every +19:6 +Lit. +gathering; See Gen 1.9: also Jer 28. (51) 32. + reservoir of water shall be dried up, in every marsh also of reed and papyrus. + +And all the green herbage round about the river, and everything sown by the side of the river, shall be blasted with the wind and dried up. + +And the fishermen shall groan, and all that cast a hook into the river shall groan; they also that cast nets, and the anglers shall mourn. + +And shame shall come upon them that work fine flax, and them that +19:9 +Gr. +work at + make fine linen. + +And they that work at them shall be in pain, and all that make beer shall be grieved, and be pained in their souls. + +And the princes of Tanis shall be fools: +as for the king's wise counselors, their counsel shall be turned into folly: how will you⌃ say to the king, we are sons of wise men, sons of ancient kings? + +Where are now your wise men? and let them declare to you, and say, What has the Lord of hosts purposed upon Egypt? + +The princes of Tanis have failed, and the princes of Memphis are lifted up +with pride, and they shall cause Egypt to wander by tribes. + +For the Lord has prepared for them a spirit of error, and they have caused Egypt to err in all their works, as one staggers who is drunken and vomits also. + +And there shall be no work to the Egyptians, which shall make head or tail, or beginning or end. + +But in that day the Egyptians shall be as women, in fear and in trembling because of the hand of the Lord of hosts, which he shall bring upon them. + +And the land of the Jews shall be for a terror to the Egyptians: whoever shall name it to them, they shall fear, because of the counsel which the Lord of hosts has purposed concerning it. + +In that day there shall be five cities in Egypt speaking the language of Chanaan, and swearing by the name of the Lord of hosts; one city shall be called the +19:18 +Heb. city of destruction + city of Asedec. + +In that day there shall be an altar to the Lord in the land of the Egyptians, and a pillar to the Lord by its border. + +And it shall be for a sign to the Lord for ever in the land of Egypt: for they shall presently cry to the Lord by reason of them that afflict them, and he shall send them a man who shall save them; he shall judge and save them. + +And the Lord shall be known to the Egyptians, and the Egyptians shall know the Lord in that day; and they shall offer sacrifices, and shall vow vows to the Lord, and pay +them. + +And the Lord shall strike the Egyptians with a stroke, and shall completely heal them: and they shall return to the Lord, and he shall hear them, and thoroughly heal them. + +In that day there shall be a way from Egypt to the Assyrians, and the Assyrians shall enter into Egypt, and the Egyptians shall go to the Assyrians, and the Egyptians shall serve the Assyrians. + +In that day shall Israel be third with the Egyptians and the Assyrians, blessed in the land which the Lord of hosts has blessed, + +saying, Blessed be my people that is in Egypt, and that is among the Assyrians, and Israel my inheritance. + +

+ + +

In the year when Tanathan came to Azotus, when he was sent by Arna king of the Assyrians, and warred against Azotus, and took it; + +then the Lord spoke to Esaias the son of Amos, saying, Go and take the sackcloth off your loins, and loose your sandals from off your feet, and do thus, going naked and barefoot. + +And the Lord said, As my servant Esaias has walked naked and barefoot three years, there shall be three years for signs and wonders to the Egyptians and Ethiopians; + +for thus shall the king of the Assyrians lead the captivity of Egypt and the Ethiopians, young men and old, naked and barefoot, having the shame of Egypt exposed. + +And the Egyptians being defeated shall be ashamed of the Ethiopians, in whom they had trusted; for they were their glory. + +And they that dwell in this island shall say in that day, Behold, we trusted to flee to them for help, who could not save themselves from the king of the Assyrians: and how shall we be saved? + +

+ + +

THE VISION OF THE DESERT. As though a whirlwind should pass through the desert, coming from a desert, +even from such a land, + + +so a fearful and a grievous vision was declared to me: he that is treacherous deals treacherously, the transgressor transgresses. The Elamites are upon me, and the ambassadors of the Persians come against me: now will I groan and comfort myself. + +Therefore are my loins filled with feebleness, and pangs have seized me as a travailing woman: I dealt wrongfully that I might not hear; I hasted that I might not see. + +My heart wanders, and transgression +21:4 +Lit. +baptizes + overwhelms me; my soul is occupied with fear. + +Prepare the table, eat, drink: arise, you⌃ princes, and prepare +your shields. + +For thus said the Lord to me, Go and station a watchman for yourself, and declare whatever you shall see. + +And I saw two mounted horsemen, and a rider on an ass, and a rider on a camel. + +Listen with great attention, and call you Urias to the watch-tower: the Lord has spoken. I stood continually during the day, and I stood in the camp all night: + +and, behold, he comes riding in a chariot and pair: and he answered and said, Babylon is fallen, is fallen; and all her images and her idols have been crushed to the ground. + +Hear, you⌃ that are left, and you⌃ that are in pain, hear what things I have heard of the Lord of hosts +which the God of Israel has declared to us. THE VISION OF IDUMEA. + +Call to me out of Seir; guard you⌃ the bulwarks. + +I watch in the morning and the night: if you would enquire, enquire, and dwell by me. + +You may lodge in the forest +21:13 +Heb. of Arabia + in the evening, or in the way of Daedan. + +You⌃ that dwell in the country of Thaeman, bring water to meet him that is thirsty; + +meet the fugitives with bread, because of the multitude of the slain, and because of the multitude of them that lose their way, and because of the multitude of swords, and because of the multitude of bent bows, and because of the multitude of them that have fallen in war. + +For thus said the Lord to me, Yet a year, as the year of an hireling, +and the glory of the sons of Kedar shall fail: + +and the remnant of the strong bows of the sons of Kedar shall be small: for the Lord God of Israel has spoken +it. + +

+ + +

THE WORD OF THE VALLEY OF SION. What has happened to you, that now you⌃ are all gone up to the housetops which help you not? + +The city is filled with shouting +men: your slain are not slain with swords, nor are your dead those who have died in battle. + +All your princes have fled, and +your captives are tightly bound, and the mighty +men in you have fled far away. + +Therefore I said, Let me alone, I will weep bitterly; labor not to comfort me for the breach of the daughter of my people. + +For +it is a day of trouble, and of destruction, and of treading down, and +there is perplexity +sent from the Lord of hosts: they wander in the valley of Sion; they wander from the least to the greatest on the mountains. + +And the Elamites took +their quivers, and +there were men mounted on horses, and +there was a gathering for battle. + +And it shall be +that your choice valleys shall be filled with chariots, and horsemen shall block up your gates. + +And they shall uncover the gates of Juda, and they shall look in that day on the choice houses of the city. + +And they shall uncover the secret places of the houses of the citadel of David: and they saw that they were many, and that one +had turned the water of the old pool into the city; + +and that they +had pulled down the houses of Jerusalem, to fortify the wall of the city. + +And you⌃ procured to yourselves water between the two walls within the ancient pool: but you⌃ looked not to him that made it from the beginning, and regarded not him that created it. + +And the Lord, the Lord of hosts, called in that day for weeping, and lamentation, and +22:12 +Gr. +shaving + baldness, and for girding with sackcloth: + +but they engaged in joy and gladness, slaying calves, and killing sheep, so as to eat flesh, and drink wine; saying, Let us eat and drink; for to-morrow we die. + +And these things are revealed in the ears of the Lord of hosts: for this sin shall not be forgiven you, until you⌃ die. + +Thus says the Lord of hosts, Go into the chamber, to Somnas the +22:15 +Or, +steward + treasurer, and say to him, Why are you here? + +and what have you to do here, that you have here hewn yourself a sepulchre, and made yourself a sepulchre on high, and have graven for yourself a dwelling in the rock? + +Behold now, the Lord of hosts casts forth and will utterly destroy +such a man, and will take away your robe and your glorious crown, + +and will cast you into a great and unmeasured land, and there you shall die: and he will bring your fair chariot to shame, and the house of your prince to be trodden down. + +And you shall be removed from your stewardship, and from your place. + +And it shall come to pass in that day, that I will call my servant Eliakim the son of Chelcias: + +and I will put on him your robe, and I will grant him your crown with power, and I will give your stewardship into his hands: and he shall be as a father to them that dwell in Jerusalem, and to them that dwell in Juda. + +And I will give him the glory of David; and he shall rule, and there shall be none to speak against him: and I will give him the key +22:22 +Rev 3:7 + of the house of David +upon his shoulder; and he shall open, and there shall be none to shut; and he shall shut, and there shall be none to open. + +And I will make him a ruler in a sure place, and he shall be for a glorious throne of his father's house. + +And every one that is glorious in the house of his father shall trust in him, from the least to the greatest; and they shall depend upon him in that day. + +Thus says the Lord of hosts, The man that is fastened in the sure place shall be removed and be taken away, and shall fall; and the glory that is upon him shall be utterly destroyed: for the Lord has spoken it. + +

+ + +

THE WORD CONCERNING TYRE. Howl, you⌃ ships of Carthage; for she has perished, and +men no longer arrive from the land of the Citians: she is led captive. + +To whom are the dwellers in the island become like, the merchants of Phoenice, passing over the sea + +in great waters, a generation of merchants? as when the harvest is gathered in, +so are these traders with the nations. + +Be ashamed, O Sidon: the sea has said, yes, the strength of the sea has said, I have not travailed, nor brought forth, nor have I brought up young men, nor reared virgins. + +Moreover when it shall be heard in Egypt, sorrow shall seize them for Tyre. + +Depart you⌃ to Carthage; howl, you⌃ that dwell in this island. + +Was not this your pride from the beginning, before she was given up? + +Who has devised this counsel against Tyre? Is she inferior? or has she no strength? her merchants were the glorious princes of the earth. + +The Lord of hosts has purposed to bring down all the pride of the glorious ones, and to disgrace every glorious thing on the earth. + +Till your land; for ships no more come out of Carthage. + +And your hand prevails no more by sea, which +23:11 +See chap 5. 25; 14:16. + troubled kings: the Lord of hosts has given a command concerning Chanaan, to destroy the strength thereof. + +And +men shall say, You⌃ shall no longer at all continue to insult and injure the daughter of Sidon: and if you depart to the Citians, neither there shall you have rest. + +And +if you depart to the land of the Chaldeans, this also is laid waste by the Assyrians, for her wall is fallen. + +Howl, you⌃ ships of Carthage: for your strong hold is destroyed. + +And it shall come to pass in that day, +that Tyre shall be left seventy years, as the time of a king, as the time of a man: and it shall come to pass after seventy years, +that Tyre shall be as the song of a harlot. + +Take a harp, go about, O city, you harlot that have been forgotten; play well on the harp, sing many +songs, that you may be remembered. + +And it shall come to pass after the seventy years, +that God will visit Tyre, and she shall be again restored to her primitive state, and she shall be a mart for all the kingdoms of the world on the face of the earth. + +And her trade and her gain shall be holiness to the Lord: it shall not be gathered for them, but for those that dwell before the Lord, +even all her trade, to eat and drink and be filled, and for a covenant +and a memorial before the Lord. + +

+ + +

Behold, the Lord is about to lay waste the world, and will make it desolate, and will lay bare the surface of it, and scatter them that dwell therein. + +And the people shall be as the priest, and the servant as the lord, and the maid as the mistress; the buyer shall be as the seller, the lender as the borrower, and the debtor as his creditor. + +The earth shall be completely laid waste, and the earth shall be utterly spoiled: for the mouth of the Lord has spoken these things. + +The earth mourns, and the world is ruined, the lofty ones of the earth are mourning. + +And she has sinned by reason of her inhabitants; because they have transgressed the law, and changed the ordinances, +even the everlasting covenant. + +Therefore a curse shall consume the earth, because the inhabitants thereof have sinned: therefore the dwellers in the earth shall be poor, and few men shall be left. + +The wine shall mourn, the vine shall mourn, all the merry-hearted shall sigh. + +The mirth of timbrels has ceased, the sound of the harp has ceased. + +They are ashamed, they have not drunk wine; strong drink has become bitter to them that drink +it. + +All the city has become desolate: one shall shut his house so that none shall enter. + +There is a howling for the wine everywhere; all the mirth of the land has ceased, all the mirth of the land has departed. + +And cities shall be left desolate, and houses being left shall fall to ruin. + +All this shall be in the land in the midst of the nations, as if one should strip an olive tree, so shall they strip them; but when the vintage is done, + +these shall cry aloud; and they that are left on the land shall rejoice together in the glory of the Lord: the water of the sea shall be troubled. + +Therefore shall the glory of the Lord be in the isles of the sea; the name of the Lord shall be glorious. + +O Lord God of Israel, from the ends of the earth we have heard wonderful things, +and there is hope to the godly: but they shall say, Woe to the despisers, that despise the law. + +Fear, and a pit, and a snare, are upon you that dwell on the earth. + +And it shall come to pass, +that he that flees from the fear shall fall into the pit; and he that comes up out of the pit shall be caught by the snare: for windows have been opened in heaven, and the foundations of the earth shall be shaken, + +the earth shall be utterly confounded, and the earth shall be completely perplexed. + +It reels as a drunkard and one oppressed with wine, and the earth shall be shaken as a storehouse of fruits; for iniquity has prevailed upon it, and it shall fall, and shall not be able to rise. + +And God shall bring +his hand upon the host of heaven, and upon the kings of the earth. + +And they shall gather the multitude thereof into prisons, and they shall shut them into a strong hold: after many generations they shall be visited. + +And the brick shall decay, and the wall shall fall; for the Lord shall reign +24:23 +Heb. and +Alex. +‘in’ + from out of Sion, and out of Jerusalem, and shall be glorified before +his elders. + +

+ + +

O Lord God, I will glorify you, I will sing to your name; for you have done wonderful things, +even an ancient +and faithful counsel. So be it. + +For you have made cities a heap, +even cities +made strong that their foundations should not fall: the city of ungodly men shall not be built for ever. + +Therefore shall the poor people bless you, and cities of injured men shall bless you. + +For you have been a helper to every lowly city, and a shelter to them that were disheartened by reason of poverty: you shall deliver them from wicked men: +you have been a shelter of them that thirst, and a refreshing air to injured men. + + +We were as faint-hearted men thirsting in Sion, by reason of ungodly men to whom you did deliver us. + +And the Lord of hosts shall make +a feast for all the nations: on this mount they shall drink gladness, they shall drink wine: + +they shall anoint themselves with ointment in this mountain. Impart you all these things to the nations; for this is +God's counsel upon all the nations. + + +25:8 +1 Cor 15:54 + Death has prevailed and swallowed +men up; but again the Lord God has taken away every tear from every face. He has taken away the reproach of +his people from all the earth: for the mouth of the Lord has spoken it. + +And in that day they shall say, behold our God in whom we have trusted, and he shall save us: this +is the Lord; we have waited for him, and we have exulted, and will rejoice in our salvation. + +God will give rest on this mountain, and the country of Moab shall be trodden down, as they tread the floor with wagons. + +And he shall spread forth his hands, even as he also brings down +man to destroy +him: and he shall bring low his pride +in regard to the thing on which he has laid his hands. + +And he shall bring down the height of the refuge of the wall, and it shall come down even to the ground. + +

+ + +

In that day they shall sing this song in the land of Judea; Behold a strong city; and he shall make salvation +its wall and bulwark. + +Open you⌃ the gates, let the nation enter that keeps righteousness, and keeps truth, + +supporting truth, and keeping peace: for on you, O Lord, + +they have trusted with confidence for ever, the great, the eternal God; + +who have humbled and brought down them that dwell on high, you shall cast down strong cities, and bring them to the ground. + +And the feet of the meek and lowly shall trample them. + +The way of the godly is made straight: the way of the godly is also prepared. + +For the way of the Lord is judgment: we have hoped in your name, and on the remembrance +of you, + +which our soul longs for: my spirit seeks you very early in the morning, O God, for your commandments are a light on the earth: learn righteousness, you⌃ that dwell upon the earth. + +For the ungodly one is put down: no one who will not learn righteousness on the earth, shall be able to do the truth: let the ungodly be taken away, that he see not the glory of the Lord. + +O Lord, your arm is exalted, yet they knew it not: but when they know they shall be ashamed: jealousy shall seize upon an untaught nation, and now fire shall devour the adversaries. + +O Lord our God, give us peace: for you have rendered to us all things. + +O Lord our God, take possession of us: O Lord, we know not +any other beside you: we name your name. + +But the dead shall not see life, neither shall +26:14 +See Job 26:5. + physicians by any means raise +them up: therefore you have brought +wrath upon +them, and slain +them, and have taken away every male of them. Bring more evils upon them, O Lord; + +bring more evils on the glorious ones of the earth. + +Lord, in affliction I remembered you; your chastening was to us with small affliction. + +And as a woman in travail draws near to be delivered, +and cries out in her pain; so have we been to your beloved. + +We have conceived, O Lord, because of your fear, and have been in pain, and have brought forth the breath of your salvation, which we have wrought upon the earth: we shall not fall, but all that dwell upon the land shall fall. + +The dead shall rise, and they that are in the tombs shall be raised, and they that are in the earth shall rejoice: for +26:19 +See Ps 110 (109) + the dew from you is healing to them: but the land of the ungodly shall perish. + +Go, my people, enter into your closets, shut your door, hide yourself for a little season, until the anger of the Lord have passed away. + +For, behold, the Lord is bringing wrath from +his holy place upon the dwellers on the earth: the earth also shall disclose her blood, and shall not cover her slain. + +

+ + +

In that day God shall bring +his holy and great and strong sword upon the dragon, even the serpent that flees, upon the dragon, the crooked serpent: he shall destroy the dragon. + +In that day +there shall be a fair vineyard, +and a desire to commence +a song concerning it. + +I am a strong city, a city in a siege: in vain shall I water it; for it shall be taken by night, and by day the wall shall fall. + +There is no woman that has not taken hold of it; who will set me to watch stubble in the field? because of this enemy I have set her aside; therefore on this account the Lord has done all that he appointed. + +I am burnt up; they that dwell in her shall cry, Let us make peace with him, let us make peace, + +they that are coming are the children of Jacob. Israel shall bud and blossom, and the world shall be filled with his fruit. + +Shall he himself be thus struck, even as he struck? and as he killed, shall he be thus slain? + +Fighting and reproaching he will dismiss them; did you not meditate with a harsh spirit, to kill them with a wrathful spirit? + +Therefore shall the iniquity of Jacob be taken away; and this is his blessing, when I shall have taken away his sin; when they shall have broken to pieces all the stones of the altars as fine dust, and their trees shall not remain, and their idols shall be cut off, as a thicket afar off. + +The flock that lived +there shall be left, as a deserted flock; and +the ground shall be for a long time for pasture, and there shall flocks lie down to rest. + +And after a time there shall be in it no green thing because of +the grass being parched. Come hither, you⌃ women that come +27:11 +See +Heb. + from a sight; for it is a people of no understanding; therefore he that made them shall have no pity upon them, and he that formed them shall have no mercy +upon them. + +And it shall come to pass in that day +that God shall fence +men off from the channel of the river as far as Rhinocorura; but do you⌃ gather one by one the children of Israel. + +And it shall come to pass in that day +that they shall blow the great trumpet, and the lost ones in the land of the Assyrians shall come, and the lost ones in Egypt, and shall worship the Lord on the holy mountain in Jerusalem. + +

+ + +

Woe to the crown of pride, the hirelings of Ephraim, the flower that has fallen from the glory of the top of the fertile mountain, they that are drunken without wine. + +Behold, the anger of the Lord is strong and severe, as descending hail where there is no shelter, violently descending; as a great body of water sweeping away the soil, he shall make rest for the land. + +The crown of pride, the hirelings of Ephraim, shall be beaten down with the hands and with the feet. + +And the fading flower of the +28:4 +Gr. +hope of glory + glorious hope on the top of the high mountain shall be as the early fig; he that sees it, before he takes it into his hand, will desire to swallow it down. + +In that day the Lord of hosts shall be the crown of hope, the woven +crown of glory, to the remnant of the people. + +They shall be left in the spirit of judgment for judgment, and for the strength of them that hinder slaying. + +For these have trespassed through wine; they have erred through strong drink: the priest and the prophet are mad through strong drink, they are swallowed up by reason of wine, they have staggered +28:7 +Lit. +from + through drunkenness; they have erred: this is +their vision. + +A curse shall devour this counsel, for this +is their counsel for the sake of covetousness. + +To whom have we reported evils? and to whom have we reported a message? +even to those that are weaned from the milk, who are drawn from the breast. + +Expect you affliction on affliction, hope upon hope: yet a little, +and yet a little, + + +28:11 +1 Cor 14:21 + by reason of the contemptuous +words of the lips, by means of another language: for they shall speak to this people, saying to them, + +This is the rest to him that is hungry, and this is the calamity: but they would not hear. + +Therefore the oracle of God shall be to them affliction on affliction, hope on hope, yet a little, +and yet a little, that they may go and fall backward; and they shall be crushed and shall be in danger, and shall be taken. + +Therefore hear you⌃ the word of the Lord, you⌃ afflicted men, and you⌃ princes of this people that is in Jerusalem. + +Because you⌃ have said, We have made a covenant with Hades, and agreements with death; if the rushing storm should pass, it shall not come upon us: we have made falsehood our hope, and by falsehood shall we be protected: + +Therefore thus says the Lord, +even the Lord, +28:16 +Rom 9:33; 1 Pe 2:6 + Behold, I lay for the foundations of Sion a costly stone, a choice, a corner-stone, a precious +stone, for its foundations; and he that believes +on him shall by no means be ashamed. + +And I will cause judgment +to be for hope, and my compassion shall be for +just measures, and you⌃ that trust vainly in falsehood +shall fall: for the storm shall by no means pass by you, + + +28:18 +Or, +shall it not also? etc. + except it also take away your covenant of death, and your trust in Hades shall by no means stand: if the rushing storm should come upon you, you⌃ shall be beaten down by it. + +Whenever it shall pass by, it shall take you; morning by morning it shall pass by in the day, and in the night there shall be an evil hope. Learn to hear, + +you⌃ that are distressed; we can’t fight, but we are ourselves too weak for you to be gathered. + +The Lord shall rise up as a mountain of ungodly +men, and shall be in the valley of Gabaon; he shall perform his works with wrath, +even a work of bitterness, and his wrath shall deal strangely, and his destruction shall be strange. + +Therefore do not you⌃ rejoice, neither let your bands be made strong; for I have heard of works finished and cut short by the Lord of hosts, which he will execute upon all the earth. + +Listen, and hear my voice; attend, and hear my words. + +Will the plowman plow all the day? or will he prepare the seed beforehand, before he tills the ground? + +Does he not, when he has levelled the surface thereof, then sow the small black poppy, or cumin, and afterward sow wheat, and barley, and millet, and bread-corn in your borders? + +So you shall be chastened by the judgment of your God, and shall rejoice. + +For the black poppy is not cleansed with harsh treatment, nor will a wagon-wheel pass over the cumin; but the black poppy is threshed with a rod, and the cumin shall be eaten with bread; + +for +28:28 +Gr. +I am + I will not be angry with you for ever, neither shall the voice of +28:28 +Gr. +bitterness trample you + my anger crush you. + +And these signs came forth from the Lord of hosts. Take counsel, exalt vain comfort. + +

+ + +

+29:1 +Or, +woe to + Alas for the city of Ariel, which David +29:1 +See +Heb. + besieged. Gather you⌃ fruits year by year; eat you⌃, for you⌃ shall eat with Moab. + +For I will grievously afflict Ariel: and her strength and her wealth shall be mine. + +And I will compass you about like David, and will raise a mound about you, and set up towers round you. + +And your words shall be brought down to the earth, and your words shall sink down to the earth, and your voice shall be as they that speak out of the earth, and your voice shall +29:4 +Gr. +become weak + be lowered to the ground. + +But the wealth of the ungodly shall be as dust from a wheel, and the multitude of them that oppress you as flying chaff, and it shall be suddenly as a moment, + +from the Lord of Hosts: for there shall be a visitation with thunder, and earthquake, and a loud +29:6 +Gr. +voice + noise, a rushing tempest, and devouring flame of fire. + +And the wealth of all the nations together, as many as have fought against Ariel, and all they that war against Jerusalem, and all who are gathered against her, and they that distress her, shall be as one that dreams in sleep by night. + +And as men drink and eat in sleep, and when they have arisen, the dream is vain: and as a thirsty man dreams as if he drank, and having arisen is still thirsty, and his soul has desired in vain: so shall be the wealth of all the nations, as many as have fought against the mount Sion. + +Faint you⌃, and be amazed, and be overpowered, not with strong drink nor with wine. + +For the Lord has made you to drink a spirit of deep sleep; and he shall close their eyes, and +the eyes of their prophets and of their rulers, who see secret things. + +And all these things shall be to you as the words of this sealed book, which if they shall give to a learned man, saying, Read this, he shall then say, I can’t read +it, for it is sealed. + +And this book shall be given into the hands of a man that is unlearned, and +one shall say to him, Read this; and he shall say, I am not learned. + +And the Lord has said, +29:13 +Matt 8:9 + This people draw near to me with their mouth, and they honor me with their lips, but their heart is far from me: but in vain do they worship me, teaching the commandments and doctrines of men. + +Therefore behold I will proceed to remove this people, and I will remove them: and +29:14 +1 Cor 1:19 + I will destroy the wisdom of the wise, and will hide the understanding of the prudent. + +Woe to them that deepen their counsel, and not by the Lord. Woe to them that take secret counsel, and whose works +29:15 +Gr. +shall be + are in darkness, and they say, Who has seen us? and who shall know us, or what we do? + +Shall you⌃ not be counted as clay of the potter? +29:16 +Rom 9:20 + Shall the thing formed say to him that formed it, You did not form me? or the work to the maker, You have not made me wisely? + + +Is it not yet a little while, and Libanus shall be changed as the mountains of Chermel, and Chermel shall be reckoned as a forest? + +And in that day the deaf shall hear the words of the book, and they that are in darkness, and they that are in mist: the eyes of the blind shall see, + +and the poor shall rejoice with joy because of the Lord, and they that had no hope among men shall be filled with joy. + +The lawless man has come to nothing, and the proud man has perished, and they that transgress mischievously have been utterly destroyed: + +and they that cause men to sin by a word: and men shall make all that reprove in the gates an offense, because they have unjustly turned aside the righteous. + +Therefore thus says the Lord concerning the house of Jacob, whom he set apart from Abraam, Jacob shall not now be ashamed, neither shall he now change countenance. + +But when their children shall have seen my works, they shall sanctify my name for my sake, and they sanctify the Holy One of Jacob, and shall fear the God of Israel. + +And they that erred in spirit shall know understanding, and the murmurers shall learn obedience, and the stammering tongues shall learn to speak peace. + +

+ + +

Woe to the apostate children, says the Lord: you⌃ have framed counsel, not by me, and covenants not by my Spirit, to add sins to sins: + + +even they that proceed to go down into Egypt, but they have not enquired of me, that they might be helped by Pharao, and protected by the Egyptians. + +For the protection of Pharaoh shall be to you a disgrace, and +there shall be a reproach to them that trust in Egypt. + +For there are princes in Tanes, evil messengers. + +In vain shall they labor +in seeking to a people, which shall not profit them for help, but +shall be for a shame and reproach. + +THE VISION OF THE QUADRUPEDS IN THE DESERT. In affliction and distress, +where are the lion and lion's whelp, thence +come also asps, and the young of flying asps, +there shall they be who bore their wealth on asses and camels to a nation which shall not profit them. + +The Egyptians shall help you utterly in vain: tell them, This your consolation is vain. + +Now then sit down and write these words on a tablet, and in a book; for these things shall be +30:8 +Gr. +for days in time. +Alex. +seasons + for +many long days, and even for ever. + +For the people is disobedient, false children, who would not hear the law of God: + +who say to the prophets, Report not to us; and to them that see visions, Speak +them not to us, but speak and report to us another error; + +and turn us aside from this way; remove from us this path, and remove from us the oracle of Israel. + +Therefore thus says the Holy One of Israel, Because you⌃ have refused to obey these words, and have trusted in falsehood; and because you have murmured, and been confident in this respect: + +therefore shall this sin be to you as a wall suddenly falling when a strong city has been taken, of which the fall is very near at hand. + +And the fall thereof shall be as the breaking of an earthen vessel, +as small fragments of a pitcher, so that you should not find among them a sherd, with which you might take up fire, and with which you should draw a little water. + +Thus says the Lord, the Holy Lord of Israel; When you shall turn and mourn, then you shall be saved; and you shall know where you were, when you did trust in vanities: +then your strength became vain, yet you⌃ would not listen: + +but you⌃ said, We will flee upon horses; therefore shall you⌃ flee: and, We will be aided by swift riders; therefore shall they that pursue you be swift. + +A thousand shall flee because of the voice of one, and many shall flee on account of the voice of five; until you⌃ be left as a signal-post upon a mountain, and as one bearing an ensign upon a hill. + +And the Lord will again wait, that he may pity you, and will therefore be exalted that he may have mercy upon you: because the Lord your God is a judge: blessed are they that +30:18 +Or, +wait for + stay themselves upon him. + +For the holy people shall dwell in Sion: and +whereas Jerusalem has +30:19 +Gr. +with weeping + wept bitterly, +saying, Pity me; he shall pity you: when he perceived the voice of your cry, he listened to you. + +And +though the Lord shall give you the bread of affliction and scant water, yet they that cause you to err shall no more at all draw near to you; for your eyes shall see those that cause you to err, + +and your ears shall hear the words of them that went after you to lead you astray, who say, This +is the way, let us walk in it, whether to the right or to the left. + +And you shall pollute the plated idols, and you shall grind to powder the gilt ones, and shall scatter them as the water of a removed +woman, and you shall thrust them forth as dung. + +Then shall there be rain to the seed of your land; and the bread of the fruit of your land shall be plenteous and rich: and your cattle shall feed in that day in a fertile and spacious place. + +Your bulls and your oxen that till the ground, shall eat chaff mixed with winnowed barley. + +And there shall be upon every lofty mountain and upon every high hill, water running in that day, when many shall perish, and when the towers shall fall. + +And the light of the moon shall be as the light of the sun, and the light of the sun shall be sevenfold in the day when the Lord shall heal the breach of his people, and shall heal the pain of your wound. + +Behold, the name of the Lord comes after a +long time, burning wrath: the word of his lips is with glory, a word full of anger, and the anger of his wrath shall devour as fire. + +And his breath, as rushing water in a valley, shall reach as far as the neck, and be divided, to confound the nations for +their vain error: error also shall pursue them, and +30:28 +Gr. +take them to their face + overtake them. + +Must you⌃ always rejoice, and go into my holy places continually, as they that keep a feast? and must you⌃ go with a pipe, as those that rejoice, into the mountain of the Lord, to the God of Israel? + +And the Lord shall make his glorious voice to be heard, and the wrath of his arm, to make a display with wrath and anger and devouring flame: he shall lighten terribly, and +his wrath shall be as water and violent hail. + +For by the voice of the Lord the Assyrians shall be overcome, +even by the stroke wherewith he shall strike them. + +And it shall happen to him from every side, +that they from whom their hope of assistance was, in which he trusted, themselves shall war against him in turn with drums and with harp. + +For you shall be required before +your time: has it been prepared for you also to reign? nay, God has +prepared for you a deep trench, wood piled, fire and much wood: the wrath of the Lord +shall be as a trench kindled with sulphur. + +

+ + +

Woe to them that go down to Egypt for help, who trust in horses and chariots, for they are many; and in horses, +which are a great multitude; and have not trusted in the Holy One of Israel, and have not sought the Lord. + +Therefore he has wisely brought evils upon them, and his word shall not be frustrated; and he shall rise up against the houses of wicked men, and against their vain hope, + +even an Egyptian, a man, and not God; the flesh of horses, and there is no help +in them: but the Lord shall bring his hand upon them, and the helpers shall fail, and all shall perish together. + +For thus said the Lord to me, As a lion would roar, or a lion's whelp over prey which he has taken, and cry over it, until the mountains are filled with his voice, and +the animals are awe-struck and tremble at the fierceness of his wrath: so the Lord of hosts shall descend to fight upon the mount Sion, +even upon her mountains. + +As birds flying, so shall the Lord of hosts defend; he shall defend Jerusalem, and he shall rescue, and save and deliver. + +Turn, you⌃ children of Israel, who devise a deep and sinful counsel. + +For in that day men shall renounce their silver idols and +their golden idols, which their hands made. + +And the Assyrian shall fall: not the sword of a great man, nor the sword of a mean man shall devour him; neither shall he flee from the face of the sword: but the young men shall be overthrown: + +for they shall be compassed with rocks as with a trench, and shall be worsted; and he that flees shall be taken. Thus says the Lord, Blessed is he that has a seed in Sion, and household friends in Jerusalem. + +

+ + +

For, behold, a righteous king shall reign, and princes shall govern with judgment. + +And a man shall hide his words, and be hidden, as from rushing water, and shall appear in Sion as a rushing river, glorious in a thirsty land. + +And they shall no more trust in men, but they shall incline their ears to hear. + +And the heart of the weak ones shall attend to hear, and the stammering tongues shall soon learn to speak peace. + +And they shall no more at all tell a fool to rule, and your servants shall no more at all say, Be silent. + +For the fool shall speak foolish words, and his heart shall meditate vanities, and to perform lawless deeds and to speak error against the Lord, to scatter hungry souls, and he will cause the thirsty souls to be empty. + +For the counsel of the wicked will devise iniquity, to destroy the poor with unjust words, and +32:7 +Gr. +disperse the words + ruin the cause of the poor in judgment. + +But the godly have devised wise +measures, and this counsel shall stand. + +Rise up, you⌃ rich women, and hear my voice; +32:9 +Gr. +daughters in hope + you⌃ confident daughters, listen to my words. + +Remember for a full year in pain, yet with hope: the vintage has been cut off; it has ceased, it shall by no means come again. + +Be amazed, be pained, you⌃ confident ones: strip you, bare yourselves, gird your loins; + +and beat your breasts, because of the pleasant field, and the fruit of the vine. + + +As for the land of my people, the thorn and grass shall come upon +it, and joy shall be removed from every house. + + +As for the rich city, the houses are deserted; they shall abandon the wealth of the city, +and the pleasant houses: and the villages shall be caves for ever, the joy of wild asses, shepherds' pastures; + +until the Spirit shall come upon you from on high, and Chermel shall be desert, and Chermel shall be counted for a forest. + +Then judgment shall abide in the wilderness, and righteousness shall dwell in Carmel. + +And the works of righteousness shall be peace; and righteousness shall ensure rest, and +the righteous shall be confident for ever. + +And his people shall inhabit a city of peace, and dwell in +it in confidence, and they shall rest with wealth. + +And if the hail should come down, it shall not come upon you; and they that dwell in the forests shall be in confidence, as those in the plain country. + +Blessed are they that sow by every water, where the ox and ass tread. + +

+ + +

Woe to them that afflict you; but no one makes you miserable: and he that deals perfidiously with you does not deal perfidiously: they that deal perfidiously shall be taken and given up, and as a moth on a garment, so shall they be spoiled. + +Lord, have mercy upon us; for we have trusted in you: the seed of the rebellious is gone to destruction, but our deliverance was in a time of affliction. + +By reason of the terrible sound the nations were dismayed for fear of you, and the heathen were scattered. + +And now shall the spoils of your small and great be gathered: as if one should gather locusts, so shall they mock you. + +The God who dwells on high is holy: Sion is filled with judgment and righteousness. + +They shall be delivered up to the law: our salvation is our treasure: there are wisdom and knowledge and piety toward the Lord; these are the treasures of righteousness. + +Behold now, these shall be terrified with fear of you: those whom you⌃ feared shall cry out because of you: messengers shall be sent, bitterly weeping, entreating for peace. + +For the ways of these shall be made desolate: the terror of the nations has been made to cease, and the covenant with these is taken away, and you⌃ shall by no means deem them men. + +The land mourns; Libanus is ashamed: Saron is become marshes; Galilee shall be +33:9 +Gr. +manifest + laid bare, and Chermel. + +Now will I arise, says the Lord, now will I be glorified; now will I be exalted. + +Now shall you⌃ see, now shall you⌃ perceive; the strength of your breath, shall be vain; fire shall devour you. + +And the nations shall be burnt up; as a thorn in the field cast out and burnt up. + +They that are afar off shall hear what I have done; they that draw near shall know my strength. + +The sinners in Sion have departed; trembling shall seize the ungodly. Who will tell you that a fire is kindled? Who will tell you of the eternal place? + +He that walks in righteousness, speaking rightly, hating transgression and iniquity, and shaking his hands from gifts, stopping his ears that he should not hear the judgment of blood, shutting his eyes that he should not see injustice. + +he shall dwell in a high cave of a strong rock: bread shall be given him, and his water shall be sure. + +You⌃ shall see a king with glory: your eyes shall behold a land from afar. + +Your soul shall meditate terror. Where are the scribes? where are the counselors, where is he that numbers them that are growing up, + + +even the small and great people? with whom he took not counsel, neither did he understand +a people of deep speech, so that a despised people should not hear, and there is no understanding to him that hears. + +Behold the city of Sion, +33:20 +Or, +salvation + our refuge: your eyes shall behold Jerusalem, a rich city, tabernacles which shall not be shaken, neither shall the pins of her tabernacle be moved for ever, neither shall her cords be at all broken: + +for the name of the Lord is great to you: you⌃ shall have a place, +even rivers and wide and spacious channels: you shall not go this way, neither a vessel with oars go +thereby. + +For my God is great: the Lord our judge shall not pass me by: the Lord is our prince, the Lord is our king; the Lord, he shall save us. + +Your cords are broken, for they had no strength: your meat has given way, it shall not spread the sails, it shall not bear a signal, until it be given up for plunder; therefore shall many lame men take spoil. + +And the people dwelling among them shall by no means say, +33:24 +Or, +I am sick + I am in pain: for their sin shall be forgiven them. + +

+ + +

Draw near, you⌃ nations; and listen, you⌃ princes; let the earth hear, and they that are in it; the world, and the people that are therein. + +For the wrath of the Lord is upon all nations, and +his anger upon the number of them, to destroy them, and give them up to slaughter. + +And their slain shall be cast forth, and their corpses; and their +ill savor shall come up, and the mountains shall be made wet with their blood. + +And all the powers of the heavens shall melt, and the sky shall be rolled up like a scroll: and all the stars shall fall like leaves from a vine, and as leaves fall from a fig tree. + +My sword has been made drunk in heaven: behold, it shall come down upon Idumea, and with judgment upon the people doomed to destruction. + +The sword of the Lord is filled with blood, it is glutted with fat, with the blood of goats and lambs, and with the fat of goats and rams: for the Lord has a sacrifice in Bosor, and a great slaughter in Idumea. + +And the mighty ones shall fall with them, and the rams and the bulls; and the land shall be +34:7 +Gr. +made drunken + soaked with blood, and shall be filled with their fat. + +For it is the day of judgment of the Lord, and the year of the recompence of Sion in judgment. + +And her valleys shall be turned into pitch, and her land into sulphur; and her land shall be as pitch burning night and day; + +and it shall never be quenched, and her smoke shall go up: it shall be made desolate throughout her generations, + +and for a long time birds and hedgehogs, and ibises and ravens shall dwell in it: and the measuring line of desolation shall be cast over it, and +34:11 +Vide supra, + 13:22. + satyrs shall dwell in it. + +Her princes shall be no more; for her kings and her great men shall be destroyed. + +And thorns shall spring up in their cities, and in her strong holds: and they shall be habitations of +34:13 +Vide supra, +Job 30. 29; Isa. 13. 21, etc. + monsters, and a court of ostriches. + +And devils shall meet with satyrs, and they shall cry one to the other: there shall satyrs rest, having found for themselves +a place of rest. + +There has the hedgehog made its nest, and the earth has safely preserved its young: there have the deer met, and seen one another's faces. + +They passed by in +full number, and not one of them perished: they sought not one another; for the Lord commanded them, and his Spirit gathered them. + +And he shall cast lots for them, and his hand has portioned out +their pasture, +saying, You⌃ shall inherit +the land for ever: they shall rest on it +through all generations. + +

+ + +

Be glad, you thirsty desert: let the wilderness exult, and flower as the lily. + +And the desert places of Jordan shall blossom and rejoice; the glory of Libanus has been given to it, and the honor of Carmel; and my people shall see the glory of the Lord, and the majesty of God. + + +35:3 +Heb 12:12 + Be strong, you⌃ relaxed hands and palsied knees. + +Comfort one another, you⌃ faint-hearted; be strong, fear not; behold, our God renders judgment, and he will render +it; he will come and save us. + +Then shall the eyes of the blind be opened, and the ears of the deaf shall hear. + +Then shall the lame man leap as an hart, and the tongue of the stammerers shall speak plainly; for water has burst forth in the desert, and a channel +of water in a thirsty land. + +And the dry land shall become pools, and a fountain of water shall +be poured into the thirsty land; there shall there be a joy of birds, ready habitations and marshes. + +There shall be there a pure way, and it shall be called a holy way; and there shall not pass by there any unclean person, neither shall there be there an unclean way; but the dispersed shall walk on it, and they shall not go astray. + +And there shall be no lion there, neither shall any evil beast go up upon it, nor at all be found there; but the redeemed and gathered on the Lord's behalf, shall walk in it, + +and shall return, and come to Sion with joy, and everlasting joy +shall be over their head; for on their head +shall be praise and exultation, and joy shall take possession of them: sorrow and pain, and groaning have fled away. + +

+ + +

Now it came to pass in the fourteenth year of the reign of Ezekias, +that Sennacherim, king of the Assyrians, came up against the strong cities of Judea, and took them. + +And the king of the Assyrians sent Rabsaces out of Laches to Jerusalem to king Ezekias with a large force: and he stood by the +36:2 +Gr. +in + conduit of the upper pool in the way of the fuller's field. + +And there went forth to him Heliakim the steward, the +son of Chelcias, and Somnas the scribe, and Joach the +son of Asaph, the recorder. + +And Rabsaces said to them, Say to Ezekias, Thus says the great king, the king of the Assyrians, Why are you secure? + +Is war carried on with counsel and +mere words of the lips? and now on whom do you trust, that you rebel against me? + +Behold, you trust on this bruised staff of reed, on Egypt: +as soon as a man leans upon it, it shall go into his hand, and pierce it: so is Pharao king of Egypt and all that trust in him. + +But if you⌃ say, We trust in the Lord our God; + +yet now make an agreement with my lord the king of the Assyrians, and I will give you two thousand horses, if you⌃ shall be able to set riders upon them. + +And how can you⌃ +then turn to the face of the +36:9 +Or, +local governors + satraps? They that trust on the Egyptians for horse and rider, are +our servants. + +And now, Have we come up against this land to fight against it without the Lord? The Lord said to me, Go up against this land, and destroy it. + +Then Eliakim and Somnas and Joach said to him, Speak to your servants in the Syrian tongue; for we understand +it: and speak not to us in the Jewish tongue: and therefore speak you in the ears of the men on the wall? + +And Rabsaces said to them, Has my lord sent me to your lord or to you, to speak these words? +has he not +sent me to the men that sit on the wall, that they may eat dung, and drink +their water together with you? + +And Rabsaces stood and cried with a loud voice in the Jewish language, and said, Hear you⌃ the words of the great king, the king of the Assyrians: + +thus says the king, Let not Ezekias deceive you with words: he will not be able to deliver you. + +And let not Ezekias say to you, That God will deliver you, and this city will not at all be delivered into the hand of the king of the Assyrians. + +Listen not to Ezekias: thus says the king of the Assyrians, If you⌃ wish to be blessed, come out to me: and you⌃ shall eat every one +of his vine and his fig-trees, and you⌃ shall drink water out of your own cisterns: + +until I come and take you to a land, like your own land, a land of corn and wine, and bread, and vineyards. + +Let not Ezekias deceive you, saying, God will deliver you. Have the gods of the nations delivered each one his own land out of the hand of the king of the Assyrians? + +Where is the god of Emath, and Arphath? and where is the god of Eppharuaim? have they been able to deliver Samaria out of my hand? + +Which is the god of all these nations, that has delivered his land out of my hand, that God should deliver Jerusalem out of my hand? + +And they were silent, and none answered him a word; because the king had commanded that none should answer. + +And Heliakim the +son of Chelcias, the steward, and Somnas the military scribe, and Joach the +son of Asaph, the recorder, came in to Ezekias, having their garments torn, and they reported to him the words of Rabsaces. + +

+ + +

And it came to pass, when king Ezekias heard +it, that he tore his clothes, and put on sackcloth, and went up to the house of the Lord. + +And he sent Heliakim the steward, and Somnas the scribe, and the elders of the priests clothed with sackcloth, to Esaias the son of Amos, the prophet. And they said to him, Thus says Ezekias, + +To-day is a day of affliction, and reproach, and rebuke, and anger: for the pangs are come upon the travailing +woman, but she has not strength to bring forth. + +May the Lord your God hear the words of Rabsaces, which the king of the Assyrians has sent, to reproach the living God, even to reproach with the words which the Lord your God has heard: therefore you shall pray to your Lord for these that are left. + +So the servants of king Ezekias came to Esaias. + +And Esaias said to them, Thus shall you⌃ say to your master, Thus says the Lord, Be not you afraid at the words which you have heard, wherewith the ambassadors of the king of the Assyrians have reproached me, + +Behold, I +will send a blast upon him, and he shall hear a report, and return to his own country, and he shall fall by the sword in his own land. + +So Rabsaces returned, and found the king of the Assyrians besieging Lobna: for he had heard that he had departed from Lachis. + +And Tharaca king of the Ethiopians went forth to +37:9 +Gr. +besiege + attack him. And when he heard it, he turned aside, and sent messengers to Ezekias, saying, + +Thus shall you⌃ say to Ezekias king of Judea, Let not your God, in whom you trust, deceive you, saying, Jerusalem shall not be delivered into the hand of the king of the Assyrians. + +Have you not heard what the kings of the Assyrians have done, how they have destroyed the whole earth? and shall you be delivered? + +Have the gods of the nations which my fathers destroyed delivered them, both Gozan, and Charrhan, and Rapheth, which are in the land of Theemath? + +Where are the kings of Emath? and where +is the king of Arphath? and where +is the king of the city of Eppharuaim, +and of Anagugana? + +And Ezekias received the letter from the messengers, and read it, and went up to the house of the Lord, and opened it before the Lord. + +And Ezekias prayed to the Lord, saying, + +O Lord of hosts, God of Israel, who sit upon the cherubs, you alone are the God of every kingdom of the world: you have made heaven and earth. + +Incline your ear, O Lord, listen, O Lord; open your eyes, O Lord, look, O Lord: and behold the words of Sennacherim, which he has sent to reproach the living God. + +For of a truth, Lord, the kings of the Assyrians have laid waste the whole world, and the countries thereof, + +and have cast their idols into the fire: for, they were no gods, but the work of men's hands, wood and stone; and they have cast them away. + +But now, O Lord our God, deliver us from his hands, that every kingdom of the earth may know that you are God alone. + +And Esaias the son of Amos was sent to Ezekias, and said to him, Thus says the Lord, the God of Israel, I have heard your prayer to me concerning Sennacherim king of the Assyrians. + +This is the word which God has spoken concerning him; The virgin daughter of Sion has despised you, and mocked you; the daughter of Jerusalem has shaken her head at you. + +Whom have you reproached and provoked? and against whom have you lifted up your voice? and have you not lifted up your eyes on high against the Holy One of Israel? + +For you have reproached the Lord by messengers; for you have said, With the multitude of chariots have I ascended to the height of mountains, and to the sides of Libanus; and I have +37:24 +Gr. +cut + cropped the height of his cedars and the beauty of his cypresses; and I entered into the height of the forest region: + +and I have made a bridge, and dried up the waters, and every pool of water. + +Have you not heard of these things which I did of old? I appointed +them from ancient times; but now have I manifested +my purpose of desolating nations in +their strong holds, and them that dwell in strong cities. + +I weakened +their hands, and they withered; and they became as dry grass on the housetops, and as grass. + +But now I know your rest, and your going out, and your coming in. + +And your wrath wherewith you have been enraged, and your rancour has come up to me; therefore I will put a hook in your nose, and a bit in your lips, and will turn you back by the way by which you came. + +And this shall be a sign to you, Eat this year what you have sown; and the second year that which is left: and the third year sow, and reap, and plant vineyards, and eat the fruit of them. + +And they that are left in Judea shall take root downward, and bear fruit upward: + +for out of Jerusalem there shall be +37:32 +Lit. +the left men + a remnant, and the saved ones out of mount Sion: the zeal of the Lord of hosts shall perform this. + +Therefore thus says the Lord concerning the king of the Assyrians, He shall not enter into this city, nor cast a weapon against it, nor bring a shield against it, nor make a rampart round it. + +But by the way by which he came, by it shall he return, and shall not enter into this city: thus says the Lord. + +I will protect this city to save it for my own sake, and for my servant David's sake. + +And the angel of the Lord went forth, and killed out of the camp of the Assyrians one hundred and eighty-five thousand: and they arose in the morning and found all +these bodies dead. + +And Sennacherim king of the Assyrians turned and departed, and lived in Nineve. + +And while he was worshipping Nasarach his country's god in the house, Adramelech and Sarasar his sons struck him with swords; and they escaped into Armenia: and Asordan his son reigned in his stead. + +

+ + +

And it came to pass at that time, +that Ezekias was sick even to death. And Esaias the prophet the son of Amos came to him, and said to him, Thus says the Lord, Give orders concerning your house: for you shall die, and not live. + +And Ezekias turned his face to the wall, and prayed to the Lord, saying, + +Remember, O Lord, how I have walked before you in truth, with a true heart, and have done that which was pleasing in your sight. And Ezekias wept bitterly. + +And the word of the Lord came to Esaias, saying, Go, and say to Ezekias, + +Thus says the Lord, the God of David your father, I have heard your prayer, and seen your tears: behold, I +will add to your time fifteen years. + +And I will deliver you and this city out of the hand of the king of the Assyrians: and I will defend this city. + +And this +shall be a sign to you from the Lord, that God will do this thing; + +behold, I will turn back the shadow of the degrees +of the dial by which ten degrees on the house of your father the sun has gone down—I will turn back the sun the ten degrees; so the sun went back the ten degrees by which the shadow had gone down. + +THE PRAYER OF EZEKIAS KING OF JUDEA, WHEN HE +38:9 +Gr. +was sick + HAD BEEN SICK, AND WAS RECOVERED FROM HIS SICKNESS. + +I said in the end of my days, I shall go to the gates of the grave: I shall part with the remainder of my years. + +I said, I shall no more at all see the salvation of God in the land of the living: I shall no more at all see the salvation of Israel on the earth: I shall no more at all see man. + + +My life has failed from among my kindred: I have parted with the remainder of my life: it has gone forth and departed from me, as one that having pitched a tent takes it down +again: my breath was with me as a weaver's web, when she that weaves draws near to cut off +the thread. + +In that day I was given up as to a lion until the morning: so has he broken all my bones: for I was so given up from day +even to night. + +As a swallow, so will I cry, and as a dove, so do I mourn: for my eyes have failed with looking to the height of heaven to the Lord, who has delivered me, and removed the sorrow of my soul. + + +Yes, O Lord, for it was told you concerning this; and you have revived my breath; and I am comforted, and live. + +For you have chosen my soul, that it should not perish: and you have cast all +my sins behind me. + +For they that are in the grave shall not praise you, neither shall the dead bless you, neither shall they that are in Hades hope for your mercy. + +The living shall bless you, as I also +do: for from this day shall I beget children, who shall declare your righteousness, + +O God of my salvation; and I will not cease blessing you with the lute all the days of my life before the house of God. + +Now Esaias had said to Ezekias; Take a cake of figs, and mash them, and apply them as a plaster, and you shall be well. + +And Ezekias said, This is a sign to Ezekias, that I shall go up to the house of God. + +

+ + +

At that time Marodach Baladan, the son of Baladan, the king of Babylonia, sent letters and ambassadors and gifts to Ezekias: for he had heard that he +39:1 +Gr. +was + had been sick +even to death, and was recovered. + +And Ezekias was glad of their coming, and he showed them the house of +his spices, and of silver, and gold, and myrrh, and incense, and ointment, and all the houses of his treasures, and all that he had in his stores: and there was nothing in his house, nor in all his dominion, which Ezekias did not show. + +And Esaias the prophet came to king Ezekias, and said to him, What say these men? and whence came they to you? and Ezekias said, They are come to me from a land afar off, from Babylon. + +And Esaias said, What have they seen in your house? and Ezekias said, They have seen everything in my house; and there is nothing in my house which they have not seen: yes, also the +possessions in my treasuries. + +And Esaias said to him, Hear the word of the Lord of hosts: + +Behold, the days come, when they shall take all the +things that are in your house, and all that your fathers have gathered until this day, shall go to Babylon; and they shall not leave anything at all: and God has said, + +that they shall take also of your children whom you shall beget; and they shall make them eunuchs in the house of the king of the Babylonians. + +And Ezekias said to Esaias, Good is the word of the Lord, which he has spoken: let there, I pray, be peace and righteousness in my days. + +

+ + +

Comfort you⌃, comfort you⌃ my people, says God. + +Speak, you⌃ priests, to the heart of Jerusalem; comfort her, for her humiliation is accomplished, her sin is put away: for she has received of the Lord's hand double +the amount of her sins. + + +40:3 +Matt 3:3; John 1:23 + The voice of one crying in the wilderness, Prepare you⌃ the way of the Lord, make straight the paths of our God. + +Every valley shall be filled, and every mountain and hill shall be brought low: +40:4 +See Luke 3. 5, with which +Alex. +agrees + and all the crooked +ways shall become straight, and the rough +places plains. + +And the glory of the Lord shall appear, and all flesh shall see the salvation of God: for the Lord has spoken +it. + +The voice of one saying, Cry; and I said, What shall I cry? +40:6-7 +1 Pe 1:24 + All flesh is grass, and all the glory of man as the flower of grass: + +The grass withers, and the flower fades: but the word of our God abides for ever. + +O you that bring glad tidings to Zion, go up on the high mountain; lift up your voice with strength, you that bring glad tidings to Jerusalem; lift it up, fear not; say to the cities of Juda, Behold your God! + +Behold the Lord! The Lord is coming with strength, and +his arm is with power: behold, his reward is with him, and +his work before him. + +He shall tend his flock as a shepherd, and he shall gather the lambs with his arm, and shall soothe them that are with young. + +Who has measured the water in his hand, and the heaven with a span, and all the earth in a handful? Who has weighed the mountains in scales, and the forests in a balance? + + +40:13 +Rom 11:34 + Who has known the mind of the Lord? and who has been his counsellor, to instruct him? + +Or with whom has he taken counsel, and he has instructed him? or who has taught him judgment, or who has taught him the way of understanding; +40:14 +Alex. ++ Or who has first given to him, and it shall be recompensed to him again? Ro 11. 35; +Heb. omits. + + +since all the nations are counted as a drop from a bucket, and as the turning of a balance, +and shall be counted as spittle? + +And Libanus is not enough to burn, nor all beasts enough for a whole burnt offering: + +and all the nations are as nothing, and counted as nothing. + +To whom have you⌃ compared the Lord? and with what likeness have you⌃ compared him? + +Has not the artificer made an image, or the goldsmith having melted gold, gilt it over, +and made it a similitude? + +For the artificer chooses out a wood that will not rot, and will wisely enquire how he shall set up his image, and +that so that it should not be moved. + +Will you⌃ not know? will you⌃ not hear? has it not been told you of old? Have you⌃ not known the foundations of the earth? + + +It is he that comprehends the circle of the earth, and the inhabitants in it are as grasshoppers; he that set up the heaven as a chamber, and stretched +it out as a tent to dwell in: + +he that appoints princes to rule as nothing, and has made the earth as nothing. + +For they shall not plant, neither shall they sow, neither shall their root be fixed in the ground: he has blown upon them, and they are withered, and a storm shall carry them away like sticks. + +Now then to whom have you⌃ compared me, that I may be exalted? says the Holy One. + +Lift up your eyes on high, and see, who has displayed all these things? +even he that brings forth his host by number: he shall call them all by name by +means of his great glory, and by the power of his might: nothing has escaped you. + +For say not you, O Jacob, and why have you spoken, Israel, +saying, My way is hid from God, and my God has taken away +my judgement, and has departed? + +And now, have you not known? have you not heard? the eternal God, the God that formed the ends of the earth, shall not hunger, nor be weary, and there is no searching of his understanding. + +He gives strength to the hungry, and sorrow to them that are not suffering. + +For the young +men shall hunger, and the youths shall be weary, and the choice +men shall be powerless: + +but they that wait on God shall renew +their strength; they shall put forth new feathers like eagles; they shall run, and not be weary; they shall walk, and not hunger. + +

+ + +

Hold a feast to me, you⌃ islands: for the princes shall renew +their strength: let them draw near and speak together: then let them declare judgment. + +Who raised up righteousness from the east, +and called it to his feet, so that it should go? shall appoint +it an adversary of Gentiles, and shall dismay kings, and bury their swords in the earth, and cast forth their bows and arrows as sticks? + +And he shall pursue them; the way of his feet shall proceed in peace. + +Who has wrought and done these things? he has called it who called it from the generations of old; I God, +41:4 +Rev 1:17 + the first and to +all futurity, I AM. + +The nations saw, and feared; the ends of the earth drew near, and came together, + +every one judging for his neighbor and +that to assist his brother: and one will say, + +The artificer has become strong, and the coppersmith that smites with the hammer, +and forges also: sometimes he will say, It is a piece well joined: they have fastened them with nails; they will fix them, and they shall not be moved. + +But you, Israel, are my servant Jacob, and he whom I have chosen, the seed of Abraam, whom I have loved: + +whom I have taken hold of from the ends of the earth, and from the high places of it I have called you, and said to you, You are my servant; I have chosen you, and I have not forsaken you. + +Fear not; for I am with you: wander not; for I am your God, who have strengthened you; and I have helped you, and have established you with my just right hand. + +Behold, all your adversaries shall be ashamed and confounded; for they shall be as if they were not: and all your opponents shall perish. + +You shall seek them, and you shall not find the men who shall +41:12 +Lit. +transgress by wine against + insolently rage against you: for they shall be as if they were not, and they that war against you shall not be. + +For I am your God, who holds your right hand, who says to you, + +Fear not, Jacob, +and you Israel few in number; I have helped you, says your God, he that redeems you, O Israel. + +Behold, I have made you as new saw-shaped threshing wheels of a wagon; and you shall thresh the mountains, and beat the hills to powder, and make +them as chaff: + +and you shall winnow +them, and the wind shall carry them away, and a tempest shall scatter them: but you shall rejoice in the holy ones of Israel. + +And the poor and the needy shall exult; for +when they shall seek water, and there shall be none, +and their tongue is parched with thirst, I the Lord God, I the God of Israel will hear, and will not forsake them: + +but I will open rivers on the mountains, and fountains in the midst of plains: I will make the desert pools of water, and a thirsty land watercourses. + +I will plant in the dry land the cedar and box, the myrtle and cypress, and white poplar: + +that they may see, and know, and perceive, and understand together, that the hand of the Lord has wrought these +works, and the Holy One of Israel has displayed +them. + +Your judgment draws near, says the Lord God; your counsels have drawn near, says the King of Jacob. + +Let them draw near, and declare to you what things shall come to pass; or tell +us what things were of old, and we will apply +our understanding, and we shall know what are the last and the future things: + +tell us, declare you⌃ to us the things that are coming on at the last +time, and we shall know that you⌃ are gods: do good, and do evil, and we shall wonder, and see at the same time + +whence you⌃ are, and whence is your works: they have chosen you an abomination out of the earth. + +But I have raised up him that +comes from the north, and him that +comes from the rising of the sun: they shall be called by my name: let the princes come, and as potter's clay, and as a potter treading clay, so shall you⌃ be trodden down. + +For who will declare the things from the beginning, that we may know also the former things, +41:26 +Or, +and say + and we will say that they are true? there is no one that speaks beforehand, nor anyone that hears your words. + +I will give dominion to Sion, and will comfort Jerusalem by the way. + +For from among the nations, behold, +there was no one; and of their idols there was none to declare +anything: and if I should ask them, Whence are you⌃? they could not answer me. + +For +these are your makers, +as you⌃ think, and they that cause you to err in vain. + +

+ + +

Jacob is +42:1 +See Mat 12. 18, etc. + my servant, I will help him: Israel is my chosen, my soul has accepted him; I have put my Spirit upon him; he shall bring forth judgment to the Gentiles. + +He shall not cry, nor lift up +his voice, nor shall his voice be heard without. + +A bruised reed shall he not break, and smoking flax shall he not quench; but he shall bring forth judgment to truth. + +He shall shine out, and shall not be +42:4 +Lit. +broken + discouraged, until he have set judgment on the earth: and in his name shall the Gentiles trust. + +Thus says the Lord God, who made the heaven, and established it; who settled the earth, and the things in it, and gives breath to the people on it, and spirit to them that tread on it: + +I the Lord God have called you in righteousness, and will hold your hand, and will strengthen you: and I have given you for the covenant of a race, for a light of the Gentiles: + +to open the eyes of the blind, to bring the bound and them that sit in darkness out of bonds and the prison-house. + +I am the Lord God: that is my name: I will not give my glory to another, nor my praises to graven images. + +Behold, the ancient things have come to pass, and +so will the new things which I tell you: yes, before I tell +them they are made known to you. + +Sing a new hymn to the Lord: you⌃ +who are his dominion, glorify his name from the end of the earth: you⌃ that go down to the sea, and sail upon it; the islands, and they that dwell in them. + +Rejoice, you wilderness, and the villages thereof, the hamlets, and the dwellers in Kedar: the inhabitants of the rock shall rejoice, they shall shout from the top of the mountains. + +They shall give glory to God, +and shall proclaim his praises in the islands. + +The Lord God of hosts shall go forth, and crush the war: he shall stir up jealousy, and shall shout mightily against his enemies. + +I have been silent: shall I also always be silent and forbear: I have endured like a travailing +woman: I will +now amaze and wither at once. + +I will make desolate mountains and hills, and will dry up all their grass; and I will make the rivers islands, and dry up the pools. + +And I will bring the blind by a way that they knew not, and I will cause them to tread paths which they have not known: I will turn darkness into light for them, and crooked things into straight. These things will I do, and will not forsake them. + +But they are turned back: be you⌃ utterly ashamed that trust in graven +images, who say to the molten +images, You⌃ are our gods. + +Hear, you⌃ deaf, and look up, you⌃ blind, to see. + +And who is blind, but my servants? and deaf, but they that rule over them? yes, the servants of God have been made blind. + +You⌃ have often seen, and have not taken heed; +your ears have been opened, and you⌃ have not heard. + +The Lord God has taken counsel that he might be justified, and might magnify +his praise. + +And I saw, and the people were spoiled and plundered: for +there is a snare in the secret chambers everywhere, and in the houses also, where they have hidden them: they became a spoil, and there was no one that delivered the prey, and there was none who said, Restore. + +Who +is there among you that will give ear to these things? listen you⌃ to the things which are coming to pass. + + +42:24 +Some read τίς, who + For what did he give to Jacob up to spoil, and Israel to them that plundered him? Did not God +do it against whom they sinned? +and they would not walk in his ways, nor listen to his law. + +So he brought upon them the fury of his wrath; and the war, and those that burnt round about them, prevailed against them; yet no one of them knew +it, neither did they lay +it to heart. + +

+ + +

And now thus says the Lord God that made you, O Jacob, and formed you, O Israel, Fear not: for I have redeemed you, I have called you +by your name; you are mine. + +And if you pass through water, I am with you; and the rivers shall not overflow you: and if you go through fire, you shall not be burned; the flame shall not burn you. + +For I am the Lord your God, the Holy One of Israel, that saves you: I have made Egypt and Ethiopia your ransom, and +given Soene for you. + +Since you became precious in my sight, you have become glorious, and I have loved you: and I will give men for you, and princes for +43:4 +Gr. +head + your life. + +Fear not; for I am with you: I will bring your seed from the east, and will gather you from the west. + +I will say to the north, Bring; and to the south, Keep not back; bring my sons from the +land afar off, and my daughters from the ends of the earth; + + +even all who are called by my name: for I have prepared him for my glory, and I have formed him, and have made him: + +and I have brought forth the blind people; for +their eyes are alike blind, and they that have ears are deaf. + +All the nations are gathered together, and princes shall be gathered out of them: who will declare these things? or who will declare to you things from the beginning? let them bring forth their witnesses, and be justified; and let them hear, and declare the truth. + +Be you⌃ my witnesses, and I +too am a witness, says the Lord God, and my servant whom I have chosen: that you⌃ may know, and believe, and understand that I am +he: before me there was no other God, and after me there shall be none. + +I am God; and beside me there is no Saviour. + +I have declared, and have saved; I have reproached, and there was no strange +god among you: you⌃ are my witnesses, and I am the Lord God, + +even from the beginning; and there is none that can deliver out of my hands: I will work, and who shall turn it back? + +Thus says the Lord God that redeems you, the Holy One of Israel; for your sakes I will send to Babylon, and I will stir up all that flee, and the Chaldeans shall be bound in ships. + +I am the Lord God, your Holy One, who have appointed for Israel your king. + +Thus says the Lord, who makes a way in the sea, and a path in the mighty water; + +who brought forth chariots and horse, and a mighty multitude: but they have +43:17 +Or, +gone to sleep; See Ps. 75 (76) 5,6 + lain down, and shall not rise: they are extinct, as quenched flax. + +Remember you⌃ not the former things, and consider not the ancient things. + +Behold, I +will do new things, which shall presently spring forth, and you⌃ shall know them: and I will make a way in the wilderness, and rivers in the dry land. + +the beasts of the field shall bless me, the owls and young ostriches; for I have given water in the wilderness, and rivers in the dry land, to give drink to my chosen race, + +my people whom I have preserved to tell forth my praises. + +I have not now called you, O Jacob; neither have I made you weary, O Israel. + +You have not brought me the sheep of your whole burnt offering; neither have you glorified me with your sacrifices. I have not caused you to serve with sacrifices, neither have I wearied you with frankincense. + +Neither have you purchased for me victims for silver, neither have I desired the fat of your sacrifices: but you did stand before me in your sins, and in your iniquities. + + +43:25 +Gr. +I am, I am + I, +even I, am he that blots out your transgressions for my own sake, and your sins; and I will not remember +them. + +But do you remember, and let us plead +together: do you first confess your transgressions, that you may be justified. + +Your fathers first, and your princes have transgressed against me. + +And the princes have defiled my sanctuaries: so I gave Jacob +to enemies to destroy, and Israel to reproach. + +

+ + +

But now hear, Jacob my servant; and Israel, whom I have chosen. + +Thus says the Lord God that made you, and he that formed you from the womb; You shall yet be helped: fear not, my servant Jacob; and beloved Israel, whom I have chosen. + +For I will give water to the thirsty that walk in a dry land: I will put my Spirit upon your seed, and my blessings upon your children: + +and they shall spring up as grass between brooks, and as willows on +the banks of running water. + +One shall say, I am God's; and another shall call himself by the name of Jacob; and another shall write with his hand, I am God's, and shall call himself by the name of Israel. + +Thus says God the King of Israel, and the God of hosts that delivered him; +44:6 +Rev 1:17 + I am the first, and I am hereafter: beside me there is no God. + +Who is like me? let him stand, and call, and declare, and prepare for me from the time that I made man for ever; and let them tell you the things that are coming before they arrive. + +Hide not yourselves, nor go astray: have you⌃ not heard from the beginning, and +have not I told you? you⌃ are witnesses if there is a God beside me. + +But they that framed +false gods did not then listen; and they that graved +images are all vain, performing their own desires, which shall not profit them, but they shall be ashamed + +that form a god, and all that grave worthless things: + +and all by whom they were made are withered: yes, let all the deaf be gathered from +among men, and let them stand together; and let them be ashamed and confounded together: + +For the artificer sharpens the iron; he fashions +the idol with an axe, and fixes it with an awl, and fashions it with the strength of his arm: and he will be hungry and weak, and will drink no water. + +The artificer having chosen a piece of wood, marks it out with a rule, and fits it with glue, and makes it as the form of a man, and as the beauty of a man, to set it up in the house. + +He cuts wood out of the forest, which the Lord planted, +even a pine tree, and the rain made it grow, + +that it might be for men to burn: and having taken part of it he warms himself; yes, they burn part of it, and bake loaves thereon; and +of the rest they make for themselves gods, and they worship them. + +Half thereof he burns in the fire, and with half of it he bakes loaves on the coals; and having roasted flesh on it he eats, and is satisfied, and having warmed himself he says, I am comfortable, for I have warmed myself, and have seen the fire. + +And the rest he makes a graven god, and worships, and prays, saying, Deliver me; for you are my God. + +They have no understanding to perceive; for they have been blinded so that they should not see with their eyes, nor perceive with their heart. + +And one has not considered in his mind, nor known in his understanding, that he has burnt up half of it in the fire, and baked loaves on the coals thereof and has roasted and eaten flesh, and of the rest of it he has made an abomination, and they worship it. + +Know you that their heart is ashes, and they err, and no one is able to deliver his soul: see, you⌃ will not say, +There is a lie in my right hand. + +Remember these things, O Jacob and Israel; for you are my servant; I have formed you +to be my servant: and do you, Israel, not forget me. + +For behold, I have blotted out as a cloud your transgressions, and your sin as darkness: turn to me, and I will redeem you. + +Rejoice, you⌃ heavens; for God has had mercy upon Israel: sound the trumpet, you⌃ foundations of the earth: you⌃ mountains, shout +with joy, you⌃ hills, and all the trees therein: for God has redeemed Jacob, and Israel shall be glorified. + +Thus says the Lord that redeems you, and who formed you from the womb, I am the Lord that performs all things: I stretched out the heaven alone, and established the earth. + +Who else will frustrate the tokens of +44:25 +Gr. +ventriloquists + those that have divining spirits, and prophecies +44:25 +See +Heb. + from the heart of +man? turning the wise back, and making their counsel foolishness; + +and confirming the word of his servant, and verifying the counsel of his messengers: who says to Jerusalem, You shall be inhabited; and to the cities of Idumea, You⌃ shall be built, and her desert places shall spring forth. + +Who says to the deep, You shall be dried up, and I will dry up the rivers. + +Who bids Cyrus be wise, and he shall perform all my will: who says to Jerusalem, You shall be built, and I will lay the foundation of my holy house. + +

+ + +

Thus says the Lord God to my anointed Cyrus, whose right hand I have held, that nations might be obedient before him; and I will break through the strength of kings; I will open doors before him, and cities shall not be closed. + +I will go before you, and will level mountains: I will break to pieces brazen doors, and burst iron bars. + +And I will give you the treasures of darkness, I will open to you hidden, unseen +treasures, that you may know that I, the Lord your God, that call you by name, am the God of Israel. + +For the sake of my servant Jacob, and Israel my elect, I will call you by your name, and accept you: but you have not known me. + +For I am the Lord God, and there is no other God beside me; I strengthened you, and you have not known me. + +That they that +come from the east and they that +come from the west may know that there is no God but me. I am the Lord God, and there is none beside. + +I am he that prepared light, and formed darkness; who make peace, and create evil; I am the Lord God, that does all these things. + +Let the heaven rejoice from above, and let the clouds rain righteousness: let the earth bring forth, and blossom +with mercy, and bring forth righteousness likewise: I am the Lord that created you. + +What excellent thing have I prepared as clay of the potter? Will the plowman plow the earth all day? +45:9 +Rom 9:20 + shall the clay say to the potter, What are you doing that you do not work, nor have hands? shall the thing formed answer him that formed it? + +As though one should say to +his father, What will you beget me? and to his mother, What are you bringing forth? + +For thus says the Lord God, the Holy One of Israel, who has formed the things that are to come, Enquire of me concerning my sons, and concerning the works of my hands command me. + +I have made the earth, and man upon it: I with my hand have established the heaven; I have given commandment to all the stars. + +I have raised him up +to be a king with righteousness, and all his ways are right: he shall build my city, and shall turn the captivity of my people, not +45:13 +Gr. +with. + for ransoms, nor for rewards, says the Lord of hosts. + +Thus says the Lord of hosts, Egypt has laboured +for you; and the merchandise of the Ethiopians, and the Sabeans, men of stature, shall pass over to you, and shall be your servants; and they shall follow after you bound in fetters, and shall pass over to you, and shall do obeisance to you, and make supplication to you: because God is in you; and there is no God beside you, +O Lord. + +For you are God, yet we knew +it not, the God of Israel, the Saviour. + +All that are opposed to him shall be ashamed and confounded, and shall walk in shame: you⌃ isles, +45:16 +See chap 41:1. + keep a feast to me. + +Israel is saved by the Lord with an everlasting salvation: they shall not be ashamed nor confounded for evermore. + +Thus says the Lord that made the heaven, this God that +45:18 +Gr. +showed. + created the earth, and made it; he marked it out, he made it not in vain, but formed it to be inhabited: I am the Lord, and there is none beside. + +I have not spoken in secret, nor in a dark place of the earth: I said not to the seed of Jacob, Seek vanity: +45:19 +Gr. +I am, I am. + I, even I, am the Lord, speaking righteousness, and proclaiming truth. + +Assemble yourselves and come; take counsel together, you⌃ that escape of the nations: they that set up wood, +even their graven image, have no knowledge, nor they who pray to gods that do not save. + +If they will declare, let them draw near, that they may know together, who has caused these things to be heard from the beginning: then was it told you. I am God, and there is not another beside me; a just +God and a Saviour; there is none but me. + +Turn you⌃ to me, and you⌃ shall be saved, you⌃ that +come from the end of the earth: I am God, and there is none other. + +By myself +45:23 +Rom 14:11 + I swear, righteousness shall surely proceed out of my mouth; my words shall not be frustrated; that to me every knee shall bend, and every tongue shall swear by God, + +saying, Righteousness and glory shall come to him: and all that remove them from their borders shall be ashamed. + +By the Lord shall they be justified, and in God shall all the seed of the children of Israel be glorified. + +

+ + +

Bel has fallen, Nabo is broken to pieces, their graven images are gone to the wild beasts and the cattle: you⌃ take them packed up as a burden to the weary, exhausted, hungry, and +at the same time helpless man; + +who will not be able to save themselves from war, but they themselves are led +away captive. + +Hear me, O house of Jacob, and all the remnant of Israel, who are borne +by me from the womb, and taught +by me from infancy, +even to old age: + +I am +he; and until you⌃ shall have grown old, I am +he: I bear you, I have made, and I will +46:4 +Or, +put up with. + relieve, I will take up and save you. + +To whom have you⌃ compared me? see, consider, you⌃ that go astray. + +They that furnish gold out of a purse, and silver by weight, will weigh it in a scale, and they hire a goldsmith and make +46:6 +Gr. things +made with hands. + idols, and bow down, and worship them. + +They bear it upon the shoulder, and go; and if they put it upon its place, it remains, it can’t move: and whoever shall cry to it, it can’t hear; it can’t save him from trouble. + +Remember you⌃ these things, and groan: repent, you⌃ that have gone astray, return in your heart; + +and remember the former things +that were of old: for I am God, and there is none other beside me, + +telling beforehand the latter events before they come to pass, and they are accomplished together: and I said, all my counsel shall stand, and I will do all things that I have planned: + +calling a bird from the east, and from a land afar off, for the things which I have planned: I have spoken, and brought +him; I have created and made +him; I have brought him, and prospered his way. + +Listen to me, you⌃ senseless ones, that are far from righteousness: + +I have brought near my righteousness, and I will not be slow with the salvation that is from me: I have given salvation in Sion to Israel for glory. + +

+ + +

Come down, sit on the ground, O virgin daughter of Babylon: sit on the ground, O daughter of the Chaldeans: for you shall no more be called tender and luxurious. + +Take a millstone, grind meal: remove your veil, uncover your white hairs, make bare the leg, pass through the rivers. + +Your shame shall be uncovered, your reproaches shall be brought to light: I will exact of you due vengeance, I will no longer deliver you to men. + +Your deliverer is the Lord of hosts, the Holy One of Israel is his name. + +Sit you down pierced with woe, go into darkness, O daughter of the Chaldeans: you shall no more be called the strength of a kingdom. + +I have been provoked with my people; you have defiled my inheritance: I gave them into your hand, but you did not extend mercy to them: you made the yoke of the aged man very heavy, + +and said, I shall be a princess for ever: you did not perceive these things in your heart, nor did you remember the latter end. + +But now hear these words, you luxurious one, +who are the one that sits +at ease, that is secure, that says in her heart, I am, and there is not another; I shall not sit a widow, neither shall I know bereavement. + +But now these two things shall come upon you suddenly in one day, the loss of children and widowhood shall come suddenly upon you, for your sorcery, for the strength of your enchantments, + +for your +47:10 +Gr. +the hope of your wickedness. + trusting in wickedness: for you said, I am, and there is not another: know you, the understanding of these things and your harlotry shall be your shame; for you said in your heart, I am, and there is not another. + +And destruction shall come upon you, and you shall not be aware; +there shall be a pit, and you shall fall into it: and grief shall come upon you, and you shall not be able to be +47:11 +Or, +pure. + clear; and destruction shall come suddenly upon you, and you shall not know. + +Stand now with your enchantments, and with the abundance of your sorcery, which you have learned from your youth; if you can be profited. + +You are wearied in your counsels. Let now the astrologers of the heaven stand and deliver you, let them that see the stars tell you what is about to come upon you. + +Behold, they all shall be burnt up as sticks in the fire; neither shall they at all deliver their life from the flame. Because you have coals of fire, sit you upon them; + +these shall be your help. You have wearied yourself with traffic from your youth: every man has wandered to his own home, but you shall have no deliverance. + +

+ + +

Hear these +words, you⌃ house of Jacob, who are called by the name of Israel, and have come forth out of Juda, who swear by the name of the Lord God of Israel, making mention +of it, but not with truth, nor with righteousness; + +maintaining also the name of the holy city, and staying themselves on the God of Israel: the Lord of hosts is his name. The former things I have already declared; + +and they that have proceeded out of my mouth, and it became well known; I wrought suddenly, and +the events came to pass. + +I know that you are stubborn, and your neck is an iron sinew, and your forehead brazen. + +And I told you +48:5 +Alex. +the ancient things before they came. + of old what +should be before it came upon you; I made it known to you, lest you should say, +My idols have done +it for me; and should say, +My graven and molten images have commanded me. + +You⌃ have heard all this, but you⌃ have not known: yet I have made +48:6 +Or, +audible. + known to you the new things from henceforth, which are coming to pass, and you said not, + +Now they come to pass, and not formerly: and you heard not of them in former days: say not you, Yes, I know them. + +You have neither known, nor understood, neither from the beginning have I opened your ears: for I knew that you would surely deal treacherously, and would be called a transgressor even from the womb. + +For my own sake will I show you my wrath, and will bring before you my glorious acts, that I may not utterly destroy you. + +Behold, I have sold you, +but not for silver; but I have rescued you from the furnace of affliction. + +For my own sake I will do +this for you, because my name is profaned; and I will not give my glory to another. + +Hear me, O Jacob, and Israel whom I call; I am the first, and I +48:12 +Gr. +am. + endure for ever. + +My hand also has founded the earth, and my right hand has fixed the sky: I will call them, and they shall stand together. + +And all shall be gathered, and shall hear: who has told them these things? Out of love to you I have fulfilled your desire on Babylon, to abolish the seed of the Chaldeans. + +I have spoken, I have called, I have brought him, and made his way prosperous. + +Draw near to me, and hear you⌃ these words; I have not spoken in secret from the beginning: when it took place, there was I, and now the Lord, +even the Lord, and his Spirit, has sent me. + +Thus says the Lord that delivered you, the Holy One of Israel; I am your God, I have shown you how you should find the way wherein you should walk. + +And if you had listened to my commandments, +then would your peace have been like a river, and your righteousness as a wave of the sea. + +Your seed also would have been as the sand, and the offspring of your belly as the dust of the ground: neither now shall you by any means be utterly destroyed, neither shall your name perish before me. + +Go forth of Babylon, you that flee from the Chaldeans: utter aloud a voice of joy, and let this be made known, proclaim it to the end of the earth; say you⌃, The Lord has delivered his servant Jacob. + +And if they shall thirst, he shall lead them through the desert; he shall bring forth water to them out of the rock: the rock shall be cloven, and the water shall flow forth, and my people shall drink. + +There is no joy, says the Lord, to the ungodly. + +

+ + +

Listen to me, you⌃ islands; and attend, you⌃ Gentiles; after a long time it shall come to pass, says the Lord: from my mother's womb he has called my name: + +and he has made my mouth as a sharp sword, and he has hid me under the shadow of his hand; he has made me as a choice shaft, and he has hid me in his quiver; + +and said to me, You are my servant, O Israel, and in you I will be glorified. + +Then I said, I have laboured in vain, I have given my strength for vanity and for nothing: therefore is my judgment with the Lord, and my labor before my God. + +And now, thus says the Lord that formed me from the womb to be his own servant, to gather Jacob to him and Israel. I shall be gathered and glorified before the Lord, and my God shall be my strength. + +And he said to me, +It is a great thing for you to be called my servant, to establish the tribes of Jacob, and to recover the dispersion of Israel: behold, +49:6 +Acts 13:47 + I have given you for the +49:6 +Gr. +a perpetual covenant. + covenant of a race, for a light of the Gentiles, that you should be for salvation to the end of the earth. + +Thus says the Lord that delivered you, the God of Israel, Sanctify him that despises his life, him that is abhorred by the nations that are the servants of princes: kings shall behold him, and princes shall arise, and shall worship him, for the Lord's sake: for the Holy One of Israel is faithful, and I have chosen you. + +Thus says the Lord, +49:8 +2 Cor 6:2 + In an acceptable time have I heard you, and in a day of salvation have I succored you: and I have formed you, and given you for a covenant of the nations, to establish the earth, and to cause to inherit the desert heritages: + +saying to them that are in bonds, Go forth; and +bidding them that are in darkness show themselves. They shall be fed in all the ways, and in all the paths +shall be their pasture. + + +49:10 +Rev 7:16 + They shall not hunger, neither shall they thirst; neither shall the heat nor the sun strike them; but he that has mercy on them shall comfort +them, and by fountains of waters shall he lead them. + +And I will make every mountain a way, and every path a pasture to them. + +Behold, these shall come from far: +and these from the north and the west, and others from the land of the Persians. + +Rejoice, you⌃ heavens; and let the earth be glad: let the mountains break forth +with joy; for the Lard has had mercy on his people, and has comforted the lowly ones of his people. + +But Sion said, The Lord has forsaken me, and, The Lord has forgotten me. + +Will a woman forget her child, so as not to have compassion upon the offspring of her womb? but if a woman should even forget these, yet I will not forget you, says the Lord. + +Behold, I have painted your walls on my hands, and you are continually before me. + +And you shall soon be built by those by whom you were destroyed, and they that made you desolate shall go forth of you. + +Lift up your eyes round about, and look on them all; behold, they are gathered together, and are come to you. +As I live, says the Lord, you shall clothe yourself with them all as with an ornament, and put them on as a bride her attire. + +For your desert and marred and ruined +places shall now be too narrow by reason of the inhabitants, and they that devoured you shall be removed far from you. + +For your sons whom you have lost shall say in your ears, The place +is too narrow for me: make room for me that I may dwell. + +And you shall say in your heart, Who has begotten me these? whereas I +was childless, and a widow; but who has brought up these for me? and I was left alone; but whence came these to me? + +Thus says the Lord, +even the Lord, Behold, I lift up my hand to the nations, and I will lift up my signal to the islands: and they shall bring your sons in +their bosom, and shall bear your daughters on +their shoulders. + +And kings shall be your nursing fathers, and their princesses your nurses, they shall bow down to you on the face of the earth, and shall lick the dust of your feet; and you shall know that I am the Lord, and they that wait on me shall not be ashamed. + +Will any one take spoils from a giant? and if one should take +a man captive unjustly, shall he be delivered? + +For thus says the Lord, If one should take a giant captive, he shall take spoils, and he who takes +them from a mighty +man shall be delivered: for I will plead your cause, and I will deliver your children. + +And they that afflicted you shall eat their own flesh; and they shall drink their own blood as new wine, and shall be drunken: and all flesh shall perceive that I am the Lord that delivers you, and that upholds the strength of Jacob. + +

+ + +

Thus says the Lord, Of what kind is your mother's bill of divorcement, by which I put her away? or to which debtor have I sold you? Behold, you⌃ are sold for your sins, and for your iniquities have I put your mother away. + +Why did I come, and there was no man? +why did I call, and there was none to listen? Is not my hand strong to redeem? or can I not deliver? behold, by my rebuke I will dry up the sea, and make rivers a wilderness; and their fish shall be dried up because there is no water, and shall die for thirst. + +I will clothe the sky with darkness, and will make its covering as sackcloth. + + +50:4 +Gr. +the Lord the Lord. See on 3 Ki. 8. 53 + The Lord +even God gives me the tongue of instruction, to know when it is fit to speak a word: he has appointed for me early, he has given me an ear to hear: + +and the instruction of the Lord, even the Lord, opens my ears, and I do not disobey, nor dispute. + +I gave my back to scourges, and my cheeks to blows; and I turned not away my face from the shame of spitting: + +but the Lord God became my helper; therefore I was not ashamed, but I set my face as a solid rock; and I know that I shall never be ashamed, + +for he that has justified me draws near; who is he that pleads with me? let him stand up against me at the same time: yes, who is he that pleads with me? let him draw near to me. + +Behold, the Lord, the Lord, will help me; who will hurt me? behold, all you⌃ shall wax old as a garment, and a moth shall devour you. + +Who is among you that fears the Lord? let him listen to the voice of his servant: you⌃ that walk in darkness, and have no light, trust in the name of the Lord, and stay upon God. + +Behold, you⌃ all kindle a fire, and feed a flame: walk in the light of your fire, and in the flame which you⌃ have kindled. This has happened to you for my sake; you⌃ shall lie down in sorrow. + +

+ + +

Listen to me, you⌃ that follow after righteousness, and seek the Lord: look to the solid rock, which you⌃ have hewn, and to the hole of the pit which you⌃ have dug. + +Look to Abraam your father, and to Sarrha that bore you: for he was alone when I called him, and blessed him, and loved him, and multiplied him. + +And now I will comfort you, O Sion: and I have comforted all her desert places; and I will make her desert places as a garden, and her +51:3 +Heb. +שוב ambiguous. + western places as the garden of the Lord; they shall find in her gladness and exultation, thanksgiving and the voice of praise. + +Hear me, hear me, my people; and you⌃ kings, listen to me: for a law shall proceed from me, and my judgment +shall be for a light of +51:4 +Or, +the Gentiles. + the nations. + +My righteousness speedily draws near, and my salvation shall go forth +51:5 +Not in +Heb. +or +Alex. as light, and on my arm shall the Gentiles trust: the isles shall wait for me, and on my arm shall they trust. + +Lift up your eyes to the sky, and look on the earth beneath: for the sky was darkened like smoke, and the earth shall wax old like a garment, and the inhabitants shall die in like manner: but my righteousness shall not fail. + +Hear me, you⌃ that know judgment, the people in whose heart is my law: fear not the reproach of men, and be not overcome by their contempt. + +For as a garment will be devoured by time, and as wool will be devoured by a moth, +so shall they be consumed; but my righteousness shall be for ever, and my salvation for all generations. + +Awake, awake, O Jerusalem, and put on the strength of your arm; awake as +51:9 +Gr. +the beginning of day. + in the early time, as the ancient generation. + +Are you not it that dried the sea, the water, +even the abundance of the deep; that made the depths of the sea a way of passage for the delivered and redeemed? + +for by +the help of the Lord they shall return, and come to Sion with joy and everlasting exultation, for praise and joy shall come upon their head: pain, and grief, and groaning, have fled away. + +I, +even I, am he that comforts you: consider who you are, that you were afraid of mortal man, and of the son of man, who are withered as grass. + +And you have forgotten God who made you, who made the sky and founded the earth; and you were continually afraid because of the wrath of him that afflicted you: for +whereas he counselled to take you away, yet now where is the wrath of him that afflicted you? + +For in your deliverance he shall not halt, nor wait; + +for I am your God, that troubles the sea, and causes the waves thereof to roar: the Lord of hosts is my name. + +I will put my words into your mouth, and I will shelter you under the shadow of my hand, with which I fixed the sky, and founded the earth: and +the Lord shall say to Sion, You are my people. + +Awake, awake, stand up, O Jerusalem, that have drunk at the hand of the Lord the cup of his fury: for you have drunk out and drained the cup of calamity, the cup of wrath: + +and there was none to comfort you of all the children whom you bore; and there was none to take hold of your hand, not even of all the children whom you have reared. + +Therefore these things are against you; who shall sympathize with you in your grief? downfall, and destruction, famine, and sword: who shall comfort you? + +Your sons are the perplexed ones, that sleep at the top of every street as a half-boiled beet; they that are full of the anger of the Lord, caused to faint by the Lord God. + +Therefore hear, you afflicted one, and drunken, +but not with wine; + +thus says the Lord God that judges his people, Behold, I have taken out of your hand the cup of calamity, the cup of my wrath; and you shall not drink it any more. + +And I will give it into the hands of them that injured you, and them that afflicted you; who said to your soul, Bow down, that we may pass over: and you did level your body with the ground to them passing by without. + +

+ + +

Awake, awake, Sion; put on your strength, O Sion; and o you put on your glory, Jerusalem the holy city: there shall no more pass through you, the uncircumcised and unclean. + +Shake off the dust and arise; sit down, Jerusalem: put off the band of your neck, captive daughter of Sion. + +For thus says the Lord, You⌃ have been sold for nothing; and you⌃ shall not be ransomed with silver. + +Thus says the Lord, My people went down before to Egypt to sojourn there; and were carried away forcibly to the Assyrians. + +And now why are you⌃ here? Thus says the Lord, Because my people was taken for nothing, wonder you⌃ and howl. Thus says the Lord, On account of you +52:5 +Rom 2:24 + my name is continually blasphemed among the Gentiles. + +Therefore shall my people know my name in that day, for I am he that speaks: I am present, + +as +52:7 +Rom 10:15 Another reading is 'How beautiful are the feet,' etc. +Lit. +Why have the feet been made beautiful? See also Joel 2:2, 'the morning [spread] upon the mountains.' + a season of beauty upon the mountains, as the feet of one preaching glad tidings of peace, as one preaching good news: for I will publish your salvation, saying, O Sion, your God shall reign. + +For the voice of them that guard you is exalted, and with the voice together they shall rejoice: for eyes shall look to eyes, when the Lord shall have mercy upon Sion. + +Let the waste places of Jerusalem break forth +in joy together, because the Lord has had mercy upon her, and has delivered Jerusalem. + +And the Lord shall reveal his holy arm in the sight of all the nations; and all the ends of the earth shall see the salvation that +comes from our God. + + +52:11 +2 Cor 6:17,18 + Depart you⌃, depart, go out from thence, and touch not the unclean thing; go you⌃ out from the midst of her; separate yourselves, you⌃ that bear the vessels of the Lord. + +For you⌃ shall not go forth with tumult, neither go by flight: for the Lord shall go first in advance of you; and the God of Israel shall be he that +52:12 +Gr. +gathers you. + brings up your rear. + +Behold, my servant shall understand, and be exalted, and glorified exceedingly. + +As many shall be amazed at you, so shall your face be without glory from men, and your glory +shall not be honored by the sons of men. + +Thus shall many nations wonder at him; and kings shall keep their mouths shut: +52:15 +Rom 15:21 + for they to whom no report was brought concerning him, shall see; and they who have not heard, shall consider. + +

+ + +

O Lord, +53:1 +John 12:38; Rom 10:16 + who has believed our report? and to whom has the arm of the Lord been revealed? + +We brought a report as +of a child before him; +he is as a root in a thirsty land: he has no form nor comeliness; and we saw him, but he had no form nor beauty. + +But his form was ignoble, and inferior to that of the children of men; +he was a man in suffering, and acquainted with the bearing of sickness, for his face is turned from +us: he was dishonored, and not esteemed. + + +53:4 +Matt 8:17 + He bears our sins, and is pained for us: yet we accounted him to be in trouble, and in suffering, and in affliction. + +But he was wounded on account of our sins, and was +53:5 +Or, +made sick. + bruised because of our iniquities: the chastisement of our peace was upon him; +and by his +53:5 +Gr. +bruise. 1 Pet. 2:22. + bruises we were healed. + +All we as sheep have gone astray; every one has gone astray in his way; and the Lord gave him up for our sins. + +And he, because of his affliction, opens not his mouth: +53:7 +Acts 8:32,33 + he was led as a sheep to the slaughter, and as a lamb before the shearer is dumb, so he opens not his mouth. + +In +his humiliation his judgment was taken away: who shall declare his generation? for his life is taken away from the earth: because of the iniquities of my people he was led to death. + +And I will give the wicked for his burial, and the rich for his death; +53:9 +1 Pe 2:22 + for he practised no iniquity, nor craft with his mouth. + +The Lord also is pleased to purge him from his stroke. If you⌃ can give an offering for sin, your soul shall see a long-lived seed: + +the Lord also is pleased to take away from the travail of his soul, to show him light, and to form +him with understanding; to justify the just one who serves many well; and he shall bear their sins. + +Therefore he shall inherit many, and he shall divide the spoils of the mighty; because his soul was delivered to death: and +53:12 +Mark 15:28 + he was numbered among the transgressors; and he bore the sins of many, and was delivered because of their iniquities. + +

+ + +

+54:1 +Gal 4:27 + Rejoice, you barren that bear not; break forth and cry, you that do not travail: for more are the children of the desolate than of her that has a husband: for the Lord has said, + +Enlarge the place of your tent, and of your curtains: fix +the pins, spare not, lengthen your cords, and strengthen your pins; + +spread forth +your tent yet to the right and the left: for your seed shall inherit the Gentiles, and you shall make the desolate cities to be inhabited. + +Fear not, because you have been put to shame, neither be confounded, because you were reproached: for you shall forget your +54:4 +Gr. +ancient +Or. +everlasting + former shame, and shall no more at all remember the reproach of your widowhood. + +For +it is the Lord that made you; the Lord of hosts is his name: and he that delivered you, he is the God of Israel, +and shall be called +so by the whole earth. + +The Lord has not called you as a deserted and faint-hearted woman, nor as a woman hated from +her youth, says your God. + +For a little while I left you: but with great mercy will I have compassion upon you. + +In a little wrath I turned away my face from you; but with everlasting mercy will I have compassion upon you, says the Lord that delivers you. + +From the time of the water of Noe this is my +purpose: as I swore to him at that time, +saying of the earth, I will no more be angry with you, neither when you are threatened, + +shall the mountains depart, nor shall your hills be removed: so neither shall my mercy fail you, nor shall the covenant of your peace be at all removed: for +54:10 +Alex. +κύριος for κύριε adopted here. Compare Mat. 16. 22, with this passage. + the Lord +who is gracious to you has spoken +it. + +Afflicted and outcast you have not been comforted: behold, I +will prepare carbuncle +for your stones, and sapphire for your foundations; + +and I will make your buttresses jasper, and your gates crystal, and your border precious stones. + + +54:13 +John 6:45 + And +I will cause all your sons +to be taught of God, and your children +to be in great peace. + +And you shall be built in righteousness: abstain from injustice, and you shall not fear; and trembling shall not come near you. + +Behold, strangers shall come to you by me, and shall sojourn with you, and shall run to you for refuge. + +Behold, I have created you, not as the coppersmith blowing coals, and bringing out a vessel +fit for work; but I have created you, not for ruin, that +I should destroy +you. + +I will not suffer any +54:17 +Gr. +instrument. + weapon formed against you to prosper; and every voice that shall rise up against you for judgment, you shall vanquish them all; and your adversaries shall be +condemned thereby. There is an inheritance to them that serve the Lord, and you⌃ shall be righteous before me, says the Lord. + +

+ + +

You⌃ that thirst, go to the water, and all that have no money, go +and buy; and eat +and drink wine and fat without money or price. + +Therefore do you⌃ value at the price of money, and +give your labor +55:2 +See Col 2. ult. + for that which will not satisfy? listen to me, and you⌃ shall eat that which is good, and your soul shall feast itself on good things. + +Give heed with your ears, and follow my ways: listen to me, and your soul shall live in prosperity; and I will make with you an everlasting covenant, +55:3 +Acts 13:34 + the sure mercies of David. + +Behold I have made him a testimony among the Gentiles, a prince and commander to the Gentiles. + +Nations which know you not, shall call upon you, and peoples which are not acquainted with you, shall flee to you for refuge, for the sake of the Lord your God, the Holy One of Israel; for he has glorified you. + +Seek you⌃ the Lord, and when you⌃ find him, call upon him; and when he shall draw near to you, + +let the ungodly leave his ways, and the transgressor his counsels: and let him return to the Lord, and he shall find mercy; for he shall abundantly pardon your sins. + +For my counsels are not as your counsels, nor are my ways as your ways, says the Lord. + +But as the heaven is distant from the earth, so is my way distant from your ways, and your thoughts from my mind. + +For as rain shall come down, or snow, from heaven, and shall not return until it have saturated the earth, and it bring forth, and bud, and +55:10 +2 Cor 9:10 + give seed to the sower, and bread for food: + +so shall my word be, whatever shall proceed out of my mouth, it shall by no means turn back, until all the things which I willed shall have been accomplished; and I will make your ways prosperous, and +will effect my commands. + +For you⌃ shall go forth with joy, and shall be taught with gladness: for the mountains and the hills shall exult to welcome you with joy, and all the trees of the field shall applaud with their branches. + +And instead of the bramble shall come up the cypress, and instead of the nettle shall come up the myrtle: and the Lord shall be for a name, and for an everlasting sign, and shall not fail. + +

+ + +

Thus says the Lord, Keep you⌃ judgment, and do justice: for my salvation is near to come, and my mercy to be revealed. + +Blessed is the man that does these things, and the man that holds by them, and keeps the sabbaths from profaning them, and keeps his hands from doing unrighteousness. + +Let not the stranger who attaches himself to the Lord, say, Surely the Lord will separate me from his people: and let not the eunuch say, I am a dry tree. + +Thus says the Lord to the eunuchs, as many as shall keep my sabbaths, and choose the things which I take pleasure in, and take hold of my covenant; + +I will give to them in my house and within my walls an honorable place, better than sons and daughters: I will give them an everlasting name, and it shall not fail. + +And +I will give it to the strangers that attach themselves to the Lord, to serve him, and to love the name of the Lord, to be to him servants and handmaids; and +as for all that keep my sabbaths from profaning +them, and that take hold of my covenant; + +I will bring them to my holy mountain, and gladden them in my house of prayer: their whole burnt offerings and their sacrifices shall be acceptable upon my altar; for +56:7 +Matt 21:13 my house shall be called a house of prayer for all nations, + +says the Lord that gathers the dispersed of Israel; for I will gather to him a congregation. + +All you⌃ beasts of the field, come, devour, all you⌃ beasts of the forest. + +See how they are all blinded: they have not known; +they are dumb dogs +that will not bark; dreaming of rest, loving to slumber. + +Yes, they are insatiable dogs, that know not what it is to be filled, and they are wicked, having no understanding: all have followed their own ways, each according to his +will. + +

+ + +

See how the just man has perished, and no one lays +it to heart: and righteous men are taken away, and no one considers: for the righteous has been removed out of the way of injustice. + +His burial shall be in peace: he has been removed out of the way. + +But draw you⌃ near hither, you⌃ lawless children, the seed of adulterers and the harlot. + +Wherein have you⌃ been rioting? and against whom have you⌃ opened your mouth, and against whom have you⌃ loosed your tongue? are you⌃ not children of perdition? a lawless seed? + +who call upon idols under the leafy trees, slaying +57:5 +Gr. +their. + your children in the valleys among the rocks? + +That is your portion, this is your lot: and to them have you poured forth drink-offerings, and to these have you offered meat-offerings. Shall I not therefore be angry for these things? + +On a lofty and high mountain, there is your bed, and there you carried up your meat-offerings: + +and behind the posts of your door you did place your memorials. Did you think that if you should depart from me, you would gain? you have loved those that lay with you; + +and you have multiplied your whoredom with them, and you have increased the number of them that are far from you, and have sent ambassadors beyond your borders, and have been debased even to hell. + +You have wearied yourself with your many ways; yet you said not, I will cease to strengthen myself: for you have done these things; therefore you have not supplicated me. + +Through dread of whom have you feared, and lied against me, and has not remembered, nor +57:11 +Gr. +taken me into your mind, not into your heart. + considered me, nor regarded me, yes, though when I see you I pass you by, yet you have not feared me. + +And I will declare your righteousness, and your sins, which shall not profit you. + +When you cry out, let them deliver you in your affliction: for all these the wind shall take, and the tempest shall carry +them away: but they that cleave to me shall possess the land, and shall inherit my holy mountain. + +And they shall say, +57:14 +Lit. +purge. + Clear the ways before him, and take up the stumbling blocks out of the way of my people. + +Thus says the Most High, who dwells on high for ever, +57:15 +Or, +Most Holy. + Holy in the holies, is his name, the Most High resting in the holies, and giving patience to the faint-hearted, and giving life to the broken-hearted: + +I will not take vengeance on you for ever, neither will I be always angry with you: for my Spirit shall go forth from me, and I have created all breath. + +On account of sin for a little while I grieved him, and struck him, and turned away my face from him; and he was grieved, and he went on sorrowful in his ways. + +I have seen his ways, and healed him, and comforted him, and given him true comfort; + +peace upon peace to them that are far off, and to them that are near: and the Lord has said, I will heal them. + +But the unrighteous shall be tossed as troubled waves, and shall not be able to rest. + +There is no +57:21 +See chap 48:22. + joy to the ungodly, said God. + +

+ + +

Cry aloud, and spare not; lift up your voice as with a trumpet, and declare to my people their sins, and to the house of Jacob their iniquities. + +They seek me day by day, and desire to know my ways, as a people that had done righteousness, and had not forsaken the judgment of their God: they now ask of me righteous judgment, and desire to draw near to God, + +saying, Why have we fasted, and you regard not? +why have we afflicted our souls, and you did not know it? Nay, in the days of your fasts you⌃ find your pleasures, and all them that are under your power you⌃ wound. + +If you⌃ fast for quarrels and strifes, and strike the lowly with +your fists, therefore do you⌃ fast to me as +you⌃ do this day, so that your voice may be heard in crying? + +I have not chosen this fast, nor +such a day for a man to afflict his soul; neither though you should bend down your neck as a ring, and spread under you sackcloth and ashes, neither thus shall you⌃ call a fast acceptable. + +I have not chosen such a fast, says the Lord; but do you loose every burden of iniquity, do you untie the knots of hard bargains, set the bruised free, and cancel every unjust account. + +Break your bread to the hungry, and lead the unsheltered poor to your house: if you see one naked, clothe +him, and you shall not disregard the relations of your own seed. + +Then shall your light break forth as the morning, and your health shall speedily spring forth: and your righteousness shall go before you, and the glory of God shall compass you. + +Then shall you cry, and God shall listen to you; while you are yet speaking he will say, Behold, I am here. If you remove from you the band, and the stretching forth of the hands, and murmuring speech; + +and +if you give bread to the hungry from your heart, and satisfy the afflicted soul; then shall your light spring up in darkness, and your darkness +shall be as noon-day: + +and your God shall be with you continually, and you shall be satisfied according as your soul desires; and your bones shall be made fat, and shall be as a well-watered garden, and as a fountain +from which the water has not failed. + +And your old waste desert +places shall be built up, and your foundations shall last through all generations; and you shall be called a repairer of breaches, and you shall cause your paths between to be in peace. + +If you turn away your foot from the sabbath, so as not to do your +58:13 +Gr. +pleasures. + pleasure on the holy days, and shall call the sabbaths delightful, holy to God; +if you shall not lift up your foot to work, nor speak a word in anger out of your mouth, + +then shall you trust on the Lord; and he shall bring you up to the good places of the land, and feed you with the heritage of Jacob your father: for the mouth of the Lord has spoken this. + +

+ + +

Has the hand of the Lord no power to save? or has he made his ear heavy, so that he should not hear? + +Nay, your iniquities separate between you and God, and because of your sins has he turned away +his face from you, so as not to have mercy +upon you. + +For your hands are defiled with blood, and your fingers with sins; your lips also have spoken iniquity, and your tongue meditates unrighteousness. + +None speaks justly, neither is there true judgment: they trust in vanities, and speak empty +words; for they conceive trouble, and bring forth iniquity. + +They have hatched asps' eggs, and weave a spider's web: and he that is going to eat of their eggs, having crushed an addled egg, has found also in it a basilisk. + +Their web shall not become a garment, nor shall they at all clothe themselves with their works; for their works are works of iniquity. + +And +59:7 +Rom 3:15-17 their feet run to wickedness, swift to shed blood; their thoughts also are thoughts +59:7 +Gr. +from murders, but +Alex. +reads ὐφρόνων. + of murder; destruction and misery are in their ways; + +and the way of peace they know not, neither is there judgment in their ways; for their paths by which they go are crooked, and they know not peace. + +Therefore has judgment departed from them, and righteousness shall not overtake them: while they waited for light, darkness came upon them; while they waited for brightness, they walked in perplexity. + +They shall feel for the wall as blind +men, and shall feel +for it as if they had no eyes: and they shall feel at noon-day as at midnight; they shall groan as dying men. + +They shall proceed together as a bear and as a dove: we have waited for judgment, and there is no salvation, it is gone far from us. + +For our iniquity is great before you, and our sins have risen up against us: for our iniquities are in us, and we know our unrighteous deeds. + +We have sinned, and dealt falsely, and revolted from our God: we have spoken unrighteous words, and have been disobedient; we have conceived and uttered from our heart unrighteous words. + +And we have turned judgment back, and righteousness has departed afar off: for truth is consumed in their ways, and they could not pass by a straight +path. + +And truth has been taken away, and they have turned aside +their mind from understanding. And the Lord saw it, and it pleased him not that there was no judgment. + +And he looked, and there was no man, and he observed, and there was none to help: so he defended them with his arm, and established +them with +his mercy. + +And he put on righteousness as a breast-plate, and placed the helmet of salvation on his head; and he clothed himself with the garment of vengeance, and with his cloak, + +as one about to render a recompence, +even reproach to his adversaries. + +So shall they of the west fear the name of the Lord, and they +that come from the rising of the sun his glorious name: for the wrath of the Lord shall come as a mighty river, it shall come with fury. + +And +59:20 +Rom 11:26 + the deliverer shall come for Sion's sake, and shall turn away ungodliness from Jacob. + +And this shall be my covenant with them, said the Lord; My Spirit which is upon you, and the words which I have put in your mouth, shall never fail from your mouth, nor from the mouth of your seed, for the Lord has spoken it, henceforth and for ever. + +

+ + +

+60:1 +Eph 5:14 + Be enlightened, be enlightened, O Jerusalem, for your light is come, and the glory of the Lord is risen upon you. + +Behold, darkness shall cover the earth, and +there shall be gross darkness on the nations: but the Lord shall appear upon you, and his glory shall be seen upon you. + +And kings shall walk in your light, and nations in your brightness. + +Lift up your eyes round about, and behold your children gathered: all your sons have come from far, and your daughters shall be borne on +men's shoulders. + +Then shall you see, and fear, and be amazed in your heart; for the wealth of the sea shall come round to you, and of nations and peoples; and herds of camels shall come to you, + +and the camels of Madiam and Gaepha shall cover you: all from Saba shall come bearing gold, and shall bring frankincense, and they shall publish the salvation of the Lord. + +And all the flocks of Kedar shall be gathered, and the rams of Nabaeoth shall come; and acceptable sacrifices shall be offered on my altar, and my house of prayer shall be glorified. + +Who are these +that fly as clouds, and as doves with young ones to me? + +The isles have waited for me, and the ships of Tharsis among the first, to bring your children from afar, and their silver and their gold with them, and +that for the sake of the holy name of the Lord, and because the Holy One of Israel is glorified. + +And strangers shall build your walls, and their kings shall wait upon you: for by reason of my wrath I struck you, and by reason of mercy I loved you. + +And your gates shall be opened continually; they shall not be shut day nor night; to bring in to you the power of the Gentiles, and their kings as captives. + +For the nations and the kings which will not serve you shall perish; and those nations shall be made utterly desolate. + +And the glory of Libanus shall come to you, with the cypress, and pine, and cedar together, to glorify my holy place. + +And the sons of them that afflicted you, and of them that provoked you, shall come to you +60:14 +Lit. +having feared. + in fear; and you shall be called Sion, the city of the Holy One of Israel. + +Because you have become desolate and hated, and there was no helper, therefore I will make you a perpetual gladness, a joy of many generations. + +And you shall suck the milk of the Gentiles, and shall eat the wealth of kings: and shall know that I am the Lord that saves you and delivers you, the Holy One of Israel. + +And for brass I will bring you gold, and for iron I will bring you silver, and instead of wood I will bring you brass, and instead of stones, iron; and I will make your princes peaceful, and your overseers righteous. + +And injustice shall no more be heard in your land, nor destruction nor misery in your coasts; but your walls shall be called Salvation, and your gates Sculptured Work. + + +60:19 +Rev 21:23-27 And you shall no more have the sun for a light by day, nor shall the rising of the moon lighten your night; but the Lord shall be your everlasting light, and God your glory. + +For the sun shall no more set, nor shall the moon be eclipsed; for the Lord shall be your everlasting light, and the days of your mourning shall be completed. + +Your people also shall be all righteous; they shall inherit the land for ever, preserving that which they have planted, +even the works of their hands, for glory. + +The +60:22 +Or, +people few in number. + little one shall become thousands, and the least a great nation; I the Lord will gather them in +due time. + +

+ + +

The Spirit of the Lord is upon me, because he has anointed me; he has sent +61:1 +Luke 4:18 + me to preach glad tidings to the poor, to heal the broken in heart, to proclaim liberty to the captives, and recovery of sight to the blind; + +to declare the acceptable year of the Lord, and the day of recompence; to comfort all that mourn; + +that there should be given to them that mourn in Sion glory instead of ashes, the +61:3 +Alex. +reads καταστολὴν as one word. + oil of joy to the mourners, +61:3 +Or, +anointing. + the garment of glory for the spirit of heaviness: and they shall be called generations of righteousness, the planting of the Lord for glory. + +And they shall build the old waste places, they shall raise up those that were before made desolate, and shall renew the desert cities, +even those that had been desolate for +many generations. + +And strangers shall come and feed your flocks, and aliens +shall be your plowmen and vine-dressers. + +But you⌃ shall be called priests of the Lord, the ministers of God: you⌃ shall eat the strength of nations, and shall be admired because of their wealth. + +Thus shall they inherit the land a second time, and everlasting joy shall be upon their head. + +For I am the Lord who love righteousness, and hate robberies of injustice; and I will give their labor to the just, and will make an everlasting covenant with them. + +And their seed shall be known among the Gentiles, and their offspring in the midst of peoples: every one that sees them shall +61:9 +Or, +acknowledge. + take notice of them, that they are a seed blessed of God; + +and they shall greatly rejoice in the Lord. Let my soul rejoice in the Lord; for he has clothed me with the robe of salvation, and the garment of joy: he has put a mitre on me as on a bridegroom, and adorned me with ornaments as a bride. + +And as the earth putting forth her flowers, and as a garden its seed; so shall the Lord, +even the Lord, cause righteousness to spring forth, and exultation before all nations. + +

+ + +

For Sion's sake I will not hold my peace, and for Jerusalem's sake I will not +62:1 +Gr. +relax. + rest, until her righteousness go forth as light, and my salvation burn as a torch. + +And the Gentiles shall see your righteousness, and kings your glory: and one shall call you +by a new name, which the Lord shall name. + +And you shall be a crown of beauty in the hand of the Lord, and a royal diadem in the hand of your God. + +And you shall no more be called Forsaken; and your land shall no more be called Desert: for you shall be called My Pleasure, and your land Inhabited: for the Lord has taken pleasure in you, and your land shall be inhabited. + +And as a young man lives with a virgin, so shall your sons dwell in +you: and it shall come to pass +that as a bridegroom will rejoice over a bride, so will the Lord rejoice over you. + +And on your walls, O Jerusalem, have I set watchmen all day and all night, who shall never cease making mention of the Lord. + +For there is none like you, when he shall have established, and made Jerusalem a praise on the earth. + +For the Lord has sworn by his glory, and by the might of his arm, I will no more give your corn and your provisions to your enemies; nor shall strangers any more drink your wine, for which you have laboured. + +But they that have gathered them shall eat them, and they shall praise the Lord; and they that have gathered +the grapes shall drink thereof in my holy courts. + +Go through my gates, and make a way for my people; and cast the stones out of the way; lift up a standard for the Gentiles. + +For behold, the Lord has proclaimed to the end of the earth, +62:11 +Matt 21:5 + say you⌃ to the daughter of Sion, Behold, your Saviour has come to you, having his reward and his work before his face. + +And one shall call them the holy people, the redeemed of the Lord: and you shall be called a city sought out, and not forsaken. + +

+ + +

Who is this that is come from Edom, +with red garments from Bosor? thus fair in his apparel, with mighty strength? I +63:1 +Gr. +discourse, reason about. + speak of righteousness and saving judgment. + +Therefore are your garments red, and your raiment as +if fresh from a trodden winepress? + +I am full of trodden +grape, and of the nations there is not a man with me; and I trampled them in my fury, and dashed them to pieces as earth, and brought down their blood to the earth. + +For the day of recompence has come upon them, and the year of redemption is at hand. + +And I looked, and there was no helper; and I observed, and none upheld: therefore my arm delivered them, and my anger drew near. + +And I trampled them in my anger, and brought down their blood to the earth. + +I remembered the mercy of the Lord, the +63:7 +1 Pe 2:9 + praises of the Lord in all things wherein he recompenses us. The Lord is a good judge to the house of Israel; he deals with us according to his mercy, and according to the abundance of his righteousness. + +And he said, Is it not my people? the children surely will not be rebellious: and he became to them deliverance + +out of all their affliction: not an ambassador, nor a messenger, but himself saved them, because he loved them and spared them: he himself redeemed them, and took them up, and lifted them up +63:9 +Gr. +all the days of the age. + all the days of old. + +But they disobeyed, and provoked his Holy Spirit: so he turned to be an enemy, he himself contended against them. + +Then he remembered the ancient days, +saying, Where is he that brought up from the sea the shepherd of the sheep? where is he that put his Holy Spirit in them? + +who led Moses with his right hand, the arm of his glory? he forced the water +to separate from before him, to make himself an everlasting name. + +He led them through the deep, as a horse through the wilderness, and they fainted not, + +and as cattle through a plain: the Spirit came down from the Lord, and guided them: thus you led your people, to make yourself a glorious name. + +Turn from heaven, and look from your holy habitation and +from your glory: where is your zeal and your strength? where is the abundance of your mercy and of your compassions, that you have withholden yourself from us? + +For you are our Father; for +though Abraham knew us not, and Israel did not acknowledge us, yet do you, O Lord, our Father, deliver us: your name has been upon us from the beginning. + +Why have you caused us to err, O Lord, from your way? +and has hardened our hearts, that we should not fear you? Return for your servants' sake, for the sake of the tribes of your inheritance, + +that we may inherit a small part of your holy mountain. + + +63:19 +Heb. and +Alex. ++ 'our adversaries have trodden down the sanctuary.' + We are become as at the beginning, when you did not rule over us, and your name was not called upon us. + +

+ + +

If you would open the heaven, trembling will take hold upon the mountains from you, and they shall melt, + +as wax melts before the fire; and fire shall burn up the enemies, and your name shall be manifest among the adversaries: at your presence the nations shall be troubled, + +whenever you shall work gloriously; trembling from you shall take hold upon the mountains. + +From of old +64:4 +1 Cor 2:9 + we have not heard, neither have our eyes seen a God beside you, and your works which you will perform to them that wait for mercy. + +For +these blessings shall happen to them that work righteousness, and they shall remember your ways: behold, you were angry and we have sinned; therefore we have erred, + +and we are all become as unclean, and all our righteousness as a filthy rag: and we have +64:6 +Heb. and +Lit. +flowed out. + fallen as leaves because of our iniquities; thus the wind shall carry us +away. + +And there is none that calls upon your name, or that remembers to take hold on you: for you have turned your face away from us, and have delivered us up because of our sins. + +And now, O Lord, you are our Father, and we are clay, all +of us the work of your hands. + +Be not very angry with us, and remember not our sins +64:9 +The +Gr. +ἐν καιρῷ is a Hebraism. + for ever; but now look on +us, for we are all your people. + +The city of your holiness has become desolate, Sion has become as a wilderness, Jerusalem a curse. + +The house, our sanctuary, and the glory which our fathers blessed, has been burnt with fire: and all our glorious things have gone to ruin. + +And for all these things you, O Lord, has withholden, yourself, and been silent, and have brought us very low. + +

+ + +

+65:1 +Rom 10:20,21 I became manifest to them that asked not for me; I was found of them that sought me not: I said, Behold, I am +here, to a nation, who called not on my name. + +I have stretched forth my hands all day to a disobedient and gainsaying people, to them that walked in a way that was not good, but after their sins. + +This is the people that provokes me continually in my presence; they offer sacrifices in gardens, and burn incense on bricks to devils, which exist not. + +They lie down to sleep in the tombs and in the caves for the sake of dreams, +even they that eat swine's flesh, and the broth of +their sacrifices: all their vessels are defiled: + +who say, Depart from me, draw not near to me, for I am pure. This is the smoke of my wrath, a fire burns with it continually. + +Behold, it is written before me: I will not be silent until I have recompensed into their bosom, + +their sins and +the sins of their fathers, says the Lord, who have burnt incense on the mountains, and reproached me on the hills: I will recompense their works into their bosom. + +Thus says the Lord, As a grape-stone shall be found in the cluster, and they shall say, Destroy it not; for a blessing is in it: so will I do for the sake of him that serves me, for his sake I will not destroy +them all. + +And I will lead forth the seed +that came of Jacob and of Juda, and they shall inherit my holy mountain: and my elect and my servants shall inherit it, and shall dwell there. + +And there shall be in the forest folds of flocks, and the valley of Achor +shall be for a resting-place of herds for my people, who have sought me. + +But you⌃ are they that have left me, and forget my holy mountain, and prepare a table for the devil, and fill up the +65:11 +Gr. +mixture. + drink-offering to Fortune. + +I will deliver you up to the sword, you⌃ shall all fall by slaughter: for I called you, and you⌃ listened not; I spoke, and you⌃ refused to hear; and you⌃ did evil in my sight, and chose the things wherein I delighted not. + +Therefore thus says the Lord, Behold, my servants shall eat, but you⌃ shall hunger: behold, my servants shall drink, but you⌃ shall thirst: behold, my servants shall rejoice, but you⌃ shall be ashamed: + +behold, my servants shall exult with joy, but you⌃ shall cry for the sorrow of your heart, and shall howl for the vexation of your spirit. + +For you⌃ shall leave your name for a loathing to my chosen, and the Lord shall destroy you: but my servants shall be called by a new name, + +which shall be blessed on the earth; for they shall bless the true God: and they that swear upon the earth shall swear by the true God; for they shall forget the former affliction, it shall not come into their mind. + +For there shall be a new heaven and a new earth: and they shall not at all remember the former, neither shall they at all come into their mind. + +But they shall find in her joy and exultation; for, behold, I make Jerusalem a rejoicing, and my people a joy. + +And I will rejoice in Jerusalem, and will be glad in my people: and there shall no more be heard in her the voice of weeping, or the voice of crying. + +Neither shall there be there any more a +child that dies untimely, or an old man who shall not complete his time: for the youth shall be one hundred years +old, and the sinner who dies at one hundred years shall also be accursed: + +and they shall build houses, and themselves shall dwell in +them; and they shall plant vineyards, and themselves shall eat the fruit thereof. + +They shall by no means build, and others inhabit; and they shall by no means plant, and others eat: for as the days of the tree of life shall be the days of my people, they shall long enjoy the fruits of their labors. + +My chosen shall not toil in vain, neither shall they beget children to be cursed; for they are a seed blessed of God, and their offspring with them. + +And it shall come to pass, +that before they call, I will listen to them; while they are yet speaking, I will say, What is it? + +Then wolves and lambs shall feed together, and the lion shall eat chaff like the ox, and the serpent earth as bread. They shall not injure nor destroy in my holy mountain, says the Lord. + +

+ + +

Thus says the Lord, +66:1 +Acts 7:49,50 Heaven is my throne, and the earth is my footstool: what kind of a house will you⌃ build me? and of what kind +is to be the place of my rest? + +For all these things are mine, says the Lord: and to whom will I have respect, but to the humble and meek, and the +man that trembles +at my words? + +But the transgressor that sacrifices a calf to me, is as he that kills a dog; and he that offers fine flour, as +one that offers swine's blood; he that gives frankincense for a memorial, is as a blasphemer. Yet they have chosen their own ways, and their soul has delighted in their abominations. + +I also will choose their mockeries, and will recompense their sins upon them; because I called them, and they did not listen to me; I spoke, and they heard not: and they did evil before me, and chose the things wherein I delighted not. + +Hear the words of the Lord, you⌃ that tremble at his word; speak you⌃, +66:5 +Alex. +ἡμῶν, but +Heb. +and +Vat. +'your.' + our brethren, to them that hate you and abominate you, that the name of the Lord may be glorified, and may appear +66:5 +Or, +your. + their joy; but they shall be ashamed. + +A voice of a cry from the city, a voice from the temple, a voice of the Lord rendering recompence to +his adversaries. + +Before she that travailed brought forth, before the travail-pain came on, she escaped +it and brought forth a male. + +Who has heard such a thing? and who has seen after this manner? Has the earth travailed in one day? or has even a nation been born at once, that Sion has travailed, and brought forth her children? + +But I have raised this expectation, yet you have not remembered me, says the Lord: behold, have not I made the bearing and barren woman? says your God. + +Rejoice, O Jerusalem, and all you⌃ that love her hold in her a general assembly: rejoice greatly with her, all that +now mourn over her: + +that you⌃ may suck, and be satisfied with the breast of her consolation; that you⌃ may milk out, and delight yourselves with the influx of her glory. + +For thus says the Lord, Behold, I +66:12 +i.e. +turn myself. + turn toward them as a river of peace, and as a torrent bringing upon them in a flood the glory of the Gentiles: their children shall be borne upon the shoulders, and comforted on the knees. + +As if his mother should comfort one, so will I also comfort you; and you⌃ shall be comforted in Jerusalem. + +And you⌃ shall see, and your heart shall rejoice, and your bones shall +66:14 +Gr. +spring up. + thrive like grass: and the hand of the Lord shall be known to them that fear him, and he shall threaten the disobedient. + +For, behold, the Lord will come as fire, and his chariots as a storm, to render his vengeance with wrath, and his rebuke with a flame of fire. + +For with the fire of the Lord all the earth shall be judged, and all flesh with his sword: many shall be slain by the Lord. + +They that sanctify themselves and purify themselves in the gardens, and eat swine's flesh in the porches, and the abominations, and the mouse, shall be consumed together, says the Lord. + +And I +know their works and their imagination. I am going to gather all nations and tongues; and they shall come, and see my glory. + +And I will leave a sign upon them, and I will send forth them that have escaped of them to the nations, to Tharsis, and Phud, and Lud, and Mosoch, and to Thobel, and to Greece, and to the isles afar off, to those who have not heard my name, nor seen my glory; and they shall declare my glory among the Gentiles. + +And they shall bring your brethren out of all nations for a gift to the Lord with horses, and chariots, in litters +drawn by mules with awnings, to the holy city Jerusalem, said the Lord, as though the children of Israel should bring their sacrifices to me with psalms into the house of the Lord. + +And I will take of them priests and Levites, says the Lord. + +For as the new heaven and the new earth, which I make, remain before me, says the Lord, so shall your seed and your name continue. + +And it shall come to pass from month to month, and from sabbath to sabbath, +that all flesh shall come to worship before me in Jerusalem, says the Lord. + +And they shall go forth, and see the carcasses of the men that have transgressed against me: for their worm shall not die, and their fire shall not be quenched; and they shall be a spectacle to all flesh. + +

+
+ +Jeremias +JEREMIAS +Jeremias +JER +

JEREMIAS +

+ + +

The word of God which came to Jeremias the +son of Chelcias, of the priests, who lived in Anathoth in the land of Benjamin: + + +accordingly as the word of God came to him in the days of Josias son of Amos king of Juda, in the thirteenth year of his reign. + +And it was in the days of Joakim, son of Josias king of Juda, until the eleventh year of Sedekias king of Juda, +even until the captivity of Jerusalem in the fifth month. + +And the word of the Lord came to him, +saying, + +Before I formed you in the belly, I knew you; and before you came forth from the womb, I sanctified you; I appointed you a prophet to the nations. + +And I said, O Lord, you that are supreme Lord, behold, I know not +how to speak, for I am a child. + +And the Lord said to me, Say not, I am a child: for you shall go to all to whoever I shall send you, and according to all +the words that I shall command you, you shall speak. + +Be not afraid before them: for I am with you to deliver you, says the Lord. + +And the Lord stretched forth his hand to me, and touched my mouth: and the Lord said to me, Behold, I have put my words into your mouth. + +Behold, I have appointed you this day over nations and over kingdoms, to root out, and to pull down, and to destroy, and to rebuild, and to plant. + +And the word of the Lord came to me, saying, What see you? And I said, A rod of an almond tree. + +And the Lord said to me, You have well seen: for I have watched over my words to perform them. + +And the word of the Lord came to me a second time, saying, What see you? And I said, A caldron on the fire; and the face of it is toward the north. + +And the Lord said to me, From the north shall flame forth evils upon all the inhabitants of the land. + +For, behold, I call together all the kingdoms of the earth from the north, says the Lord; and they shall come, and shall set each one his throne at the entrance of the gates of Jerusalem, and against all the walls round about her, and against all the cities of Juda. + +And I will speak to them in judgment, concerning all their iniquity, +forasmuch as they have forsaken me, and sacrificed to strange gods, and worshipped the works of their own hands. + +And do you gird up your loins, and stand up, and speak all +the words that I shall command you: be not afraid of their face, neither be you alarmed before them; for I am with you to deliver you, says the Lord. + +Behold, I have made you this day as a strong city, and as a brazen wall, strong +against all the kings of Juda, and the princes thereof, and the people of the land. + +And they shall fight against you; but they shall by no means prevail against you; because I am with you, to deliver you, says the Lord. + +

+ + +

And he said, Thus says the Lord, + +I remember the kindness of your youth, and the love of your espousals, + +in following the Holy One of Israel, says the Lord, Israel was the holy +people to the Lord, +and the first fruits of his increase: all that devoured him shall offend; evils shall come upon them, says the Lord. + +Hear the word of the Lord, O house of Jacob, and every family of the house of Israel. + +Thus says the Lord, What trespass have your fathers found in me, that they have revolted far from me, and gone after vanities, and become vain? + +And they said not, Where is the Lord, who brought us up out of the land of Egypt, who guided us in the wilderness, in an untried and trackless land, in a land which no man at all went through, and no man lived there? + +And I brought you to Carmel, that you⌃ should eat the fruits thereof, and the good thereof; and you⌃ went in, and defiled my land, and made my heritage an abomination. + +The priests said not, Where is the Lord? and they that held by the law knew me not: the shepherds also sinned against me, and the prophets prophesied by Baal, and went after that which profited not. + +Therefore I will yet plead with you, and will plead with your children's children. + +For go to the isles of the Chettians, and see; and send to Kedar, and observe accurately, and see if such things have been done; + +if the nations will change their gods, though they are not gods: but my people have changed their glory, +for that from which they shall not be profited. + +The heaven is amazed at this, and is very exceedingly horror-struck, says the Lord. + +For my people has committed two +faults, and evil ones: they have forsaken me, the fountain of water of life, and hewn out for themselves broken cisterns, which will not be able to hold water. + +Is Israel a servant, or a home-born slave? why has he become a spoil? + +The lions roared upon him, and uttered their voice, which have made his land a wilderness: and his cities are broken down, that they should not be inhabited. + +Also the children of Memphis and Taphnas have known you, and mocked you. + +Has not your forsaking me brought these things upon you? says the Lord your God. + +And now what have you to do with the way of Egypt, to drink the water of Geon? and what have you to do with the way of the Assyrians, to drink the water of rivers? + +Your apostasy shall correct you, and your wickedness shall reprove you: know then, and see, that your forsaking me +has been bitter to you, says the Lord your God; and I have taken no pleasure in you, says the Lord your God. + +For of old you have broken your yoke, and plucked asunder your bands; and you have said, I will not serve you, but will go upon every high hill, and under every shady tree, there will I indulge in my fornication. + +Yet I planted you a fruitful vine, entirely of the right sort: how are you a strange vine turned to bitterness! + +Though you should wash yourself with nitre, and multiply to yourself soap, +still you are stained by your iniquities before me, says the Lord. + +How will you say, I am not polluted, and have not gone after Baal? behold your ways in the burial-ground, and know what you have done: her voice has howled in the evening: + +she has extended her ways over the waters of the desert; she was hurried along by the lusts of her soul; she is given up +to them, who will turn her back? none that seek her shall be weary; at +the time of her humiliation they shall find her. + +Withdraw your foot from a rough way, and your throat from thirst: but she said I will strengthen myself: for she loved strangers, and went after them. + +As is the shame of a thief when he is caught, so shall the children of Israel be ashamed; they, and their kings, and their princes, and their priests, and their prophets. + +They said to a stock, You are my father; and to a stone, You have begotten me: and they have turned +their backs to me, and not their faces: yet in the time of their afflictions they will say, Arise, and save us. + +And where are your gods, which you made for yourself? will they arise and save in the time of your affliction? for according to the number of your cities were your gods, O Juda; and according to the number of the streets of Jerusalem they sacrificed to Baal. + +Therefore do you⌃ speak to me? you⌃ all have been ungodly, and you⌃ all have transgressed against me, says the Lord. + +In vain have I struck your children; you⌃ have not received correction: a sword has devoured your prophets as a destroying lion; yet you⌃ feared not. + +Hear you⌃ the word of the Lord: thus says the Lord, Have I been a wilderness or a dry land to Israel? therefore has my people said, We will not be ruled over, and will not come to you any more? + +Will a bride forget her ornaments, or a virgin her girdle? but my people has forgotten me days without number. + +What fair device will you yet employ in your ways, so as to seek love? +it shall not +be so; moreover you have done wickedly in corrupting your ways; + +and in your hands has been found the blood of innocent souls; I have not found them in holes, but on every oak. + +Yet you said, I am innocent: only let his wrath be turned away from me. Behold, I +will plead with you, whereas you say, I have not sinned. + +For you have been so exceedingly contemptuous as to repeat your ways; but you shall be ashamed of Egypt, as you were ashamed of Assur. + +For you shall go forth thence also with your hands upon your head; for the Lord has rejected your hope, and you shall not prosper in it. + +

+ + +

If a man put away his wife, and she depart from him, and become another man's, shall she return to him any more at all? shall not that woman be utterly defiled? Yet you⌃ have gone a-whoring with many shepherds, and have returned to me, says the Lord. + +Lift up your eyes +to look straight forward, and see where you have not been utterly defiled. You have sat for them by the wayside as a deserted crow, and have defiled the land with your fornications and your wickedness. + +And you did retain many shepherds for a stumbling block to yourself: you had a whore's face, you did become shameless toward all. + +Have you not called me as it were a home, and the father and guide of your virgin-time? + +Will +God's anger continue for ever, or be preserved to the end? Behold, you have spoken and done these bad things, and had power +to do them. + +And the Lord said to me in the days of Josias the king, Have you seen what things the house of Israel has done to me? they have gone on every high mountain, and under every shady tree, and have committed fornication there. + +And I said after she had committed all these acts of fornication, Turn again to me. Yet she returned not. And faithless Juda saw her faithlessness. + +And I saw that (for all the sins of which she was convicted, wherein the house of Israel committed adultery, and I put her away, and gave into her hands a bill of divorcement,) yet faithless Juda feared not, but went and herself also committed fornication. + +And her fornication was nothing accounted of; and she committed adultery with wood and stone. + +And for all these things faithless Juda turned not to me with all her heart, but falsely. + +And the Lord said to me, Israel has justified himself more than faithless Juda. + +Go and read these words toward the north, and you shall say, Return to me, O house of Israel, says the Lord; and I will not set my face against you: for I am merciful, says the Lord, and I will not be angry with you for ever. + +Nevertheless, know your iniquity, that you have sinned against the Lord your God, and have scattered your ways to strangers under every shady tree, but you did not listen to my voice, says the Lord. + +Turn, you⌃ children that have revolted, says the Lord; for I will rule over you: and I will take you one of a city, and two of a family, and I will bring you in to Sion: + +and I will give you shepherds after my heart, and they shall certainly tend you with knowledge. + +And it shall come to pass that when you⌃ are multiplied and increased upon the land, says the Lord, in those days they shall say no more, The ark of the covenant of the Holy One of Israel: it shall not come to mind; it shall not be named; neither shall it be visited; nor shall +this be done any more. + +In those days and at that time they shall call Jerusalem the throne of the Lord; and all the nations shall be gathered to it: and they shall not walk any more after the imaginations of their evil heart. + +In those days the house of Juda, shall come together to the house of Israel, and they shall come, together, from the land of the north, and from all the countries, to the land, which I caused their fathers to inherit. + +And I said, So be it, Lord, for +you said I will set you among children, and will give you a choice land, the inheritance of the Almighty God of the Gentiles: and I said, You⌃ shall call me Father; and you⌃ shall not turn away from me. + +But as a wife acts treacherously against her husband, so has the house of Israel dealt treacherously against me, says the Lord. + +A voice from the lips was heard, +even of weeping and supplication of the children of Israel: for they have dealt unrighteously in their ways, they have forgotten God their Holy One. + +Turn, you⌃ children that are given to turning, and I will heal your bruises. Behold, we will be your servants; for you are the Lord our God. + +Truly the hills and the strength of the mountains were a lying refuge: but by the Lord our God is the salvation of Israel. + +But shame has consumed the labors of our fathers from our youth; their sheep and their calves, and their sons and their daughters. + +We have lain down in our shame, and our disgrace has covered us: because we and our fathers have sinned before our God, from our youth until this day; and we have not listened to the voice of the Lord our God. + +

+ + +

If Israel will return to me, says the Lord, he shall return: and if he will remove his abominations out of his mouth, and fear before me, and swear, + +The Lord lives, with truth, in judgment and righteousness, then shall nations bless by him, and by him they shall praise God in Jerusalem. + +For thus says the Lord to the men of Juda, and to the inhabitants of Jerusalem, Break up fresh ground for yourselves, and sow not among thorns. + +Circumcise yourselves to your God, and circumcise your hardness of heart, you⌃ men of Juda, and inhabitants of Jerusalem: lest my wrath go forth as fire, and burn, and there be none to quench it, because of the evil of your devices. + +Declare you⌃ in Juda, and let it be heard in Jerusalem: say you⌃, Sound the trumpet in the land; do you cry⌃ aloud: say you⌃, Gather yourselves together, and let us enter into the fortified cities. + +Gather up +your wares and flee to Sion: hasten, stay not: for I will bring evils from the north, and great destruction. + +The lion is gone up from his lair, he has roused +himself to the destruction of the nations, and has gone forth out of his place, to make the land desolate; and the cities shall be destroyed, so as to be without inhabitant. + +For these things gird yourselves with sackcloth, and lament, and howl: for the anger of the Lord is not turned away from you. + +And it shall come to pass in that day, says the Lord, that the heart of the king shall perish, and the heart of the princes; and the priests shall be amazed, and the prophets shall wonder. + +And I said, O sovereign Lord, verily you have deceived this people and Jerusalem, saying, There shall be peace; whereas behold, the sword has reached even to their soul. + +At that time they shall say to this people and to Jerusalem, +There is a spirit of error in the wilderness: the way of the daughter of my people is not to purity, nor to holiness. + +But a spirit of full vengeance shall come upon me; and now I declare my judgments against them. + +Behold, he shall come up as a cloud, and his chariots as a tempest: his horses are swifter than eagles. Woe to us! for we are in misery. + +Cleanse your heart from wickedness, O Jerusalem, that you may be saved: how long will your grievous thoughts be within you? + +For a voice of one publishing from Dan shall come, and trouble out of mount Ephraim shall be heard of. + +Remind you⌃ the nations; behold, they are come: proclaim +it in Jerusalem, that bands are approaching from a land afar off, and have uttered their voice against the cities of Juda. + +As keepers of a field, they have surrounded her; because you, says the Lord, has neglected me. + +Your ways and your devices have brought these things upon you; this is your wickedness, for +it is bitter, for it has reached to your heart. + +I am pained in my bowels, my bowels, and the sensitive powers of my heart; my soul is in great commotion, my heart is torn: I will not be silent, for my soul has heard the sound of a trumpet, the cry of war, and of distress: it calls on destruction; + +for all the land is distressed: suddenly +my tabernacle is distressed, my curtains have been torn asunder. + +How long shall I see fugitives, and hear the sound of the trumpet? + +For the princes of my people have not known me, they are foolish and unwise children: they are wise to do evil, but +how to do good they have not known. + +I looked upon the earth, and, behold, +it was not; and to the sky, and there was no light in it. + +I saw the mountains, and they trembled, and +I saw all the hills in commotion. + +I looked, and behold, there was no man, and all the birds of the sky were scared. + +I saw, and, behold, Carmel was desert, and all the cities were burnt with fire at the presence of the Lord, and at the presence of his fierce anger they were utterly destroyed. + +Thus says the Lord, The whole land shall be desolate; but I will not make a full end. + +For these things let the earth mourn, and let the sky be dark above: for I have spoken, and I will not repent; I have purposed, and I will not turn back from it. + +The whole land has recoiled from the noise of the horseman and the bent bow; they have gone into the caves, and have hidden themselves in the groves, and have gone up upon the rocks: every city was abandoned, no man lived in them. + +And what will you do? Though you clothe yourself with scarlet, and adorn yourself with golden ornaments; though you adorn your eyes with stibium, your beauty +will be in vain: your lovers have rejected you, they seek your life. + +For I have heard your groaning as the voice of a woman in travail, as of her that brings forth her first child; the voice of the daughter of Zion shall fail through weakness, and she shall lose the strength of her hands, +saying, Woe is me! for my soul faints because of the slain. + +

+ + +

Run you⌃ about in the streets of Jerusalem, and see, and know, and seek in her broad places, if you⌃ can find +one, if there is any one that does judgment, and seeks faithfulness; and I will pardon them, says the Lord. + +The Lord lives, they say; do they not therefore swear falsely? + +O Lord, your eyes are upon faithfulness: you have scourged them, but they have not grieved; you have consumed them; but they would not receive correction: they have made their faces harder than a rock; and they would not return. + +Then I said, It may be they are poor; for they are weak, for they know not the way of the Lord, or the judgment of God. + +I will go to the rich men, and will speak to them; for they have known the way of the Lord, and the judgment of God: but, behold, with one consent they have broken the yoke, they have burst the bonds. + +Therefore has a lion out of the forest struck them, and a wolf has destroyed them even to +their houses, and a leopard has watched against their cities: all that go forth from them shall be hunted: for they have multiplied their ungodliness, they have strengthened themselves in their revoltings. + +In what +way shall I forgive you for these things? Your sons have forsaken me, and sworn by them that are no gods: and I fed them to the full, and they committed adultery, and lodged in harlots' houses. + +They became as wanton horses: they neighed each one after his neighbor's wife. + +Shall I not visit for these things? says the Lord: and shall not my soul be avenged on such a nation as this. + +Go up upon her battlements, and break +them down; but make not a full end: leave her buttresses: for they are the Lord's. + +For the house of Israel have indeed dealt treacherously against me, says the Lord: the house of Juda also + +have lied to their Lord, and they have said, These things are not so; no evils shall come upon us; and we shall not see sword or famine. + +Our prophets became wind, and the word of the Lord was not in them. + +Therefore thus says the Lord Almighty, Because you⌃ have spoken this word, behold, I have made my words in your mouth fire, and this people wood, and it shall devour them. + +Behold, I +will bring upon you a nation from far, O house of Israel, says the Lord; a nation the sound of whose language one shall not understand. + + +They are all mighty men: + +and they shall devour your harvest, and your bread; and shall devour your sons, and your daughters; and they shall devour your sheep, and your calves, and devour your vineyards, and your fig-plantations, and your olive yards: and they shall utterly destroy your strong cities, wherein you⌃ trusted, with the sword. + +And it shall come to pass in those days, says the Lord your God, that I will not utterly destroy you. + +And it shall come to pass, when you⌃ shall say, Therefore has the Lord our God done all these things to us? that you shall say to them, Because you⌃ served strange gods in your land, so shall you⌃ serve strangers in a land that is not yours. + +Proclaim these things to the house of Jacob, and let them be heard in the house of Juda. + +Hear you⌃ now these things, O foolish and senseless people; who have eyes, and see not; and have ears, and hear not: + +will you⌃ not be afraid of me? says the Lord; and will you⌃ not fear before me, who have set the sand for a bound to the sea, +as a perpetual ordinance, and it shall not pass it: yes, it shall rage, but not prevail; and its waves shall roar, but not pass over it. + +But this people has a disobedient and rebellious heart; and they have turned aside and gone back: + +and they have not said in their heart, Let us fear now the Lord our God, who gives us the early and latter rain, according to the season of the fulfillment of the ordinance of harvest, and has preserved +it for us. + +Your transgressions have turned away these things, and your sins have removed good things from you. + +For among my people were found ungodly men; and they have set snares to destroy men, and have caught +them. + +As a snare which has been set is full of birds, so are their houses full of deceit: therefore have they grown great, and become rich: + +and they have transgressed +the rule of judgment; they have not judged the cause of the orphan, nor have they judged the cause of the widow. + +Shall I not visit for these things? says the Lord: and shall not my soul be avenged on such a nation as this? + +Shocking and horrible deeds have been done on the land; + +the prophets utter unrighteous prophecies, and the priests have clapped their hands: and my people has loved +to have it thus: and what will you⌃ do for the future. + +

+ + +

Strengthen yourselves, you⌃ children of Benjamin, +to flee out of the midst of Jerusalem, and sound an alarm with the trumpet in Thecue, and set up a signal over Baethacharma: for evil threatens from the north, and a great destruction is coming. + +And +your pride, O daughter of Sion, shall be taken away. + +The shepherds and their flocks shall come to her; and they shall pitch +their tents against her round about, and shall feed +their flocks each with his hand. + +Prepare yourselves for war against her; rise up, and let us go up against her at noon. Woe to us! for the day has gone down, for the shadows of the day fail. + +Rise, and let us go up against her by night, and destroy her foundations. + +For thus says the Lord, Hew down her trees, array a numerous force against Jerusalem. O false city; +there is all oppression in her. + +As a cistern cools water, so her wickedness cools her, ungodliness and misery shall be heard in her, +as continually before her. + +You shall be chastened, O Jerusalem, with pain and the scourge, lest my soul depart from you; lest I make you a desert land, which shall not be inhabited. + +For thus says the Lord, Glean, glean thoroughly as a vine the remnant of Israel: turn back +your hands as a grape-gatherer to his basket. + +To whom shall I speak, and testify, that he may listen? behold, your ears are uncircumcised, and they shall not be able to hear: behold, the word of the Lord is become to them a reproach, they will not at all desire it. + +And I allowed my wrath to come to full, yet I kept +it in, and did not utterly destroy them: I will pour it out on the children without, and on the assembly of young men together: for man and woman shall be taken together, the old man with him that is full of days. + +And their houses shall be turned to others, +with their fields and their wives together: for I will stretch out my hand upon the inhabitants of this land, says the Lord. + +For from the least of them even to the greatest they have all committed iniquity; from the priest even to the false prophet they have all wrought falsely. + +And they healed the breach of my people +imperfectly, making light +of it, and saying, Peace, peace, and where is peace? + +They were ashamed because they failed; yet they were not ashamed as those who are +truly ashamed, and they knew not their own disgrace: therefore shall they +utterly fall when they do fall, and in the time of visitation shall they perish, said the Lord. + +Thus says the Lord, Stand you⌃ in the ways, and see, and ask for the old paths of the Lord; and see what is the good way, and walk in it, and you⌃ shall find purification for your souls. But they said, We will not walk +in them. + +I have set watchmen over you, +saying, Hear you⌃ the sound of the trumpet. But they said, We will not hear +it. + +Therefore have the nations heard, and they that feed their flocks. + +Hear, O earth: behold, I will bring evils upon this people, +even the fruit of their rebellions; for they have not heeded my words, and they have rejected my law. + +Therefore do you⌃ bring me frankincense from Saba, and cinnamon from a land afar off? your whole burnt offerings are not acceptable, and your sacrifices have not been pleasant to me. + +Therefore thus says the Lord, Behold, I +will bring weakness upon this people, and the fathers and sons shall be weak together; the neighbor and his friend shall perish. + +Thus says the Lord, Behold, a people comes from the north, and nations shall be stirred up from the end of the earth. + +They shall lay hold on bow and spear; +the people is fierce, and will have no mercy; their voice is as the roaring sea; they shall array themselves for war against you as fire on horses and chariots, O daughter of Sion. + +We have heard the report of them: our hands are weakened: anguish has seized us, the pangs as of a woman in travail. + +Go not forth into the field, and walk not in the ways; for the sword of the enemy lingers round about. + +O daughter of my people, gird yourself with sackcloth: sprinkle +yourself with ashes; make for yourself pitiable lamentation, +as the mourning for a beloved +son: for misery will come suddenly upon you. + +I have caused you to be tried among tried nations, and you shall know me when I have tried their way. + + +They are all disobedient, walking perversely: +they are brass and iron; they are all corrupted. + +The bellows have failed from the fire, the lead has failed: the silversmith works at his trade in vain; their wickedness is not consumed. + +Call you⌃ them reprobate silver, because the Lord has rejected them. + +

+ + +

Hear you⌃ the word of the Lord, all Judea. + +Thus says the Lord God of Israel, Correct your ways and your devices, and I will cause you to dwell in this place. + +Trust not in yourselves with lying words, for they shall not profit you at all, saying, It is the temple of the Lord, the temple of the Lord. + +For if you⌃ thoroughly correct your ways and your practices, and do indeed execute judgment between a man and his neighbor; + +and oppress not the stranger, and the orphan, and the widow, and shed not innocent blood in this place, and go not after strange gods to your hurt: + +then will I cause you to dwell in this place, in the land which I gave to your fathers of old and for ever. + +But whereas you⌃ have trusted in lying words, whereby you⌃ shall not be profited; + +and you⌃ murder, and commit adultery, and steal, and swear falsely, and burn incense to Baal, and are gone after strange gods whom you⌃ know not, + +so that it is evil with you; yet have you⌃ come, and stood before me in the house, whereon my name is called, and you⌃ have said, We have refrained from doing all these abominations. + +Is my house, whereon my name is called, a den of robbers in your eyes? And, behold, I have seen +it, says the Lord. + +For go you⌃ to my place which is in Selo, where I caused my name to dwell before, and see what I did to it because of the wickedness of my people Israel. + +And now, because you⌃ have done all these deeds, and I spoke to you, but you⌃ listened not to me; and I called you, but you⌃ answered not; + +therefore I also will do to the house whereon my name is called, wherein you⌃ trust, and to the place which I gave to you and to your fathers, as I did to Selo. + +And I will cast you out of my sight, as I cast away your brethren, all the seed of Ephraim. + +Therefore pray not you for this people, and intercede not for them to be pitied, yes, pray not, and approach me not for them: for I will not listen +to you. + +Seest you not what they do in the cities of Juda, and in the streets of Jerusalem? + +Their children gather wood, and their fathers kindle a fire, and their women knead dough, to make cakes to the host of heaven; and they have poured out drink-offerings to strange gods, that they might provoke me to anger. + +Do they provoke me to anger? says the Lord: do they not +provoke themselves, that their faces may be ashamed? + +Therefore thus says the Lord; Behold, my anger and wrath shall be poured out upon this place, and upon the men, and upon the cattle, and upon every tree of their field, and upon the fruits of the land; and it shall burn, and not be quenched. + +Thus says the Lord, Gather your whole burnt offerings with your meat-offerings, and eat flesh. + +For I spoke not to your fathers, and commanded them not in the day wherein I brought them up out of the land of Egypt, concerning whole burnt offerings and sacrifice: + +but I commanded them this thing, saying, Hear you⌃ my voice, and I will be to you a God, and you⌃ shall be to me a people: and walk you⌃ in all my ways which I shall command you, that it may be well with you. + +But they listened not to me, and their ear gave no heed, but they walked in the imaginations of their evil heart, and went backward, and not forward; + +from the day that their fathers went forth out of the land of Egypt, even until this day. And I sent to you all my servants, the prophets, by day and early in the morning: yes, I sent +them, + +but they listened not to me, and their ear gave no heed; and they made their neck harder than their fathers. + +Therefore you shall speak this word to them; + +This is the nation which has not listened to the voice of the Lord, nor received correction: truth has failed from their mouth. + +Cut off your hair, and cast it away, and take up a lamentation on your lips; for the Lord has reprobated and rejected the generation that does these things. + +For the children of Juda have wrought evil before me, says the Lord; they have set their abominations in the house on which my name is called, to defile it. + +And they have built the altar of Taphes, which is in the valley of the son of Ennom, to burn their sons and their daughters with fire; which I did not command them +to do, neither did I design it in my heart. + +Therefore, behold, the days come, says the Lord, when they shall no more say, The altar of Taphes, and the valley of the son of Ennom, but, The valley of the slain; and they shall bury in Taphes, for lack of room. + +And the dead bodies of this people shall be for food to the birds of the sky, and to the wild beasts of the earth; and there shall be none to drive +them away. + +And I will destroy out of the cities of Juda, and the streets of Jerusalem, the voice of them that make merry, and the voice of them that rejoice, the voice of the bridegroom, and the voice of the bride; for the whole land shall become a desolation. + +

+ + +

At that time, says the Lord, they shall bring out the bones of the kings of Juda, 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; + +and they shall spread them out to the sun, and the moon, and to all the stars, and to all the host of heaven, which they have loved, and which they have served, and after which they have walked, and to which they have held, and which they have worshipped; they shall not be mourned for, neither shall they be buried; but they shall be for an example on the face of the earth, + +because they chose death rather than life, even to all the remnant that are left of that family, in every place whither I shall drive them out. + +For thus says the Lord, Shall not he that falls arise? or he that turns away, shall he not turn back again? + +Therefore has this my people turned away with a shameless revolting, and strengthened themselves in their willfulness, and refused to return? + +Listen, I pray you, and hear: will they not speak thus, There is no man that repents of his wickedness, saying, What have I done? the runner has failed from his course, as a tired horse in his neighing. + +Yes, the stork in the heaven knows her time, +also the turtle-dove and wild swallow; the sparrows observe the times of their coming in; but this my people knows not the judgments of the Lord. + +How will you⌃ say, We are wise, and the law of the Lord is with us? In vain have the scribes used a false pen. + +The wise men are ashamed, and alarmed, and taken; because they have rejected the word of the Lord; what wisdom is there in them? + +Therefore will I give their wives to others, and their fields to +new inheritors; and they shall gather their fruits, says the Lord. + +There are no grapes on the vines, and there are no figs on the fig-trees, and the leaves have fallen off. + +Why do we sit still? assemble yourselves, and let us enter into the strong cities, and let us be cast out there: for God has cast us out, and made us drink water of gall, because we have sinned before him. + +We assembled for peace, but there was no prosperity; for a time of healing, but behold anxiety. + +We shall hear the neighing of his swift horses out of Dan: the whole land quaked at the sound of the neighing of his horses; and he shall come, and devour the land and the fullness of it; the city, and them that dwell in it. + +For, behold, I send forth against you deadly serpents, which can’t be charmed, and they shall bite you + +mortally with the pain of your distressed heart. + +Behold, +there is a sound of the cry of the daughter of my people from a land afar off: Is not the Lord in Sion? is there not a king there? because they have provoked me with their graven +images, and with strange vanities. + +The summer is gone, the harvest is past, and we are not saved. + +For the breach of the daughter of my people I have been saddened: in my perplexity pangs have seized upon me as of a woman in travail. + +And is there no balm in Galaad, or is there no physician there? why has not the healing of the daughter of my people taken place? + +

+ + +

Who will give water to my head, and a fountain of tears to my eyes? then would I weep for this my people day and night, +even for the slain of the daughter of my people. + +Who would give me a most distant lodge in the wilderness, that I might leave my people, and depart from them? for they all commit adultery, an assembly of treacherous men. + +And they have bent their tongue like a bow: falsehood and not faithfulness has prevailed upon the earth; for they have gone on from evil to evil, and have not known me, says the Lord. + +Beware you⌃ each of his neighbor, and trust you⌃ not in your brethren: for every one will surely supplant, and every friend will walk craftily. + +Every one will mock his friend; they will not speak truth: their tongue has learned to speak falsehoods; they have committed iniquity, they ceased not, so as to return. + + +There is usury upon usury, and deceit upon deceit: they would not know me, says the Lord. + +Therefore thus says the Lord, Behold, I will try them with fire, and prove them; for I will do +thus because of the wickedness of the daughter of my people. + +Their tongue is a wounding arrow; the words of their mouth are deceitful: +one speaks peaceably to his neighbor, but in himself retains enmity. + +Shall I not visit for these things? says the Lord: and shall not my soul be avenged on such a people as this? + +Take up a lamentation for the mountains, and a mournful dirge for the paths of the wilderness, for they are desolate for lack of men; they heard not the sound of life from the birds of the sky, nor the cattle: they were amazed, they are gone. + +And I will remove the inhabitants of Jerusalem, and make it a dwelling-place of dragons; and I will utterly waste the cities of Juda, so that they shall not be inhabited. + +Who is the wise man, that he may understand this? and he that has the word of the mouth of the Lord +addressed to him, let him tell you therefore the land has been destroyed, has been ravaged by fire like a desert, so that no one passes through it. + +And the Lord said to me, Because they have forsaken my law, which I set before them, and have not listened to my voice; + +but went after the lusts of their evil heart, and after the idols which their fathers taught them +to worship: + +therefore thus says the Lord God of Israel, Behold, I will feed them with trouble and will cause them to drink water of gall: + +and I will scatter them among the nations, to them whom neither they nor their fathers knew; and I will send a sword upon them, until I have consumed them with it. + +Thus says the Lord, Call you⌃ the mourning women, and let them come; and send to the wise women, and let them utter their voice; + +and let them take up a lamentation for you, and let your eyes pour down tears, and your eyelids drop water. + +For a voice of lamentation has been heard in Sion, How are we become wretched! we are greatly ashamed, for we have forsaken the land, and have abandoned our tabernacles! + +Hear now, you⌃ women, the word of God, and let your ears receive the words of his mouth, and teach your daughters lamentation, and +every woman her neighbor a dirge. + +For death has come up through your windows, it has entered into our land, to destroy the infants without, and the young men from the streets. + +And the carcasses of the men shall be for an example on the face of the field of your land, like grass after the mower, and there shall be none to gather +them. + +Thus says the Lord, Let not the wise man boast in his wisdom, and let not the strong man boast in his strength, and let not the rich man boast in his wealth; + +but let him that boasts boast in this, the understanding and knowing that I am the Lord that exercise mercy, and judgment, and righteousness, upon the earth; for in these things is my pleasure, says the Lord. + +Behold, the days come, says the Lord, when I will visit upon all the circumcised their uncircumcision; + +on Egypt, and on Idumea, and on Edom, and on the children of Ammon, and on the children of Moab, and on every one that shaves his face round about, +even them that dwell in the wilderness; for all the Gentiles are uncircumcised in flesh, and all the house of Israel are uncircumcised +in their hearts. + +

+ + +

Hear you⌃ the word of the Lord, which he has spoken to you, O house of Israel. + +Thus says the Lord, Learn you⌃ not the ways of the heathen, and be not alarmed at the signs of the sky; for they are alarmed at them, +falling on their faces. + +For the customs of the nations are vain; it is a tree cut out of the forest, the work of the carpenter, or a molten image. + + +They are beautified with silver and gold, they fix them with hammers and nails; + +they will set them up that they may not move; it is wrought silver, they will not walk, it is forged silver They must certainly be borne, for they can’t ride +of themselves. Fear them not; for they can’t do any evil, and there is no good in them. + +Thus shall you⌃ say to them, Let the gods which have not made heaven and earth perish from off the earth, and from under this sky. + +It is the Lord that made the earth by his strength, who set up the world by his wisdom, and by his understanding stretched out the sky, + +and set abundance of waters in the sky, and brought up clouds from the ends of the earth; he made lightnings for the rain, and brought forth light out of his treasures. + +Every man is deprived of knowledge, every goldsmith is confounded because of his graven images; for he has cast false gods, there is no breath in them. + +They are vain works, wrought in mockery; in the time of their visitation they shall perish. + +Such is not the portion of Jacob; for he that formed all things, he is his inheritance; the Lord is his name. + +He has gathered your substance from without the lodged in choice +vessels. + +For thus says the Lord, Behold, I +will overthrow the inhabitants of this land with affliction, that your plague may be revealed. + +Alas for your ruin! your plague is grievous: and I said, Surely this is your wound, and it has overtaken you. + +Your tabernacle is in a ruinous state, it has perished; and all your curtains have been torn asunder: my children and my cattle are no more: there is no more any place for my tabernacle, +nor place for my curtains. + +For the shepherds have become foolish, and have not sought the Lord; therefore the whole pasture has failed, and +the sheep have been scattered. + +Behold, there comes a sound of a noise, and a great earthquake from the land of the north, to make the cities of Juda a desolation, and a resting-place for ostriches. + +I know, O Lord, that man's way is not his own; neither shall a man go, and direct his going. + +Chasten us, O Lord, but with judgment; and not in wrath, lest you make us few. + +Pour out your wrath upon the nations that have not known you, and upon the families that have not called upon your name: for they have devoured Jacob, and consumed him, and have made his pasture desolate. + +

+ + +

The word that came to Jeremias from the Lord, saying, + +Hear you⌃ the words of this covenant, and you shall speak to the men of Juda, and to the dwellers in Jerusalem; + +and you shall say to them, Thus says the Lord God of Israel, Cursed is the man, who shall not listen to the words of this covenant, + +which I commanded your fathers, in the day wherein I brought them up out of the land of Egypt, out of the iron furnace, saying, Listen to my voice, and do all things that I shall command you; so shall you⌃ be to me a people, and I will be to you a God; + +that I may confirm my oath, which I swore to your fathers, to give them a land flowing +with milk and honey, as +it is this day. Then I answered and said, So be it, O Lord. + +And the Lord said to me, Read these words in the cities of Juda, and in the streets of Jerusalem, saying, Hear you⌃ the words of this covenant, and do them. + +But they did +them not. + +And the Lord said to me, A conspiracy is found among the men of Juda, and among the dwellers in Jerusalem. + +They are turned +aside to the iniquities of their fathers that were of old, who would not listen to my words: and, behold, they go after strange gods, to serve them: and the house of Israel and the house of Juda have broken my covenant, which I made with their fathers. + +Therefore thus says the Lord, Behold, I bring evils upon this people, out of which they shall not be able to come forth; and they shall presently cry to me, but I will not listen to them. + +And the cities of Juda and the dwellers in Jerusalem shall go, and cry to the gods to whom they burn incense; which shall not deliver them in the time of their troubles. + +For according to the number of your cities were your gods, O Juda; and according to the number of the streets of Jerusalem have you⌃ set up altars to burn incense to Baal. + +And you, pray not for this people, and intercede not for them in supplication and prayer: for I will not hear in the day in which they call upon me, in the day of their affliction. + +Why has +my beloved wrought abomination in my house? will prayers and holy offerings take away your wickedness from you, or shall you escape by these things? + +The Lord called your name a fair olive tree, of a goodly shade in appearance, at the noise of its being lopped, fire was kindled against it; great is the affliction +coming upon you: her branches are become good for nothing. + +And the Lord that planted you has pronounced evils against you, because of the iniquity of the house of Israel and the house of Juda, whatever they have done against themselves to provoke me to anger by burning incense to Baal. + +O Lord, teach me, and I shall know: then I saw their practices. + +But I as an innocent lamb led to the slaughter, knew not: against me they devised an evil device, saying, Come and let us put wood into his bread, and let us utterly destroy him from off the land of the living, and let his name not be remembered any more. + +O Lord, that judge righteously, trying the reins and hearts, let me see your vengeance +taken upon them, for to you I have declared my cause. + +Therefore thus says the Lord concerning the men of Anathoth, that seek my life, that say, You shall not prophesy at all in the name of the Lord, but if you do, you shall die by our hands: + +behold, I will visit them: their young men shall die by the sword; and their sons and their daughters shall die of famine: + +and there shall be no remnant +left of them; for I will bring evil upon the dwellers in Anathoth, in the year of their visitation. + +

+ + +

Righteous are you, O Lord, that I may make my defence to you, yes, I will speak to you +of judgments. Why +is it that the way of ungodly +men prospers? +that all that deal very treacherously are flourishing? + +You have planted them, and they have taken root; they have begotten children, and become fruitful; you are near to their mouth, and far from their reins. + +But you, Lord, know me; you have proved my heart before you; purify them for the day of their slaughter. + +How long shall the land mourn, and the grass of the field wither, for the wickedness of them, that dwell in it? the beasts and birds are utterly destroyed; because +the people said, God shall not see our ways. + +Your feet run, and they cause you to faint; how will you prepare +to ride upon horses? and you have been confident in the land of your peace? how will you do in the roaring of Jordan? + +For even your brethren and the house of your father, even these have dealt treacherously with you; and they have cried out, they are gathered together in pursuit of you; trust not you in them, though they shall speak fair +words to you. + +I have forsaken my house, I have left my heritage; I have given my beloved one into the hands of her enemies. + +My inheritance has become to me as a lion in a forest; she has uttered her voice against me; therefore have I hated her. + +Is not my inheritance to me a hyaena's cave, or a cave round about her? Go you⌃, gather together all the wild beasts of the field, and let them come to devour her. + +Many shepherds have destroyed my vineyard, they have defiled my portion, they have made my desirable portion a trackless wilderness; + +it is made a complete ruin: for my sake the whole land has been utterly ruined, because there is none that lays +the matter to heart. + +The ravagers are come to every passage in the wilderness: for the sword of the Lord will devour from one end of the land to the other: no flesh has any peace. + +Sow wheat, and reap thorns; their portions shall not profit them: be ashamed of your boasting, because of reproach before the Lord. + +For thus says the Lord, concerning all the evil neighbors that touch my inheritance, which I have divided to my people Israel; Behold, I +will draw them away from their land, and I will cast out Juda from the midst of them. + +And it shall come to pass, after I have cast them out, +that I will return, and have mercy upon them, and will cause them to dwell every one in his inheritance, and every one in his land. + +And it shall be, if they will indeed learn the way of my people, to swear by my name, +saying, The Lord lives; as they taught my people to swear by Baal; then shall +that nation be built in the midst of my people. + +But if they will not return, then will I cut off that nation with utter ruin and destruction. + +

+ + +

Thus says the Lord, Go and procure for yourself a linen girdle, and put it about your loins, and let it not be put in water. + +So I procured the girdle according to the word of the Lord, and put it about my loins. + +And the word of the Lord came to me, saying, + +Take the girdle that is upon your loins, and arise, and go to the Euphrates, and hide it there in a hole of the rock. + +So I went, and hid it by the Euphrates, as the Lord commanded me. + +And it came to pass after many days, that the Lord said to me, Arise, go to the Euphrates, and take thence the girdle, which I commanded you to hide there. + +So I went to the river Euphrates, and dug, and took the girdle out of the place where I +had buried it: and, behold, it was rotten, utterly good for nothing. + +And the word of the Lord came to me, saying, Thus says the Lord, + +Thus will I mar the pride of Juda, and the pride of Jerusalem; + + +even this great pride +of the men that will not listen to my words, and have gone after strange gods, to serve them, and to worship them: and they shall be as this girdle, which can be used for nothing. + +For as a girdle cleaves about the loins of a man, so have I caused to cleave to myself the house of Israel, and the whole house of Juda; that they might be to me a famous people, and a praise, and a glory: but they did not listen to me. + +And you shall say to this people, Every bottle shall be filled with wine: and it shall come to pass, if they shall say to you, Shall we not certainly know that every bottle shall be filled with wine? that you shall say to them, + +Thus says the Lord, Behold, I +will fill the inhabitants of this land, and their kings the sons of David that sit upon their throne, and the priests, and the prophets, and Juda and all the dwellers in Jerusalem, with strong drink. + +And I will scatter them a man and his brother, and their fathers and their sons together: I will not have compassion, says the Lord, and I will not spare, neither will I pity +to save them from destruction. + +Hear you⌃, and give ear, and be not proud: for the Lord has spoken. + +Give glory to the Lord your God, before he cause darkness, and before your feet stumble on the dark mountains, and you⌃ shall wait for light, and behold the shadow of death, and they shall be brought into darkness. + +But if you⌃ will not listen, your soul shall weep in secret because of pride, and your eyes shall pour down tears, because the Lord's flock is sorely bruised. + +Say you⌃ to the king and the princes, Humble yourselves, and sit down; for your crown of glory is removed from your head. + +The cities toward the south were shut, and there was none to open +them: Juda is removed +into captivity, +they have suffered a complete removal. + +Lift up your eyes, O Jerusalem, and behold them that come from the north; where is the flock that was given you, the sheep of your glory? + +What will you say when they shall visit you, for you did teach them lessons for rule against yourself; shall not pangs seize you as a woman in travail? + +And if you should say in your heart, Therefore have these things happened to me? Because of the abundance of your iniquity have your skirts been revealed, that your heels might be exposed. + +If the Ethiopian shall change his skin, or the leopardess her spots, then shall you⌃ be able to do good, having learned evil. + +So I scattered them as sticks carried by the wind into the wilderness. + +Thus is your lot, and the reward of your disobedience to me, says the Lord; as you did forget me, and trust in lies, + +I also will expose your skirts upon your face, and your shame shall be seen; + +your adultery also, and your neighing, and the looseness of your fornication: on the hills and in the fields I have seen your abominations. Woe to you, O Jerusalem, for you have not been purified so as to follow me; how long yet +shall it be? + +

+ + +

AND THE WORD OF THE LORD CAME TO JEREMIAS CONCERNING THE DROUGHT. + +Judea has mourned, and her gates are emptied, and are darkened upon the earth; and the cry of Jerusalem is gone up. + +And her nobles have sent their little ones to the water: they came to the wells, and found no water: and brought back their vessels empty. + +And the labors of the land failed, because there was no rain: the husbandmen were ashamed, they covered their heads. + +And hinds calved in the field, and forsook +it, because there was no grass. + +The wild asses stood by the forests, and snuffed up the wind; their eyes failed, because there was no grass. + +Our sins have risen up against us: O Lord, do you for us for your own sake; for our sins are many before you; for we have sinned against you. + +O Lord, +you are the hope of Israel, and deliver +us in time of troubles; why are you become as a sojourner upon the land, or as one born in the land, yet turning aside for a resting-place? + +Will you be as a man asleep, or as a +strong man that can’t save? yet you are among us, O Lord, and your name is called upon us; forget us not. + +Thus says the Lord to this people, They have loved to wander, and they have not spared, therefore God has not prospered them; now will he remember their iniquity. + +And the Lord said to me, Pray not for this people for +their good: + +for though they fast, I will not hear their supplication; and though they offer whole burnt offerings and sacrifices, I will take no pleasure in them: for I will consume them with sword, and with famine, and with pestilence. + +And I said, O +ever living Lord! behold, their prophets prophesy, and say, You⌃ shall not see a sword, nor shall famine be among you; for I will give truth and peace on the land, and in this place. + +Then the Lord said to me, The prophets prophesy lies in my name: I sent them not, and I commanded them not, and I spoke not to them: for they prophesy to you false visions, and divinations, and auguries, and devices of their own heart. + +Therefore thus says the Lord concerning the prophets that prophesy lies in my name, and I sent them not, who say, Sword and famine shall not be upon this land; they shall die by a grievous death, and the prophets shall be consumed by famine. + +And the people to whom they prophesy, they also shall be cast out in the streets of Jerusalem, because of the sword and famine; and there shall be none to bury them: their wives also, and their sons, and their daughters +shall die thus; and I will pour out their wickedness upon them. + +And you shall speak this word to them; Let your eyes shed tears day and night, and let them not cease: for the daughter of my people has been sorely bruised, and her plague is very grievous. + +If I go forth into the plain, then behold the slain by the sword! and if I enter into the city, then behold the distress of famine! for priest and prophet have gone to a land which they knew not. + +Have you utterly rejected Juda? and has your soul departed from Sion? therefore has you struck us, and there is no healing for us? we waited for peace, but there was no prosperity; for a time of healing, and behold trouble! + +We know, O Lord, our sins, +and the iniquities of our fathers: for we have sinned before you. + +Refrain for your name's sake, destroy not the throne of your glory: remember, break not your covenant with us. + +Is there any one among the idols of the Gentiles that can give rain? and will the sky yield his fulness +at their bidding? Are not you he? we will even wait on you, O Lord: for you have made all these things. + +

+ + +

And the Lord said to me, Though Moses and Samuel stood before my face, my soul could not be toward them: dismiss this people, and let them go forth. + +And it shall be, if they say to you, Whither shall we go forth? then you shall say to them, Thus says the Lord; As many as are for death, to death; and as many as are for famine, to famine; and as many as are for the sword, to the sword; and as many as are for captivity, to captivity. + +And I will punish them with four kinds +of death, says the Lord, the sword to kill, and the dogs to tear, and the wild beasts of the earth, and the birds of the sky to devour and destroy. + +And I will deliver them up for distress to all the kingdoms of the earth, because of Manasses son of Ezekias king of Juda, for all that he did in Jerusalem. + +Who will spare you, O Jerusalem? and who will fear for you? or who will turn back +to ask for your welfare? + +You have turned away from me, says the Lord, you will go back: therefore I will stretch out my hand, and will destroy you, and will no more spare them. + +And I will completely scatter them; in the gates of my people they are bereaved of children: they have destroyed my people because of their iniquities. + +Their widows have been multiplied more than the sand of the sea: I have brought young men against the mother, +even distress at noon-day: I have suddenly cast upon her trembling and anxiety. + +She that bore seven is spent; her soul has fainted under trouble; her sun is gone down while it is yet noon; she is ashamed and disgraced: I will give the remnant of them to the sword before their enemies. + +Woe is me, +my mother! you have born me as some man of strife, and at variance with the whole earth; I have not helped +others, nor has any one helped me; my strength has failed among them that curse me. + +Be it so, Lord, in their prosperity; surely I stood before you in the time of their calamities, and in the time of their affliction, for +their good against the enemy. + +Will iron be known? whereas your strength is a brazen covering. + +Yes, I will give your treasures for a spoil as a recompence, because of all your sins and +that in all your borders. + +And I will enslave you to your enemies round about, in a land which you have not known; for a fire has been kindled out of my wrath; it shall burn upon you. + +O Lord, remember me, and visit me, and vindicate me before them that persecute me; do not bear long with them; know how I have met with reproach for your sake, from those who set at nothing your words; + +consume them; and your word shall be to me for the joy and gladness of my heart: for your name has been called upon me, O Lord Almighty. + +I have not sat in the assembly of them as they mocked, but I feared because of your power: I sat alone, for I was filled with bitterness. + +Why do they that grieve me prevail against me? my wound is severe; whence shall I be healed? it is indeed become to me as deceitful water, that has no faithfulness. + +Therefore thus says the Lord, If you will return, then will I restore you, and you shall stand before my face: and if you will bring forth the precious from the worthless, you shall be as my mouth: and they shall return to you; but you shall not return to them. + +And I will make you to this people as a strong brazen wall; and they shall fight against you, but they shall by no means prevail against you; + +for I am with you to save you, and to deliver you out of the hand of wicked +men; and I will ransom you out of the hand of pestilent +men. + +

+ + +

And you shall not take a wife, says the Lord God of Israel: + +and there shall be no son born to you, nor daughter in this place. + +For thus says the Lord concerning the sons and concerning the daughters that are born in this place, and concerning their mothers that have born them, and concerning their fathers that have begotten them in this land; + +They shall die of grievous death; they shall not be lamented, nor buried; they shall be for an example on the face of the earth; and they shall be for the wild beasts of the land, and for the birds of the sky: they shall fall by the sword, and shall be consumed with famine. + +Thus says the Lord, Enter not into their mourning feast, and go not to lament, and mourn not for them: for I have removed my peace from this people. + +They shall not bewail them, nor make cuttings for them, and they shall not shave themselves +for them: + +and there shall be no bread broken in mourning for them for consolation over the dead: they shall not give one to drink a cup for consolation over his father or his mother. + +You shall not enter into the banquet-house, to sit with them to eat and to drink. + +For thus says the Lord God of Israel; Behold, I +will make to cease out of this place before your eyes, and in your days, the voice of joy, and the voice of gladness, the voice of the bridegroom, and the voice of the bride. + +And it shall come to pass, when you shall report to this people all these words, and they shall say to you, Therefore has the Lord pronounced against us all these evils? what is our unrighteousness? and what is our sin which we have sinned before the Lord our God? + +Then you shall say to them, Because your fathers forsook me, says the Lord, and went after strange gods and served them, and worshipped them, and forsook me, and kept not my law; + +(and you⌃ sinned worse than your fathers; for, behold, you⌃ walk every one after the lusts of your own evil heart, so as not to listen to me); + +therefore I will cast you off from this good land into a land which neither you⌃ nor your fathers have known; and you⌃ shall serve their other gods, who shall have no mercy upon you. + +Therefore, behold, the days come, says the Lord, when they shall no more say, The Lord lives, that brought up the children of Israel out of the land of Egypt; + +but, The Lord lives, who brought up the house of Israel from the land of the north, and from all countries whither they were thrust out: and I will restore them to their own land, which I gave to their fathers. + +Behold, I +will send many fishers, says the Lord, and they shall fish them; and afterward I will send many hunters, and they shall hunt them upon every mountain, and upon every hill, and out of the holes of the rocks. + +For my eyes are upon all their ways; and their iniquities have not been hidden from my eyes. + +And I will recompense their mischiefs doubly, and their sins, whereby they have profaned my land with the carcasses of their abominations, and with their iniquities, whereby they have trespassed against my inheritance. + +O Lord, you are my strength, and my help, and my refuge in days of evil: to you the Gentiles shall come from the end of the earth, and shall say, How vain +were the idols +which our fathers procured to themselves, and there is no help in them. + +Will a man make gods for himself, whereas these are no gods? + +Therefore, behold, I will at this time manifest my hand to them, and will make known to them my power; and they shall know that my name is the Lord. + +

+ + +

Cursed is the man who trusts in man, and will lean his arm of flesh upon him, while his heart departs from the Lord. + +And he shall be as the wild tamarisk in the desert: he shall not see when good comes; but he shall dwell in barren +places, and in the wilderness, in a salt land which is not inhabited. + +But blessed is the man who trusts in the Lord, and whose hope the Lord shall be. + +And he shall be as a thriving tree by the waters, and he shall cast forth his root toward a moist place: he shall not fear when heat comes, and there shall be upon him shady branches: he shall not fear in a year of drought, and he shall not fail to bear fruit. + +The heart is deep beyond all things, and it is the man, and who can know him? + +I the Lord try the hearts, and prove the reins, to give to every one according to his ways, and according to the fruits of his devices. + +The partridge utters her voice, she gathers +eggs which she did not lay; +so is a man gaining his wealth unjustly; in the midst of his days +his riches shall leave him, and at his latter end he will be a fool. + +An exalted throne of glory is our sanctuary. + +O Lord, the hope of Israel, let all that have left you be ashamed, let them that have revolted be written on the earth, because they have forsaken the fountain of life, the Lord. + +Heal me, O Lord, and I shall be healed; save me, and I shall be saved; for you are my boast. + +Behold, they say to me, Where is the word of the Lord? let it come. + +But I have not been weary of following you, nor have I desired the day of man; you know; the +words that proceed out of my lips are before your face. + +Be not to me a stranger, +but spare me in the evil day. + +Let them that persecute me be ashamed, but let me not be ashamed: let them be alarmed, but let me not be alarmed: bring upon them the evil day, crush them with double destruction. + +Thus says the Lord; Go and stand in the gates of the children of your people, by which the kings of Juda enter, and by which they go out, and in all the gates of Jerusalem: + +and you shall say to them, Hear the word of the Lord, you⌃ kings of Juda, and all Judea, and all Jerusalem, +all who go in at these gates: + +thus says the Lord; Take heed to your souls, and take up no burdens on the sabbath-day, and go not forth +through the gates of Jerusalem; + +and carry forth no burdens out of your houses on the sabbath-day, and you⌃ shall do no work: sanctify the sabbath-day, as I commanded your fathers. + +But they listened not, and inclined not their ear, but stiffened their neck more than their fathers +did, so as not to hear me, and not to receive correction. + +And it shall come to pass, if you⌃ will listen to me, says the Lord, to carry in no burdens through the gates of this city on the sabbath-day, and to sanctify the sabbath-day, so as to do no work +upon it, + +that there shall enter through the gates of this city kings and princes sitting on the throne of David, and riding on their chariots and horses, they, and their princes, the men of Juda, and the dwellers in Jerusalem: and this city shall be inhabited for ever. + +And +men shall come out of the cities of Juda, and from round about Jerusalem, and out of the land of Benjamin, and out of the plain country, and from the hill country, and from the south +country, bringing whole burnt offerings, and sacrifices, and incense, and manna, and frankincense, bringing praise to the house of the Lord. + +But it shall come to pass, if you⌃ will not listen to me to sanctify the sabbath-day, to bear no burdens, nor go in +with them by the gates of Jerusalem on the sabbath-day; then will I kindle a fire in the gates thereof, and it shall devour the streets of Jerusalem, and shall not be quenched. + +

+ + +

The word that came from the Lord to + +Jeremias, saying, Arise, and go down to the potter's house, and there you shall hear my words. + +So I went down to the potter's house, and behold, he was making a vessel on the stones. + +And the vessel which he was making with his hands fell: so he made it again another vessel, as it seemed good to him to make +it. + +And the word of the Lord came to me, saying, + +Shall I not be able, O house of Israel, to do to you as this potter? behold, as the clay of the potter are you⌃ in my hands. + + +If I shall pronounce a decree upon a nation, or upon a kingdom, to cut them off, and to destroy +them; + +and that nation turn from all their sins, then will I repent of the evils which I purposed to do to them. + +And +if I shall pronounce a decree upon a nation and kingdom, to rebuild and to plant +it; + +and they do evil before me, so as not to listen to my voice, then will I repent of the good which I spoke of, to do it to them. + +And now say to the men of Juda, and to the inhabitants of Jerusalem, Behold, I prepare evils against you, and devise a device against you: let every one turn now from his evil way, and amend your practices. + +And they said, We will quit ourselves like men, for we will pursue our perverse ways, and we will perform each the lusts of his evil heart. + +Therefore thus says the Lord; Enquire now among the nations, who has heard such very horrible things as the virgin of Israel has done? + +Will fertilising streams fail +to flow from a rock, or snow +fail from Libanus? will water violently impelled by the wind turn aside? + +For my people have forgotten me, they have offered incense in vain, and they fail in their ways, +leaving the ancient tracks, to enter upon impassable paths; + +to make their land a desolation, and a perpetual hissing; all that go through it shall be amazed, and shall shake their heads. + +I will scatter them before their enemies like an east wind; I will show them the day of their destruction. + +Then they said, Come, and let us devise a device against Jeremias; for the law shall not perish from the priest, nor counsel from the wise, nor the word from the prophet. Come, and let us strike him with the tongue, and we will hear all his words. + +Hear me, O Lord, and hear the voice of my pleading. + +Forasmuch as evil is rewarded for good; for they have spoken words against my soul, and they have hidden the punishment they +meant for me; remember that I stood before your face, to speak good for them, to turn away your wrath from them. + +Therefore do you deliver their sons to famine, and gather them to the power of the sword: let their women be childless and widows; and let their men be cut off by death, and their young men fall by the sword in war. + +Let there be a cry in their houses: you shall bring upon them robbers suddenly: for they have formed a plan to take me, and have hidden snares for me. + +And you, Lord, know all their deadly counsel against me: account not their iniquities guiltless, and blot not out their sins from before you: let their weakness come before you; deal with them in the time of your wrath. + +

+ + +

Then said the Lord to me, Go and get an earthen bottle, the work of the potter, and you shall bring +some of the elders of the people, and of the priests; + +and you shall go forth to the burial-place of the sons of their children, which is at the entrance of the gate of Charsith; and do you read there all these words which I shall speak to you: + +and you shall say to them, Hear you⌃ the word of the Lord, you⌃ kings of Juda, and men of Juda, and the dwellers in Jerusalem, and they that enter in by these gates; thus says the Lord God of Israel; Behold, I +will bring evil upon this place, so that the ears of every one that hears it shall tingle. + +Because they forsook me, and profaned this place, and burnt incense in it to strange gods, which they and their fathers knew not; and the kings of Juda have filled this place with innocent blood, + +and built high places for Baal, to burn their children in the fire, which things I commanded not, neither did I design +them in my heart: + +Therefore, behold, the days come, says the Lord, when this place shall no more be called, The fall and burial-place of the son of Ennom, but, The burial-place of slaughter. + +And I will destroy the counsel of Juda and the counsel of Jerusalem in this place; and I will cast them down with the sword before their enemies, and by the hands of them that seek their lives: and I will give their dead bodies for food to the birds of the sky and to the wild beasts of the earth. + +And I will bring this city to desolation and +make it a hissing; every one that passes by it shall scowl, and hiss because of all her plague. + +And they shall eat the flesh of their sons, and the flesh of their daughters; and they shall eat every one the flesh of his neighbor in the blockade, and in the siege wherewith their enemies shall besiege them. + +And you shall break the bottle in the sight of the men that go forth with you, + +and you shall say, Thus says the Lord, Thus will I break in pieces this people, and this city, even as an earthen vessel is broken in pieces which can’t be mended again. + +Thus will I do, says the Lord, to this place, and to the inhabitants of it, that this city may be given up, as one that is falling to ruin. + +And the houses of Jerusalem, and the houses of the kings of Juda shall be as a ruinous place, because of their uncleannesses in all the houses, wherein they burnt incense upon their roofs to all the host of heaven, and poured drink-offerings to strange gods. + +And Jeremias came from +the place of the Fall, 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, Thus says the Lord; + +Behold I bring upon this city, and upon all the cities belonging to it, and upon the villages of it, all the evils which I have spoken against it, because they have hardened their neck, +that they might not listen to my commands. + +

+ + +

Now Paschor the son of Emmer, the priest, who also had been appointed chief of the house of the Lord, heard Jeremias prophesying these words. + +And he struck him, and cast him into the dungeon which was by the gate of the upper house that was set apart, which was by the house of the Lord. + +And Paschor brought Jeremias out of the dungeon: and Jeremias said to him, +The Lord has not called your name Paschor, but Exile. + +For thus says the Lord, Behold, I +will give you up to captivity with all your friends: and they shall fall by the sword of their enemies, and your eyes shall see +it: and I will give you and all Juda into the hands of the king of Babylon, and they shall carry them captives, and cut them in pieces with swords. + +And I will give all the strength of this city, and all the labors of it, and all the treasures of the king of Juda, into the hands of his enemies, and they shall bring them to Babylon. + +And you and all the dwellers in your house shall go into captivity: and you shall die in Babylon, and there you and all your friends shall be buried, to whom you have prophesied lies. + +You have deceived me, O Lord, and I have been deceived: you have been strong, and has prevailed: I am become a laughing stock, I am continually mocked every day. + +For I will laugh with my bitter speech, I will call upon rebellion and misery: for the word of the Lord is become a reproach to me and a mockery all my days. + +Then I said, I will by no means name the name of the Lord, and I will no more at all speak in his name. But it was a burning fire flaming in my bones, and I am utterly weakened on all sides, and can’t bear +up. + +For I have heard the reproach of many gathering round, +saying, Conspire you⌃, and let us conspire together against him, +even all his friends: watch his intentions, if perhaps he shall be deceived, and we shall prevail against him, and we shall be avenged on him. + +But the Lord was with me as a mighty man of war: therefore they persecuted +me, but could not perceive +anything against me; they were greatly confounded, for they perceived not their disgrace, which shall never be forgotten. + +O Lord, that prove just +deeds, understanding the reins and hearts, let me see your vengeance upon them: for to you I have revealed my cause. + +Sing you⌃ to the Lord, sing praise to him: for he has rescued the soul of the poor from the hand of evil-doers. + +Cursed be the day wherein I was born: the day wherein my mother brought me forth, let it not be blessed. + +Cursed be the man who brought the glad tidings to my father, saying, A male child is born to you. + +Let that man rejoice as the cities which the Lord overthrew in wrath, and repented not: let him hear crying in the morning, and loud lamentation at noon; + +because he killed me not in the womb, and my mother became not my tomb, and her womb always great with me. + +Why is it that I came forth of the womb to see troubles and distresses, and my days are spent in shame? + +

+ + +

THE WORD THAT CAME FROM THE LORD TO JEREMIAS, WHEN KING SEDEKIAS SENT TO HIM PASCHOR THE SON OF MELCHIAS, AND SOPHONIAS SON OF BASAEAS, THE PRIEST, SAYING, + +Enquire of the Lord for us; for the king of Babylon has risen up against us; if the Lord will do according to all his wonderful works, and +the king shall depart from us. + +And Jeremias said to them, Thus shall you⌃ say to Sedekias king of Juda, + +Thus says the Lord; Behold, I +will turn back the weapons of war wherewith you⌃ fight against the Chaldeans that have besieged you from outside the wall, and I will gather them into the midst of this city. + +And I will fight against you with an outstretched hand and with a strong arm, with wrath and great anger. + +And I will strike all the dwellers in this city, +both men and cattle, with grievous pestilence: and they shall die. + +And after this, thus says the Lord; I will give Sedekias king of Juda, and his servants, and the people that is left in this city from the pestilence, and from the famine, and from the sword, into the hands of their enemies, that seek their lives: and they shall cut them in pieces with the edge of the sword: I will not spare them, and I will not have compassion upon them. + +And you shall say to this people, Thus says the Lord; Behold, I have set before you the way of life, and the way of death. + +He that remains in this city shall die by the sword, and by famine: but he that goes forth to advance to the Chaldeans that have besieged you, shall live, and his life shall be to him for a spoil, and he shall live. + +For I have set my face against this city for evil, and not for good: it shall be delivered into the hands of the king of Babylon, and he shall consume it with fire. + +O house of the king of Juda, hear you⌃ the word of the Lord. + +O house of David, thus says the Lord; Judge judgment in the morning, and act rightly, and rescue the spoiled one from the hand of him that wrongs him, lest my anger be kindled like fire, and it burn, and there be none to quench +it. + +Behold, I am against you that dwell in the valley of Sor; in the plain country, +even against them that say, Who shall alarm us? or who shall enter into our habitation? + +And I will kindle a fire in the forest thereof, and it shall devour all things round about it. + +

+ + +

Thus says the Lord; Go you, and go down to the house of the king of Juda, and you shall speak there this word, + +and you shall say, Hear the word of the Lord, O king of Juda, that sit on the throne of David, you, and your house, and your people, and they that go in at these gates: + +thus says the Lord; Execute you⌃ judgment and justice, and rescue the spoiled out of the hand of him that wrongs him: and oppress not the stranger, and orphan, and widow, and sin not, and shed no innocent blood in this place. + +For if you⌃ will indeed perform this word, then shall there enter in by the gates of this house kings sitting upon the throne of David, and riding on chariots and horses, they, and their servants, and their people. + +But if you⌃ will not perform these words, by myself have I sworn, says the Lord, that this house shall be +brought to desolation. + +For thus says the Lord concerning the house of the king of Juda; You are Galaad to me, +and the head of Libanus: +yet surely I will make you a desert, +even cities that shall not be inhabited: + +and I will bring upon you a destroying man, and his axe: and they shall cut down your choice cedars, and cast +them into the fire. + +And nations shall pass through this city, and each shall say to his neighbor, Why has the Lord done thus to this great city? + +And they shall say, Because they forsook the covenant of the Lord their God, and worshipped strange gods, and served them. + +Weep not for the dead, nor lament for him: weep bitterly for him that goes away: for he shall return no more, nor see his native land. + +For thus says the Lord concerning Sellem the son of Josias, who reigns in the place of Josias his father, who has gone forth out of this place; He shall not return there any more: + +but in that place whither I have carried him captive, there shall he die, and shall see this land no more. + +He that builds his house not with justice, and his upper chambers not with judgment, who works by means of his neighbor for nothing, and will by no means give him his reward. + +You have built for yourself a well-proportioned house, airy chambers, fitted with windows, and wainscoted with cedar, and painted with vermilion. + +Shall you reign, because you are provoked with your father Achaz? they shall not eat, and they shall not drink: it is better for you to execute judgment and justice. + +They understood not, they judged not the cause of the afflicted, nor the cause of the poor: is not this your not knowing me? says the Lord. + +Behold, your eyes are not good, nor your heart, but +they go after your covetousness, and after the innocent blood to shed it, and after acts of injustice and slaughter, to commit them. + +Therefore thus says the Lord concerning Joakim son of Josias, king of Juda, even concerning this man; they shall not bewail him, +saying, Ah brother! neither shall they at all weep for him, +saying, Alas Lord. + +He shall be buried with the burial of an ass; he shall be dragged roughly along and cast outside the gate of Jerusalem. + +Go up to Libanus, and cry; and utter your voice to Basan, and cry aloud to the extremity of the sea: for all your lovers are destroyed. + +I spoke to you on +occasion of your trespass, but you said, I will not listen. This +has been your way from your youth, you have not listened to my voice. + +The wind shall tend all your shepherds, and your lovers shall go into captivity; for then shall you be ashamed and disgraced because of all your lovers. + +O you that dwell in Libanus, making your nest in the cedars, you shall groan heavily, when pangs as of a travailing woman are come upon you. + + +As I live, says the Lord, though Jechonias son of Joakim king of Juda were indeed the seal upon my right hand, thence would I pluck you; + +and I will deliver you into the hands of them that seek your life, before whom you are afraid, into the hands of the Chaldeans. + +And I will cast forth you, and your mother that bore you, into a land where you were not born; and there you⌃ shall die. + +But they shall by no means return to the land which they long for in their souls. + +Jechonias is dishonored as a good-for-nothing vessel; for he is thrown out and cast forth into a land which he knew not. + +Land, land, hear the word of the Lord. + +Write you⌃ this man an outcast: for there shall none of his seed at all grow up to sit on the throne of David, +or as a prince yet in Juda. + +

+ + +

Woe to the shepherds that destroy and scatter the sheep of their pasture! + +Therefore thus says the Lord against them that tend my people; You⌃ have scattered my sheep, and driven them out, and you⌃ have not visited them: behold, I +will take vengeance upon you according to your evil practices. + +And I will gather in the remnant of my people in every land, whither I have driven them out, and will set them in their pasture; and they shall increase and be multiplied. + +And I will raise up shepherds to them, who shall feed them: and they shall fear no more, nor be alarmed, says the Lord. + +Behold, the days come, says the Lord, when I will raise up to David a righteous branch, and a king shall reign and understand, and shall execute judgment and righteousness on the earth. + +In his days both Juda shall be saved, and Israel shall dwell securely: and this is his name, which the Lord shall call him, Josedec among the prophets. + +Therefore, behold, the days come, says the Lord, when they shall no more say, The Lord lives, who brought up the house of Israel out of the land of Egypt; + +but The Lord lives, who has gathered the whole seed of Israel from the north land, and from all the countries whither he +had driven them out, and has restored them into their own land. + +My heart is broken within me; all my bones are shaken: I am become as a broken-down man, and as a man overcome with wine, because of the Lord, and because of the excellence of his glory. + +For because of these things the land mourns; the pastures of the wilderness are dried up; and their course is become evil, and so +also their strength. + +For priest and prophet are defiled; and I have seen their iniquities in my house. + +Therefore let their way be to them slippery and dark: and they shall be tripped up and fall in it: for I will bring evils upon them, in the year of their visitation. + +And in the prophets of Samaria I have seen lawless deeds; they prophesied by Baal, and led my people Israel astray. + +Also in the prophets of Jerusalem I have seen horrible things: as they committed adultery, and walked in lies, and strengthened the hands of many, that they should not return each from his evil way: they are all become to me as Sodom, and the inhabitants thereof as Gomorrha. + +Therefore thus says the Lord; Behold, I will feed them with pain, and give them bitter water to drink: for from the prophets of Jerusalem has defilement gone forth +into all the land. + +Thus says the Lord Almighty, Listen not to the words of the prophets: for they frame a vain vision for themselves; they speak from their own heart, and not from the mouth of the Lord. + +They say to them that reject the word of the Lord, There shall be peace to you; and to all that walk after their own lusts, and to everyone that walks in the error of his heart, they have said, No evil shall come upon you. + +For who has stood in the counsel of the Lord, and seen his word? who has listened, and heard? + +Behold, +there is an earthquake from the Lord, and anger proceeds to a convulsion, it shall come violently upon the ungodly. + +And the Lord's wrath shall return no more, until he have accomplished it, and until he have established it, according to the purpose of his heart: at the end of the days they shall understand it. + +I sent not the prophets, yet they ran: neither spoke I to them, yet they prophesied. + +But if they had stood in my counsel, and if they had listened to my words, then would they have turned my people from their evil practices. + +I am a God near at hand, says the Lord, and not a God afar off. + +Shall any one hide himself in secret places, and I not see him? Do I not fill heaven and earth? says the Lord. + +I have heard what the prophets say, what they prophesy in my name, saying falsely, I have seen a night vision. + +How long shall +these things be in the heart of the prophets that prophesy lies, when they prophesy the purposes of their own heart? + +who devise that +men may forget my law by their dreams, which they have told every one to his neighbor, as their fathers forgot my name in +the worship of Baal. + +The prophet who has a dream, let him tell his dream; and +he in whom is my word +spoken to him, let him tell my word truly: what is the chaff to the corn? so are my words, says the Lord. + +Behold, are not my words as fire? says the Lord; and as an axe cutting the rock? + +Behold, I am therefore against the prophets, says the Lord God, that steal my words every one from his neighbor. + +Behold, I am against the prophets that put forth prophecies of mere words, and slumber their sleep. + +Therefore, behold, I am against the prophets that prophesy false dreams, and have not told them +truly, and have caused my people to err by their lies, and by their errors; yet I sent them not, and commanded them not; therefore, they shall not profit this people at all. + +And if this people, or the priest, or the prophet, should ask, What is the burden of the Lord? then you shall say to them, You⌃ are the burden, and I will dash you down, says the Lord. + + +As for the prophet, and the priests, and the people, who shall say, The burden of the Lord, I will even take vengeance on that man, and on his house. + +Thus shall you⌃ say every one to his neighbor, and every one to his brother, What has the Lord answered? and, what has the Lord said? + +And do you⌃ name no more the burden of the Lord; for his own word shall be a man's burden. + +But therefore, +say you⌃, has the Lord our God spoken? + +Therefore thus says the Lord our God; Because you⌃ have spoken this word, The burden of the Lord, and I sent to you, saying, you⌃ shall not say, The burden of the Lord; + +therefore, behold, I +will seize, and dash down you and the city which I gave to you and your fathers. + +And I will bring upon you an everlasting reproach, and everlasting disgrace, which shall not be forgotten. + +

+ + +

The Lord showed me two baskets of figs, lying in front of the temple of the Lord, after Nabuchodonosor king of Babylon had carried captive Jechonias son of Joakim king of Juda, and the princes, and the artificers, and the prisoners, and the rich men out of Jerusalem, and had brought them to Babylon. + +The one basket was +full of very good figs, as the early figs; and the other basket was +full of very bad figs, which could not be eaten, for their badness. + +And the Lord said to me, What see you, Jeremias? and I said, Figs; the good figs, very good; and the bad, very bad, which can’t be eaten, for their badness. + +And the word of the Lord came to me, saying, + +Thus says the Lord, the God of Israel; As these good figs, so will I acknowledge the Jews that have been carried away captive, whom I have sent forth out of this place into the land of the Chaldeans for good. + +And I will fix my eyes upon them for good, and I will restore them into this land for good: and I will build them up, and not pull them down; and I will plant them, and not pluck them up. + +And I will give them a heart to know me, that I am the Lord: and they shall be to me a people, and I will be to them a God: for they shall turn to me with all their heart. + +And as the bad figs, which can’t be eaten, for their badness; thus says the Lord, So will I deliver Sedekias king of Juda, and his nobles, and the remnant of Jerusalem, them that are left in this land, and the dwellers in Egypt. + +And I will cause them to be dispersed into all the kingdoms of the earth, and they shall be for a reproach, and a proverb, and an +object of hatred, and a curse, in every place whither I have driven them out. + +And I will send against them famine, and pestilence, and the sword, until they are consumed from off the land which I gave them. + +

+ + +

THE WORD THAT CAME TO JEREMIAS concerning all the people of Juda in the fourth year of Joakim, son of Josias, king of Juda; + +which he spoke to all the people of Juda, and to the inhabitants of Jerusalem, saying, + +In the thirteenth year of Josias, son of Amos, king of Juda, even until this day for three and twenty years, I have both spoken to you, rising early and speaking, + +and I sent to you my servants the prophets, sending them early; (but you⌃ listened not, and listened not with your ears;) saying, + +Turn you⌃ every one from his evil way, and from your evil practices, and you⌃ shall dwell in the land which I gave to you and your fathers, of old and for ever. + +Go you⌃ not after strange gods, to serve them, and to worship them, that you⌃ provoke me not by the works of your hands, to do you hurt. + +But you⌃ listened not to me. + +Therefore thus says the Lord; Since you⌃ believed not my words, + +behold I +will send and take a family from the north, and will bring them against this land, and against the inhabitants of it, and against all the nations round about it, and I will make them utterly waste, and make them a desolation, and a hissing, and an everlasting reproach. + +And I will destroy from +among them the voice of joy, and the voice of gladness, the voice of the bridegroom, and the voice of the bride, the scent of ointment, and the light of a candle. + +And all the land shall be a desolation; and they shall serve among the Gentiles seventy years. + +And when the seventy years are fulfilled, I will take vengeance on that nation, and will make them a perpetual desolation. + +And I will bring upon that land all my words which I have spoken against it, +even all things that are written in this book. + +THE PROPHECIES OF JEREMIAS AGAINST THE NATIONS OF AeLAM. + +Thus says the Lord, The bow of Aelam is broken, +even the chief of their power. + +And I will bring upon Aelam the four winds from the four corners of heaven, and I will disperse them toward all these winds; and there shall be no nation +to which they shall not come—even the outcasts of Aelam. + +And I will put them in fear before their enemies that seek their life; and I will bring evils upon them according to my great anger; and I will send forth my sword after them, until I have utterly destroyed them. + +And I will set my throne in Aelam, and will send forth thence king and rulers. + +But it shall come to pass at the end of days, that I will turn the captivity of Aelam, says the Lord. + +

+ + +

In the beginning of the reign of king Sedekias, there came this word concerning Aelam. + +FOR EGYPT, AGAINST THE POWER OF PHARAO NECHAO KING OF EGYPT, who was by the river Euphrates in Charmis, whom Nabuchodonosor king of Babylon struck in the fourth year of Joakim king of Juda. + +Take up arms and spears, and draw near to battle; + +and harness the horses: mount, you⌃ horsemen, and stand ready in your helmets; advance the spears, and put on your breastplates. + +Why do they fear, and turn back? even because their mighty men shall be slain: they have utterly fled, and being hemmed in they have not rallied, says the Lord. + +Let not the swift flee, and let not the mighty man escape to the north: the +forces at Euphrates are become feeble, and they have fallen. + +Who is this +that shall come up as a river, and as rivers roll +their waves? + +The waters of Egypt shall come up like a river: and he said, I will go up, and will cover the earth, and will destroy the dwellers in it. + +Mount you⌃ the horses, prepare the chariots; go forth, you⌃ warriors of the Ethiopians, and Libyans armed with shields; and mount, you⌃ Lydians, bend the bow. + +And that day +shall be to the Lord our God a day of vengeance, to take vengeance on his enemies: and the sword of the Lord shall devour, and be glutted, and be drunken with their blood: for the Lord +has a sacrifice from the land of the north at the river Euphrates. + +Go up to Galaad, and take balm for the virgin daughter of Egypt: in vain have you multiplied your medicines; there is no help in you. + +The nations have heard your voice, and the land has been filled with your cry: for the warriors have fainted fighting one against another, +and both are fallen together. + +THE WORDS WHICH THE LORD SPOKE by Jeremias, concerning the coming of the king of Babylon to strike the land of Egypt. + +Proclaim +it at Magdol, and declare +it at Memphis: say you⌃, Stand up, and prepare; for the sword has devoured your yew tree. + +Therefore has Apis fled from you? your choice calf has not remained; for the Lord has utterly weakened him. + +And your multitude has fainted and fallen; and each one said to his neighbor, Let us arise, and return into our country to our people, from the Grecian sword. + +Call you⌃ the name of Pharao Nechao king of Egypt, Saon esbeie moed. + + +As I live, says the Lord God, he shall come as Itabyrion among the mountains, and as Carmel that is on the sea. + +O daughter of Egypt dwelling +at home, prepare you stuff for removing: for Memphis shall be utterly desolate, and shall be called Woe, because there are no inhabitants in it. + +Egypt is a fair heifer, +but destruction from the north is come upon her. + +Also her hired +soldiers in the midst of her are as fatted calves fed in her; for they also have turned, and fled with one accord: they stood not, for the day of destruction was come upon them, and the time of their retribution. + +Their voice is as +that of a hissing serpent, for they go upon the sand; they shall come upon Egypt with axes, as men that cut wood. + +They shall cut down her forest, says the Lord, for +their number can’t at all be conjectured, for it exceeds the locust in multitude, and they are innumerable. + +The daughter of Egypt is confounded; she is delivered into the hands of a people from the north. + +Behold, I +will avenge Ammon her son upon Pharao, and upon them that trust in him. + +But fear not you, my servant Jacob, neither be you alarmed, Israel: for, behold, I will save you from afar, and your seed from their captivity; and Jacob shall return, and be at ease, and sleep, and there shall be no one to trouble him. + +Fear not you, my servant Jacob, says the Lord; for I am with you: she +that was without fear and in luxury, has been delivered up: for I will make a full end of every nation among whom I have thrust you forth; but I will not cause you to fail: yet will I chastise you in the way of judgment, and will not hold you entirely guiltless. + +

+ + +

THE WORD OF THE LORD WHICH HE SPOKE AGAINST BABYLON. + +Proclaim you⌃ among the Gentiles, and cause the tidings to be heard, and suppress +them not: say you⌃, Babylon is taken, Belus is confounded; the fearless, the luxurious Maerodach is delivered up. + +For a nation has come up against her from the north, he shall utterly ravage her land, and there shall be none to dwell in it, neither man nor beast. + +In those days, and at that time, the children of Israel shall come, they and the children of Juda together; they shall proceed, weeping as they go, seeking the Lord their God. + +They shall ask the way till +they come to Sion, for that way shall they set their face; and they shall come and flee for refuge to the Lord their God; for the everlasting covenant shall not be forgotten. + +My people have been lost sheep: their shepherds thrust them out, they caused them to wander on the mountains: they went from mountain to hill, they forgot their resting-place. + +All that found them consumed them: their enemies said, Let us not leave them alone, because they have sinned against the Lord: he that gathered their fathers +had a pasture of righteousness. + +Flee you⌃ out of the midst of Babylon, and from the land of the Chaldeans, and go forth, and be as serpents before sleep. + +For, behold, I stir up against Babylon the gatherings of nations out of the land of the north; and they shall set themselves in array against her: thence shall she be taken, as the dart of an expert warrior shall not return empty. + +And Chaldea shall be a spoil: all that spoil her shall be satisfied. + +Because you⌃ rejoiced, and boasted, +while plundering my heritage; because you⌃ exulted as calves in the grass, and pushed with the horn as bulls. + +Your mother is greatly ashamed; your mother that bore you for prosperity is confounded: +she is the last of the nations, desolate, + +by reason of the Lord's anger: it shall not be inhabited, but it shall be all a desolation; and every one that passes through Babylon shall scowl, and they shall hiss at all her plague. + +Set yourselves in array against Babylon round about, all you⌃ that bend the bow; shoot at her, spare not your arrows, + +and prevail against her: her hands are weakened, her bulwarks are fallen, and her wall is broken down: for it is vengeance from God: take vengeance upon her; as she has done, do to her. + +Utterly destroy seed out of Babylon, +and him that holds a sickle in time of harvest: for fear of the Grecian sword, they shall return every one to his people, and every one shall flee to his own land. + +Israel is a wandering sheep; the lions have driven him out: the king of Assyria first devoured him, and afterward this king of Babylon +has gnawed his bones. + +Therefore thus says the Lord; Behold, I +will take vengeance on the king of Babylon, and upon his land, as I took vengeance on the king of Assyria. + +And I will restore Israel to his pasture, and he shall feed on Carmel and on mount Ephraim and in Galaad, and his soul shall be satisfied. + +In those days, and at that time, they shall seek for the iniquity of Israel, and there shall be none; and for the sins of Juda, and they shall not be found: for I will be merciful to them that are left + +on the land, says the Lord. Go up against it roughly, and against them that dwell on it: avenge, O sword, and destroy utterly, says the Lord, and do according to all that I command you. + +A sound of war, and great destruction in the land of the Chaldeans! + +How is the hammer of the whole earth broken and crushed! How is Babylon become a desolation among the nations! + +They shall come upon you, and you shall not know it, Babylon, that you will even be taken captive: you are found and taken, because you did resist the Lord. + +The Lord has opened his treasury, and brought forth the weapons of his anger: for the Lord God +has a work in the land of the Chaldeans. + +For her times are come: open you⌃ her storehouses: search her as a cave, and utterly destroy her: let there be no remnant of her. + +Dry you⌃ up all her fruits, and let them go down to the slaughter: woe to them! for their day is come, and the time of their retribution. + +A voice of men fleeing and escaping from the land of Babylon, to declare to Sion the vengeance +that comes from the Lord our God. + +Summon many against Babylon, +even every one that bends the bow: camp against her round about; let no one of her +people escape: render to her according to her works; according to all that she has done, do to her: for she has resisted the Lord, the Holy God of Israel. + +Therefore shall her young men fall in the streets, and all her warriors shall be cast down, says the Lord. + +Behold, I am against you the haughty one, says the Lord: for your day is come, and the time of your retribution. + +And your pride shall fail, and fall, and there shall be no one to set it up again: and I will kindle a fire in her forest, and it shall devour all things round about her. + +Thus says the Lord; The children of Israel and the children of Juda have been oppressed: all they that have taken them captive have oppressed them together; for they would not let them go. + +But their Redeemer is strong; the Lord Almighty is his name: he will enter into judgment with his adversaries, that he may destroy the earth; + +and he will sharpen a sword against the Chaldeans, and against the inhabitants of Babylon, and upon her nobles and upon her wise men; + +a sword upon her warriors, and they shall be weakened: a sword upon their horses, and upon their chariots: + +a sword upon their warriors and upon the mixed people in the midst of her; and they shall be as women: a sword upon the treasures, and they shall be scattered upon her water, + +and they shall be ashamed: for it is a land of graven +images; and in the islands, where they boasted. + +Therefore shall idols dwell in the islands, and the young of monsters shall dwell in it: it shall not be inhabited any more for ever. + +As God overthrew Sodom and Gomorrha, and the cities bordering upon them, says the Lord: no man shall dwell there, and no son of man shall sojourn there. + +Behold, a people comes from the north, and a great nation, and many kings shall be stirred up from the end of the earth; holding bow and dagger: + + +the people is fierce, and will have no mercy: their voices shall sound as the sea, they shall ride upon horses, prepared for war, like fire, against you, O daughter of Babylon. + +The king of Babylon heard the sound of them, and his hands were enfeebled: anguish overcame him, pangs as of a woman in travail. + +Behold, he shall come up as a lion from Jordan to Gaethan; for I will speedily drive them from her, and I will set all the youths against her: for who is like me? and who will resist me? and who is this shepherd who will stand before me? + +Therefore hear you⌃ the counsel of the Lord, which he has taken against Babylon; and his devices, which he has devised upon the Chaldeans inhabiting +it: surely lambs of their flock shall be destroyed: surely pasture shall be cut off from them. + +For at the sound of the taking of Babylon the earth shall quake, and a cry shall be heard among the nations. + +

+ + +

Thus says the Lord; Behold, I stir up against Babylon, and against the Chaldeans dwelling therein, a deadly burning wind. + +And I will send forth against Babylon spoilers, and they shall spoil her, and shall ravage her land. Woe to Babylon round about +her in the day of her affliction. + +Let the archer bend his bow, and him that has armor put it on: and spare you⌃ not her young men, but destroy you⌃ all her host. + +And slain men shall fall in the land of the Chaldeans, and +men pierced through shall fall without it. + +For Israel and Juda have not been forsaken of their God, of the Lord Almighty; whereas their land was filled with iniquity against the holy things of Israel. + +Flee you⌃ out of the midst of Babylon, and deliver every one his soul: and be not overthrown in her iniquity; for it is the time of her retribution from the Lord; he is rendering to her a recompence. + +Babylon has been a golden cup in the Lord's hand, causing all the earth to be drunken: the nations have drunk of her wine; therefore they were shaken. + +And Babylon is fallen suddenly, and is broken to pieces: lament for her; take balm for her deadly wound, if by any means she may be healed. + +We tried to heal Babylon, but she was not healed: let us forsake her, and depart every one to his own country: for her judgment has reached to the heaven, it has mounted up to the stars. + +The Lord has brought forth his judgment: come, and let us declare in Sion the works of the Lord our God. + +Prepare the arrows; fill the quivers: the Lord has stirred up the spirit of the king of the Medes: for his wrath is against Babylon, to destroy it utterly; for it is the Lord's vengeance, it is the vengeance of his people. + +Lift up a standard on the walls of Babylon, prepare the quivers, rouse the guards, prepare the weapons: for the Lord has taken +the work in hand, and will execute what he has spoken against the inhabitants of Babylon, + +dwelling on many waters, and amidst the abundance of her treasures; your end is come verily into your bowels. + +For the Lord has sworn by his arm, +saying, +I will fill you with men as with locusts; and they that come down shall cry against you. + +The Lord made the earth by his power, preparing the world by his wisdom, by his understanding he stretched out the heaven. + +At +his voice he makes a sound of water in the heaven, and brings up clouds from the extremity of the earth; he makes lightnings for rain, and brings light out of his treasures. + +Every man has completely lost understanding; every goldsmith is confounded because of his graven +images: for they have cast false +gods, there is no breath in them. + +They are vain works, objects of scorn; in the time of their visitation they shall perish. + +Not such is Jacob's portion; for he that formed all things, he is his inheritance; the Lord is his name. + +You scatter for me the weapons of war: and I will scatter nations by you, and will destroy kings by means of you. + +And by you I will scatter the horse and his rider; and by you I will scatter chariots and them that ride in them. + +And by you I will scatter youth and maid; and by you I will scatter man and woman. + +And by you I will scatter the shepherd and his flock; and by you I will scatter the husbandman and his husbandry; and by you I will scatter leaders and the captains. + +And I will recompense to Babylon and to all the Chaldeans that dwell +there all their mischiefs that they have done to Sion before your eyes, says the Lord. + +Behold, I am against you, the ruined mountain, that destroys the whole earth; and I will stretch out my hand upon you, and will roll you down upon the rocks, and will make you as a burnt mountain. + +And they shall not take from you a stone for a corner, nor a stone for a foundation: for you shall be a desolation for ever, says the Lord. + +Lift up a standard in the land, sound the trumpet among the nations, consecrate the nations against her, raise up kings against her by me, and +that for the people of Achanaz; set against her engines of war; bring up against her horses as a multitude of locusts. + +Bring up nations against her, +even the king of the Medes and of the whole earth, his rulers, and all his captains. + +The earth has quaked and been troubled, because the purpose of the Lord has risen up against Babylon, to make the land of Babylon a desolation, and uninhabitable. + +The warrior of Babylon has failed to fight; they shall sit there in the siege; their power is broken; they are become like women; her tabernacles have been set on fire; her bars are broken. + +One shall rush, running to meet +another runner, and one +shall go with tidings to meet +another with tidings, to bring tidings to the king of Babylon, that his city is taken. + +At the end of his passages they were taken, and his cisterns they have burnt with fire, and his warriors are going forth. + +For thus says the Lord, The houses of the king of Babylon shall be threshed as a floor in the season; yet a little while, and her harvest shall come. + +He has devoured me, he has torn me asunder, airy darkness has come upon me; Nabuchodonosor king of Babylon has swallowed me up, as a dragon has he filled his belly with my delicacies. + +My troubles and my distresses have driven me out into Babylon, shall she that dwells in Sion say; and my blood +shall be upon the Chaldeans dwelling +there, shall Jerusalem say. + +Therefore thus says the Lord, Behold, I will judge your adversary, and I will execute vengeance for you; and I will waste her sea, and dry up her fountain. + +And Babylon shall be a desolation, and shall not be inhabited. + +For they rose up together as lions, and as lions' whelps. + +In their heat I will give them a draught, and make them drunk, that they may be stupified, and sleep an everlasting sleep, and not awake, says the Lord. + +And bring you them down as lambs to the slaughter, and rams with kids. + +How has the boast of all the earth been taken and caught in a snare! how has Babylon become a desolation among the nations! + +The sea has come up upon Babylon with the sound of its waves, and she is covered. + +Her cities are become like a dry and trackless land; not so much as one +man shall dwell in it, neither shall a son of man lodge in it. + +And I will take vengeance on Babylon, and bring forth out of her mouth what she has swallowed down, and the nations shall no more be gathered to her: + +and in Babylon the slain men of all the earth shall fall. + +Go forth of the land, you⌃ that escape, and stay not; you⌃ that are afar off, remember the Lord, and let Jerusalem come into your mind. + +We are ashamed, because we have heard our reproach; disgrace has covered our face; aliens are come into our sanctuary, +even into the house of the Lord. + +Therefore, behold, the days come, says the Lord, when I will take vengeance upon her graven +images: and slain men shall fall in all her land. + +For though Babylon should go up as the heaven, and though she should strengthen her walls with her power, from me shall come they that shall destroy her, says the Lord. + +A sound of a cry in Babylon, and great destruction in the land of the Chaldeans: + +for the Lord has utterly destroyed Babylon, and cut off from her the great voice sounding as many waters: he has consigned her voice to destruction. + +For distress has come upon Babylon, her warriors are taken, their bows are useless: for God recompenses them. + +The Lord recompenses, and will make her leaders and her wise men and her captains completely drunk, says the King, the Lord Almighty is his name. + +Thus says the Lord, The wall of Babylon was made broad, but it shall be completely broken down, and her high gates shall be burnt with fire; and the peoples shall not labor in vain, nor the nations fail in +their rule. + +THE WORD WHICH THE LORD COMMANDED THE PROPHET JEREMIAS to say to Saraeas son of Nerias, son of Maasaeas, when he went from Sedekias king of Juda to Babylon, in the fourth year of his reign. And Saraeas was over the bounties. + +And Jeremias wrote in a book all the evils which should come upon Babylon, +even all these words that are written against Babylon. + +And Jeremias said to Saraeas, When you are come to Babylon, and shall see and read all these words; + +then you shall say, O Lord God, you have spoken against this place, to destroy it, and that there should be none to dwell in it, neither man nor beast; for it shall be a desolation for ever. + +And it shall come to pass, when you shall cease from reading this book, that you shall bind a stone upon it, and cast it into the midst of Euphrates; + +and shall say, Thus shall Babylon sink, and not rise, because of the evils which I bring upon it. + +

+ + +

THUS SAITH THE LORD AGAINST THE PHILISTINES; + +Behold, waters come up from the north, and shall become a sweeping torrent, and it shall sweep away the land, and its fulness; the city, and them that dwell in it: and men shall cry and all that dwell in the land shall howl, + +at the sound of his rushing, at +the sound of his hoofs, and at the rattling of his chariots, at the noise of his wheels: the fathers turned not to their children because of the weakness of their hands, + +in the day that is coming to destroy all the Philistines: and I will utterly destroy Tyre and Sidon and all the rest of their allies: for the Lord will destroy the remaining +inhabitants of the islands. + +Baldness is come upon Gaza; Ascalon is cast away, and the remnant of the Enakim. + +How long will you strike, O sword of the Lord? how long will it be ere you are quiet? return into your sheath, rest, and be removed. + +How shall it be quiet, whereas the Lord has given it a commission against Ascalon, and against the regions on the sea-coast, to awake against the remaining +countries! CONCERNING IDUMEA, thus says the Lord; There is no longer wisdom in Thaeman, counsel has perished from the wise ones, their wisdom is gone, + +their place has been deceived. Dig deep for a dwelling, you⌃ that inhabit Daedam, for he has wrought grievously: I brought trouble upon him in the time at which I visited him. + +For grape gatherers are come, who shall not leave you a remnant; as thieves by night, they shall lay their hand upon +your possessions. + +For I have stripped Esau, I have uncovered their secret places; they shall have no power to hide themselves, they have perished +each by the hand of his brother, my neighbor, and it is impossible + +for your fatherless one to be left to live, but I shall live, and the widows trust in me. + +For thus says the Lord; They who were not appointed to drink the cup have drunk +it; and you shall by no means be cleared: + +for by myself I have sworn, says the Lord, that you shall be in the midst of her an impassable +land, and a reproach, and a curse; and all her cities shall be desert for ever. + +I have heard a report from the Lord, and he has sent messengers to the nations, +saying, +Assemble yourselves, and come against her; rise you⌃ up to war. + +I have made you small among the nations, utterly contemptible among men. + +Your insolence has risen up against you, the fierceness of your heart has burst the holes of the rocks, it has seized upon the strength of a lofty hill; for as an eagle he set his nest on high: thence will I bring you down. + +And Idumea shall be a desert: every one that passes by shall hiss at it. + +As Sodom was overthrown and Gomorrha and they that sojourned in her, says the Lord Almighty, no man shall dwell there, nor shall any son of man inhabit there. + +Behold, he shall come up as a lion out of the midst of Jordan to the place of Aetham: for I will speedily drive them from it, and do you⌃ set the young men against her: for who is like me? and who will withstand me? and who +is this shepherd, who shall confront me? + +Therefore hear you⌃ the counsel of the Lord, which he has framed against Idumea; and his device, which he has devised against the inhabitants of Thaeman: surely the least of the sheep shall be swept off; surely their dwelling shall be made desolate for them. + +For at the sound of their fall the earth was scared, and the cry of the sea was not heard. + +Behold, he shall look +upon her as an eagle, and spread forth +his wings over her strongholds; and the heart of the mighty men of Idumea shall be in that day as the heart of a woman in her pangs. + +

+ + +

CONCERNING THE SONS OF AMMON thus says the Lord, Are there no sons in Israel? or have they no one to succeed +them? therefore has Melchol inherited Galaad, and why shall their people dwell in their cities? + +Therefore, behold, the days come, says the Lord, when I will cause to be heard in Rabbath a tumult of wars; and they shall become a waste and ruined place, and her altars shall be burned with fire; then shall Israel succeed to his dominion. + +Howl, O Esebon, for Gai has perished; cry, you⌃ daughters of Rabbath, gird yourselves with sackcloth, and lament; for Melchol shall go into banishment, his priests and his princes together. + +Why do you⌃ exult in the plains of the Enakim, you haughty daughter, that trust in +your treasures, that say, Who shall come in to me? + +Behold, I +will bring terror upon you, says the Lord, from all the country round about you; and you⌃ shall be scattered every one right before him, and there is none to gather you. + +CONCERNING DAMASCUS. Emath is brought to shame, and Arphath: for they have heard an evil report: they are amazed, they are angry, they shall be utterly unable to rest. + +Damascus is utterly weakened, she is put to flight; trembling has seized upon her. + +How has she not left my city, they have loved the village? + +Therefore shall the young men fall in your streets, and all your warriors shall fall, says the Lord. + +And I will kindle a fire in the wall of Damascus, and it shall devour the streets of the son of Ader. + +CONCERNING KEDAR THE QUEEN OF THE PALACE, WHOM NABUCHODONOSOR KING OF BABYLON SMOTE, thus says the Lord; Arise you⌃, and go up to Kedar, and fill the sons of Kedem. + +They shall take their tents and their sheep, they shall take for themselves their garments, and all their baggage and their camels; and summon you⌃ destruction against them from every side. + +Flee you⌃, dig very deep for a dwelling-place, you⌃ that dwell in the palace; for the king of Babylon has framed a counsel, and devised a device against you. + +Rise up, and go up against a nation settled +and dwelling at ease, who have no doors, nor bolts, nor bars, +who dwell alone. + +And their camels shall be a spoil, and the multitude of their cattle shall be destroyed: and I will scatter them as chaff with every wind, having their hair cut about their foreheads, I will bring on their overthrow from all sides, says the Lord. + +And the palace shall be a resting-place for ostriches, and desolate for ever: no man shall abide there, and no son of man shall dwell there. + +

+ + +

Thus has the Lord said concerning MOAB, Woe to Nabau! for it has perished: Cariathaim is taken: Amath and Agath are put to shame. + +There is no longer any healing for Moab, +nor glorying in Esebon: he has devised evils against her: we have cut her off from +being a nation, and she shall be completely still: after you shall go a sword; + +for +there is a voice of +men crying out of Oronaim, destruction and great ruin. + +Moab is ruined, proclaim +it to Zogora: + +for Aloth is filled with weeping: one shall go up weeping by the way of Oronaim; you⌃ have heard a cry of destruction. + +Flee you⌃, and save your lives, and you⌃ shall be as a wild ass in the desert. + +Since you have trusted in your strong-hold, therefore you shall be taken: and Chamos shall go forth into captivity, and his priests, and his princes together. + +And destruction shall come upon every city, it shall by no means escape; the valley also shall perish, and the plain country shall be completely destroyed, as the Lord has said. + +Set marks upon Moab, for she shall be touched with a plague-spot, and all her cities shall become desolate; whence +shall there be an inhabitant for her? + +Cursed is the man that does the works of the Lord carelessly, keeping back his sword from blood. + +Moab has been at ease from a child, and trusted in his glory; he has not poured out +his liquor from vessel to vessel, and has not gone into banishment, therefore his taste remained in him, and his smell departed not. + +Therefore, behold, his days come, says the Lord, when I shall send upon him bad leaders, and they shall lead him astray, and they shall utterly break in pieces his possessions, and shall cut his horns asunder. + +And Moab shall be ashamed of Chamos, as the house of Israel was ashamed of Baethel their hope, having trusted in them. + +How will you⌃ say, We are strong, and men strong for war? + +Moab is ruined, +even his city, and his choice young men have gone down to slaughter. + +The day of Moab is near at hand, and his iniquity moves swiftly +to vengeance. + +Shake +the head at him, all you⌃ that are round about him; all +of you utter his name; say you⌃, How is the glorious staff broken to pieces, the rod of magnificence! + +Come down from +your glory, and sit down in a damp place: Daebon shall be broken, because Moab is destroyed: there has gone up against you one to ravage your strong-hold. + +Stand by the way, and look, you that dwell in Arer; and ask him that is fleeing, and him that escapes, and say, What has happened? + +Moab is put to shame, because he is broken: howl and cry; proclaim in Arnon, that Moab has perished. + +And judgment is coming against the land of Misor, upon Chelon, and Rephas, and Mophas, + +and upon Daebon, and upon Nabau, and upon the house of Daethlathaim, + +and upon Cariathaim, and upon the house of Gaemol, and upon the house of Maon, + +and upon Carioth, and upon Bosor, and upon all the cities of Moab, far and near. + +The horn of Moab is broken, and his arm is crushed. + +Make you⌃ him drunk; for he has magnified himself against the Lord: and Moab shall clap with his hand, and shall be also himself a laughing stock. + +For surely Israel was to you a laughing stock, and was found among your thefts, because you did fight against him. + +The inhabitants of Moab have left the cities, and lived in rocks; they have become as doves nestling in rocks, at the mouth of a cave. + +And I have heard of the pride of Moab, he has greatly heightened his pride and his haughtiness, and his heart has been lifted up. + +But I know his works: is it not enough for him? has he not done thus? + +Therefore howl you⌃ for Moab on all sides; cry out against the shorn men +in a gloomy place. I will weep for you, + +O vine of Aserema, as with the weeping of Jazer: your branches are gone over the sea, they reached the cities of Jazer: destruction has come upon your fruits, +and upon your grape gatherers. + +Joy and gladness have been utterly swept off the land of Moab: and +though there was wine in your presses, in the morning they trod it not, neither in the evening did they raise the cry of joy. + +From the cry of Esebon even to Aetam their cities uttered their voice, from Zogor to Oronaim, and their tidings +as a heifer of three years old, for the water also of Nebrin shall be dried up. + +And I will destroy Moab, says the Lord, as he comes up to the altar, and burns incense to his gods. + +Therefore the heart of Moab shall sound as pipes, my heart shall sound as a pipe for the shorn men; forasmuch as what +every man has gained has perished from him. + +They shall all have their heads shaved in every place, and every beard shall be shaved; and all hands shall beat +the breasts, and on all loins shall be sackcloth. + +And on all the housetops of Moab, and in his streets +shall be mourning: for I have broken +him, says the Lord, as a vessel, which is useless. + +How has he changed! how has Moab turned +his back! Moab is put to shame, and become a laughing stock, and an object of anger to all that are round about him. + +For thus said the Lord; + +Carioth is taken, and the strongholds have been taken together. + +And Moab shall perish from being a multitude, because he has magnified himself against the Lord. + +A snare, and fear, and the pit, are upon you, O inhabitant of Moab. + +He that flees from the terror shall fall into the pit, and he that comes up out of the pit shall even be taken in the snare: for I will bring these things upon Moab in the year of their visitation. + +

+ + +

Thus said the Lord God of Israel; Take the cup of this unmixed wine from my hand, and you shall cause all the nations to drink, to whom I send you. + +And they shall drink, and vomit, and be mad, because of the sword which I send among them. + +So I took the cup out of the Lord's hand, and caused the nations to whom the Lord sent me to drink: + +Jerusalem, and the cities of Juda, and the kings of Juda, and his princes, to make them a desert place, a desolation, and a hissing; + +and Pharao king of Egypt, and his servants, and his nobles, and all his people; + +and all the mingled +people, and all the kings of the Philistines, and Ascalon, and Gaza, and Accaron, and the remnant of Azotus, + +and Idumea, and the land of Moab, and the children of Ammon, + +and the kings of Tyre, and the kings of Sidon, and the kings in the +country beyond the sea, + +and Daedan, and Thaeman, and Ros, and every one that is shaved round about the face, + +and all the mingled +people lodging in the wilderness, + +and all the kings of Aelam, and all the kings of the Persians, + +and all the kings from the north, the far and the near, each one with his brother, and all the kingdoms which are on the face of the earth. + +And you shall say to them, Thus said the Lord Almighty; Drink you⌃, be you⌃ drunken; and you⌃ shall vomit, and shall fall, and shall in nowise rise, because of the sword which I send among you. + +And it shall come to pass, when they refuse to take the cup out of your hand, to drink it, that you shall say, Thus said the Lord; You⌃ shall surely drink. + +For I am beginning to afflict the city whereon my name is called, and you⌃ shall by no means be held guiltless: for I am calling a sword upon all that dwell upon the earth. + +And you shall prophesy against them these words, and shall say, The Lord shall speak from on high, from his sanctuary he will utter his voice; he will pronounce a declaration on his place; and these shall answer like men gathering grapes: and destruction is coming on them that dwell on the earth, + + +even upon +the extreme part of the earth; for the Lord +has a controversy with the nations, he is pleading with all flesh, and the ungodly are given to the sword, says the Lord. + +Thus said the Lord; Behold, evils are proceeding from nation to nation, and a great whirlwind goes forth from the end of the earth. + +And the slain of the Lord shall be in the day of the Lord from +one end of the earth even to the +other end of the earth: they shall not be buried; they shall be as dung on the face of the earth. + +Howl, you⌃ shepherds, and cry; and lament, you⌃ rams of the flock: for your days have been completed for slaughter, and you⌃ shall fall as the choice rams. + +And flight shall perish from the shepherds, and safety from the rams of the flock. + +A voice of the crying of the shepherds, and a moaning of the sheep and the rams: for the Lord has destroyed their pastures. + +And the peaceful abodes that remain shall be destroyed before the fierceness of my anger. + +He has forsaken his lair, as a lion: for their land is become desolate before the great sword. + +

+ + +

IN THE BEGINNING OF THE REIGN OF KING JOAKIM SON OF JOSIAS THERE CAME THIS WORD FROM THE LORD. + +Thus said the Lord; Stand in the court of the Lord's house, and you shall declare to all the Jews, and to all that come to worship in the house of the Lord, all the words which I commanded you to speak to them; abate not one word. + +Peradventure they will hear, and turn every one from his evil way: then I will cease from the evils which I purpose to do to them, because of their evil practices. + +And you shall say, Thus said the Lord; If you⌃ will not listen to me, to walk in my statutes which I set before you, + +to listen to the words of my servants the prophets, whom I send to you early in the morning; yes, I sent them, but you⌃ listened not to me; + +then will I make this house as Selo, and I will make +this city a curse to all the nations of all the earth. + +And the priests, and the false prophets, and all the people heard Jeremias speaking these words in the house of the Lord. + +And it came to pass, when Jeremias had ceased speaking all that the Lord had ordered him to speak to all the people, that the priests and the false prophets and all the people took him, saying, + +You shall surely die, because you have prophesied in the name of the Lord, saying, This house shall be as Selo, and this city shall be made quite destitute of inhabitants. And all the people assembled against Jeremias in the house of the Lord. + +And the princes of Juda heard this word, and they went up out of the house of the king to the house of the Lord, and sat in the entrance of the new gate. + +Then the priests and the false prophets said to the princes and to all the people, The judgment of death +is due to this man; because he has prophesied against this city, as you⌃ have heard with your ears. + +Then Jeremias spoke to the princes, and to all the people, saying, The Lord sent me to prophesy against this house and against this city, all the words which you⌃ have heard. + +And now amend your ways and your works, and listen to the voice of the Lord; and the Lord shall cease from the evils which he has pronounced against you. + +And behold, I am in your hands; do to me as is expedient, and as it is best for you. + +But know for a certainty, that if you⌃ kill me, you⌃ bring innocent blood upon yourselves, and upon this city, and upon them that dwell in it; for in truth the Lord has sent me to you to speak in your ears all these words. + +Then the princes and all the people said to the priests and to the false prophets; Judgment of death is not +due to this man; for he has spoken to us in the name of the Lord our God. + +And there rose up men of the elders of the land, and said to all the assembly of the people, + +Michaeas the Morathite lived in the days of Ezekias king of Juda, and said to all the people of Juda, Thus says the Lord; Sion shall be plowed as a field, and Jerusalem shall become a desolation, and the mountain of the house shall be a thicket of trees. + +Did Ezekias and all Juda in any way kill him? Was it not that they feared the Lord, and they made supplication before the Lord, and the Lord ceased from the evils which he +had pronounced against them? whereas we have wrought great evil against our own souls. + +And there was +another man prophesying in the name of the Lord, Urias the son of Samaeas of Cariathiarim; and he prophesied concerning this land according to all the words of Jeremias. + +And king Joakim and all the princes heard all his words, and sought to kill him; and Urias heard +it and went into Egypt. + +And the king sent men into Egypt; + +and they brought him thence, and brought him into the king; and he struck him with the sword, and cast him into the sepulchre of the children of his people. + +Nevertheless the hand of Achicam son of Saphan was with Jeremias, to prevent his being delivered into the hands of the people, or being killed. + +

+ + +

Thus said the Lord; Make to yourself bonds and yokes, and put +them about your neck, + +and you shall send them to the king of Idumea, and to the king of Moab, and to the king of the children of Ammon, and to the king of Tyre, and to the king of Sidon, by the hands of their messengers that come to meet them at Jerusalem to Sedekias king of Juda. + +And you shall commission them to say to their lords, Thus said the Lord God of Israel; Thus shall you⌃ say to your lords; + +I have made the earth by my great power, and with my high arm, and I will give it to whoever it shall seem +good in my eyes. + +I gave the earth to Nabuchodonosor king of Babylon to serve him, and the wild beasts of the field to labor for him. + +And the nation and kingdom, all that shall not put their neck under the yoke of the king of Babylon, with sword and famine will I visit them, says the Lord, until they are consumed by his hand. + +And listen you⌃ not to your false prophets, nor to them that divine to you, nor to them that foretell events by dreams to you, nor to your auguries, nor your sorcerers, that say, You⌃ shall by no means work for the king of Babylon: + +for they prophesy lies to you, to remove you far from your land. + +But the nation which shall put its neck under the yoke of the king of Babylon, and serve him, I will even leave it upon its land, and it shall serve him, and dwell in it. + +I spoke also to Sedekias king of Juda according to all these words, saying, Put your neck into +the yoke, and serve the king of Babylon. + +For they prophesy unrighteous +words to you, + +for I sent them not, says the Lord; and they prophesy +in my name unjustly, that I might destroy you, and you⌃ should perish, and your prophets, who unrighteously prophesy lies to you. + +I spoke to you, and to all this people, and to the priests, saying, Thus said the Lord; Listen not to the words of the prophets that prophesy to you, saying, Behold, the vessels of the Lord's house shall return from Babylon: for they prophesy to you unrighteous +words. + +I sent them not. + +If they are prophets, and if the word of the Lord is in them, let them meet me, for thus has the Lord said. + +And as for the remaining vessels, + +which the king of Babylon took not, when he carried Jechonias prisoner out of Jerusalem, + +they shall go into Babylon, says the Lord. + +

+ + +

And it came to pass in the fourth year of Sedekias king of Juda, in the fifth month, +that Ananias the false prophet, the son of Azor, from Gabaon, spoke to me in the house of the Lord, in the sight of the priests and all the people, saying, + +Thus says the Lord; I have broken the yoke of the king of Babylon. + +Yet two full years, and I will return into this place the vessels of the house of the Lord, + +and Jechonias, and the captivity of Juda: for I will break the yoke of the king of Babylon. + +Then Jeremias spoke to Ananias in the sight of all the people, and in the sight of the priests that stood in the house of the Lord, + +and Jeremias said, May the Lord indeed do thus; may he confirm your word which you do prophesy, to return the vessels of the house of the Lord, and all the captivity, out of Babylon to this place. + +Nevertheless hear you⌃ the word of the Lord which I speak in your ears, and in the ears of all the people. + +The prophets that were before me and before you of old, also prophesied over much country, and against great kingdoms, concerning war. + + +As for the prophet that has prophesied for peace, when the word has come +to pass, they shall know the prophet whom the Lord has sent them in truth. + +Then Ananias took the yokes from the neck of Jeremias in the sight of all the people, and broke them to pieces. + +And Ananias spoke in the presence of all the people, saying, Thus said the Lord; Thus will I break the yoke of the king of Babylon from the necks of all the nations. And Jeremias went his way. + +And the word of the Lord came to Jeremias, after that Ananias had broken the yokes off his neck, saying, + +Go and speak to Ananias, saying, Thus says the Lord; You have broken the yokes of wood; but I will make instead of them yokes of iron. + +For thus said the Lord, I have put a yoke of iron on the neck of all the nations, that they may serve the king of Babylon. + +And Jeremias said to Ananias, The Lord has not sent you; and you have caused this people to trust in unrighteousness. + +Therefore thus said the Lord: Behold, I +will cast you off from the face of the earth: this year you shall die. + +So he died in the seventh month. + +

+ + +

And these are the words of the book which Jeremias sent from Jerusalem to the elders of the captivity, and to the priests, and to the false prophets, even an epistle to Babylon for the captivity, and to all the people; + +(after the departure of Jechonias the king and the queen, and the eunuchs, and every freeman, and bondman, and artificer, out of Jerusalem;) + +by the hand of Eleasan son of Saphan, and Gamarias son of Chelcias, (whom Sedekias king of Juda sent to the king of Babylon to Babylon) saying, + +Thus said the Lord God of Israel concerning the captivity which I caused to be carried away from Jerusalem; + +Build you⌃ houses, and inhabit +them; and plant gardens, and eat the fruits thereof; + +and take you⌃ wives, and beget sons and daughters; and take wives for your sons, and give your daughters to husbands, and be multiplied, and be not diminished. + +And seek the peace of the land into which I have carried you captive, and you⌃ shall pray to the Lord for the people: for in its peace you⌃ shall +have peace. + +For thus says the Lord; Let not the false prophets that are among you persuade you, and let not your diviners persuade you, and listen not to your dreams which you⌃ dream. + +For they prophesy to you unrighteous +words in my name; and I sent them not. + +For thus said the Lord; When seventy years shall be on the point of being accomplished at Babylon, I will visit you, and will confirm my words to you, to bring back your people to this place. + +And I will devise for you a device of peace, and not evil, to bestow upon you these +good things. + +And do you⌃ pray to me, and I will listen to you: and do you⌃ earnestly seek me, and you⌃ shall find me; + +for you⌃ shall seek me with your whole heart. + +And I will appear to you: + +whereas you⌃ said, The Lord has appointed for us prophets in Babylon: + +Thus says the Lord concerning Achiab, and concerning Sedekias; Behold, I +will deliver them into the hands of the king of Babylon; and he shall strike them in your sight. + +And they shall make of them a curse in all the captivity of Juda in Babylon, saying, The Lord do to you as he did to Sedekias, and as he did to Achiab, whom the king of Babylon fried in the fire; + +because of the iniquity which they wrought in Israel, and +because they committed adultery with the wives of their fellow-citizens; and spoke a word in my name, which I did not command them +to speak, and I am witness, says the Lord. + +And to Samaeas the Aelamite you shall say, + +I sent you not in my name: and to Sophonias the priest the son of Maasaeas say you, + +The Lord has made you priest in the place of Jodae the priest, to be ruler in the house of the Lord over every prophet, and to every madman, and you shall put them in prison, and into the dungeon. + +And now therefore have you⌃ reviled together Jeremias of Anathoth, who prophesied to you? + +Did he not send for this purpose? for in the course of this month he sent to you to Babylon, saying, It is far off: build you⌃ houses, and inhabit +them; and plant gardens, and eat the fruit of them. + +And Sophonias read the book in the ears of Jeremias. + +Then the word of the Lord came to Jeremias, saying, + +Send to the captivity, saying, Thus says the Lord concerning Samaeas the Aelamite, Since Samaeas has prophesied to you, and I sent him not, and he has made you to trust in iniquity, + +therefore thus says the Lord; Behold, I will visit Samaeas, and his family: and there shall not be a man of them in the midst of you to see the good which I will do to you: they shall not see +it. + +

+ + +

THE WORD THAT CAME TO JEREMIAS FROM THE LORD, SAYING, + +Thus speaks the Lord God of Israel, saying, Write all the words which I have spoken to you in a book. + +For, behold, the days come, says the Lord, when I will bring back the captivity of my people Israel and Juda, said the Lord: and I will bring them back to the land which I gave to their fathers, and they shall be lords of it. + +AND THESE ARE THE WORDS WHICH THE LORD SPOKE CONCERNING ISRAEL AND JUDA; + +Thus said the Lord: You⌃ shall hear a sound of fear, +there is fear, and there is not peace. + +Enquire, and see if a male has born a child? and +ask concerning the fear, wherein they shall hold their loins, and +look for safety: for I have seen every man, and his hands are on his loins; +their faces are turned to paleness. + +For that day is great, and there is not such +another; and it is a time of straitness to Jacob; but he shall be saved out of it. + +In that day, said the Lord, I will break the yoke off their neck, and will burst their bonds, and they shall no longer serve strangers: + +but they shall serve the Lord their God; and I will raise up to them David their king. + +Thus says the Lord; I have brought on +you destruction; your stroke is painful. + +There is none to judge your cause: you have been painfully treated for healing, there is no help for you. + +All your friends have forgotten you; they shall not ask +about you at all, for I have struck you with he stroke of an enemy, +even severe correction: your sins have abounded above all your iniquity. + +Your sins have abounded beyond the multitude of your iniquities, +therefore they have done these things to you. Therefore all that devour you shall be eaten, and all your enemies shall eat all their +own flesh. + +And they that spoil you shall become a spoil, and I will give up to be plundered all that have plundered you. + +For I will bring about your healing, I will heal you of your grievous wound, says the Lord; for you are called Dispersed: she is your prey, for no one seeks after her. + +Thus said the Lord; Behold, I will turn the captivity of Jacob, and will have pity upon his prisoners; and the city shall be built upon her hill, and the people shall settle after their manner. + +And there shall go forth from them singers, +even the sound of men making merry: and I will multiply them, and they shall not at all be diminished. + +And their sons shall go in as before, and their testimonies shall be established before me, and I will visit them that afflict them. + +And their mighty ones shall be over them, and their prince shall proceed of themselves; and I will gather them, and they shall return to me: for who is this that has set his heart to return to me? says the Lord. + +For the wrathful anger of the lord has gone forth, +even a whirlwind of anger has gone forth: it shall come upon the ungodly. + +The fierce anger of the Lord shall not return, until he shall execute +it, and until he shall establish the purpose of his heart: in the latter days you⌃ shall know these things. + +

+ + +

At that time, says the Lord, I will be a God to the family of Israel, and they shall be to me a people. + +Thus says the Lord, I found him warm in the wilderness with them that were slain with the sword: go you⌃ and destroy not Israel. + +The Lord appeared to him from afar, +saying, I have loved you with an everlasting love: therefore have I drawn you in compassion. + +For I will build you, and you shall be built, O virgin of Israel: you shall yet take your timbrel, and go forth with the party of them that make merry. + +For you⌃ have planted vineyards on the mountains of Samaria: plant you⌃, and praise. + +For it is a day when those that plead on the mountains of Ephraim shall call, +saying, Arise you⌃, and go up to Sion to the Lord your God. + +For thus says the Lord to Jacob; Rejoice you⌃, and exult over the head of the nations: make proclamation, and praise you⌃: say, The Lord has delivered his people, the remnant of Israel. + +Behold, I bring them from the north, and will gather them from the end of the earth to the feast of the passover: and +the people shall beget a great multitude, and they shall return hither. + +They went forth with weeping, and I will bring them back with consolation, causing them to lodge by the channels of waters in a straight way, and they shall not err in it: for I am become a father to Israel, and Ephraim is my firstborn. + +Hear the words of the Lord, you⌃ nations, and proclaim +them to the islands afar off; say, He that scattered Israel will also gather him, and keep him as one that feeds his flock. + +For the Lord has ransomed Jacob, he has rescued him out of the hand of them +that were stronger than he. + +And they shall come, and shall rejoice in the mount of Sion, and shall come to the good things of the Lord, +even to a land of corn, and wine, and fruits, and cattle, and sheep: and their soul shall be as a fruitful tree; and they shall hunger no more. + +Then shall the virgins rejoice in the assembly of youth, and the old men shall rejoice; and I will turn their mourning into joy, and will make them merry. + +I will expand and cheer with wine the soul of the priests the sons of Levi, and my people shall be satisfied with my good things: thus says the Lord. + +A voice was heard in Rama, of lamentation, and of weeping, and wailing; Rachel would not cease weeping for her children, because they are not. + +Thus says the Lord; Let your voice cease from weeping, and your eyes from your tears: for their is a reward for your works; and they shall return from the land of +your enemies. + + +There shall be an dwelling +home for your children. + +I have heard the sound of Ephraim lamenting, +and saying, You have chastened me, and I was chastened; I as a calf was not +willingly taught: turn you me, and I shall turn; for you +are the Lord my God. + +For after my captivity I repented; and after I knew, I groaned for the day of shame, and showed you that I bore reproach from my youth. + +Ephraim is a beloved son, a pleasing child to me: for because my words are in him, I will surely remember him: therefore I made haste +to help him; I will surely have mercy upon him, says the Lord. + +Prepare yourself, O Sion; execute vengeance; look to your ways: return, O virgin of Israel, by the way by which you went, return mourning to your cities. + +How long, O disgraced daughter, will you turn away? for the Lord has created safety for a new plantation: men shall go about in safety. + +For thus says the Lord; They shall yet speak this word in the land of Juda, and in the cities thereof, when I shall turn his captivity; blessed be the Lord on his righteous holy mountain! + +And there shall be dwellers in the cities of Juda, and in all his land, together with the husbandman, and +the shepherd shall go forth with the flock. + +For I have saturated every thirsting soul, and filled every hungry soul. + +Therefore I awake, and saw; and my sleep was sweet to me. + +Therefore, behold, the days come, says the Lord, when I will sow the house of Israel and the house of Juda with the seed of man, and the seed of beast. + +And it shall come to pass, that as I watched over them, to pull down, and to afflict, so will I watch over them, to build, and to plant, says the Lord. + +In those days they shall certainly not say, The fathers ate a sour grape, and the children's teeth were set on edge. + +But every one shall die in his own sin; and the teeth of him that eats the sour grape shall be set on edge. + +Behold, the days come, says the Lord, when I will make a new covenant with the house of Israel, and with the house of Juda: + +not according to the covenant which I made with their fathers in the day when I took hold of their hand to bring them out of the land of Egypt; for they abode not in my covenant, and I disregarded them, says the Lord. + +For this is my covenant which I will make with the house of Israel; after those days, says the Lord, I will surely put my laws into their mind, and write them on their hearts; and I will be to them a God, and they shall be to me a people. + +And they shall not at all teach every one his +fellow citizen, and every one his brother, saying, Know the Lord: for all shall know me, from the least of them to the greatest of them: for I will be merciful to their iniquities, and their sins I will remember no more. + +Thus says the Lord, who gives the sun for a light by day, the moon and the stars for a light by night, and +makes a roaring in the sea, so that the waves thereof roar; the Lord Almighty is his name: + +if these ordinances cease from before me, says the Lord, then shall the family of Israel cease to be a nation before me forever. + +Though the sky should be raised to a +greater height, says the Lord, and though the ground of the earth should be sunk +lower beneath, yet I will not cast off the family of Israel, says the Lord, for all that they have done. + +Behold, the days come, says the Lord, when the city shall be built to the Lord from the tower of Anameel to the gate of the corner. + +And the measurement of it shall proceed in front of them as far as the hills of Gareb, and it shall be compassed with a circular wall of choice stones. + +And all the Asaremoth even to Nachal Kedron, as far as the corner of the horse-gate eastward, shall be holiness to the Lord; and it shall not fail any more, and shall not be destroyed for ever. + +

+ + +

The word that came from the Lord to Jeremias in the tenth year of king Sedekias, this is the eighteenth year of king Nabuchodonosor king of Babylon. + +And the host of the king of Babylon had made a rampart against Jerusalem: and Jeremias was kept in the court of the prison, which is in the king's house; + +in which king Sedekias +had shut him up, saying, Therefore do you prophesy, saying, Thus says the Lord, Behold, I +will give this city into the hands of the king of Babylon, and he shall take it; + +and Sedekias shall by no means be delivered out of the hand of the Chaldeans, for he shall certainly be given up into the hands of the king of Babylon, and his mouth shall speak to his mouth, and his eyes shall look upon his eyes; + +and Sedekias shall go into Babylon, and dwell there? + +AND THE WORD OF THE LORD CAME TO JEREMIAS, SAYING, + +Behold, Anameel the son of Salom your father's brother is coming to you, saying, Buy you my field that is in Anathoth: for you +have the right to take +it as a purchase. + +So Anameel the son of Salom my father's brother came to me into the court of the prison, and said, Buy you my field that is in the land of Benjamin, in Anathoth: for you +have a right to buy it, and you are the elder. So I knew that it was the word of the Lord. + +And I bought the field of Anameel the son of my father's brother, and I weighed him seventeen shekels of silver. + +And I wrote +it in a book, and sealed +it, and took the testimony of witnesses, and weighed the money in the balance. + +And I took the book of the purchase that was sealed; + +and I gave it to Baruch son of Nerias, son of Maasaeas, in the sight of Anameel my father's brother's son, and in the sight of the men that stood by and wrote in the book of the purchase, and in the sight of the Jews that were in the court of the prison. + +And I charged Baruch in their presence, saying, Thus says the Lord Almighty; + +Take this book of the purchase, and the book that has been read; and you shall put it into an earthen vessel, that it may remain many days. + +For thus says the Lord; There shall yet be bought fields and houses and vineyards in this land. + +And I prayed to the Lord after I had given the book of the purchase to Baruch the son of Nerias, saying, + +O +ever living Lord! you have made the heaven and the earth by your great power, and with your high and lofty arm: nothing can be hidden from you. + +Granting mercy to thousands, and recompensing the sins of the fathers into the bosoms of their children after them: the great, the strong God; + +the Lord of great counsel, and mighty in deeds, the great Almighty God, and Lord of great name: your eyes are upon the ways of the children of men, to give to every one according to his way: + +who have wrought signs and wonders in the land of Egypt even to this day, and in Israel, and among the inhabitants of the earth; and you did make for yourself a name, as at this day; + +and you did bring out your people Israel out of the land of Egypt with signs, and with wonders, with a mighty hand, and with a high arm, and with great sights; + +and you gave them this land, which you did swear +to give to their fathers, a land flowing with milk and honey; + +and they went in, and took it; but they listened not to your voice, and walked not in your ordinances; they did none of the things which you did command them, and they caused all these calamities to happen to them. + +Behold, a multitude is come against the city to take it; and the city is given into the hands of the Chaldeans that fight against it, by the power of the sword, and the famine: as you have spoken, so has it happened. + +And you say to me, Buy you the field for money; and I wrote a book, and sealed +it, and took the testimony of witnesses: and the city is given into the hands of the Chaldeans. + +And the word of the Lord came to me, saying, + +I am the Lord, the God of all flesh: shall anything be hidden from me! + +Therefore thus says the Lord God of Israel; This city shall certainly be delivered into the hands of the king of Babylon, and he shall take it: + +and the Chaldeans shall come to war against this city, and they shall burn this city with fire, and shall burn down the houses wherein they burnt incense on the roofs thereof to Baal, and poured drink-offerings to other gods, to provoke me. + +For the children of Israel and the children of Juda alone did evil in my sight from their youth. + +For this city was +obnoxious to my anger and my wrath, from the day that they built it even to this day; that I should remove it from my presence, + +because of all the wickedness of the children of Israel and Juda, which they wrought to provoke me, they and their kings, and their princes, and their priests, and their prophets, the men of Juda, and the dwellers in Jerusalem. + +And they turned the back to me, and not the face: whereas I taught them early in the morning, but they listened no more to receive instructions. + +And they set their pollutions in the house, on which my name was called, by their uncleannesses. + +And they built to Baal the altars that are in the valley of the son of Ennom, to offer their sons and their daughters to king Moloch; which things I commanded them not, neither came it into my mind that they should do this abomination, to cause Juda to sin. + +And now thus has the Lord God of Israel said concerning this city, of which you say, it shall be delivered into the hands of the king of Babylon by the sword, and by famine, and banishment. + +Behold, I +will gather them out of every land, where I have scattered them in my anger, and my wrath, and great fury; and I will bring them back into this place, and will cause them to dwell safely: + +and they shall be to me a people, and I will be to them a god. + +And I will give them another way, and another heart, to fear me continually, and +that for good to them and their children after them. + +And I will make with them an everlasting covenant, which I will by no means turn away from them, and I will put my fear into their heart, that they may not depart from me. + +And I will visit +them to do them good, and I will plant them in this land in faithfulness, and with all my heart, and with all +my soul. + +For thus says the Lord; As I have brought upon this people all these great evils, so will I bring upon them all the good things which I pronounced upon them. + +And there shall yet be fields bought in the land, of which you say, it shall be destitute of man and beast; and they are delivered into the hands of the Chaldeans. + +And they shall buy fields for money, and you shall write a book, and seal +it, and shall take the testimony of witnesses in the land of Benjamin, and round about Jerusalem, and in the cities of Juda, and in the cities of the mountain, and in the cities of the plain, and in the cities of the south: for I will turn their captivity. + +

+ + +

And the word of the Lord came to Jeremias the second time, when he was yet bound in the court of the prison, saying, + +Thus says the Lord, who made the earth and formed it, to establish it; the Lord is his name; + +Cry to me, and I will answer you, and I will declare to you great and mighty things, which you know not. + +For thus says the Lord concerning the houses of this city, and concerning the houses of the king of Juda, which have been pulled down for mounds and fortifications, + +to fight against the Chaldeans, and to fill it with the corpses of men, whom I struck in my anger and my wrath, and turned away my face from them, for all their wickedness: + +Behold, I bring upon her healing and cure, and I will show +myself to them, and will heal her, and make both peace and security. + +And I will turn the captivity of Juda, and the captivity of Israel, and will build them, even as before. + +And I will cleanse them from all their iniquities, whereby they have sinned against me, and will not remember their sins, whereby they have sinned against me, and revolted from me. + +And it shall be for joy and praise, and for glory to all the people of the earth, who shall hear all the good that I will do: and they shall fear and be provoked for all the good things and for all the peace which I will bring upon them. + +Thus says the Lord; There shall yet be heard in this place, of which you⌃ say, it is destitute of men and cattle, in the cities of Juda, and in the streets of Jerusalem, +the places that have been made desolate for lack of men and cattle, + +the voice of gladness, and the voice of joy, the voice of the bridegroom, and the voice of the bride, the voice of men saying, Give thanks to the Lord Almighty: for the Lord is good; for his mercy +endures fore ever: and they shall bring gifts into the house of the Lord; for I will turn all the captivity of that land as before, said the Lord. + +Thus says the Lord of hosts; There shall yet be in this place, that is desert for lack of man and beast, in all the cities thereof, resting-places for shepherds causing their flocks to lie down. + +In the cities of the hill country, and in the cities of the valley, and in the cities of the south, and in the land of Benjamin, and in the +cities round about Jerusalem, and in the cities of Juda, flocks shall yet pass under the hand of him that numbers +them, says the Lord. + +

+ + +

The word that came to Jeremias from the Lord (now Nabuchodonosor king of Babylon, and all his army, and all the country of his dominion, were warring against Jerusalem, and against all the cities of Juda,) saying, + +Thus has the Lord said; Go to Sedekias king of Juda, and you shall say to him, Thus has the Lord said, This city shall certainly be delivered into the hands of the king of Babylon, and he shall take it, and shall burn it with fire: + +and you shall not escape out of his hand, but shall certainly be taken, and shall be given into his hands; and your eyes shall see his eyes, and you shall enter into Babylon. + +But hear the word of the Lord, O Sedekias king of Juda; Thus says the Lord, + +You shall die in peace: and as they wept for your fathers that reigned before you, they shall weep also for you, +saying, Ah lord! and they shall lament for you down to the grave: for I have spoken the word, said the Lord. + +And Jeremias spoke to king Sedekias all these words in Jerusalem. + +And the host of the king of Babylon warred against Jerusalem, and against the cities of Juda, and against Lachis, and against Azeca: for these strong cities were left among the cities of Juda. + +The word that came from the Lord to Jeremias, after king Sedekias had concluded a covenant with the people, to proclaim a release; + +That every one should set at liberty his servant, and every one has handmaid, the Hebrew man and Hebrew woman, that no man of Juda should be a bondman. + +Then all the nobles, and all the people who had entered into the covenant, +engaging to set free every one his man-servant, and every one his maid, turned, + +and gave them over to be menservants and maidservants. + +And the word of the Lord came to Jeremias, saying, + +Thus says the Lord; I made a covenant with your fathers in the day wherein I took them out of the land of Egypt, out of the house of bondage, saying, + +When six years are accomplished, you shall set free your brother the Hebrew, who shall be sold to you: for he shall serve you six years, and +then you shall let him go free: but they listened not to me, and inclined not their ear. + +And this day they turned to do that which was right in my sight, to proclaim every one the release of his neighbor; and they had concluded a covenant before me, in the house whereon my name is called. + +But you⌃ turned and profaned my name, to bring back every one his servant, and every one his handmaid, whom you⌃ had sent forth free +and at their own disposal, to be to you menservants and maidservants. + +Therefore thus said the Lord; You⌃ have not listened to me, to proclaim a release every one to his neighbor: behold, I proclaim a release to you, to the sword, and to the pestilence, and to the famine; and I will give you up to dispersion +among all the kingdoms of the earth. + +And I will give the men that have transgressed my covenant, who have not kept my covenant, which they made before me, the calf which they prepared to sacrifice with it, + +the princes of Juda, and the men in power, and the priests, and the people; + +I will even give them to their enemies, and their carcasses shall be food for the birds of the sky and for the wild beasts of the earth. + +And I will give Sedekias king of Judea, and their princes, into the hands of their enemies, and the host of the king of Babylon +shall come upon them that run away from them. + +Behold, I +will give command, says the Lord, and will bring them back to this land; and they shall fight against it, and take it, and burn it with fire, and the cities of Juda; and I will make them desolate without inhabitants. + +

+ + +

THE WORD THAT CAME TO JEREMIAS from the Lord in the days of Joakim, king of Juda, saying, + +Go to the house of the Archabin, and you shall bring them to the house of the Lord, into one of the courts, and give them wine to drink. + +So I brought forth Jechonias the son of Jeremin the son of Chabasin, and his brethren, and his sons, and all the family of the Archabin; + +and I brought them into the house of the Lord, into the chamber of the sons of Joanan, the son of Ananias, the son of Godolias, a man of God, who dwells near the house of the princes that are over the house of Maasaeas the son of Selom, who kept the court. + +And I set before them a jar of wine, and cups, and I said, Drink you⌃ wine. + +But they said, We will on no account drink wine, for our father Jonadab the son of Rechab commanded us, saying, You⌃ shall on no account drink wine, +neither you⌃, nor your sons for ever: + +nor shall you⌃ at all build houses, nor sow any seed, nor shall you⌃ have a vineyard: for you⌃ shall dwell in tents all your days; that you⌃ may live many days upon the land, in which you⌃ sojourn. + +And we listened to the voice of Jonadab our father, so as to drink no wine all our days, we, and our wives, and our sons, and our daughters; + +and so as to build no houses to dwell in: and we have had no vineyard, nor field, nor seed: + +but we have lived in tents, and have listened, and done according to all that Jonadab our father commanded us. + +And it came to pass, when Nabuchodonosor came up against the land, that we said we would come in; and we entered into Jerusalem, for fear of the host of the Chaldeans, and for fear of the host of the Assyrians: and we lived there. + +And the word of the Lord came to me, saying, + +Thus says the Lord, Go, and say to the men of Juda, and to them that dwell in Jerusalem, Will you⌃ not receive correction to listen to my words? + +The sons of Jonadab the son of Rechab have kept the word which he commanded his children, that they should drink no wine; and they have not drunk +it: but I spoke to you early, and you⌃ listened not. + +And I sent to you my servants the prophets, saying, Turn you⌃ every one from his evil way, and amend your practices, and go not after other gods to serve them, and you⌃ shall dwell upon the land which I gave to you and to your fathers: but you⌃ inclined not your ears, and listened not. + +But the sons of Jonadab the son of Rechab have kept the command of their father; but this people has not listened to me. + +Therefore thus says the Lord; Behold, I +will bring upon Juda and upon the inhabitants of Jerusalem all the evils which I pronounced against them. + +Therefore thus says the Lord; Since the sons of Jonadab the son of Rechab have listened to the command of their father, to do as their father commanded them: + +there shall never be lacking a man of the sons of Jonadab the son of Rechab to stand before my face while the earth remains. + +

+ + +

IN THE FOURTH YEAR OF JOAKIM son of Josias king of Juda, the word of the Lord came to me, saying, + +Take you a roll of a book, and write upon it all the words which I spoke to you against Jerusalem, and against Juda, and against all the nations, from the day when I spoke to you, from the days of Josias king of Juda, even to this day. + +Perhaps the house of Juda will hear all the evils which I purpose to do to them; that they may turn from their evil way; and +so I will be merciful to their iniquities and their sins. + +So Jeremias called Baruch the son of Nerias: and he wrote from the mouth of Jeremias all the words of the Lord, which he had spoken to him, on a roll of a book. + +And Jeremias commanded Baruch, saying, I am in prison; I can’t enter into the house of the Lord: + +so you shall read in this roll in the ears of the people in the house of the Lord, on the fast day; and in the ears of all Juda that come out of their cities, you shall read to them. + +Peradventure their supplication will come before the Lord, and they will turn from their evil way: for great is the wrath and the anger of the Lord, which he has pronounced against this people. + +And Baruch did according to all that Jeremias commanded him—reading in the book the words of the Lord in the Lord's house. + +And it came to pass in the eighth year of king Joakim, in the ninth month, all the people in Jerusalem, and the house of Juda, proclaimed a fast before the Lord. + +And Baruch read in the book the words of Jeremias in the house of the Lord, in the house of Gamarias son of Saphan the scribe, in the upper court, in the entrance of the new gate of the house of the Lord, and in the ears of all the people. + +And Michaeas the son of Gamarias the son of Saphan heard all the words of the Lord, out of the book. + +And he went down to the king's house, into the house of the scribe: and, behold, there were sitting there all the princes, Elisama the scribe, and Dalaeas the son of Selemias, and Jonathan the son of Acchobor, and Gamarias the son of Saphan, and Sedekias the son of Ananias, and all the princes. + +And Michaeas reported to them all the words which he had heard Baruch reading in the ears of the people. + +And all the princes sent to Baruch son of Nerias Judin the son of Nathanias, the son of Selemias, the son of Chusi, saying, Take in your hand the roll in which you read in the ears of the people, and come. So Baruch took the roll, and went down to them. + +And they said to him, Read +it again in our ears. And Baruch read +it. + +And it came to pass, when they +had heard all the words, +that they took counsel each with his neighbor, and said, Let us by all means tell the king all these words. + +And they asked Baruch, saying, Where did you write all these words? + +And Baruch said, Jeremias told me from his +own mouth all these words, and I wrote them in a book. + +And they said to Baruch, Go, and hide, you and Jeremias; let no man know where you⌃ +are. + +And they went in to the king into the court, and gave the roll +to one to keep in the house of Elisama; and they told the king all these words. + +And the king sent Judin to fetch the roll: and he took it out of the house of Elisama: and Judin read in the ears of the king, and in the ears of all the princes who stood round the king. + +Now the king was sitting in the winter house: and +there was a fire on the hearth before him. + +And it came to pass when Judin had read three or four leaves, he cut them off with a penknife, and cast +them into the fire that was on the hearth, until the whole roll was consumed in the fire that was on the hearth. + +And the king and his servants that heard all these words sought not +the Lord, and tore not their garments. + +But Elnathan and Godolias suggested to the king that he should burn the roll. + +And the king commanded Jeremeel the king's son, and Saraeas the son of Esriel, to take Baruch and Jeremias: but they were hidden. + +Then the word of the Lord came to Jeremias, after the king had burnt the roll, +even all the words which Baruch wrote from the mouth of Jeremias, saying, + +Again take you another roll, and write all the words that were on the roll, which king Joakim has burnt. + +And you shall say, Thus says the Lord; You have burnt this roll, saying, Why have you written therein, saying, The king of Babylon shall certainly come in, and destroy this land, and man and cattle shall fail from off it? + +Therefore thus says the Lord concerning Joakim king of Juda; He shall not have +a man to sit on the throne of David: and his carcass shall be cast forth in the heat by day, and in the frost by night. + +And I will visit him, and his family, and his servants: and I will bring upon him, and upon the inhabitants of Jerusalem, and upon the land of Juda, all the evils which I spoke of to them; and they listened not. + +And Baruch took another roll, and wrote upon it from the mouth of Jeremias all the words of the book which Joakim had burnt: and there were yet more words added to it like the former. + +

+ + +

And Sedekias the son of Josias reigned instead of Joakim, whom Nabuchodonosor appointed to reign over Juda. + +And he and his servants and the people of the land listened not to the words of the Lord, which he spoke by Jeremias. + +And king Sedekias sent Joachal son of Selemias and Sophonias the priest son of Maasaeas to Jeremias, saying, Pray now for us to the Lord. + +Now Jeremias came and went through the midst of the city: for they +had not put him into the house of the prison. + +And the host of Pharao was come forth out of Egypt; and the Chaldeans heard the report of them, and they went up from Jerusalem. + +And the word of the Lord came to Jeremias, saying, + +Thus said the Lord; Thus shall you say to the king of Juda who sent to you, to seek me; Behold, the army of Pharao which is come forth to help you: they shall return to the land of Egypt: + +and the Chaldeans themselves shall turn again, and fight against this city, and take it, and burn it with fire. + +For thus says the Lord; Suppose not in your hearts, saying, The Chaldeans will certainly depart from us: for they shall not depart. + +And though you⌃ should strike the whole host of the Chaldeans that fight against you, and there should be left a few wounded +men, these should rise up each in his place, and burn this city with fire. + +And it came to pass, when the host of the Chaldeans had gone up from Jerusalem for fear of the host of Pharao, + +that Jeremias went forth from Jerusalem to go into the land of Benjamin, to buy thence +a property in the midst of the people. + +And he was in the gate of Benjamin, and +there was there a man with whom he lodged, Saruia the son of Selemias, the son of Ananias; and he caught Jeremias, saying, You are fleeing to the Chaldeans. + +And he said, +It is false; I do not flee to the Chaldeans. But he listened not to him; and Saruia caught Jeremias, and brought him to the princes. + +And the princes were very angry with Jeremias, and struck him, and sent him into the house of Jonathan the scribe: for they had made this a prison. + +So Jeremias came into the dungeon, and into the cells, and he remained there many days. + +Then Sedekias sent, and called him; and the king asked him secretly, saying, Is there a word from the Lord? and he said, There is: you shall be delivered into the hands of the king of Babylon. + +And Jeremias said to the king, Wherein have I wronged you, or your servants, or this people, that you put me in prison? + +And where are your prophets who prophesied to you saying, The king of Babylon shall not come against this land? + +Now therefore, my lord the king, let my supplication come before your face: and why do you send me back to the house of Jonathan the scribe? and let me not on any account die there. + +Then the king commanded, and they cast him into the prison, and gave him a loaf a day out of the place where they bake, until the bread failed out of the city. So Jeremias continued in the court of the prison. + +

+ + +

And Saphanias the son of Nathan, and Godolias the son of Paschor, and Joachal the son of Semelias, heard the words which Jeremias spoke to the people, saying, + +Thus says the Lord; He that remains in this city shall die by the sword, and by the famine: but he that goes out to the Chaldeans shall live; and his soul shall be given him for a found treasure, and he shall live. + +For thus says the Lord; This city shall certainly be delivered into the hands of the host of the king of Babylon, and they shall take it. + +And they said to the king, Let that man, we pray you, be slain, for he weakens the hands of the fighting men that are left in the city, and the hands of all the people, speaking to them according to these words: for this man does not prophesy peace to this people, but evil. + +Then the king said, Behold, he is in your hands. For the king could not resist them. + +And they cast him into the dungeon of Melchias the king's son, which was in the court of the prison; and they let him down into the pit: and there was no water in the pit, but mire: and he was in the mire. + +And Abdemelech the Ethiopian heard, (now he was in the king's household,) that they +had put Jeremias into the dungeon; and the king was in the gate of Benjamin: + +and he went forth to him, and spoke to the king and said, + +You have done evil in what you have done to kill this man with hunger: for there is no more bread in the city. + +And the king commanded Abdemelech, saying, Take with you hence thirty men, and bring him up out of the dungeon, that he die not. + +So Abdemelech took the men and went into the underground +part of the king's house, and took thence old rags and old ropes, and threw them to Jeremias into the dungeon. + +And he said, Put these under the ropes. And Jeremias did so. + +And they drew him with the ropes, and lifted him out of the dungeon: and Jeremias remained in the court of the prison. + +Then the king sent, and called him to himself into the house of Aselisel, which was in the house of the Lord: and the king said to him, I will ask you a question, and I pray you hide nothing from me. + +And Jeremias said to the king, If I tell you, will you not certainly put me to death? and if I give you counsel, you will not at all listen to me. + +And the king swore to him, saying, +As the Lord lives who gave us this soul, I will not kill you, neither will I give you into the hands of these men. + +And Jeremias said to him, Thus says the Lord; If you will indeed go forth to the captains of the king of Babylon, your soul shall live, and this city shall certainly not be burnt with fire; and you shall live, and your house. + +But if you will not go forth this city shall be delivered into the hands of the Chaldeans, and they shall burn it with fire, and you shall by no means escape. + +And the king said to Jeremias, I consider the Jews that have gone over to the Chaldeans, lest they deliver me into their hands, and they mock me. + +And Jeremias said, They shall in no wise deliver you up. Hear the word of the Lord which I speak to you; and it shall be better for you, and your soul shall live. + +But if you will not go forth, this is the word which the Lord has shown me. + +And, behold, all the women that are left in the house of the king of Juda were brought forth to the princes of the king of Babylon; and they said, The men who were at peace with you have deceived you, and will prevail against you; and they shall cause your foot to slide and fail, they have turned back from you. + +And they shall bring forth your wives and your children to the Chaldeans: and you shall by no means escape, for you shall be taken by the hand of the king of Babylon, and this city shall be burnt. + +Then the king said to him, Let no man know +any of these words, and certainly you shall not die. + +And if the princes shall hear that I have spoken to you, and they come to you, and say to you, Tell us, what said the king to you? hide +it not from us, and we will in no wise kill you, and what said the king to you? + +Then you shall say to them, I brought my supplication before the presence of the king, that he would not send me back into the house of Jonathan, that I should die there. + +And all the princes came to Jeremias, and asked him: and he told them according to all these words, which the king had commanded him. And they were silent, because the word of the Lord was not heard. + +And Jeremias remained in the court of the prison, until the time when Jerusalem was taken. + +

+ + +

And it came to pass in the ninth month of Sedekias king of Juda, +that Nabuchodonosor king of Babylon came, and all his host, against Jerusalem, and they besieged it. + +And in the eleventh year of Sedekiass, in the fourth month, on the ninth day of the month, the city was broken +up. + +And all the leaders of the king of Babylon went in, and sat in the middle gate, Marganasar, and Samagoth, and Nabusachar, and Nabusaris, Nagargas, Naserrabamath, and the rest of the leaders of the king of Babylon, + +and they sent, and took Jeremias out of the court of the prison, and gave him +in charge to Godolias the son of Achicam, the son of Saphan: and they brought him out, and he sat in the midst of the people. + +And the word of the Lord came to Jeremias in the court of the prison, saying, + +Go and say to Abdemelech the Ethiopian, Thus said the Lord God of Israel; Behold, I +will bring my words upon this city for evil, and not for good. + +But I will save you in that day, and I will by no means deliver you into the hands of the men before whom you are afraid. + +For I will surely save you, and you shall by no means fall by the sword; and you shall find your life, because you did trust in me, says the Lord. + +

+ + +

The word that came from the Lord to Jeremias, after that Nabuzardan the captain of the guard had let him go out of Rama, when he had taken him in manacles in the midst of the captivity of Juda, +even those who were carried to Babylon. + +And the chief captain of the guard took him, and said to him, The Lord your God has pronounced all these evils upon this place: + +and the Lord has done it; because you⌃ sinned against him, and listened not to his voice. + +Behold, I have loosed you from the manacles that were upon your hands. If it seem good to you to go with me to Babylon, then will I set my eyes upon you. + +But if not, depart; return to Godolias the son of Achicam, the son of Saphan, whom the king of Babylon has appointed governor in the land of Juda, and dwell with him in the midst of the people in the land of Juda: to whatever places it seems good in your eyes to go, do you even go. And the captain of the guard made him presents, and let him go. + +And he came to Godolias to Massepha, and lived in the midst of his people that was left in the land. + +And all the leaders of the host that was in the country, they and their men, heard that the king of Babylon had appointed Godolias +governor in the land, and they committed to him the men and their wives, whom +Nabuchodonosor had not removed to Babylon. + +And there came to Godolias to Massepha Ismael the son of Nathanias, and Joanan son of Caree, and Saraeas the son of Thanaemeth, and the sons of Jophe the Netophathite, and Ezonias son of the Mochathite, they and their men. + +And Godolias swore to them and to their men, saying, Be not afraid before the children of the Chaldeans: dwell in the land, and serve the king of Babylon, and it shall be better for you. + +And, behold, I dwell in your presence at Massepha, to stand before the Chaldeans who shall come against you: and do you⌃ gather grapes, and fruits, and oil, and put +them into your vessels, and dwell in the cities which you⌃ have obtained possession of. + +And all the Jews that were in Moab, and among the children of Ammon, and those +that were in Idumea, and those +that were in all +the rest of the country, heard that the king of Babylon +had granted a remnant to Juda, and that he had appointed over them Godolias the son of Achicam. + +And they came to Godolias into the land of Juda, to Massepha, and gathered grapes, and very much summer fruit, and oil. + +And Joanan the son of Caree, and all the leaders of the host, who were in the fields, came to Godolias to Massepha, + +and said to him, Do you indeed know that king Beleissa son of Ammon has sent Ismael to you to kill you? But Godolias believed them not. + +And Joanan said to Godolias secretly in Massepha, I will go now and strike Ismael, and let no man know +it; lest he kill you, and all the Jews that are gathered to you be dispersed, and the remnant of Juda perish. + +But Godolias said to Joanan, Do not the thing, for you speak lies concerning Ismael. + +

+ + +

Now it came to pass in the seventh month that Ismael the son of Nathanias the son of Eleasa of the seed royal, came, and ten men with him, to Godolias to Massepha: and they ate bread there together. + +And Ismael rose up, and the ten men that were with him, and struck Godolias, whom the king of Babylon had appointed +governor over the land, + +and all the Jews that were with him in Massepha, and all the Chaldeans that were found there. + +And it came to pass on the second day after he had struck Godolias, and no man knew +of it, + +that there came men from Sychem, and from Salem, and from Samaria, +even eighty men, having their beards shaven, and their clothes torn, and beating their breasts, and +they had manna and frankincense in their hands, to bring +them into the house of the Lord. + +And Ismael went out to meet them; +and they went on and wept: and he said to them, Come in to Godolias. + +And it came to pass, when they had entered into the midst of the city, +that he killed them +and cast them into a pit. + +But ten men were found there, and they said to Ismael, Slay us not: for we have treasures in the field, wheat and barley, honey and oil. So he passed by, and killed them not in the midst of their brethren. + +Now the pit into which Ismael cast all whom he struck, is the great pit, which king Asa had made for fear of Baasa king of Israel: +even this Ismael filled with slain men. + +And Ismael brought back all the people that were left in Massepha, and the king's daughter, whom the captain of the guard had committed in charge to Godolias the son of Achicam: and he went away beyond the children of Ammon. + +And Joanan the son of Caree, and all the leaders of the host that were with him, heard of all the evil deeds which Ismael had done. + +And they brought all their army, and went to fight against him, and found him near much water in Gabaon. + +And it came to pass, when all the people that was with Ismael saw Joanan, and the leaders of the host that was with him, + +that they returned to Joanan. + +But Ismael escaped with eight men and went to the children of Ammon. + +And Joanan, and all the leaders of the host that were with him, took all the remnant of the people, whom he +had brought back from Ismael, mighty men in war, and the women, and the other +property, and the eunuchs, whom they +had brought back from Gabaon: + +and they departed, and lived in Gaberoch-amaa, that is by Bethleem, to go into Egypt, for fear of the Chaldeans: + +for they were afraid of them, because Ismael had struck Godolias, whom the king of Babylon made +governor in the land. + +

+ + +

Then came all the leaders of the host, and Joanan, and Azarias the son of Maasaeas, and all the people great and small, + +to Jeremias the prophet, and said to him, Let now our supplication come before your face, and pray you to the Lord your God for this remnant; for we are left few out of many, as your eyes see. + +And let the Lord your God declare to us the way wherein we should walk, and the thing which we should do. + +And Jeremias said to them, I have heard +you; behold, I will pray for you to the Lord our God, according to your words; and it shall come to pass, +that whatever word the Lord God shall answer, I will declare +it to you; I will not hide anything from you. + +And they said to Jeremias, Let the Lord be between us for a just and faithful witness, if we do not according to every word which the Lord shall send to us. + +And whether +it be good, or whether +it be evil, we will listen to the voice of the Lord our God, to whom we send you; that it may be well with us, because we shall listen to the voice of the Lord our God. + +And it came to pass after ten days, +that the word of the Lord came to Jeremias. + +And he called Joanan, and the leaders of the host, and all the people from the least even to the greatest, + +and he said to them, Thus says the Lord; + +If you⌃ will indeed dwell in this land, I will build you, and will not pull +you down, but will plant you, and in no wise pluck you up: for I have ceased from the calamities which I brought upon you. + +Be not afraid of the king of Babylon, of whom you⌃ are afraid; be not afraid of him, says the Lord: for I am with you, to deliver you, and save you out of their hand. + +And I will grant you mercy, and pity you, and will restore you to your land. + +But if you⌃ say, We will not dwell in this land, that we may not listen to the voice of the Lord; + +for we will go into the land of Egypt, and we shall see no war, and shall not hear the sound of a trumpet, and we shall not hunger for bread; and there we will dwell: + +then hear the word of the Lord; thus says the Lord; + +If you⌃ set your face toward Egypt, and go in there to dwell; then it shall be, +that the sword which you⌃ fear shall find you in the land of Egypt, and the famine to which you⌃ have regard, shall overtake you, +coming after you in Egypt; and there you⌃ shall die. + +And all the men, and all the strangers who have set their face toward the land of Egypt to dwell there, shall be consumed by the sword, and by the famine: and there shall not one of them escape from the evils which I bring upon them. + +For thus says the Lord; As my wrath has dropped upon the inhabitants of Jerusalem, so shall my wrath drop upon you, when you⌃ have entered into Egypt: and you⌃ shall be a desolation, and under the power of others, and a curse and a reproach: and you⌃ shall no more see this place. + + +These are the words which the Lord has spoken concerning you the remnant of Juda; Enter you⌃ not into Egypt: and now know you⌃ for a certainty, + +that you⌃ have wrought wickedness in your hearts, when you⌃ sent me, saying, Pray you for us to the Lord; and according to all that the Lord shall speak to you we will do. + +And you⌃ have not listened to the voice of the Lord, with which he sent me to you. + +Now therefore you⌃ shall perish by sword and by famine, in the place which you⌃ desire to go into to dwell there. + +

+ + +

And it came to pass, when Jeremias ceased speaking to the people all the words of the Lord, +for which the Lord had sent him to them, +even all these words, + +that Azarias son of Maasaeas spoke, and Joanan, the son of Caree, and all the men who had spoken to Jeremias, saying, +It is false: the Lord has not sent you to us, saying, Enter not into Egypt to dwell there: + +but Baruch the son of Nerias sets you against us, that you may deliver us into the hands of the Chaldeans, to kill us, and that we should be carried away captives to Babylon. + +So Joanan, and all the leaders of the host, and all the people, refused to listen to the voice of the Lord, to dwell in the land of Juda. + +And Joanan, and all the leaders of the host, took all the remnant of Juda, who had returned to dwell in the land; + +the mighty men, and the women, and the children that were left, and the daughters of the king, and the souls which Nabuzardan had left with Godolias the son of Achicam and Jeremias the prophet, and Baruch the son of Nerias. + +And they came into Egypt: for they listened not to the voice of the Lord: and they entered into Taphnas. + +And the word of the Lord came to Jeremias in Taphnas, saying, + +Take you great stones, and hide them in the entrance, at the gate of the house of Pharao in Taphnas, in the sight of the men of Juda: + +and you shall say, Thus has the Lord said; Behold, I +will send, and will bring Nabuchodonosor king of Babylon, and he shall place his throne upon these stones which you have hidden, and he shall lift up weapons against them. + +And he shall enter in, and strike the land of Egypt, +delivering some for death to death; and some for captivity to captivity; and some for the sword to the sword. + +And he shall kindle a fire in the houses of their gods, and shall burn them, and shall carry them away captives: and shall search the land of Egypt, as a shepherd searches his garment; and he shall go forth in peace. + +And he shall break to pieces the pillars of Heliopolis that are in On, and shall burn their houses with fire. + +

+ + +

THE WORD THAT CAME TO JEREMIAS for all the Jews dwelling in the land of Egypt, and for those settled in Magdolo and in Taphnas, and in the land of Pathura, saying, + +Thus has the Lord God of Israel said; You⌃ have seen all the evils which I have brought upon Jerusalem, and upon the cities of Juda; and, behold, they are desolate without inhabitants, + +because of their wickedness, which they have wrought to provoke me, +by going to burn incense to other gods, whom you⌃ knew not. + +yet I sent to you my servants the prophets early in the morning, and I sent, saying, Do not you⌃ this abominable thing which I hate. + +But they listened not to me, and inclined not their ear to turn from their wickedness, so as not to burn incense to strange gods. + +So my anger and my wrath dropped +upon them, and was kindled in the gates of Juda, and in the streets of Jerusalem; and they became a desolation and a waste, as at this day. + +And now thus has the Lord Almighty said, Therefore do you⌃ commit +these great evils against your souls? to cut off man and woman of you, infant and suckling from the midst of Juda, to the end that not one of you should be left; + +by provoking me with the works of your hands, to burn incense to other gods in the land of Egypt, into which you⌃ entered to dwell there, that you⌃ might be cut off, and that you⌃ might become a curse and a reproach among all the nations of the earth? + +Have you⌃ forgotten the sins of your fathers, and the sins of the kings of Juda, and the sins of your princes, and the sins of your wives, which they wrought in the land of Juda, and in the streets of Jerusalem? + +And have not ceased even to this day, and they have not kept to my ordinances, which I set before their fathers. + +Therefore thus says the Lord; Behold I do set my face against +you + +to destroy all the remnant that are in Egypt; and they shall fall by the sword, and by famine, and shall be consumed small and great: and they shall be for reproach, and for destruction, and for a curse. + +And I will visit them that dwell in the land of Egypt, as I have visited Jerusalem, with sword and with famine: + +and there shall not one be preserved of the remnant of Juda that sojourn in the land of Egypt, to return to the land of Juda, to which they hope in their hearts to return: they shall not return, but only they that escape. + +Then all the men that knew that their wives burned incense, and all the women, a great multitude, and all the people that lived in the land of Egypt, in Pathura, answered Jeremias, saying, + + +As for the word which you have spoken to us in the name of the Lord, we will not listen to you. + +For we will surely perform every word that shall proceed out of our mouth, to burn incense to the queen of heaven, and to pour drink-offerings to her, as we and our fathers have done, and our kings and princes, in the cities of Juda, and in the streets of Jerusalem: and +so we were filled with bread, and were well, and saw no evils. + +But since we left off to burn incense to the queen of heaven, we have all been brought low, and have been consumed by sword and by famine. + +And whereas we burned incense to the queen of heaven, and poured drink-offerings to her, did we make cakes to her, and pour drink-offerings to her, without our husbands? + +Then Jeremias answered all the people, the mighty men, and the women, and all the people that returned him +these words for answer, saying, + +Did not the Lord remember the incense which you⌃ burned in the cities of Juda, and in the streets of Jerusalem, you⌃, and your fathers, and your kings, and your princes, and the people of the land? and came it not into his heart? + +And the Lord could no longer bear +you, because of the wickedness of your doings, and because of your abominations which you⌃ wrought; and so your land became a desolation and a waste, and a curse, as at this day; + +because of your burning incense, and +because of the things wherein you⌃ sinned against the Lord: and you⌃ have not listened to the voice of the Lord, and have not walked in his ordinances, and in his law, and in his testimonies; and so these evils have come upon you. + +And Jeremias said to the people, and to the women, Hear you⌃ the word of the Lord. + +Thus has the Lord God of Israel said; You⌃ women have spoken with your mouth, and you⌃ fulfilled +it with your hands, saying, We will surely perform our vows that we have vowed, to burn incense to the queen of heaven, and to pour drink-offerings to her: full well did you⌃ keep to your vows, and you⌃ have indeed performed +them. + +Therefore hear you⌃ the word of the Lord, all Jews dwelling in the land of Egypt; Behold, I have sworn by my great name, says the Lord, my name shall no longer be in the mouth of every Jew to say, The Lord lives, in all the land of Egypt. + +For I have watched over them, to hurt them, and not to do them good: and all the Jews dwelling in the land of Egypt shall perish by sword and by famine, until they are utterly consumed. + +And they that escape the sword shall return to the land of Juda few in number, and the remnant of Juda, who have continued in the land +of Egypt to dwell there, shall know whose word shall stand. + +And this +shall be a sign to you, that I will visit you for evil. + +Thus said the Lord; Behold, I +will give Uaphres king of Egypt into the hands of his enemy, and into the hands of one that seeks his life; as I gave Sedekias king of Juda into the hands of Nabuchodonosor king of Babylon, his enemy, and who sought his life. + +THE WORD WHICH JEREMIAS THE PROPHET spoke to Baruch son of Nerias, when he wrote these words in the book from the mouth of Jeremias, in the fourth year of Joakim the son of Josias king of Juda. + +Thus has the Lord said to you, O Baruch. + +Whereas you have said, Alas! alas! for the Lord has laid a grievous trouble upon me; I lay down in groaning, I found no rest; + +say you to him, Thus says the Lord; Behold, I pull down those whom I have built up, and I pluck up those whom I have planted. + +And will you seek great things for yourself? seek +them not: for, behold, I bring evil upon all flesh, says the Lord: but I will give +to you your life for a spoil in every place whither you shall go. + +

+ + +

It was the twenty-first year of Sedekias, when he began to reign, and he reigned eleven years in Jerusalem. And his mother's name was Amitaal, the daughter of Jeremias, of Lobena. + +And it came to pass in the ninth year of his reign, in the ninth month, on the tenth day of the month, +that Nabuchodonosor king of Babylon came, and all his host, against Jerusalem, and they made a rampart round it, and built a wall round about it with large stones. + +So the city was besieged, until the eleventh year of king Sedekias, + +on the ninth day of the month, and +then the famine was severe in the city, and there was no bread for the people of the land. + +And the city was broken up, and all the men of war went out by night by the way of the gate, between the wall and the outworks, which were by the king's garden; and the Chaldeans were by the city round about; and they went by the way +leading to the wilderness. + +But the host of the Chaldeans pursued after the king, and overtook him in the +country beyond Jericho; and all his servants were dispersed from +about him. + +And they took the king, and brought him to the king of Babylon to Deblatha, and he judged him. + +And the king of Babylon killed the sons of Sedekias before his eyes; and he killed all the princes of Juda in Deblatha. + +And he put out the eyes of Sedekias, and bound him in fetters; and the king of Babylon brought him to Babylon, and put him into the grinding-house, until the day when he died. + +And in the fifth month, on the tenth day of the month, Nabuzardan the captain of the guard, who waited on the king of Babylon, came to Jerusalem; + +and he burnt the house of the Lord, and the king's house; and all the houses of the city, and every great house he burnt with fire. + +And the host of the Chaldeans that was with the captain of the guard pulled down all the wall of Jerusalem round about. + +But the captain of the guard left the remnant of the people to be vinedressers and husbandmen. + +And the Chaldeans broke in pieces the brazen pillars that were in the house of the Lord, and the bases, and the brazen sea that was in the house of the Lord, and they took the brass thereof, and carried it away to Babylon. + +Also the rim, and the bowls, and the flesh hooks, and all the brazen vessels, wherewith they ministered; + +and the basins, and the snuffers, and the oil-funnels, and the candlesticks, and the censers, and the cups, the golden, of gold, and the silver, of silver, the captain of the guard took away. + +And the two pillars, and the one sea, and the twelve brazen oxen under the sea, which +things king Solomon made for the house of the Lord; the brass of which +articles was without weight. + +And as for the pillars, the height of one pillar was thirty-five cubits; and a line of twelve cubits compassed it round; and the thickness of it +all round was four fingers. + +And +there was a brazen chapiter upon them, and the length was five cubits, +even the height of one chapiter; and +there were on the chapiter round about network and pomegranates, all of brass: and correspondingly the second pillar +had eight pomegranates to a cubit for the twelve cubits. + +And the pomegranates were ninety-six on a side; and all the pomegranates on the network round about were one hundred. + +And the captain of the guard took the chief priest, and the second priest, and those that kept the way; + +and one eunuch, who was over the men of war, and seven men of renown, who were in the king's presence that were found in the city; and the scribe of the forces, who did the part of a scribe to the people of the land; and sixty men of the people of the land, who were found in the midst of the city. + +And Nabuzardan the captain of the king's guard took them, and brought them to the king of Babylon to Deblatha. + +And the king of Babylon struck them in Deblatha, in the land of Aemath. + +And it came to pass in the thirty-seventh year after that Joakim king of Juda had been carried away captive, in the twelfth month, on the four and twentieth +day of the month, +that Ulaemadachar king of Babylon, in the year in which he began to reign, raised the head of Joakim king of Juda, and shaved him, and brought him out of the house where he was kept, + +and spoke kindly to him, and set his throne above the kings that were with him in Babylon, + +and changed his prison garments: and he ate bread continually before him all the days that he lived. + +And his appointed portion was given him continually by the king of Babylon from day to day, until the day when he died. + +

+
+ +Lamentations +LAMENTATIONS +Lamentations +LAM +

LAMENTATIONS +

+ + +

And it came to pass, after Israel was taken captive, and Jerusalem made desolate, +that Jeremias sat weeping, and lamented +with this lamentation over Jerusalem, and said, ALEPH. How does the city that was filled with people sit solitary! she is become as a widow: she that was magnified among the nations, +and princess among the provinces, has become tributary. + +BETH. She weeps sore in the night, and her tears are on her cheeks; and there is none of all her lovers to comfort her: all that were her friends have dealt deceitfully with her, they are become her enemies. + +GIMEL. Judea is gone into captivity by reason of her affliction, and by reason of the abundance of her servitude: she dwells among the nations, she has not found rest: all her pursuers have overtaken her between her oppressors. + +DALETH. The ways of Sion mourn, because there are none that come to the feast: all her gates are ruined: her priests groan, her virgins are led captive, and she is in bitterness in herself. + +HE. Her oppressors are become the head, and her enemies have prospered; for the Lord has afflicted her because of the multitude of her sins: her young children are gone into captivity before the face of the oppressor. + +VAU. And all her beauty has been taken away from the daughter of Sion: her princes were as rams finding no pasture, and are gone +away in weakness before the face of the pursuer. + +ZAIN. Jerusalem remembered the days of her affliction, and her rejection; +she thought on all her desirable things which were from the days of old, when her people fell into the hands of the oppressor, and there was none to help her: when her enemies saw +it they laughed at her habitation. + +HETH. Jerusalem has sinned a +great sin; therefore has she come into tribulation, all that used to honor her have afflicted her, for they have seen her shame: yes, she herself groaned, and turned backward. + +TETH. Her uncleanness is before her feet; she remembered not her last end; she has lowered her boasting +tone, there is none to comfort her. Behold, O Lord, my affliction: for the enemy has magnified himself. + +JOD. The oppressor has stretched out his hand on all her desirable things: for she has seen the Gentiles entering into her sanctuary, +concerning whom you did command that they should not enter into your congregation. + +CHAPH. All her people groan, seeking bread: they have given their desirable things for meat, to restore their soul: behold, Lord, and look; for she is become dishonored. + +LAMED. All you⌃ that pass by the way, turn, and see if there is sorrow like to my sorrow, which has happened +to me. The Lord who spoke by me has afflicted me in the day of his fierce anger. + +MEM. He has sent fire from his lofty habitation, he has brought it into my bones: he has spread a net for my feet, he has turned me back: he has made me desolate +and mourning all the day. + +NUN. He has watched over my sins, they are twined about my hands, they have come up on my neck: my strength has failed; for the Lord has laid pains on my hands, I shall not be able to stand. + +SAMECH. The Lord has cut off all my strong men from the midst of me: he has summoned against me a time for crushing my choice men: the Lord has trodden a wine-press for the virgin daughter of Juda: for these things I weep. + +AIN. My eye has poured out water, because he that should comfort me, that should restore my soul, has been removed far from me: my sons have been destroyed, because the enemy has prevailed. + +PHE. Sion has spread out her hand, +and there is none to comfort her: the Lord has commanded +concerning Jacob, his oppressors are round about him: Jerusalem has become among them as a removed woman. + +TSADE. The Lord is righteous; for I have provoked his mouth: hear, I pray you, all people, and behold my grief: my virgins and my young men are gone into captivity. + +KOPH. I called my lovers, but they deceived me: my priests and my elders failed in the city; for they sought meat that they might restore their souls, and found +it not. + +RHECHS. Behold, O Lord; for I am afflicted: my belly is troubled, and my heart is turned within me; for I have been grievously rebellious: abroad the sword has bereaved me, even as death at home. + +CHSEN. Hear, I pray you, for I groan: there is none to comfort me: all my enemies have heard +of my afflictions, and rejoice because you have done +it: you have brought on the day, you have called the time: they are become like to me. + +THAU. Let all their wickedness come before your face; and strip them, as they have made a gleaning for all my sins: for my groans are many, and my heart is grieved. + +

+ + +

ALEPH. How has the Lord darkened in his wrath the daughter of Sion! he has cast down the glory of Israel from heaven to earth, and has not remembered his footstool. + +BETH. In the day of his wrath the Lord has overwhelmed +her as in the sea, +and not spared: he has brought down in his fury all the beautiful things of Jacob; he has brought down to the ground the strongholds of the daughter of Juda; he has profaned her kings and her princes. + +GIMEL. He has broken in his fierce anger all the horn of Israel: he has turned back his right hand from the face of the enemy, and has kindled a flame in Jacob as a fire, and it has devoured all things round about. + +DALETH. He has bent his bow as an opposing enemy: he has strengthened his right hand as an adversary, and has destroyed all the desirable things of my eyes in the tabernacle of the daughter of Sion: he has poured forth his anger as fire. + +HE. The Lord is become as an enemy: he has overwhelmed Israel as in the sea, he has overwhelmed her palaces: he has destroyed her strongholds, and has multiplied the afflicted and humbled ones to the daughter of Juda. + +VAU. And he has scattered his tabernacle as a vine, he has marred his feast: the Lord has forgotten the feast and the sabbath which he appointed in Sion, and in the fury of his wrath has vexed the king, and priest, and prince. + +ZAIN. The Lord has rejected his altar, he has cast off his sanctuary, he has broken by the hand of the enemy the wall of her palaces; they have uttered their voice in the house of the Lord as on a feast day. + +HETH. And he has turned to destroy the wall of the daughter of Sion: he has stretched out the measuring line, he has not turned back his hand from afflicting +her: therefore the bulwark mourned, and the wall was weakened with it. + +TETH. Her gates are sunk into the ground: he has destroyed and broken to pieces her bars, +and her king and her prince among the Gentiles: there is no law, nay, her prophets have seen no vision from the Lord. + +JOD. The elders of the daughter of Sion have sat upon the ground, they have kept silence: they have cast up dust upon their heads; they have girded themselves with sackcloths: they have brought down to the ground the chief virgins in Jerusalem. + +CHAPH. My eyes have failed with tears, my heart is troubled, my glory is cast down to the ground, for the destruction of the daughter of my people; while the infant and suckling swoon in the streets of the city. + +LAMED. They said to their mothers, Where is corn and wine? while they fainted like wounded men in the streets of the city, while their souls were poured out into their mother's bosom. + +MEM. What shall I testify to you, or what shall I compare to you, O daughter of Jerusalem? who shall save and comfort you, O virgin daughter of Sion? for the cup of your destruction is enlarged: who shall heal you? + +NUN. Your prophets have seen for you vanities and folly: and they have not revealed your iniquity, to turn back your captivity; but they have seen for you vain burdens, and worthless visions. + +SAMECH. All that go by the way have clapped their hands at you; they have hissed and shaken their head at the daughter of Jerusalem. Is this the city, they say, the crown of joy of all the earth? + +AIN. All your enemies have opened their mouth against you: they have hissed and gnashed their teeth, and said, We have swallowed her up: moreover this is the day which we looked for; we have found it, we have seen it. + +PHE. The Lord has done that which he purposed; he has accomplished his word, +even the things which he commanded from the ancient days: he has thrown down, and has not spared: and he has caused the enemy to rejoice over you, he has exalted the horn of him that afflicted you. + +TSADE. Their heart cried to the Lord, You⌃ walls of Sion, pour down tears like torrents day and night: give yourself no rest; let not the apple of your eyes cease. + +KOPH. Arise, rejoice in the night at the beginning of your watch: pour out your heart as water before the face of the Lord; lift up your hands to him for the life of your infants, who faint for hunger at the top of all the streets. + +RHECHS. Behold, O Lord, and see for whom you have gathered thus. Shall the women eat the fruit of their womb? the cook has made a gathering: shall the infants sucking at the breasts be slain? will you kill the priest and prophet in the sanctuary of the Lord? + +CHSEN. The child and old man have lain down in the street: my virgins and my young men are gone into captivity: you have slain +them with the sword and with famine; in the day of your wrath you have mangled +them, you have not spared. + +THAU. He has called my sojourners round about to a solemn day, and there was not in the day of the wrath of the Lord any one that escaped or was left; whereas I have strengthened and multiplied all my enemies. + +

+ + +

ALEPH. I am the man that sees poverty, through the rod of his wrath upon me. + +He has taken me, and led me away into darkness, and not +into light. + +Nay, against me has he turned his hand all the day. + +He has made old my flesh and my skin; he has broken my bones. + +BETH. He has built against me, and compassed my head, and brought travail +upon me. + +He has set me in dark places, as them that have long been dead. + +He has builded against me, and I can’t come forth: he has made my brazen +chain heavy. + +GIMEL. Yes, +though I cry and shout, he shuts out my prayer. + +DALETH. He has built up my ways, he has hedged my paths; + +he has troubled me, +as a she-bear lying in wait: he is to me +as a lion in secret places. + +He pursued +me after I departed, and brought me to a stand: he has utterly ruined me. + +HE. He has bent his bow, and set me as a mark for the arrow. + +He has caused the arrows of his quiver to enter into my reins. + +I became a laughing stock to all my people; and their song all the day. + +VAU. He has filled me with bitterness, he has drenched me with gall. + +And he has dashed out my teeth with gravel, he has fed me with ashes. + +He has also removed my soul from peace: I forgot prosperity. + +Therefore my success has perished, and my hope from the Lord. + +ZAIN. I remembered by reason of my poverty, and because of persecution my bitterness and gall shall be remembered; + +and my soul shall meditate with me. + +This will I lay up in my heart, therefore I will endure. + +HETH. +It is the mercies of the Lord, that he has not failed me, because his compassions are not exhausted. Pity +us, O Lord, early +every month: for we are not brought to an end, because his compassions are not exhausted. + + +They are new every morning: great is your faithfulness. + +The Lord is my portion, says my soul; therefore will I wait for him. + +TETH. The Lord is good to them that wait for him: the soul which shall seek him + + +is good, and shall wait for, and quietly expect salvation of the Lord. + +TETH. +It is good for a man when he bears a yoke in his youth. + +He will sit alone, and be silent, because he has borne +it upon him. + +JOD. He will give +his cheek to him that smites him: he will be filled full with reproaches. + +For the Lord will not reject for ever. + +CHAPH. For he that has brought down will pity, and +that according to the abundance of his mercy. + +He has not answered +in anger from his heart, though he has brought low the children of a man. + +LAMED. To bring down under his feet all the prisoners of the earth, + +to turn aside the judgment of a man before the face of the Most High, + +to condemn a man +unjustly in his judgment, the Lord has not given commandment. + +Who has thus spoken, and it has come to pass? the Lord has not commanded it. + +Out of the mouth of the Most High there shall not come forth evil and good. + +MEM. Why should a living man complain, a man concerning his sin? + +NUN. Our way has been searched out and examined, and we will turn to the Lord. + +Let us lift up our hearts with +our hand to the lofty One in heaven. + +We have sinned, we have transgressed; and you have not pardoned. + +SAMECH. You have visited +us in wrath, and driven us away: you have slain, you have not pitied. + +You have veiled yourself with a cloud because of prayer, that I might be blind, + +and be cast off. AIN. You have set us +alone in the midst of the nations. + +All our enemies have opened their mouth against us. + +Fear and wrath are come upon us, suspense and destruction. + +My eye shall pour down torrents of water, for the destruction of the daughter of my people. + +PHE. My eye is drowned +with tears, and I will not be silent, so that there shall be no rest, + +until the Lord look down, and behold from heaven. + +My eye shall prey upon my soul, because of all the daughters of the city. + +TSADE. The fowlers chased me as a sparrow, all my enemies destroyed my life in a pit without cause, + +and laid a stone upon me. + +Water flowed over my head: I said, I am cut off. + +KOPH. I called upon your name, O Lord, out of the lowest dungeon. + +You heard my voice: close not your ears to my supplication. + +You drew near to my help: in the day wherein I called upon you you said to me, Fear not. + +RECHS. O Lord, you have pleaded the causes of my soul; you have redeemed my life. + +You have seen, O Lord, my troubles: you have judged my cause. + +You have seen all their vengeance, +you have looked on all their devices against me. + +CHSEN. You have heard their reproach +and all their devices against me; + +the lips of them that rose up against me, and their plots against me all the day; + +their sitting down and their rising up: look you upon their eyes. + +You will render them a recompense, O Lord, according to the works of their hands. + +THAU. You will give them +as a covering, the grief of my heart. + +You will persecute them in anger, and will consume them from under the heaven, O Lord. + +

+ + +

ALEPH. How will the gold be tarnished, +and the fine silver changed! the sacred stones have been poured forth at the top of all the streets. + +BETH. The precious sons of Zion, who were equalled in value with gold, how are they counted as earthen vessels, the works of the hands of the potter! + +GIMEL. Nay, serpents have drawn out the breasts, they give suck to their young, the daughters of my people are incurably cruel, as an ostrich in a desert. + +DALETH. The tongue of the sucking child cleaves to the roof of its mouth for thirst: the little children ask for bread, +and there is none to break +it to them. + +HE. They that feed on dainties are desolate in the streets: they that used to be nursed in scarlet have clothed themselves with dung. + +VAU. And the iniquity of the daughter of my people has been increased beyond the iniquities of Sodoma, +the city that was overthrown very suddenly, and none laboured against her +with their hands. + +ZAIN. Her Nazarites were made purer than snow, they were whiter than milk, they were purified +as with fire, their polishing was superior to sapphire stone. + +HETH. Their countenance is become blacker than smoke; they are not known in the streets: their skin has cleaved to their bones; they are withered, they are become as a stick. + +TETH. The slain with the sword were better than they that were slain with hunger: they have departed, pierced through from +lack of the fruits of the field. + +JOD. The hands of tender-hearted women have sodden their own children: they became meat for them in the destruction of the daughter of my people. + +CHAPH. The Lord has accomplished his wrath; he has poured out fierce anger, and has kindled a fire in Sion, and it has devoured her foundations. + +LAMED. The kings of the earth, +even all that dwell in the world, believed not that an enemy and oppressor would enter through the gates of Jerusalem. + +MEM. For the sins of her prophets, +and iniquities of her priests, who shed righteous blood in the midst of her, + +NUN. her watchmen staggered in the streets, they were defiled with blood in their weakness, they touched their raiment +with it. + +SAMECH. Depart you⌃ from the unclean ones: call you⌃ them: depart, depart, touch +them not: for they are on fire, yes, they stagger: say you⌃ among the nations, They shall no more sojourn +there. + +AIN. The presence of the Lord +was their portion; +but he will not again look upon them: they regarded not the person of the priests, they pitied not the prophets. + +PHE. While we yet lived our eyes failed, while we looked in vain for our help. TSADE. We looked to a nation that could not save. + +We have hunted +for our little ones, that they should not walk in our streets. KOPH. Our time has drawn near, our days are fulfilled, our time is come. + +Our pursuers were swifter than the eagles of the sky, they flew on the mountains, in the wilderness they laid wait for us. + +RECHS. The breath of our nostrils, +our anointed Lord, was taken in their destructive snares, of whom we said, In his shadow we shall live among the Gentiles. + +CHSEN. Rejoice and be glad, O daughter of Idumea, that dwell in the land: yet the cup of the Lord shall pass through to you: you shall be drunken, and pour forth. + +THAU. O daughter of Sion, your iniquity has come to an end; he shall no more carry you captive: he has visited your iniquities, O daughter of Edom; he has revealed your sins. + +

+ + +

Remember, O Lord, what has happened to us: behold, and look on our reproach. + +Our inheritance has been turned away to aliens, our houses to strangers: + +we are become orphans, we have no father, our mothers are as widows. + +We have drunk our water for money; our wood is sold to us +for a burden on our neck: + +we have been persecuted, we have laboured, we have had no rest. + +Egypt gave the hand +to us, Assur to their own satisfaction. + +Our fathers sinned, +and are not: we have borne their iniquities. + +Servants have ruled over us: there is none to ransom +us out of their hand. + +We shall bring in our bread with +danger of our lives, because of the sword of the wilderness. + +Our skin is blackened like an oven; they are convulsed, because of the storms of famine. + +They humbled the women in Sion, the virgins in the cities of Juda. + +Princes were hanged up by their hands: the elders were not honored. + +The chosen men lifted up +the voice in weeping, and the youths fainted under the wood. + +And the elders ceased from the gate, the chosen men ceased from their music. + +The joy of our heart has ceased; our dance is turned into mourning. + +The crown has fallen +from our head: yes, woe to us! for we have sinned. + +For this has grief come; our heart is sorrowful: for this our eyes are darkened. + +Over the mountain of Sion, because it is made desolate, foxes have walked therein. + +But you, O Lord, shall dwell for ever; your throne +shall endure to generation and generation. + +Therefore will you utterly forget us, and abandon us a long time? + +Turn us, O Lord, to you, and we shall be turned; and renew our days as before. + +For you have indeed rejected us; you have been very angry against us. + +

+
+ +Jezekiel +JEZEKIEL +Jezekiel +EZK +

JEZEKIEL +

+ + +

Now it came to pass in the thirties year, in the fourth month, on the fifth day of the month, that I was in the midst of the captivity by the river of Chobar; and the heavens were opened, and I saw visions of God. + +On the fifth day of the month; this was the fifth year of the captivity of king Joakim. + +And the word of the Lord came to Jezekiel the priest, the son of Buzi, in the land of the Chaldeans, by the river of Chobar; and the hand of the Lord was upon me. + +And I looked, and, behold, a sweeping wind came from the north, and a great cloud on it, and +there was brightness round about it, and gleaming fire, and in the midst of it as it were the appearance of amber in the midst of the fire, and brightness in it. + +And in the midst as it were the likeness of four living creatures. And this was their appearance; the likeness of a man was upon them. + +And each one +had four faces, and each one +had four wings. + +And their legs were straight; and their feet were winged, and +there were sparks, like gleaming brass, and their wings were light. + +And the hand of a man was under their wings on their four sides. + +And the faces of them four turned not when they went; they went everyone straight forward. + +And the likeness of their faces was the face of a man, and the face of a lion on the right of the four; and the face of a calf on the left of the four; and the face of an eagle to the four. + +And the four had their wings spread out above; each one +had two joined to one another, and two covered their bodies. + +And each one went straight forward: wherever the spirit was going they went, and turned not back. + +And in the midst of the living creatures +there was an appearance as of burning coals of fire, as an appearance of lamps turning among the living creatures; and the brightness of fire, and out of the fire came forth lightning. + +And I looked, and, behold, the four +had each one wheel on the ground near the living creatures. + +And the appearance of the wheels was as the appearance of beryl: and the four had one likeness: and their work was as it were a wheel in a wheel. + +They went on their four sides: they turned not as they went; + +neither did their backs +turn: and they were high: and I saw them, and the backs of them four were full of eyes round about. + +And when the living creatures went, the wheels went by them: and when the living creatures lifted themselves off the earth, the wheels were lifted off. + +Wherever the cloud happened to be, there was the spirit ready to go: the wheels went and were lifted up with them; because the spirit of life was in the wheels. + +When those went, +the wheels went; and when those stood, +the wheels stood; and when those lifted themselves off the earth, they were lifted off with them: for the spirit of life was in the wheels. + +And the likeness over the heads of the living creatures was as a firmament, as the appearance of crystal, spread out over their wings above. + +And their wings were spread out under the firmament, reaching one to the other; two +wings to each, covering their bodies. + +And I heard the sound of their wings when they went, as the sound of much water: and when they stood, their wings were let down. + +And behold! a voice from above the firmament + +that was over their head, +there was as the appearance of a sapphire stone, +and the likeness of a throne upon it: and upon the likeness of the throne was the likeness as an appearance of a man above. + +And I saw as it were the resemblance of amber from the appearance of the loins and upwards, and from the appearance of the loins and under I saw an appearance of fire, and the brightness thereof round about. + +As the appearance of the bow when it is in the cloud in days of rain, so was the form of brightness round about. + +

+ + +

This was the appearance of the likeness of the glory of the Lord. And I saw and fell upon my face, and heard the voice of one speaking: and he said to me, Son of man, stand upon your feet, and I will speak to you. + +And the Spirit came upon me, and took me up, and raised me, and set me on my feet: and I heard him speaking to me. + +And he said to me, Son of Man, I send you forth to the house of Israel, them that provoke me; who have provoked me, they and their fathers to this day. + +And you shall say to them, Thus says the Lord. + +Whether then indeed they shall hear or fear, (for it is a provoking house,) yet they shall know that you are a prophet in the midst of them. + +And you, son of man, fear them not, nor be dismayed at their face; (for they will madden and will rise up against you round about, and you dwell in the midst of scorpions): be not afraid of their words, nor be dismayed at their countenance, for it is a provoking house. + +And you shall speak my words to them, whether they will hear or fear: for it is a provoking house. + +And you, son of man, hear him that speaks to you; be not you provoking, as the provoking house: open your mouth, and eat what I give you. + +And I looked, and behold, a hand stretched out to me, and in it a volume of a book. + +And he unrolled it before me: and in it the front and the back were written +upon: and there was written +in it Lamentation, and mournful song, and woe. + +

+ + +

And he said to me, Son of Man, eat this volume, and go and speak to the children of Israel. + +So he opened my mouth, and caused me to eat the volume. And he said to me, Son of man, + +your mouth shall eat, and your belly shall be filled with this volume that is given to you. So I ate it; and it was in my mouth as sweet as honey. + +And he said to me, Son of man, go your way, and go in to the house of Israel, and speak my words to them. + +For you are not sent to a people of hard speech, +but to the house of Israel; + +neither to many nations of other speech and other tongues, nor of harsh language, whose words you would not understand: although if I +had sent you to such, they would have listened to you. + +But the house of Israel will not be willing to listen to you; for they will not listen to me: for all the house of Israel are stubborn and hard-hearted. + +And, behold, I have made your face strong against their faces, and I will strengthen your power against their power. + +And it shall be continually stronger than a rock: be not afraid of them, neither be dismayed at their faces, because it is a provoking house. + +And he said to me, Son of man, receive into your heart all the words that I have spoken to you, and hear +them with your ears. + +And go your way, go in to the captivity, to the children of your people, and you shall speak to them, and say to them, Thus says the Lord; whether they will hear, +or whether they will forbear. + +Then the Spirit took me up, and I heard behind me the voice +as of a great earthquake, +saying, Blessed +be the glory of the Lord from his place. + +And I perceived the sound of the wings of the living creatures clapping one to the other, and the sound of the wheels was near them, and the sound of the earthquake. + +And the Spirit lifted me, and took me up, and I went in the impulse of my spirit; and the hand of the Lord was mighty upon me. + +Then I passed through the air and came into the captivity, and went round +to them that lived by the river of Chobar who were there; and I sat there seven days, conversant in the midst of them. + +And after the seven days the word of the Lord came to me, saying, Son of man, + +I have made you a watchman to the house of Israel; and you shall hear a word of my mouth, and shall threaten them from me. + +When I say to the wicked, You shall surely die; and you have not warned him, to give warning to the wicked, to turn from his ways, that he should live; that wicked man shall die in his iniquity; but his blood will I require at your hand. + +But if you warn the wicked, and he turn not from his wickedness, and from his way, that wicked man shall die in his iniquity, and you shall deliver your soul. + +And when the righteous turns away from his righteousness, and commits a trespass, and I shall bring punishment before him, he shall die, because you did not warn him: he shall even die in his sins, because his righteousness shall not be remembered; but his blood will I require at your hand. + +But if you warn the righteous not to sin, and he sin not, the righteous shall surely live, because you have warned him; and you shall deliver your own soul. + +And the hand of the Lord came upon me; and he said to me, Arise, and go forth into the plain, and there shall you be spoken to. + +And I arose, and went forth to the plain: and, behold, the glory of the Lord stood there, according to the vision, and according to the glory of the Lord, which I saw by the river of Chobar: and I fell on my face. + +Then the Spirit came upon me, and set me on my feet, and spoke to me, and said to me, Go in, and shut yourself up in the midst of your house. + +And you, son of man, behold, bonds are prepared for you, and they shall bind you with them, and you shall not come forth of the midst of them. + +Also I will bind your tongue, and you shall be dumb, and shall not be to them a reprover: because it is a provoking house. + +But when I speak to you, I will open your mouth, and you shall say to them, Thus says the Lord, He that hears, let him hear; and he that is disobedient, let him be disobedient: because it is a provoking house. + +

+ + +

And you, son of man, take you a brick, and you shall set it before your face, and shall portray on it the city, +even Jerusalem. + +And you shall besiege it, and build works against it, and throw up a mound round about it, and pitch camps against it, and set up engines round about. + +And take you to yourself an iron pan, and you shall set it +for an iron wall between you and the city: and you shall set your face against it, and it shall be in a siege, and you shall besiege it. This is a sign to the children of Israel. + +And you shall lie upon your left side, and lay the iniquities of the house of Israel upon it, according to the number of the hundred and fifty days +during which you shall lie upon it: and you shall bear their iniquities. + +For I have appointed you their iniquities for a number of days, for one hundred and ninety days: so you shall bear the iniquities of the house of Israel. + +And you shall accomplish this, and +then shall lie on your right side, and shall bear the iniquities of the house of Juda forty days: I have appointed you a day for a year. + +So you shall set your face to the siege of Jerusalem, and shall strengthen your arm, and shall prophesy against it. + +And, behold, I have prepared bonds for you, land you may not turn from your one side to the other, until the days of your siege shall be accomplished. + +Take you also to you wheat, and barley, and beans, and lentils, and millet, and bread-corn; and you shall cast them into one earthen vessel, and shall make them into loaves for yourself; and you shall eat them one hundred and ninety days, according to the number of the days +during which you sleep on your side. + +And you shall eat your food by weight, twenty shekels a day: from time to time shall you eat them. + +And you shall drink water by measure, even from time to time you shall drink the sixth part of a hin. + +And you shall eat them +as a barley cake: you shall bake them before their eyes in man's dung. + +And you shall say, Thus says the Lord God of Israel; Thus shall the children of Israel eat unclean things among the Gentiles. + +Then I said, Not so, Lord God of Israel: surely my soul has not been defiled with uncleanness; nor have I eaten, that which died of itself or was torn of beasts from my birth until now; neither has any corrupt flesh entered into my mouth. + +And he said to me, Behold, I have given you dung of oxen instead of man's dung, and you shall prepare your loaves upon it. + +And he said to me, Son of man, behold, I break the support of bread in Jerusalem: and they shall eat bread by weight and in lack; and shall drink water by measure, and in a state of ruin: + +that they may lack bread and water; and a man and his brother shall be brought to ruin, and they shall pine away in their iniquities. + +

+ + +

And you, son of man, take you a sword sharper than a barber's razor; you shall procure it for yourself, and shall bring it upon your head, and upon your beard: and you shall take a pair of scales, and shall separate the hair. + +A fourth part you shall burn in the fire in the midst of the city, at the fulfillment of the days of the siege: and you shall take a fourth part, and burn it up in the midst of it: and a fourth part you shall cut with a sword round about it: and a fourth part you shall scatter to the wind; and I will draw out a sword after them. + +And you shall take thence a few in number, and shall wrap them in the fold of your garment. + +And you shall take of these again, and cast them into the midst of the fire, and burn them up with fire: from thence shall come forth fire; and you shall say to the whole house of Israel, + +Thus says the Lord; This is Jerusalem: I have set her and the countries round about her in the midst of the nations. + +And you shall declare my ordinances to the lawless one from out of the nations; and my statutes +to the sinful one of the countries round about her: because they have rejected my ordinances, and have not walked in my statutes. + +Therefore thus says the Lord, Because your occasion +for sin has been taken from the nations round about you, and you⌃ have not walked in my statutes, nor kept my ordinances, nay, you⌃ have not even done according to the ordinances of the nations round about you; therefore thus says the Lord; + +Behold, I am against you, and I will execute judgment in the midst of you in the sight of the nations. + +And I will do in you things which I have not done, and the like of which I will not do again, for all your abominations. + +Therefore the fathers shall eat +their children in the midst of you, and children shall eat +their fathers; and I will execute judgments in you, and I will scatter all that are left of you to every wind. + +Therefore, +as I live, says the Lord; surely, because you have defiled my holy things with all your abominations, I also will reject you; my eye shall not spare, and I will have no mercy. + +A fourth part of you shall be cut off by pestilence, and a fourth part of you shall be consumed in the midst of you with famine: and +as for another fourth part of you, I will scatter them to every wind; and a fourth part of you shall fall by sword round about you, and I will draw out a sword after them. + +And my wrath and my anger shall be accomplished upon them: and you shall know that I the Lord have spoken in my jealousy, when I have accomplished my anger upon them. + +And I will make you desolate, and your daughters round about you, in the sight of every one that passes through. + +And you shall be mourned over and miserable among the nations round about you, when I have executed judgments in you in the vengeance of my wrath. I the Lord have spoken. + +And when I have sent against them shafts of famine, then they shall be consumed, and I will break the strength of your bread. + +So I will send forth against you famine and evil beasts, and I will take vengeance upon you; and pestilence and blood shall pass through upon you; and I will bring a sword upon you round about. I the Lord have spoken. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, set your face against the mountains of Israel, and prophesy against them; + +and you shall say, You⌃ mountains of Israel, hear the word of the Lord; thus says the Lord to the mountains, and to the hills, and to the valleys, and to the forests; Behold, I bring a sword upon you, and your high places shall be utterly destroyed. + +And your altars shall be broken to pieces, and your consecrated plats; and I will cast down your slain +men before your idols. + +And I will scatter your bones round about your altars, + +and in all your habitations: the cities shall be made desolate, and the high places utterly laid waste; that your altars may be destroyed, and your idols be broken to pieces, and your consecrated plats be abolished. + +And slain +men shall fall in the midst of you, and you⌃ shall know that I am the Lord. + +When there are +some of you escaping from the sword among the Gentiles, and when you⌃ are scattered in the countries; + +then they of you that escape among the nations whither they were carried captive shall remember me; (I have sworn +an oath against their heart that goes a-whoring from me, and their eyes that go a-whoring after their practices;) and they shall mourn over themselves for all their abominations. + +And they shall know that I the Lord have spoken. + +Thus says the Lord; Clap with +your hand, and stamp with +your foot and say, Aha, aha! for all the abominations of the house of Israel: they shall fall by the sword, and by pestilence, and by famine. + +He that is near shall fall by the sword; and he that is far off shall die by the pestilence; and he that is in the siege shall be consumed with famine: and I will accomplish my anger upon them. + +Then you⌃ shall know that I am the Lord, when your slain are in the midst of your idols round about your altars, on every high hill, and under +every shady tree, where they offered a sweet savor to all their idols. + +And I will stretch out my hand against them, and I will make the land desolate and ruined from the wilderness of Deblatha, in all their habitations: +and you⌃ shall know that I am the Lord. + +

+ + +

Moreover the word of the Lord came to me, saying, Also, you, son of man, say, + +Thus says the Lord; An end is come to the land of Israel, the end is come on the four corners of the land. + +The end is come on you, + +the inhabitant of the land: the time is come, the day has drawn near, not with tumult, nor with pangs. + +Now I will pour out my anger upon you near at hand, and I will accomplish my wrath on you: and I will judge you for your ways, and recompense upon you all your abominations. + +My eye shall not spare, nor will I have any mercy: for I will recompense your ways upon you, and your abominations shall be in the midst of you; and you shall know that I am the Lord that strike +you. + +Now the end +is come to you, and I will send +judgment upon you: and I will take vengeance on your ways, and will recompense all your abominations upon you. + +My eye shall not spare, nor will I have any mercy: for I will recompense your way upon you, and your abominations shall be in the midst of you; and you shall know that I am the Lord. + +For thus says the Lord; Behold, the end is come. + +Behold, the day of the Lord! although the rod has blossomed, + +pride has sprung up, and will break the staff of the wicked one, and +that not with tumult, nor with haste. + +The time is come, behold the day: let not the buyer rejoice, and let not the seller mourn. + +For the buyer shall never again return to the seller, neither shall a man cleave with the eye +of hope to his life. + +Sound you⌃ the trumpet, and pass sentence on all together. + + +There shall be war with the sword without, and famine and pestilence within: he that is in the field shall die by the sword; and famine and pestilence shall destroy them that are in the city. + +But they that escape of them shall be delivered, and shall be upon the mountains: and I will kill all +the rest, every one for his iniquities. + +All hands shall be completely weakened, and all thighs shall be defiled with moisture. + +And they shall gird themselves with sackcloth, and amazement shall cover them; and shame shall be upon them, +even upon every face, and baldness upon every head. + +Their silver shall be cast forth in the streets, and their gold shall be despised: their souls shall not be satisfied, and their bellies shall not be filled: for it was the punishment of their iniquities. + + +As for their choice ornaments, they employed them for pride, and they made of them images of their abominations: therefore have I made them uncleanness to them. + +And I will deliver them into the hands of strangers to make them a prey, and to the pests of the earth for a spoil; and they shall profane them. + +And I will turn away my face from them, and they shall defile my charge, and shall go in to them unguardedly, and profane them. + +And they shall work uncleanness: because the land is full of strange nations, and the city is full of iniquity. + +And I will turn back the boasting of their strength; and their holy things shall be defiled. + +And +though propitiation shall come, and +one shall seek peace, yet there shall be none. + +There shall be woe upon woe, and there shall be message upon message; and a vision shall be sought from a prophet; but the law shall perish from the priest, and counsel from the elders. + +The prince shall clothe himself with desolation, and the hands of the people of the land shall be made feeble: I will do to them according to their ways, and according to their judgments will I punish them; and they shall know that I am the Lord. + +

+ + +

And it came to pass in the sixth year, in the fifth month, on the fifth +day of the month, I was sitting in the house, and the elders of Juda were sitting before me: and the hand of the Lord came upon me. + +And I looked, and, behold, the likeness of a man: from his loins and downwards +there was fire, and from his loins upwards +there was as the appearance of amber. + +And he stretched forth the likeness of a hand, and took me by the crown of my head; and the Spirit lifted me up between the earth and sky, and brought me to Jerusalem in a vision of God, to the porch of the gate that looks to the north, where was the pillar of the Purchaser. + +And, behold, the glory of the Lord God of Israel was there, according to the vision which I saw in the plain. + +And he said to me, Son of man, lift up your eyes toward the north. So I lifted up my eyes toward the north, and, behold, +I looked from the north toward the eastern gate. + +And he said to me, Son of man, have you seen what these do? They commit great abominations here so that I should keep away from my sanctuary: and you shall see yet greater iniquities. + +And he brought me to the porch of the court. + +And he said to me, Son of man, dig: so I dug, and behold a door. + +And he said to me, Go in, and behold the iniquities which they practise here. + +So I went in and looked; and saw vain abominations, and all the idols of the house of Israel, portrayed upon them round about. + +And seventy men of the elders of the house of Israel, and Jechonias the son of Saphan stood in their presence in the midst of them, and each one held his censer in his hand; and the smoke of the incense went up. + +And he said to me, You have seen, son of man, what the elders of the house of Israel do, each one of them in their secret chamber: because they have said, The Lord see not; The Lord has forsaken the earth. + +And he said to me, You shall see yet greater iniquities which these do. + +And he brought me in to the porch of the house of the Lord that looks to the north; and, behold +there were women sitting there lamenting for Thammuz. + +And he said to me, Son of man, you have seen; but you shall yet see +evil practices greater then these. + +And he brought me into the inner court of the house of the Lord, and at the entrance of the temple of the Lord, between the porch and the altar, were about twenty men, with their back parts toward the temple of the Lord, and their faces +turned the opposite way; and these were worshipping the sun. + +And he said to me, Son of man, you have seen this. +Is it a little thing to the house of Juda to practise the iniquities which they have practised here? for they have filled the land with iniquity: and, behold, these are as scorners. + +Therefore will I deal with them in wrath: my eye shall not spare, nor will I have any mercy. + +

+ + +

And he cried in my ears with a loud voice, saying, The judgment of the city has drawn near; and each had the weapons of destruction in his hand. + +And, behold, six men came from the way of the high gate that looks toward the north, and each one's axe was in his hand; and there was one man in the midst of them clothed with a long robe down to the feet, and a sapphire girdle was on his loins: and they came in and stood near the brazen altar. + +And the glory of the God of Israel, that was upon them, went up from the cherubs to the porch of the house. And he called the man that was clothed with the long robe, who had the girdle on his loins; + +And said to him, Go through the midst of Jerusalem, and set a mark on the foreheads of the men that groan and that grieve for all the iniquities that are done in the midst of them. + +And he said to the first in my hearing, Go after him into the city, and strike: and let not your eyes spare, and have no mercy. + +Slay utterly old man and youth, and virgin, and infants, and women: but go you⌃ not near any on whom is the mark: begin at my sanctuary. So they began with the elder men who were within in the house. + +And he said to them, Defile the house, and go out and fill the ways with dead bodies, and strike. + +And it came to pass as they were striking, that I fell upon my face, and cried out, and said, Alas, O Lord! will you destroy the remnant of Israel, in pouring out your wrath upon Jerusalem? + +Then said he to me, The iniquity of the house of Israel and Juda is become very exceedingly great: for the land is filled with many nations, and the city is filled with iniquity and uncleanness: because they have said, The Lord has forsaken the earth, The Lord looks not upon +it. + +Therefore my eye shall not spare, neither will I have any mercy: I have recompensed their ways upon their heads. + +And, behold, the man clothed with the long robe, and girded with the girdle about his loins, answered and said, I have done as you did command me. + +

+ + +

Then I looked, and, behold, over the firmament that was above the head of the cherubs +there was a likeness of a throne over them, as a sapphire stone. + +And he said to the man clothed with the +long robe, Go in between the wheels that are under the cherubs, and fill your hands with coals of fire from between the cherubs, and scatter +them over the city. And he went in my sight. + +And the cherubs stood on the right hand of the house, as the man went in; and the cloud filled the inner court. + +Then the glory of the Lord departed from the cherubs to the porch of the house; and the cloud filled the house, and the court was filled with the brightness of the glory of the Lord. + +And the sound of the cherubs' wings was heard as far as the outer court, as the voice of the Almighty God speaking. + +And it came to pass, when he gave a charge to the man clothed with the sacred robe, saying, Take fire from between the wheels from between the cherubs, that he went in, and stood near the wheels. + +And he stretched forth his hand into the midst of the fire that was between the cherubs, and took +thereof, and put +it into the hands of the man clothed with the sacred robe: and he took +it, and went out. + +And I saw the cherubs +having the likeness of men's hands under their wings. + +And I saw, and behold, four wheels stood by the cherubs, one wheel by each cherub: and the appearance of the wheels was as the appearance of a carbuncle stone. + +And +as for their appearance, +there was one likeness to the four, as if there should be a wheel in the midst of a wheel. + +When they went, they went on their four sides; they turned not when they went, for whichever way the first head looked, they went; and they turned not as they went. + +And their backs, and their hands, and their wings, and the wheels, were full of eyes round about the four wheels. + +And these wheels were called Gelgel in my hearing. + +And the cherubs were the same living creature which I saw by the river of Chobar. + +And when the cherubs went, the wheels went, and they were close to them: and when the cherubs lifted up their wings to mount up from the earth, their wheels turned not. + +When they stood, +the wheels stood; and when they mounted up, +the wheels mounted up with them: because the spirit of life was in them. + +Then the glory of the Lord departed from the house, and went up on the cherubs. + +And the cherubs lifted up their wings, and mounted up from the earth in my sight: when they went forth, the wheels were also beside them, and they stood at the entrance of the front gate of the house of the Lord; and the glory of the God of Israel was upon them above. + +This is the living creature which I saw under the God of Israel by the river of Chobar; and I knew that they were cherubs. + +Each one +had four faces, and each one +had eight wings; and under their wings was the likeness of men's hands. + +And +as for the likeness of their faces, these are the +same faces which I saw under the glory of the God of Israel by the river of Chobar: and they went each straight forward. + +

+ + +

Moreover the Spirit took me up, and brought me to the front gate of the house of the Lord, that looks eastward: and behold at the entrance of the gate were about five and twenty men; and I saw in the midst of them Jechonias the son of Ezer, and Phaltias the son of Banaeas, the leaders of the people. + +And the Lord said to me, Son of man, these are the men that devise vanities, and take evil counsel in this city: + +who say, Have not the houses been newly built? This is the caldron, and we are the flesh. + +Therefore prophesy against them, prophesy, son of man. + +And the Spirit of the Lord fell upon me, and said to me, say; Thus says the Lord; Thus have you⌃ said, O house of Israel: and I know the devices of your spirit. + +You⌃ have multiplied your dead in this city, and you⌃ have filled your ways with slain men. + +Therefore thus says the Lord; Your dead whom you⌃ have struck in the midst of it, these are the flesh, and thiscity is the caldron: but I will bring you forth out of the midst of it. + +You⌃ fear the sword; and I will bring a sword upon you, says the Lord. + +And I will bring you forth out of the midst of it, and will deliver you into the hands of strangers, and will execute judgments among you. + +You⌃ shall fall by the sword; I will judge you on the mountains of Israel; and you⌃ shall know that I am the Lord. + +And it came to pass, while I was prophesying, that Phaltias the son of Banaeas died. And I fell upon my face, and cried with a loud voice, and said, Alas, alas, O Lord! will you utterly destroy the remnant of Israel? + +And the word of the Lord came to me, saying, + +Son of man, your brethren, and the men of your captivity, and all the house of Israel are come to the full, to whom the inhabitants of Jerusalem said, Keep you⌃ far away from the Lord: the land is given to us for an inheritance. + +Therefore say you, Thus says the Lord; I will cast them off among the nations, and will disperse them into every land, yet will I be to them for a little sanctuary in the countries which they shall enter. + +Therefore say you, Thus says the Lord; I will also take them from the heathen, and gather them out of the lands wherein I have scattered them, and will give them the land of Israel. + +And they shall enter in there, and shall remove all the abominations of it, and all its iniquities from it. + +And I will give them another heart, and will put a new spirit within them; and will extract the heart of stone from their flesh, and give them a heart of flesh: + +that they may walk in my commandments, and keep my ordinances, and do them: and they shall be to me a people, and I will be to them a God. + +And as for the heart +set upon their abominations and their iniquities, as their heart went +after them, I have recompensed their ways on their heads, says the Lord. + +Then the cherubs lifted up their wings, and the wheels beside them; and the glory of the God of Israel was over them above. + +And the glory of the Lord went up from the midst of the city, and stood on the mountain which was in front of the city. + +And the Spirit took me up, and brought me to the land of the Chaldeans, to the captivity, in a vision by the Spirit of God: and I went up after the vision which I saw. + +And I spoke to the captivity all the words of the Lord which he had showed me. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, you dwell in the midst of the iniquities of those, who have eyes to see, and see not; and have ears to hear, and hear not: because it is a provoking house. + +You therefore, son of man, prepare yourself baggage for going into captivity by day in their sight; and you shall be led into captivity from your place into another place in their sight; that they may see that it is a provoking house. + +And you shall carry forth your baggage, baggage for captivity, by day before their eyes: and you shall go forth at even, as a captive goes forth, in their sight. + +Dig for yourself into the wall +of the house, and you shall pass through it in their sight: + +you shall be lifted up on +men's shoulders, and shall go forth in secret: you shall cover your face, and shall not see the ground: because I have made you a sign to the house of Israel. + +And I did thus according to all that he commanded me; and I carried forth my baggage for captivity by day, and in the evening I dug through the wall for myself, and went out secretly; I was taken up on +men's shoulders before them. + +And the word of the Lord came to me in the morning, saying, + +Son of man, have not the house of Israel, the provoking house, said to you, What do you? + +Say to them, Thus says the Lord God, the Prince and the Ruler in Israel, even to all the house of Israel who are in the midst of them: + +say, I am performing signs: as I have done, so shall it be to him: they shall go into banishment and captivity. + +And the prince in the midst of them shall be borne upon shoulders, and shall go forth in secret through the wall, and shall dig so that he may go forth thereby: he shall cover his face, that he may not be seen by +any eye, and he himself shall not see the ground. + +And I will spread out my net upon him, and he shall be caught in my toils: and I will bring him to Babylon to the land of the Chaldeans; but he shall not see it, though he shall die there. + +And I will scatter to every wind all his assistants round about him, and all that help him; and I will draw out a sword after them; + +And they shall know that I am the Lord, when I have scattered them among the nations; and I will disperse them in the countries. + +And I will leave of them +a few men in number +spared from the sword, and from famine, and pestilence; that they may declare all their iniquities among the nations whither they have gone; and they shall know that I am the Lord. + +And the word of the Lord came to me, saying, + +Son of man, eat your bread with sorrow, and drink +your water with torment and affliction. + +And you shall say to the people of the land, Thus says the Lord to the inhabitants of Jerusalem, on the land of Israel; They shall eat their bread in scarcity, and shall drink their water in desolation, that the land may be desolate with all that it contains: for all that dwell in it are ungodly. + +And their inhabited cities shall be laid utterly waste, and the land shall be desolate; and you⌃ shall know that I am the Lord. + +And the word of the Lord came to me, saying, + +Son of man, what is your parable on the land of Israel, that you⌃ say, The days are long, the vision has perished? + +Therefore say to them, Thus says the Lord; I will even set aside this parable, and the house of Israel shall no more at all use this parable: for you shall say to them, The days are at hand, and the import of every vision. + +For there shall no more be any false vision, nor any one prophesying flatteries in the midst of the children of Israel. + +For I the Lord will speak my words; I will speak and perform +them, and will no more delay, for in your days, O provoking house, I will speak the word, and will perform +it, says the Lord. + +Moreover the word of the Lord came to me, saying, + +Son of man, behold, the provoking house of Israel boldly say, The vision which this man sees is for many days, and he prophesies for times afar off. + +Therefore say to them, Thus says the Lord; Henceforth none of my words shall linger, which I shall speak: I will speak and do, says the Lord. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, prophesy against the prophets of Israel, and you shall prophesy, and shall say to them, Hear you⌃ the word of the Lord: + +Thus says the Lord, Woe to them that prophesy out of their own heart, and who see nothing at all. + +Your prophets, O Israel, are like foxes in the deserts. + +They have not continued steadfast, and they have gathered flocks against the house of Israel, they that say, + +In the day of the Lord, have not stood, seeing false +visions, prophesying vanities, who say, The Lord says, and the Lord has not sent them, and they began +to try to confirm the word. + +Have you⌃ not seen a false vision? and spoken vain prophecies? + +And therefore say, Thus says the Lord; Because your words are false, and your prophecies are vain, therefore, behold, I am against you, says the Lord. + +And I will stretch forth my hand against the prophets that see false +visions, and those that utter vanities: they shall not partake of the instruction of my people, neither shall they be written in the roll of the house of Israel, and they shall not enter into the land of Israel; and they shall know that I am the Lord. + +Because they have caused my people to err, saying, Peace; and there is no peace; and one builds a wall, and they plaster it, —it shall fall. + +Say to them that plaster +it, It shall fall; and there shall be a flooding rain; and I will send great stones upon their joinings, and they shall fall; and there shall be a sweeping wind, and it shall be broken. + +And behold! the wall has fallen; and will they not say to you, Where is your plaster wherewith you⌃ plastered +it? + +Therefore thus says the Lord; I will even cause to burst forth a sweeping blast with fury, and there shall be a flooding rain in my wrath; and in +my fury I will bring on great stones for complete destruction. + +And I will break down the wall which you⌃ have plastered, and it shall fall; and I will lay it on the ground, and its foundations shall be revealed, and it shall fall; and you⌃ shall be consumed with rebukes: and you⌃ shall know that I am the Lord. + +And I will accomplish my wrath upon the wall, and upon them that plaster it; it shall fall: and I said to you, The wall is not, nor they that plaster it, + +even the prophets of Israel, who prophesy concerning Jerusalem, and who see +visions of peace for her, and there is no peace, says the Lord. + +And you, son of man, set your face firmly against the daughters of your people, that prophesy out of their own heart; and prophesy against them. + +And you shall say, Thus says the Lord, Woe to the +women that sew pillows under every elbow, and make kerchiefs on the head of every stature to pervert souls! The souls of my people are perverted, and they have saved souls alive. + +And they have dishonored me before my people for a handful of barley, and for pieces of bread, to kill the souls which should not die, and to save alive the souls which should not live, while you⌃ speak to a people hearing vain speeches. + +Therefore thus says the Lord God, Behold, I am against your pillows, whereby you⌃ there confound souls, and I will tear them away from your arms, and will set at liberty their souls which you⌃ pervert to scatter them. + +And I will tear your kerchiefs, and will rescue my people out of your hands, and they shall no longer be in your hands to be confounded; and you⌃ shall know that I am the Lord. + +Because you⌃ have perverted the heart of the righteous, whereas I perverted him not, and +that in order to strengthen the hands of the wicked, that he should not at all turn from his evil way and live: + +therefore you⌃ shall not see false +visions, and you⌃ shall no more utter prophecies: but I will deliver my people out of your hand; and you⌃ shall know that I am the Lord. + +

+ + +

And there came to me men of the people of Israel, of the elders, and sat before me. + +And the word of the Lord came to me, saying, + +Son of man, these men have conceived their devices in their hearts, and have set before their faces the punishment of their iniquities: shall I indeed answer them? + +Therefore speak to them, and you shall say to them, Thus says the Lord; Any man of the house of Israel, who shall conceive his devices in his heart, and shall set the punishment of his iniquity before his face, and shall come to the prophet; I the Lord will answer him +according to the things in which his mind is entangled, + +that he should turn aside the house of Israel, according to their hearts that are estranged from me in their thoughts. + +Therefore say to the house of Israel, Thus says the Lord God, Be converted, and turn from your +evil practices, and from all your sins, and turn your faces back again. + +For any man of the house of Israel, or of the strangers that sojourn in Israel, who shall separate himself from me, and conceive his imaginations in his heart, and set before his face the punishment of his iniquity, and come to the prophet to enquire of him concerning me; I the Lord will answer him, +according to the things wherein he is entangled. + +And I will set my face against that man, and will make him desolate and ruined, and will cut him off from the midst of my people; and you⌃ shall know that I am the Lord. + +And if a prophet should cause to err and should speak, I the Lord have caused that prophet to err, and will stretch out my hand upon him, and will utterly destroy him from the midst of my people Israel. + +And they shall bear their iniquity according to the trespass of him that asks; and it shall be in like manner to the prophet according to the trespass: + +that the house of Israel may no more go astray from me, and that they may no more defile themselves with any of their transgressions: so shall they be my people, and I will be their God, says the Lord. + +And the word of the Lord came to me, saying, + +Son of man, if a land shall sin against me by committing a trespass, then will I stretch out my hand upon it, and will break its staff of bread, and will send forth famine upon it, and cut off from it man and beast. + +And though these three men should be in the midst of it, Noe, and Daniel, and Job, they +alone should be delivered by their righteousness, says the Lord. + +If again I bring evil beasts upon the land, and take vengeance upon it, and it be ruined, and there be no one to pass through for fear of the wild beasts: + +and +if these three men should be in the midst of it, +as I live, says the Lord, neither sons nor daughters shall be saved, but these only shall be saved, and the land shall be destroyed. + +Or again if I bring a sword upon that land, and say, Let the sword go through the land; and I cut off from them man and beast: + +though these three men were in the midst of it, as I live, says the Lord, they shall not deliver sons or daughters, but they only shall be saved themselves. + +Or +if again I send pestilence upon that land, and pour out my wrath upon it in blood, to destroy from off it man and beast: + +and should Noe, and Daniel, and Job, be in the midst of it, +as I live, says the Lord, there shall be left +them neither sons nor daughters; +only they by their righteousness shall deliver their souls. + +Thus says the Lord, And if I even send upon Jerusalem my four sore judgments, sword, and famine, and evil beasts, and pestilence, to destroy from out of it man and beast; + +yet, behold, +there shall be men left in it, the escaped thereof, who +shall lead forth of it sons and daughters: behold, they +shall go forth to you, and you⌃ shall see their ways and their thoughts: and you⌃ shall mourn over the evils which I have brought upon Jerusalem, +even all the evils which I have brought upon it. + +And they shall comfort you, because you⌃ shall see their ways and their thoughts: and you⌃ shall know that I have not done in vain all that I have done in it, says the Lord. + +

+ + +

And the word of the Lord came to me, saying, + +And you, son of man—of all the wood, of the branches that are among the trees of the forest, what shall be made of the wood of the vine? + +Will they take wood of it to make +it fit for work? will they take of it a peg to hang any vessel upon it? + +It is only given to the fire to be consumed; the fire consumes that which is yearly pruned of it, and it is utterly gone. Will it be useful for +any work? + +Not even while it is yet whole will it be +useful for +any work: if the fire shall have utterly consumed it, will it still be +fit for work? + +Therefore say, Thus says the Lord, As the vine tree among the trees of the forest, which I have given up to the fire to be consumed, so have I given up the inhabitants of Jerusalem. + +And I will set my face against them; they shall go forth of the fire, and +yet fire shall devour them; and they shall know that I am the Lord, when I have set my face against them. + +And I will give up the land to ruin, because they have utterly transgressed, says the Lord. + +

+ + +

Moreover the word of the Lord came to me, saying, + +Son of man, testify to Jerusalem +of her iniquities; + +and you shall say, Thus says the Lord to Jerusalem; Your root and your birth are of the land of Chanaan: your father was an Amorite, and your mother a Chettite. + +And +as for your birth in the day wherein you were born, you did not bind your breasts, and you were not washed in water, neither was you salted with salt, neither was you swathed in swaddling-bands. + +Nor did my eye pity you, to do for you one of all these things, to feel at all for you; but you were cast out on the face of the field, because of the deformity of your person, in the day wherein you were born. + +And I passed by to you, and saw you polluted in your blood; and I said to you, +Let there be life out of your blood: + +increase; I have made you as the springing grass of the field. So you did increase and grow, and did enter into great cities: your breasts were set, and your hair grew, whereas you were naked and bare. + +And I passed by you and saw you, and, behold, +it was your time and a time of resting; and I spread my wings over you, and covered your shame, and swear to you: and I entered into covenant with you, says the Lord, and you became mine. + +And I washed you in water, and washed your blood from you, and anointed you with oil. + +And I clothed you with embroidered +garments, and clothed you beneath with purple, and girded you with fine linen, and clothed you with silk, + +and decked you also with ornaments, and put bracelets on your hands, and a necklace on your neck. + +And I put a pendant on your nostril, and rings in your ears, and a crown of glory on your head. + +So you were adorned with gold and silver; and your raiment was of fine linen, and silk, and variegated work: you did eat fine flour, and oil, and honey, and did become extremely beautiful. + +And your name went forth among the nations for your beauty: because it was perfected with elegance, +and in the comeliness which I put upon you, says the Lord. + +You did trust in your beauty, and did go a-whoring because of your renown, and did pour out your fornication on every passer by. + +And you did take of your garments, and made to yourself idols of needlework, and did go a-whoring after them; therefore you shall never come in, nor shall +the like take place. + +And you took your fair ornaments of my gold and of my silver, of what I gave you, and you made to yourself male images, and you did commit whoredom with them. + +And you did take your variegated apparel and did clothe them, and you did set before them my oil and my incense. + +And +you took my bread which I gave you, (yes I fed you with fine flour and oil and honey) and did set them before them for a sweet smelling savor: yes, it was so, says the Lord. + +And you took your sons and your daughters, whom you bore, and did sacrifice +these to them to be destroyed. You did go a-whoring as +if that were little, + +and did kill your children, and gave them up in offering them to them for an expiation. + +This is beyond all your fornication, and you did not remember your infancy, when you were naked and bare, +and did live +though defiled in your blood. + +And it came to pass after all your wickedness, says the Lord, + +that you did build yourself a house of fornication, and did make yourself a public place in every street; + +and on the head of every way you did set up your fornications, and did defile your beauty, and did open your feet to every passer by, and did multiply your fornication. + +And you did go a-whoring after the children of Egypt your neighbors, great of flesh; and did go a-whoring, often to provoke me to anger. + +And if I stretch out my hand against you, then will I abolish your statutes, and deliver +you up to the wills of them that hate you, +even to the daughters of the Philistines that turned you aside from the way wherein you sinned. + +And you did go a-whoring to the daughters of Assur, and not even thus was you satisfied; yes, you did go a-whoring, and was not satisfied. + +And you did multiply your covenants with the land of the Chaldeans; and not even with these was you satisfied. + +Why should I make a covenant with your daughter, says the Lord, while you do all these things, the works of a harlot? and you have gone a-whoring in a threefold degree with your daughters. + +You have built a house of harlotry in every top of a way, and have set up your high place in every street; and you did become as a harlot gathering hires. + +An adulteress resembles you, taking rewards of her husband. + +She has even given rewards to all that went a-whoring after her, and you have given rewards to all your lovers, yes, you did load them with rewards, that they should come to you from every side for your fornication. + +And there has happened in you perverseness in your fornication beyond +other women, and they have committed fornication with you, in that you give hires over and above, and hires were not given to you; and +thus perverseness happened in you. + +Therefore, harlot, hear the word of the Lord: + +Thus says the Lord, Because you have poured forth your money, therefore your shame shall be revealed in your harlotry with your lovers, and +with regard to all the imaginations of your iniquities, and for the blood of your children which you have given to them. + +Therefore, behold, I +will gather all your lovers with whom you have consorted, and all whom you have loved, with all whom you did hate; and I will gather them against you round about, and will expose your wickedness to them, and they shall see all your shame. + +And I will be avenged on you with the vengeance of an adulteress, and I will bring upon you blood of fury and jealousy. + +And I will deliver you into their hands, and they shall break down your house of harlotry, and destroy your high place; and they shall strip you of your garments, and shall take your proud ornaments, and leave you naked and bare. + +And they shall bring multitudes upon you, and they shall stone you with stones, and pierce you with their swords. + +And they shall burn your houses with fire, and shall execute vengeance on you in the sight of many women: and I will turn you back from harlotry, and I will no more give +you rewards. + +So will I slacken my fury against you, and my jealousy shall be removed from you, and I will rest, and be no more careful +for you. + +Because you did not remember your infancy, and you did grieve me in all these things; therefore, behold, I have recompensed your ways upon your head, says the Lord: for thus have you wrought ungodliness above all your +other iniquities. + +These are all the things they have spoken against you in a proverb, saying, + +As is the mother, so is your mother's daughter: you are she that has rejected her husband and her children; and the sisters of your sisters have rejected their husbands and their children: your mother was a Chettite, and +your father an Amorite. + +Your elder sister who dwells on your left hand is Samaria, she and her daughters: and your younger sister, that dwells on the right hand, is Sodom and her daughters. + +Yet notwithstanding you have not walked in their ways, neither have you done according to their iniquities within a little, but you have exceeded them in all your ways. + + +As I live, says the Lord, this Sodom and her daughters have not done as you and your daughters have done. + +Moreover this was the sin of your sister Sodom, pride: she and her daughters lived in pleasure, in fullness of bread +and in abundance: this belonged to her and her daughters, and they helped not the hand of the poor and needy. + +And they boasted, and wrought iniquities before me: so I cut them off as I saw +fit. + +Also Samaria has not sinned according to half of your sins; but you have multiplied your iniquities beyond them, and you have justified your sisters in all your iniquities which you have committed. + +You therefore bear your punishment, for that you have corrupted your sisters by your sins which you have committed beyond them; and you have made them +appear more righteous than yourself: you therefore be ashamed, and bear your dishonor, in that you have justified your sisters. + +And I will turn their captivity, +even the captivity of Sodom and her daughters; and I will turn the captivity of Samaria and her daughters; and I will turn your captivity in the midst of them: + +that you may bear your punishment, and be dishonored for all that you have done in provoking me to anger. + +And your sister Sodom and her daughters shall be restored as they were at the beginning, and you and your daughters shall be restored as you⌃ were at the beginning. + +And surely your sister Sodom was not mentioned by your mouth in the days of your pride: + +before your wickedness was revealed, even now you are the reproach of the daughters of Syria, and of all that are round about her, +even of the daughters of the Philistines that compass you round about. + + +As for your ungodliness and your iniquities, you have borne them, says the Lord. + +Thus says the Lord; I will even do to you as you have done, as you have dealt shamefully in these things to transgress my covenant. + +And I will remember my covenant +made with you in the days of your infancy, and I will establish to you an everlasting covenant. + +Then you shall remember your way, and shall be utterly dishonored when you receive your elder sisters with your younger ones: and I will give them to you for building up, but not by your covenant. + +And I will establish my covenant with you; and you shall know that I am the Lord: + +that you may remember, and be ashamed, and may no more be able to open your mouth for your shame, when I am reconciled to you for all that you have done, says the Lord. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, relate a tale, and speak a parable to the house of Israel: + +and you shall say, Thus says the Lord; A great eagle with large wings, spreading them out very far, with many claws, which has the design of entering into Libanus—and he took the choice +branches of the cedar: + +he cropped off the ends of the tender twigs, and brought them into the land of Chanaan; he laid them up in a walled city. + +And he took of the seed of the land, and sowed it in a field planted by much water; he set it in a conspicuous place. + +And it sprang up, and became a weak and little vine, so that the branches thereof appeared +upon it, and its roots were under it: and it became a vine, and put forth shoots, and sent forth its tendrils. + +And there was another great eagle, with great wings and many claws: and, behold, this vine bent itself round toward him, and her roots +were turned towards him, and she sent forth her branches towards him, that +he might water her together with the growth of her plantation. + +She thrives in a fair field by much water, to produce shoots and bear fruit, that she might become a great vine. + +Therefore say, Thus says the Lord; Shall it prosper? shall not the roots of her tender stem and her fruit be blighted? yes, all her early shoots shall be dried up, and +that not by a mighty arm, nor by many people, to tear her up from her roots. + +And, behold, it thrives: shall it prosper? shall it not wither as soon as the east wind touches it? it shall be withered together with the growth of its shoots. + +Moreover the word of the Lord came to me saying, + +Son of man, say now to the provoking house, Know you⌃ not what these things were? say +to them, Whenever the king of Babylon shall come against Jerusalem, then he shall take her king and her princes, and shall take them home to Babylon. + +And he shall take of the seed royal, and shall make a covenant with him, and shall bind him with an oath: and he shall take the princes of the land: + +that it may become a weak kingdom, so as never to lift itself up, that he may keep his covenant, and establish it. + +And +if he shall revolt from him, to send his messengers into Egypt, that +they may give him horses and much people; shall he prosper? shall he that acts as an adversary be preserved? and shall he that transgresses the covenant be preserved? + + +As I live, says the Lord, verily in +the place where the king is that made him king, who dishonored my oath, and who broke my covenant, shall he die with him in the midst of Babylon. + +And Pharaoh shall make war upon him not with a large force or great multitude, in throwing up a mound, and in building of forts, to cut off souls. + +Whereas he has profaned the oath so as to break the covenant, when, behold, I engage his hand, and he has done all these things to him, he shall not escape. + +Therefore say, Thus says the Lord; +As I live, surely my oath which he has profaned, and my covenant which he has transgressed, I will even recompense it upon his head. + +And I will spread a net upon him, and he shall be caught in its snare. + +In every battle of his they shall fall by the sword, and I will scatter +his remnant to every wind: and you⌃ shall know that I the Lord have spoken it. + +For thus says the Lord; I will even take of the choice +branches of the cedar from the top +thereof, I will crop off their hearts, and I will plant it on a high mountain: + +and I will hang it on a lofty mountain of Israel: yes, I will plant it, and it shall put forth shoots, and shall bear fruit, and it shall be a great cedar: and every bird shall rest beneath it, even every fowl shall rest under its shadow: its branches shall be restored. + +And all the trees of the field shall know that I am the Lord that bring low the high tree, and exalt the low tree, and wither the green tree, and cause the dry tree to flourish: I the Lord have spoken, and will do +it. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, what mean you⌃ by this parable among the children of Israel, saying, The fathers have eaten unripe grapes, and the children's teeth have been set on edge? + + +As I live, says the Lord, surely this parable shall no more be spoken in Israel. + +For all souls are mine; as the soul of the father, so also the soul of the son, they are mine: the soul that sins, it shall die. + +But the man who shall be just, who executes judgment and righteousness, + +who shall not eat upon the mountains, and shall not at all lift up his eyes to the devices of the house of Israel, and shall not defile his neighbor's wife, and shall not draw near to her that is removed, + +and shall not oppress any man, +but shall return the pledge of the debtor, and shall be guilty of no plunder, shall give his bread to the hungry, and clothe the naked; + +and shall not lend his money upon usury, and shall not receive usurious increase, and shall turn back his hand from injustice, shall execute righteous judgment between a man and his neighbor, + +and has walked in my commandments and kept my ordinances, to do them; he is righteous, he shall surely live, says the Lord. + +And if he beget a mischievous son, shedding blood and committing sins, + +who has not walked in the way of his righteous father, but has even eaten upon the mountains, and has defiled his neighbor's wife, + +and has oppressed the poor and needy, and has committed robbery, and not restored a pledge, and has set his eyes upon idols, has wrought iniquities, + +has lent upon usury, and taken usurious increase; he shall by no means live: he has wrought all these iniquities; he shall surely die; his blood shall be upon him. + +And if he beget a son, and +the son see all his father's sins which he has wrought, and fear, and not do according to them, + +and +if he has not eaten on the mountains, and has not set his eyes on the devices of the house of Israel, and has not defiled his neighbor's wife, + +and has not oppressed a man, and has not retained the pledge, nor committed robbery, has given his bread to the hungry, and has clothed the naked, + +and has turned back his hand from unrighteousness, has not received interest or usurious increase, has wrought righteousness, and walked in my ordinances; he shall not die for the iniquities of his father, he shall surely live. + +But if his father grievously afflict, or plunder, he has wrought enmity in the midst of my people, and shall die in his iniquity. + +But you⌃ will say, Why has not the son borne the iniquity of the father? Because the son has wrought judgment and mercy, has kept all my statues, and done them, he shall surely live. + +But the soul that sins shall die: and the son shall not bear the iniquity of the father, nor shall the father bear the iniquity of the son: the righteousness of the righteous shall be upon him, and the iniquity of the transgressor shall be upon him. + +And if the transgressor turn away from all his iniquities which he has committed, and keep all my commandments, and do justice and mercy, he shall surely live, and shall by no means die. + +None of his trespasses which he has committed shall be remembers: in his righteousness which he has done he shall live. + +Shall I at all desire death of the sinner, says the Lord, as I +desire that he should turn from +his evil way, and live? + +But when the righteous man turns away from his righteousness, and commits iniquity, according to all the transgressions which the transgressor has wrought, none of his righteousness which he has wrought shall be at all remembered: in his trespass wherein he has trespassed, and in his sins wherein he has sinned, in them shall he die. + +Yet you⌃ have said, The way of the Lord is not straight. Hear now, all the house of Israel; will not my way be straight? Is your way straight? + +When the righteous turns away from his righteousness and commits a trespass, and dies in the trespass he has committed, he shall +even die in it. + +And when the wicked man turns away from his wickedness that he has committed, and shall do judgment and justice, he has kept his soul, + +and has turned away from all his ungodliness which he has committed: he shall surely live, he shall not die. + +Yet the house of Israel say, The way of the Lord is not right. Is not my way right, O house of Israel? is not your way wrong? + +I will judge you, O house of Israel, says the Lord, each one according to his way: be converted, and turn from all your ungodliness, and it shall not become to you the punishment of iniquity. + +Cast away from yourselves all your ungodliness wherein you⌃ have sinned against me; and make to yourselves a new heart and a new spirit: for why should you⌃ die, O house of Israel? + +For I desire not the death of him that dies, says the Lord. + +

+ + +

Moreover do you take up a lamentation for the prince of Israel, + +and say, Why is your mother become a whelp in the midst of lions? in the midst of lions she has multiplied her whelps. + +And one of her whelps sprang forth; he became a lion, and learned to take prey, he devoured men. + +And the nations heard a report of him; he was caught in their pit, and they brought him into the land of Egypt in chains. + +And she saw that he was driven away from her, +and her hope +of him perished, and she took another of her whelps; she made him a lion. + +And he went up and down in the midst of lions, he became a lion, and learned to take prey, he devoured men. + +And he prowled in his boldness and laid waste their cities, and made the land desolate, and the fullness of it, by the voice of his roaring. + +Then the nations set upon him from the countries round about, and they spread their nets upon him: he was taken in their pit. + +And they put him in chains and in a cage, +and he came to the king of Babylon; and he cast him into prison, that his voice should not be heard on the mountains of Israel. + +Your mother was as a vine and as a blossom on a pomegranate tree, planted by water: her fruit and her shoot abounded by reason of much water. + +And she became a rod for a tribe of princes, and was elevated in her bulk in the midst of +other trees, and she saw her bulk in the multitude of her branches. + +But she was broken down in wrath, she was cast upon the ground, and the east wind dried up her choice +branches: vengeance came upon them, and the rod of her strength was withered; fire consumed it. + +And now they have planted her in the wilderness, in a dry land. + +And fire is gone out of a rod of her choice +boughs, and has devoured her; and there was no rod of strength in her. Her race is become a parable of lamentation, and it shall be for a lamentation. + +

+ + +

And it came to pass in the seventh year, on the fifteenth day of the month, there came men of the elders of the house of Israel to enquire of the Lord, and they sat before me. + +And the word of the Lord came to me, saying, + +Son of man, speak to the elders of the house of Israel, and you shall say to them, Thus says the Lord; Are you⌃ come to enquire of me? +As I live, I will not be enquired of by you, says the Lord. + +Shall I utterly take vengeance on them, son of man? testify to them of the iniquities of their fathers: + +and you shall say to them, Thus says the Lord; From the day that I chose the house of Israel, and became known to the seed of the house of Jacob, and was known to them in the land of Egypt, and helped them with my hand, saying, I am the Lord your God; + +in that day I helped them with my hand, to bring them out of the land of Egypt into the land which I prepared for them, a land flowing with milk and honey, it is abundant beyond every land. + +And I said to them, Let every one cast away the abominations of his eyes, and defile not yourselves with the devices of Egypt: I am the Lord your God. + +But they revolted from me, and would not listen to me: they cast not away the abominations of their eyes, and forsook not the devices of Egypt: then I said that I would pour out my wrath upon them, to accomplish my wrath upon them in the midst of Egypt. + +But I wrought +so that my name should not be at all profaned in the sight of the Gentiles, in the midst of whom they are, among whom I was made known to them in their sight, to bring them out of the land of Egypt. + +And I brought them into the wilderness. + +And I gave them my commandments, and made known to them my ordinances, all which +if a man shall do, he shall even live in them. + +And I gave them my sabbaths, that they should be for a sign between me and them, that they should know that I am the Lord that sanctify them. + +And I said to the house of Israel in the wilderness, Walk you⌃ in my commandments: but they walked not +in them, and they rejected my ordinances, which +if a man shall do, he shall even live in them; and they grievously profaned my sabbaths: and I said that I would pour out my wrath upon them in the wilderness, to consume them. + +But I wrought +so that my name should not be at all profaned before the Gentiles, before whose eyes I brought them out. + +But I lifted up my hand against them in the wilderness once for all, that I would not bring them into the land which I gave them, a land flowing with milk and honey, it is sweeter than all lands: + +because they rejected my ordinances, and walked not in my commandments, but profaned my sabbaths, and went after the imaginations of their hearts. + +Yet my eyes spared them, so as +not to destroy them utterly, and I did not make an end of them in the wilderness. + +And I said to their children in the wilderness, Walk not you⌃ in the customs of your fathers, and keep not their ordinances, and have no fellowship with their practices, nor defile yourselves +with them. + +I +am the Lord your God; walk in my commandments, and keep my ordinances, and do them; + +and hallow my sabbaths, and let them be a sign between me and you, that you⌃ may know that I am the Lord your God. + +But they provoked me, and their children walked not in my commandments, and they took no heed to my ordinances to do them, which +if a man shall do, he shall even live in them, and they profaned my sabbaths: then I said that I would pour out my wrath upon them in the wilderness, to accomplish my anger upon them. + +But I wrought so that my name might not be at all profaned before the Gentiles; and I brought them out in their sight. + +I lifted up my hand against them in the wilderness, that I would scatter them among the Gentiles, +and disperse them in the countries; + +because they kept not my ordinances, and rejected my commandments, and profaned my sabbaths, and their eyes went after the imaginations of their fathers. + +So I gave them commandments +that were not good, and ordinances in which they should not live. + +And I will defile them by their +own decrees, when I pass through upon every one that opens the womb, that I may destroy them. + +Therefore, son of man, speak to the house of Israel, and you shall say to them, Thus says the Lord: Hitherto have your fathers provoked me in their trespasses in which they transgressed against me. + +Whereas I brought them into the land concerning which I lifted up my hand to give it them; and they looked upon every high hill, and every shady tree, and they sacrificed there to their gods, and offered there sweet smelling savor, and there they poured out their drink-offerings. + +And I said to them, What is Abama, that you⌃ go in there? and they called its name Abama, until this day. + +Therefore say to the house of Israel, Thus says the Lord, Do you⌃ pollute yourselves with the iniquities of your fathers, and do you⌃ go a-whoring after their abominations, + +and +do you⌃ pollute yourselves with the first fruits of your gifts, in the offerings wherewith you⌃ pollute yourselves in all your imaginations, until this day; and shall I answer you, O house of Israel? +As I live, says the Lord, I will not answer you, neither shall this thing come upon your spirit. + +And it shall not be as you⌃ say, We will be as the nations, and as the tribes of the earth, to worship stocks and stones. + +Therefore, +as I live, says the Lord, I will reign over you with a strong hand, and with a high arm, and with outpoured wrath: + +I will bring you out from the nations, and will take you out of the lands wherein you⌃ were dispersed, with a strong hand, and with a high arm, and with outpoured wrath. + +And I will bring you into the wilderness of the nations, and will plead with you there face to face. + +As I pleaded with your fathers in the wilderness of the land of Egypt, so will I judge you, says the Lord. + +And I will cause you to pass under my rod, and I will bring you in by number. + +And I will separate from among you the ungodly and the revolters; for I will lead them forth out of their place of sojourning, and they shall not enter into the land of Israel: and you⌃ shall know that I am the Lord, +even the Lord. + +And +as to you, O house of Israel, thus says the Lord, +even the Lord; Put away each one his +evil practices, and hereafter if you⌃ listen to me, then shall you⌃ no more profane my holy name by your gifts and by devices. + +For upon my holy mountain, on the high mountain, says the Lord, +even the Lord, there shall all the house of Israel serve me for ever: and there will I accept +you, and there will I have respect to your first fruits, and the first fruits of your offerings, in all your holy things. + +I will accept you with a sweet smelling savor, when I bring you out from the nations, and take you out of the countries wherein you⌃ have been dispersed; and I will be sanctified among you in the sight of the nations. + +And you⌃ shall know that I am the Lord, when I have brought you into the land of Israel, into the land concerning which I lifted up my hand to give it to your fathers. + +And you⌃ shall there remember your ways, and your devices wherewith you⌃ defiled yourselves; and you⌃ shall bewail yourselves for all your wickedness. + +And you⌃ shall know that I am the Lord, when I have done thus to you, that my name may not be profaned in your evil ways, and in your corrupt devices, says the Lord. + +And the word of the Lord came to me, saying, + +Son of man, set your face against Thaeman, and look toward Darom, and prophesy against the chief forest of Nageb, + +and you shall say to the forest of Nageb, Hear the word of the Lord; thus says the Lord, +even the Lord; Behold, I +will kindle a fire in you, and it shall devour in you every green tree, and every dry tree: the flame that is kindled shall not be quenched, and every face shall be scorched with it from the south to the north. + +And all flesh shall know that I the Lord have kindled it: it shall not be quenched. + +And I said, Not so, O Lord God! they say to me, Is not this that is spoken a parable? + +

+ + +

And the word of the Lord came to me, saying, + +Therefore prophesy, son of man, set your face steadfastly toward Jerusalem, and look toward their holy places, and you shall prophesy against the land of Israel, + +and you shall say to the land of Israel, Thus says the Lord; Behold, I am against you, and I will draw forth my sword out of its sheath, and I will destroy out of you the transgressor and unrighteous. + +Because I will destroy out of you the unrighteous and the transgressor, +therefore so shall my sword come forth out of its sheath against all flesh from the south to the north: + +and all flesh shall know that I the Lord have drawn forth my sword out of its sheath: it shall not return any more. + +And you, son of man, groan with the breaking of your loins; you shall even groan heavily in their sight. + +And it shall come to pass, if they shall say to you, Therefore do you groan? that you shall say, For the report; because it comes: and every heart shall break, and all hands shall become feeble, and all flesh and every spirit shall faint, and all thighs shall be defiled with moisture: behold, it comes, says the Lord. + +And the word of the Lord came to me, saying, + +Son of man, prophesy, and you shall say, Thus says the Lord; Say, Sword, sword, be sharpened and rage, + +that you may kill victims; be sharpened that you may be bright, ready for slaughter, kill, set at nothing, despise every tree. + +And he made it ready for his hand to hold: the sword is sharpened, it is ready to put into the hand of the slayer. + +Cry out and howl, son of man: for this +sword is come upon my people, this +sword is come upon all the princes of Israel: they shall be as strangers: +judgment with the sword is come upon my people: therefore clap your hands, for sentence has been passed: + +and what if even the tribe be rejected? it shall not be, says the Lord God. + +And you, son of man, prophesy, and clap your hands, and take a second sword: the third sword is +the sword of the slain, the great sword of the slain: and you shall strike them with amazement, lest the heart should faint + +and the weak ones be multiplied at every gate—they are given up to the slaughter of the sword: it is well fitted for slaughter, it is well fitted for glittering. + +And do you go on, sharpen yourself on the right and on the left wherever your face may set itself. + +And I also will clap my hands, and let loose my fury: I the Lord have spoken +it. + +And the word of the Lord came to me, saying, + +and you, son of man, appoint you two ways, that the sword of the king of Babylon may enter in: the two shall go forth of one country; and +there shall be a force at the top of the way of the city, you shall set +it at the top of the way, + +that the sword may enter in upon Rabbath of the children of Ammon, and upon Judea, and upon Jerusalem in the midst thereof. + +For the king of Babylon shall stand on the old way, at the head of the two ways, to use divination, to make bright the arrow, and to enquire of the graven images, and to examine +the victims. + +On his right was the divination against Jerusalem, to cast a mound, to open the mouth in shouting, to lift up the voice with crying, to cast a mound against her gates, to cast up a heap, and to build forts. + +And he was to them as one using divination before them, and he himself recounting his iniquities, that they might be borne in mind. + +Therefore thus says the Lord, Because you⌃ have caused your iniquities to be remembered, in the discovery of your wickedness, so that your sins should be seen, in all your wickedness and in your +evil practices; because you⌃ have caused remembrance +of them, in these shall you⌃ be taken. + +And you profane wicked prince of Israel, whose day, +even an end, is come in a sea of iniquity, thus says the Lord; + +You have taken off the mitre and put on the crown, it shall not have such +another after it: you have abased that which was high, and exalted that which was low. + +Injustice, injustice, injustice, will I make it: woe to it: such shall it be until he comes to whom it belongs; and I will deliver +it to him. + +And you, son of man, prophesy, and you shall say, Thus says the Lord, concerning the children of Ammon, and concerning their reproach; and you shall say, O sword, sword, drawn for slaughter, and drawn for destruction, awake, that you may gleam. + +While you are seeing vain +visions, and while you are prophesying falsehoods, to bring yourself upon the necks of ungodly transgressors, the day is come, +even an end, in a season of iniquity. + +Turn, rest not in this place wherein you were born: in your own land will I judge you. + +And I will pour out my wrath upon you, I will blow upon you with the fire of my wrath, and I will deliver you into the hands of barbarians skilled in working destruction. + +You shall be fuel for fire; your blood shall be in the midst of your land; there shall be no remembrance at all of you: for I the Lord have spoken +it. + +

+ + +

And the word of the Lord came to me, saying, + +And you, son of man, will you judge the bloody city? yes, declare you to her all her iniquities. + +And you shall say, Thus says the Lord God: O city that sheds blood in the midst of her, so that her time should come, and that forms devices against herself, to defile herself; + +in their blood which you have shed, you have transgressed; and in your devices which you have formed, you have polluted yourself; and you have brought near your days, and have brought on the time of your years: therefore have I made you a reproach to the Gentiles, and a mockery to all the countries, + +to those near you, and to those far distant from you; and they shall mock you, +you that are notoriously unclean, and abundant in iniquities. + +Behold, the princes of the house of Israel have conspired in you each one with his kindred, that they might shed blood. + +In you they have reviled father and mother; and in you they have behaved unjustly toward the stranger: they have oppressed the orphan and widow. + +And they have set at nothing my holy things, and in you they have profaned my sabbaths. + + +There are robbers in you, to shed blood in you; and in you they have eaten upon the mountains: they have wrought ungodliness in the midst of you. + +In you they have uncovered the father's shame; and in you they have humbled her that was set apart for uncleanness. + +They have dealt unlawfully each one with his neighbor's wife; and each one in ungodliness has defiled his daughter-in-law: and in you they have humbled each one his sister, the daughter of his father. + +In you they have received gifts to shed blood; they have received in you interest and usurious increase; and by oppression you have brought your wickedness to the full, and have forgotten me, says the Lord. + +And if I shall strike my hand at +your iniquities which you have accomplished, which you have wrought, and at your blood that has been shed in the midst of you, + +shall your heart endure? shall your hands be strong in the days which I bring upon you? I the Lord have spoken, and will do +it. + +And I will scatter you among the nations, and disperse you in the countries, and your uncleanness shall be removed out of you. + +And I will give heritages in you in the sight of the nations, and you⌃ shall know that I am the Lord. + +And the word of the Lord came to me, saying, + +Son of man, behold, the house of Israel are all become to me +as it were mixed with brass, and iron, and tin, and lead; they are mixed up in the midst of the silver. + +Therefore say, Thus says the Lord God; Because you⌃ have become one mixture, therefore I will gather you into the midst of Jerusalem. + +As silver, and brass, and iron, and tin, and lead, are gathered into the midst of the furnace, to blow fire into it, that they may be melted: so will I take +you in my wrath, and I will gather and melt you. + +And I will blow upon you in the fire of my wrath, and you⌃ shall be melted in the midst thereof. + +As silver is melted in the midst of a furnace, so shall you⌃ be melted in the midst thereof; and you⌃ shall know that I the Lord have poured out my wrath upon you. + +And the word of the Lord came to me, saying, + +Son of man, say to her, You are the land that is not rained upon, neither has rain come upon you in the day of wrath; + +whose princes in the midst of her are as roaring lions seizing prey, devouring souls by oppression, and taking bribes; and your widows are multiplied in the midst of you. + +Her priests also have set at nothing my law, and profaned my holy things: they have not distinguished between the holy and profane, nor have they distinguished between the unclean and the clean, and have hid their eyes from my sabbaths, and I was profaned in the midst of them. + +Her princes in the midst of her are as wolves ravening to shed blood, that they may get dishonest gain. + +And her prophets that daub them shall fall, that see vanities, that prophesy falsehoods, saying, Thus says the Lord, when the Lord has not spoken. + +That sorely oppress the people of the land with injustice, and commit robbery; oppressing the poor and needy, and not dealing justly with the stranger. + +And I sought from among them a man behaving uprightly, and standing before me perfectly in the time of wrath, so that I should not utterly destroy her: but I found +him not. + +So I have poured out my wrath upon her in the fury of my anger, to accomplish +it. I have recompensed their ways on their own heads, says the Lord God. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, there were two women, daughters of one mother: + +and they went a-whoring in Egypt in their youth: there their breasts fell, there they lost their virginity. + +And their names were Oola the elder, and Ooliba her sister: and they were mine, and bore sons and daughters: and +as for their names, Samaria was Oola, and Jerusalem was Ooliba. + +And Oola went a-whoring from me, and doted on her lovers, on the Assyrians that were her neighbors, + +clothed with purple, princes and captains; +they were young men and choice, all horseman riding on horses. + +And she bestowed her fornication upon them; all were choice sons of the Assyrians: and on whoever she doted herself, with them she defiled herself in all +their devices. + +And she forsook not her fornication with the Egyptians: for in her youth they committed fornication with her, and they deflowered her, and poured out their fornication upon her. + +Therefore I delivered her into the hands of her lovers, into the hands of the children of the Assyrians, on whom she doted. + +They uncovered her shame: they took her sons and daughters, and killed her with the sword: and she became a byword among women: and they wrought vengeance in her for the sake of the daughters. + +And her sister Ooliba saw +it, and she indulged in her fondness more corruptly than she, and in her fornication more than the fornication of her sister. + +She doted upon the sons of the Assyrian, princes and captains, her neighbors, clothed with fine linen, horsemen riding on horses; +they were all choice young men. + +And I saw that they were defiled, +that the two +had one way. + +And she increased her fornication, and she saw men painted on the wall, likenesses of the Chaldeans painted with a pencil, + +having variegated girdles on their loins, having also richly dyed +attire upon their heads; all had a princely appearance, the likeness of the children of the Chaldeans, of their native land. + +And she doted upon them as soon as she saw them, and sent forth messengers to them into the land of the Chaldeans. + +And the sons of Babylon came to her, into the bed of rest, and they defiled her in her fornication, and she was defiled by them, and her soul was alienated from them. + +And she exposed her fornication, and exposed her shame: and my soul was alienated from her, even as my soul was alienated from her sister. + +And you did multiply your fornication, so as to call to remembrance the days of your youth, wherein you did commit whoredom in Egypt, + +and you did dote upon the Chaldeans, whose flesh is as the flesh of the asses, and their members +as the members of horses. + +And you did look upon the iniquity of your youth, +the things which you wrought in Egypt in your lodgings, where were the breasts of your youth. + +Therefore, Ooliba, thus says the Lord; Behold, I +will stir up your lovers against you, from whom your soul is alienated, and I will bring them upon you round about, + +the children of Babylon, and all the Chaldeans, Phacuc, and Sue, and Hychue, and all the sons of the Assyrians with them; choice young men, governors and captains, all princes and renowned, riding on horses. + +And they all shall come upon you from the north, chariots and wheels, with a multitude of nations, shields and targets; and +the enemy shall set a watch against you round about: and I will set judgment before them, and they shall take vengeance on you with their judgments. + +And I will bring upon you my jealousy, and they shall deal with you in great wrath: they shall take away your nose and your ears; and shall cast down your remnant with the sword: they shall take your sons and your daughters; and your remnant fire shall devour. + +And they shall strip you of your raiment, and take +away your ornaments. + +So I will turn back your ungodliness from you, and your fornication from the land of Egypt: and you shall not lift up your eyes upon them, and shall no more remember Egypt. + +Therefore thus says the Lord God; Behold, I +will deliver you into the hands of those whom you hate, from whom your soul is alienated. + +And they shall deal with you in hatred, and shall take all +the fruits of your labors and your toils, and you shall be naked and bare: and the shame of your fornication shall be exposed: and your ungodliness and your fornication + +brought this upon you, in that you went a-whoring after the nations, and did defile yourself with their devices. + +You did walk in the way of your sister; and I will put her cup into your hands. + +Thus says the Lord; Drink your sister's cup, deep and large, and full, to cause complete drunkenness. + +And you shall be thoroughly weakened; and the cup of destruction, the cup of your sister Samaria, + +drink you it, and I will take away her feasts and her new moons: for I have spoken +it, says the Lord. + +Therefore thus says the Lord; Because you have forgotten me, and cast me behind your back, therefore receive you +the reward of your ungodliness and your fornication. + +And the Lord said to me, Son of man, will you not judge Oola and Ooliba? and declare to them their iniquities? + +For they have committed adultery, and blood was in their hands, they committed adultery with their devices, and they passed through the fire to them their children which they bore to me. + +So long too as they did these things to me, they defiled my sanctuary, and profaned my sabbaths. + +And when they sacrificed their children to their idols, they also went into my sanctuary to profane it: and whereas they did thus in the midst of my house; + +and whereas they did thus to the men that came from afar, to whom they sent messengers, and as soon as they came, immediately you did wash yourself, and did paint your eyes and adorn yourself with ornaments, + +and sat on a prepared bed, and before it +there was a table set out, and +as for my incense and my oil, they rejoiced in them, + +and they raised a sound of music, and +that with men coming from the wilderness out of a multitude of men, and they put bracelets on their hands, and a crown of glory on their heads; + +Therefore I said, Do they not commit adultery with these? and has she also gone a-whoring +after the manner of a harlot? + +And they went in to her, as +men go in to a harlot; so they went in to Oola and to Ooliba to work iniquity. + +And they are just men, and shall take vengeance on them with the judgment of an adulteress and the judgment of blood: for they are adulteresses, and blood is in their hands. + +Thus says the Lord God, Bring up a multitude upon them, and send trouble and plunder into the midst of them. + +And stone them with the stones of a multitude, and pierce them with their swords: they shall kill their sons and their daughters, and shall burn up their houses. + +And I will remove ungodliness out of the land, and all the women shall be instructed, and shall not do according to their ungodliness. + +And your ungodliness shall be recompensed upon you, and you⌃ shall bear the guilt of your devices: and you⌃ shall know that I am the Lord. + +

+ + +

And the word of the Lord came to me, in the ninth year, in the tenth month, on the tenth +day of the month, saying, + +Son of man, write for yourself daily from this day, on which the king of Babylon set himself against Jerusalem, +even from this day. + +And speak a parable to the provoking house, and you shall say to them, Thus says the Lord; Set on the caldron, and pour water into it: + +and put the pieces into it, every prime piece, the leg and shoulder taken off from the bones, + + +which are taken from choice cattle, and burn the bones under them: her bones are boiled and cooked in the midst of her. + +Therefore thus says the Lord; O bloody city, the caldron in which there is scum, and the scum has not gone out of, she has brought it forth piece by piece, no lot has fallen upon it. + +For her blood is in the midst of her; I have set it upon a smooth rock: I have not poured it out upon the earth, so that the earth should cover it; + +that my wrath should come up for complete vengeance to be taken: I set her blood upon a smooth rock, so as not to cover it. + +Therefore thus says the Lord, I will also make the firebrand great, + +and I will multiply the wood, and kindle the fire, that the flesh may be consumed, and the liquor boiled away; + +and that +it may stand upon the coals, that her brass may be thoroughly heated, and be melted in the midst of her filthiness, and her scum may be consumed, + +and her abundant scum may not come forth of her. + +Her scum shall become shameful, because you did defile yourself: and what if you shall be purged no more until I have accomplished my wrath? + +I the Lord have spoken; and it shall come, and I will do +it; I will not delay, neither will I have any mercy: I will judge you, says the Lord, according to your ways, and according to your devices: therefore will I judge you according to your bloodshed, and according to your devices will I judge you, you unclean, notorious, and abundantly provoking one. + +And the word of the Lord came to me, saying, + +Son of man, behold I take from you the desire of your eyes by violence: you shall not lament, neither shall you weep. + +You shall groan for blood, and have mourning upon your loins; your hair shall not be braided upon you, and your sandals +shall be on your feet; you shall in no wise be comforted by their lips, and you shall not eat the bread of men. + +And I spoke to the people in the morning, as he commanded me in the evening, and I did in the morning as it was commanded me. + +And the people said to me, Will you not tell us what these things are that you do? + +Then I said to them, The word of the Lord came to me, saying, + +Say to the house of Israel, Thus says the Lord; Behold, I +will profane my sanctuary, the boast of your strength, the desire of your eyes, and for which your souls are concerned; and your sons and your daughters, whom you⌃ have left, shall fall by the sword. + +And you⌃ shall do as I have done: you⌃ shall not be comforted at their mouth, and you⌃ shall not eat the bread of men. + +And your hair +shall be upon your head, and your shoes on your feet: neither shall you⌃ at all lament or weep; but you⌃ shall pine away in your iniquities, and shall comfort every one his brother. + +And Jezekiel shall be for a sign to you: according to all that I have done shall you⌃ do, when these things shall come; and you⌃ shall know that I am the Lord. + +And you, son of man, +shall it not +be in the day when I take their strength from them, the pride of their boasting, the desires of their eyes, and the pride of their soul, their sons and their daughters, + +that in that day he that escapes shall come to you, to tell +it you in your ears? + +In that day your mouth shall be opened to him that escapes; you shall speak, and shall be no longer dumb: and you shall be for a sign to them, and they shall know that I am the Lord. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, set your face steadfastly against the children of Ammon, and prophesy against them; + +and you shall say to the children of Ammon, Hear you⌃ the word of the Lord; thus says the Lord; Forasmuch as you⌃ have rejoiced against my sanctuary, because it was profaned; and against the land of Israel, because it was laid waste; and against the house of Juda, because they went into captivity; + +therefore, behold, I +will deliver you to the children of Kedem for an inheritance, and they shall lodge in you with their stuff, and they shall pitch their tents in you: they shall eat your fruits, and they shall drink your milk. + +And I will give up the city of Ammon for camels' pastures, and the children of Ammon for a pasture of sheep: and you⌃ shall know that I am the Lord. + +For thus says the Lord; Because you have clapped your hands, and stamped with your foot, and heartily rejoiced against the land of Israel; + +therefore I will stretch out my hand against you, and I will make you a spoil to the nations; and I will utterly destroy you from among the peoples, and I will completely cut you off from out of the countries: and you shall know that I am the Lord. + +Thus says the Lord; Because Moab has said, Behold, are not the house of Israel and Juda like all the +other nations? + +Therefore, behold, I will weaken the shoulder of Moab from his frontier cities, +even the choice land, the house of Bethasimuth above the fountain of the city, by the sea-side. + +I have given him the children of Kedem in addition to the children of Ammon for an inheritance, that there may be no remembrance of the children of Ammon. + +And I will execute vengeance on Moab; and they shall know that I am the Lord. + +Thus says the Lord; Because of what the Idumeans have done in taking vengeance on the house of Juda, and +because they have remembered injuries, and have exacted full recompense; + +therefore thus says the Lord; I will also stretch out my hand upon Idumea, and will utterly destroy out of it man and beast; and will make it desolate; and they that are pursued out of Thaeman shall fall by the sword. + +And I will execute my vengeance on Idumea by the hand of my people Israel: and they shall deal in Idumea according to my anger and according to my wrath, and they shall know my vengeance, says the Lord. + +Therefore thus says the Lord, Because the Philistines have wrought revengefully, and raised up vengeance rejoicing from their heart to destroy +the Israelites to a man; + +therefore thus says the Lord; Behold, I +will stretch out my hand upon the Philistines, and will utterly destroy the Cretans, and will cut off the remnant that dwell by the sea-coast. + +And I will execute great vengeance upon them; and they shall know that I am the Lord, when I have brought my vengeance upon them. + +

+ + +

And it came to pass in the eleventh year, on the first +day of the month, +that the word of the Lord came to me, saying, + +Son of man, because Sor has said against Jerusalem, Aha, she is crushed: the nations are destroyed: she is turned to me: she that was full is made desolate: + +therefore thus says the Lord; Behold, I am against you, O Sor, and I will bring up many nations against you, as the sea comes up with its waves. + +And they shall cast down the walls of Sor, and shall cast down your towers: and I will scrape her dust from off her, and make her a bare rock. + +She shall be in the midst of the sea a place for repairing nets: for I have spoken +it, says the Lord: and it shall be a spoil for the nations. + +And her daughters +which are in the field shall be slain with the sword, and they shall know that I am the Lord. + +For thus says the Lord; Behold, I +will bring up against you, O Sor, Nabuchodonosor king of Babylon from the north: he is a king of kings, with horses, and chariots, and horsemen, and a concourse of very many nations. + +He shall kill your daughters that are in the field with the sword, and shall set a watch against you, and build forts around you, and carry a rampart round against you, and set up warlike works, and array his spears against you. + +He shall cast down with his swords your walls and your towers. + +By reason of your multitude of his horses their dust shall cover you, and by reason of the sound of his horsemen and the wheels of his chariots the walls shall be shaken, when he enters into your gates, as one entering into a city from the plain. + +With the hoofs of his horses they shall trample all your streets: he shall kill your people with the sword, and shall bring down to the ground the support of your strength. + +And he shall prey upon your power, and plunder your substance, and shall cast down your walls, and break down your pleasant houses: and he shall cast your stones and your timber and your dust into the midst of your sea. + +And he shall destroy the multitude of your musicians, and the sound of your lutes shall be heard no more. + +And I will make you a bare rock: you shall be a place to spread nets upon; you shall be built no more: for I the Lord have spoken +it, says the Lord. + +For thus says the Lord God to Sor; Shall not the isles shake at the sound of your fall, while the wounded are groaning, while they have drawn a sword in the midst of you? + +And all the princes of the nations of the sea shall come down from their thrones, and shall take off their crowns from their heads, and shall take off their embroidered raiment: they shall be utterly amazed; they shall sit upon the ground, and fear their +own destruction, and shall groan over you. + +And they shall take up a lamentation for you, and shall say to you, How are you destroyed from out of the sea, the renowned city, that brought her terror upon all her inhabitants. + +And the isles shall be alarmed at the day of your fall. + +For thus says the Lord God; When I shall make the city desolate, as the cities that shall not be inhabited, when I have brought the deep up upon you, + +and great waters shall cover you; and I shall bring you down to them that go down to the pit, to the people of old time, and shall cause you to dwell in the depths of the earth, as in everlasting desolation, with them that go down to the pit, that you may not be inhabited, nor stand upon the land of life; + +I will make you a destruction, and you shall be no more for ever, says the Lord God. + +

+ + +

And the word of the Lord came to me saying, + +And you, son of man, take up a lamentation against Sor; + +and you shall say to Sor that dwells at the entrance of the sea, to the mart of the nations coming from many islands, Thus says the Lord to Sor; You have said, I have clothed myself with my beauty. + +In the heart of the sea your sons have put beauty upon you for Beelim. + +Cedar in Senir was employed for you in building: boards of cypress timber were taken out of Libanus, and wood to make you masts of fir. + +They made your oars +of wood out of the land of Basan; your sacred utensils they made of ivory, your shady houses of wood from the isles of Chetiim. + +Fine linen with embroidery from Egypt supplied the couch, to put honor upon you, and to clothe you with blue and purple from the isles of Elisai; and they became your coverings. + +And your princes were the dwellers in Sidon, and the Aradians were your rowers: your wise men, O Sor, who were in you, these were your pilots. + +The elders of the Biblians, and their wise men, who were in you, these helped your counsel: and all the ships of the sea and their rowers traded for you to the utmost west. + +Persians and Lydians and Libyans were in your army: your warriors hung in you shields and helmets; these gave +you your glory. + +The sons of the Aradians and your army were upon the walls; there were guards in your towers: they hung their quivers on your battlements round about; these completed your beauty. + +The Carthaginians were your merchants because of the abundance of all your strength; they furnished your market with silver, and gold, and iron, and tin, and lead. + +Greece, both the whole +world, and the adjacent coasts, these traded with you in the persons of men, and they gave +as your merchandise vessels of brass. + +Out of the house of Thogarma horses and horsemen furnished the market. + +The sons of the Rhodians were your merchants; from the islands they multiplied your merchandise, +even elephants' teeth: and to them that came in you did return your prices, + + +even men +as your merchandise, from the multitude of your trading +population, myrrh and embroidered works from Tharsis: Ramoth also and Chorchor furnished your market. + +Juda and the children of Israel, these were your merchants; in the sale of corn and ointments and cassia: and they gave the best honey, and oil, and resin, to your trading +population. + + +The people of Damascus were your merchants by reason of the abundance of all your power; wine out of Chelbon, and wool from Miletus; and they brought wine into your market. + +Out of Asel +came wrought iron, and there is the sound of wheels among your trading +population. + + +The people of Daedan were your merchants, with choice cattle for chariots. + +Arabia and all the princes of Kedar, these were your traders with you, +bringing camels, and lambs, and rams, in which they trade with you. + +The merchants of Sabba and Ramma, these were your merchants, with choice spices, and precious stones: and they brought gold to your market. + +Charra, and Chanaa, these were your merchants: Assur, and Charman, were your merchants: + +bringing +for merchandise blue, and choice stores bound with cords, and cypress wood. + +Ships were your merchants, in abundance, with your trading +population: and you were filled and very heavily loaded in the heart of the sea. + +Your rowers have brought you into great waters: the south wind has broken you in the heart of the sea. + +Your forces, and your gain, and that of your traders, and your rowers, and your pilots, and your counselors, and they that traffic with you, and all your warriors that are in you: and all your company in the midst of you shall perish in the heart of the sea, in the day of your fall. + +At the cry of your voice your pilots shall be greatly terrified. + +And all the rowers and the mariners shall come down from the ships, and the pilots of the sea shall stand on the land. + +And they shall wail over you with their voice, and cry bitterly, and put earth on their heads, and spread ashes under them. + +And their sons shall take up a +lament for you, even a lamentation for Sor, +saying, + +How large a reward have you gained from the sea? you have filled nations out of your abundance; and out of your mixed merchandise you have enriched all the kings of the earth. + +Now are you broken in the sea, your traders are in the deep water, and all your company in the midst of you: all your rowers have fallen. + +All the dwellers in the islands have mourned over you, and their kings have been utterly amazed, and their countenance has wept. + +Merchants from the nations have hissed at you; you are utterly destroyed, and shall not be any more for ever. + +

+ + +

And the word of the Lord came to me, saying, + +And you, son of man, say to the prince of Tyrus, Thus says the Lord; Because your heart has been exalted, and you have said, I am God, I have inhabited the dwelling of God in the heart of the sea; yet you are man and not God, though you have set your heart as the heart of God: + +are you wiser than Daniel? or have not the wise instructed you with their knowledge? + +Have you gained power for yourself by your +own knowledge or your +own prudence, and +gotten gold and silver in your treasures? + +By your abundant knowledge and your traffic you have multiplied your power; your heart has been lifted up by your power. + +Therefore thus says the Lord; Since you have set your heart as the hart of God; + +because of this, behold, I +will bring on you strange plagues from the nations; and they shall draw their swords against you, and against the beauty of your knowledge, + +and they shall bring down your beauty to destruction. And they shall bring you down; and you shall die the death of the slain in the heart of the sea. + +Will you indeed say, I am God, before them that kill you? whereas you are man, and not God. + +You shall perish by the hands of strangers among the multitude of the uncircumcised: for I have spoken it, says the Lord. + +And the word of the Lord came to me, saying, + +Son of man, take up a lamentation for the prince of Tyre, and say to him, Thus says the Lord God; You are a seal of resemblance, and crown of beauty. + +You were in the delight of the paradise of God; you have bound upon you every precious stone, the sardius, and topaz, and emerald, and carbuncle, and sapphire, and jasper, and silver, and gold, and ligure, and agate, and amethyst, and chrysolite, and beryl, and onyx: and you have filled your treasures and your stores in you with gold. + +From the day that you were created you +was with the cherub: I set you on the holy mount of God; you were in the midst of the stones of fire. + +You were faultless in your days, from the day that you were created, until iniquity was found in you. + +Of the abundance of your merchandise you have filled your storehouses with iniquity, and have sinned: therefore you have been cast down wounded from the mount of God, and the cherub has brought you out of the midst of the stones of fire. + +Your heart has been lifted up because of your beauty; your knowledge has been corrupted with your beauty: because of the multitude of your sins I have cast you to the ground, I have caused you to be put to open shame before kings. + +Because of the multitude of your sins and the iniquities of your merchandise, I have profaned your sacred things; and I will bring fire out of the midst of you, this shall devour you; and I will make you +to be ashes upon your land before all that see you. + +And all that know you among the nations shall groan over you: you are gone to destruction, and you shall not exist any more. + +And the word of the Lord came to me, saying, + +Son of man, set your face against Sidon, and prophesy against it, + +and say, Thus says the Lord; Behold, I am against you, O Sidon; and I will be glorified in you; and you shall know that I am the Lord, when I have wrought judgments in you, and I will be sanctified in you. + +Blood and death +shall be in your streets; and +men wounded with swords shall fall in you and on every side of you; and they shall know that I am the Lord. + +And there shall no more be in the house of Israel a thorn of bitterness and a pricking briar proceeding from them that are round about them, who dishonored them; and they shall know that I am the Lord. + +Thus says the Lord God; I will also gather Israel from the nations, among whom they have been scattered, and I will be sanctified among them, and before the peoples and nations: and they shall dwell upon their land, which I gave to my servant Jacob. + +Yes, they shall dwell upon it safely, and they shall build houses, and plant vineyards, and dwell securely, when I shall execute judgment on all that have dishonored them, +even on those +that are round about them; and they shall know that I am the Lord their God, and the God of their fathers. + +

+ + +

In the twelfth year, in the tenth month, on the first +day of the month, the word of the Lord came to me, saying, + +Son of man, set your face against Pharao king of Egypt, and prophesy against him, and against the whole of Egypt: + +and say, Thus says the Lord; Behold, I am against Pharao, the great dragon that lies in the midst of his rivers, that says, The rivers are mine, and I made them. + +And I will put hooks in your jaws, and I will cause the fish of your river to stick to your sides, and I will bring you up out of the midst of your river: + +and I will quickly cast down you and all the fish of your river: you shall fall on the face of the plain, and shall by no means be gathered, and shall not be brought together: I have given you for food to the wild beasts of the earth and to the fowls of the sky. + +And all the dwellers in Egypt shall know that I am the Lord, because you have been a staff of reed to the house of Israel. + +When they took hold of you with their hand, you did break: and when every hand was clapped against them, and when they leaned on you, you were utterly broken, and did crush the loins of them all. + +Therefore thus says the Lord; Behold, I +will bring a sword upon you, and will cut off from you man and beast; + +and the land of Egypt shall be ruined and desert; and they shall know that I am the Lord; because you say, The rivers are mine, and I made them. + +Therefore, behold, I am against you, and against all your rivers, and I will give up the land of Egypt to desolation, and the sword, and destruction, from Magdol and Syene even to the borders of the Ethiopians. + +No foot of man shall pass through it, and no foot of beast shall pass through it, and it shall not be inhabited for forty years. + +And I will cause her land to be utterly destroyed in the midst of a land that is desolate, and her cities shall be +desolate forty years in the midst of cities that are desolate: and I will disperse Egypt among the nations, and will utterly scatter them into the countries. + +Thus says the Lord; After forty years I will gather the Egyptians from the nations among whom they have been scattered; + +and I will turn the captivity of the Egyptians, and will cause them to dwell in the land of Phathore, in the land whence they were taken; + +and it shall be a base kingdom beyond all +other kingdoms; it shall not any more be exalted over the nations; and I will make them few in number, that they may not be +great among the nations. + +And they shall no more be to the house of Israel a confidence bringing iniquity to remembrance, when they follow after them; and they shall know that I am the Lord. + +And it came to pass in the twenty-seventh year, on the first +day of the month, the word of the Lord came to me, saying, + +Son of man, Nabuchodonosor king of Babylon caused his army to serve a great service against Tyre; every head was bald, and every shoulder peeled; yet there was no reward to him or to his army +serving against Tyre, nor for the service wherewith they served against it. + +Thus says the Lord God; Behold, I +will give to Nabuchodonosor king of Babylon the land of Egypt, and he shall take the plunder thereof, and seize the spoils thereof; and +it shall be a reward for his army. + +In return for his service wherewith he served against Tyre, I have given him the land of Egypt; thus says the Lord God: + +In that day shall a horn spring forth for all the house of Israel, and I will give you an open mouth in the midst of them; and they shall know that I am the Lord. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, prophesy, and say, Thus says the Lord; Woe, woe +worth the day! + +For the day of the Lord is near, a day of cloud; it shall be the end of the nations. + +And the sword shall come upon the Egyptians, and there shall be tumult in Ethiopia, and in Egypt +men shall fall down slain together, and her foundations shall fall. + +Persians, and Cretans, and Lydians, and Libyans, and all the mixed multitude, and they of the children of my covenant, shall fall by the sword therein. + +And the supports of Egypt shall fall; and the pride of her strength shall come down from Magdol to Syene: they shall fall by the sword in it, says the Lord. + +And it shall be made desolate in the midst of desolate countries, and their cities shall be +desolate in the midst of desolate cities: + +and they shall know that I am the Lord, when I shall send fire upon Egypt, and +when all that help her shall be broken. + +In that day shall messengers go forth hasting to destroy Ethiopia utterly, and there shall be tumult among them in the day of Egypt: for, behold it comes. + +Thus says the Lord God; I will also destroy the multitude of the Egyptians by the hand of Nabuchodonosor king of Babylon, + +his +hand and his people's; +they are plagues sent forth from the nations to destroy the land: and they all shall unsheath their swords against Egypt, and the land shall be filled with slain. + +And I will make their rivers desolate, and will destroy the land and the fulness of it by the hands of strangers: I the Lord have spoken. + +For thus says the Lord God; I will also destroy the nobles from Memphis, and the princes of Memphis out of the land of Egypt; and they shall be no more. + +And I will destroy the land of Phathore, and will send fire upon Tanis, and will execute vengeance on Diospolis. + +And I will pour out my wrath upon Sais the strength of Egypt, and will destroy the multitude of Memphis. + +And I will send fire upon Egypt; and Syene shall be sorely troubled; and there shall be a breaking in Diospolis, and waters shall be poured out. + +The youths of Heliopolis and Bubastum shall fall by the sword, and the women shall go into captivity. + +And the day shall be darkened in Taphnae, when I have broken there the scepters of Egypt: and the pride of her strength shall perish there: and a cloud shall cover her, and her daughters shall be taken prisoners. + +And I will execute judgment on Egypt; and they shall know that I am the Lord. + +And it came to pass in the eleventh year, in the first month, on the seventh +day of the month, the word of the Lord came to me, saying, + +Son of man, I have broken the arms of Pharao, king of Egypt; and, behold, it has not been bound up to be healed, to have a plaster put upon it, +or to be strengthened to lay hold of the sword. + +Therefore thus says the Lord God; Behold, I am against Pharao king of Egypt, and I will break his strong and outstretched arms, and will strike down his sword out of his hand. + +And I will disperse the Egyptians among the nations, and will utterly scatter them among the countries. + +And I will strengthen the arms of the king of Babylon, and put my sword into his hand: and he shall bring it upon Egypt, and shall take her plunder and seize her spoils. + +Yes, I will strengthen the arms of the king of Babylon, and the arms of Pharao shall fail: and they shall know that I am the Lord, when I have put my sword into the hands of the king of Babylon, and he shall stretch it out over the land of Egypt. + +And I will disperse the Egyptians among the nations, and utterly scatter them among the countries; and they all shall know that I am the Lord. + +

+ + +

And it came to pass in the eleventh year, in the third month, on the first +day of the month, the word of the Lord came to me, saying, + +Son of man, say to Pharao king of Egypt, and to his multitude; To whom have you compared yourself in your haughtiness? + +Behold, the Assyrian was a cypress in Libanus, and was fair in shoots, and high in stature: his top reached to the midst of the clouds. + +The water nourished him, the depth made him grow tall; she led her rivers round about his plants, and she sent forth her streams to all the trees of the field. + +Therefore was his stature exalted above all the trees of the field, and his branches spread far by the help of much water. + +All the birds of the sky made their nests in his boughs, and under his branches all the wild beasts of the field bred; the whole multitude of nations lived under his shadow. + +And he was fair in his height by reason of the multitude of his branches: for his roots were amidst much water. + +And such cypresses +as this were in the paradise of God; and there were no pines like his shoots, and there were no firs like his branches: no tree in the paradise of God was like him in his beauty, + +because of the multitude of his branches: and the trees of God's paradise of delight envied him. + +Therefore thus says the Lord; Because you are grown great, and have set your top in the midst of the clouds, and I saw when he was exalted; + +therefore I delivered him into the hands of the prince of the nations, and he wrought his destruction. + +And ravaging strangers from the nations have destroyed him, and have cast him down upon the mountains: his branches fell in all the valleys, and his boughs were broken in every field of the land; and all the people of the nations are gone down from their shelter, and have laid him low. + +All the birds of the sky have settled on his fallen trunk, and all the wild beasts of the field came upon his boughs: + +in order that none of the trees by the water should exalt themselves by reason of their size: whereas they set their top in the midst of the clouds, yet they continued not in their high state in their place, all that drank water, all were consigned to death, to the depth of the earth, in the midst of the children of men, with them that go down to the pit. + +Thus says the Lord God; In the day wherein he went down to Hades, the deep mourned for him: and I stayed her floods, and restrained her abundance of water: and Libanus saddened for him, all the trees of the field fainted for him. + +At the sound of his fall the nations quaked, when I brought him down to Hades with them that go down to the pit: and all the trees of Delight comforted him in the heart, and the choice of +plants of Libanus, all that drink water. + +For they went down to hell with him among the slain with the sword; and his seed, +even they that lived under his shadow, perished in the midst of their life. + +To whom are you compared? descend, and be you debased with the trees of paradise to the depth of the earth: you shall lie in the midst of the uncircumcised with them that are slain by the sword. Thus shall Pharao be, and the multitude of his host, says the Lord God. + +

+ + +

And it came to pass in the twelfth year, in the tenth month, on the first +day of the month, +that the word of the Lord came to me, saying, + +Son of man, take up a lamentation for Pharao king of Egypt, and say to him, You are become like a lion of the nations, and as a serpent that is in the sea: and you did make assaults with your rivers, and did disturb the water with your feet, and did trample your rivers. + +Thus says the Lord; I will also cast over you the nets of many nations, and will bring you up with my hook: + +and I will stretch you upon the earth: the fields shall be covered +with you, and I will cause all the birds of the sky to settle upon you, and I will fill +with you all the wild beasts of the earth. + +And I will cast your flesh upon the mountains, and will saturate +them with your blood. + +And the land shall be drenched with your dung, because of your multitude upon the mountains: I will fill the valleys with you. + +And I will veil the heavens when you are extinguished, and will darken the stars thereof; I will cover the sun with a cloud, and the moon shall not give her light. + +All the +bodies that give light in the sky, shall be darkened over you, and I will bring darkness upon the earth, says the Lord God. + +And I will provoke to anger the heart of many people, when I shall lead you captive among the nations, to a land which you have not known. + +And many nations shall mourn over you, and their kings shall be utterly amazed, when my sword flies in their faces, as they wait for their +own fall from the day of your fall. + +For thus says the Lord God; The sword of the king of Babylon shall come upon you, + +with the swords of mighty men; and I will cast down your strength: +they are all destroying ones from the nations, and they shall destroy the pride of Egypt, and all her strength shall be crushed. + +And I will destroy all her cattle from +beside the great water; and the foot of man shall not trouble it any more, and the step of cattle shall no more trample it. + +Thus shall their waters then be at rest, and their rivers shall flow like oil, says the Lord, + +when I shall give up Egypt to destruction, and the land shall be made desolate with the fullness thereof; when I shall scatter all that dwell in it, and they shall know that I am the Lord. + +There is a lamentation, and you shall utter it; and the daughters of the nations shall utter it, +even for Egypt, and they shall mourn for it over all the strength thereof, says the Lord God. + +And it came to pass in the twelfth year, in the first month, on the fifteenth +day of the month, the word of the Lord came to me, saying, + +Son of man, lament over the strength of Egypt, for the nations shall bring down her daughters dead to the depth of the earth, to them that go down to the pit. + +They shall fall with him in the midst of them +that are slain with the sword, and all his strength shall perish: the giants also shall say to you, + +Be you in the depth of the pit: to whom are you superior? yes, go down, and lie with the uncircumcised, in the midst of them +that are slain with the sword. + +There are Assur and all his company: all +his slain have been laid there: + +and their burial is in the depth of the pit, and his company are set around about his tomb: all the slain that fell by the sword, who had caused the fear of them +to be upon the land of the living. + +There is Aelam and all his host round about his tomb: all the slain that fell by the sword, and the uncircumcised that go down to the deep of the earth, who caused their fear to be upon the land of the living: and they have received their punishment with them that go down to the pit, + +in the midst of the slain. + +There were laid Mosoch, and Thobel, and all his strength round about his tomb: all his slain men, all the uncircumcised, slain with the sword, who caused their fear to be in the land of the living. + +And they are laid with the giants that fell of old, who went down to Hades with +their weapons of war: and they laid their swords under their heads, but their iniquities were upon their bones, because they terrified all men during their life. + +And you shall lie in the midst of the uncircumcised, with them that have been slain by the sword. + +There are laid the princes of Assur, who yielded their strength to a wound of the sword: these are laid with the slain, with them that go down to the pit. + +There are the princes of the north, +even all the captains of Assur, who go down slain +to Hades: they lie uncircumcised among the slain with the sword together with their terror and their strength, and they have received their punishment with them that go down to the pit. + +King Pharao shall see them, and shall be comforted over all their force, says the Lord God. + +For I have caused his fear to be upon the land of the living yet he shall lie in the midst of the uncircumcised with them that are slain with the sword, +even Pharao, and all his multitude with him, says the Lord God. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, speak to the children of your people, and you shall say to them, On whatever land I shall bring a sword, and the people of the land take one man of them, and set him for their watchman: + +and he shall see the sword coming upon the land, and blow the trumpet, and sound an alarm to the people; + +and he that hears the sound of the trumpet shall hear +indeed, and +yet not take heed, and the sword shall come upon him, and overtake him, his blood shall be upon his +own head. + +Because he heard the sound of the trumpet, and took no heed, his blood shall be upon him: but the other, because he took heed, has delivered his soul. + +But if the watchman see the sword coming, and do not sound the trumpet, and the people do not watch; and the sword come, and take a soul from among them, that +soul is taken because of its iniquity; but the blood +thereof will I require at the watchman's hand. + +And you, son of man, I have set you +as a watchman to the house of Israel, and you shall hear a word from my mouth. + +When I say to the sinner, You shall surely die; +if you speak not to warn the wicked from his way, the wicked himself shall die in his iniquity; but his blood will I require at your hand. + +But if you forewarn the wicked of his way to turn from it, and he turn not from his way, he shall die in his ungodliness; but you have delivered your own soul. + +And you, son of man, say to the house of Israel; Thus have you⌃ spoken, saying, Our errors, and our iniquities weigh upon us, and we pine away in them, and how then shall we live? + +Say to them, Thus says the Lord; +As I live, I desire not the death of the ungodly, as that the ungodly should turn from his way and live: turn you⌃ heartily from your way; for why will you⌃ die, O house of Israel? + +Say to the children of your people, The righteousness of the righteous shall not deliver him, in the day wherein he errs: and the iniquity of the ungodly shall not harm him, in the day wherein he turns from his iniquity, but the righteous +erring shall not be able to deliver himself. + +When I say to the righteous, +You shall live; and he trusts in his righteousness, and shall commit iniquity, none of his righteousnesses shall be remembered; in his unrighteousness which he has wrought, in it shall he die. + +And when I say to the ungodly, You shall surely die; and he shall turn from his sin, and do judgment and justice, + +and return the pledge, and repay that which he has robbed, +and walk in the ordinances of life, so as to do no wrong; he shall surely live, and shall not die. + +None of his sins which he has committed shall be remembered: because he has wrought judgment and righteousness; by them shall he live. + +Yet the children of your people will say, The way of the Lord is not straight: whereas this their way is not straight. + +When the righteous turns away from his righteousness, and shall commit iniquities, then shall he die in them. + +And when the sinner turns from his iniquity, and shall do judgment and righteousness, he shall live by them. + +And this is that which you⌃ said, The way of the Lord is +not straight. I will judge you, O house of Israel, every one for his ways. + +And it came to pass in the tenth year of our captivity, in the twelfth month, on the fifth +day of the month, +that one that had escaped from Jerusalem came to me, saying, The city is taken. + +Now the hand of the Lord had come upon me in the evening, before he came; and he opened my mouth, when he came to me in the morning: and my mouth was open, it was no longer kept closed. + +And the word of the Lord came to me, saying, + +Son of man, they that inhabit the desolate +places on the land of Israel say, Abram was one, and he possessed the land: and we are more numerous; to us the land is given for a possession. + +Therefore say to them, Thus says the Lord God, +As I live, surely they that are in the desolate places shall fall by swords and they that are in the open plain shall be given for food to the wild beasts of the field, and them that are in the fortified +cities and them that are in the caves I will kill with pestilence. + +And I will make the land desert, and the pride of her strength shall perish; and the mountains of Israel shall be made desolate by reason of no man passing through. + +And they shall know that I am the Lord; and I will make their land desert, and it shall be made desolate because of all their abominations which they have wrought. + +And +as for you, son of man, the children of your people are they that speak concerning you by the walls, and in the porches of the houses, and they talk one to another, saying, Let us come together, and let us hear the +words that proceed from the Lord. + +They approach you as a people comes together, and sit before you, and hear your words, but they will not do them: for +there is falsehood in their mouth, and their heart +goes after their pollutions. + +And you are to them as a sound of a sweet, well-tuned lute, and they will hear your words, but they will not do them. + +But whenever it shall come +to pass, they will say, Behold, it is come: and they shall know that there was a prophet in the midst of them. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, prophesy against the shepherds of Israel, prophesy, and say to the shepherds, Thus says the Lord God; O shepherds of Israel, do shepherds feed themselves? do not the shepherds feed the sheep? + +Behold, you⌃ feed on the milk, and clothe yourselves with the wool, and kill the fat: but you⌃ feed not my sheep. + +The weak one you⌃ have not strengthened, and the sick you⌃ have not cherished, and the bruised you⌃ have not bound up, and the stray one you⌃ have not turned back, and the lost you⌃ have not sought; and the strong you⌃ have wearied with labor. + +And my sheep were scattered, because there were no shepherds: and they became meat to all the wild beasts of the field. + +And my sheep were scattered on every mountain, and on every high hill: yes, they were scattered on the face of the earth, and there was none to seek them out, nor to bring them back. + +Therefore, you⌃ shepherds, hear the word of the Lord. + + +As I live, says the Lord God, surely because my sheep became a prey, and my sheep became meat to all the wild beasts of the field, because there were no shepherds, and the shepherds sought not out my sheep, and the shepherds fed themselves, but fed not my sheep. + +For this cause, O shepherds, + +thus says the Lord God, Behold, I am against the shepherds; and I will require my sheep at their hands, and will turn them back that they shall not feed my sheep, and the shepherds shall no longer feed them; and I will deliver my sheep out of their mouth, and they shall no longer be meat for them. + +For thus says the Lord God, Behold, I will seek out my sheep, and will visit them. + +As the shepherd seeks his flock, in the day when there is darkness and cloud, in the midst of the sheep that are separated: so will I seek out my sheep, and will bring them back from every place where they were scattered in the day of cloud and darkness. + +And I will bring them out from the Gentiles, and will gather them from the countries, and will bring them into their own land, and will feed them upon the mountains of Israel, and in the valleys, and in every inhabited place of the land. + +I will feed them in a good pasture, on a high mountain of Israel: and their folds shall be there, and they shall lie down, and there shall they rest in perfect prosperity, and they shall feed in a fat pasture on the mountains of Israel. + +I will feed my sheep, and I will cause them to rest; and they shall know that I am the Lord: thus says the Lord God. + +I will seek that which is lost, and I will recover the stray one, and will bind up that which was broken, and will strengthen the fainting, and will guard the strong, and will feed them with judgment. + +And +as for you, you⌃ sheep, thus says the Lord God, Behold, I will distinguish between sheep and sheep, +between rams and he-goats. + +And +is it not enough for you that you⌃ fed on the good pasture, that you⌃ trampled with your feet the remnant of your pasture? and +that you⌃ drank the standing water, +that you⌃ disturbed the residue with your feet? + +So my sheep fed on that which you⌃ had trampled with your feet; and they drank the water that had been disturbed by your feet. + +Therefore thus says the Lord God; Behold, I will separate between the strong sheep and the weak sheep. + +You⌃ did thrust with your sides and shoulders, and pushed with your horns, and you⌃ cruelly treated all the sick. + +Therefore I will save my sheep, and they shall not be any more for a prey; and will judge between ram and ram. + +And I will raise up one shepherd over them, and he shall tend them, +even my servant David, and he shall be their shepherd; + +and I the Lord will be to them a God, and David a prince in the midst of them; I the Lord have spoken it. + +And I will make with David a covenant of peace and I will utterly destroy evil beasts from off the land; and they shall dwell in the wilderness, and sleep in the forests. + +And I will settle them round about my mountain; and I will give you the rain, the rain of blessing. + +And the trees that are in the field shall yield their fruit, and the earth shall yield her strength, and they shall dwell in the confidence of peace on their land, and they shall know that I am the Lord, when I have broken their yoke; and I will deliver them out of the hand of those that enslaved them. + +And they shall no more be a spoil to the nations, and the wild beasts of the land shall no more at all devour them; and they shall dwell safely, and there shall be none to make them afraid. + +And I will raise up for them a plant of peace, and they shall no more perish with hunger upon the land, and they shall no more bear the reproach of the nations. + +And they shall know that I am the Lord their God, and they my people. O house of Israel, says the Lord God, + +you⌃ are my sheep, even the sheep of my flock, and I am the Lord your God, says the Lord God. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, set your face against mount Seir, and prophesy against it, + +and say to it, Thus says the Lord God; Behold, I am against you, O mount Seir, and I will stretch out my hand against you, and will make you a waste, and you shall be made desolate. + +And I will cause desolation in your cities, and you shall be desolate, and you shall know that I am the Lord. + +Because you have been a perpetual enemy, and have laid wait craftily for the house of Israel, with the hand of enemies with a sword, in the time of injustice, at the last: + +Therefore, as I live, says the Lord God, verily you have sinned even to blood, therefore blood shall pursue you. + +And I will make mount Seir a waste, and desolate, and I will destroy from off it men and cattle: + +and I will fill your hills and your valleys with slain men, and in all your plains there shall fall in you men slain with the sword. + +I will make you a perpetual desolation, and your cities shall not be inhabited any more: and you shall know that I am the Lord. + +Because you said, The two nations and the two countries shall be mine, and I shall inherit them; whereas the Lord is there: + +therefore, +as I live, says the Lord, I will even deal with you according to your enmity, and I will be made known to you when I shall judge you: + +and you shall know that I am the Lord. I have heard the voice of your blasphemies, whereas you have said, The desert mountains of Israel are given to us for food; + +and you have spoken swelling words against me with your mouth: I have heard +them. + +Thus says the Lord; When all the earth is rejoicing, I will make you desert. + +You shall be desert, O mount Seir, and all Idumea; and it shall be utterly consumed: and you shall know that I am the Lord their God. + +

+ + +

And you, son of man, prophesy to the mountains of Israel, and say to the mountains of Israel, Hear you⌃ the word of the Lord: + +Thus says the Lord God; Because the enemy has said against you, Aha, the old waste places are become a possession for us: + +therefore prophesy, and say, Thus says the Lord God; Because you⌃ have been dishonored, and hated by those round about you, that you⌃ might be a possession to the remainder of the nations, and you⌃ became a byword, and a reproach to the nations: + +therefore, you⌃ mountains of Israel, hear the word of the Lord; Thus says the Lord to the mountains, and to the hills, and to the streams, and to the valleys, and to +the places that have been made desolate and destroyed, and to the cities that have been deserted, and have become a spoil and a trampling to the nations that were left round about; + +therefore, thus says the Lord; Verily in the fire of my wrath have I spoken against the rest of the nations, and against all Idumea, because they have appropriated my land to themselves for a possession with joy, disregarding the lives +of the inhabitants, to destroy +it by plunder: + +therefore prophesy concerning the land of Israel, and say to the mountains, and to the hills, and to the valleys, and to the forests, Thus says the Lord; Behold, I have spoken in my jealousy and in my wrath, because you⌃ have borne the reproaches of the heathen: + +therefore I will lift up my hand against the nations that are round about you; they shall bear their reproach. + +But your grapes and your fruits, O mountains of Israel, shall my people eat; for they are hoping to come. + +For, behold, I am toward you, and I will have respect to you, and you⌃ shall be tilled and sown: + +and I will multiply men upon you, +even all the house of Israel to the end: and the cities shall be inhabited, and the desolate land shall be built upon. + +And I will multiply men and cattle upon you; and I will cause you to dwell as at the beginning, and will treat you well, as in your former +times: and you⌃ shall know that I am the Lord. + +And I will increase men upon you, +even my people Israel; and they shall inherit you, and you⌃ shall be to them for a possession; and you⌃ shall no more be bereaved of them. + +Thus says the Lord God: Because they said to you, You +land devour men, and have been bereaved of your nation; + +therefore you shall no more devour men, and you shall no more bereave your nation, says the Lord God. + +And there shall no more be heard against you the reproach of the nations, and you⌃ shall no more bear the revilings of the peoples, says the Lord God. + +And the word of the Lord came to me, saying, + +Son of man, the house of Israel lived upon their land, and defiled it by their way, and with their idols, and with their uncleannesses; and their way was before me like the uncleanness of a removed woman. + +So I poured out my wrath upon them: + +and I dispersed them among the nations, and utterly scattered them through the countries: I judged them according to their way and according to their sin. + +And they went in among the nations, among which they went, and they profaned my holy name, while it was said of them, These are the people of the Lord, and they came forth out of his land. + +But I spared them for the sake of my holy name, which the house of Israel profaned among the nations, among whom they went. + +Therefore say to the house of Israel, Thus says the Lord; I do not this, O house of Israel, for your sakes, but because of my holy name, which you⌃ have profaned among the nations, among whom you⌃ went. + +And I will sanctify my great name, which was profaned among the nations, which you⌃ profaned in the midst of them; and the nations shall know that I am the Lord, when I am sanctified among you before their eyes. + +And I will take you out from the nations, and will gather you out of all the lands, and will bring you into your own land: + +and I will sprinkle clean water upon you, and you⌃ shall be purged from all your uncleannesses, and from all your idols, and I will cleanse you. + +And I will give you a new heart, and will put a new spirit in you: and I will take away the heart of stone out of your flesh, and will give you a heart of flesh. + +And I will put my Spirit in you, and will cause you to walk in my ordinances, and to keep my judgments, and do +them. + +And you⌃ shall dwell upon the land which I gave to your fathers; and you⌃ shall be to me a people, and I will be to you a God. + +And I will save you from all your uncleannesses: and I will call for the corn, and multiply it, and will not bring famine upon you. + +And I will multiply the fruit of the trees, and the produce of the field, that you⌃ may not bear the reproach of famine among the nations. + +And you⌃ shall remember your evil ways and your practices that were not good, and you⌃ shall be hateful in your own sight for your transgressions and for your abominations. + +Not for your sakes do I +this, says the Lord God, +as it is known to you: be you⌃ ashamed and confounded for your ways, O house of Israel. + +Thus says the Lord God; In the day wherein I shall cleanse you from all your iniquities I will also cause the cities to be inhabited, and the waste +places shall be built upon: + +and the desolate land shall be cultivated, whereas it was desolate in the eyes of every one that passed by. + +And they shall say, That desolate land is become like a garden of delight; and the waste and desolate and ruined cities are inhabited. + +And the nations, as many as shall have been left round about you, shall know that I the Lord have built the ruined +cities and planted the waste +lands: I the Lord have spoken, and will do +it. + +Thus says the Lord God; Yet +for this will I be sought by the house of Israel, to establish them; I will multiply them +even men as sheep; + +as holy sheep, as the sheep of Jerusalem in her feasts; thus shall the desert cities be full of flocks of men: and they shall know that I +am the Lord. + +

+ + +

And the hand of the Lord came upon me, and the Lord brought me forth by the Spirit, and set me in the midst of the plain, and it was full of human bones. + +And he led me round about them every way: and, behold, +there were very many on the face of the plain, very dry. + +And he said to me, Son of man, will these bones live? and I said, O Lord God, you know this. + +And he said to me, Prophesy upon these bones, and you shall say to them, You⌃ dry bones, hear the word of the Lord. + +Thus says the Lord to these bones; Behold, I +will bring upon you the breath of life: + +and I will lay sinews upon you, and will bring up flesh upon you, and will spread skin upon you, and will put my Spirit into you, and you⌃ shall live; and you⌃ shall know that I am the Lord. + +So I prophesied as +the Lord commanded me: and it came to pass while I was prophesying, that, behold, +there was a shaking, and the bones approached each one to his joint. + +And I looked, and behold, sinews and flesh grew upon them, and skin came upon them above: but there was not breath in them. + +And he said to me, Prophesy to the wind, prophesy, son of man, and say to the wind, Thus says the Lord; Come from the four winds, and breathe upon these dead +men, and let them live. + +So I prophesied as he commanded me, and the breath entered into them, and they lived, and stood upon their feet, a very great congregation. + +And the Lord spoke to me, saying, Son of man, these bones are the whole house of Israel: and they say, Our bones are become dry, our hope has perished, we are quite spent. + +Therefore prophesy and say, Thus says the Lord; Behold, I +will open your tombs, and will bring you up out of your tombs, and will bring you into the land of Israel. + +And you⌃ shall know that I am the Lord, when I have opened your graves, that I may bring up my people from +their graves. + +And I will put my Spirit within you, and you⌃ shall live, and I will place you upon your own land: and you⌃ shall know that I +am the Lord; I have spoken, and will do +it, says the Lord. + +And the word of the Lord came to me, saying, + +Son of man, take for yourself a rod, and write upon it, Juda, and the children of Israel his adherents; and you shall take for yourself another rod, and you shall inscribe it for Joseph, the rod of Ephraim, and all the children of Israel that belong to him. + +And you shall joint them together for yourself, so as that they should bind themselves into one stick; and they shall be in your hand. + +And it shall come to pass, when the children of your people shall say to you, Will you not tell us what you meanest by these things? + +Then shall you say to them, Thus says the Lord; behold, I will take the tribe of Joseph, which is in the hand of Ephraim, and the tribes of Israel that belong to him, and I will add them to the tribe of Juda, and they shall become one rod in the hand of Juda. + +And the rods on which you did write shall be in your hand in their presence. + +And you shall say to them, Thus says the Lord God; Behold, I +will take the whole house of Israel out of the midst of the nations, among whom they have gone, and I will gather them from all that are round about them, and I will bring them into the land of Israel. + +And I will make them a nation in my land, even on the mountains of Israel; and they shall have one prince: and they shall be no more two nations, neither shall they be divided any more at all into two kingdoms: + +that they may no more defile themselves with their idols; and I will deliver them from all their transgressions whereby they have sinned, and will cleanse them; and they shall be to me a people, and I the Lord will be to them a God. + +And my servant David +shall be a prince in the midst of them: there shall be one shepherd of +them all; for they shall walk in my ordinances, and keep my judgments, and do them. + +And they shall dwell in their land, which I have given to my servant Jacob, where their fathers lived; and they shall dwell upon it: and David my servant +shall be their prince forever. + +And I will make with them a covenant of peace; it shall be an everlasting covenant with them; and I will establish my sanctuary in the midst of them for ever. + +And my tabernacle shall be among them; and I will be to them a God, and they shall be my people. + +And the nations shall know that I am the Lord that sanctifies them, when my sanctuary is in the midst of them for ever. + +

+ + +

And the word of the Lord came to me, saying, + +Son of man, set your face against Gog, and the land of Magog, Rhos, prince of Mesoch and Thobel, and prophesy against him, + +and say to him, Thus says the Lord God; Behold, I am against you, Rhos prince of Mesoch and Thobel: + +and I will gather you, and all your host, horses and horsemen, all wearing breastplates, with a great multitude, shields and helmets and swords: + +Persians, and Ethiopians, and Libyans; all with helmets and shields. + +Gomer, and all belonging to him; the house of Thorgama, from the end of the north, and all belonging to him; and many nations with you. + +Be you prepared, prepare yourself, you, and all your multitude that is assembled with you, and you shall be to me for a guard. + +He shall be prepared after many days, and he shall come at the end of years, and shall come to a land that is brought back from the sword, when +the people are gathered from many nations against the land of Israel, which was entirely desolate: and he is come forth out of the nations, and they shall all dwell securely. + +And you shall go up as rain, and shall arrive as a cloud to cover the land, and there shall be you, and all that are about you, and many nations with you. + +Thus says the Lord God; It shall also come to pass in that day, that thoughts shall come up into your heart, and you shall devise evil devices. + +And you shall say, I will go up to the rejected land; I will come upon them that are at ease in tranquility, and dwelling in peace, all inhabiting a land in which there is no wall, nor bars, nor have they doors; + +to seize plunder, and to take their spoil; to turn my hands against the desolate land that is +now inhabited, and against a nation that is gathered from many nations, that have acquired property, dwelling in the midst of the land. + +Sabba, and Daedan, and Carthaginian merchants, and all their villages shall say to you, You are come for plunder to take a prey, and to get spoils: you have gathered your multitude to take silver and gold, to carry off property, to take spoils. + +Therefore prophesy, son of man, and say to Gog, Thus says the Lord; Will you not arise in that day, when my people Israel are dwelling securely, + +and come out of your place from the farthest north, and many nations with you? all of them mounted on horses, a great gathering, and a large force? + +And you shall come up upon my people Israel as a cloud to cover the land; it shall come to pass in the last days, that I will bring you up upon my land, that all the nations may know me, when I am sanctified in you before them. + +Thus says the Lord God, to Gog; You are +he concerning whom I spoke in former times, by the hand of my servants the prophets of Israel, in those days and years, that I would bring you up against them. + +And it shall come to pass in that day, in the day when Gog shall come against the land of Israel, says the Lord God, + + +that my wrath and my jealousy shall arise, I have spoken in the fire of my anger, verily in that day there shall be a great shaking in the land of Israel; + +and the fish of the sea shall quake at the presence of the Lord, and the birds of the sky and the wild beasts of the field, and all the reptiles that creep upon the earth, and all the men that are on the face of the earth; and the mountains shall be torn, and the valleys shall fall, and every wall on the land shall fall. + +And I will summon against it even every fear, says the Lord: the sword of +every man shall be against his brother. + +And I will judge him with pestilence, and blood, and sweeping rain, and hailstones; and I will rain upon him fire and brimstone, and upon all that are with him, and upon many nations with him. + +And I will be magnified, and sanctified, and glorified; and I will be known in the presence of many nations, and they shall know that I am the Lord. + +

+ + +

And you, son of man, prophesy against Gog, and say, Thus says the Lord; Behold, I am against you, O Gog, Rhos prince of Mesoch and Thobel: + +and I will assemble you, and guide you, and raise you up on the extremity of the north, and I will bring you up upon the mountains of Israel. + +And I will destroy the bow out of your left hand, and your arrows out of your right hand, and I will cast you down on the mountains of Israel; + +and you and all that belong to you shall fall, and the nations that are with you shall be given to multitudes of birds, +even to every fowl, and I have given you to all the wild beasts of the field to be devoured. + +You shall fall on the face of the field: for I have spoken +it, says the Lord. + +And I will send a fire upon Gog, and the islands shall be securely inhabited: and they shall know that I am the Lord. + +And my holy name shall be known in the midst of my people Israel; and my holy name shall no more be profaned: and the nations shall know that I am the Lord, the Holy +One in Israel. + +Behold it is come, and you shall know that it shall be, says the Lord God; this is the day concerning which I have spoken. + +And they that inhabit the cities of Israel shall come forth, and make a fire with the arms, the shields and the spears, and bows and arrows, and hand-staves, and lances, and they shall keep fire burning with them for seven years: + +and they shall not take any wood out of the field, neither shall they cut any out of the forests, but they shall burn the weapons with fire: and they shall plunder those that plundered them, and spoil those that spoiled them, says the Lord. + +And it shall come to pass +that in that day I will give to Gog a place of renown, a tomb in Israel, the burial-place of them that approach the sea: and they shall build round about the outlet of the valley, and there they shall bury Gog and all his multitude: and +the place shall then be called the burial-place of Gog. + +And the house of Israel shall bury them, that the land may be cleansed in the space of seven months. + +Yes, all the people of the land shall bury them; and it shall be to them a +place of renown in the day wherein it was glorified, says the Lord. + +And they shall appoint men continually to go over the land, to bury them that have been left on the face of the earth, to cleanse it after the space of seven months, and they shall seek +them out. + +And every one that goes through the land, and sees a man's bone, shall set up a mark by it, until the buriers shall have buried it in the valley, the burial place of Gog. + +For the name of the city +shall be Burial-place: so shall the land be cleansed. + +And you, son of man, say, Thus says the Lord; Say to every winged bird, and to all the wild beasts of the field, Gather yourselves, and come; gather yourselves from all +places round about to my sacrifice, which I have made for you, +even a great sacrifice on the mountains of Israel, and you⌃ shall eat flesh, and drink blood. + +You⌃ shall eat the flesh of mighty men, and you⌃ shall drink the blood of princes of the earth, rams, and calves and goats, and they are all fatted calves. + +And you⌃ shall eat fat till you⌃ are full, and shall drink wine till you⌃ are drunken, of my sacrifice which I have prepared for you. + +And you⌃ shall be filled at my table, +eating horse, and rider, and mighty man, and every warrior, says the Lord. + +And I will set my glory among you, and all the nations shall see my judgment which I have wrought, and my hand which I have brought upon them. + +And the house of Israel shall know that I am the Lord their God, from this day and onwards. + +And all the nations shall know that the house of Israel were led captive because of their sins, because they rebelled against me, and I turned away my face from them, and delivered them into the hands of their enemies, and they all fell by the sword. + +According to their uncleannesses and according to their transgressions did I deal with them, and I turned away my face from them. + +Therefore thus says the Lord God, Now will I turn back captivity in Jacob, and will have mercy on the house of Israel, and will be jealous for the sake of my holy name. + +And they shall bear their reproach, and the iniquity which they committed when they lived upon their land in peace. Yet there shall be none to terrify +them + +when I have brought them back from the nations, and gathered them out of the countries of the nations: and I will be sanctified among them in the presence of the nations. + +And they shall know that I am the Lord their God, when I have been manifested to them among the nations. + +And I will no more turn away my face from them, because I have poured out my wrath upon the house of Israel, says the Lord God. + +

+ + +

And it came to pass in the twenty-fifth year of our captivity, in the first month, on the tenth +day of the month, in the fourteenth year after the taking of the city, in that day the hand of the Lord was upon me, and brought me + +in a vision of God into the land of Israel, and set me on a very high mountain, and upon it +there was as it were the frame of a city before +me. + +And he brought me in there, and, behold, +there was a man, and the appearance of him was as the appearance of shining brass, and in his hand was a builder's line, and a measuring reed; and he stood at the gate. + +And the man said to me, Look with your eyes at him whom you have seen, son of man, and hear with your ears, and lay up in your heart all things that I show you; for you have come in hither that +I might show you, and you shall show all things that you see to the house of Israel. + +And behold a wall round about the house without, and in the man's hand a reed, the measure +of it was six cubits by the cubit, and a span: and he measured across the front wall; the breadth was equal to the reed, and the length of it equal to the reed. + +And he entered by seven steps into the gate that looks eastward, and he measured across the porch of the gate equal to the reed. + +And the chamber was equal in length to the reed, and equal in breadth to the reed; and the porch between the chambers six cubits; and the second chamber equal in breadth to the reed, and equal in length to the reed, and the porch five cubits. + +And the third chamber equal in length to the reed, and equal in breadth to the reed. + +And the porch of the gateway (near the porch of the gate) eight cubits; and the posts there of two cubits; and the porch of the gate was inward: + +and the chambers of the gate of the chamber in front +were three on one side and three on the other, and +there was one measure to the three: +there was one measure to the porches on this side and on that. + +And he measured the breadth of the door of the gateway, ten cubits; and the breadth of the gateway thirteen cubits. + +And the space before the chambers was narrowed to a cubit in front of the chambers on this side and on that side: and the chamber was six cubits this way, and six cubits that way. + +And he measured the gate from the wall of one chamber to the wall of the other chamber: the breadth was twenty-five cubits, the one gate over against the other gate. + +And the open space of the porch of the gate without, was twenty cubits to the chambers round about the gate. + +And the open space of the gate without to the open space of the porch of the gate within was fifty cubits. + +And +there were secret windows to the chambers, and to the porches within the gate of the court round about, and in the same manner windows to the porches round about within: and on the porch +there were palm-trees on this side and on that side. + +And he brought me into the inner court, and, behold, +there were chambers, and peristyles round about the court; thirty chambers within the ranges of columns. + +And the porticos were behind the gates; according to the length of the gates, was the lower peristyle. + +And he measured the breadth of the court, from the open space of the outer gate inwards to the open space of the gate looking outwards: one hundred cubits +was the distance to the place of the gate looking eastward: and he brought me to the north; + +and behold a gate looking northwards +belonging to the outer court, and he measured it, both the length of it and the breadth; + +and the chambers, three on this side and three on that; and the posts, and the porches, and the palm-trees thereof: and they were according to the measures of the gate that looks eastward: the length thereof was fifty cubits, and the breadth thereof was twenty-five cubits. + +And its windows, and its porches, and its palm-trees, were according to +the dimensions of the gate looking eastward; and they went up to it by seven steps; and the porches were within. + +And +there was a gate to the inner court looking toward the north gate, after the manner of the gate looking toward the east; and he measured the court from gate to gate, one hundred cubits. + +And he brought me to the south side, and behold a gate looking southwards: and he measured it, and its chambers, and its posts, and its porches, according to these dimensions. + +And its windows and its porches round about were according to the windows of the porch: the length thereof was fifty cubits, and the breadth thereof was five and twenty cubits. + +And it had seven steps, and porches within: and it +had palm-trees on the posts, one on one side, and one on the other side. + +And +there was a gate opposite the gate of the inner court southward: and he measured the court from gate to gate, one hundred cubits in breadth southward. + +And he brought me into the inner court of the south gate: and he measured the gate according to these measures; + +and the chambers, and the posts, + +and the porches, according to these measures: and +there were windows to it and to the porches round about: its length was fifty cubits, and +its breadth twenty-five cubits, + +from the porch to the outer court: and +there were palm-trees to the post +thereof, and eight steps. + +And he brought me in at the gate that looks eastward: and he measured it according to these measures: + +and the chambers, and the posts, and the porches according to these measures: and +there were windows to it, and porches round about: the length of it was fifty cubits, and the breadth of it twenty-five cubits. + +And +there were porches +opening into the inner court, and palm-trees on the posts on this side and on that side: and it +had eight steps. + +And he brought me in at the northern gate, and measured +it according to these measures; + +and the chambers, and the posts, and the porches: and it +had windows round about, and +it had its porches: the length of it was fifty cubits, and the breadth twenty-five cubits. + +And its porches were toward the inner court; and +there were palm-trees to the posts on this side and on that side: and it +had eight steps. + +Its chambers and its door-ways, and its porches at the second gate +served as a drain, + +that they might kill in it the sin-offerings, and the trespass-offerings. + +And behind the drain for the whole burnt offerings at the north +gate, two tables eastward behind the second gate; and +behind the porch of the gate two tables eastward. + +Four on one side and four on the other side behind the gate; upon them they kill the victims, in front of the eight tables of sacrifices. + +And +there were four tables of hewn stone for whole burnt offerings, the breadth +of them was a cubit and a half, and the length +of them two cubits +and a half, and +their height was a cubit: on them they shall place the instruments with which they kill there the whole burnt offerings and the victims. + +And they shall have within a border of hewn stone round about of a span broad, and over the tables above screens for covering +them from the wet and from the heat. + +And he brought me into the inner court, and behold +there were two chambers in the inner court, one behind the gate looking to the north, turning southward, and one behind the southern gate, but which looks to the north. + +And he said to me, This chamber that looks to the south, is for the priests that keep the charge of the house. + +And the chamber that looks to the north is for the priests that keep the charge of the altar: they are the sons of Sadduc, those of the tribe of Levi who draw near to the Lord to serve him. + +And he measured the court, the length +whereof was one hundred cubits, and the breadth one hundred cubits, on its four sides; and the altar in front of the house. + +And he brought me into the porch of the house; and he measured the post of the porch, the breadth was five cubits on one side and five cubits on the other side; and the breadth of the door +was fourteen cubits, and the side-pieces of the door of the porch +were three cubits on one side, and three cubits on the other side. + +And the length of the porch was twenty cubits, and the breadth twelve cubits; and they went up to it by ten steps; and +there were pillars to the porch, one on this side and one on that side. + +

+ + +

And he brought me into the temple, the porch of which he measured, six cubits the breadth on one side, and six cubits the breadth of the porch on the other side. + +And the breadth of the gateway was ten cubits, and the side-pieces of the gateway were five cubits on this side, and five cubits on that side: and he measured the length of it, forty cubits, and the breadth, twenty cubits. + +And he went into the inner court, and measured the post of the door, two cubits; and the door, six cubits; and the side-pieces of the door, seven cubits on one side, and seven cubits on the other side. + +And he measured the length of the doors, forty cubits; and the breadth, twenty cubits, in front of the temple: and he said, This is the holy of holies. + +And he measured the wall of the house, six cubits: and the breadth of +each side, four cubits round about. + +And the sides were twice ninety, side against side; and +there was a space in the wall of the house at the sides round about, that they should be for them that take hold of them to see, that they should not at all touch the walls of the house. + +And the breadth of the upper side +was made according to the projection out of the wall, against the upper one round about the house, that it might be enlarged above, and that +men might go up to the upper chambers from those below, and from the ground-sills to the third story. + +And as for the height of the house round about, +each space between the sides was equal to a reed of six cubits; + +and the breadth of the wall of each side without was five cubits; and the spaces that were left between the sides of the house, + +and between the chambers, were a width of twenty cubits, the circumference of the house. + +And the doors of the chambers were toward the space left by the one door that looked northward, and +there was one door southward; and the breadth of the remaining open space +was five cubits in extent round about. + +And the partition +wall in front of the remaining space, toward the west, was seventy cubits in breadth; the breadth of the partition wall was five cubits round about, and the length of it ninety cubits. + +And he measured in front of the house a length of one hundred cubits, and the remaining spaces and the partitions; and the walls thereof were in length one hundred cubits. + +And the breadth in front of the house, and the remaining +spaces before +it were one hundred cubits. + +And he measured the length of the partition in front of the space left by the back parts of that house; and the +spaces left on this side and on that side were in length one hundred cubits: and the temple and the corners and the outer porch were ceiled. + +And the windows were latticed, +giving light round about to the three +stories, so as to look through: and the house and the parts adjoining were planked round about, and +so was the floor, and from the floor up to the windows, and the window +shutters folded back in three parts for one to look through. + +And almost all the way to the inner, and close to the outer +side, and upon all the wall round about within and without, + +were carved cherubs and palm-trees between the cherubs, +and each cherub +had two faces. + +The face of a man was toward one palm tree on this side and on that side, and the face of a lion toward another palm tree on this side and on that side: the house was carved all round. + +From the floor to the ceiling were cherubs and palm-trees carved. + +And the holy place and the temple opened on four sides; in front of the holy places the appearance was as the look of + +a wooden altar, the height of it three cubits, and the length two cubits, and the breadth two cubits; and it had horns, and the base of it and the sides of it were of wood: and he said to me, This is the table, which is before the face of the Lord. + +And the temple +had two doors, and the sanctuary +had two doors, with two turning leaves +apiece; + +two leaves to the one, and two leaves to the other door. + +And +there was carved work upon them, and cherubs on the doors of the temple, and palm-trees according to the carving of the sanctuary; and +there were stout planks in front of the porch without. + +And +there were secret windows; and he measured from side to side, to the roofing of the porch; and the sides of the house were closely planked. + +

+ + +

And he brought me into the inner court eastward, opposite the northern gate: and he brought me in, and behold five chambers near the vacant space, and near the northern partition, + +one hundred cubits in length toward the north, and in breadth fifty, + +ornamented accordingly as the gates of the inner court, and arranged accordingly as the peristyles of the outer court, +with triple porticos fronting one another. + +And in front of the chambers was a walk ten cubits in breadth, the length +reaching to one hundred cubits; and their doors were northward. + +And the upper walks were in like manner: for the peristyle projected from it, +even from the range of columns below, and +there was a space between; so +were there a peristyle and a space between, and so +were there two porticos. + +For they were triple, and they had not pillars like the pillars of the outer ones: therefore they projected from the lower ones and the middle ones from the ground. + +And +there was light without, corresponding to the chambers of the outer court looking toward the front of the northern chambers; the length +of them was fifty cubits. + +For the length of the chambers looking toward the inner court was fifty cubits, and these are the ones that front the others; the whole was one hundred cubits. + +And +there were doors of these chambers for an outlet toward the east, so that one should go through them out of the outer court, + +by the opening of the walk at the corner; and the south parts were toward the south, toward the remaining space, and toward the partition, and +so were the chambers. + +And the walk was in front of them, according to the measures of the chambers toward the north, both according to the length of them, and according to the breadth of them, and according to all their openings, an according to all their turnings, and according to their lights, and according to their doors. + + +So were the measures of the chambers toward the south, and according to the doors at the entrance of the walk, as it were the distance of a reed for light, and eastward as one went in by them. + +And he said to me, The chambers toward the north, and the chambers toward the south, in front of the void spaces, these are the chambers of the sanctuary, wherein the priests the sons of Sadduc, who draw near to the Lord, shall eat the most holy things: and there shall they lay the most holy things, and the meat-offering, and the sin-offerings, and the trespass-offerings; because the place is holy. + +None shall go in there except the priests, +and they shall not go forth of the holy place into the outer court, that they that draw near +to me may be continually holy, and may not touch their garments in which they minister, +with defilement, for they are holy; and they shall put on other garments whenever they come in contact with the people. + +So the measurement of the house within was accomplished: and he brought me forth by the way of the gate that looks eastward, and measured the plan of the house round about in order. + +And he stood behind the gate looking eastward, and measured five hundred +cubits with the measuring reed. + +And he turned to the north and measured in front of the north +side five hundred cubits with the measuring reed. + +And he turned to the west, and measured in front of the west side, five hundred +cubits with the measuring reed. + +And he turned to the south, and measured in front of the south side, five hundred +cubits by the measuring reed. + +The +four sides he measured by the same reed, and he marked out the house and the circumference of the parts round about, +a space of five hundred +cubits eastward, and a breadth of five hundred cubits, to make a division between the sanctuary and the outer wall, that +belonged to the design of the house. + +

+ + +

Moreover he brought me to the gate looking eastward, and led me forth. + +And, behold, the glory of the God of Israel came by the eastern way; and +there was a voice of an army, as the sound of many redoubling +their shouts, and the earth shone like light from the glory round about. + +And the vision which I saw was like the vision which I saw when I went in to anoint the city: and the vision of the chariot which I saw was like the vision which I saw at the river Chobar; and I fell upon my face. + +And the glory of the Lord came into the house, by the way of the gate looking eastward. + +And the Spirit took me up, and brought me into the inner court; and, behold, the house of the Lord was full of glory. + +And I stood, and behold +there was a voice out of the house of one speaking to me, and a man stood near me, + +and he said to me, Son of man, you have seen the place of my throne, and the place of the soles of my feet, in which my name shall dwell in the midst of the house of Israel for ever; and the house of Israel shall no more profane my holy name, they and their princes, by their fornication, or by the murders of +their princes in the midst of them; + +when they set my door-way by their door-way, and my thresholds near to their thresholds: and they made my wall as it were joining myself and them, and they profaned my holy name with their iniquities which they wrought: and I destroyed them in my wrath and with slaughter. + +And now let them put away from me their fornication, and the murders of their princes, and I will dwell in the midst of them forever. + +And you, son of man, show the house to the house of Israel, that they may cease from their sins; and +show its aspect and the arrangement of it. + +And they shall bear their punishment for all the things that they have done: and you shall describe the house, and its entrances, and the plan thereof, and all its ordinances, and you shall make known to them all the regulations of it, and describe +them before them: and they shall keep all my commandments, and all my ordinances, and do them. + +And you shall show the plan of the house on the top of the mountain: all its limits round about +shall be most holy. + +And these are the measures of the altar by the cubit of a cubit and a span, the cavity +shall be a cubit deep, and a cubit shall be the breadth, and the border on the rim of it round about shall be a span: and this +shall be the height of the altar + +from the bottom at the commencement of the hollow part to this great mercy-seat, from beneath was two cubits, and the breadth was a cubit; and from the little mercy-seat to the great mercy-seat, four cubits, and the breadth was a cubit. + +And the altar +shall be four cubits; and from the altar and above the horns a cubit. + +And the altar +shall be of the length of twelve cubits, by twelve cubits +in breadth, square upon its four sides. + +And the mercy-seat +shall be fourteen cubits in length, by fourteen cubits in breadth on its four sides; and +there shall be a border to it carried round about it of half a cubit; and the rim of it +shall be a cubit round about; and the steps thereof looking eastward. + +And he said to me, Son of man, thus says the Lord God of Israel; These are the ordinances of the altar in the day of its being made, to offer upon it whole burnt offerings, and to pour blood upon it. + +And you shall appoint to the priests the Levites of the seed of Sadduc, that draw near to me, says the Lord God, to minister to me, a calf of the herd for a sin-offering. + +And they shall take of its blood, and shall put +it on the four horns of the altar, and upon the four corners of the propitiatory, and upon the base round about, and they shall make atonement for it. + +And they shall take the calf of the sin-offering, and it shall be consumed by fire in the separate place of the house, outside the sanctuary. + +And on the second day they shall take two kids of the goats without blemish for a sin-offering; and they shall make atonement for the altar, as they made atonement with the calf. + +And after they have finished the atonement, they shall bring an unblemished calf of the herd, and an unblemished ram of the flock. + +And you⌃ shall offer +them before the Lord, and the priests shall sprinkle salt upon them, and shall offer them up +as whole burnt offerings to the Lord. + +Seven days shall you offer a kid daily for a sin-offering, and a calf of the herd, and a ram out of the flock: they shall sacrifice them unblemished for seven days: + +and they shall make atonement for the altar, and shall purge it; and they shall consecrate themselves. + +And it shall come to pass from the eighth day and onward, +that the priests shall offer your whole burnt offerings on the altar, and your peace-offerings; and I will accept you, says the Lord. + +

+ + +

Then he brought me back by the way of the outer gate of the sanctuary that looks eastward; and it was shut. + +And the Lord said to me, This gate shall be shut, it shall not be opened, and no one shall pass through it; for the Lord God of Israel shall enter by it, and it shall be shut. + +For the prince, he shall sit in it, to eat bread before the Lord; he shall go in by the way of the porch of the gate, and shall go forth by the way of the same. + +And he brought me in by the way of the gate that looks northward, in front of the house: and I looked, and, behold, the house was full of the glory of the Lord: and I fell upon my face. + +And the Lord said to me, Son of man, attend with your heart, and see with +your eyes, and hear with your ears all that I say to you, according to all the ordinances of the house of the Lord, and all the regulations thereof; and you shall attend well to the entrance of the house, according to all its outlets, in all the holy things. + +And you shall say to the provoking house, +even to the house of Israel, Thus says the Lord God; Let it suffice you +to have committed all your iniquities, O house of Israel! + +that you⌃ have brought in aliens, uncircumcised in heart, and uncircumcised in flesh, to be in my sanctuary, and to profane it, when you⌃ offered bread, flesh, and blood; and you⌃ transgressed my covenant by all your iniquities; + +and you⌃ appointed +others to keep the charges in my sanctuary. + +Therefore thus says the Lord God; No alien, uncircumcised in heart or uncircumcised in flesh, shall enter into my sanctuary, of all the children of strangers that are in the midst of the house of Israel. + +But as for the Levites who departed far from me when Israel went astray from me after their imaginations, they shall even bear their iniquity. + +yet they shall minister in my sanctuary, +being porters at the gates of the house, and serving the house: they shall kill the victims and the whole burnt offerings for the people, and they shall stand before the people to minister to them. + +Because they ministered to them before their idols, and it became to the house of Israel a punishment of iniquity; therefore have I lifted up my hand against them, says the Lord God. + +And they shall not draw near to me to minister to me in the priests' office, nor to approach the holy things of the children of Israel, nor +to approach my holy of holies: but they shall bear their reproach for the error wherein they erred. + +They shall bring them to keep the charges of the house, for all the service of it, and for all that they shall do. + +The priests the Levites, the sons of Sadduc, who kept the charges of my sanctuary when the house of Israel went astray from me, these shall draw near to me to minister to me, and shall stand before my face, to offer sacrifice to me, the fat and the blood, says the Lord God. + +These shall enter into my sanctuary, and these shall approach my table, to minister to me, and they shall keep my charges. + +And it shall come to pass when they enter the gates of the inner court, +that they shall put on linen robes; and they shall not put on woollen garments when they minister at the gate of the inner court. + +And they shall have linen mitres upon their heads, and shall have linen drawers upon their loins; and they shall not tightly gird themselves. + +And when they go out into the outer court to the people, they shall put off their robes, in which they minister; and they shall lay them up in the chambers of the sanctuary, and shall put on other robes, and they shall not sanctify the people with their robes. + +And they shall not shave their heads, nor shall they pluck off their hair; they shall carefully cover their heads. + +And no priest shall drink any wine, when they go into the inner court. + +Neither shall they take to themselves to wife a widow, or one that is put away, but a virgin of the seed of Israel: but if there should happen to be a priest's widow, they shall take +her. + +And they shall teach my people +to distinguish between holy and profane, and they shall make known to them +the difference between unclean and clean. + +And these shall attend at a judgment of blood to decide it: they shall rightly observe my ordinances, and judge my judgments, and keep my statutes and my commandments in all my feasts; and they shall hallow my sabbaths. + +And they shall not go in to the dead body of a man to defile themselves: only +a priest may defile himself for a father, or for a mother, or for a son, or for a daughter, or for a brother, or for his sister, who has not been married. + +And after he has been cleansed, let him number to himself seven days. + +And on whatever day they shall enter into the inner court to minister in the holy place, they shall bring a propitiation, says the Lord God. + +And it shall be to them for an inheritance: I am their inheritance: and no possession shall be given them among the children of Israel; for I am their possession. + +And these shall eat the meat-offerings, and the sin-offerings, and the trespass-offerings; and every special offering in Israel shall be theirs. + + +And the first fruits of all things, and the firstborn of all +animals and all offerings, of all your first fruits there shall be +a share for the priests; and you⌃ shall give your earliest produce to the priest, to bring your blessings upon your houses. + +And the priests shall eat no bird or beast that dies of itself, or is taken of wild beasts. + +

+ + +

And when you⌃ measure the land for inheritance, you⌃ shall set apart first fruits to the Lord, a holy space of the land, in length twenty and five thousand +reeds, and in breadth twenty thousand; it shall be holy in all the borders thereof round about. + +And there shall be a sanctuary out of this, five hundred +reeds in length by five hundred in breadth, a square round about; and +there shall be a vacant space +beyond this of fifty cubits round about. + +And out of this measurement shall you measure the length five and twenty thousand, and the breadth twenty thousand: and in it shall be the holy of holies. + +Of the land shall be +a portion for the priests that minister in the holy place, and it shall be for them that draw near to minister to the Lord: and it shall be to them a place for houses set apart for their sacred office; + +the length +shall be twenty-five thousand, and the breadth twenty thousand: and the Levites that attend the house, they shall have cities to dwell in for a possession. + +And you⌃ shall appoint +for the possession of the city five thousand in breadth, and in length twenty-five thousand: after the manner of the first fruits of the holy portion, they shall be for all the house of Israel. + +And the prince +shall have a portion out of this, and out of this +there shall be a portion for the first fruits of the sanctuary, +and for the possession of the city, in front of the first fruits of the sanctuary, and in front of the possession of the city westward, and from the western parts eastward: and the length +shall be equal to one of the parts of the western borders, and the length +shall be to the eastern borders of the land. + +And he shall have it for a possession in Israel: and the princes of Israel shall no more oppress my people; but the house of Israel shall inherit the land according to their tribes. + +Thus says the Lord God; Let it suffice you, you⌃ princes of Israel: remove injustice and misery, execute judgment and justice; take away oppression from my people, says the Lord God. + +You⌃ shall have a just balance, and a just measure, and a just choenix for measure. + +And in like manner there shall be one choenix as a measure of capacity; the tenth of the homer +shall be the choenix, and the tenth of the homer shall be in fair proportion to the homer. + +And the weights +shall be twenty oboli, your pound shall be five shekels, fifteen shekels and fifty shekels. + +And these are the first fruits which you⌃ shall offer; a sixth part of a homer of wheat, and the sixth part of it +shall consist of an ephah of a core of barley. + +And +you⌃ shall give as the appointed measure of oil one bath of oil out of ten baths; for ten baths are a homer. + +And one sheep from the flock out of ten, as an oblation from all the tribes of Israel, for sacrifices, and for whole burnt offerings, and for peace-offerings, to make atonement for you, says the Lord God. + +And all the people shall give these first fruits to the prince of Israel. + +And through the prince shall be +offered the whole burnt offerings and the meat-offerings, and the drink-offerings in the feasts, and at the new moons, and on the sabbaths; and in all the feasts of the house of Israel: he shall offer the sin-offerings, and the meat-offering, and the whole burnt offerings, and the peace-offerings, to make atonement for the house of Israel. + +Thus says the Lord God; In the first month, on the first +day of the month, you⌃ shall take a calf without blemish out of the herd, to make atonement for the holy place. + +And the priest shall take of the blood of the atonement, and put it on the thresholds of the house, and upon the four corners of the temple, and upon the altar, and upon the thresholds of the gate of the inner court. + +And thus shall you do in the seventh month; on the first +day of the month you shall take a rate from each one; and you⌃ shall make atonement for the house. + +And in the first +month, on the fourteenth +day of the month, you⌃ shall have the feast of the passover; seven days shall you⌃ eat unleavened bread. + +And the prince shall offer in that day a calf for a sin-offering for himself, and the house, and for all the people of the land. + +And for the seven days of the feast he shall offer as whole burnt offerings to the Lord seven calves and seven rams without blemish daily for the seven days; and a kid of the goats daily for a sin-offering, and a meat-offering. + +And you shall prepare a cake for the calf, and cakes for the ram, and a hin of oil for the cake. + +And in the seventh month, on the fifteenth +day of the month, you shall sacrifice in the feast in the same way seven days, as +they sacrificed the sin-offerings, and the whole burnt offerings, and the free will offering, and the oil. + +

+ + +

Thus says the Lord God; The gate that is in the inner court, that looks eastward, shall be shut the six working days; +but let it be opened on the sabbath-day, and it shall be opened on the day of the new moon. + +And the prince shall enter by the way of the porch of the inner gate, and shall stand at the entrance of the gate, and the priests shall prepare his whole burnt offerings and his peace-offerings, and he shall worship at the entrance of the gate: then shall he come forth; but the gate shall not be shut till evening. + +And the people of the land shall worship at the entrance of that gate, both on the sabbaths and at the new moons, before the Lord. + +And the prince shall offer whole burnt offerings to the Lord on the sabbath-day, six lambs without blemish, and a ram without blemish; + +and a free will offering, a meat-offering for the ram, and a meat-offering for the lambs, the gift of his hand, and a hin of oil for the meat-offering. + +And on the day of the new moon a calf without blemish, and six lambs, and there shall be a ram without blemish; + +and a meat-offering for the ram, and there shall be a meat-offering for the calf as a free will offering, and for the lambs, according as his hand can furnish, and +there shall be a hin of oil for the cake. + +And when the prince goes in, he shall go in by the way of the porch of the gate, and he shall go forth by the way of the gate. + +And whenever the people of the land shall go in before the Lord at the feasts, he that goes in by the way of the north gate to worship shall go forth by the way of the south gate; and he that goes in by the way of the south gate shall go forth by the way of the north gate: he shall not return by the gate by which he entered, but he shall go forth opposite it. + +And the prince shall enter with them in the midst of them when they go in; and when they go forth, he shall go forth. + +And in the feasts and in the general assemblies the free will oblation shall be a meat-offering for the calf, and a meat-offering for the ram, and for the lambs, as his hand can furnish, and a hin of oil for the meat-offering. + +And if the prince should prepare +as a thanksgiving a whole burnt-peace-offering to the Lord, and should open for himself the gate looking eastward, and offer his whole burnt offering, and his peace-offerings, as he does on the sabbath-day; then shall he go out, and shall shut the doors after he has gone out. + +And he shall prepare daily as a whole burnt offering to the Lord a lamb of a year old without blemish: in the morning shall he prepare it. + +And he shall prepare a free will offering for it in the morning, the sixth part of a measure +of flour, and a third part of a hin of oil to mix +therewith the fine flour, +as a free will offering to the Lord, a perpetual ordinance. + +You⌃ shall prepare the lamb, and the free will offering, and the oil in the morning, +for a perpetual whole burnt sacrifice. + +Thus says the Lord God; If the prince shall give a gift to one of his sons out of his inheritance, this shall be to his sons a possession +as an inheritance. + +But if he give a gift to one of his servants, then it shall belong to him until the year of release; and +then he shall restore +it to the prince: but of the inheritance of his sons +the possession shall continue to them. + +And the prince shall by no means take of the inheritance of the people, to oppress them: he shall give an inheritance to his sons out of his +own possession: that my people be not scattered, every one from his possession. + +And he brought me into the entrance of the +place behind the gate, into the chamber of the sanctuary belonging to the priests, that looks toward the north: and, behold, there was a place set apart. + +And he said to me, This is the place where the priests shall boil the trespass-offerings and the sin-offerings, and there shall they bake the meat-offering always; so as not to carry +them out into the outer court, to sanctify the people. + +And he brought me into the outer court, and led me round upon the four sides of the court; and, behold, there was a court on +each of the sides of the court, + +on +every side a court, +even a court for all the four +sides, and +each little court belonging to the court was in length forty cubits, and +in breadth thirty cubits, +there was one measure to the four. + +And +there were chambers in them round about, round about the four, and cooking-places formed under the chambers round about. + +And he said to me, These are the cooks' houses, where they that serve the house shall boil the sacrifices of the people. + +

+ + +

And he brought me to the entrance of the house; and, behold, water issued from under the porch eastward, for the front of the house looked eastward; and the water came down from the right side, from the south to the altar. + +And he brought me out by the way of the northern gate, and he led me round by the way outside to the gate of the court that looks eastward; and, behold, water came down from the right side, + +in +the direction in which a man went forth opposite; and +there was a measuring line in his hand, and he measured a thousand +cubits with the measure; + +and he passed through the water; +it was water of a fountain: and +again he measured a thousand, and passed through the water; and the water was up to the thighs: and +again he measured a thousand; and he passed through water up to the loins. + +and +again he measured a thousand; and he could not pass through: for +the water rose as of a torrent which +men can’t pass over. + +And he said to me, Have you seen +this, son of man? Then he brought me, and led me back to the brink of the river + +as I returned; and, behold, on the brink of the river +there were very many trees on this side and on that side. + +And he said to me, This is the water that goes forth to Galilee that lies eastward, and it is gone down to Arabia, and has reached as far as to the sea to the outlet of the water: and it shall heal the waters. + +And it shall come to pass, +that every animal of living +and moving creatures, all on which the river shall come, shall live: and there shall be there very many fish; for this water shall go there, and it shall heal +them, and they shall live: everything on which the river shall come shall live. + +And fishers shall stand there from Ingadin to Enagallim; it shall be a place to spread out nets upon; it shall be distinct; and the fishes thereof +shall be as the fishes of the great sea, a very great multitude. + +But at the outlet of the water, and the turn of it, and where it overflows +its banks, they shall not heal at all; they are given to salt. + +And every fruit tree shall grow by the river, +even on the bank of it on this side and on that side: they shall not decay upon it, neither shall their fruit fail: they shall bring forth the first-fruit of their early crop, for these their waters come forth of the sanctuary: and their fruit shall be for meat, and their foliage for health. + +Thus says the Lord God; You⌃ shall inherit these borders of the land; +they are given by lot to the twelve tribes of the children of Israel. + +And you⌃ shall inherit it, each according to his brother's portion, +even the land concerning which I lifted up my hand to give +it to your fathers: and this land shall fall to you by lot. + +And these are the borders of the land that lies northward, from the great sea that comes down, and divides the entrance of Emaseldam; + +Maabthera, Ebrameliam, between the coasts of Damascus and the coasts of Emathi, the habitation of Saunan, which +places are above the coasts of Auranitis. + +These are the borders from the sea, from the habitations of Aenan, the coasts of Damascus, and the northern +coasts. + +And the eastern coasts between Loranitis, and Damascus, and the land of Galaad, and the land of Israel, the Jordan divides to the sea that is east of the city of palm-trees. These are the eastern +coasts. + +And the southern and south-western +coasts are from Thaeman and the city of palm-trees, to the water of Marimoth Cadem, reaching forth to the great sea. This part is the south and southwest. + +This part of the great sea forms a border, till +one comes opposite the entrance of Emath, +even as far as the entrance thereof. These are the parts west of Emath. + +So you⌃ shall divide this land to them, +even to the tribes of Israel. + +You⌃ shall cast the lot upon it, for yourselves and the strangers that sojourn in the midst of you, who have begotten children in the midst of you: and they shall be to you as natives among the children of Israel; they shall eat with you in +their inheritance in the midst of the tribes of Israel. + +And they shall be in the tribe of proselytes among the proselytes that are with them: there shall you⌃ give them an inheritance, says the Lord God. + +

+ + +

And these are the names of the tribes from the northern corner, on the side of the descent that draws a line to the entrance of Emath the palace of Aelam, the border of Damascus northward on the side of Emath the palace; and they shall have the eastern parts as far as the sea, for Dan, one +portion. + +And from the borders of Dan eastward as far as the west sea-coast, for Asser, one. + +And from the borders of Asser, from the eastern parts as far as the west coasts, for Nephthalim, one. + +And from the borders of Nephthalim, from the east as far as the west coasts, for Manasse, one. + +And from the borders of Manasse, from the eastern parts as far as the west coasts, for Ephraim, one. + +And from the borders of Ephraim, from the eastern parts to the west coasts, for Ruben, one. + +And from the borders of Ruben, from the eastern parts as far as the west coasts, for Juda, one. + +And from the borders of Juda, from the eastern parts shall be the offering of first fruits, in the breadth twenty-five thousand +reeds, and in length as one of the portions +measured from the east even to the western parts: and the sanctuary shall be in the midst of them. + + +As for the first fruits which they shall offer to the Lord, +it shall be in length twenty-five thousand, and in breadth twenty-five thousand. + +Out of this shall be the first fruits of the holy things to the priests, northward, five and twenty-thousand, and towards the west, ten thousand, and southward, five and twenty thousand: and the mountain of the sanctuary, shall be in the midst of it, + +for the priests, for the consecrated sons of Sadduc, who keep the charges of the house, who erred not in the error of the children of Israel, as the Levites erred. + +And the first fruits shall be given to them out of the first fruits of the land, +even a most holy portion from the borders of the Levites. + +And the Levites +shall have the +part, next to the borders of the priests, in length twenty-five thousand, and in breadth ten thousand: the whole length +shall be five and twenty thousand, and the breadth twenty thousand. + +No +part of it shall be sold, nor measured +as for sale, neither shall the first fruits of the land be taken away: for they are holy to the Lord. + +But +concerning the five thousand that remain in the breadth in the five and twenty thousand, they shall be a suburb to the city for dwelling, and for a space before it: and the city shall be in the midst thereof. + +And these +shall be its dimensions; from the northern side four thousand and five hundred, and from the southern side four thousand and five hundred, and from the eastern side four thousand and five hundred, and from the western side +they shall measure four thousand five hundred. + +And there shall be a space to the city northward two hundred and fifty, and southward two hundred and fifty, and eastward two hundred and fifty, and westward two hundred and fifty. + +And the remainder of the length that is next to the first fruits of the holy +portion shall be ten thousand eastward, and ten thousand westward: and they shall be the first fruits of the sanctuary; and the fruits thereof shall be for bread to them that labor for the city. + +And they that labor for the city shall labor for it out of all the tribes of Israel. + +The whole offering +shall be a square of twenty-five thousand by twenty-five thousand: you⌃ shall separate +again part of it, the first fruits of the sanctuary, from the possession of the city. + +And the prince +shall have the remainder on this side and on that side from the first fruits of the sanctuary, and +there shall be a possession of the city, for five and twenty thousand cubits in length, to the eastern and western borders, for five and twenty thousand to the western borders, next to the portions of the prince; and the first fruits of the holy things and the sanctuary of the house +shall be in the midst of it. + +And there shall be +a portion taken from the Levites, from the possession of the city in the midst of the princes between the borders of Juda and the borders of Benjamin, and it shall be +the portion of the princes. + +And +as for the rest of the tribes, from the eastern parts as far as the western, Benjamin +shall have one +portion. + +And from the borders of Benjamin, from the eastern parts to the western, Symeon, one. + +And from the borders of Symeon, from the eastern parts to the western, Issachar, one. + +And from the borders of Issachar, from the eastern parts to the western, Zabulon, one. + +And from the borders of Zabulon, from the east to the western parts, Gad, one. + +And from the borders of Gad, from the eastern parts to the south-western parts; his coasts shall even be from Thaeman, and the water of Barimoth Cades, for an inheritance, to the great sea. + +This is the land, which you⌃ shall divide by lot to the tribes of Israel, and these are their portions, says the Lord God. + +And these are the goings out of the city northward, four thousand and five hundred by measure. + +And the gates of the city +shall be after the names of the tribes of Israel: three gates northward; the gate of Ruben, one, and the gate of Juda, one, and the gate of Levi, one. + +And eastward four thousand and five hundred: and three gates; the gate of Joseph, one, and the gate of Benjamin, one, and the gate of Dan, one. + +And southward, four thousand and five hundred by measure: and three gates; the gate of Symeon, one, and the gate of Issachar, one, and the gate of Zabulon, one. + +And westward, four thousand and five hundred by measure: +and three gates; the gate of Gad, one, and the gate of Asser, one, and the gate of Nephthalim, one. + +The circumference, eighteen thousand +measures: and the name of the city, from the day that it shall be finished, shall be the name thereof. + +

+
+ +Daniel +DANIEL +Daniel +DAN +

DANIEL +

+ + +

In the third year of the reign of Joakim king of Juda, came Nabuchodonosor king of Babylon to Jerusalem, and besieged it. + +And the Lord gave into his hand Joakim king of Juda, and part of the vessels of the house of God: and he brought them into the land of Sennaar to the house of his god; and he brought the vessels into the treasure-house of his god. + +And the king told Asphanez his chief eunuch, to bring in some of the captive children of Israel, and of the seed of the kingdom, and of the princes; + +young men in whom was no blemish, and beautiful in appearance, and skilled in all wisdom, and possessing knowledge, and acquainted with prudence, and who had ability to stand in the house before the king, and the king gave commandment to teach them the learning and language of the Chaldeans. + +And the king appointed them a daily portion from the king's table, and from the wine which he drank; and +gave orders to nourish them three years, and +that afterwards they should stand before the king. + +Now these were among them of the children of Juda, Daniel, and Ananias, and Azarias, and Misael. + +And the chief of the eunuchs gave them names: to Daniel, Baltasar; and to Ananias, Sedrach; and to Misael, Misach; and to Azarias, Abdenago. + +And Daniel purposed in his heart, that he would not defile himself with the king's table, nor with the wine of his drink: and he entreated the chief of the eunuchs that he might not defile himself. + +Now God +had brought Daniel into favor and compassion with the chief of the eunuchs. + +And the chief of the eunuchs said to Daniel, I fear my lord the king, who has appointed your meat and your drink, lest he see your countenances gloomy in comparison of the young men your equals; also shall you⌃ endanger my head to the king. + +And Daniel said to Amelsad, whom the chief of the eunuchs had appointed over Daniel, Ananias, Misael, +and Azarias. + +Prove now your servants ten days; and let them give us pulse, and let us eat, and let us drink water: + +And let our countenances be seen by you, and the countenances of the children that eat +at the king's table; and deal with your servants according as you shall see. + +And he listened to them, and proved them ten days. + +And at the end of the ten days their countenances appeared fairer and stouter in flesh, than the children that fed at the king's table. + +So Amelsad took away their supper and the wine of their drink, and gave them pulse. + +And +as for these four children, God gave them understanding and prudence in all learning and wisdom: and Daniel had understanding in all visions and dreams. + +And at the end of the days, +after which the king had given orders to bring them in, then the chief of the eunuchs brought them in before Nabuchodonosor. + +And the king spoke with them; and there were not found out of them all any like Daniel, and Ananias and Misael, and Azarias: and they stood before the king. + +And in every matter of wisdom and knowledge wherein the king questioned them, he found them ten times wiser than all the enchanters and sorcerers that were in all his kingdom. + +And Daniel continued till the first year of king Cyrus. + +

+ + +

In the second year of +his reign Nabuchodonosor dreamed a dream, and his spirit was amazed, and his sleep departed from him. + +And the king gave orders to call the enchanters, and the magicians, and the sorcerers, and the Chaldeans, to declare to the king his dreams. And they came and stood before the king. + +And the king said to them, I have dreamed, and my spirit was troubled to know the dream. + +And the Chaldeans spoke to the king in the Syrian language, +saying, O king, live for ever: do you tell the dream to your servants, and we will declare the interpretation. + +The king answered the Chaldeans, The thing has departed from me: if you⌃ do not make known to me the dream and the interpretation, you⌃ shall be destroyed, and your houses shall be spoiled. + +But if you⌃ make known to me the dream, and the interpretation thereof, you⌃ shall receive of me gifts and presents and much honor: only tell me the dream, and the interpretation thereof. + +They answered the second time, and said, Let the king tell the dream to his servants, and we will declare the interpretation. + +And the king answered and said, I verily know that you⌃ are trying to gain time, because you⌃ see that the thing has gone from me. + +If then you⌃ do not tell me the dream, I know that you⌃ have concerted to utter before me a false and corrupt tale, until the time shall have past: tell me my dream, and I shall know that you⌃ will also declare to me the interpretation thereof. + +The Chaldeans answered before the king, and said, There is no man upon the earth, who shall be able to make known the king's matter: forasmuch as no great king or ruler asks such a question of an enchanter, magician, or Chaldean. + +For the question which the king asks is difficult, and there is no one else who shall answer it before the king, but the gods, whose dwelling is not with any flesh. + +Then the king in rage and anger commanded to destroy all the wise men of Babylon. + +So the decree went forth, and they began to kill the wise men; and they sought Daniel and his fellows to kill +them. + +Then Daniel answered +with counsel and prudence to Arioch the captain of the royal guard, who was gone forth to kill the wise men of Babylon; +saying, + +Chief magistrate of the king, therefore has the preemptory command proceeded from the king? So Arioch made known the matter to Daniel. + +And Daniel entreated the king to give him time, and that he might +thus declare to the king the interpretation of it. + +So Daniel went into his house, and made known the matter to Ananias, and Misael, and Azarias, his friends. + +And they sought mercies from the God of heaven concerning this mystery; that Daniel and his friends might not perish with the rest of the wise men of Babylon. + +Then the mystery was revealed to Daniel in a vision of the night; and Daniel blessed the God of heaven, and said, + +May the name of God be blessed from everlasting and to everlasting: for wisdom and understanding are his. + +And he changes times and seasons: he appoints kings, and removes +them, giving wisdom to the wise, and prudence to them that have understanding: + +he reveals deep and secret +matters; knowing what is in darkness, and the light is with him. + +I give thanks to you, and praise +you, O God of my fathers, for you have given me wisdom and power, and has made known to me the things which we asked of you; and you have made known to me the king's vision. + +And Daniel came to Arioch, whom the king had appointed to destroy the wise men of Babylon, and said to him; Destroy not the wise men of Babylon, but bring me in before the king, and I will declare the interpretation to the king. + +Then Arioch in haste brought in Daniel before the king, and said to him, I have found a man of the children of the captivity of Judea, who will declare the interpretation to the king. + +And the king answered and said to Daniel, whose name was Baltasar, Canst you declare to me the dream which I saw, and the interpretation thereof? + +And Daniel answered before the king, and said, The mystery which the king asks +the explanation of is not +in the power of the wise men, magicians, enchanters, +or soothsayers to declare to the king. + +But there is a God in heaven revealing mysteries, and he has made known to king Nabuchodonosor what things must come to pass in the last days. Your dream, and the visions of your head upon your bed, are as follows, + +O king: your thoughts upon your bed arose +as to what must come to pass hereafter: and he that reveals mysteries has made known to you what must come to pass. + +Moreover, this mystery has not been revealed to me by reason of wisdom which is in me beyond all +others living, but for the sake of making known the interpretation to the king, that you might know the thoughts of your heart. + +You, O king, saw, and behold an image: that image was great, and the appearance of it excellent, standing before your face; and the form of it was terrible. + + +It was an image, the head of which was of fine gold, its hands and breast and arms of silver, +its belly and thighs of brass, + +its legs of iron, its feet, part of iron and part of earthenware. + +You saw until a stone was cut out of a mountain without hands, and it struck the image upon its feet of iron and earthenware, and utterly reduced them to powder. + +Then once for all the earthenware, the iron, the brass, the silver, the gold, were ground to powder, and became as chaff from the summer threshing floor; and the violence of the wind carried them away, and no place was found for them: and the stone which had struck the image became a great mountain, and filled all the earth. + +This is the dream; and we will tell the interpretation thereof before the king. + +You, O king, are a king of kings, to whom the God of heaven has given a powerful and strong and honorable kingdom, + +in every place where the children of men dwell: and he has given into your hand the wild beasts of the field, and the birds of the sky and the fish of the sea, and he has made you lord of all. + +You are the head of gold. And after you shall arise another kingdom inferior to you, an a third kingdom which is the brass, which shall have dominion over all the earth; + +and a fourth kingdom, which shall be strong as iron: as iron beats to powder and subdues all things, so shall it beat to powder and subdue. + +And whereas you saw the feet and the toes, part of earthenware and part of iron, the kingdom shall be divided; yet there shall be in it of the strength of iron, as you saw the iron mixed with earthenware. + +And +whereas the toes of the feet were part of iron and part of earthenware, part of the kingdom shall be strong, and +part of it shall be broken. + +Whereas you saw the iron mixed with earthenware, they shall be mingled with the seed of men: but they shall not cleave together, as the iron does not mix itself with earthenware. + +And in the days of those kings the God of heaven shall set up a kingdom which shall never be destroyed: and his kingdom shall not be left to another people, +but it shall beat to pieces and grind to powder all +other kingdoms, and it shall stand for ever. + +Whereas you saw that a stone was cut out of a mountain without hands, and it beat to pieces the earthenware, the iron, the brass, the silver, the gold; the great God has made known to the king what must happen hereafter: and the dream is true, and the interpretation thereof sure. + +Then king Nabuchodonosor fell upon his face, and worshipped Daniel, and gave orders to offer to him gifts and incense. + +And the king answered and said to Daniel, Of a truth your God is a God of gods, and Lord of kings, who reveals mysteries; for you have been able to reveal this mystery. + +And the king promoted Daniel, and gave him great and abundant gifts, and set him over the whole province of Babylon, and +made him chief satrap over all the wise men of Babylon. + +And Daniel asked of the king, and he appointed Sedrach, Misach, and Abdenago, over the affairs of the province of Babylon: but Daniel was in the king's palace. + +

+ + +

In +his eighteenth year Nabuchodonosor the king made a golden image, its height was sixty cubits, its breadth six cubits: and he set it up in the plain of Deira, in the province of Babylon. + +And he sent forth to gather the governors, and the captains, and the heads of provinces, chiefs, and princes, and those who were in authority, and all the rulers of districts, to come to the dedication of the image. + +So the heads of provinces, the governors, the captains, the chiefs, the great princes, those who were in authority, and all the rulers of districts, were gathered to the dedication of the image which king Nabuchodonosor had set up; and they stood before the image. + +Then a herald cried aloud, To you it is commanded, you⌃ peoples, tribes, +and languages, + +at what hour you⌃ shall hear the sound of the trumpet, and pipe, and harp, and sackbut, and lute, and every kind of music, you⌃ shall fall down and worship the golden image which king Nabuchodonosor has set up. + +And whoever shall not fall down and worship, in the same hour he shall be cast into the burning fiery furnace. + +And it came to pass when the nations heard the sound of the trumpet, and pipe, and harp, and sackbut, and lute, and all kinds of music, all the nations, tribes, +and languages, fell down and worshipped the golden image which king Nabuchodonosor had set up. + +Then came near +certain Chaldeans, and accused the Jews to the king, +saying, + +O king, live for ever. + +You, O king, have made a decree that every man who shall hear the sound of the trumpet, and pipe, and harp, sackbut, and lute, and all kinds of music, + +and shall not fall down and worship the golden image, shall be cast into the burning fiery furnace. + +There are +certain Jews whom you have appointed over the affairs of the province of Babylon, Sedrach, Misach, +and Abdenago, who have not obeyed your decree, O king: they serve not your gods, and worship not the golden image which you have set up. + +Then Nabuchodonosor in wrath and anger commanded to bring Sedrach, Misach, and Abdenago: and they were brought before the king. + +And Nabuchodonosor answered and said to them, Is it true, Sedrach, Misach, +and Abdenago, that you⌃ serve not my gods, and worship not the golden image which I have set up? + +Now then if you⌃ be ready, whenever you⌃ shall hear the sound of the trumpet, and pipe, and harp, and sackbut, and lute, and harmony, and every kind of music, to fall down and worship the golden image which I have made; +well: but if you⌃ worship not, in the same hour you⌃ shall be cast into the burning fiery furnace; and who is the God that shall deliver you out of my hand? + +Then answered Sedrach, Misach +and Abdenago and said to king Nabuchodonosor, We have no need to answer you concerning this matter. + +For our God whom we serve is in the heavens, able to deliver us from the burning fiery furnace, and he will rescue us from your hands, O king. + +But if not, be it known to you, O king, that we +will not serve your gods, nor worship the image which you have set up. + +Then Nabuchodonosor was filled with wrath, and the form of his countenance was changed toward Sedrach, Misach, and Abdenago: and he gave orders to heat the furnace seven times +more than usual, until it should burn to the uttermost. + +And he commanded mighty men to bind Sedrach, Misach, and Abdenago, and to cast +them into the burning fiery furnace. + +Then those men were bound with their coats, and caps, and hose, and were cast into the midst of the burning fiery furnace, + +forasmuch as the king's word prevailed; and the furnace was made exceeding hot. + +Then these three men, Sedrach, Misach, and Abdenago, fell bound into the midst of the burning furnace, and walked in the midst of the flame, singing praise to God, and blessing the Lord. + +And Nabuchodonosor heard them singing praises; and he wondered, and rose up in haste, and said to his nobles, Did we not cast three men bound into the midst of the fire? and they said to the king, Yes, O king. + +And the king said, But I see four men loose, and walking in the midst of the fire, and there has no harm happened to them; and the appearance of the fourth is like the Son of God. + +Then Nabuchodonosor drew near to the door of the burning fiery furnace, and said, Sedrach, Misach, +and Abdenago, you⌃ servants of the most high God, proceed forth, and come here. So Sedrach, Misach, +and Abdenago, came forth out of the midst of the fire. + +Then were assembled the satraps, and captains, and heads of provinces, and the royal princes; and they saw the men, +and perceived that the fire had not had power against their bodies, and the hair of their head was not burnt, and their coats were not scorched, nor was the smell of fire upon them. + +And king Nabuchodonosor answered and said, Blessed be the God of Sedrach, Misach, +and Abdenago, who has sent his angel, and delivered his servants, because they trusted in him; and they have changed the king's word, and delivered their bodies to be burnt, that they might not serve nor worship any god, except their own God. + +Therefore I publish a decree: Every people, tribe, +or language, that shall speak reproachfully against the God of Sedrach, Misach, +and Abdenago shall be destroyed, and their houses shall be plundered: because there is no other God who shall be able to deliver thus. + +Then the king promoted Sedrach, Misach, +and Abdenago, in the province of Babylon, and advanced them, and gave them authority to rule over all the Jews who were in his kingdom. + +King Nabuchodonosor to all nations, tribes, and tongues, who dwell in all the earth; Peace be multiplied to you. + +It seemed good to me to declare to you the signs and wonders which the most high God has wrought with me, + +how great and mighty +they are: his kingdom is an everlasting kingdom, and his power to all generations. + +

+ + +

I Nabuchodonosor was thriving in my house, and prospering. + +I saw a vision, and it terrified me, and I was troubled on my bed, and the visions of my head troubled me. + +And I made a decree to bring in before me all the wise men of Babylon, that they might make known to me the interpretation of the dream. + +So the enchanters, magicians, soothsayers, +and Chaldeans came in: and I told the dream before them; but they did not make known to me the interpretation thereof; + +until Daniel came, whose name is Baltasar, according to the name of my God, who has within him the Holy Spirit of God; to whom I said, + +O Baltasar, chief of the enchanters, of whom I know that the Holy Spirit of God is in you, and no mystery is too hard for you, hear the vision of my dream which I had, and tell me the interpretation of it. + +I had a vision upon my bed; and behold a tree in the midst of the earth, and its height was great. + +The tree grew large and strong, and its height reached to the sky, and its extent to the extremity of the whole earth: + +its leaves were fair, and its fruit abundant, and in it was meat for all; and under it the wild beasts of the field took shelter, and the birds of the sky lodged in the branches of it, and all flesh was fed of it. + +I saw in the night vision upon my bed, and, behold, a watcher and an holy one came down from heaven and cried aloud, and thus he said, + +Cut down the tree, and pluck off its branches, and shake off its leaves, and scatter its fruit: let the wild beasts be removed from under it, and the birds from its branches. + +Only leave the stump of its roots in the earth, and +bind it with an iron and brass band; and it shall lie in the grass that is without and in the dew of heaven, and its portion +shall be with the wild beasts in the grass of the field. + +His heart shall be changed from that of man, and the heart of a wild beast shall be given to him; and seven times shall pass over him. + +The matter is by the decree of the watcher, and the demand is a word of the holy ones; that the living may known that the Lord is most high +over the kingdom of men, and he will give it to whoever he shall please, and will set up over it that which is set at nothing of men. + +This is the vision which I king Nabuchodonosor saw: and do you, Baltasar, declare the interpretation, for none of the wise men of my kingdom are able to show me the interpretation of it: but you, Daniel, are able; for the Holy Spirit of God is in you. + +Then Daniel, whose name is Baltasar, was amazed about one hour, and his thoughts troubled him. And Baltasar answered and said, +My lord, let the dream be to them that hate you, and the interpretation of it to your enemies. + +The tree which you saw, that grew large and strong, whose height reached to the sky and its extent to all the earth; + +and whose leaves were flourishing, and its fruit abundant, (and it was meat for all; under it the wild beasts lodged, and the birds of the sky took shelter in its branches:) + +is yourself, O king; for you are grown great and powerful, and your greatness has increased and reached to heaven, and your dominion to the ends of the earth. + +And whereas the king saw a watcher and a holy one coming down from heaven, and he said, Strip the tree, and destroy it; only leave the stump of its roots in the ground, and +bind it with a band of iron and brass; and it shall lie in the grass that is without, and in the dew of heaven, and its portion shall be with wild beasts, until seven times have passed over it; + +this is the interpretation of it, O king, and it is a decree of the Most High, which has come upon my lord the king. + +And they shall drive you forth from men, and your dwelling shall be with wild beasts, and they shall feed you with grass as an ox, and you shall have your lodging under the dew of heaven, and seven times shall pass over you, until you known that the Most High is Lord of the kingdom of men, and will give it to whom he shall please. + +And whereas they said, Leave the stumps of the roots of the tree; your kingdom abides +sure to you from the time that you shall know the power of the heavens. + +Therefore, O king, let my counsel please you, and atone for your sins by alms, and +your iniquities by compassion on the poor: it may be God will be longsuffering to your trespasses. + +All these things came upon king Nabuchodonosor. + +After a twelvemonth, as he walked in his palace in Babylon, + +the king answered and said, Is not this great Babylon, which I have built for a royal residence, by the might of my power, for the honor of my glory? + +While the word was yet in the king's mouth, there came a voice from heaven, +saying, To you, king Nabuchodonosor, they say, The kingdom has departed from you. + +And they +shall drive you from men, and your dwelling shall be with the wild beasts of the field, and they shall feed you with grass as an ox: and seven times shall pass over you, until you know that the Most High is Lord of the kingdom of men, and he will give it to whoever he shall please. + +In the same hour the word was fulfilled upon Nabuchodonosor: and he was driven forth from men, and he ate grass as an ox, and his body was bathed with the dew of heaven, until his hairs were grown like lions' +hairs, and his nails as birds' +claws. + +And at the end of the time I Nabuchodonosor lifted up my eyes to heaven, and my reason returned to me, and I blessed the Most High, and praised him that lives for ever, and gave +him glory; for his dominion is an everlasting dominion, and his kingdom +lasts to all generations: + +and all the inhabitants of the earth are reputed as nothing: and he does according to his will in the army of heaven, and among the inhabitants of the earth: and there is none who shall withstand his power, and say to him, What has you done? + +At the same time my reason returned to me, and I came to the honor of my kingdom; and my +natural form returned to me, and my princes, and my nobles, sought me, and I was established in my kingdom, and more abundant majesty was added to me. + +Now therefore I Nabuchodonosor praise and greatly exalt and glorify the King of heaven; for all his works are true, and his paths are judgment: and all that walk in pride he is able to abase. + +

+ + +

Baltasar the king made a great supper for his thousand nobles, and +there was wine before the thousand. + +And Baltasar drinking gave orders as he tasted the wine that they should bring the gold and silver vessels, which Nabuchodonosor his father had brought forth from the temple in Jerusalem; that the king, and his nobles, and his mistresses, and his concubines, should drink out of them. + +So the gold and silver vessels were brought which +Nabuchodonosor had taken out of the temple of God in Jerusalem; and the king, and his nobles, and his mistresses, and his concubines, drank out of them. + +They drank wine, and praised the gods of gold, and of silver, and of brass, and of iron, and of wood, and of stone. + +In the same hour came forth fingers of a man's hand, and wrote in front of the lamp on the plaster of the wall of the king's house: and the king saw the knuckles of the hand that wrote. + +Then the king's countenance changed, and his thoughts troubled him, and the joints of his loins were loosed, and his knees struck one another. + +And the king cried aloud to bring in the magicians, Chaldeans, +and soothsayers; and he said to the wise men of Babylon, Whosoever shall read this writing, and make known to me the interpretation, shall be clothed with scarlet, and +there shall be a golden chain upon his neck, and he shall be the third ruler in my kingdom. + +Then came in all the king's wise men: but they could not read the writing, nor make known the interpretation to the king. + +And king Baltasar was troubled, and his countenance changed upon him, and his nobles were troubled with him. + +Then the queen came into the banquet house, and said, O king, live for ever: let not your thoughts trouble you, and let not your countenance be changed. + +There is a man in your kingdom, in whom is the Spirit of God; and in the days of your father watchfulness and understanding were found in him; and king Nabuchodonosor your father made him chief of the enchanters, magicians, Chaldeans, +and soothsayers. + +For +there is an excellent spirit in him, and sense and understanding in him, interpreting dreams +as he does, and answering hard +questions, and solving difficulties: +it is Daniel, and the king gave him the name of Baltasar: now then let him be called, and he shall tell you the interpretation of the writing. + +Then Daniel was brought in before the king: and the king said to Daniel, Are you Daniel, of the children of the captivity of Judea, which the king my father brought? + +I have heard concerning you, that the Spirit of God is in you, and +that watchfulness and understanding and excellent wisdom have been found in you. + +And now, the wise men, magicians, +and soothsayers, have come in before me, to read the writing, and make known to me the interpretation: but they could not tell it me. + +And I have heard concerning you, that you are able to make interpretations: now then if you shall be able to read the writing, and to make known to me the interpretation of it, you shall be clothed with purple, and there shall be a golden chain upon your neck, and you shall be third ruler in my kingdom. + +And Daniel said, before the king, Let your gifts be to yourself, and give the present of your house to another; but I will read the writing, and will make known to you the interpretation of it. + +O king, the most high God gave to your father Nabuchodonosor a kingdom, and majesty, and honor, and glory: + +and by reason of the majesty which he gave to him, all nations, tribes, +and languages trembled and feared before him: whom he would he killed; and whom he would he struck; and whom he would he exalted; and whom he would he abased. + +But when his heart was lifted up, and his spirit was emboldened to act proudly, he was deposed from his royal throne, and +his honor was taken from him. + +And he was driven forth from men; and his heart was given him after the nature of wild beasts, and his dwelling was with the wild asses; and they fed him with grass as an ox, and his body was bathed with the dew of heaven; until he knew that the most high God is Lord of the kingdom of men, and will give it to whoever he shall please. + +And you accordingly, his son, O Baltasar, has not humbled your heart before God: know you not all this? + +And you have been exalted against the Lord God of heaven; and they have brought before you the vessels of his house, and you, and your nobles, and your mistresses, and your concubines, have drunk wine out of them; and you have praised the gods of gold, and silver, and brass, and iron, and wood, and stone, which see not, and which hear not, and know not: and the God in whose hand are your breath, and all your ways has you not glorified. + +Therefore from his presence has been sent forth the knuckle of a hand; and he has ordered the writing. + +And this is the ordered writing, Mane, Thekel, Phares. + +This is the interpretation of the sentence: Mane; God has measured your kingdom, and finished it. + +Thekel; it has been weighed in the balance, and found lacking. + +Phares; your kingdom is divided, and given to the Medes and Persians. + +Then Baltasar commanded, and they clothed Daniel with scarlet, and put the golden chain about his neck, and proclaimed concerning him that he was the third ruler in the kingdom. + +In the same night was Baltasar the Chaldean king slain. + +And Darius the Mede succeeded to the kingdom, being sixty-two years +old. + +

+ + +

And it pleased Darius, and he set over the kingdom one hundred and twenty satraps, to be in all his kingdom; + +and over them three governors, of whom one was, Daniel; for the satraps to give account to them, that the king should not be troubled. + +And Daniel was over them, for +there was an excellent spirit in him; and the king set him over all his kingdom. + +Then the governors and satraps sought to find occasion against Daniel; but they found against him no occasion, nor trespass, nor error, because he was faithful. + +And the governors said, We shall not find occasion against Daniel, except in the ordinances of his God. + +Then the governors and satraps stood by the king, and said to him, King Darius, live for ever. + +All who preside over your kingdom, captains and satraps, chiefs and local governors, have taken counsel together, to establish by a royal statue and to confirm a decree, that whoever shall ask a petition of any god or man for thirty days, save of you, O king, shall be cast into the den of lions. + +Now then, O king, establish the decree, and publish a writ, that the decree of the Persians and Medes be not changed. + +Then king Darius commanded the decree to be written. + +And when Daniel knew that the decree was ordered, he went into his house; and his windows were opened in his chambers toward Jerusalem, and three times in the day he knelt upon his knees, and prayed and gave thanks before his God, as he used to do before. + +Then these men watched, and found Daniel praying and supplicating to his God. + +And they came and said to the king, O king, has you not made a decree, that whatever man shall ask a petition of any god or man for thirty days, but of you, O king, shall be cast into the den of lions? And the king said, The word is true, and the decree of the Medes and Persians shall not pass. + +Then they answered and said before the king, Daniel of the children of the captivity of Judea, has not submitted to your decree; and three times in the day he makes his requests of his God. + +Then the king, when he heard the saying, was much grieved for Daniel and he greatly exerted himself for Daniel to deliver him: and he exerted himself till evening to deliver him. + +Then those men said to the king, Know, O king, that the law of the Medes and Persians is that we must not change any decree of statue which the king shall make. + +Then the king commanded, and they brought Daniel, and cast him into the den of lions. But the king said to Daniel, Your God whom you serve continually, he will deliver you. + +And they brought a stone, and put it on the mouth of the den; and the king sealed +it with his ring, and with the ring of his nobles; that the case might not be altered with regard to Daniel. + +And the king departed to his house, and lay down fasting, and they brought him no food; and his sleep departed from him. But God shut the mouths of the lions, and they not molest Daniel. + +Then the king arose very early in the morning, and came in have to the den of lions. + +And when he drew near to the den, he cried with a loud voice, Daniel, servant of the living God, has your God, whom you serve continually, been able to deliver you from the lion's mouth? + +And Daniel said to the king, O king, live for ever. + +My God has sent his angel, and stopped the lions' mouths, and they have not hurt me: for uprightness was found in me before him; and moreover before you, O king, I have committed no trespass. + +Then the king was very glad for him, and he commanded to bring Daniel out of the den. So Daniel was brought out of the den, and there was found no hurt upon him, because he believed in his God. + +And the king commanded, and they brought the men that had accused Daniel, and they were cast into the den of lions, they, and their children, and their wives: and they reached not the bottom of the den before the lions had the mastery of them, and utterly broke to pieces all their bones. + +Then king Darius wrote to all nations, tribes, +and languages, who dwell in all the earth, +saying, Peace be multiplied to you. + +This decree has been set forth by me in every dominion of my kingdom, that +men tremble and fear before the God of Daniel: for he is the living and eternal God, and his kingdom shall not be destroyed, and his dominion is for ever. + +He helps and delivers, and works signs and wonders in the heaven and on the earth, who has rescued Daniel from the power of the lions. + +And Daniel prospered in the reign of Darius, and in the reign of Cyrus the Persian. + +

+ + +

In the first year of Baltasar, king of the Chaldeans Daniel had a dream, and visions of his head upon his bed: and he wrote his dream. + +I Daniel looked, and, behold, the four winds of heaven blew violently upon the great sea. + +And there came up four great beasts out of the sea, differing from one another. + +The first +was as a lioness, and her wings as an eagle's; I saw until her wings were plucked, ands she was lifted off from the earth, and she stood on human feet, and a man's heart was given to her. + +And, behold, a second beast like a bear, and it supported itself on one side, and there were three ribs in its mouth, between its teeth: and thus they said to it, Arise, devour much flesh. + +After this one I looked, and behold another wild beast as a leopard, and it had four wings of a bird upon it: and the wild beast had four heads, and power was given to it. + +After this one I looked, and behold a fourth beast, dreadful and terrible, and exceedingly strong, and its teeth were of iron; devouring and crushing to atoms, and it trampled the remainder with its feet: and it was altogether different from the beasts that were before it; and it +had ten hours. + +I noticed his horns, and behold, another little horn came up in the midst of them, and before it three of the former horns were rooted out: and, behold, +there were eyes as the eyes of a man in this horn, and a mouth speaking great things. + +I watched until the thrones were set, and the Ancient of days sat; and his raiment was white as snow, and the hair of his head, as pure wool: his throne was a flame of fire, +and his wheels burning fire. + +A stream of fire rushed forth before him: thousand thousands ministered to him, and ten thousands of myriads, attended upon him: the judgment sat, and the books were opened. + +I watched then because of the voice of the great words which that horn spoke, until the wild beast was slain and destroyed, and his body given to be burnt with fire. + +And the dominion of the rest of the wild beasts was taken away; but a prolonging of life was given them for certain times. + +I saw in the night vision, and, behold, +one coming with the clouds of heaven as the Son of man, and he came on to the Ancient of days, and was brought near to him. + +And to him was given the dominion, and the honor, and the kingdom; and all nations, tribes, and languages, shall serve him: his dominion is an everlasting dominion, which shall not pass away, and his kingdom shall not be destroyed. + + +As for me Daniel, my spirit in my body trembled, and the visions of my head troubled me. + +And I drew near to one of them that stood by, and I sought to learn of him the truth of all these things: and he told me the truth, and made known to me the interpretation of the things. + +These four beasts are four kingdoms +that shall rise up on the earth: + +which shall be taken away; and the saints of the Most High shall take the kingdom, and possess it for ever and ever. + +Then I enquired carefully concerning the fourth beast; for it differed from every +other beast, exceeding dreadful: its teeth were of iron, and its claws of brass, devouring, and utterly breaking to pieces, and it trampled the remainder with its feet: + +and concerning it ten horns that were in its head, and the other that came up, and rooted up +some of the former, which had eyes, and a mouth speaking great things, and his look was bolder than the rest. + +I saw, and that horn made war with the saints, and prevailed against them; + +until the Ancient of days came, and he gave judgment to the saints of the Most High; and the time came on, and the saints possessed the kingdom. + +And he said, The fourth beast shall be the fourth kingdom on the earth, which shall excel all +other kingdoms, and shall devour the whole earth, and trample and destroy it. + +And his ten horns are ten kings +that shall arise: and after them shall arise another, who shall exceed all the former ones in wickedness and he shall subdue three kings. + +And he shall speak words against the Most High, and shall wear out the saints of the Most High, and shall think to change times and law: and +power shall be given into his hand for a time and times and half a time. + +And the judgment has sat, and they shall remove +his dominion to abolish it, and to destroy it utterly. + +And the kingdom and the power and the greatness of the kings that are under the whole heaven were given to the saints of the Most High; and his kingdom is an everlasting kingdom, and all powers shall serve and obey him. + +Hitherto is the end of the matter. As for me Daniel, my thoughts greatly troubled me, and my countenance was changed: but I kept the matter in my heart. + +

+ + +

In the third year of the reign of king Baltasar a vision appeared to me, +even to me Daniel, after that which appeared to me at the first. + +And I was in Susa the palace, which is in the land of Aelam, and I was on the +bank of Ubal. + +And I lifted up my eyes, and saw, and, behold, a ram standing in front of the Ubal; and he had high horns; and one was higher than the other, and the high one came up last. + +And I saw the ram butting westward, and northward, and southward; and no beast could stand before him, and there was none that could deliver out of his hand; and he did according to his will, and became great. + +And I was considering, and, behold, a he-goat came from the southwest on the face of the whole earth, and touched not the earth: and the goat +had a horn between his eyes. + +And he came to the ram that had the horns, which I had seen standing in front of the Ubal, and he ran at him with the violence of his strength. + +And I saw him coming up close to the ram, and he was furiously enraged against him, and he struck the ram, and broke both his horns: and there was no strength in the ram to stand before him, but he cast him on the ground, and trampled on him; and there was none that could deliver the ram out of his hand. + +And the he-goat grew exceedingly great: and when he was strong, his great horn was broken; and four other +horns rose up in its place toward the four winds of heaven. + +And out of one of them came forth one strong horn, and it grew very great toward the south, and toward the host: + +and it magnified itself to the host of heaven; and there fell to the earth +some of the host of heaven and of the stars, and they trampled on them. + +And +this shall be until the chief captain shall have delivered the captivity: and by reason of him the sacrifice was disturbed, and he prospered; and the holy place shall be made desolate. + +And a sin-offering was given for the sacrifice, and righteousness was cast down to the ground; and it practised, and prospered. + +And I heard one saint speaking, and a saint said to a certain one speaking, How long shall the vision continue, +even the removal of the sacrifice, and the bringing in of the sin of desolation; and +how long shall the sanctuary and host be trampled? + +And he said to him, Evening and morning +there shall be two thousand and four hundred days; and +then the sanctuary shall be cleansed. + +And it came to pass, as I, +even I Daniel, saw the vision, and sought to understand it, that, behold, there stood before me as the appearance of a man. + +And I heard the voice of a man between +the banks of the Ubal; and he called, and said, Gabriel, cause that man to understand the vision. + +And he came and stood near where I stood: and when he came, I was struck with awe, and fell upon my face: but he said to me, Understand, son of man: for yet the vision is for an appointed time. + +And while he spoke with me, I fell upon my face to the earth: and he touched me, and set me on my feet. + +And he said, Behold, I make you know the things that shall come to pass at the end of the wrath: for the vision +is yet for an appointed time. + +The ram which you saw that had the horns is the king of the Medes and Persians. + +The he-goat is the King of the Greeks: and the great horn which was between his eyes, he is the first king. + +And +as for the one that was broken, in whose place there stood up four horns, four kings shall arise out of his nation, but not in their +own strength. + +And at the latter time of their kingdom, when their sins are coming to the full, there shall arise a king bold in countenance, and understanding riddles. + +And his power +shall be great, and he shall destroy wonderfully, and prosper, and practise, and shall destroy mighty men, and the holy people. + +And the yoke of his chain shall prosper: +there is craft in his hand; and he shall magnify himself in his heart, and by craft shall destroy many, and he shall stand up for the destruction of many, and shall crush them as eggs in his hand. + +And the vision of the evening and morning that was mentioned is true: and do you seal the vision; for +it is for many days. + +And I Daniel fell asleep, and was sick: then I arose, and did the king's business; and I wondered at the vision, and there was none that understood +it. + +

+ + +

In the first year of Darius the son of Assuerus, of the seed of the Medes, who reigned over the kingdom of the Chaldeans, + +I Daniel understood by books the number of the years which was the word of the Lord to the prophet Jeremias, +even seventy years for the accomplishment of the desolation of Jerusalem. + +And I set my face toward the Lord God, to seek +him diligently by prayer and supplications, with fastings and sackcloth. + +And I prayed to the Lord my God, and confessed, and said, O Lord, the great and wonderful God, keeping your covenant and your mercy to them that love you, and to them that keep your commandments; we have sinned, + +we have done iniquity, we have transgressed, and we have departed and turned aside from your commandments and from your judgments: + +and we have not listened to your servants the prophets, who spoke in your name to our kings, and our princes, and our fathers, and to all the people of the land. + +To you, O Lord, +belongs righteousness, and to us confusion of face, as at this day; to the men of Juda, and to the dwellers in Jerusalem, and to all Israel, to them that are near, and to them that are far off in all the earth, wherever you have scattered them, for the sin which they committed. + +In you, O Lord, is our righteousness, and to us +belongs confusion of faced, and to our kings, and to our princes, and to our fathers, forasmuch as we have sinned. + +To you, the Lord our God, +belong compassions and forgivenesses, whereas we have departed +from you; + +neither have we listened to the voice of the Lord our God, to walk in his laws, which he set before us by the hands of his servants the prophets. + +Moreover all Israel have transgressed your law, and have refused to listen to your voice; so the curse has come upon us, and the oath that is written in the law of Moses the servant of God, because we have sinned against him. + +And he has confirmed his words, which he spoke against us, and against our judges who judged us, +by bringing upon us great evils, such as have not happened under the whole heaven, according to what has happened in Jerusalem. + +As it is written in the law of Moses, all these evils have come upon us: yet we have not implored the Lord our God, that we might turn away from our iniquities, and have understanding in all your truth. + +The Lord also has watched, and brought the evils upon us: for the Lord our God is righteous in all his work which he has executed, but we have not listened to his voice. + +And now, O Lord our God, who brought your people out of the land of Egypt with a mighty hand, and made to yourself a name, as +at this day; we have sinned, we have transgressed. + +O Lord, your mercy is over all: let, I pray you, your wrath turn away, and your anger from your city Jerusalem, +even your holy mountain: for we have sinned, and because of our iniquities, and those of our fathers, Jerusalem and your people are become a reproach among all that are round about us. + +And now, O lord our God, listen to the prayer of your servant, and his supplications, and cause your face to shine on your desolate sanctuary, for your +own sake, O Lord. + +Incline your ear, O my God, and hear; open your eyes and behold our desolation, and that of your city on which your name is called: for we do not bring our pitiful case before you on +the ground of our righteousness, but on +the ground of your manifold compassions, O Lord. + +Listen, O Lord; be propitious, O Lord; attend, O Lord; delay not, O my God, for your own sake: for your name is called upon your city and upon your people. + +And while I was yet speaking, and praying, and confessing my sins and the sins of my people Israel, and bringing my pitiful case before the Lord my God concerning the holy mountain; + +yes, while I was yet speaking in prayer, behold the man Gabriel, whom I had seen in the vision at the beginning, +came flying, and he touched me about the hour of the evening sacrifice. + +And he instructed me, and spoke with me, and said, O Daniel, I am now come forth to impart to you understanding. + +At the beginning of your supplication the word came forth, and I am come to tell you; for you are a man much beloved: therefore consider the matter, understand the vision. + +Seventy weeks have been determined upon your people, and upon the holy city, for sin to be ended, and to seal up transgressions, and to blot out the iniquities, and to make atonement for iniquities, and to bring in everlasting righteousness, and to seal the vision and the prophet, and to anoint the Most Holy. + +And you shall know and understand, that from the going forth of the command for the answer and for the building of Jerusalem until Christ the prince +there shall be seven weeks, and sixty-two weeks; and then +the time shall return, and the street shall be built, and the wall, and the times shall be exhausted. + +And after the sixty-two weeks, the anointed one shall be destroyed, and there is no judgment in him: and he shall destroy the city and the sanctuary with the prince that is coming: they shall be cut off with a flood, and to the end of the war which is rapidly completed he shall appoint +the city to desolations. + +And one week shall establish the covenant with many: and in the midst of the week my sacrifice and drink-offering shall be taken away: and on the temple +shall be the abomination of desolations; and at the end of time an end shall be put to the desolation. + +

+ + +

In the third year of Cyrus king of the Persians a thing was revealed to Daniel, whose name was called Baltasar; and the thing was true, and great power and understanding in the vision was given to him. + +In those days I Daniel was mourning three full weeks. + +I ate no pleasant bread, and no flesh or wine entered into my mouth, neither did I anoint myself with oil, until three whole weeks were accomplished. + +On the twenty-fourth day of the first month, I was near the great river, which is Tigris Eddekel. + +And I lifted up my eyes, and looked, and behold a man clothed in linen, and his loins were girded with gold of Ophaz: + +and his body was as Tharsis, and his face was a the appearance of lightning, and his eyes as lamps of fire, and his arms and his legs as the appearance of shining brass, and the voice of his words as the voice of a multitude. + +And I Daniel only saw the vision: and the men that were with me saw not the vision; but a great amazement fell upon them, and they fled in fear. + +So I was left alone, and saw this great vision, and there was no strength left in me, and my glory was turned into corruption, and I retained no strength. + +Yet I heard the voice of his words: and when I heard him I was pricked +in the heart, and +I fell with my face to the earth. + +And, behold, a hand touched me, and it raised me on my knees. + +And he said to me, O Daniel, man greatly beloved, understand the words which I speak to you, and stand upright: for I am now sent to you. And when he had spoken to me this word, I stood trembling. + +And he said to me, Fear not, Daniel: for from the first day that you did set your heart to understand, and to afflict yourself before the Lord your God, they words were heard, and I am come because of your words. + +But the prince of the kingdom of the Persians withstood me twenty-one days: and behold, Michael, one of the princes, came to help me; and I left him there with the chief of the kingdom of the Persians: + +and I have come to inform you of all that shall befall your people in the last days: for the vision is yet for +many days. + +And when he had spoken with me according to these words, I turned my face to the ground, and was pricked +in the heart. + +And, behold, as it were the likeness of a son of man touched my lips; and I opened my mouth, and spoke, and said to him that stood before me, O +my lord, at the sight of you my bowels were turned within me, and I had no strength. + +And how shall your servant be able, O +my lord, to speak with this my lord? and as for me, from henceforth strength will not remain in me, and there is no breath left in me. + +And there touched me again as it were the appearance of a man, and he strengthened me, + +and said to me, Fear not, man greatly beloved: peace be to you, quit yourself like a man, and be strong. And when he had spoken with me, I received strength, and said, Let my lord speak; for you have strengthened me. + +And he said, Know you, therefore I am come to you? and now I will return to fight with the prince of the Persians: and I was going in, and the prince of the Greeks came. + +But I will tell you that which is ordained in the scripture of truth: and there is no one that holds with me in these matters but Michael your prince. + +

+ + +

And I in the first year of Cyrus stood to strengthen and confirm +him. + +And now I will tell you the truth. Behold, there shall yet rise up three kings in Persia: and the fourth shall be very far richer than all: and after that he is master of his wealth, he shall rise up against all the kingdoms of the Greeks. + +An there shall rise up a mighty king, and he shall be lord of a great empire, and shall do according to his will. + +And when his kingdom shall stand up, it shall be broken, and shall be divided to the four winds of heaven; but not to his posterity, nor according to his dominion which he ruled over: for his kingdom shall be plucked up, and +given to others beside these. + +And the king of the south shall be strong; and one of their princes shall prevail against him, and shall obtain a great dominion. + +And after his years they shall associate; and the daughter of the king of the south shall come to the king of the north, to make agreements with him: but she shall not retain power of arm; neither shall his seed stand: and she shall be delivered up, and they that brought her, and the maiden, and he that strengthened her in these times. + + +But out of the flower of her root there shall arise +one on his place, and shall come against the host, and shall enter into the strongholds of the king of the north, and shall fight against them, and prevail. + +Yes, he shall carry with a body of captives into Egypt their gods with their molten +images, and all their precious vessels of silver and gold; and he shall last longer than the king of the north. + +And he shall enter into the kingdom of the king of the south, and shall return to his own land. + +And his sons shall gather a multitude among many: and one shall certainly come, and overflow, and pass through, and he shall rest, and collect his strength. + +And the king of the south shall be greatly enraged, and shall come forth, and shall war with the king of the north: and he shall raise a great multitude; but the multitude shall be delivered into his hand. + +And he shall take the multitude, and his heart shall be exalted; and he shall cast down many thousands; but he shall not prevail. + +For the king of the north shall return, and bring a multitude greater than the former, and at the end of the times of years an invading army shall come with a great force, and with much substance. + +And in those times many shall rise up against the king of the south; and the children of the spoilers of your people shall exalt themselves to establish the vision; and they shall fail. + +And the king of the north shall come in, and cast up a mound, and take strong cities: and the arms of the king of the south shall withstand, and his chosen ones shall rise up, but there shall be no strength to stand. + +And he that comes in against him shall do according to his will, and there is no one to stand before him: and he shall stand in the land of beauty, and it shall be consumed by his hand. + +And he shall set his face to come in with the force of his whole kingdom, and shall cause everything to prosper with him: and he shall give him the daughter of women to corrupt her: but she shall not continue, neither be on his side. + +And he shall turn his face to the islands, and shall take many, and cause princes to cease from their reproach: nevertheless his own reproach shall return to him. + +Then he shall turn back his face to the strength of his own land: but he shall become weak, and fall, and not be found. + +And there shall arise out of his root one that shall cause a plant of the kingdom to pass over his place, earning kingly glory: and yet in those days shall he be broken, yet not openly, nor in war. + + +One shall stand on his place, +who has been set a nothing, and they have not put upon him the honor of the kingdom: but he shall come in prosperously, and obtain the kingdom by deceitful ways. + +And the arms of him that overflows shall be washed away as with a flood from before him, and shall be broken, and +so shall be the head of the covenant. + +And because of the leagues made with him he shall work deceit: and he shall come up, and overpower them with a small nation. + +And he shall enter with prosperity, and +that into fertile districts; and he shall do what his fathers and his fathers' fathers have not done; he shall scatter among them plunder, and spoils, and wealth; and he shall devise plans against Egypt, even for a time. + +And his strength and his heart shall be stirred up against the king of the south with a great force; and the king of the south shall engage in war with a great and very strong force; but +his forces shall not stand, for they shall devise plans against him: + +and they shall eat his provisions, and shall crush him, and he shall carry away armies as with a flood, and many shall fall down slain. + +And +as for both the kings, their hearts +are set upon mischief, and they shall speak lies at one table; but it shall not prosper; for yet the end is for a +fixed time. + +And he shall return to his land with much substance; and his heart +shall be against the holy covenant; and he shall perform +great deeds, and return to his own land. + +At the +set time he shall return, and shall come into the south, but the last +expedition shall +not be as the first. + +For the Citians issuing forth shall come against him, and he shall be brought low, and shall return, and shall be incensed against the holy covenant: and he shall do +thus, and shall return, and have intelligence with them that have forsaken the holy covenant. + +And seeds shall spring up out of him, and they shall profane the sanctuary of strength, and they shall remove the perpetual +sacrifice, and make the abomination desolate. + +And the transgressors shall bring about a covenant by deceitful ways: but a people knowing their God shall prevail, and do +valiantly. + +And the intelligent of the people shall understand much: yet they shall fall by the sword, and by flame, and by captivity, and by spoil of +many days. + +And when they are weak they shall be helped with a little help: but many shall attach themselves to them with treachery. + +And +some of them that understand shall fall, to try them as with fire, and to test +them, and that they may be manifested at the time of the end, for the matter +is yet for a +set time. + +And he shall do according to his will, and the king shall exalt and magnify himself against every god, and shall speak great swelling words, and shall prosper until the indignation shall be accomplished: for it is coming to an end. + +And he shall not regard any gods of his fathers, nor the desire of women, neither shall he regard any deity: for he shall magnify himself above all. + +And he shall honor the god of forces on his place: and a god whom his fathers knew not he shall honor with gold, and silver, and precious stones, and desirable things. + +And he shall do +thus in the strong places of refuge with a strange god, and shall increase his glory: and he shall subject many to them, and shall distribute the land in gifts. + +And at the end of the time he shall conflict with the king of the south: and the king of the north shall come against him with chariots, and with horsemen, and with many ships; and they shall enter into the land: and he shall break in pieces, and pass on: + +and he shall enter into the land of beauty, and many shall fail: but these shall escape out of his hand, Edom, and Moab, and the chief of the children of Ammon. + +And he shall stretch forth +his hand over the land; and the land of Egypt shall not escape. + +And he shall have the mastery over the secret +treasures of gold and silver, and over all the desirable +possessions of Egypt, and of the Libyans and Ethiopians in their strongholds. + +But rumors and anxieties out of the east and from the north shall trouble him; and he shall come with great wrath to destroy many. + +And he shall pitch the tabernacle of his palace between the seas in the holy mountain of beauty: +but he shall come to his portion, and there is none to deliver him. + +

+ + +

And at that time Michael the great prince shall stand up, that stands over the children of your people: and there shall be a time of tribulation, such tribulation as has not been from the time that there was a nation on the earth until that time: at that time your people shall be delivered, +even every one that is written in the book. + +And many of them that sleep in the dust of the earth shall awake, some to everlasting life, and some to reproach and everlasting shame. + +And the wise shall shine as the brightness of the firmament, and +some of the many righteous as the stars for ever and ever. + +And you, Daniel, close the words, and seal the book to the time of the end; until many are taught, and knowledge is increased. + +And I Daniel saw, and, behold, two others stood, on one side of the bank of the river, and the other on the other side of the bank of the river. + +And +one said to the man clothed in linen, who was over the water of the river, When +will be the end of the wonders which you have mentioned? + +And I heard the man clothed in linen, who was over the water of the river, and he lifted up his right hand and his left hand to heaven, and swore by him that lives for ever, that +it should be for a time of times and half a time: when the dispersion is ended they shall know all these things. + +And I heard, but I understood not: and I said, O Lord, what +will be the end of these things? + +And he said, Go, Daniel: for the words are closed and sealed up to the time of the end. + +Many must be tested, and thoroughly whitened, and tried with fire, and sanctified; but the transgressors shall transgress: and none of the transgressors shall understand; but the wise shall understand. + +And from the time of the removal of the perpetual sacrifice, when the abomination of desolation shall be set up, +there shall be a thousand two hundred and ninety days. + +Blessed is he that waits, and comes to the thousand three hundred and thirty-five days. + +But go you, and rest; for +there are yet days and seasons to the fulfillment of the end; and you shall stand in your lot at the end of the days. + +

+
+ +Osee +OSEE +Osee +HOS +

OSEE +

+ + +

The word of the Lord which came to Osee the son of Beeri, in the days of Ozias, and Joatham, and Achaz, and Ezekias, kings of Juda, and in the days of Jeroboam son of Joas, king of Israel. + +The beginning of the word of the Lord by Osee. And the Lord said to Osee, Go, take to yourself a wife of fornication, and children of fornication: for the land will surely go a-whoring in departing from the Lord. + +So he went and took Gomer, daughter of Debelaim; and she conceived, and bore him a son. + +And the Lord said to him, Call his name Jezrael; for yet a little +while, and I will avenge the blood of Jezrael on the house of Juda, and will make to cease the kingdom of the house of Israel. + +And it shall be, in that day, +that I will break the bow of Israel in the valley of Jezrael. + +And she conceived again, and bore a daughter. And he said to him, Call her name, Unpitied: for I will no more have mercy on the house of Israel, but will surely set myself in array against them. + +But I will have mercy on the house of Juda, and will save them by the Lord their God, and will not save them with bow, nor with sword, nor by war, nor by horses, nor by horsemen. + +And she weaned Unpitied; and she conceived again, and bore a son. + +And he said, Call his name, Not my people: for you⌃ are not my people, and I am not your +God. + +Yet the number of the children of Israel was as the sand of the sea, which shall not be measured nor numbered: and it shall come to pass, +that in the place where it was said to them, You⌃ are not my people, even they shall be called the sons of the living God. + +And the children of Juda shall be gathered, and the children of Israel together, and shall appoint themselves one head, and shall come up out of the land: for great +shall be the day of Jezrael. + +

+ + +

Say to your brother, My people, and to your sister, Pitied. + +Plead with your mother, plead: for she is not my wife, and I am not her husband: and I will remove her fornication out of my presence, and her adultery from between her breasts: + +that I may strip her naked, and make her again as she was at the day of her birth: and I will make her desolate, and make her as a dry land, and will kill her with thirst. + +And I will not have mercy upon her children; for they are children of fornication. + +And their mother went a-whoring: she that bore them disgraced +them: for she said, I will go after my lovers, that give me my bread and my water, and my garments, and my linen clothes, my oil and my necessaries. + +Therefore, behold, I hedge up her way with thorns, and I will stop the ways, and she shall not find her path. + +And she shall follow after her lovers, and shall not overtake them; and she shall seek them, but shall not find them: and she shall say, I will go, and return to my former husband; for it was better with me than now. + +And she knew not that I gave her her corn, and wine, and oil, and multiplied silver to her: but she made silver and gold +images for Baal. + +Therefore I will return, and take away my corn in its season, and my wine in its time; and I will take away my raiment and my linen clothes, so that she shall not cover her nakedness. + +And now I will expose her uncleanness before her lovers, and no one shall by any means deliver her out of my hand. + +And I will take away all her gladness, her feasts, and her festivals at the new moon, and her sabbaths, and all her solemn assemblies. + +And I will utterly destroy her vines, and her fig-trees, all things of which she said, These are my hire which my lovers have given me: and I will make them a testimony, and the wild beasts of the field, and the birds of the sky, and the reptiles of the earth shall devour them. + +And I will recompense on her the days of Baalim, wherein she sacrificed to them, and put on her ear-rings, and her necklaces, and went after her lovers, and forgot me, says the Lord. + +Therefore, behold, I +will cause her to err, and will make her as desolate, and will speak comfortably to her. + +And I will giver her possessions from thence, and the valley of Achor to open her understanding: and she shall be afflicted there according to the days of her infancy, and according to the days of her coming up out of the land of Egypt. + +And it shall come to pass in that day, says the Lord, +that she shall call me, My husband, and shall no longer call me Baalim. + +And I will take away the names of Baalim out of her mouth, and their names shall be remembered no more at all. + +And I will make for them in that day a covenant with the wild beasts of the field, and with the birds of the sky, and with the reptiles of the earth: and I will break the bow and the sword and the battle from off the earth, and will cause you to dwell safely. + +And I will betroth you to myself for ever; yes, I will betroth you to myself in righteousness, and in judgment, and in mercy, and in tender compassions; + +and I will betroth you to myself in faithfulness: and you shall know the Lord. + +And it shall come to pass in that day, says the Lord, I will listen to the heaven, and it shall listen to the earth; + +and the earth shall listen to the corn, and the wine, and the oil; and they shall listen to Jezrael. + +And I will sow her to me on the earth; and will love her that was not loved, and will say to that which was not my people, You are my people; and they shall say, You are the Lord my God. + +

+ + +

And the Lord said to me, Go yet, and love a woman that loves evil things, an adulteress, even as the Lord loves the children of Israel, and they have respect to strange gods, and love cakes of dried grapes. + +So I hired +her to myself for fifteen +pieces of silver, and a homer of barley, and a flagon of wine. + +And I said to her, You shall wait for me many days; and you shall not commit fornication, neither shall you be for +another man; and I +will be for you. + +For the children of Israel shall abide many days without a king, and without a prince, and without a sacrifice, and without an altar, and without a priesthood, and without manifestations. + +And afterward shall the children of Israel return, and shall seek the Lord their God, and David their king; and shall be amazed at the Lord and at his goodness in the latter days. + +

+ + +

Hear the word of the Lord, you⌃ children of Israel: for the Lord +has a controversy with the inhabitants of the land, because there is no truth, nor mercy, nor knowledge of God in the land. + +Cursing, and lying, and murder, and theft, and adultery abound in the land, and they mingle blood with blood. + +Therefore shall the land mourn, and shall be diminished with all that dwell in it, with the wild beasts of the field, and the reptiles of the earth, and with the birds of the sky, and the fish of the sea shall fail: + +that neither any one may plead, nor any one reprove +another; but my people are as a priest spoken against. + +Therefore they shall fall by day, and the prophet with you shall fall: I have compared your mother to night. + +My people are like as if they had no knowledge: because you have rejected knowledge, I will also reject you, that you shall not minister as priest to me: and +as you have forgotten the law of your God, I also will forget your children. + +According to their multitude, so they sinned against me: I will turn their glory into shame. + +They will devour the sins of my people, and will set their hearts on their iniquities. + +And the priest shall be as the people: and I will avenge on them their ways, and I will recompense to them their counsels. + +And they shall eat, and shall not be satisfied: they have gone a-whoring, and shall by no means prosper: because they have left off to take heed to the Lord. + +The heart of my people has gladly engaged in fornication and wine and strong drink. + +They asked counsel by +means of signs, and they reported answer to them by their staves: they have gone astray in a spirit of whoredom, and gone grievously a-whoring from their God. + +They have sacrificed on the tops of the mountains, and on the hills they have sacrificed under the oak and poplar, and under the shady tree, because the shade was good: therefore your daughters shall go a-whoring, and your daughters-in-law shall commit adultery. + +And I will not visit upon your daughters when they shall commit fornication, nor your daughters-in-law when they shall commit adultery: for they themselves mingled themselves with harlots, and sacrificed with polluted ones, and the people that understood not entangled itself with a harlot. + +But you, O Israel, be not ignorant, and go you⌃ not, +men of Juda, to Galgala; and go not up to the house of On, and swear not by the living Lord. + +For Israel was maddened like a mad heifer: now the Lord will feed them as a lamb in a wide place. + +Ephraim, joined with idols, has laid stumbling blocks in his own way. + +He has chosen the Chananites: they have grievously gone a-whoring: they have loved dishonor through her insolence. + +You are a blast of wind in her wings, and they shall be ashamed because of their altars. + +

+ + +

Hear these things, you⌃ priests; and attend, O house of Israel; and listen, O house of the king; for the controversy is with you, because you⌃ have been a snare in Scopia, and as a net spread on Itabyrium, + +which they that hunt the prey have fixed: but I will correct you. + +I know Ephraim, and Israel is not far from me: for now Ephraim has gone grievously a-whoring, Israel is defiled. + +They have not framed their counsels to return to their God, for the spirit of fornication is in them, and they have not known the Lord. + +And the pride of Israel shall be brought low before his face; and Israel and Ephraim shall fall in their iniquities; and Judas also shall fall with them. + +They shall go with sheep and calves diligently to seek the Lord; but they shall not find him, for he has withdrawn himself from them. + +For they have forsaken the Lord; for strange children have been born to them: now shall the cankerworm devour them and their heritages. + +Blow you⌃ the trumpet on the hills, sound aloud on the heights: proclaim in the house of On, Benjamin is amazed. + +Ephraim has come to nothing in the days of reproof: in the tribes of Israel I have shown faithful +dealings. + +The princes of Juda became as they that removed the bounds: I will pour out upon them my fury as water. + +Ephraim altogether prevailed against his adversary, he trod judgment under foot, for he began to go after vanities. + +Therefore I +will be as consternation to Ephraim, and as a goad to the house of Juda. + +And Ephraim saw his disease, and Judas his pain; then Ephraim went to the Assyrians, and sent ambassadors to king Jarim: but he could not heal you, and your pain shall in nowise cease from you. + +Therefore I am as a panther to Ephraim, and as a lion to the house of Juda: and I will tear, and go away; and I will take, and there shall be none to deliver. + +I will go and return to my place, until they are brought to nothing, and +then shall they seek my face. + +

+ + +

In their affliction they will seek me early, saying, Let us go, and return to the Lord our God; for he has torn, and will heal us; + +he will strike, and bind us up. + +After two days he will heal us: in the third day we shall arise, and live before him, and shall know +him: + +let us follow on to know the Lord: we shall find him ready as the morning, and he will come to us as the early and latter rain to the earth. + +What shall I do to you, Ephraim? What shall I do to you, Juda? whereas your mercy is as a morning cloud, and as the early dew that goes away. + +Therefore have I mown down your prophets; I have slain them with the word of my mouth: and my judgment shall go forth as the light. + +For I will +have mercy rather than sacrifice, and the knowledge of God rather than whole burnt offerings. + +But they are as a man transgressing a covenant: + +there the city Galaad despised me, working vanity, troubling water. + +And your strength +is that of a robber: the priests have hid the way, they have murdered +the people of Sicima; for they have wrought iniquity in the house of Israel. + +I have seen horrible +things there, +even the fornication of Ephraim: Israel and Juda are defiled; + +begin together grapes for yourself, when I turn the captivity of my people. + +

+ + +

When I have healed Israel, then shall the iniquity of Ephraim be revealed, and the wickedness of Samaria; for they have wrought falsehood: and a thief shall come in to him, +even a robber spoiling in his way; + +that they may concert together as +men singing in their heart: I remember all their wickedness: now have their own counsels compassed them about; they came before my face. + +They gladdened kings with their wickedness, and princes with their lies. + +They are all adulterers, as an oven glowing with flame for hot-baking, on account of the kneading of the dough, until it is leavened. + + +In the days of our kings, the princes began to be inflamed with wine: he stretched out his hand with pestilent fellows. + +Therefore their hearts are inflamed as an oven, while they rage all the night: Ephraim is satisfied with sleep; the morning is come; he is burnt up as a flame of fire. + +They are all heated like an oven, and have devoured their judges: all their kings are fallen; there was not among them one that called on me. + +Ephraim is mixed among his people; Ephraim became a cake not turned. + +Strangers devoured his strength, and he knew +it not; and grey hairs came upon him, and he knew +it not. + +And the pride of Israel shall be brought down before his face: yet they have not returned to the Lord their God, neither have they diligently sought him for all this. + +And Ephraim was as a silly dove, not having a heart: he called to Egypt, and they went to the Assyrians. + +Whenever they shall go, I will cast my net upon them; I will bring them down as the birds of the sky, I will chasten them with the rumor of their +coming affliction. + +Woe to them! for they have started aside from me: they are cowards; for they have sinned against me: yet I redeemed them, but they spoke falsehoods against me. + +And their hearts did not cry to me, but they howled on their beds: they pined for oil and wine. + +They were instructed by me, and I strengthened their arms; and they devised evils against me. + +They turned aside to that which is not, they became as a bent bow: their princes shall fall by the sword, by reason of the unbridled state of their tongue: this is their setting at nothing in the land of Egypt. + +

+ + +

+He shall come into their midst as the land, as an eagle against the house of the Lord, because they have transgressed my covenant, and have sinned against my law. + +They shall soon cry out to me, +saying, O God, we know you. + +For Israel has turned away from good things; they have pursued an enemy. + +They have made kings for themselves, but not by me: they have ruled, but they did not make it known to me: +of their silver and their gold they have made images to themselves, that they might be destroyed. + +Cast off your calf, O Samaria; my anger is kindled against them: how long will they be unable to purge themselves in Israel? + +Whereas the workman made it, and it is not God; therefore your calf, Samaria, was a deceiver: + +for they sowed blighted +seed, and their destruction shall await them, a sheaf of corn that avails not to make meal; and even if it should produce it, strangers shall devour it. + +Israel is swallowed up: now is he become among the nations as a worthless vessel. + +For they have gone up to the Assyrians: Ephraim has been strengthened against himself; they loved gifts. + +Therefore shall they be delivered to the nations: now I will receive them, and they shall cease a little to anoint a king and princes. + +Because Ephraim has multiplied altars, +his beloved altars are become sins to him. + +I will write down a multitude +of commands for him; but his statutes are accounted strange things, +even the beloved altars. + +For if they should offer a sacrifice, and eat flesh, the lord will not accept them: now will he remember their iniquities, and will take vengeance on their sins: they have returned to Egypt, and they shall eat unclean things among the Assyrians. + +And Israel has forgotten him that made him, and they have built fanes, and Juda has multiplied walled cities: but I will send fire on his cities, and it shall devour their foundations. + +

+ + +

Rejoice not, O Israel, neither make merry, as +other nations: for you have gone a-whoring from your God; you have loved gifts upon every threshing floor. + +The threshing floor and wine-press knew them not, and the wine disappointed them. + +They lived not in the Lord's land: Ephraim lived in Egypt, and they shall eat unclean things among the Assyrians. + +They have not offered wine to the Lord, neither have their sacrifices been sweet to him, +but as the bread of mourning to them; all that eat them shall be defiled; for their bread for their soul shall not enter into the house of the Lord. + +What will you⌃ do in the day of the general assembly, and in the day of the feast of the Lord? + +Therefore, behold, they go forth from the trouble of Egypt, and Memphis shall receive them, and Machmas shall bury them: +as for their silver, destruction shall inherit it; thorns +shall be in their tents. + +The days of vengeance are come, the days of your recompense are come; and Israel shall be afflicted as the prophet that is mad, as a man deranged: by reason of the multitude of your iniquities your madness has abounded. + +The watchman of Ephraim +was with God: the prophet is a crooked snare in all his ways: they have established madness in the house of God. + +They have corrupted themselves according to the days of the hill: he will remember their iniquities, he will take vengeance on their sins. + +I found Israel as grapes in the wilderness, and I saw their fathers as an early watchman in a fig tree: they went in to Beel-phegor, and were shamefully estranged, and the abominable became as the beloved. + +Ephraim has flown away as a bird; their glories from the birth, and the travail, and the conception. + +For even if they should rear their children, yet shall they be utterly bereaved: therefore also there is woe to them, +though my flesh is of them. + +Ephraim, +even as I saw, gave their children for a prey; yes, Ephraim +was ready to bring out his children to slaughter. + +Give them, O Lord: what will you give them? a miscarrying womb, and dry breasts. + +All their wickedness is in Galgal: for there I hated them: because of the wickedness of their practices, I will cast them out of my house, I will not love them any more: all their princes are disobedient. + +Ephraim is sick, he is dried up at his roots, he shall in no wise any more bear fruit: therefore even if they should beget +children, I will kill the desired +fruit of their womb. + +God shall reject them, because they have not listened to him: and they shall be wanderers among the nations. + +

+ + +

Israel is a vine with goodly branches, her fruit is abundant: according to the multitude of her fruits she has multiplied +her altars; according to the wealth of his land, he has set up pillars. + +They have divided their hearts; now shall they be utterly destroyed: he shall dig down their altars, their pillars shall mourn. + +Because now they shall say, We have no king, because we feared not the Lord: + +and what should a king do for us, speaking false professions +as his words? he will make a covenant: judgment shall spring up as a weed on the soil of the field. + +The inhabitants of Samaria shall dwell near the calf of the house of On; for the people of it mourned for it: and as they provoked him, they shall rejoice at his glory, because he has departed from them. + +And having bound it for the Assyrians, they carried it away as presents to king Jarim: Ephraim shall receive a gift, and Israel shall be ashamed of his counsel. + +Samaria has cast off her king as a twig on the surface of the water. + +And the altars of On, the sins of Israel, shall be taken away: thorns and thistles shall come up on their altars; and they shall say to the mountains, Cover us; and to the hills, Fall on us. + +From the time the hills +existed Israel has sinned: there they stood: war +waged against the children of iniquity + +to chastise them shall not overtake them on the hill, the nations shall be gathered against them, when they are chastened for their two sins, + +Ephraim is a heifer taught to love victory, but I will come upon the fair part of her neck: I will mount Ephraim; I will pass over Juda in silence; Jacob shall prevail against him. + +Sow to yourselves for righteousness, gather in for the fruit of life: light you⌃ for yourselves the light of knowledge; seek the Lord till the fruits of righteousness come upon you. + +Therefore have you⌃ passed over ungodliness in silence, and reaped the sins of it? you⌃ have eaten false fruit; for you have trusted in your sins, in the abundance of your power. + +Therefore shall destruction rise up among your people, and all your strong places shall be ruined: as a prince Solomon +departed out of the house of Jeroboam, in the days of battle they dashed the mother to the ground upon the children, + +thus will I do to you, O house of Israel, because of the unrighteousness of your sins. + +

+ + +

Early in the morning were they cast off, the king of Israel has been cast off: for Israel is a child, and I loved him, and out of Egypt have I called his children. + +As I called them, so they departed from my presence: they sacrificed to Baalim, and burnt incense to graven images. + +Yet I bound the feet of Ephraim, I took him on my arm; but they knew not that I healed them. + +When men were destroyed, I drew them with the bands of my love: and I will be to them as a man striking +another on his cheek: and I will have respect to him, I will prevail with him. + +Ephraim lived in Egypt; and +as for the Assyrian, he was his king, because he would not return. + +And in his cities he prevailed not with the sword, and he ceased +to war with his hands: and they shall eat +of the fruit of their own devices: + +and his people +shall cleave fondly to their habitation; but God shall be angry with his precious things, and shall not at all exalt him. + +How shall I deal with you, Ephraim? +how shall I protect you, Israel? what shall I do with you? I will make you as Adama, and as Seboim; my heart is turned at once, my repentance is powerfully excited. + +I will not act according to the fury of my wrath, I will not abandon Ephraim to be utterly destroyed: for I am God, and not man; the Holy One within you: and I will not enter into the city. + +I will go after the Lord: he shall utter +his voice as a lion: for he shall roar, and the children of the waters shall be amazed. + +They shall be amazed +and fly as a bird out of Egypt, and as a dove out of the land of the Assyrians: and I will restore them to their houses, says the Lord. + +Ephraim has compassed me with falsehood, and the house of Israel and Juda with ungodliness: +but now God knows them, and they shall be called God's holy people. + +

+ + +

But Ephraim is an evil spirit, he has chased the east wind all the day: he has multiplied empty and vain things, and made a covenant with the Assyrians, and oil has gone in the way of traffic into Egypt. + +And the Lord +has a controversy with Juda, in order to punish Jacob: according to his ways and according to his practices will he recompense him. + +He took his brother by the heel in the womb, and in his labors he had power with God. + +And he prevailed with the angel and was strong: they wept, and entreated me: they found me in the house of On, and there +a word was spoken to them. + +But the Lord God Almighty shall be his memorial. + +You therefore shall return to your God: keep you mercy and judgment, and draw near to your God continually. + + +As for Chanaan, in his hand is a balance of unrighteousness: he has loved to tyrannize. + +And Ephraim said, Nevertheless I am rich, I have found refreshment to myself. None of his labors shall be found +available to him, by reason of the sins which he has committed. + +But I the Lord your God brought you up out of the land of Egypt: I will yet cause you to dwell in tabernacles, according to the days of the feast. + +And I will speak to the prophets, and I have multiplied visions, and by the means of the prophets I was represented. + +If Galaad exists not, then the chiefs in Galaad when they sacrificed were false, and their altars were as heaps on the ground of the field. + +And Jacob retreated into the plain of Syria, and Israel served for a wife, and waited for a wife. + +And the Lord brought Israel out of the land of Egypt by a prophet, and by a prophet was he preserve. + +Ephraim was angry and excited, therefore his blood shall be poured out upon him, and the Lord shall recompense to him his reproach. + +

+ + +

According to the word of Ephraim he adopted ordinances for himself in Israel; and he established them for Baal, and died. + +And now they have sinned increasingly, and have made for themselves a molten image of their silver, according to the fashion of idols, the work of artificers accomplished for them: they say, Sacrifice men, for the calves have come to an end. + +Therefore shall they be as a morning cloud, and as the early dew that passes away, as chaff blown away from the threshing floor, and as a vapor from tears. + +But I am the Lord your God that establishes the heaven, and creates the earth, whose hands have framed the whole host of heaven: but I showed them not to you that you should go after them: and I brought you up out of the land of Egypt, and you shall know no God but me; and there is no Saviour beside me. + +I tended you as a shepherd in the wilderness, in an uninhabited land. + +According to their pastures, so they were completely filled; and their hearts were exalted; therefore they forgot me. + +And I will be to them as a panther, and as a leopard. + +I will meet them by the way of the Assyrians, as a she-bear excited, and I will rend the caul of their heart, and the lions' whelps of the thicket shall devour them there; the wild beasts of the field shall rend them in pieces. + +O Israel, who will aid +you in your destruction? + +Where is this your king? let him even save you in all your cities: let him judge you, of whom you said, Give me a king and a prince. + +And I gave you a king in my anger, and kept +him back in my wrath. + +Ephraim +has framed a conspiracy of unrighteousness, his sin is hidden. + +Pains as of a woman in travail shall come upon him: he is your wise son, because he shall not stay in the destruction of +your children. + +I will deliver +them out of the power of Hades, and will redeem them from death: where is your penalty, O death? O Hades, where is your sting? comfort is hidden from my eyes. + +Forasmuch as he will cause a division among +his brethren, the Lord shall bring upon him an east wind from the desert, and shall dry up his veins +and quite drain his fountains: he shall dry up his land, and +spoil all his precious vessels. + +

+ + +

Samaria shall be utterly destroyed: for she has resisted her God; they shall fall by the sword, and their sucklings shall be dashed against the ground, and their women with child ripped up. + +Return, O Israel, to the Lord your God; for the people have fallen through your iniquities. + +Take with you words, and turn to the Lord your God: speak to him, that you⌃ may not receive +the reward of unrighteousness, but that you⌃ may receive good things: and we will render in return the fruit of our lips. + +Assur shall never save us; we will not mount on horseback; we will no longer say to the works of our hands, Our gods. He who is in you shall pity the orphan. + +I will restore their dwellings, I will love them truly: for he has turned away my wrath from him. + +I will be as dew to Israel: he shall bloom as the lily, and cast forth his roots as Libanus. + +His branches shall spread, and he shall be as a fruitful olive, and his smell shall be as +the smell of Libanus. + +They shall return, and dwell under his shadow: they shall live and be satisfied with corn, and he shall flower as a vine: his memorial shall be to Ephraim as the wine of Libanus. + +What +has he to do any more with idols? I have afflicted him, and I will strengthen him: I am as a leafy juniper tree. From me is your fruit found. + +Who is wise, and will understand these things? or prudent, and will know them? for the ways of the Lord are straight, and the righteous shall walk in them: but the ungodly shall fall therein. + +

+
+ +Joel +JOEL +Joel +JOL +

JOEL +

+ + +

The word of the Lord which came to Joel the son of Bathuel. + +Hear these +words, you⌃ elders, and listen all you⌃ that inhabit the land. +1:2 +Gr. if. + Have such things happen in your days, or in the days of your fathers? + +Tell your children concerning them, and +let your children +tell their children, and their children another generation. + +The leavings of the +1:4 +It is difficult to assign the exact meaning of the Greek. + caterpillar has the locust eaten, and the leavings of the locust has the palmerworm eaten, and the leavings of the palmerworm has the cankerworm eaten. + +Awake, you⌃ drunkards, from +1:5 +Gr. their. + your wine, and weep: mourn, all you⌃ that drink wine to drunkenness: for joy and gladness and removed are from your mouth. + +For a strong and innumerable nation is come up against my land, their teeth are lion's teeth, and their back teeth those of a +lion's whelp. + +He has ruined my vine, and utterly broken my fig-trees: he has utterly searched +my vine, and cast it down; he has +1:7 +Gr. whitened, Gen 30,37. + peeled its branches. + +Lament to me more than a virgin girded with sackcloth for the +1:8 +i.e. one who married her as a virgin. + husband of her youth. + +The meat-offering and drink-offering are removed from the house of the Lord: mourn, you⌃ priests that serve at the altar of the Lord. + +For the plains languish: let the land mourn, for the corn languishes; the wine is dried up, the oil becomes scarce; + +the husbandmen are consumed: mourn your property on account of the wheat and barley; for the +1:11 +Or, vintage. + harvest has perished from off the field. + +The vine is dried up, and the fig-trees are become few; the pomegranate, and palm tree, and apple, and all trees of the field are dried up: for the sons of men +1:12 +Gr. disfigured, or, disgraced. + have have abolished joy. + +Gird yourselves +with sackcloth, and lament, you⌃ priests: mourn, you⌃ that serve at the altar: go in, sleep in sackcloths, you⌃ that minister to God: for the meat-offering and drink-offering are withheld from the house of your God. + +Sanctify a fast, proclaim a +solemn service, gather the elders +and all the inhabitants of the land into the house of your God, and cry earnestly to the Lord, + +Alas, Alas, Alas for the day! for the day of the Lord is near, and it will come as trouble upon trouble. + + +Your meat has been destroyed before your eyes, joy and gladness from out of the house of your God. + +The heifers have started at their mangers, the treasures are abolished, the wine presses are broken down; for the corn is withered. + +What shall we store up for ourselves? the herds of cattle have mourned, because they had no pasture; and the flocks of sheep have been utterly destroyed. + +To you, O Lord, will I cry: for fire has devoured the fair places of the wilderness, and a flame has burnt up all the trees of the field. + +And the cattle of the field have looked up to you: for the +1:20 +Gr. issues. See 2 Ki22:16; Ezek 47:4. + fountains of waters have been dried up, and fire has devoured the fair places of the wilderness. + +

+ + +

Sound the trumpet in Sion, make a proclamation in my holy mountain, and let all the inhabitants of the land be confounded: for the day of the Lord is near; + +for a day of darkness and gloominess is near, a day of cloud and mist: a numerous and strong people shall be spread upon the mountains as the morning; there has not been from the +2:2 +Gr. age. + beginning one like it, and after it there shall not be again even to the years of many generations. + +Before +2:3 +Gr. it, sc. the people. + them is a consuming fire, and behind them is a flame kindled: the land before them is as a paradise of delight, and behind them a desolate plain: and there shall none +2:3 +Lit. to him, sc. the people. + of them escape. + +Their appearance is as the appearance of horses; and as horsemen, so shall they pursue. + +As the sound of chariots on the tops of mountains shall they leap, and as the sound of a flame of fire devouring stubble, and as a numerous and strong people setting themselves in array for battle. + +Before them shall the people be crushed: every face +shall be as the blackness of a +2:6 +Or, pot. + caldron. + +As warriors shall they run, and as men of war shall they mount on the walls; and each shall move in his +right path, and they shall not turn aside from their tracks: + +and not one shall stand aloof from his brother: they shall go on weighed down with their arms, and they fall upon their weapons, yet shall they in no wise be destroyed. + +They shall seize upon the city, and run upon the walls, and go up upon the houses, and enter in through the windows as thieves. + +Before them the earth shall be confounded, and the sky shall be shaken: the sun and the moon shall be darkened, and the stars shall withdraw their light. + +And the Lord shall utter his voice before his host: for his camp is very great: for the +2:11 +Gr. works. + execution of his words is mighty: for the day of the Lord is great, very glorious, and who shall be +2:11 +Gr. sufficient for it? + able to +resist it? + +Now therefore, says the Lord your God, turn to me with all your heart, and with fasting, and with weeping, and with lamentation: + +and rend your hearts, and not your garments, and turn to the Lord your God: for he is merciful and compassionate, longsuffering, and plenteous in mercy, and repents of evils. + +Who knows if he will return, and repent, and leave a blessing behind him, even a meat-offering and a drink-offering to the Lord your God? + +Sound the trumpet in Sion, sanctify a fast, proclaim a +2:15 +See ch 1:14. + +solemn service: + +gather the people, sanctify the congregation, assemble the elders, gather the infants at the breast: let the bridegroom go forth of his chamber, and the bride out of her closet. + +Between the +2:17 +Gr. base. + porch and the altar let the priests that minister to the Lord weep, and say, Spare your people, O Lord, and give not your heritage to reproach, that the heathen should rule over them, lest they should say among the heathen, Where is their God? + +But the Lord was jealous of his land, and spared his people. + +And the Lord answered and said to his people, Behold, I +will send you corn, and wine, and oil, and you⌃ shall be satisfied with them: and I will no longer make you a reproach among the Gentiles. + +And I will chase away from you the northern +adversary, and will drive him away into a dry land, and I will sink +2:20 +Gr. cause to disappear. + his face in the former sea, and his back parts in the latter sea, and his +2:20 +Gr. corruption. + ill savor shall come up, and his +2:20 +See Job 6,7. + stink come up, because he has +2:20 +Gr. magnified his works. + wrought great things. + +Be of good courage, O land; rejoice and be glad: for the Lord has done great things. + +Be of good courage, you⌃ beasts of the plain, for the plains of the wilderness have budded, for the trees have borne their fruit, the fig tree and the vine have yielded their strength. + +Rejoice then and be glad, you⌃ children of Sion, in the Lord your God: for he has given you food +2:23 +Gr. to exactness. + fully, and he will rain on you the early and the latter rain, as before. + +And the floors shall be filled with corn, and the presses shall overflow with wine and oil. + +And I will recompense you for the years which the locust, and the caterpillar, and the palmerworm, and the cankerworm have eaten, +even my great army, which I sent against you. + +And you⌃ shall eat abundantly, and be satisfied, and shall praise the name of the Lord your God +for the things which he has wrought wonderfully with you: and my people shall not be ashamed for ever. + +And you⌃ shall know that I am in the midst of Israel, and +that I am the Lord your God, and +that there is none else beside me; and my people shall no more be ashamed for ever. + +And it shall come to pass afterward, that I will pour out of my Spirit upon all flesh; and your sons and your daughters shall prophesy, and your old men shall dream dreams, and your young men shall see visions. + +And on my servants and on +my handmaids in those days will I pour out of my Spirit. + +And I will show wonders in heaven, and upon the earth, blood, and fire, and vapor of smoke. + +The sun shall be turned into darkness, and the moon into blood, before the great and glorious day of the Lord come. + +And it shall come to pass +that whoever shall call on the name of the Lord shall be saved: for in mount Sion and in Jerusalem shall the saved one be as the Lord has said, and they that have glad tidings preached to them, whom the Lord has called. + +

+ + +

For, behold, in those days and at that time, when I shall have turned the captivity of Juda and Jerusalem, + +I will also gather all the +3:2 +Or, nations. See Mat 25,31. + Gentiles, and bring them down to the valley of Josaphat, and will plead with them there for my people and my heritage Israel, who have been dispersed among the Gentiles; and +these Gentiles have divided my land, + +and cast lots over my people, and have given +their boys to harlots, and sold +their girls for wine, and have drunk. + +And what have you⌃ to do with me, O Tyre, and Sidon, and all Galilee of the +3:4 +ἀλλοφυλων, usually Philistines. + Gentiles? do you⌃ render me a recompense? or do you⌃ bear malice against me? quickly and speedily will I return your recompense on your own heads: + +because you⌃ have taken my silver and my gold, and you⌃ have brought my choice ornaments into your temples; + +and you⌃ have sold the children of Juda and the children of Jerusalem to the children of the Greeks, that you⌃ might expel them from their coasts. + +Therefore, behold, I +will raise them up out of the place whither you⌃ have sold them, and I will return your recompense on your own heads. + +And I will sell your sons and your daughters into the hands of the children of Juda, and they shall sell them into captivity to a far distant nation: for the Lord has spoken +it. + +Proclaim these things among the Gentiles; +3:9 +Gr. sanctify. + declare war, arouse the warriors, draw near and go up, all you⌃ men of war. + +Beat your plowshares into swords, and your sickles into +3:10 +Or, daggers. + spears: let the weak say, I am strong. + +Gather yourselves together, and go in, all you⌃ nations round about, and gather yourselves there; let the +3:11 +Gr. meek. + timid become a warrior. + +Let them be aroused, let all the nations go up to the valley of Josaphat: for there will I sit to judge all the Gentiles round about. + +Bring forth the sickles, for the vintage is come: go in, tread +the grapes, for the press is full: cause the vats to overflow; for their wickedness is multiplied. + +Noises have resounded in the valley of judgment: for the day of the Lord is near in the valley of judgment. + +The sun and the moon shall be darkened, and the stars shall withdraw their light. + +And the Lord shall cry out of Sion, and shall utter his voice from Jerusalem; and the heaven and the earth shall be shaken, but the Lord shall spare his people, and shall strengthen the children of Israel. + +And you⌃ shall know that I am the Lord your God, who dwell in Sion my holy mountain: and Jerusalem shall be holy, and strangers shall not pass through her anymore. + +And it shall come to pass in that day +that the mountains shall drop sweet wine, and the hills shall flow with milk, and all the +3:18 +See chap 1:20. + fountains of Juda shall flow with water, and a fountain shall go forth of the house of the Lord, and water the valley of flags. + +Egypt shall be a desolation, and Idumea shall be a desolate plain, because of the wrongs of the children of Juda, because they have shed righteous blood in their land. + +But Judea shall be inhabited for ever, and Jerusalem to all generations. + +And I will make inquisition for their blood, and will by no means leave it unavenged: and the Lord shall dwell in Sion. + +

+
+ +Amos +AMOS +Amos +AMO +

AMOS +

+ + +

The words of Amos which came +to him in Accarim out of Thecue, which he saw concerning Jerusalem, in the days of Ozias king of Juda, and in the days of Jeroboam the son of Joas king of Israel, two years before the earthquake. + +And he said, The Lord has spoken out of Sion, and has uttered his voice out of Jerusalem; and the pastures of the shepherds have mourned, and the top of Carmel is dried up. + +And the Lord said, For three sins of Damascus, and for four, I will not turn away from it; because they sawed with iron saws the women with child of the Galaadites. + +And I will send a fire on the house of Azael, and it shall devour the foundations of the son of Ader. + +And I will break to pieces the bars of Damascus, and will destroy the inhabitants out of the plain of On, and will cut in pieces a tribe out of the men of Charrhan: and the famous people of Syria shall be led captive, says the Lord. + +Thus says the Lord; For three sins of Gaza, and for four, I will not turn away from them; because they took prisoners the captivity of Solomon, to shut +them up into Idumea. + +And I will send forth a fire on the walls of Gaza, and it shall devour its foundations. + +And I will destroy the inhabitants out of Azotus, and a tribe shall be cut off from Ascalon, and I will stretch out my hand upon Accaron: and the remnant of the Philistines shall perish, says the Lord. + +Thus says the Lord; For three transgressions of Tyre, and for four, I will not turn away from it; because they shut up the prisoners of Solomon into Idumea, and remembered not the covenant of brethren. + +And I will send forth a fire on the walls of Tyre, and it shall devour the foundations of it. + +Thus says the Lord; For three sins of Idumea, and for four, I will not turn away from them; because they pursued their brother with the sword, and destroyed the mother upon the earth, and summoned up his anger for a testimony, and kept up his fury to the end. + +And I will send forth a fire upon Thaman, and it shall devour the foundations of her walls. + +Thus says the Lord; For three sins of the children of Ammon, and for four, I will not turn away from him; because they ripped up the women with child of the Galaadites, that they might widen their coasts. + +And I will kindle a fire on the walls of Rabbath, and it shall devour her foundations with shouting in the day of war, and she shall be shaken in the days of her destruction: + +and her kings shall go into captivity, their priests and their rulers together, says the Lord. + +

+ + +

Thus says the Lord; For three sins of Moab, and for four, I will not turn away from it; because they burnt the bones of the king of Idumea to lime. + +But I will send forth a fire on Moab, and it shall devour the foundations of its cities: and Moab shall perish in weakness, with a shout, and with the sound of a trumpet. + +And I will destroy the judge out of her, and kill all her princes with him, says the Lord. + +Thus says the Lord; For three sins of the children of Judah, and for four, I will not turn away from him; because they have rejected the law of the Lord, and have not kept his ordinances, and their vain +idols which they made, which their fathers followed, caused them to err. + +And I will send a fire on Juda, and it shall devour the foundations of Jerusalem. + +Thus says the Lord; for three sins of Israel, and for four, I will not turn away from him; because they sold the righteous for silver, and the poor for sandals, + +wherewith to tread on the dust of the earth, and they have struck upon the heads of the poor, and have perverted the way of the lowly: and a son and his father have gone into the same maid, that they might profane the name of their God. + +And binding their clothes with cords they have made them curtains near the altar, and they have drunk wine gained by extortion in the house of their God. + +Nevertheless I cut off the Amorite from before them, whose height was as the height of a cedar, and he was strong as an oak; and I dried up his fruit from above, and his roots from beneath. + +And I brought you up out of the land of Egypt, and led you about in the desert forty years, that you⌃ should inherit the land of the Amorites. + +And I took of your sons for prophets, and of your young men for consecration. Are not these things so, you⌃ sons of Israel? says the Lord. + +But you⌃ gave the consecrated ones wine to drink; and you⌃ commanded the prophets, saying, Prophesy not. + +Therefore, behold, I roll under you, as a wagon full of straw is rolled. + +And flight shall perish from the runner, and the strong shall not hold fast his strength, and the warrior shall not save his life: + +and the archer shall not withstand, and he that is swift of foot shall in no wise escape; and the horseman shall not save his life. + +And the strong shall find no confidence in power: the naked shall flee away in that day, says the Lord. + +

+ + +

Hear you⌃ this word, O house of Israel, which the Lord has spoken concerning you, and against the whole family whom I brought up out of the land of Egypt, saying, + +You especially have I known out of all the families of the earth: therefore will I take vengeance upon you for all your sins. + +Shall two walk together at all, if they do not know one another? + +Will a lion roar out of his thicket if he has no prey? will a +lion's whelp utter his voice at all out of his lair, if he have taken nothing? + +Will a bird fall on the earth without a fowler? will a snare be taken up from the earth without having taken anything? + +Shall the trumpet sound in the city, and the people not be alarmed? shall there be evil in a city which the Lord has not wrought? + +For the Lord God will do nothing, without revealing instruction to his servants the prophets. + +A lion shall roar, and who will not be alarmed? the Lord God has spoken, and who will not prophesy? + +Proclaim it to the regions among the Assyrians, and to the regions of Egypt, and say, Gather yourselves to the mountain of Samaria, and behold many wonderful things in the midst of it, and the oppression that is in it. + +And she knew not what things would come against her, says the Lord, +even those that store up wrong and misery in their countries. + +Therefore thus says the Lord God; O Tyre, your land shall be made desolate round about +you; and he shall bring down your strength out of you, and your countries shall be spoiled. + +Thus says the Lord; As when a shepherd rescues from the mouth of a lion two legs or a piece of an ear, so shall be drawn forth the children of Israel who dwell in Samaria in the presence of +a foreign tribe, and in Damascus. + +Hear, O you⌃ priests, and testify to the house of Jacob, says the Lord God Almighty. + +For in the day wherein I shall take vengeance of the sins of Israel upon him, I will also take vengeance on the altars of Bethel: and the horns of the altar shall be broken down, and they shall fall upon the ground. + +I will crush and strike the turreted-house upon the summer-house; and the ivory-houses shall be destroyed, and many other houses also, says the Lord. + +

+ + +

Hear you⌃ this word, you⌃ heifers of the land of Basan that are in the mountain of Samaria, that oppress the poor, and trample on the needy, which say to their masters, Give us that we may drink. + +The Lord swears by his holiness, that, behold, the days come upon you, when they shall take you with weapons, and fiery destroyers shall cast those with you into boiling caldrons. + +And you⌃ shall be brought forth naked in the presence of each other; and you⌃ shall be cast forth on the mountain Romman, says the Lord. + +You⌃ went into Bethel, and sinned, and you⌃ multiplied sin at Galgala; and you⌃ brought your meat-offerings in the morning, +and your tithes every third day. + +And they read the law without, and called for public professions: proclaim aloud that the children of Israel have loved these things, says the Lord. + +And I will give you dullness of teeth in all your cities, and lack of bread in all your places: yet you⌃ returned not to me, says the Lord. + +Also I withheld from you the rain three months before the harvest: and I will rain upon one city, and on another city I will not rain: one part shall be rained upon, and the part on which I shall not rain shall be dried up. + +And +the inhabitants of two or three cities shall be gathered to one city to drink water, and they shall not be satisfied: yet you⌃ have not returned to me, says the Lord. + +I struck you with parching, and with blight: you⌃ multiplied your gardens, your vineyards, and your fig-grounds, and the cankerworm devoured your olive yards: yet not +even thus did you⌃ return to me, says the Lord. + +I sent pestilence among you by the way of Egypt, and killed your young men with the sword, together with your horses that were taken captive; and in my wrath against you I set fire to your camps: yet not even thus did you⌃ return to me, says the Lord. + +I overthrew you, as God overthrew Sodoma and Gomorrha, and you⌃ became as a brand plucked out of the fire: yet not even thus did you⌃ return to me, says the Lord. + +Therefore thus will I do to you, O Israel: nay because I will do thus to you, prepare to call on your God, O Israel. + +For, behold, I am he that strengthens the thunder, and creates the wind, and proclaims to men his Christ, forming the morning and the darkness, and mounting on the high places of the earth, The Lord God Almighty is his name. + +

+ + +

Hear you⌃ this word of the Lord, even a lamentation, which I take up against you. The house of Israel is fallen; it shall no more rise. + +The virgin of Israel has fallen upon his land; there is none that shall raise her up. + +Therefore thus says the Lord God; The city out of which there went forth a thousand, +in it there shall be left one hundred, and +in that out of which there went forth one hundred, there shall be left ten to the house of Israel. + +Therefore thus says the Lord to the house of Israel, Seek you⌃ me, and you⌃ shall live. + +But seek not Bethel, and go not into Galgala, and cross not over to the Well of the Oath: for Galgala shall surely go into captivity, and Bethel shall be as that which is not. + +Seek you⌃ the Lord, and you⌃ shall live; lest the house of Joseph blaze as fire, and it devour him, and there shall be none to quench it for the house of Israel. + + +It is he that executes judgment in the height +above, and he has established justice on the earth: + +who makes all things, and changes +them, and turns darkness into the morning, and darkens the day into night: who calls for the water of the sea, and pours it out on the face of the earth: the Lord is his name: + +who dispenses ruin to strength, and brings distress upon the fortress. + +They hated him that reproved in the gates, and abhorred holy speech. + +Therefore because they have struck the poor with their fists, and you⌃ have received of them choice gifts; you⌃ have built polished houses, but you⌃ shall not dwell in them; you⌃ have planted desirable vineyards, but you⌃ shall not drink the wine of them. + +For I know your many transgressions, and your sins are great, trampling on the just, taking bribes, and turning aside +the judgment of the poor in the gates. + +Therefore the prudent shall be silent at that time; for it is a time of evils. + +Seek good, and not evil, that you⌃ may live: and so the Lord God Almighty shall be with you, as you⌃ have said, + +We have hated evil, and loved good: and restore you⌃ judgment in the gates; that the Lord God Almighty may have mercy on the remnant of Joseph. + +Therefore thus says the Lord God Almighty; In all the streets +shall be lamentations; and in all the ways shall it be said, Woe, woe! the husbandman shall be called to mourning and lamentation, and to them that are skilled in complaining. + +And +there shall be lamentation in all the ways; because I will pass through the midst of you, says the Lord. + +Woe to you that desire the day of the Lord! what is this day of the Lord to you? whereas it is darkness, and not light. + +As if a man should flee from the face of a lion, and a bear should meet him; and he should spring into his house, and lean his hands upon the wall, and a serpent should bite him. + +Is not the day of the Lord darkness, and not light? and is not this +day gloom without brightness? + +I hate, I reject your feasts, and I will not smell +your meat-offerings in your general assemblies. + +Therefore if you⌃ should bring me your whole burnt sacrifices and meat-offerings, I will not accept +them: neither will I have respect to your grand peace-offerings. + +Remove from me the sound of your songs, and I will not hear the music of your instruments. + +But let judgment roll down as water, and righteousness as an impassable torrent. + +Have you⌃ offered to me victims and sacrifices, O house of Israel, forty years in the wilderness? + +Yes, you⌃ took up the tabernacle of Moloch, and the star of your god Raephan, the images of them which you⌃ made for yourselves. + +And I will carry you away beyond Damascus, says the Lord, the Almighty God is his name. + +

+ + +

Woe to them that set at nothing Sion, and that trust in the mountain of Samaria: they have gathered +the harvest of the heads of the nations, and they have gone in themselves. + +O house of Israel, pass by all +of you, and see; and pass by thence to Ematrabba; and thence descend to Geth of the Philistines, the chief of all these kingdoms, +see if their coasts are greater than your coasts. + +You⌃ who are approaching the evil day, who are drawing near and adopting false sabbaths; + +who sleep upon beds of ivory, and live delicately on their couches, and eat kids out of the flocks, and sucking calves out of the midst of the stalls; + +who excel in the sound of musical instruments; they have regarded them as dwelling, not as fleeting +pleasures; + +who drink strained wine, and anoint themselves with the best ointment; and have suffered nothing on occasion of the calamity of Joseph. + +Therefore now shall they depart into captivity from the dominion of princes, and the neighing of horses shall be cut off from Ephraim. + +For the Lord has sworn by himself, +saying, Because I abhor all the pride of Jacob, I do also hate his countries, and I will cut off +his city with all who inhabit it. + +And it shall come to pass, if there be ten men left in one house, that they shall die. + +But a remnant shall be left behind, and their relations shall take them, and shall strenuously endeavor to carry forth their bones from the house: and one shall say to the heads of the house, Is there yet +any one else with you? + +And he shall say, No +one else. And +the other shall say, Be silent, that you name not the name of the Lord. + +For, behold, the Lord commands, and he will strike the great house with breaches, and the little house with rents. + +Will horses run upon rocks? will they refrain from neighing at mares? for you⌃ have turned judgment into poison, and the fruit of righteousness into bitterness: + +you⌃ who rejoice at vanity, who say, Have we not possessed horns by our own strength? + +For behold, O house of Israel, I will raise up against you a nation, says the Lord of hosts; and they shall afflict you so that you⌃ shall not enter into Aemath, and as it were +from the river of the wilderness. + +

+ + +

Thus has the Lord God showed me; and, behold, a swarm of locusts coming from the east; and, behold, one caterpillar, king Gog. + +And it came to pass when he had finished devouring the grass of the land, that I said, Lord God, be merciful; who shall raise up Jacob? for he is small in number. + +Repent, O Lord, for this. And this shall not be, says the Lord. + +Thus has the Lord showed me; and, behold, the Lord called for judgment by fire, and it devoured the great deep, and devoured the Lord's portion. + +Then I said, O Lord, cease, I pray you: who shall raise up Jacob? for he is small in number. Repent, O Lord, for this. + +This also shall not be, says the Lord. + +Thus the Lord showed me; and behold, he stood upon a wall of adamant, and in his hand +was an adamant. + +And the Lord said to me, What see you, Amos? And I said, An adamant. And the Lord said to me, Behold, I appoint an adamant in the midst of my people Israel: I will not pass by them any more. + +And the joyful altars shall be abolished, and the sacrifices of Israel shall be set aside; and I will rise up against the house of Jeroboam with the sword. + +Then Amasias the priest of Bethel sent to Jeroboam king of Israel, saying, Amos is forming conspiracies against you in the midst of the house of Israel: the land will be utterly unable to bear all his words. + +For thus says Amos, Jeroboam shall die by the sword, and Israel shall be led away captive from his land. + +And Amasias said to Amos, Go, seer, remove you into the land of Juda, and live there, and you shall prophesy there: + +but you shall no longer prophesy at Bethel: for it is the king's sanctuary, and it is the royal house. + +And Amos answered, and said to Amasias, I was not a prophet, nor the son of a prophet; but I was a herdman, and a gatherer of sycamore fruits. + +And the Lord took me from the sheep, and the Lord said to me, Go, and prophesy to my people Israel. + +And now hear the word of the Lord: You say, Prophesy not to Israel, and raise not a tumult against the house of Jacob. + +Therefore thus says the Lord; Your wife shall be a harlot in the city, and your sons and your daughters shall fall by the sword, and your land shall be measured with the line; and you shall die in an unclean land; and Israel shall be led captive out of his land. Thus has the Lord God showed me. + +

+ + +

And behold a fowler's basket. + +And he said, What see you, Amos? And I said, A fowler's basket. And the Lord said to me, The end is come upon my people Israel; I will not pass by them any more. + +And the ceilings of the temple shall howl in that day, says the Lord God: +there shall be many a fallen one in every place; I will bring silence upon +them. + +Hear now this, you⌃ that oppress the poor in the morning, and drive the needy ones by tyranny from the earth, + +saying, When will the month pass away, and we shall sell, and the sabbath, and we shall open the treasure, to make the measure small, and to enlarge the weight, and make the balance unfair? + +That we may buy the poor for silver, and the needy for shoes; and we will trade in every kind of fruit. + +The Lord swears against the pride of Jacob, None of your works shall ever be forgotten. + +And shall not the land be troubled for these things, and shall not every one who dwells in it mourn? whereas destruction shall come up as a river, and shall descend as the river of Egypt. + +And it shall come to pass in that day, says the Lord God, +that the sun shall go down at noon, and the light shall be darkened on the earth by day: + +and I will turn your feasts into mourning, and all your songs into lamentation; and I will bring up sackcloth on all loins, and baldness on every head; and I will make them as the mourning of a beloved +friend, and those with them as a day of grief. + +Behold, the days come, says the Lord, that I will send forth a famine on the land, not a famine of bread, nor a thirst for water, but a famine of hearing the word of the Lord. + +And the waters shall be troubled from sea to sea, and from the north to the east shall +men run hither and there, seeking the word of the Lord, and they shall not find +it. + +In that day shall the fair virgins and the young men faint for thirst; + +they who swear by the propitiation of Samaria, and who say, Your god, O Dan, lives; and, Your god, O Bersabee, lives; and they shall fall, and shall no more rise again. + +

+ + +

I saw the Lord standing on the altar: and he said, Strike the mercy-seat, and the porch shall be shaken: and cut through into the heads of all; and I will kill the remnant of them with the sword: no one of them fleeing shall escape, and no one of them, striving to save himself shall be delivered. + +Though they hid themselves in hell, thence shall my hand drag them forth; and though they go up to heaven, thence will I bring them down. + +If they hide themselves in the top of Carmel, thence will I search +them out and take them; and if they should go down from my presence into the depths of the sea, there will I command the serpent, and he shall bite them. + +And if they should go into captivity before the face of their enemies, there will I command the sword, and it shall kill them: and I will set my eyes against them for evil, and not for good. + +And the Lord, the Lord God Almighty, +is he that takes hold of the land, and causes it to shake, and all that inhabit it shall mourn; and its destruction shall go up as a river, and shall descend as the river of Egypt. + + +It is he that builds his ascent up to the sky, and establishes his promise on the earth; who calls the water of the sea, and pours it out on the face of the earth; the Lord Almighty is his name. + +Are not you⌃ to me as the sons of the Ethiopians, O children of Israel? says the Lord. Did I not bring Israel up out of the land of Egypt, and the Philistines from Cappadocia, and the Syrians out of the deep? + +Behold, the eyes of the Lord God are upon the kingdom of sinners, and I will cut it off from the face of the earth; only I will not utterly cut off the house of Jacob, says the Lord. + +For I +will give commandment, and sift the house of Israel among all the Gentiles, as +corn is sifted in a sieve, and +yet a fragment shall not in any wise fall upon the earth. + +All the sinners of my people shall die by the sword, who say, Calamities shall certainly not draw near, nor come upon us. + +In that day I will raise up the tabernacle of David that is fallen, and will rebuild the ruins of it, and will set up the parts thereof that have been broken down, and will build it up as in the ancient days: + +that the remnant of men, and all the Gentiles upon whom my name is called, may earnestly seek +me, says the Lord who does all these things. + +Behold, the days come, says the Lord, when the harvest shall overtake the vintage, and the grapes shall ripen at seed time; and the mountains shall drop sweet wine, and all the hills shall be planted. + +And I will turn the captivity of my people Israel, and they shall rebuild the ruined cities, and shall inhabit +them; and they shall plant vineyards, and shall drink the wine from them; and they shall form gardens, and eat the fruit of them. + +And I will plant them on their land, and they shall no more be plucked up from the land which I have given them, says the Lord God Almighty. + +

+
+ +Obdias +OBDIAS +Obdias +OBA +

OBDIAS +

+ + +

The vision of Obdias. Thus says the Lord God to Idumea; I have heard a report from the Lord, and he has sent forth a message to the nations. + +Arise you⌃, and let us rise up against her to war. + +Behold, I have made you small among the Gentiles: you are greatly dishonored. The pride of your heart has elated you, dwelling +as you do in the holes of the rocks, +as one that exalts his habitation, saying in his heart, Who will bring me down to the ground? + +If you should mount up as the eagle, and if you should make your nest among the stars, thence will I bring you down, says the Lord. + +If thieves came in to you, or robbers by night, where would you have been cast away? would they not have stolen +just enough for themselves? and if grape gatherers went in to you, would they not leave a gleaning? + +How has Esau been searched out, and +how have his hidden things been detected? + +They sent you to your coasts: all the men of your covenant have withstood you; your allies have prevailed against you, they have set snares under you: they have no understanding. + +In that day, says the Lord, I will destroy the wise men out of Idumea, and understanding out of the mount of Esau. + +And your warriors from Thaeman shall be dismayed, to the end that man may be cut off from the mount of Esau. + +Because of the slaughter and the sin +committed against your brother Jacob, shame shall cover you, and you shall be cut off for ever. + +From the day that you stood in opposition +to him, in the days when foreigners were taking captive his forces, and strangers entered into his gates, and cast lots on Jerusalem, you also was as one of them. + +And +1:12 +Or, look not you, etc. + you should not have looked on the day of your brother in the day of strangers; nor should you have rejoiced against the children of Juda in the day of their destruction; neither should you have boasted in the day of +their affliction. + +Neither should you have gone into the gates of the people in the day of their troubles; nor yet should you have looked upon their gathering in the day of their destruction, nor should you have attacked their host in the day of their perishing. + +Neither should you have stood at the opening of their passages, to destroy utterly those of them that were escaping; neither should you have shut up his fugitives in the day of affliction. + +For the day of the Lord is near upon all the Gentiles: as you have done, so shall it be +done to you: your recompense shall be returned on your +own head. + +For as you have drunk upon my holy mountain, +so shall all the nations drink wine; they shall drink, and go down, and be as if they were not. + +But on mount Sion there shall be deliverance, and there shall be a sanctuary; and the house of Jacob shall take for an inheritance those that took them for an inheritance. + +And the house of Jacob shall be fire, and the house of Joseph a flame, and the house of Esau +shall be for stubble; and +Israel shall flame forth against them, and shall devour them, and there shall not be a corn-field +left to the house of Esau; because the Lord has spoken. + +And they +that dwell in the +1:19 +The Gr. is the Hebrew word. + south shall inherit the mount of Esau, and they in the plain the Philistines: and they shall inherit the mount of Ephraim, and the plain of Samaria, and Benjamin, and the land of Galaad. + +And this +shall be the domain of the captivity of the children of Israel, the land of the Chananites as far as Sarepta; and the captives of Jerusalem +shall inherit as far as Ephratha; they shall inherit the cities of the south. + +And they that escape shall come up from mount Sion, to take vengeance on the mount of Esau; and the kingdom shall be the Lord's. + +

+
+ +Jonas +JONAS +Jonas +JON +

JONAS +

+ + +

Now the word of the Lord came to Jonas the son of Amathi, saying, + +Rise, and go to Nineve, the great city, and preach in it; for the cry of its wickedness is come up to me. + +But Jonas rose up to flee to Tharsis from the presence of the Lord. And he went down to Joppa, and found a ship going to Tharsis: and he paid his fare, and went up into it, to sail with them to Tharsis from the presence of the Lord. + +And the Lord raised up a wind on the sea; and there was a great storm on the sea, and the ship was in danger of being broken. + +And the sailors were alarmed, and cried every one to his god, and cast out the wares that were in the ship into the sea, that it might be lightened of them. But Jonas was gone down into the +1:5 +Lit. +hollow. + hold of the ship, and was asleep, and snored. + +And the shipmaster came to him, and said to him, Why snore you? arise, and call upon your God, that God may save us, and we perish not. + +And each man said to his neighbor, Come, let us cast lots, and find out for whose sake this mischief is upon us. So they cast lots, and the lot fell upon Jonas. + +And they said to him, Tell us +1:8 +Alex. ++ 'for those whose cause this evil is upon us' + what is your occupation, and whence come you, and of what country and what people are you? + +And he said to them, I am a servant of the Lord; and I worship the Lord God of heaven, who made the sea, and the dry +land. + +Then the men feared exceedingly, and said to him, What is this +that you have done? for the men knew that he was fleeing from the face of the Lord, because he had told them. + +And they said to him, What shall we do to you, that the sea may be calm to us? for the sea +1:11 +Gr. +went. + rose, and lifted its wave exceedingly. + +And Jonas said to them, Take me up, and cast me into the sea, and the sea shall be calm to you: for I know that for my sake this great tempest is upon you. + +And the men tried hard to return to the land, and were not able: for the sea +1:13 +Lit. +went and rose up more. + rose and grew more and more tempestuous against them. + +And they cried to the Lord, and said, +1:14 +Gr. +by no means. See Acts 10. 14 + Forbid it, Lord: let us not perish for the sake of this man's life, and bring not righteous blood upon us: for you, Lord, have done as you would. + +So they took Jonas, and cast him out into the sea: and the sea ceased from its raging. + +And the men feared the Lord very greatly, and offered a sacrifice to the Lord, and vowed vows. + +

+ + +

Now the Lord had commanded a great whale to swallow up Jonas: and Jonas was in the belly of the whale three days and three nights. + +And Jonas prayed to the Lord his God out of the belly of the whale, + +and said, I cried in my affliction to the Lord my God, and he listened to me, +even to my cry out of the belly of hell: you heard my voice. + +You did cast me into the depths of the heart of the sea, and the floods compassed me: all your billows and your waves have passed upon me. + +And I said, I am cast out of your presence: shall I indeed look again toward your holy temple? + +Water was poured around me to the soul: the +2:6 +Gr. +last. + lowest deep compassed me, my head went down + +to the clefts of the mountains; I went down into the earth, whose bars are the everlasting barriers: yet, O Lord my God, let my ruined life be restored. + +When my soul was failing +2:8 +Gr. +from me. + me, I remembered the Lord; and may my prayer come to you into your holy temple. + +They that observe +2:9 +Gr. +vain and false +things. + + vanities and lies have forsaken their own mercy. + +But I will sacrifice to you with the voice of praise and thanksgiving: all that I have vowed I will pay to you, +2:10 +Or, +for a thank-offering to the Lord. + the Lord of +my salvation. + +And the whale was commanded by the Lord, and it cast up Jonas on the dry +land. + +

+ + +

And the word of the Lord came to Jonas the second time, saying, + +Rise, go to Nineve, the great city, and preach in it according to the former preaching which I spoke to you of. + +And Jonas arose, and went to Nineve, as the Lord had spoken. Now Nineve was +3:3 +Lit. +a great city to God. Acts 7:20. + an exceeding great city, of about three days' journey. + +And Jonas began to enter into the city about a day's journey, and he proclaimed, and said, Yet three days, and Nineve shall be overthrown. + +And the men of Nineve believed God, and proclaimed a fast, and put on sackcloths, from the greatest of them to the least of them. + +And the word reached the king of Nineve, and he arose from off his throne, and took off his raiment from him, and put on sackcloth, and sat on ashes. + +And proclamation was made, and it was commanded in Nineve by the king an by his great men, saying, Let not men, or cattle, or oxen, or sheep, taste +any thing, nor feed, nor drink water. + +So men and cattle were clothed with sackcloths, and cried earnestly to God; and they turned every one from their evil way, and from the iniquity that was in their hands, saying, + +Who knows if God will repent, and turn from his fierce anger, and +so we shall not perish? + +And God saw their works, that they turned from their evil ways; and God repented of the evil which he had said he would do to them; and he did +it not. + +

+ + +

But Jonas was very deeply grieved, and he was confounded. + +And he prayed to the Lord, and said, O Lord, were not these my words when I was yet in my land? therefore I +4:2 +Gr. +anticipate. + made haste to flee to Tharsis; because I knew that you are merciful and compassionate, longsuffering, and abundant in kindness, and repent of evil. + +And now, +4:3 +Gr. +sovereign Lord. + Lord God, take my life from me; for +it is better for me to die than to live. + +And the Lord said to Jonas, Are you very much grieved? + +And Jonas went out from the city, and sat over against the city; and he made for himself there a booth, and he sat under it, until he should perceive what would become of the city. + +And the Lord God commanded a gourd, and it came up over the head of Jonas, to be a shadow over his head, to shade him from his calamities: and Jonas rejoiced with great joy for the gourd. + +And God commanded a worm the next morning, and it struck the gourd, and it withered away. + +And it came to pass at the rising of the sun, that God commanded a burning east wind; and the sun struck on the head of Jonas, and he fainted, and despaired of his life, and said, +It is better for me to die than to live. + +And God said to Jonas, Are you very much grieved for the gourd? And he said, I am very much grieved, even to death. + +And the Lord said, You had pity on the gourd, for which you have not suffered, neither did you rear it; which came up +4:10 +Or, +little before. + before night, and perished before +another night: + +and shall not I spare Nineve, the great city, in which dwell more than twelve myriads of human beings, who do not know their right hand or their left hand; and +also much cattle? + +

+
+ +Michaeas +MICHAEAS +Michaeas +MIC +

MICHAEAS +

+ + +

And the word of the Lord came to Michaeas the son of Morasthi, in the days of Joatham, and Achaz, and Ezekias, kings of Juda, concerning what he saw regarding Samaria and Jerusalem. + +Hear +these words, you⌃ people; and let the earth give heed, and all that are in it: and the Lord God shall be among you for a testimony, the Lord out of his holy habitation. + +For, behold, the Lord comes forth out of his place, and will come down, and will go upon the high places of the earth. + +And the mountains shall be shaken under him, and the valleys shall melt like wax before the fire, and as water rushing down a declivity. + +All these +calamities are for the transgression of Jacob, and for the sin of the house of Israel. What is the transgression of Jacob? +is it not Samaria? and what is the sin of the house of Juda? +is it not Jerusalem? + +Therefore I will make Samaria +as a store-house of the fruits of the field, and +as a planting of a vineyard: and I will utterly demolish her stones, and I will expose her foundations. + +And they shall cut in pieces all the graven images, and all that she has hired they shall burn with fire, and I will utterly destroy all her idols: because she has gathered of the hires of fornication, and of the hires of fornication has she amassed +wealth. + +Therefore shall she lament and wail, she shall go barefooted, and +being naked she shall make lamentation as +that of serpents, and mourning as of the daughters of sirens. + +For her plague has become grievous; for it has come even to Juda; and has reached to the gate of my people, even to Jerusalem. + +You⌃ that are in Geth, exalt not yourselves, and you⌃ Enakim, do not rebuild from +the ruins of the house in derision: sprinkle dust +in the place of your laughter. + +The inhabitant of Sennaar, fairly inhabiting her cities, came not forth to mourn for the house next to her: she shall receive of you the stroke of grief. + +Who has begun +to act for good to her that dwells in sorrow? for calamities have come down from the Lord upon the gates of Jerusalem, + + +even a sound of chariots and horsemen: the inhabitants of Lachis, she is the leader of sin to the daughter of Sion: for in you were found the transgressions of Israel. + +Therefore shall he cause men to be sent forth as far as the inheritance of Geth, +even vain houses; they are become vanity to the kings of Israel; + +until they bring the heirs, O inhabitant of Lachis: the inheritance shall reach to Odollam, +even the glory of the daughter of Israel. + +Shave your hair, and make yourself bald for your delicate children; increase your widowhood as an eagle; for +your people are gone into captivity from you. + +

+ + +

They meditated troubles, and wrought wickedness on their beds, and they put it in execution with the daylight; for they have not lifted up their hands to God. + +And they desired fields, and plundered orphans, and oppressed families, and spoiled a man and his house, even a man and his inheritance. + +Therefore thus says the Lord; Behold, I devise evils against this family, out of which you⌃ shall not lift up your necks, neither shall you⌃ walk upright speedily: for the time is evil. + +In that day shall a parable be taken up against you, and a plaintive lamentation shall be uttered, saying, We are thoroughly miserable: the portion of my people has been measured out with a line, and there was none to hinder him so as to turn him back; your fields have been divided. + +Therefore you shall have no one to cast a line for the lot. + +Weep not with tears in the assembly of the Lord, neither let +any weep for these things; for he shall not remove the reproaches, + +who says, The house of Jacob has provoked the Spirit of the Lord; are not these his practices? Are not the Lord's words right with him? and have they not proceeded correctly? + +Even beforetime my people withstood +him as an enemy against his peace; they have stripped off his skin to remove hope +in the conflict of war. + +The leaders of my people shall be cast forth from their luxurious houses; they are rejected because of their evil practices; draw you⌃ near to the everlasting mountains. + +Arise you, and depart; for this is not your rest because of uncleanness: you⌃ have been utterly destroyed; + +you⌃ have fled, no one pursuing +you: your spirit has framed falsehood, it has dropped on you for wine and strong drink. But it shall come to pass, +that out of the dropping of this people, + +Jacob shall be completely gathered with all +his people: I will surely receive the remnant of Israel; I will cause them to return together, as sheep in trouble, as a flock in the midst of their fold: they shall rush forth from among men through the breach made before them: + +they have broken through, and passed the gate, and gone out by it: and their king has gone out before them, and the Lord shall lead them. + +

+ + +

And he shall say, Hear now these words, you⌃ heads of the house of Jacob, and you⌃ remnant of the house of Israel; is it not for you to know judgment? + + +who hate good, and seek evil; +who tear their skins off them, and their flesh off their bones: + +even as they devoured the flesh of my people, and stripped their skins off them, and broke their bones, and divided +them as flesh for the caldron, and as meat for the pot, + +thus they shall cry to the Lord, but he shall not listen to them; and he shall turn away his face from them at that time, because they have done wickedly in their practices against themselves. + +Thus says the Lord concerning the prophets that lead my people astray, that bit with their teeth, and proclaim peace to them; and +when nothing was put into their mouth, they raised up war against them: + +therefore there shall be night to you instead of a vision, and there shall be to you darkness instead of prophecy; and the sun shall go down upon the prophets, and the day shall be dark upon them. + +And the seers of night-visions shall be ashamed, and the prophets shall be laughed to scorn: and all the people shall speak against them, because there shall be none to listen to them. + +Surely I will strengthen myself with the Spirit of the Lord, and of judgment, and of power, to declare to Jacob his transgressions, and to Israel his sins. + +Hear now these words, you⌃ chiefs of the house of Jacob, and the remnant of the house of Israel, who hate judgment, and pervert all righteousness; + +who build up Sion with blood, and Jerusalem with iniquity. + +The heads thereof have judged for gifts, and the priests thereof have answered for hire, and her prophets have divined for silver: and +yet they have rested on the Lord, saying, Is not the Lord among us? no evil shall come upon us. + +Therefore on your account Sion shall be plowed as a field, and Jerusalem shall be as a storehouse of fruits, and the mountain of the house as a grove of the forest. + +

+ + +

And at the last days the mountain of the Lord shall be manifest, established on the tops of the mountains, and it shall be exalted above the hills; and the peoples shall hasten to it. + +And many nations shall go, and say, Come, let us go up to the mountain of the Lord, and to the house of the God of Jacob; and they shall show us his way, and we will walk in his paths: for out of Sion shall go forth a law, and the word of the Lord from Jerusalem. + +And he shall judge among many peoples, and shall rebuke strong nations afar off; and they shall beat their swords into plowshares, and their spears into sickles; and nation shall no more lift up sword against nation, neither shall they learn to war any more. + +And every one shall rest under his vine, and every one under his fig tree; and there shall be none to alarm +them: for the mouth of the Lord Almighty has spoken these +words. + +For all +other nations shall walk everyone in his own way, but we will walk in the name of the Lord our God for ever and ever. + +In that day, says the Lord, I will gather her that is bruised, and will receive her that is cast out, and those whom I rejected. + +And I will make her that was bruised a remnant, and her that was rejected a mighty nation: and the Lord shall reign over them in mount Sion from henceforth, even for ever. + +And you, dark tower of the flock, daughter of Sion, on you the dominion shall come and enter in, +even the first kingdom from Babylon to the daughter of Jerusalem. + +And now, why have you known calamities? was there not a king to you? or has your counsel perished that pangs as of a woman in travail have seized upon you? + +Be in pain, and strengthen yourself, and draw near, O daughter of Sion, as a woman in travail: for now you shall go forth out of the city, and shall lodge in the plain, and shall reach even to Babylon: thence shall the Lord your God deliver you, and thence shall he redeem you out of the hand of your enemies. + +And now have many nations gathered against you, saying, We will rejoice, and our eyes shall look upon Sion. + +But they know not the thought of the Lord, and have not understood his counsel: for he has gathered them as sheaves of the floor. + +Arise, and thresh them, O daughter of Sion: for I will make your horns iron, and I will make your hoofs brass: and you shall utterly destroy many nations, and shall consecrate their abundance to the Lord, and their strength to the Lord of all the earth. + +

+ + +

Now shall the daughter +of Sion be completely hedged in: he has laid siege against us: they shall strike the tribes of Israel with a rod upon the cheek. + +And you, Bethleem, house of Ephratha, are few in number to be +reckoned among the thousands of Juda; +yet out of you shall one come forth to me, to be a ruler of Israel; and his goings forth were from the beginning, +even from eternity. + +Therefore shall he appoint them +to wait till the time of her that travails: she shall bring forth, and +then the remnant of their brethren shall return to the children of Israel. + +And the Lord shall stand, and see, and feed his flock with power, and they shall dwell in the glory of the name of the Lord their God: for now shall they be magnified to the ends of the earth. + +And she shall have peace when Assur shall come into your land, and when he shall come up upon your country; and there shall be raised up against him seven shepherds, and eight attacks of men. + +And they shall tend the Assyrian with a sword, and the land of Nebrod with her trench: and he shall deliver +you from the Assyrian, when he shall come upon your land, and when he shall invade your coasts. + +And the remnant of Jacob shall be among the Gentiles in the midst of many peoples, as dew falling from the Lord, and as lambs on the grass; that none may assemble nor resist among the sons of men. + +And the remnant of Jacob shall be among the Gentiles in the midst of many nations, as a lion in the forest among cattle, and as a +lion's whelp among the flocks of sheep, even as when he goes through, and selects, and carries off +his prey, and there is none to deliver. + +Your hand shall be lifted up against them that afflict you, and all your enemies shall be utterly destroyed. + +And it shall come to pass in that day, says the Lord, +that I will utterly destroy the horses out of the midst of you, and destroy your chariots; + +and I will utterly destroy the cities of your land, and demolish all your strongholds: + +and I will utterly destroy your sorceries out of your hands; and there shall be no soothsayers in you. + +And I will utterly destroy your graven images, and your statues out of the midst of you; and you shall never any more worship the works of your hands. + +And I will cut off the groves out of the midst of you, and I will abolish your cities. + +and I will execute vengeance on the heathen in anger and wrath, because they listened not. + +

+ + +

Hear now a word: the Lord God has said; Arise, plead with the mountains, and let the hills hear your voice. + +Hear you⌃, O mountains, the controversy of the Lord, and +you⌃ valleys +even the foundations of the earth: for the Lord +has a controversy with his people, and will plead with Israel. + +O my people, what have I done to you? or wherein have I grieved you? or wherein have I troubled you? answer me. + +For I brought tee up out of the land of Egypt, and redeemed you out of the house of bondage, and sent before you Moses, and Aaron, and Mariam. + +O my people, remember now, what counsel Balac king of Moab took against you, and what Balaam the son of Beor answered him, from the reeds to Galgal; that the righteousness of the Lord might be known. + +Wherewithal shall I reach the Lord, +and lay hold of my God most high? shall I reach him by whole burnt offerings, by calves of a year old? + +Will the Lord accept thousands of rams, or ten thousands of fat goats? should I give my firstborn for ungodliness, the fruit of my body for the sin of my soul? + +Has it +not been told you, O man, what +is good? or what does the Lord require of you, but to do justice, and love mercy, and be ready to walk with the Lord your God? + +The Lord's voice shall be proclaimed in the city, and he shall save those that fear his name: hear, O tribe; and who shall order the city? + + +Is there not fire, and the house of the wicked heaping up wicked treasures, and +that with the pride of unrighteousness? + +Shall the wicked be justified by the balanced, or deceitful weights in the bag, + +whereby they have accumulated their ungodly wealth, and they that dwell in the city have uttered falsehoods, and their tongue has been exalted in their mouth? + +Therefore will I begin to strike you; I will destroy you in your sins. + +You shall eat, and shall not be satisfied; and there shall be darkness upon you; and he shall depart from +you, and you shall not escape; and all that shall escape shall be delivered over to the sword. + +You shall sow, but you shall not reap; you shall press the olive, but you shall not anoint yourself with oil; and +shall make wine, but you⌃ shall drink no wine: and the ordinances of my people shall be utterly abolished. + +For you have kept the statues of Zambri, and +done all the works of the house of Achaab; and you⌃ have walked in their ways, that I might deliver you to utter destruction, and those that inhabit the city to hissing: and you⌃ shall bear the reproach of nations. + +

+ + +

Alas for me! for I am become as one gathering straw in harvest, and as +one gathering grape-gleanings in the vintage, when there is no cluster for me to eat the first-ripe fruit: alas my soul! + +For the godly is perished from the earth; and there is none among men that orders +his way aright: they all quarrel even to blood: they grievously afflict every one his neighbor: + +they prepare their hands for mischief, the prince asks +a reward, and the judge speaks flattering words; it is the desire of their soul: + +therefore I will take away their goods as a devouring moth, and as one who acts by a +rigid rule in a day of visitation. Woe, woe, your times of vengeance are come; now shall be their lamentations. + +Trust not in friends, and confide not in guides: beware of your wife, so as not to commit anything to her. + +For the son dishonors his father, the daughter will rise up against her mother, the daughter-in-law against her mother-in-law: those in his house +shall be all a man's enemies. + +But I will look to the Lord; I will wait upon God my Saviour: my God will listen to me. + +Rejoice not against me, my enemy; for I have fallen +yet shall arise; for though I should sit in darkness, the Lord shall be a light to me. + +I will bear the indignation of the Lord, because I have sinned against him, until he make good my cause: he also shall maintain my right, and shall bring me out to the light, +and I shall behold his righteousness. + +And she that is my enemy shall see it, and shall clothe herself with shame, who says, Where +is the Lord your God? my eyes shall look upon her: now shall she be for trampling as mire in the ways. + + +It is the day of making of brick; that day shall be your utter destruction, and that day shall utterly abolish your ordinances. + +And your cities shall be levelled, and parted among the Assyrians; and your strong cities shall be parted from Tyre to the river, and from sea to sea, and from mountain to mountain. + +And the land shall be utterly desolate together with them that inhabit it, because of the fruit of their doings. + +Tend your people with your rod, the sheep of your inheritance, those that inhabit by themselves the thicket in the midst of Carmel: they shall feed in the land of Basan, and in the land of Galaad, as in the days of old. + +And according to the days of your departure out of Egypt shall you⌃ see marvelous +things. + +The nations shall see and be ashamed; and at all their might they shall lay their hands upon their mouth, their ears shall be deafened. + +They shall lick the dust as serpents crawling on the earth, they shall be confounded in their holes; they shall be amazed at the Lord our God, and will be afraid of you. + +Who is a God like you, cancelling iniquities, and passing over the sins of the remnant of his inheritance? and he has not kept his anger for a testimony, for he delights in mercy. + +He will return and have mercy upon us; he will sink our iniquities, and they shall be cast into the depth of the sea, +even all our sins. + +He shall give blessings truly to Jacob, and mercy to Abraam, as you swore to our fathers, according to the former days. + +

+
+ +Naum +NAUM +Naum +NAM +

NAUM +

+ + +

The burden of Nineve: the book of the vision of Naum the Elkesite. + +God is jealous, and the Lord avenges; the Lord avenges with wrath; the Lord takes vengeance on his adversaries, and he cuts off his enemies. + +The Lord is longsuffering, and his power is great, and the Lord will not hold any guiltless: his way is in destruction and in the whirlwind, and the clouds are the dust of his feet. + +He threatens the sea, and dries it up, and exhausts all the rivers: the land of Basan, and Carmel are brought low, and the flourishing +trees of Libanus have come to nothing. + +The mountains quake at him, and the hills are shaken, and the earth recoils at his presence, +even the world, and all that dwell in it. + +Who shall stand before his anger? and who shall withstand in the anger of his wrath? his wrath brings to nothing kingdoms, and the rocks are burst asunder by him. + +The Lord is good to them that wait on him in the day of affliction; and he knows them that reverence him. + +But with an overrunning flood he will make an utter end: darkness shall pursue those that rise up against +him and his enemies. + +What do you⌃ devise against the Lord? he will make a complete end: he will not take vengeance by affliction twice at the same time. + +For +the enemy shall be laid bare even to the foundation, and shall be devoured as twisted yew, and as stubble fully dry. + +Out of you shall proceed a device against the Lord, counselling evil things hostile +to him. + +Thus says the Lord who rules over many waters, Even thus shall they be sent away, and the report of you shall not be heard any more. + +And now will I break his rod from off you, and will burst +your bonds. + +And the Lord shall give a command concerning you; there shall no more of your name be scattered: I will utterly destroy the graven +images out of the house of your god, and the molten +images: I will make your grave; for +they are swift. + +Behold upon the mountains the feet of him that brings glad tidings, and publishes peace! O Juda, keep your feasts, pay your vows: for they shall no more pass through you to +your decay. + +

+ + +

It is all over with him, he has been removed, +one who has been delivered from affliction has come up panting into your presence, watch the way, strengthen +your loins, be very valiant in +your strength. + +For the Lord has turned aside the pride of Jacob, as the pride of Israel: for they have utterly rejected them, and have destroyed their branches. + + +They have destroyed the arms of their power from among men, their mighty men sporting with fire: the reins of their chariots +shall be destroyed in the day of his preparation, and the horsemen shall be thrown into confusion + +in the ways, and the chariots shall clash together, and shall be entangled in each other in the broad ways: their appearance is as lamps of fire, and as gleaming lightnings. + +And their mighty men shall bethink themselves and flee by day; and they shall be weak as they go; and they shall hasten to her walls, and shall prepare their defences. + +The gates of the cities have been opened, and the palaces have fallen into ruin, + +and the foundation has been exposed; and she has gone up, and her maidservants were led +away as doves moaning in their hearts. + +And +as for Nineve, her waters +shall be as a pool of water: and they fled, and staid not, and there was none to look back. + +They plundered the silver, they plundered the gold, and there was no end of their adorning; they were loaded +with it upon all their pleasant vessels. + + +There is thrusting forth, and shaking, and tumult, and heart-breaking, and loosing of knees, and pangs on all loins; and the faces of all +are as the blackening of a pot. + +Where is the dwelling-place of the lions, and the pasture that belonged to the whelps? where did the lion go, that the lion's whelp should enter in there, and there was none to scare +him away? + +The lion seized enough prey for his whelps, and strangled for his +young lions, and filled his lair with prey, and his dwelling-place with spoil. + +Behold, I am against you, says the Lord Almighty, and I will burn up your multitude in the smoke, and the sword shall devour your lions; and I will utterly destroy your prey from off the land, and your deeds shall no more at all be heard of. + +

+ + +

O city of blood, wholly false, full of unrighteousness; the prey shall not be handled. + +The noise of whips, and the noise of the rumbling of wheels, and of the pursuing horse, and of the bounding chariot, + +and of the mounting rider, and of the glittering sword, and of the gleaming arms, and of a multitude of slain, and of heavy falling: and there was no end to her nations, but they shall be weak in their bodies + +because of the abundance of fornication: +she is a fair harlot, and well-favoured, skilled in sorcery, that sells the nations by her fornication, and peoples by her sorceries. + +Behold, I am against you, says the Lord God Almighty, and I will uncover your skirts in your presence, and I will show the nations your shame, and the kingdoms your disgrace. + +And I will cast abominable filth upon you according to your unclean ways, and will make you a public example. + +And it shall be +that every one that sees you shall go down from you, and shall say, Wretched Nineve! who shall lament for her? whence shall I seek comfort for her? + +Prepare you a portion, tune the chord, prepare a portion for Ammon: she that dwells among the rivers, water is round about her, whose dominion is the sea, and whose walls are water. + +And Ethiopia is her strength, and Egypt; and there was no limit of the flight +of her enemies; and the Libyans became her helpers. + +Yet she shall go as a prisoner into captivity, and they shall dash her infants against the ground at the top of all her ways: and they shall cast lots upon all her glorious +possessions, and all her nobles shall be bound in chains. + +And you shall be drunken, and shall be overlooked; and you shall seek for yourself strength because of +your enemies. + +All your strongholds are as fig-trees having watchers: if they be shaken, they shall fall into the mouth of the eater. + +Behold, your people within you are as women: the gates of your land shall surely be opened to your enemies: the fire shall devour your bars. + +Draw you water for a siege, and well secure your strongholds: enter into the clay, and be you trodden in the chaff, make +the fortifications stronger than brick. + +There the fire shall devour you; the sword shall utterly destroy you, it shall devour you as the locust, and you shall be pressed down as a palmerworm. + +You have multiplied your merchandise beyond the stars of heaven: the palmerworm has attacked +it, and has flown away. + +Your mixed +multitude has suddenly departed as the grasshopper, as the locust perched on a hedge in a frosty day; the sun arises, and it flies off, and knows not its place: woe to them! + +Your shepherds have slumbered, the Assyrian king has laid low your mighty men: your people departed to the mountains, and there was none to receive +them. + +There is no healing for your bruise; your wound has rankled: all that hear the report of you shall clap their hands against you; for upon whom has not your wickedness passed continually? + +

+
+ +Ambacum +AMBACUM +Ambacum +HAB +

AMBACUM +

+ + +

The burden which the prophet Ambacum saw. + +How long, O Lord, shall I cry out, and you will not listen? +how long shall I cry out to you being injured, and you will not save? + +Therefore have you shown me troubles and griefs to look upon, misery and ungodliness? judgment is before me, and the judge receives a reward. + +Therefore the law is frustrated, and judgment proceeds not effectually, for the ungodly +man prevails over the just; therefore perverse judgment will proceed. + +Behold, you⌃ despisers, and look, and wonder marvelously, and vanish: for I work a work in your days, which you⌃ will in no wise believe, though a man declare +it to you. + +Therefore, behold, I stir up the Chaldeans, the bitter and hasty nation, that walks upon the breadth of the earth, to inherit tabernacles not his own. + +He is terrible and famous; his judgment shall proceed of himself, and his dignity shall come out of himself. + +And his horses shall bound +more swiftly than leopards, and +they are fiercer than the wolves of Arabia: and his horsemen shall ride forth, and shall rush from far; and they shall fly as an eagle hasting to eat. + +Destruction shall come upon ungodly men, resisting with their adverse front, and he shall gather the captivity as the sand. + +And he shall be at his ease with kings, and princes are his toys, and he shall mock at every strong-hold, and shall cast a mound, and take possession of it. + +Then shall he change his spirit, and he shall pass through, and make an atonement, +saying, This strength +belongs to my god. + + +Are not you from the beginning, O Lord God, my Holy One? and surely we shall not die. O Lord, you have established it for judgment, and he has formed me to chasten +with his correction. + + +His eye is too pure to behold evil +doings, and to look upon grievous afflictions: therefore do you look upon despisers? will you be silent when the ungodly swallows up the just? + +And will you make men as the fishes of the sea, and as the reptiles which have no guide? + +He has brought up destruction with a hook, and drawn one with a casting net, and caught another in his drags: therefore shall his heart rejoice and be glad. + +Therefore will he sacrifice to his drag, and burn incense to his casting-net, because by them he has made his portion fat, and his meats choice. + +Therefore will he cast his net, and will not spare to kill the nations continually. + +

+ + +

I will stand upon my watch, and mount upon the rock, and watch to see what he will say by me, and what I shall answer when I am reproved. + +And the Lord answered me and said, Write the vision, and +that plainly on a tablet, that he that reads it may run. + +For the vision +is yet for a time, and it shall shoot forth at the end, and not in vain: though he should wait, wait for him; for he will surely come, and will not wait. + +If he should draw back, my soul has no pleasure in him: but the just shall live by my faith. + +But the arrogant man and the scorner, the boastful man, shall not finish anything; who has enlarged his desire as the grave, and like death he is never satisfied, and he will gather to himself all the nations, and will receive to himself all the peoples. + +Shall not all these take up a parable against him? and a proverb to tell against him? and they shall say, Woe to him that multiplies to himself the possessions which are not his! how long? and who heavily loads his yoke. + +For suddenly there shall arise up those that bite him, and they that plot against you shall awake, and you shall be a plunder to them. + +Because you have spoiled many nations, all the nations that are left shall spoil +you, because of the blood of men, and the sins of the land and city, and of all that dwell in it. + +Woe to him that covets an evil covetousness to his house, that he may set his nest on high, that he may be delivered from the power of evils. + +You have devised shame to your house, you have utterly destroyed many nations, and your soul has sinned. + +For the stone shall cry out of the wall, and the beetle out of the timber shall speak. + +Woe to him that builds a city with blood, and establishes a city by unrighteousness. + +Are not these things of the Lord Almighty? surely many people have been exhausted in the fire, and many nations have fainted. + +For the earth shall be filled with the knowledge of the glory of the Lord; it shall cover them as water. + +Woe to him that gives his neighbor to drink the thick lees +of wine, and intoxicates +him, that he may look upon their secret parts. + +Drink you also +your fill of disgrace instead of glory: shake, O heart, and quake, the cup of the right hand of the Lord has come round upon you, and dishonor has gathered upon your glory. + +For the ungodliness of Libanus shall cover you, and distress because of wild beasts shall dismay you, because of the blood of men, and the sins of the land and city, and of all that dwell in it. + +What profit it the graven image, that they have graven it? +one has made it a molten work, a false image; for the maker has trusted in his work, to make dumb idols. + +Woe to him that says to the wood, Awake, arise; and to the stone, Be you exalted! whereas it is an image, and this is a casting of gold and silver, and there is no breath in it. + +But the Lord is in his holy temple: let all the earth fear before him. + +

+ + +

A PRAYER OF THE PROPHET AMBACUM, WITH A SONG. + +O Lord, I have heard your report, and was afraid: I considered your works, and was amazed: you shall be known between the two living creatures, you shall be acknowledged when the years draw near; you shall be manifested when the time is come; when my soul is troubled, you will in wrath remember mercy. + +God shall come from Thaeman, and the Holy One from the dark shady mount Pharan. Pause. + +His excellence covered the heavens, and the earth was full of his praise. And his brightness shall be as light; +there were horns in his hands, and he caused a mighty love of his strength. + +Before his face shall go a report, and it shall go forth into the plains, + +the earth stood at his feet and trembled: he looked, and the nations melted away: the mountains were violently burst through, the everlasting hills melted at his everlasting going forth. + +Because of troubles I looked upon the tents of the Ethiopians: the tabernacles also of the land of Madiam shall be dismayed. + +Was you angry, O Lord, with the rivers? or +was your wrath against the rivers, or your anger against the sea? for you will mount on your horses, and your chariots are salvation. + +Surely you did bend they bow at scepters, says the Lord. Pause. The land of rivers shall be torn asunder. + +The nations shall see you and be in pain, +as you do divide the moving waters: the deep uttered her voice, and raised her form on high. + +The sun was exalted, and the moon stood still in her course: your darts shall go forth at the light, at the brightness of the gleaming of your arms. + +You will bring low the land with threatening, and in wrath you will break down the nations. + +You went forth for the salvation of your people, to save your anointed: you shall bring death on the heads of transgressors; you have brought bands upon +their neck. Pause. + +You did cut asunder the heads of princes with amazement, they shall tremble in it; they shall burst their bridles, +they shall be as a poor man devouring in secret. + +And you do cause your horses to enter the sea, disturbing much water. + +I watched, and my belly trembled at the sound of the prayer of my lips, and trembling entered into my bones, and my frame was troubled within me; I will rest in the day of affliction, from going up to the people of my sojourning. + +For +though the fig tree shall bear no fruit, and there shall be no produce on the vines; the labor of the olive shall fail, and the fields shall produce no food: the sheep have failed from the pasture, and there are no oxen at the cribs; + +yet I will exult in the Lord, I will joy in God my Saviour. + +The Lord God is my strength, and he will perfectly strengthen my feet; he mounts me upon high places, that I may conquer by his song. + +

+
+ +Sophonias +SOPHONIAS +Sophonias +ZEP +

SOPHONIAS +

+ + +

The word of the Lord which came to Sophonias the son of Chusi, the son of Godolias, the son of Amorias, the son of Ezekias, in the days of Josias son of Amon, king of Juda. + +Let there be an utter cutting off from the face of the land, says the Lord. + +Let man and cattle be cut off; let the birds of the air and the fishes of the sea be cut off; and the ungodly shall fail, and I will take away the transgressors from the face of the land, says the Lord. + +And I will stretch out my hand upon Juda, and upon all the inhabitants of Jerusalem; and I will remove the names of Baal out of this place, and the names of the priests; + +and them that worship the host of heaven upon the housetops; and them that worship and swear by the Lord, and them that swear by their king; + +and them that turn aside from the Lord, and them that seek not the Lord, and them that cleave not to the Lord. + +Fear you⌃ before the Lord God; for the day of the Lord is near; for the Lord has prepared his sacrifice, and has sanctified his guests. + +And it shall come to pass in the day of the Lord's sacrifice, that I will take vengeance on the princes, and on the king's house, and upon all that wear strange apparel. + +And I will openly take vengeance on the porches in that day, +on the men that fill the house of the Lord their God with ungodliness and deceit. + +And there shall be in that day, says the Lord, the sound of a cry from the gate of men slaying, and a howling from the second +gate, and a great crashing from the hills. + +Lament, you⌃ that inhabit the +city that has been broken down, for all the people has become like Chanaan; and all that were exalted by silver have been utterly destroyed. + +And it shall come to pass in that day, +that I will search Jerusalem with a candle, and will take vengeance on the men that despise the things committed to them; but they say in their hearts, The Lord will not do any good, neither will he do any evil. + +And their power shall be for a spoil, and their houses for utter desolation; and they shall build houses, but shall not dwell in them; and they shall plant vineyards, but shall not drink the wine of them. + +For the great day of the Lord +is near, +it is near, and very speedy; the sound of the day of the Lord is made bitter and harsh. + +A mighty day of wrath is that day, a day of affliction and distress, a day of desolation and destruction, a day of gloominess and darkness, a day of cloud and vapor, + +a day of the trumpet and cry against the strong cities, and against the high towers. + +And I will greatly afflict the men, and they shall walk as blind men, because they have sinned against the Lord; therefore he shall pour out their blood as dust, and their flesh as dung. + +And their silver and their gold shall in nowise be able to rescue them in the day of the Lord's wrath; but the whole land shall be devoured by the fire of his jealously; for he will bring a speedy destruction on all them that inhabit the land. + +

+ + +

Be you⌃ gathered and closely joined together, O unchastened nation; + +before you⌃ become as the flower that passes away, before the anger of the Lord come upon you, before the day of the wrath of the Lord come upon you. + +Seek you⌃ the Lord, all you⌃ meek of the earth; do judgment, and seek justice, and answer accordingly; that you⌃ may be hid in the day of the wrath of the Lord. + +For Gaza shall be utterly spoiled, and Ascalon shall be destroyed; and Azotus shall be cast forth at noon-day, and Accaron shall be rooted up. + +Woe to them that dwell on the border of the sea, neighbors of the Cretans! the word of the Lord is against you, O Chanaan, land of the Philistines, and I will destroy you out of +your dwelling-place. + +And Crete shall be a pasture of flocks, and a fold of sheep. + +And the sea cost shall be for the remnant of the house of Juda; they shall pasture upon them in the houses of Ascalon; they shall rest in the evening because of the children of Juda; for the Lord their God has visited them, and he will turn away their captivity. + +I have heard the revilings of Moab, and the insults of the children of Ammon, wherewith they have reviled my people, and magnified themselves against my coasts. + +Therefore, +as I live, says the Lord of hosts, the God of Israel, Moab shall be as Sodoma, and the children of Ammon as Gomorrha; and Damascus +shall be left as a heap of the threshing floor, and desolate for ever: and the remnant of my people shall plunder them, and the remnant of my nations shall inherit them. + +This is their punishment in return for their haughtiness, because they have reproached and magnified themselves against the Lord Almighty. + +The Lord shall appear against them, and shall utterly destroy all the gods of the nations of the earth; and they shall worship him every one from his place, +even all the islands of the nations. + +You⌃ Ethiopians also are the slain of my sword. + +And he shall stretch forth his hand against the north and destroy the Assyrian, and make Nineve a dry wilderness, +even as a desert. + +And flocks, and all the wild beasts of the land, and chameleons shall feed in the midst thereof: and hedgehogs shall lodge in the ceilings thereof; and wild beasts shall cry in the breaches thereof, and ravens in her porches, whereas her loftiness was +as as cedar. + +

+ + +

This is the scornful city that dwells securely, that says in her heart, I am, and there is no longer any +to be after me: how is she become desolate, a habitation of wild beasts! every one that passes through her shall hiss, and shake his hands. Alas the glorious and ransomed city. + +The dove listened not to the voice; she received not correction; she trusted not in the Lord, and she drew not near to her God. + +Her princes within her were as roaring lions, her judges as the wolves of Arabia; they remained not till the morrow. + +Her prophets are light +and scornful men: her priests profane the holy things, and sinfully transgress the law. + +But the just Lord is in the midst of her, and he will never do an unjust thing: morning by morning he will bring out his judgment to the light, and it is not hidden, and he knows not injustice by extortion, nor injustice in strife. + +I have brought down the proud with destruction; their corners are destroyed: I will make their ways completely waste, so that none shall go through: their cities are come to an end, by reason of no man living or dwelling +in them. + +I said, But do you⌃ fear me, and receive instruction, and you⌃ shall not be cut off from the face of the land +for all the vengeance I have brought upon her: prepare you, rise early: all their produce is spoilt. + +Therefore wait upon me, says the Lord, until the day when I rise up for a witness: because my judgment +shall be on the gatherings of the nations, to draw to me kings, to pour out upon them all +my fierce anger: for the whole earth shall be consumed with the fire of my jealousy. + +For then will I turn to the peoples a tongue for her generation, that all may call on the name of the Lord, to serve him under one yoke. + +From the boundaries of the rivers of Ethiopia will I receive my dispersed ones; they shall offer sacrifices to me. + +In that day you shall not be ashamed of all your practices, wherein you have transgressed against me: for then will I take away from you your disdainful pride, and you shall no more magnify yourself upon my holy mountain. + +And I will leave in you a meek and lowly people; + +and the remnant of Israel shall fear the name of the Lord, and shall do no iniquity, neither shall they speak vanity; neither shall a deceitful tongue be found in their mouth: for they shall feed, and lie down, and there shall be none to terrify them. + +Rejoice, O daughter of Sion; cry aloud, O daughter of Jerusalem; rejoice and delight yourself with all your heart, O daughter of Jerusalem. + +The Lord has taken away your iniquities, he has ransomed you from the hand of your enemies: the Lord, the King of Israel, is in the midst of you: you shall not see evil any more. + +At that time the Lord shall say to Jerusalem, Be of good courage, Sion; let not your hands be slack. + +The Lord your God is in you; the Mighty One shall save you: he shall bring joy upon you, and shall refresh you with his love; and he shall rejoice over you with delight as in a day of feasting. + +And I will gather your afflicted ones. Alas! who has taken up a reproach against her? + +Behold, I +will work in you for your sake at that time, says the Lord: and I will save her that was oppressed, and receive her that was rejected; and I will make them a praise, and honored in all the earth. + +And +their enemies shall be ashamed at that time, when I shall deal well with you, and at the time when I shall receive you: for I will make you honored and a praise among all the nations of the earth, when I turn back your captivity before you, says the Lord. + +

+
+ +Aggaeus +AGGAEUS +Aggaeus +HAG +

AGGAEUS +

+ + +

In the second year of Darius the king, in the sixth month, on the first +day of the month, the word of the Lord came by the hand of the prophet Aggaeus, saying, Speak to Zorobabel the son of Salathiel, of the tribe of Juda, and to +1:1 +Or, Joshua. + Jesus the son of Josedec, the high priest, saying, + +Thus says the Lord Almighty, saying, This people say, The time is not come to build the house of the Lord. + +And the word of the Lord came by the hand of the prophet Aggaeus, saying, + +Is it time for you to dwell in your ceiled houses, whereas our house is desolate? + +And now thus says the Lord Almighty; Consider your ways, I pray you. + +You⌃ have sown much, but brought in little; you⌃ have eaten, and are not satisfied; you⌃ have drunk, and are not satisfied with drink, you⌃ have clothed yourselves, and have not become warm +1:6 +Gr. in them. + thereby: and he that earns wages has gathered +them into a bag full of holes. + +Thus says the Lord Almighty; Consider your ways. + +Go up to the mountain, and cut timber; build the house, and I will take pleasure in it, and be glorified, says the Lord. + +You⌃ looked for much, and there came little; and it was brought into the house, and I blew it away. Therefore thus says the Lord Almighty, Because my house is desolate, and you⌃ run everyone into his own house; + +therefore shall the sky withhold dew, and the earth shall keep back her produce. + +And I will bring a sword upon the land, and upon the mountains, and upon the corn, and upon the wine, and upon the oil, and all that the earth produces, and upon the men, and upon the cattle, and upon all the labors of their hands. + +And Zorobabel the son of Salathiel, of the tribe of Juda, and Jesus the son of Josedec, the high priest, and all the remnant of the people, listened to the voice of the Lord their God, and the words of the prophet Aggaeus, according as the Lord their God had sent him to them, and the people feared before the Lord. + +And Aggaeus the Lord's messenger spoke among the messengers of the Lord to the people, +saying, I am with you, says the Lord. + +And the Lord stirred up the spirit of Zorobabel the son of Salathiel, of the tribe of Juda, and the spirit of Jesus the son of Josedec, the high priest, and the spirit of the remnant of all the people; and they went in, and wrought in the house of the Lord Almighty their God, + +on the four and twentieth +day of the sixth month, in the second year of Darius the king. + +

+ + +

In the seventh month, on the twenty-first +day of the month, the Lord spoke by Aggaeus the prophet, saying, + +Speak now to Zorobabel the son of Salathiel, of the tribe of Juda, and to +2:3 +Or, Joshua. + Jesus the son of Josedec, the high priest, and to all the remnant of the people, saying, + +Who +is there of you that saw this house in her former glory? and how do you⌃ now look upon it, as it were +2:4 +Gr. not existing. + nothing before your eyes? + +Yet now be strong, O Zorobabel, says the Lord; and strengthen yourself, O Jesus the high priest, the son of Josedec; and let all the people of the land strengthen themselves, says the Lord, and work, for I am with you, says the Lord Almighty; + +and my Spirit remains in the midst of you; be of good courage. + +For thus says the Lord Almighty; +2:7 +Heb 12:26 + Yet once I will shake the heaven, and the earth, and the sea, and the dry +land; + +and I will shake all nations, and the choice +2:8 +Or, objects. + +portions of all the nations shall come: and I will fill this house with glory, says the Lord Almighty. + +Mine is the silver, and mine the gold, says the Lord Almighty. + +For the glory of this house shall be great, the latter more than the former, says the Lord Almighty: and in this place will I give peace, says the Lord Almighty, even peace of soul for +2:10 +Or, salvation. + a possession to every one that builds, to raise up this temple. + +On the four and twentieth +day of the ninth month, in the second year of Darius, the word of the Lord came to Aggaeus the prophet, saying, + +Thus says the Lord Almighty; Inquire now of the priest +concerning the law, saying, + +If a man should take holy flesh in the skirt of his garment, and the skirt of his garment should touch bread, or pottage, or wine, or oil, or any meat, shall it be +2:13 +Gr. sanctified. + holy? And the priests answered and said, No. + +And Aggaeus said, If a defiled person who is unclean by reason of a dead body, touch any of these, shall it be defiled? And the priests answered and said, It shall be defiled. + +And Aggaeus answered and said, So is this people, and so is this nation before me, says the Lord; and so are all the works of their hands: and whoever shall approach them, shall be defiled +2:15 +Not in Hebrew. + +because of their early burdens: they shall be pained because of their toils; and you⌃ have hated him that reproved in the gates. + +And now consider, I pray you, from this day and beforetime, before they laid a stone on a stone in the temple of the Lord, what manner of men you⌃ were. + +When you⌃ cast into the corn-bin twenty measures of barley, and there were +only ten measures of barley: and you⌃ went +2:17 +Gr. into. + to the vat to draw out fifty measures, and there were +but twenty. + +I struck you with barrenness, and with blasting, and all the works of your hands with hail; yet you⌃ returned not to me, says the Lord. + +Set your hearts now +to think from this day and upward, from the four and twentieth +day of the ninth month, even from the day when the foundation of the temple of the Lord was laid; + +consider in your hearts, whether +this shall be known on the corn-floor, and whether yet the vine, and the fig tree, and the pomegranate, and the olive-trees that bear no fruit +are with you: from this day will I bless +you. + +And the word of the Lord came the second time to Aggaeus the prophet, on the four and twentieth +day of the month, saying, + +Speak to Zorobabel the son of Salathiel, of the tribe of Juda, saying, I shake the heaven, and the earth, and the sea, and the dry +land; + +and I will overthrow the thrones of kings, and I will destroy the power of the kings of the nations; and I will overthrow chariots and riders; and the horses and their riders shall come down, every one by the sword striving against his brother. + +In that day, says the Lord Almighty, I will take you, O Zorobabel, the son of Salathiel, my servant, says the Lord, and will make you as a seal: for I have chosen you, says the Lord Almighty. + +

+
+ +Zacharias +ZACHARIAS +Zacharias +ZEC +

ZACHARIAS +

+ + +

In the eighth month, in the second year of +the reign of Darius, the word of the Lord came to Zacharias, the son of Barachias, the son of Addo, the prophet, saying, + +The Lord has been very angry with your fathers. + +And you shall say to them, Thus says the Lord Almighty: Turn to me, says the Lord of hosts, and I will turn to you, says the Lord of hosts. + +And be you⌃ not as your fathers, whom the prophets before charged, saying, Thus says the Lord Almighty: Turn you⌃ from your evil ways, and from your evil practices: but they listened not, and attended not to listen to me, says the Lord. + +Where are your fathers, and the prophets? Will they live for ever? + +But do you⌃ receive my words and my ordinances, all that I command by my Spirit to my servants the prophets, who lived in the days of your fathers; and they answered and said, As the Lord Almighty determined to do to us, according to our ways, and according to our practices, so has he done to us. + +On the twenty-fourth +day in the eleventh month, this is the month Sabat, in the second year of +the reign of Darius, the word of the Lord came to Zacharias, the son of Barachias, the son of Addo, the prophet, saying, + +I saw by night, and behold a man mounted on a red horse, and he stood between the shady mountains; and behind him were red horses, and grey, and piebald, and white. + +And I said, What are these, +my lord? And the angel spoke with me said to me, I will show you what these +things are. + +And the man that stood between the mountains answered, and said to me, These are +they whom the Lord has sent forth to go round the earth. + +And they answered the angel of the Lord that stood between the mountains, and said, We have gone round all the earth, and, behold, all the earth is inhabited, and is at rest. + +Then the angel of the Lord answered and said, O Lord Almighty, how long will you have no mercy on Jerusalem, and the cities of Juda, which you have disregarded +1:12 +Gr. +this seventies year. + these seventy years? + +And the Lord Almighty answered the angel that spoke with me good words and consolatory sayings. + +And the angel that spoke with me said to me, Cry out and say, Thus says the Lord Almighty; I have been jealous for Jerusalem and Sion with great jealousy. + +And I am very angry with the heathen that combine to attack +her: forasmuch as I indeed was a little angry, but they combined to attack +her for evil. + +Therefore thus says the Lord: I will return to Jerusalem with compassion; and my house shall be rebuilt in her, says the Lord Almighty, and a measuring line shall yet be stretched out over Jerusalem. + +And the angel that spoke with me said to me, Cry yet, and say, Thus says the Lord Almighty; Yet shall cities be spread abroad through prosperity; and the Lord shall yet have mercy upon Sion, and shall choose Jerusalem. + +And I lifted up my eyes and looked, and behold four horns. + +And I said to the angel that spoke with me, What are these things, +my lord? And he said to me, These are the horns that have scattered Juda, and Israel, and Jerusalem. + +And the Lord showed me four artificers. + +And I said, What are these coming to do? And he said, These are the horns that scattered Juda, and they broke Israel in pieces, and none of them lifted up his head: and these are come forth to sharpen them for their hands, +even the four horns, the nations that lifted up the horn against the land of the Lord to scatter it. + +

+ + +

And I lifted up my eyes, and looked, and behold a man, and in his hand a measuring line. + +And I said to him, Whither go you? And he said to me, To measure Jerusalem, to see what is the breadth of it, and what is the length of it. + +And, behold, the angel that spoke with me stood +by, and another angel went forth to meet him, + +and spoke to him, saying, Run and speak to that young man, saying, Jerusalem shall be fully inhabited by reason of the abundance of men and cattle in the midst of her. + +And I will be to her, says the Lord, a wall of fire round about, and I will be for a glory in the midst of her. + +Ho, ho, flee from the land of the north, says the Lord: for I will gather you from the four winds of heaven, says the Lord, + + +even to Sion: deliver yourselves, you⌃ that dwell +with the daughter of Babylon. + +For thus says the Lord Almighty; After the glory has he sent me to the nations that spoiled you: for he that touches you is as one that touches the apple of his eye. + +For, behold, I bring my hand upon them, and they shall be a spoil to them that serve them: and you⌃ shall know that the Lord Almighty has sent me. + +Rejoice and be glad, O daughter of Sion: for, behold, I come, and will dwell in the midst of you, says the Lord. + +And many nations shall flee for refuge to the Lord in that day, and they shall be for a people to him, and they shall dwell in the midst of you: and you shall know that the Lord Almighty has sent me to you. + +And the Lord shall inherit Juda his portion in the holy +land, and he will yet choose Jerusalem. + +Let all flesh fear before the Lord: for he has risen up from his holy clouds. + +

+ + +

And the Lord showed me Jesus the high priest standing before the angel of the Lord, and the +3:1 +Or, +accuser. + Devil stood on his right hand to resist him. + +And the Lords said to the Devil, + + +3:3 +Jude 1:9 + The Lord rebuke you, O Devil, even the Lord that has chosen Jerusalem rebuke you: behold! is not this as a brand plucked from the fire? + +Now Jesus was clothed in +3:4 +Or, +vile, see James 2:2. + filthy raiment, and stood before the angel. + +And +the Lord answered and spoke to those who stood before him, saying, Take away the filthy raiment from him: and he said to him, Behold, I have taken away your iniquities: and clothe you⌃ him with a +3:5 +Or, +full length. + long robe, + +and place a pure mitre upon his head. So they placed a pure mitre upon his head, and clothed him with garments: and the angel of the Lord stood +by. + +And the angel of the Lord testified to Jesus, saying, + +Thus says the Lord Almighty; If you will walk in my ways, and take heed to my charges, then shall you judge my house: and if you will diligently keep my court, then will I give you men to walk in the midst of these that stand +here. + +Hear now, Jesus the high priest, you, and your neighbors that are sitting before +you: for they are diviners, for, behold, I bring forth my servant The +3:9 +See Luke 1:78. + Branch. + +For +as for the stone which I have set before the face of Jesus, on the one stone are seven eyes: behold, I am digging a trench, says the Lord Almighty, and I will search out all the iniquity of that land in one day. + +In that day, says the Lord Almighty, you⌃ shall call together every man his neighbor under the vine and under the fig tree. + +

+ + +

And the angel that talked with me returned, and awakened me, as when a man is awakened out of his sleep. + +And he said to me, What see you? And I said, I have seen, and behold a candlestick all of gold, and its bowl upon it, and seven lamps upon it, and seven oil funnels to the lamps upon it: + +and two olive-trees above it, one on the right of the bowl, and one on the left. + +And I inquired, and spoke to the angel that talked with me, saying, What are these things, +my lord? + +And the angel that talked with me answered, and spoke to me, saying, Know you not what these things are? And I said, No, +my lord. + +And he answered and spoke to me, saying, This is the word of the Lord to Zorobabel, saying, Not by mighty power, nor by strength, but by my Spirit, says the Lord Almighty. + +Who are you, the great mountain before Zorobabel, that you should prosper? whereas I will bring out the stone of the inheritance, the grace of it the +4:7 +Gr. +equality, see Jno. 1:16. + equal of +my + grace. + +And the word of the Lord came to me, saying, + +The hands of Zorobabel have laid the foundation of this house, and his hands shall finish it: and you shall know that the Lord Almighty has sent me to you. + +For who has despised the small days? surely they shall rejoice, and shall see the plummet of tin in the hand of Zorobabel: these are the seven eyes +4:10 +Alex. ++ 'of the Lord.' + that look upon all the earth. + +And I answered, and said to him, What are these two olive-trees, which are on the right and left hand of the candlestick? + +And I asked the second time, and said to him, What are the two branches of the olive-trees that are by the side of the two golden +4:12 +Gr. +nostrils. + pipes that pour into and communicate with the golden oil funnels? + +And he said to me, Know you not what these are? and I said, No, +my lord. + +And he said, These are the two +4:14 +Gr. +sons of fatness. Rev. 11:4. + anointed ones +that stand by the Lord of the whole earth. + +

+ + +

And I turned, and lifted up my eyes, and looked and behold a flying sickle. + +And he said to me, What see you? And I said, I see a flying sickle, of the length of twenty cubits, and of the breadth of ten cubits. + +And he said to me, This is the curse that goes forth over the face of the whole earth: for every thief shall be punished with death on this side, and every false swearer shall be punished on that side. + +And I will bring it forth, says the Lord Almighty, and it shall enter into the house of the thief, and into the house of him that swears falsely by my name: and it shall rest in the midst of his house, and shall consume it, and the timber of it, and the stones of it. + +And the angel that talked with me went forth, and said to me, Lift up your eyes, and see this that goes forth. + +And I said, What is it? And he said, This is the measure that goes forth. And he said, This is their iniquity in all the earth. + +And behold a talent of lead lifted up: and behold +5:7 +Heb. +and +Gr. +one woman. see ver. 9. + a woman sat in the midst of the measure. + +And he said, This is iniquity. And he cast it into the midst of the measure, and cast the weight of lead on the mouth of it. + +And I lifted up my eyes, and saw, and, behold, two women coming forth, and the wind was in their wings; and they had stork's wings: and they lifted up the measure between the earth and the sky. + +And I said to the angel that spoke with me, Whither do these carry away the measure? + +And he said to me, To build it a house in the land of Babylon, and to prepare +a place for it; and they shall set it there on its own +5:11 +Gr. +preparation. + base. + +

+ + +

And I turned, and lifted up my eyes, and looked, and, behold, four chariots coming out from between two mountains; and the mountains were brazen mountains. + +In the first chariot +were red horses; and in the second chariot black horses; + +and in the third chariot white horses; and in the fourth chariot piebald +and ash-colored horses. + +And I answered and said to the angel that talked with me, What are these, my Lord? + +And the angel that talked with me answered and said, These are the four winds of heaven, +and they are going forth to stand before the Lord of all the earth. + + +As for the chariot in which were the black horses, they went out to the land of the north; and the white went out after them; and the piebald went out to the land of the south. + +And the ash-colored went out, and looked to go and compass the earth: and +6:7 +Or, +one said. + he said, Go, and compass the earth. And they compassed the earth. + +And he cried out and spoke to me, saying, Behold, these go out to the land of the north, and they have quieted my anger in the land of the north. + +And the word of the Lord came to me, saying, + +Take the things of the captivity from +6:10 +Heb. +proper names. See +A. V. the chief men, and from the useful men of it, and from them that have understood it; and you shall enter in that day into the house of Josias the son of Sophonias that came out of Babylon. + +And you shall take silver and gold, and make crowns, and you shall put +them upon the head of Jesus the son of Josedec the high priest; + +and you shall say to him, Thus says the Lord Almighty; Behold the man whose name is The Branch; and he shall spring up +6:12 +Gr. +from beneath him. + from his stem, and build the house of the Lord. + +And he shall receive +6:13 +Lit. +virtue. + power, and shall sit and rule upon his throne; and there shall be a priest on his right hand, and a peaceful counsel shall be between +them both. + +And the crown shall be to them that wait patiently, and to the useful men +6:14 +Gr. +of it. + of the captivity, and to them that have known it, and for the favor of the son of Sophonias, and for a psalm in the house of the Lord. + +And they +that are far from them shall come and build in the house of the Lord, and you⌃ shall know that the Lord Almighty has sent me to you: and +this shall come to pass, if you⌃ will diligently listen to the voice of the Lord your God. + +

+ + +

And it came to pass in the fourth year of Darius the king, +that the word of the Lord came to Zacharias on the fourth +day of the ninth month, which is Chaseleu. + +And Sarasar and Arbeseer the king and his men sent to Bethel, and +that to propitiate the Lord, + +speaking to the priests that were in the house of the Lord Almighty, and to the prophets, saying, The holy offering has come in hither in the fifth month, as it has done already many years. + +And the word of the Lord of hosts came to me, saying, + +Speak to the whole people of the land, and to the priests, saying, Though you⌃ fasted or lamented in the fifth or seventh +months (yes, behold, these seventy years) have you⌃ at all fasted to me? + +And if you⌃ eat or drink, do you⌃ not eat and drink for yourselves? + +Are not these the words which the Lord spoke by the former prophets, when Jerusalem was inhabited and in prosperity, and her cities round about her, and the hill country and the low country was inhabited? + +And the word of the Lord came to Zacharias, saying, + +Thus says the Lord Almighty; Judge righteous judgment, and deal mercifully and compassionately every one with his brother: + +and oppress not the widow, or the fatherless, or the stranger, or the poor; and let not one of you remember in his heart the injury of his brother. + +But they refused to attend, and madly turned their back, and made their ears heavy, so that they should not hear. + +And they made their heart disobedient, so as not to listen to my law, and the words which the Lord Almighty sent forth by his Spirit by the former prophets: so there was great wrath from the Lord Almighty. + +And it shall come to pass, +that as he spoke, and they listened not, so they shall cry, and I will not listen, says the Lord Almighty. + +And I will cast them out among all the nations, whom they know not; and the land behind them shall be made utterly destitute of any going through or returning: yes they have made the choice land a desolation. + +

+ + +

And the word of the Lord Almighty came, saying, + +Thus says the Lord Almighty; I have been jealous for Jerusalem and for Sion with great jealousy, and I have been jealous for her with great fury. + +Thus says the Lord; I will return to Sion, and dwell in the midst of Jerusalem: and Jerusalem shall be called a true city, and the mountain of the Lord Almighty a holy mountain. + +Thus says the Lord Almighty; There shall yet dwell old men and old women in the streets of Jerusalem, every one holding his staff in his hand for age. + +And the broad places of the city shall be filled with boys and girls playing in the streets thereof. + +Thus says the Lord Almighty; If it shall be impossible in the sight of the remnant of this people in those days, shall it also be impossible in my sight? says the Lord Almighty. + +Thus says the Lord Almighty; Behold, I +will save my people from the east country, and the west country; + +and I will bring them in, and cause +them to dwell in the midst of Jerusalem: and they shall be to me a people, and I will be to them a God, in truth and in righteousness. + +Thus says the Lord Almighty; Let your hands be strong, +you⌃ that hear in these days these words out of the mouth of the prophets, from the day that the house of the Lord Almighty was founded, and from the time that the temple was built. + +For before those days the wages of men could not be profitable, and there could be no hire of cattle, and there could be no peace by reason of the affliction to him that went out or to him that came in: for I would have let loose all men, every one against his neighbor. + +But now I +will not do to the remnant of this people according to the former days, says the Lord Almighty. + +But I will show peace: the vine shall yield her fruit, and the land shall yield her produce, and the heaven shall give its dew: and I will give as an inheritance all these things to the remnant of my people. + +And it shall come to pass, as you⌃ were a curse among the nations, O house of Juda, and house of Israel; so will I save you, and you⌃ shall be a blessing: be of good courage, and strengthen your hands. + +For thus says the Lord Almighty; As I took counsel to afflict you when your fathers provoked me, says the Lord Almighty, and I repented not: + +so have I prepared and taken counsel in these days to do good to Jerusalem and to the house of Juda: be you⌃ of good courage. + +These +are the things which you⌃ shall do; speak truth every one with his neighbor; judge truth and peaceful judgment in your gates: + +and let none of you devise evil in his heart against his neighbor; and love not a false oath: for all these things I hate, says the Lord Almighty. + +And the word of the Lord Almighty came to me, saying, + +Thus says the Lord Almighty, The fourth fast, and the fifth fast, and the seventh fast, and the tenth fast, shall be to the house of Juda for joy and gladness, and for good feasts; and you⌃ shall rejoice; and love you⌃ the truth and peace. + +Thus says the Lord Almighty; Yet shall many peoples come, and the inhabitants of many cities; + +and the inhabitants of five cities shall come together to one city, saying, Let us go to make supplication to the Lord, and to seek the face of the Lord Almighty; I will go also. + +And many peoples and many nations shall come to seek earnestly the face of the Lord Almighty in Jerusalem, and to +8:22 +Gr. +conciliate the face of the Lord. + obtain favor of the Lord. + +Thus says the Lord Almighty; In those days +my word shall be fulfilled if ten men of all the languages of the nations should take hold—even take hold of the hem of a Jew, saying, We will go with you; for we have heard that God is with you. + +

+ + +

The burden of the word of the Lord, in the land of Sedrach, and his +9:1 + sacrifice +shall be in Damascus; for the Lord looks upon men, and upon all the tribes of Israel. + +And in Emath, +even in her coasts, +are Tyre and Sidon, because they were very wise. + +And Tyrus built strongholds for herself, and heaped up silver as dust, and gathered gold as the mire of the ways. + +And therefore the Lord will take them for a possession, and will strike her power in the sea; and she shall be consumed with fire. + +Ascalon shall see, and fear; Gaza also, and shall be greatly pained, and Accaron; for she is ashamed +9:5 +Alex. +of her hope. + at her trespass; and the king shall perish from Gaza, and Ascalon shall not be inhabited. + +And aliens shall dwell in Azotus, and I will bring down the pride of the Philistines. + +And I will take their blood out of their mouth, and their abominations from between their teeth; and these also shall be left to our God, and they shall be as a captain of a thousand in Juda, and Accaron as a Jebusite. + +And I will set up a +9:8 +Or, +bulwark. See Zeph. 2:14 defence for my house, that they may not pass through, nor turn back, neither shall there any more come upon them one to drive them away: for now have I seen with my eyes. + +Rejoice greatly, O daughter of Sion; proclaim +it aloud, O daughter of Jerusalem; +9:9 +Matt 21:5; John 12:15 + behold, the King is coming to you, just, and +9:9 +Gr. +saving. + a Saviour; he is meek and riding on an ass, and a young foal. + +And he shall destroy the chariots out of Ephraim, and the horse out of Jerusalem, and the bow of war shall be utterly destroyed; and +there shall be abundance and peace out of the nations; and he shall rule over the waters as far as the sea, and the rivers +to the ends of the earth. + +And you by the blood of your covenant has sent forth your prisoners out of the pit that has no water. + +You⌃ shall dwell in strongholds, you⌃ prisoners of the congregation: and for one day of your +9:12 +Or, +sojourning. + captivity I will recompense you double. + +For I have bent you, O Juda, for myself +as a bow, I have filled +9:13 +Or, it with +Ephraim. + Ephraim; and I will raise up your children, O Sion, against the children of the Greeks, and I will handle you as the sword of a warrior. + +And the Lord shall be over them, and +his arrow shall go forth as lightning: and the Lord Almighty shall blow with the trumpet; and shall proceed with the tumult of his threatening. + +The Lord Almighty shall protect them, and they shall destroy them, and overwhelm them with sling-stones; and they shall swallow them down as wine, and fill +9:15 +Alex. +the altar as bowls. + the bowls as the altar. + +And the Lord their God shall save them in that day, +even his people as a flock; for holy stones are rolled upon his land. + +For if he has anything good, and if he has anything fair, the young +men shall have corn, and +there shall be fragrant wine to the virgins. + +

+ + +

Ask you⌃ of the Lord rain in season, the early and the latter: the Lord has given bright signs, and will give them +10:1 +Gr. +stormy. + abundant rain, to every one grass in the field. + +For the speakers have uttered grievous things, and the diviners +have + +10:2 +Or, +related. + +seen false visions, and they have spoken false dreams, they have given vain comfort: therefore have they +10:2 +Gr. +been dried up. + fallen away like sheep, and been afflicted, because there was no healing. + +My anger was kindled against the shepherds, and I will +10:3 +Or, +oversee. +or, +look upon. + visit the lambs; and the Lord God Almighty shall +10:3 +Or, +oversee. +or, +look upon. + visit his flock, the house of Juda, and he shall make them as his goodly horse in war. + +And from him he +10:4 + looked, and from him he set +the battle in order, and from him +came the bow in anger, +and from him shall come forth every +10:4 +Lit. +he that expels. + oppressor together. + +And they shall be as warriors treading clay in the ways in war; and they shall set the battle in array, because the Lord is with them, and the riders on horses shall be put to shame. + +And I will strengthen the house of Juda, and save the house of Joseph, and I will settle them; because I have loved them: and they shall be as +if I had not cast them off: for I am the Lord their God, and I will hear them. + +And they shall be as the warriors of Ephraim, and their heart shall rejoice as with wine: and their children also shall see +it, and be glad; and their heart shall rejoice in the Lord. + +I will make a sign to them, and gather them in; for I will redeem them, and they shall be multiplied according to their number before. + +And I will sow them among the people; and they that are afar off shall remember me: they shall nourish their children, and they shall return. + +And I will bring them again from the land of Egypt, and I will gather them in from among the Assyrians; and I will bring them into the land of Galaad and to Libanus; and there shall not even one of them be left behind. + +And they shall pass through a narrow sea, they shall strike the waves in the sea, and all the deep places of the rivers shall be dried up: and all the pride of the Assyrians shall be taken away, and the sceptre of Egypt shall be removed. + +And I will strengthen them in the Lord their God; and they shall boast in his name, says the Lord. + +

+ + +

Open your doors, O Libanus, and let the fire devour your cedars. + +Let the pine howl, because the cedar has fallen; for the mighty men have been greatly afflicted: howl, you⌃ oaks of the land of Basan; for the thickly planted forest has been torn down. + + +There is a voice of the shepherds mourning; for their greatness is +11:3 +Gr. +distressed. + brought low: a voice of roaring lions; for the +11:3 +Or, +roaring. + pride of Jordan is brought down. + +Thus says the Lord Almighty, Feed the sheep of the slaughter; + +which their possessors have slain, and have not repented: and they that sold them said, Blessed be the Lord; for we have become rich: and their shepherds have suffered no sorrow for them. + +Therefore I will no longer have mercy upon the inhabitants of the land, says the Lord: but, behold, I will deliver up the men every one into the hand of his neighbor, and into the hand of his king; and they shall destroy the land, and I will not rescue out of their hand. + +And I will tend the flock of slaughter in the land of Chanaan: and I will take for myself two rods; the one I called Beauty, and the other I called Line; and I will tend the flock. + +And I will cut off three shepherds in one month; and my soul shall +11:8 +Or, +be sorely displeased with them. +Gr. +be weighed down upon them. + grieve over them, for their souls cried out against me. + +And I said, I will not tend you: that which dies, let it die; and that which +11:9 +Or, +fails. + falls off, let it fall off; and let the rest eat every one the flesh of his neighbor. + +And I will take my beautiful staff, and cast it away, that I may break my covenant which I made with all the people. + +And it shall be broken in that day; and the Chananites, the sheep that are kept for me, shall know that it is the word of the Lord. + +And I will say to them, If it be good in your eyes, give +me my price, or refuse it. And they weighed for my price thirty pieces of silver. + +And the Lord said to me, Drop them into the furnace, and I will see if it is good +metal, as I was proved for their sakes. +11:13 +Matt 27:9,10 + And I took the thirty pieces of silver, and cast them into the furnace in the house of the Lord. + +And I cast away +my second rod, +even Line, that I might break the +11:14 +Compare +Heb. Alex. διαθήκην +covenant. + possession between Juda and Israel. + +And the Lord said to me, Take yet to you shepherd's implements belonging to an unskillful shepherd. + +For, behold, I +will raise up a shepherd against the land: he shall not visit that which is perishing, and he shall not seek that which is scattered, and he shall not heal that which is bruised, nor guide that which is whole: but he shall devour the flesh of the choice +ones, and shall +11:16 +Or, +wring their necks. + dislocate the joints +of their necks. + +Alas for the vain shepherds that have forsaken the sheep! the sword +shall be upon +11:17 +Gr. +his arms. + the arms of such a one, and upon his right eye: his arm shall be completely withered, and his right eye shall be utterly darkened. + +

+ + +

The burden of the word of the Lord for Israel; says the Lord, that stretches out the sky, and lays the foundation of the earth, and forms the spirit of man within him. + +Behold, I +will make Jerusalem as trembling +12:2 +Or, +porches +or, +door-posts shaken by, etc. + door-posts to all the nations round about, and in Judea there shall be a siege against Jerusalem. + +And it shall come to pass in that day +that I will make Jerusalem a +12:3 +Or, +a stone trodden by all, etc. + trodden stone to all the nations: every one that tramples on it shall utterly mock at +it, and all the nations of the earth shall be gathered together against it. + +In that day, says the Lord Almighty, I will strike every horse with amazement, and his rider with madness: but I will open my eyes upon the house of Juda, and I will strike all the horses of the nations with blindness. + +And the captains of thousands of Juda shall say in their hearts, We shall find for ourselves the inhabitants of Jerusalem in the Lord Almighty their God. + +In that day I will make the captains of thousands of Juda as a firebrand among wood, and as a torch of fire in stubble; and they shall devour on the right hand and on the left all the nations round about: and Jerusalem shall dwell again by herself, +even in Jerusalem. + +And the Lord shall save the tabernacles of Juda as at the beginning, that the boast of the house of David, and the pride of the inhabitants of Jerusalem, may not magnify themselves against Juda. + +And it shall come to pass in that day, +that the Lord shall defend the inhabitants of Jerusalem; and the weak one among them in that day shall be as David, and the house of David as the house of God, as the angel of the Lord before them. + +And it shall come to pass in that day, +that I will seek to destroy all the nations that come against Jerusalem. + +And I will pour upon the house of David, and upon the inhabitants of Jerusalem, the spirit of grace and compassion: and +12:10 +John 19:37 + they shall look upon me, because they have mocked +me, and they shall make lamentation for him, as for a beloved +friend, and they shall grieve intensely, as for a firstborn +son. + +In that day the lamentation in Jerusalem shall be very great, as the mourning for the pomegranate grove cut down in the plain. + +And the land shall lament in +12:12 +See a similar construction, Mark 6. 39,40 + separate families, the family of the house of David by itself, and their wives by themselves; the family of the house of Nathan by itself, and their wives by themselves; + +the family of the house of Levi by itself, and their wives by themselves; the family of Symeon by itself, and their wives by themselves; + +all the families that are left, each family by itself, and their wives by themselves. + +

+ + +

In that day every place shall be opened to the house of David and to the inhabitants of Jerusalem for removal and for +13:1 +Or, +departure. + separation. + +And it shall come to pass in that day, says the Lord of hosts, +that I will utterly destroy the names of the idols from off the land, and there shall be no longer +any remembrance of them: and I will cut off the false prophets and the evil spirit from the land. + +And it shall come to pass, if a man will yet prophesy, that his father and his mother which gave birth to him shall say to him, You shall not live; for you have spoken lies in the name of the Lord: and his father and his mother who gave him birth shall bind him as he is prophesying. + +And it shall come to pass in that day, +that the prophets shall be ashamed every one of his vision when he prophesies; and they shall clothe themselves with a garment of hair, because they have lied. + +And +one shall say, I am not a prophet, for I am a tiller of the ground, for a man brought me up +thus from my youth. + +And I will say to him, What are these wounds between your hands? and he shall say, +Those with which I was wounded in +13:6 +Alex. +The house of my beloved. + my beloved house. + +Awake, O sword, against my +13:7 +Alex. +shepherd. + shepherds, and against the man +who is my citizen, says the Lord Almighty: +13:7 +Matt 26:31 + strike the shepherds, and draw out the sheep: and I will bring my hand upon the little ones. + +And it shall come to pass, +that in all the land, says the Lord, two parts thereof shall be cut off and perish; but the third shall be left therein. + +And I will bring the third +part through the fire, and I will try them as silver is tried, and I will prove them as gold is proved: they shall call upon my name, and I will hear them, and say, This is my people: and they shall say, The Lord +is my God. + +

+ + +

Behold, the days of the Lord come, and your spoils shall be divided in you. + +And I will gather all the Gentiles to Jerusalem to war, and the city shall be taken, and the houses plundered, and the women ravished; and half of the city shall go forth into captivity, but the rest of my people shall not be utterly cut off from the city. + +And the Lord shall go forth, and fight with those Gentiles as when he fought in the day of war. + +And his feet shall stand in that day on the mount of Olives, which is before Jerusalem on the east, and the mount of Olives shall cleave asunder, half of it toward the east and the west, a very great division; and half the mountain shall lean to the north, and half of it to the south. + +And the valley of my mountains shall be closed up, and the valley of the mountains shall be joined on to Jasod, and shall be blocked up as it was blocked up in the days of the earthquake, in the days of Ozias king of Juda; and the Lord my God shall come, and all the saints with him. + +And it shall come to pass in that day that there shall be no light, + +and there shall be for one day +14:7 +Alex. +ψύχος, cold, probably the right reading. + cold and frost, and that day +shall be known to the Lord, and +it shall not +be day nor night: but towards evening it shall be light. + +And in that day living water shall come forth out of Jerusalem; half of it toward the former sea, and half of it toward the latter sea: and so shall it be in summer and spring. + +And the Lord shall be king over all the earth: in that day there shall be one Lord, and his name one, + +compassing all the earth, and the wilderness from Gabe to Remmon south of Jerusalem. And Rama shall remain in its place. From the gate of Benjamin to the place of the first gate, to the gate of the corners, and to the tower of Anameel, as far as the king's wine presses, + +they shall dwell +14:11 +Alex. +in it. + in the city; and there shall be no more any curse, and Jerusalem shall dwell securely. + +And this shall be the overthrow with which the Lord will strike all the nations, as many as have fought against Jerusalem; their flesh shall consume away while they are standing upon their feet, and their eyes shall melt out of their holes, and their tongue shall consume away in their mouth. + +And there shall be in that day a great +14:13 +Alex. +astonishment. + panic from the Lord upon them; and they shall lay hold every man of the hand of his neighbor, and his hand shall be clasped with the hand of his neighbor. + +Juda also shall fight in Jerusalem; and +God shall gather the strength of all the nations round about, gold, and silver, and apparel, in great abundance. + +And this shall be the overthrow of the horses, and mules, and camels, and asses, and all the beasts that are in those camps, according to this overthrow. + +And it shall come to pass, +that whoever shall be left of all the nations that came against Jerusalem, shall even come up every year to worship the king, the Lord Almighty, and to keep the feast of tabernacles. + +And it shall come to pass, +that whoever of all the families of the earth shall not come up to Jerusalem to worship the king, the Lord Almighty, even these shall be added to the others. + +And if the family of Egypt shall not go up, nor come; then upon them shall be the overthrow with which the Lord shall strike all the nations, whichever of them shall not come up to keep the feast of tabernacles. + +This shall be the sin of Egypt, and the sin of all the nations, whoever shall not come up to keep the feast of tabernacles. + +In that day there shall be upon the bridle of every horse Holiness to the Lord Almighty; and the caldrons in the house of the Lord shall be as bowls before the altar. + +And every pot in Jerusalem and in Juda shall be holy to the Lord Almighty: and all that sacrifice shall come and take of them, and shall seethe +meat in them: and in that day there shall be no more the Chananite in the house of the Lord Almighty. + +

+
+ +Malachias +MALACHIAS +Malachias +MAL +

MALACHIAS +

+ + +

The burden of the word of the Lord to Israel by the hand of his messenger. Lay +it, I pray you, to heart. + +I have loved you, says the Lord. And you⌃ said, Wherein have you loved us? Was not Esau Jacob's brother? says the Lord: yet +1:2 +Rom 9:13 + I loved Jacob, + +and hated Esau and +1:3 +Lit. appointed them for desolation. + laid waste his borders, and made his heritage as dwellings of the wilderness? + +Because one will say, Idumea has been overthrown, but let us return and rebuild the desolate places; thus says the Lord Almighty, They shall build, but I will throw down; and they shall be called The borders of wickedness, and, The people against whom the Lord has set himself for ever. + +And your eyes shall see, and you⌃ shall say, The Lord has been magnified +1:5 +Gr. above. + upon the borders of Israel. + +A son honors +his father, and a servant his master: if then I am a father, where is my honor? and if I am a master, where is my fear? says the Lord Almighty. You⌃ the priests are they that despise my name: yet you⌃ said, Wherein have we despised your name? + +In that you⌃ bring to my altar polluted bread; and you⌃ said, Wherein have you⌃ polluted it? In that you⌃ say, The table of the Lord is polluted, and that which was set thereon you⌃ have despised. + +For if you⌃ bring a blind +victim for sacrifices, +is it not evil? and if you⌃ bring the lame or the sick, +is it not evil? offer it now to your ruler, +and see if he will receive you, if he will accept your person, says the Lord Almighty. + +And now +1:9 +Lit. propitiate. + entreat the face of your God, and make supplication to him. These things have been done by your hands; shall I accept you? says the Lord Almighty. + +Because even among you the doors shall be shut, and +one will not kindle +the fire of my altar for nothing, I have no pleasure in you, says the Lord Almighty, and I will not accept a sacrifice at your hands. + +For from the rising of the sun even to the going down +thereof my name has been glorified among the Gentiles; and in every place incense is offered to my name, and a pure offering: for my name is great among the Gentiles, says the Lord Almighty. + +But you⌃ profane it, in that you⌃ say, The table of the Lord is polluted, and his meats set thereon are despised. + +And you⌃ said, These +services are troublesome: therefore I have +1:13 +Gr. puffed at them. + utterly rejected them with scorn, says the Lord Almighty: and you⌃ brought in torn victims, and lame, and sick: if then you⌃ should bring an offering, shall I accept them at your hands? says the Lord Almighty. + +And cursed +is the man who had the power, and possessed a male in his flock, and whose vow is upon him, and who sacrifices a corrupt thing to the Lord: for I am a great King, says the Lord Almighty, and my name is glorious among the nations. + +

+ + +

And now, O priests, this commandment is to you. + +If you⌃ will not listen, and if you⌃ will not lay +it to heart, to give glory to my name, says the Lord Almighty, then I will send forth the curse upon you, and I will bring a curse upon your blessing: yes, I will curse it, and I will scatter your blessing, and it shall not exist among you, because you⌃ lay not this to heart. + +Behold, +2:3 +Gr. separate the shoulder from you. + I turn my back upon you, and I will scatter dung upon your faces, the dung of your feasts, and I will carry you away at the same time. + +And you⌃ shall know that I have sent this commandment to you, that my covenant might be with the sons of Levi, says the Lord Almighty. + +My covenant of life and peace was with him, and I gave +2:5 +Or, power, or, charge to fear me, etc. + +it him that he might reverently fear me, and that he might +2:5 +See 2 Cor 8:20. + be awe-struck at my name. + +The law of truth was in his mouth, and iniquity was not found in his lips: he walked before me directing +his way in peace, and he turned many from unrighteousness. + +For the priest's lips +2:7 +Gr. shall. + should keep knowledge, and they should seek the law at his mouth: for he is the messenger of the Lord Almighty. + +But you⌃ have turned aside from the way, and caused many to fail in +following the law: you⌃ have corrupted the covenant of Levi, says the Lord Almighty. + +And I have made you despised and cast out among all the people, because you⌃ have not kept my ways, but have +2:9 +Gr. accepted persons. + been partial in the law. + +Have you⌃ not all one father? Did not one God create you? why have you⌃ forsaken every man his brother, to profane the covenant of your fathers? + +Juda has been forsaken, and an abomination has been committed in Israel and in Jerusalem; for Juda has profaned the holy things of the Lord, which he delighted in, and has gone after other gods. + +The Lord will utterly destroy the man that does these things, until he be even cast down from out of the tabernacles of Jacob, and from among them that offer sacrifice to the Lord Almighty. + +And these things which I hated, you⌃ did: you⌃ covered with tears the altar of the Lord, and with weeping and groaning because of troubles: +is it meet +for me to have respect to your sacrifice, or to receive +anything from your hands +as welcome? + +Yet you⌃ said, Therefore? Because the Lord has borne witness between you and the wife of your youth, whom you have forsaken, and +yet she was your partner, and the wife of your covenant. + +And did he not do well? and +there was the residue of his spirit. But you⌃ said, What does God seek but a seed? But take you⌃ heed to your spirit, and forsake not the wife of your youth. + +But if you should hate +your wife and put her away, says the Lord God of Israel, then ungodliness shall cover your thoughts, says the Lord Almighty: therefore take you⌃ heed to your spirit, and forsake +them not, + +you⌃ that have provoked God with your words. But you⌃ said, Wherein have we provoked him? In that you⌃ say, Every one that does evil is a pleasing +object in the sight of the Lord, and he takes pleasure in such; +2:17 +Or, and, Where, etc. + and where is the God of justice? + +

+ + +

+3:1 +Matt 11:10 + Behold, I send forth my messenger, and he shall survey the way before me: and the Lord, whom you⌃ seek, shall suddenly come into his temple, even the angel of the covenant, whom you⌃ take pleasure in: behold, he is coming, says the Lord Almighty. + +And who will +3:2 +Or, wait for. + abide the day of his coming? or who will withstand at his appearing? for he is coming in as the fire of a furnace and as the herb of +3:2 +Gr. them that wash. + fullers. + +He shall sit to melt and purify as it were silver, and as it were gold: and he shall purify the sons of Levi, and +3:3 +Gr. pour. + refine them as gold and silver, and they shall offer to the Lord an offering in righteousness. + +And the sacrifice of Juda and Jerusalem shall be pleasing to the Lord, according to the former days, and according to the former years. + +And I will draw near to you in judgment; and I will be a sift witness against the witches, and against the adulteresses, and against them that swear falsely by my name, and against them that keep back the hireling's wages, and them that oppress the widow, and +3:5 +Gr. beat with the fist. + afflict orphans, and that wrest the judgment of the stranger, and fear not me, says the Lord Almighty. + +For I am the Lord your God, and I am not changed: + +but you⌃, the sons of Jacob, have not refrained from the iniquities of your fathers: you⌃ have perverted my statutes, and have not kept them. Return to me, and I will return to you, says the Lord Almighty. But you⌃ said, Wherein shall we return? + +Will a man insult God? for you⌃ insult me. But you⌃ say, Wherein have we insulted you? In that the tithes and first fruits are with you +still. + +And you⌃ do surely look off from me, and you⌃ insult me. + +The year is completed, and you⌃ have brought all the produce into the storehouses; but there shall be the plunder thereof in its house: return now on this behalf, says the Lord Almighty, +see if I will not open to you the +3:10 +Or, windows, see Gen 7. 11, there rendered 'flood-gates.' + torrents of heaven, and pour out my blessing upon you, until you⌃ are satisfied. + +And I will +3:11 +Or, give a charge for you to be fed. Alex. + appoint food for you, and I will not destroy the fruit of your land; and your vine in the field shall not fail, says the Lord Almighty. + +And all nations shall call you blessed: for you⌃ shall be a desirable land, says the Lord Almighty. + +You⌃ have spoken grievous words against me, says the Lord. Yet you⌃ said, Wherein have we spoken against you? + +You⌃ said, He that serves God +3:14 +Gr. is vain. + labors in vain: and what have we gained in that we have kept his ordinances, and in that we have walked as suppliants before the face of the Lord Almighty? + +And now we pronounce strangers blessed; and all they who act unlawfully are built up; and they have resisted God, and +yet have been delivered. + +Thus spoke they that feared the Lord, every one to his neighbor: and the Lord gave heed, and listened, and he wrote a book of remembrance before him for them that feared the Lord and reverenced his name. + +And they shall be +3:17 +Gr. for me. + mine, says the Lord Almighty, in the day which I appoint for a peculiar possession; and I will make choice of them, as a man makes choice of his son that serves him. + +Then shall you⌃ return, and discern between the righteous and the wicked, and between him that serves God, and him that serves +him not. + +

+ + +

For, behold, a day comes burning as an oven, and it shall consume them; and all the aliens, and all that do wickedly, shall be stubble: and the day that is coming shall set them on fire, says the Lord Almighty, and there shall not be left of them root or branch. + +But to you that fear my name shall the Sun of righteousness arise, and healing +shall be in his wings: and you⌃ shall go forth, and bound as young calves let loose from bonds. + +And you⌃ shall trample the wicked; for they shall be ashes underneath your feet in the day which I appoint, says the Lord Almighty. + +And, behold, I will send to you Elias the Thesbite, before the great and glorious day of the Lord comes; + + +4:5 +Luke 1:17 + who shall turn again the heart of the father to the son, and the heart of a man to his neighbor, lest I come and strike the earth grievously. + +Remember the law of my servant Moses, accordingly as I charged him +with it in Choreb for all Israel, +even the commandments and ordinances. + +

+
+ +Tobit +TOBIT +Tobit +TOB +

TOBIT +

+ + +

The book of the words of Tobit, son of Tobiel, the son of Ananiel, the son of Aduel, the son of Gabael, of the seed of Asael, of the tribe of Nephthali; + +Who in the time of Enemessar king of the Assyrians was led captive out of Thisbe, which is at the right hand of that city, which is called properly Nephthali in Galilee above Aser. + +I Tobit have walked all the days of my life in the ways of truth and justice, and I did many alms deeds to my brethren, and my nation, who came with me to Nineve, into the land of the Assyrians. + +And when I was in my own country, in the land of Israel being but young, all the tribe of Nephthali my father fell from the house of Jerusalem, which was chosen out of all the tribes of Israel, that all the tribes should sacrifice there, where the temple of the habitation of the most High was consecrated and built for all ages. + +Now all the tribes which together revolted, and the house of my father Nephthali, sacrificed to the heifer Baal. + +But I alone went often to Jerusalem at the feasts, as it was ordained to all the people of Israel by an everlasting decree, having the first fruits and tenths of increase, with that which was first shorn; and them gave I at the altar to the priests the children of Aaron. + +The first tenth part of all increase I gave to the sons of Aaron, who ministered at Jerusalem: another tenth part I sold away, and went, and spent it every year at Jerusalem: + +And the third I gave to them to whom it was meet, as Debora my father's mother had commanded me, because I was left an orphan by my father. + +Furthermore, when I was come to the age of a man, I married Anna of my own kindred, and of her I became the father of Tobias. + +And when we were carried away captives to Nineve, all my brethren and those that were of my kindred did eat of the bread of the Gentiles. + +But I kept myself from eating; + +Because I remembered God with all my heart. + +And the most High gave me grace and favor before Enemessar, so that I was his purveyor. + +And I went into Media, and left in trust with Gabael, the brother of Gabrias, at Rages a city of Media ten talents of silver. + +Now when Enemessar was dead, Sennacherib his son reigned in his stead; whose estate was troubled, that I could not go into Media. + +And in the time of Enemessar I gave many alms to my brethren, and gave my bread to the hungry, + +And my clothes to the naked: and if I saw any of my nation dead, or cast about the walls of Nineve, I buried him. + +And if the king Sennacherib had slain any, when he was come, and fled from Judea, I buried them privily; for in his wrath he killed many; but the bodies were not found, when they were sought for of the king. + +And when one of the Ninevites went and complained of me to the king, that I buried them, and hid myself; understanding that I was sought for to be put to death, I withdrew myself for fear. + +Then all my goods were forcibly taken away, neither was there any thing left me, beside my wife Anna and my son Tobias. + +And there passed not five and fifty days, before two of his sons killed him, and they fled into the mountains of Ararath; and Sarchedonus his son reigned in his stead; who appointed over his father's accounts, and over all his affairs, Achiacharus my brother Anael's son. + +And Achiacharus intreating for me, I returned to Nineve. Now Achiacharus was cupbearer, and keeper of the signet, and steward, and overseer of the accounts: and Sarchedonus appointed him next to him: and he was my brother's son. + +

+ + +

Now when I was come home again, and my wife Anna was restored to me, with my son Tobias, in the feast of Pentecost, which is the holy feast of the seven weeks, there was a good dinner prepared me, in the which I sat down to eat. + +And when I saw abundance of meat, I said to my son, Go and bring what poor man soever you shall find out of our brethren, who is mindful of the Lord; and, behold, I wait for you. + +But he came again, and said, Father, one of our nation is strangled, and is cast out in the marketplace. + +Then before I had tasted of any meat, I started up, and took him up into a room until the going down of the sun. + +Then I returned, and washed myself, and ate my meat in heaviness, + +Remembering that prophecy of Amos, as he said, Your feasts shall be turned into mourning, and all your mirth into lamentation. + +Therefore I wept: and after the going down of the sun I went and made a grave, and buried him. + +But my neighbors mocked me, and said, This man is not yet afraid to be put to death for this matter: who fled away; and yet, behold, he buries the dead again. + +The same night also I returned from the burial, and slept by the wall of my courtyard, being polluted and my face was uncovered: + +And I knew not that there were sparrows in the wall, and my eyes being open, the sparrows muted warm dung into my eyes, and a whiteness came in my eyes: and I went to the physicians, but they helped me not: moreover Achiacharus did nourish me, until I went into Elymais. + +And my wife Anna did take women's works to do. + +And when she had sent them home to the owners, they paid her wages, and gave her also besides a kid. + +And when it was in my house, and began to cry, I said to her, From whence is this kid? is it not stolen? render it to the owners; for it is not lawful to eat any thing that is stolen. + +But she replied upon me, It was given for a gift more than the wages. Howbeit I did not believe her, but bade her render it to the owners: and I was abashed at her. But she replied upon me, Where are your alms and your righteous deeds? behold, you and all your works are known. + +

+ + +

Then I being grieved did weep, and in my sorrow prayed, saying, + +O Lord, you are just, and all your works and all your ways are mercy and truth, and you judge truly and justly for ever. + +Remember me, and look on me, punish me not for my sins and ignorances, and the sins of my fathers, who have sinned before you: + +For they obeyed not your commandments: therefore you have delivered us for a spoil, and to captivity, and to death, and for a proverb of reproach to all the nations among whom we are dispersed. + +And now your judgments are many and true: deal with me according to my sins and my fathers': because we have not kept your commandments, neither have walked in truth before you. + +Now therefore deal with me as seems best to you, and command my spirit to be taken from me, that I may be dissolved, and become earth: for it is profitable for me to die rather than to live, because I have heard false reproaches, and have much sorrow: command therefore that I may now be delivered out of this distress, and go into the everlasting place: turn not your face away from me. + +It came to pass the same day, that in Ecbatane a city of Media Sara the daughter of Raguel was also reproached by her father's maids; + +Because that she had been married to seven husbands, whom Asmodeus the evil spirit had killed, before they had lain with her. Do you not know, said they, that you have strangled your husbands? you have had already seven husbands, neither was you named after any of them. + +Therefore do you beat us for them? if they be dead, go your ways after them, let us never see of you either son or daughter. + +When she heard these things, she was very sorrowful, so that she thought to have strangled herself; and she said, I am the only daughter of my father, and if I do this, it shall be a reproach to him, and I shall bring his old age with sorrow to the grave. + +Then she prayed toward the window, and said, Blessed are you, O Lord my God, and your holy and glorious name is blessed and honorable for ever: let all your works praise you for ever. + +And now, O Lord, I set I my eyes and my face toward you, + +And say, Take me out of the earth, that I may hear no more the reproach. + +You know, Lord, that I am pure from all sin with man, + +And that I never polluted my name, nor the name of my father, in the land of my captivity: I am the only daughter of my father, neither has he any child to be his heir, neither any near kinsman, nor any son of his alive, to whom I may keep myself for a wife: my seven husbands are already dead; and why should I live? but if it please not you that I should die, command some regard to be had of me, and pity taken of me, that I hear no more reproach. + +So the prayers of them both were heard before the majesty of the great God. + +And Raphael was sent to heal them both, that is, to scale away the whiteness of Tobit's eyes, and to give Sara the daughter of Raguel for a wife to Tobias the son of Tobit; and to bind Asmodeus the evil spirit; because she belonged to Tobias by right of inheritance. The selfsame time came Tobit home, and entered into his house, and Sara the daughter of Raguel came down from her upper chamber. + +

+ + +

In that day Tobit remembered the money which he had committed to Gabael in Rages of Media, + +And said with himself, I have wished for death; therefore do I not call for my son Tobias that I may signify to him of the money before I die? + +And when he had called him, he said, My son, when I am dead, bury me; and despise not your mother, but honor her all the days of your life, and do that which shall please her, and grieve her not. + +Remember, my son, that she saw many dangers for you, when you were in her womb: and when she is dead, bury her by me in one grave. + +My son, be mindful of the Lord our God all your days, and let not your will be set to sin, or to transgress his commandments: do uprightly all your life long, and follow not the ways of unrighteousness. + +For if you deal truly, your doings shall prosperously succeed to you, and to all them that live justly. + +Give alms of your substance; and when you give alms, let not your eye be envious, neither turn your face from any poor, and the face of God shall not be turned away from you. + +If you have abundance give alms accordingly: if you have but a little, be not afraid to give according to that little: + +For you lay up a good treasure for yourself against the day of necessity. + +Because that alms do deliver from death, and suffers not to come into darkness. + +For alms is a good gift to all that give it in the sight of the most High. + +Beware of all whoredom, my son, and chiefly take a wife of the seed of your fathers, and take not a strange woman to wife, which is not of your father's tribe: for we are the children of the prophets, Noe, Abraham, Isaac, and Jacob: remember, my son, that our fathers from the beginning, even that they all married wives of their own kindred, and were blessed in their children, and their seed shall inherit the land. + +Now therefore, my son, love your brethren, and despise not in your heart your brethren, the sons and daughters of your people, in not taking a wife of them: for in pride is destruction and much trouble, and in lewdness is decay and great lack: for lewdness is the mother of famine. + +Let not the wages of any man, which has wrought for you, wait with you, but give him it out of hand: for if you serve God, he will also repay you: be circumspect my son, in all things you do, and be wise in all your conversation. + +Do that to no man which you hate: drink not wine to make you drunken: neither let drunkenness go with you in your journey. + +Give of your bread to the hungry, and of your garments to them that are naked; and according to your abundance give alms: and let not your eye be envious, when you give alms. + +Pour out your bread on the burial of the just, but give nothing to the wicked. + +Ask counsel of all that are wise, and despise not any counsel that is profitable. + +Bless the Lord your God always, and desire of him that your ways may be directed, and that all your paths and counsels may prosper: for every nation has not counsel; but the Lord himself gives all good things, and he humbles whom he will, as he will; now therefore, my son, remember my commandments, neither let them be put out of your mind. + +And now I signify this to they that I committed ten talents to Gabael the son of Gabrias at Rages in Media. + +And fear not, my son, that we are made poor: for you have much wealth, if you fear God, and depart from all sin, and do that which is pleasing in his sight. + +

+ + +

Tobias then answered and said, Father, I will do all things which you have commanded me: + +But how can I receive the money, seeing I know him not? + +Then he gave him the handwriting, and said to him, Seek you a man which may go with you, while I yet live, and I will give him wages: and go and receive the money. + +Therefore when he went to seek a man, he found Raphael that was an angel. + +But he knew not; and he said to him, Canst you go with me to Rages? and know you those places well? + +To whom the angel said, I will go with you, and I know the way well: for I have lodged with our brother Gabael. + +Then Tobias said to him, Tarry for me, till I tell my father. + +Then he said to him, Go and wait not. So he went in and said to his father, Behold, I have found one which will go with me. Then he said, Call him to me, that I may know of what tribe he is, and whether he be a trusty man to go with you. + +So he called him, and he came in, and they saluted one another. + +Then Tobit said to him, Brother, show me of what tribe and family you are. + +To whom he said, Do you seek for a tribe or family, or an hired man to go with your son? Then Tobit said to him, I would know, brother, your kindred and name. + +Then he said, I am Azarias, the son of Ananias the great, and of your brethren. + +Then Tobit said, You are welcome, brother; be not now angry with me, because I have enquired to know your tribe and your family; for you are my brother, of an honest and good stock: for I know Ananias and Jonathas, sons of that great Samaias, as we went together to Jerusalem to worship, and offered the firstborn, and the tenths of the fruits; and they were not seduced with the error of our brethren: my brother, you are of a good stock. + +But tell me, what wages shall I give you? will you a drachm a day, and things necessary, as to my own son? + +Yes, moreover, if you⌃ return safe, I will add something to your wages. + +So they were well pleased. Then said he to Tobias, Prepare yourself for the journey, and God send you a good journey. And when his son had prepared all things far the journey, his father said, Go you with this man, and God, which dwells in heaven, prosper your journey, and the angel of God keep you company. So they went forth both, and the young man's dog with them. + +But Anna his mother wept, and said to Tobit, Why have you sent away our son? is he not the staff of our hand, in going in and out before us? + +Be not greedy to add money to money: but let it be as refuse in respect of our child. + +For that which the Lord has given us to live with does suffice us. + +Then said Tobit to her, Take no care, my sister; he shall return in safety, and your eyes shall see him. + +For the good angel will keep him company, and his journey shall be prosperous, and he shall return safe. + +Then she made an end of weeping. + +

+ + +

And as they went on their journey, they came in the evening to the river Tigris, and they lodged there. + +And when the young man went down to wash himself, a fish leaped out of the river, and would have devoured him. + +Then the angel said to him, Take the fish. And the young man laid hold of the fish, and drew it to land. + +To whom the angel said, Open the fish, and take the heart and the liver and the gall, and put them up safely. + +So the young man did as the angel commanded him; and when they had roasted the fish, they did eat it: then they both went on their way, till they drew near to Ecbatane. + +Then the young man said to the angel, Brother Azarias, to what use is the heart and the liver and the gal of the fish? + +And he said to him, Touching the heart and the liver, if a devil or an evil spirit trouble any, we must make a smoke thereof before the man or the woman, and the party shall be no more vexed. + +As for the gall, it is good to anoint a man that has whiteness in his eyes, and he shall be healed. + +And when they were come near to Rages, + +The angel said to the young man, Brother, to day we shall lodge with Raguel, who is your cousin; he also has one only daughter, named Sara; I will speak for her, that she may be given you for a wife. + +For to you does the right of her appertain, seeing you only are of her kindred. + +And the maid is fair and wise: now therefore hear me, and I will speak to her father; and when we return from Rages we will celebrate the marriage: for I know that Raguel can’t marry her to another according to the law of Moses, but he shall be guilty of death, because the right of inheritance does rather appertain to you than to any other. + +Then the young man answered the angel, I have heard, brother Azarias that this maid has been given to seven men, who all died in the marriage chamber. + +And now I am the only son of my father, and I am afraid, lest if I go in to her, I die, as the other before: for a wicked spirit loves her, which hurts no body, but those which come to her; therefore I also fear lest I die, and bring my father's and my mother's life because of me to the grave with sorrow: for they have no other son to bury them. + +Then the angel said to him, Do you not remember the precepts which your father gave you, that you should marry a wife of your own kindred? therefore hear me, O my brother; for she shall be given you to wife; and make you no reckoning of the evil spirit; for this same night shall she be given you in marriage. + +And when you shall come into the marriage chamber, you shall take the ashes of perfume, and shall lay upon them some of the heart and liver of the fish, and shall make a smoke with it: + +And the devil shall smell it, and flee away, and never come again any more: but when you shall come to her, rise up both of you, and pray to God which is merciful, who will have pity on you, and save you: fear not, for she is appointed to you from the beginning; and you shall preserve her, and she shall go with you. Moreover I suppose that she shall bear you children. Now when Tobias had heard these things, he loved her, and his heart was effectually joined to her. + +

+ + +

And when they were come to Ecbatane, they came to the house of Raguel, and Sara met them: and after they had saluted one another, she brought them into the house. + +Then said Raguel to Edna his wife, How like is this young man to Tobit my cousin! + +And Raguel asked them, From whence are you⌃, brethren? To whom they said, We are of the sons of Nephthalim, which are captives in Nineve. + +Then he said to them, Do you⌃ know Tobit our kinsman? And they said, We know him. Then said he, Is he in good health? + +And they said, He is both alive, and in good health: and Tobias said, He is my father. + +Then Raguel leaped up, and kissed him, and wept, + +And blessed him, and said to him, You are the son of an honest and good man. But when he had heard that Tobit was blind, he was sorrowful, and wept. + +And likewise Edna his wife and Sara his daughter wept. Moreover they entertained them cheerfully; and after that they had killed a ram of the flock, they set store of meat on the table. Then said Tobias to Raphael, Brother Azarias, speak of those things of which you did talk in the way, and let this business be dispatched. + +So he communicated the matter with Raguel: and Raguel said to Tobias, Eat and drink, and make merry: + +For it is meet that you should marry my daughter: nevertheless I will declare to you the truth. + +I have given my daughter in marriage to seven men, who died that night they came in to her: nevertheless for the present be merry. But Tobias said, I will eat nothing here, till we agree and swear one to another. + +Raguel said, Then take her from henceforth according to the manner, for you are her cousin, and she is your, and the merciful God give you good success in all things. + +Then he called his daughter Sara, and she came to her father, and he took her by the hand, and gave her to be wife to Tobias, saying, Behold, take her after the law of Moses, and lead her away to your father. And he blessed them; + +And called Edna his wife, and took paper, and did write an instrument of covenants, and sealed it. + +Then they began to eat. + +After Raguel called his wife Edna, and said to her, Sister, prepare another chamber, and bring her in there. + +Which when she had done as he had bidden her, she brought her there: and she wept, and she received the tears of her daughter, and said to her, + +Be of good comfort, my daughter; the Lord of heaven and earth give you joy for this your sorrow: be of good comfort, my daughter. + +

+ + +

And when they had supped, they brought Tobias in to her. + +And as he went, he remembered the words of Raphael, and took the ashes of the perfumes, and put the heart and the liver of the fish thereupon, and made a smoke therewith. + +The which smell when the evil spirit had smelled, he fled into the utmost parts of Egypt, and the angel bound him. + +And after that they were both shut in together, Tobias rose out of the bed, and said, Sister, arise, and let us pray that God would have pity on us. + +Then began Tobias to say, Blessed are you, O God of our fathers, and blessed is your holy and glorious name for ever; let the heavens bless you, and all your creatures. + +You made Adam, and gave him Eve his wife for an helper and stay: of them came mankind: you have said, It is not good that man should be alone; let us make to him an aid like to himself. + +And now, O Lord, I take not this my sister for lush but uprightly: therefore mercifully ordain that we may become aged together. + +And she said with him, Amen. + +So they slept both that night. And Raguel arose, and went and made a grave, + +Saying, I fear lest he also be dead. + +But when Raguel was come into his house, + +He said to his wife Edna. Send one of the maids, and let her see whether he be alive: if he be not, that we may bury him, and no man know it. + +So the maid opened the door, and went in, and found them both asleep, + +And came forth, and told them that he was alive. + +Then Raguel praised God, and said, O God, you are worthy to be praised with all pure and holy praise; therefore let your saints praise you with all your creatures; and let all your angels and your elect praise you for ever. + +You are to be praised, for you have made me joyful; and that is not come to me which I suspected; but you have dealt with us according to your great mercy. + +You are to be praised because you have had mercy of two that were the only begotten children of their fathers: grant them mercy, O Lord, and finish their life in health with joy and mercy. + +Then Raguel bade his servants to fill the grave. + +And he kept the wedding feast fourteen days. + +For before the days of the marriage were finished, Raguel had said to him by an oath, that he should not depart till the fourteen days of the marriage were expired; + +And then he should take the half of his goods, and go in safety to his father; and should have the rest when I and my wife be dead. + +

+ + +

Then Tobias called Raphael, and said to him, + +Brother Azarias, take with you a servant, and two camels, and go to Rages of Media to Gabael, and bring me the money, and bring him to the wedding. + +For Raguel has sworn that I shall not depart. + +But my father counts the days; and if I wait long, he will be very sorry. + +So Raphael went out, and lodged with Gabael, and gave him the handwriting: who brought forth bags which were sealed up, and gave them to him. + +And early in the morning they went forth both together, and came to the wedding: and Tobias blessed his wife. + +

+ + +

Now Tobit his father counted every day: and when the days of the journey were expired, and they came not, + +Then Tobit said, Are they detained? or is Gabael dead, and there is no man to give him the money? + +Therefore he was very sorry. + +Then his wife said to him, My son is dead, seeing he stays long; and she began to wail him, and said, + +Now I care for nothing, my son, since I have let you go, the light of my eyes. + +To whom Tobit said, Hold your peace, take no care, for he is safe. + +But she said, Hold your peace, and deceive me not; my son is dead. And she went out every day into the way which they went, and did eat no meat on the daytime, and ceased not whole nights to bewail her son Tobias, until the fourteen days of the wedding were expired, which Raguel had sworn that he should spend there. Then Tobias said to Raguel, + +Let me go, for my father and my mother look no more to see me. + +But his father in law said to him, Tarry with me, and I will send to your father, and they shall declare to him how things go with you. + +But Tobias said, No; but let me go to my father. + +Then Raguel arose, and gave him Sara his wife, and half his goods, servants, and cattle, and money: + +And he blessed them, and sent them away, saying, The God of heaven give you a prosperous journey, my children. + +And he said to his daughter, Honor your father and your mother in law, which are now your parents, that I may hear good report of you. And he kissed her. Edna also said to Tobias, The Lord of heaven restore you, my dear brother, and grant that I may see your children of my daughter Sara before I die, that I may rejoice before the Lord: behold, I commit my daughter to you of special trust; where are do not entreat her evil. + +

+ + +

After these things Tobias went his way, praising God that he had given him a prosperous journey, and blessed Raguel and Edna his wife, and went on his way till they drew near to Nineve. + +Then Raphael said to Tobias, You know, brother, how you did leave your father: + +Let us haste before your wife, and prepare the house. + +And take in your hand the gall of the fish. So they went their way, and the dog went after them. + +Now Anna sat looking about toward the way for her son. + +And when she espied him coming, she said to his father, Behold, your son comes, and the man that went with him. + +Then said Raphael, I know, Tobias, that your father will open his eyes. + +Therefore anoint you his eyes with the gall, and being pricked therewith, he shall rub, and the whiteness shall fall away, and he shall see you. + +Then Anna ran forth, and fell upon the neck of her son, and said to him, Seeing I have seen you, my son, from henceforth I am content to die. And they wept both. + +Tobit also went forth toward the door, and stumbled: but his son ran to him, + +And took hold of his father: and he struck of the gall on his fathers' eyes, saying, Be of good hope, my father. + +And when his eyes began to hurt, he rubbed them; + +And the whiteness pilled away from the corners of his eyes: and when he saw his son, he fell upon his neck. + +And he wept, and said, Blessed are you, O God, and blessed is your name for ever; and blessed are all your holy angels: + +For you have scourged, and have taken pity on me: for, behold, I see my son Tobias. And his son went in rejoicing, and told his father the great things that had happened to him in Media. + +Then Tobit went out to meet his daughter in law at the gate of Nineve, rejoicing and praising God: and they which saw him go marveled, because he had received his sight. + +But Tobias gave thanks before them, because God had mercy on him. And when he came near to Sara his daughter in law, he blessed her, saying, You are welcome, daughter: God be blessed, which has brought you to us, and blessed be your father and your mother. And there was joy among all his brethren which were at Nineve. + +And Achiacharus, and Nasbas his brother's son, came: + +And Tobias' wedding was kept seven days with great joy. + +

+ + +

Then Tobit called his son Tobias, and said to him, My son, see that the man have his wages, which went with you, and you must give him more. + +And Tobias said to him, O father, it is no harm to me to give him half of those things which I have brought: + +For he has brought me again to you in safety, and made whole my wife, and brought me the money, and likewise healed you. + +Then the old man said, It is due to him. + +So he called the angel, and he said to him, Take half of all that you⌃ have brought and go away in safety. + +Then he took them both apart, and said to them, Bless God, praise him, and magnify him, and praise him for the things which he has done to you in the sight of all that live. It is good to praise God, and exalt his name, and honorably to show forth the works of God; therefore be not slack to praise him. + +It is good to keep close the secret of a king, but it is honorable to reveal the works of God. Do that which is good, and no evil shall touch you. + +Prayer is good with fasting and alms and righteousness. A little with righteousness is better than much with unrighteousness. It is better to give alms than to lay up gold: + +For alms does deliver from death, and shall purge away all sin. Those that exercise alms and righteousness shall be filled with life: + +But they that sin are enemies to their own life. + +Surely I will keep close nothing from you. For I said, It was good to keep close the secret of a king, but that it was honorable to reveal the works of God. + +Now therefore, when you did pray, and Sara your daughter in law, I did bring the remembrance of your prayers before the Holy One: and when you did bury the dead, I was with you likewise. + +And when you did not delay to rise up, and leave your dinner, to go and cover the dead, your good deed was not hid from me: but I was with you. + +And now God has sent me to heal you and Sara your daughter in law. + +I am Raphael, one of the seven holy angels, which present the prayers of the saints, and which go in and out before the glory of the Holy One. + +Then they were both troubled, and fell upon their faces: for they feared. + +But he said to them, Fear not, for it shall go well with you; praise God therefore. + +For not of any favor of mine, but by the will of our God I came; therefore praise him for ever. + +All these days I did appear to you; but I did neither eat nor drink, but you⌃ did see a vision. + +Now therefore give God thanks: for I go up to him that sent me; but write all things which are done in a book. + +And when they arose, they saw him no more. + +Then they confessed the great and wonderful works of God, and how the angel of the Lord had appeared to them. + +

+ + +

Then Tobit wrote a prayer of rejoicing, and said, Blessed be God that lives for ever, and blessed be his kingdom. + +For he does scourge, and has mercy: he leads down to hell, and brings up again: neither is there any that can avoid his hand. + +Confess him before the Gentiles, you⌃ children of Israel: for he has scattered us among them. + +There declare his greatness, and extol him before all the living: for he is our Lord, and he is the God our Father for ever. + +And he will scourge us for our iniquities, and will have mercy again, and will gather us out of all nations, among whom he has scattered us. + +If you⌃ turn to him with your whole heart, and with your whole mind, and deal uprightly before him, then will he turn to you, and will not hide his face from you. Therefore see what he will do with you, and confess him with your whole mouth, and praise the Lord of might, and extol the everlasting King. In the land of my captivity do I praise him, and declare his might and majesty to a sinful nation. O you⌃ sinners, turn and do justice before him: who can tell if he will accept you, and have mercy on you? + +I will extol my God, and my soul shall praise the King of heaven, and shall rejoice in his greatness. + +Let all men speak, and let all praise him for his righteousness. + +O Jerusalem, the holy city, he will scourge you for your children's works, and will have mercy again on the sons of the righteous. + +Give praise to the Lord, for he is good: and praise the everlasting King, that his tabernacle may be builded in you again with joy, and let him make joyful there in you those that are captives, and love in you for ever those that are miserable. + +Many nations shall come from far to the name of the Lord God with gifts in their hands, even gifts to the King of heaven; all generations shall praise you with great joy. + +Cursed are all they which hate you, and blessed shall all be which love you for ever. + +Rejoice and be glad for the children of the just: for they shall be gathered together, and shall bless the Lord of the just. + +O blessed are they which love you, for they shall rejoice in your peace: blessed are they which have been sorrowful for all your scourges; for they shall rejoice for you, when they have seen all your glory, and shall be glad for ever. + +Let my soul bless God the great King. + +For Jerusalem shall be built up with sapphires and emeralds, and precious stone: your walls and towers and battlements with pure gold. + +And the streets of Jerusalem shall be paved with beryl and carbuncle and stones of Ophir. + +And all her streets shall say, Alleluia; and they shall praise him, saying, Blessed be God, which has extolled it for ever. + +

+ + +

So Tobit made an end of praising God. + +And he was eight and fifty years old when he lost his sight, which was restored to him after eight years: and he gave alms, and he increased in the fear of the Lord God, and praised him. + +And when he was very aged he called his son, and the sons of his son, and said to him, My son, take your children; for, behold, I am aged, and am ready to depart out of this life. + +Go into Media my son, for I surely believe those things which Jonas the prophet spoke of Nineve, that it shall be overthrown; and that for a time peace shall rather be in Media; and that our brethren shall lie scattered in the earth from that good land: and Jerusalem shall be desolate, and the house of God in it shall be burned, and shall be desolate for a time; + +And that again God will have mercy on them, and bring them again into the land, where they shall build a temple, but not like to the first, until the time of that age be fulfilled; and afterward they shall return from all places of their captivity, and build up Jerusalem gloriously, and the house of God shall be built in it for ever with a glorious building, as the prophets have spoken thereof. + +And all nations shall turn, and fear the Lord God truly, and shall bury their idols. + +So shall all nations praise the Lord, and his people shall confess God, and the Lord shall exalt his people; and all those which love the Lord God in truth and justice shall rejoice, showing mercy to our brethren. + +And now, my son, depart out of Nineve, because that those things which the prophet Jonas spoke shall surely come to pass. + +But keep you the law and the commandments, and show yourself merciful and just, that it may go well with you. + +And bury me decently, and your mother with me; but wait no longer at Nineve. Remember, my son, how Aman handled Achiacharus that brought him up, how out of light he brought him into darkness, and how he rewarded him again: yet Achiacharus was saved, but the other had his reward: for he went down into darkness. Manasses gave alms, and escaped the snares of death which they had set for him: but Aman fell into the snare, and perished. + +Therefore now, my son, consider what alms does, and how righteousness does deliver. When he had said these things, he gave up the ghost in the bed, being one hundred and eight and fifty years old; and he buried him honorably. + +And when Anna his mother was dead, he buried her with his father. But Tobias departed with his wife and children to Ecbatane to Raguel his father in law, + +Where he became old with honor, and he buried his father and mother in law honorably, and he inherited their substance, and his father Tobit's. + +And he died at Ecbatane in Media, being one hundred and seven and twenty years old. + +But before he died he heard of the destruction of Nineve, which was taken by Nabuchodonosor and Assuerus: and before his death he rejoiced over Nineve. + +

+
+ +Judith +JUDITH +Judith +JDT +

JUDITH +

+ + +

In the twelfth year of the reign of Nabuchodonosor, who reigned in Nineve, the great city; in the days of Arphaxad, which reigned over the Medes in Ecbatane, + +And built in Ecbatane walls round about of stones hewn three cubits broad and six cubits long, and made the height of the wall seventy cubits, and the breadth thereof fifty cubits: + +And set the towers thereof upon the gates of it one hundred cubits high, and the breadth thereof in the foundation threescore cubits: + +And he made the gates thereof, even gates that were raised to the height of seventy cubits, and the breadth of them was forty cubits, for the going forth of his mighty armies, and for the setting in array of his footmen: + +Even in those days king Nabuchodonosor made war with king Arphaxad in the great plain, which is the plain in the borders of Ragau. + +And there came to him all they that lived in the hill country, and all that lived by Euphrates, and Tigris and Hydaspes, and the plain of Arioch the king of the Elymeans, and very many nations of the sons of Chelod, assembled themselves to the battle. + +Then Nabuchodonosor king of the Assyrians sent to all that lived in Persia, and to all that lived westward, and to those that lived in Cilicia, and Damascus, and Libanus, and Antilibanus, and to all that lived upon the sea coast, + +And to those among the nations that were of Carmel, and Galaad, and the higher Galilee, and the great plain of Esdrelom, + +And to all that were in Samaria and the cities thereof, and beyond Jordan to Jerusalem, and Betane, and Chelus, and Kades, and the river of Egypt, and Taphnes, and Ramesse, and all the land of Gesem, + +Until you⌃ come beyond Tanis and Memphis, and to all the inhabitants of Egypt, until you⌃ come to the borders of Ethiopia. + +But all the inhabitants of the land made light of the commandment of Nabuchodonosor king of the Assyrians, neither they went with him to the battle; for they were not afraid of him: yes, he was before them as one man, and they sent away his ambassadors from them without effect, and with disgrace. + +Therefore Nabuchodonosor was very angry with all this country, and swore by his throne and kingdom, that he would surely be avenged upon all those coasts of Cilicia, and Damascus, and Syria, and that he would kill with the sword all the inhabitants of the land of Moab, and the children of Ammon, and all Judea, and all that were in Egypt, till you⌃ come to the borders of the two seas. + +Then he marched in battle array with his power against king Arphaxad in the seventeenth year, and he prevailed in his battle: for he overthrew all the power of Arphaxad, and all his horsemen, and all his chariots, + +And became lord of his cities, and came to Ecbatane, and took the towers, and spoiled the streets thereof, and turned the beauty thereof into shame. + +He took also Arphaxad in the mountains of Ragau, and struck him through with his darts, and destroyed him utterly that day. + +So he returned afterward to Nineve, both he and all his company of sundry nations being a very great multitude of men of war, and there he took his ease, and banqueted, both he and his army, one hundred and twenty days. + +

+ + +

And in the eighteenth year, the two and twentieth day of the first month, there was talk in the house of Nabuchodonosor king of the Assyrians that he should, as he said, avenge himself on all the earth. + +So he called to him all his officers, and all his nobles, and communicated with them his secret counsel, and concluded the afflicting of the whole earth out of his own mouth. + +Then they decreed to destroy all flesh, that did not obey the commandment of his mouth. + +And when he had ended his counsel, Nabuchodonosor king of the Assyrians called Holofernes the chief captain of his army, which was next to him, and said to him. + +Thus says the great king, the lord of the whole earth, Behold, you shall go forth from my presence, and take with you men that trust in their own strength, of footmen one hundred and twenty thousand; and the number of horses with their riders twelve thousand. + +And you shall go against all the west country, because they disobeyed my commandment. + +And you shall declare to that they prepare for me earth and water: for I will go forth in my wrath against them and will cover the whole face of the earth with the feet of my army, and I will give them for a spoil to them: + +So that their slain shall fill their valleys and brooks and the river shall be filled with their dead, till it overflow: + +And I will lead them captives to the utmost parts of all the earth. + +You therefore shall go forth. and take beforehand for me all their coasts: and if they will yield themselves to you, you shall reserve them for me till the day of their punishment. + +But concerning them that rebel, let not your eye spare them; but put them to the slaughter, and spoil them wherever you go. + +For as I live, and by the power of my kingdom, whatever I have spoken, that will I do by my hand. + +And take you heed that you transgress none of the commandments of your lord, but accomplish them fully, as I have commanded you, and defer not to do them. + +Then Holofernes went forth from the presence of his lord, and called all the governors and captains, and the officers of the army of Assur; + +And he mustered the chosen men for the battle, as his lord had commanded him, to one hundred and twenty thousand, and twelve thousand archers on horseback; + +And he ranged them, as a great army is ordered for the war. + +And he took camels and asses for their carriages, a very great number; and sheep and oxen and goats without number for their provision: + +And plenty of victual for every man of the army, and very much gold and silver out of the king's house. + +Then he went forth and all his power to go before king Nabuchodonosor in the voyage, and to cover all the face of the earth westward with their chariots, and horsemen, and their chosen footmen. + +A great number also sundry countries came with them like locusts, and like the sand of the earth: for the multitude was without number. + +And they went forth of Nineve three days' journey toward the plain of Bectileth, and pitched from Bectileth near the mountain which is at the left hand of the upper Cilicia. + +Then he took all his army, his footmen, and horsemen and chariots, and went from thence into the hill country; + +And destroyed Phud and Lud, and spoiled all the children of Rasses, and the children of Israel, which were toward the wilderness at the south of the land of the Chellians. + +Then he went over Euphrates, and went through Mesopotamia, and destroyed all the high cities that were upon the river Arbonai, till you⌃ come to the sea. + +And he took the borders of Cilicia, and killed all that resisted him, and came to the borders of Japheth, which were toward the south, over against Arabia. + +He compassed also all the children of Madian, and burned up their tabernacles, and spoiled their sheepcotes. + +Then he went down into the plain of Damascus in the time of wheat harvest, and burnt up all their fields, and destroyed their flocks and herds, also he spoiled their cities, and utterly wasted their countries, and struck all their young men with the edge of the sword. + +Therefore the fear and dread of him fell upon all the inhabitants of the sea coasts, which were in Sidon and Tyrus, and them that lived in Sur and Ocina, and all that lived in Jemnaan; and they that lived in Azotus and Ascalon feared him greatly. + +

+ + +

So they sent ambassadors to him to treat of peace, saying, + +Behold, we the servants of Nabuchodonosor the great king lie before you; use us as shall be good in your sight. + +Behold, our houses, and all our places, and all our fields of wheat, and flocks, and herds, and all the lodges of our tents lie before your face; use them as it pleases you. + +Behold, even our cities and the inhabitants thereof are your servants; come and deal with them as seems good to you. + +So the men came to Holofernes, and declared to him after this manner. + +Then came he down toward the sea coast, both he and his army, and set garrisons in the high cities, and took out of them chosen men for aid. + +So they and all the country round about received them with garlands, with dances, and with timbrels. + +Yet he did cast down their frontiers, and cut down their groves: for he had decreed to destroy all the gods of the land, that all nations should worship Nabuchodonosor only, and that all tongues and tribes should call upon him as god. + +Also he came over against Esdraelon near to Judea, over against the great strait of Judea. + +And he pitched between Geba and Scythopolis, and there he tarried a whole month, that he might gather together all the carriages of his army. + +

+ + +

Now the children of Israel, that lived in Judea, heard all that Holofernes the chief captain of Nabuchodonosor king of the Assyrians had done to the nations, and after what manner he had spoiled all their temples, and brought them to nothing. + +Therefore they were exceedingly afraid of him, and were troubled for Jerusalem, and for the temple of the Lord their God: + +For they were newly returned from the captivity, and all the people of Judea were lately gathered together: and the vessels, and the altar, and the house, were sanctified after the profanation. + +Therefore they sent into all the coasts of Samaria, and the villages and to Bethoron, and Belmen, and Jericho, and to Choba, and Esora, and to the valley of Salem: + +And possessed themselves beforehand of all the tops of the high mountains, and fortified the villages that were in them, and laid up food for the provision of war: for their fields were of late reaped. + +Also Joacim the high priest, which was in those days in Jerusalem, wrote to them that lived in Bethulia, and Betomestham, which is over against Esdraelon toward the open country, near to Dothaim, + +Charging them to keep the passages of the hill country: for by them there was an entrance into Judea, and it was easy to stop them that would come up, because the passage was straight, for two men at the most. + +And the children of Israel did as Joacim the high priest had commanded them, with the ancients of all the people of Israel, which lived at Jerusalem. + +Then every man of Israel cried to God with great fervency, and with great vehemency did they humble their souls: + +Both they, and their wives and their children, and their cattle, and every stranger and hireling, and their servants bought with money, put sackcloth upon their loins. + +Thus every man and women, and the little children, and the inhabitants of Jerusalem, fell before the temple, and cast ashes upon their heads, and spread out their sackcloth before the face of the Lord: also they put sackcloth about the altar, + +And cried to the God of Israel all with one consent earnestly, that he would not give their children for a prey, and their wives for a spoil, and the cities of their inheritance to destruction, and the sanctuary to profanation and reproach, and for the nations to rejoice at. + +So God heard their prayers, and looked upon their afflictions: for the people fasted many days in all Judea and Jerusalem before the sanctuary of the Lord Almighty. + +And Joacim the high priest, and all the priests that stood before the Lord, and they which ministered to the Lord, had their loins girded with sackcloth, and offered the daily burnt offerings, with the vows and free gifts of the people, + +And had ashes on their mitres, and cried to the Lord with all their power, that he would look upon all the house of Israel graciously. + +

+ + +

Then was it declared to Holofernes, the chief captain of the army of Assur, that the children of Israel had prepared for war, and had shut up the passages of the hill country, and had fortified all the tops of the high hills and had laid impediments in the champaign countries: + +Wherewith he was very angry, and called all the princes of Moab, and the captains of Ammon, and all the governors of the sea coast, + +And he said to them, Tell me now, you⌃ sons of Chanaan, who this people is, that dwells in the hill country, and what are the cities that they inhabit, and what is the multitude of their army, and wherein is their power and strength, and what king is set over them, or captain of their army; + +And why have they determined not to come and meet me, more than all the inhabitants of the west. + +Then said Achior, the captain of all the sons of Ammon, Let my lord now hear a word from the mouth of your servant, and I will declare to you the truth concerning this people, which dwells near you, and inhabits the hill countries: and there shall no lie come out of the mouth of your servant. + +This people are descended of the Chaldeans: + +And they sojourned heretofore in Mesopotamia, because they would not follow the gods of their fathers, which were in the land of Chaldea. + +For they left the way of their ancestors, and worshipped the God of heaven, the God whom they knew: so they cast them out from the face of their gods, and they fled into Mesopotamia, and sojourned there many days. + +Then their God commanded them to depart from the place where they sojourned, and to go into the land of Chanaan: where they lived, and were increased with gold and silver, and with very much cattle. + +But when a famine covered all the land of Chanaan, they went down into Egypt, and sojourned there, while they were nourished, and became there a great multitude, so that one could not number their nation. + +Therefore the king of Egypt rose up against them, and dealt subtly with them, and brought them low with laboring in brick, and made them slaves. + +Then they cried to their God, and he struck all the land of Egypt with incurable plagues: so the Egyptians cast them out of their sight. + +And God dried the Red sea before them, + +And brought them to mount Sina, and Cades-Barne, and cast forth all that lived in the wilderness. + +So they lived in the land of the Amorites, and they destroyed by their strength all them of Esebon, and passing over Jordan they possessed all the hill country. + +And they cast forth before them the Chanaanite, the Pherezite, the Jebusite, and the Sychemite, and all the Gergesites, and they lived in that country many days. + +And while they sinned not before their God, they prospered, because the God that hates iniquity was with them. + +But when they departed from the way which he appointed them, they were destroyed in many battles very sore, and were led captives into a land that was not their's, and the temple of their God was cast to the ground, and their cities were taken by the enemies. + +But now are they returned to their God, and are come up from the places where they were scattered, and have possessed Jerusalem, where their sanctuary is, and are seated in the hill country; for it was desolate. + +Now therefore, my lord and governor, if there be any error against this people, and they sin against their God, let us consider that this shall be their ruin, and let us go up, and we shall overcome them. + +But if there be no iniquity in their nation, let my lord now pass by, lest their Lord defend them, and their God be for them, and we become a reproach before all the world. + +And when Achior had finished these sayings, all the people standing round about the tent murmured, and the chief men of Holofernes, and all that lived by the sea side, and in Moab, spoke that he should kill him. + +For, say they, we will not be afraid of the face of the children of Israel: for, behold, it is a people that have no strength nor power for a strong battle + +Now therefore, lord Holofernes, we will go up, and they shall be a prey to be devoured of all your army. + +

+ + +

And when the tumult of men that were about the council was ceased, Holofernes the chief captain of the army of Assur said to Achior and all the Moabites before all the company of other nations, + +And who are you, Achior, and the hirelings of Ephraim, that you have prophesied against us as to day, and have said, that we should not make war with the people of Israel, because their God will defend them? and who is God but Nabuchodonosor? + +He will send his power, and will destroy them from the face of the earth, and their God shall not deliver them: but we his servants will destroy them as one man; for they are not able to sustain the power of our horses. + +For with them we will tread them under foot, and their mountains shall be drunken with their blood, and their fields shall be filled with their dead bodies, and their footsteps shall not be able to stand before us, for they shall utterly perish, says king Nabuchodonosor, lord of all the earth: for he said, None of my words shall be in vain. + +And you, Achior, an hireling of Ammon, which have spoken these words in the day of your iniquity, shall see my face no more from this day, until I take vengeance of this nation that came out of Egypt. + +And then shall the sword of my army, and the multitude of them that serve me, pass through your sides, and you shall fall among their slain, when I return. + +Now therefore my servants shall bring you back into the hill country, and shall set you in one of the cities of the passages: + +And you shall not perish, till you be destroyed with them. + +And if you persuade yourself in your mind that they shall be taken, let not your countenance fall: I have spoken it, and none of my words shall be in vain. + +Then Holofernes commanded his servants, that waited in his tent, to take Achior, and bring him to Bethulia, and deliver him into the hands of the children of Israel. + +So his servants took him, and brought him out of the camp into the plain, and they went from the midst of the plain into the hill country, and came to the fountains that were under Bethulia. + +And when the men of the city saw them, they took up their weapons, and went out of the city to the top of the hill: and every man that used a sling kept them from coming up by casting of stones against them. + +Nevertheless having gotten privily under the hill, they bound Achior, and cast him down, and left him at the foot of the hill, and returned to their lord. + +But the Israelites descended from their city, and came to him, and loosed him, and brought him to Bethulia, and presented him to the governors of the city: + +Which were in those days Ozias the son of Micha, of the tribe of Simeon, and Chabris the son of Gothoniel, and Charmis the son of Melchiel. + +And they called together all the ancients of the city, and all their youth ran together, and their women, to the assembly, and they set Achior in the midst of all their people. Then Ozias asked him of that which was done. + +And he answered and declared to them the words of the council of Holofernes, and all the words that he had spoken in the midst of the princes of Assur, and whatever Holofernes had spoken proudly against the house of Israel. + +Then the people fell down and worshipped God, and cried to God. saying, + +O Lord God of heaven, behold their pride, and pity the low estate of our nation, and look upon the face of those that are sanctified to you this day. + +Then they comforted Achior, and praised him greatly. + +And Ozias took him out of the assembly to his house, and made a feast to the elders; and they called on the God of Israel all that night for help. + +

+ + +

The next day Holofernes commanded all his army, and all his people which were come to take his part, that they should remove their camp against Bethulia, to take beforehand the ascents of the hill country, and to make war against the children of Israel. + +Then their strong men removed their camps in that day, and the army of the men of war was one hundred and seventy thousand footmen, and twelve thousand horsemen, beside the baggage, and other men that were afoot among them, a very great multitude. + +And they camped in the valley near to Bethulia, by the fountain, and they spread themselves in breadth over Dothaim even to Belmaim, and in length from Bethulia to Cynamon, which is over against Esdraelon. + +Now the children of Israel, when they saw the multitude of them, were greatly troubled, and said every one to his neighbor, Now will these men lick up the face of the earth; for neither the high mountains, nor the valleys, nor the hills, are able to bear their weight. + +Then every man took up his weapons of war, and when they had kindled fires upon their towers, they remained and watched all that night. + +But in the second day Holofernes brought forth all his horsemen in the sight of the children of Israel which were in Bethulia, + +And viewed the passages up to the city, and came to the fountains of their waters, and took them, and set garrisons of men of war over them, and he himself removed toward his people. + +Then came to him all the chief of the children of Esau, and all the governors of the people of Moab, and the captains of the sea coast, and said, + +Let our lord now hear a word, that there be not an overthrow in your army. + +For this people of the children of Israel do not trust in their spears, but in the height of the mountains wherein they dwell, because it is not easy to come up to the tops of their mountains. + +Now therefore, my lord, fight not against them in battle array, and there shall not so much as one man of your people perish. + +Remain in your camp, and keep all the men of your army, and let your servants get into their hands the fountain of water, which issues forth of the foot of the mountain: + +For all the inhabitants of Bethulia have their water thence; so shall thirst kill them, and they shall give up their city, and we and our people shall go up to the tops of the mountains that are near, and will camp upon them, to watch that none go out of the city. + +So they and their wives and their children shall be consumed with fire, and before the sword come against them, they shall be overthrown in the streets where they dwell. + +Thus shall you render them an evil reward; because they rebelled, and met not your person peaceably. + +And these words pleased Holofernes and all his servants, and he appointed to do as they had spoken. + +So the camp of the children of Ammon departed, and with them five thousand of the Assyrians, and they pitched in the valley, and took the waters, and the fountains of the waters of the children of Israel. + +Then the children of Esau went up with the children of Ammon, and camped in the hill country over against Dothaim: and they sent some of them toward the south, and toward the east over against Ekrebel, which is near to Chusi, that is upon the brook Mochmur; and the rest of the army of the Assyrians camped in the plain, and covered the face of the whole land; and their tents and carriages were pitched to a very great multitude. + +Then the children of Israel cried to the Lord their God, because their heart failed, for all their enemies had compassed them round about, and there was no way to escape out from among them. + +Thus all the company of Assur remained about them, both their footmen, chariots, and horsemen, four and thirty days, so that all their vessels of water failed all the inhibitants of Bethulia. + +And the cisterns were emptied, and they had not water to drink their fill for one day; for they gave them drink by measure. + +Therefore their young children were out of heart, and their women and young men fainted for thirst, and fell down in the streets of the city, and by the passages of the gates, and there was no longer any strength in them. + +Then all the people assembled to Ozias, and to the chief of the city, both young men, and women, and children, and cried with a loud voice, and said before all the elders, + +God be judge between us and you: for you⌃ have done us great injury, in that you⌃ have not required peace of the children of Assur. + +For now we have no helper: but God has sold us into their hands, that we should be thrown down before them with thirst and great destruction. + +Now therefore call them to you, and deliver the whole city for a spoil to the people of Holofernes, and to all his army. + +For it is better for us to be made a spoil to them, than to die for thirst: for we will be his servants, that our souls may live, and not see the death of our infants before our eyes, nor our wives nor our children to die. + +We take to witness against you the heaven and the earth, and our God and Lord of our fathers, which punishes us according to our sins and the sins of our fathers, that he do not according as we have said this day. + +Then there was great weeping with one consent in the midst of the assembly; and they cried to the Lord God with a loud voice. + +Then said Ozias to them, Brethren, be of good courage, let us yet endure five days, in the which space the Lord our God may turn his mercy toward us; for he will not forsake us utterly. + +And if these days pass, and there come no help to us, I will do according to your word. + +And he dispersed the people, every one to their own charge; and they went to the walls and towers of their city, and sent the women and children into their houses: and they were very low brought in the city. + +

+ + +

Now at that time Judith heard thereof, which was the daughter of Merari, the son of Ox, the son of Joseph, the son of Ozel, the son of Elcia, the son of Ananias, the son of Gedeon, the son of Raphaim, the son of Acitho, the son of Eliu, the son of Eliab, the son of Nathanael, the son of Samael, the son of Salasadal, the son of Israel. + +And Manasses was her husband, of her tribe and kindred, who died in the barley harvest. + +For as he stood overseeing them that bound sheaves in the field, the heat came upon his head, and he fell on his bed, and died in the city of Bethulia: and they buried him with his fathers in the field between Dothaim and Balamo. + +So Judith was a widow in her house three years and four months. + +And she made her a tent upon the top of her house, and put on sackcloth upon her loins and ware her widow's apparel. + +And she fasted all the days of her widowhood, save the eves of the sabbaths, and the sabbaths, and the eves of the new moons, and the new moons and the feasts and solemn days of the house of Israel. + +She was also of a goodly countenance, and very beautiful to behold: and her husband Manasses had left her gold, and silver, and menservants and maidservants, and cattle, and lands; and she remained upon them. + +And there was none that gave her an ill word; for she feared God greatly. + +Now when she heard the evil words of the people against the governor, that they fainted for lack of water; for Judith had heard all the words that Ozias had spoken to them, and that he had sworn to deliver the city to the Assyrians after five days; + +Then she sent her waitingwoman, that had the government of all things that she had, to call Ozias and Chabris and Charmis, the ancients of the city. + +And they came to her, and she said to them, Hear me now, O you⌃ governors of the inhabitants of Bethulia: for your words that you⌃ have spoken before the people this day are not right, touching this oath which you⌃ made and pronounced between God and you, and have promised to deliver the city to our enemies, unless within these days the Lord turn to help you. + +And now who are you⌃ that have tempted God this day, and stand instead of God among the children of men? + +And now try the Lord Almighty, but you⌃ shall never know any thing. + +For you⌃ can’t find the depth of the heart of man, neither can you⌃ perceive the things that he thinks: then how can you⌃ search out God, that has made all these things, and know his mind, or comprehend his purpose? Nay, my brethren, provoke not the Lord our God to anger. + +For if he will not help us within these five days, he has power to defend us when he will, even every day, or to destroy us before our enemies. + +Do not bind the counsels of the Lord our God: for God is not as man, that he may be threatened; neither is he as the son of man, that he should be wavering. + +Therefore let us wait for salvation of him, and call upon him to help us, and he will hear our voice, if it please him. + +For there arose none in our age, neither is there any now in these days neither tribe, nor family, nor people, nor city among us, which worship gods made with hands, as has been aforetime. + +For the which cause our fathers were given to the sword, and for a spoil, and had a great fall before our enemies. + +But we know none other god, therefore we trust that he will not dispise us, nor any of our nation. + +For if we be taken so, all Judea shall lie waste, and our sanctuary shall be spoiled; and he will require the profanation thereof at our mouth. + +And the slaughter of our brethren, and the captivity of the country, and the desolation of our inheritance, will he turn upon our heads among the Gentiles, wherever we shall be in bondage; and we shall be an offense and a reproach to all them that possess us. + +For our servitude shall not be directed to favor: but the Lord our God shall turn it to dishonor. + +Now therefore, O brethren, let us show an example to our brethren, because their hearts depend upon us, and the sanctuary, and the house, and the altar, rest upon us. + +Moreover let us give thanks to the Lord our God, which tries us, even as he did our fathers. + +Remember what things he did to Abraham, and how he tried Isaac, and what happened to Jacob in Mesopotamia of Syria, when he kept the sheep of Laban his mother's brother. + +For he has not tried us in the fire, as he did them, for the examination of their hearts, neither has he taken vengeance on us: but the Lord does scourge them that come near to him, to admonish them. + +Then said Ozias to her, All that you have spoken have you spoken with a good heart, and there is none that may gainsay your words. + +For this is not the first day wherein your wisdom is manifested; but from the beginning of your days all the people have known your understanding, because the disposition of your heart is good. + +But the people were very thirsty, and compelled us to do to them as we have spoken, and to bring an oath upon ourselves, which we will not break. + +Therefore now pray you for us, because you are a godly woman, and the Lord will send us rain to fill our cisterns, and we shall faint no more. + +Then said Judith to them, Hear me, and I will do a thing, which shall go throughout all generations to the children of our nation. + +You⌃ shall stand this night in the gate, and I will go forth with my waitingwoman: and within the days that you⌃ have promised to deliver the city to our enemies the Lord will visit Israel by my hand. + +But enquire not you⌃ of my act: for I will not declare it to you, till the things be finished that I do. + +Then said Ozias and the princes to her, Go in peace, and the Lord God be before you, to take vengeance on our enemies. + +So they returned from the tent, and went to their wards. + +

+ + +

Judith fell upon her face, and put ashes upon her head, and uncovered the sackcloth wherewith she was clothed; and about the time that the incense of that evening was offered in Jerusalem in the house of the Lord Judith cried with a loud voice, and said, + +O Lord God of my father Simeon, to whom you gave a sword to take vengeance of the strangers, who loosened the girdle of a maid to defile her, and revealed the thigh to her shame, and polluted her virginity to her reproach; for you said, It shall not be so; and yet they did so: + +Therefore you gave their rulers to be slain, so that they dyed their bed in blood, being deceived, and struck the servants with their lords, and the lords upon their thrones; + +And have given their wives for a prey, and their daughters to be captives, and all their spoils to be divided among your dear children; which were moved with your zeal, and abhorred the pollution of their blood, and called upon you for aid: O God, O my God, hear me also a widow. + +For you have wrought not only those things, but also the things which fell out before, and which ensued after; you have thought upon the things which are now, and which are to come. + +Yes, what things you did determine were ready at hand, and said, Behold, we are here: for all your ways are prepared, and your judgments are in your foreknowledge. + +For, behold, the Assyrians are multiplied in their power; they are exalted with horse and man; they glory in the strength of their footmen; they trust in shield, and spear, and bow, and sling; and know not that you are the Lord that break the battles: the Lord is your name. + +Throw down their strength in your power, and bring down their force in your wrath: for they have purposed to defile your sanctuary, and to pollute the tabernacle where your glorious name rests and to cast down with sword the horn of your altar. + +Behold their pride, and send your wrath upon their heads: give into my hand, which am a widow, the power that I have conceived. + +Strike by the deceit of my lips the servant with the prince, and the prince with the servant: break down their stateliness by the hand of a woman. + +For your power stands not in multitude nor your might in strong men: for you are a God of the afflicted, an helper of the oppressed, an upholder of the weak, a protector of the forlorn, a savior of them that are without hope. + +I pray you, I pray you, O God of my father, and God of the inheritance of Israel, Lord of the heavens and earth, Creator of the waters, king of every creature, hear you my prayer: + +And make my speech and deceit to be their wound and stripe, who have purposed cruel things against your covenant, and your hallowed house, and against the top of Sion, and against the house of the possession of your children. + +And make every nation and tribe to acknowledge that you are the God of all power and might, and that there is none other that protects the people of Israel but you. + +

+ + +

Now after that she had ceased to cry to the God of Israel, and bad made an end of all these words. + +She rose where she had fallen down, and called her maid, and went down into the house in the which she abode in the sabbath days, and in her feast days, + +And pulled off the sackcloth which she had on, and put off the garments of her widowhood, and washed her body all over with water, and anointed herself with precious ointment, and braided the hair of her head, and put on a tire upon it, and put on her garments of gladness, wherewith she was clad during the life of Manasses her husband. + +And she took sandals upon her feet, and put about her her bracelets, and her chains, and her rings, and her earrings, and all her ornaments, and decked herself bravely, to allure the eyes of all men that should see her. + +Then she gave her maid a bottle of wine, and a cruse of oil, and filled a bag with parched corn, and lumps of figs, and with fine bread; so she folded all these things together, and laid them upon her. + +Thus they went forth to the gate of the city of Bethulia, and found standing there Ozias and the ancients of the city, Chabris and Charmis. + +And when they saw her, that her countenance was altered, and her apparel was changed, they wondered at her beauty very greatly, and said to her. + +The God, the God of our fathers give you favor, and accomplish your enterprizes to the glory of the children of Israel, and to the exaltation of Jerusalem. Then they worshipped God. + +And she said to them, Command the gates of the city to be opened to me, that I may go forth to accomplish the things whereof you⌃ have spoken with me. So they commanded the young men to open to her, as she had spoken. + +And when they had done so, Judith went out, she, and her maid with her; and the men of the city looked after her, until she was gone down the mountain, and till she had passed the valley, and could see her no more. + +Thus they went straight forth in the valley: and the first watch of the Assyrians met her, + +And took her, and asked her, Of what people are you? and whence come you? and whither go you? And she said, I am a woman of the Hebrews, and am fled from them: for they shall be given you to be consumed: + +And I am coming before Holofernes the chief captain of your army, to declare words of truth; and I will show him a way, whereby he shall go, and win all the hill country, without losing the body or life of any one of his men. + +Now when the men heard her words, and saw her countenance, they wondered greatly at her beauty, and said to her, + +You have saved your life, in that you have hasted to come down to the presence of our lord: now therefore come to his tent, and some of us shall conduct you, until they have delivered you to his hands. + +And when you stand before him, be not afraid in your heart, but show to him according to your word; and he will entreat you well. + +Then they chose out of them one hundred men to accompany her and her maid; and they brought her to the tent of Holofernes. + +Then was there a concourse throughout all the camp: for her coming was noised among the tents, and they came about her, as she stood without the tent of Holofernes, till they told him of her. + +And they wondered at her beauty, and admired the children of Israel because of her, and every one said to his neighbor, Who would despise this people, that have among them such women? surely it is not good that one man of them be left who being let go might deceive the whole earth. + +And they that lay near Holofernes went out, and all his servants and they brought her into the tent. + +Now Holofernes rested upon his bed under a canopy, which was woven with purple, and gold, and emeralds, and precious stones. + +So they showed him of her; and he came out before his tent with silver lamps going before him. + +And when Judith was come before him and his servants they all marveled at the beauty of her countenance; and she fell down upon her face, and did reverence to him: and his servants took her up. + +

+ + +

Then said Holofernes to her, Woman, be of good comfort, fear not in your heart: for I never hurt any that was willing to serve Nabuchodonosor, the king of all the earth. + +Now therefore, if your people that dwells in the mountains had not set light by me, I would not have lifted up my spear against them: but they have done these things to themselves. + +But now tell me therefore you are fled from them, and are come to us: for you are come for safeguard; be of good comfort, you shall live this night, and hereafter: + +For none shall hurt you, but entreat you well, as they do the servants of king Nabuchodonosor my lord. + +Then Judith said to him, Receive the words of your servant, and suffer your handmaid to speak in your presence, and I will declare no lie to my lord this night. + +And if you will follow the words of your handmaid, God will bring the thing perfectly to pass by you; and my lord shall not fail of his purposes. + +As Nabuchodonosor king of all the earth lives, and as his power lives, who has sent you for the upholding of every living thing: for not only men shall serve him by you, but also the beasts of the field, and the cattle, and the fowls of the air, shall live by your power under Nabuchodonosor and all his house. + +For we have heard of your wisdom and your policies, and it is reported in all the earth, that you only are excellent in all the kingdom, and mighty in knowledge, and wonderful in feats of war. + +Now as concerning the matter, which Achior did speak in your council, we have heard his words; for the men of Bethulia saved him, and he declared to them all that he had spoken to you. + +Therefore, O lord and governor, reject not his word; but lay it up in your heart, for it is true: for our nation shall not be punished, neither can sword prevail against them, except they sin against their God. + +And now, that my lord be not defeated and frustrate of his purpose, even death is now fallen upon them, and their sin has overtaken them, wherewith they will provoke their God to anger whenever they shall do that which is not fit to be done: + +For their food fail them, and all their water is scant, and they have determined to lay hands upon their cattle, and purposed to consume all those things, that God has forbidden them to eat by his laws: + +And are resolved to spend the first fruits of the the tenths of wine and oil, which they had sanctified, and reserved for the priests that serve in Jerusalem before the face of our God; the which things it is not lawful for any of the people so much as to touch with their hands. + +For they have sent some to Jerusalem, because they also that dwell there have done the like, to bring them a licence from the senate. + +Now when they shall bring them word, they will forthwith do it, and they shall be given to you to be destroyed the same day. + +Therefore I your handmaid, knowing all this, am fled from their presence; and God has sent me to work things with you, whereat all the earth shall be astonished, and whoever shall hear it. + +For your servant is religious, and serves the God of heaven day and night: now therefore, my lord, I will remain with you, and your servant will go out by night into the valley, and I will pray to God, and he will tell me when they have committed their sins: + +And I will come and show it to you: then you shall go forth with all your army, and there shall be none of them that shall resist you. + +And I will lead you through the midst of Judea, until you come before Jerusalem; and I will set your throne in the midst thereof; and you shall drive them as sheep that have no shepherd, and a dog shall not so much as open his mouth at you: for these things were told me according to my foreknowledge, and they were declared to me, and I am sent to tell you. + +Then her words pleased Holofernes and all his servants; and they marveled at her wisdom, and said, + +There is not such a woman from one end of the earth to the other, both for beauty of face, and wisdom of words. + +Likewise Holofernes said to her. God has done well to send you before the people, that strength might be in our hands and destruction upon them that lightly regard my lord. + +And now you are both beautiful in your countenance, and witty in your words: surely if you do as you have spoken your God shall be my God, and you shall dwell in the house of king Nabuchodonosor, and shall be renowned through the whole earth. + +

+ + +

Then he commanded to bring her in where his plate was set; and bade that they should prepare for her of his own meats, and that she should drink of his own wine. + +And Judith said, I will not eat thereof, lest there be an offense: but provision shall be made for me of the things that I have brought. + +Then Holofernes said to her, If your provision should fail, how should we give you the like? for there be none with us of your nation. + +Then said Judith to him As your soul lives, my lord, your handmaid shall not spend those things that I have, before the Lord work by my hand the things that he has determined. + +Then the servants of Holofernes brought her into the tent, and she slept till midnight, and she arose when it was toward the morning watch, + +And sent to Holofernes, saving, Let my lord now command that your handmaid may go forth to prayer. + +Then Holofernes commanded his guard that they should not stay her: thus she abode in the camp three days, and went out in the night into the valley of Bethulia, and washed herself in a fountain of water by the camp. + +And when she came out, she implored the Lord God of Israel to direct her way to the raising up of the children of her people. + +So she came in clean, and remained in the tent, until she did eat her meat at evening. + +And in the fourth day Holofernes made a feast to his own servants only, and called none of the officers to the banquet. + +Then said he to Bagoas the eunuch, who had charge over all that he had, Go now, and persuade this Hebrew woman which is with you, that she come to us, and eat and drink with us. + +For, behold, it will be a shame for our person, if we shall let such a woman go, not having had her company; for if we draw her not to us, she will laugh us to scorn. + +Then went Bagoas from the presence of Holofernes, and came to her, and he said, Let not this fair damsel fear to come to my lord, and to be honored in his presence, and drink wine, and be merry with us and be made this day as one of the daughters of the Assyrians, which serve in the house of Nabuchodonosor. + +Then said Judith to him, Who am I now, that I should gainsay my lord? surely whatever pleases him I will do speedily, and it shall be my joy to the day of my death. + +So she arose, and decked herself with her apparel and all her woman's attire, and her maid went and laid soft skins on the ground for her over against Holofernes, which she had received of Bagoas for her daily use, that she might sit and eat upon them. + +Now when Judith came in and sat down, Holofernes his heart was ravished with her, and his mind was moved, and he desired greatly her company; for he waited a time to deceive her, from the day that he had seen her. + +Then said Holofernes to her, Drink now, and be merry with us. + +So Judith said, I will drink now, my lord, because my life is magnified in me this day more than all the days since I was born. + +Then she took and ate and drank before him what her maid had prepared. + +And Holofernes took great delight in her, and drank more wine than he had drunk at any time in one day since he was born. + +

+ + +

Now when the evening was come, his servants made haste to depart, and Bagoas shut his tent without, and dismissed the waiters from the presence of his lord; and they went to their beds: for they were all weary, because the feast had been long. + +And Judith was left along in the tent, and Holofernes lying along upon his bed: for he was filled with wine. + +Now Judith had commanded her maid to stand without her bedchamber, and to wait for her. coming forth, as she did daily: for she said she would go forth to her prayers, and she spoke to Bagoas according to the same purpose. + +So all went forth and none was left in the bedchamber, neither little nor great. Then Judith, standing by his bed, said in her heart, O Lord God of all power, look at this present upon the works of my hands for the exaltation of Jerusalem. + +For now is the time to help your inheritance, and to execute your enterprizes to the destruction of the enemies which are risen against us. + +Then she came to the pillar of the bed, which was at Holofernes' head, and took down his fauchion from thence, + +And approached to his bed, and took hold of the hair of his head, and said, Strengthen me, O Lord God of Israel, this day. + +And she struck twice upon his neck with all her might, and she took away his head from him. + +And tumbled his body down from the bed, and pulled down the canopy from the pillars; and anon after she went forth, and gave Holofernes his head to her maid; + +And she put it in her bag of meat: so they twain went together according to their custom to prayer: and when they passed the camp, they compassed the valley, and went up the mountain of Bethulia, and came to the gates thereof. + +Then said Judith afar off, to the watchmen at the gate, Open, open now the gate: God, even our God, is with us, to show his power yet in Jerusalem, and his forces against the enemy, as he has even done this day. + +Now when the men of her city heard her voice, they made haste to go down to the gate of their city, and they called the elders of the city. + +And then they ran all together, both small and great, for it was strange to them that she was come: so they opened the gate, and received them, and made a fire for a light, and stood round about them. + +Then she said to them with a loud voice, Praise, praise God, praise God, I say, for he has not taken away his mercy from the house of Israel, but has destroyed our enemies by my hands this night. + +So she took the head out of the bag, and showed it, and said to them, behold the head of Holofernes, the chief captain of the army of Assur, and behold the canopy, wherein he did lie in his drunkenness; and the Lord has struck him by the hand of a woman. + +As the Lord lives, who has kept me in my way that I went, my countenance has deceived him to his destruction, and yet has he not committed sin with me, to defile and shame me. + +Then all the people were wonderfully astonished, and bowed themselves and worshipped God, and said with one accord, Blessed be you, O our God, which have this day brought to nothing the enemies of your people. + +Then said Ozias to her, O daughter, blessed are you of the most high God above all the women upon the earth; and blessed be the Lord God, which has created the heavens and the earth, which has directed you to the cutting off of the head of the chief of our enemies. + +For this your confidence shall not depart from the heart of men, which remember the power of God for ever. + +And God turn these things to you for a perpetual praise, to visit you in good things because you have not spared your life for the affliction of our nation, but have revenged our ruin, walking a straight way before our God. And all the people said; So be it, so be it. + +

+ + +

Then said Judith to them, Hear me now, my brethren, and take this head, and hang it upon the highest place of your walls. + +And so soon as the morning shall appear, and the sun shall come forth upon the earth, take you⌃ every one his weapons, and go forth every valiant man out of the city, and set you⌃ a captain over them, as though you⌃ would go down into the field toward the watch of the Assyrians; but go not down. + +Then they shall take their armor, and shall go into their camp, and raise up the captains of the army of Assur, and shall run to the tent of Holofernes, but shall not find him: then fear shall fall upon them, and they shall flee before your face. + +So you⌃, and all that inhabit the coast of Israel, shall pursue them, and overthrow them as they go. + +But before you⌃ do these things, call me Achior the Ammonite, that he may see and know him that despised the house of Israel, and that sent him to us as it were to his death. + +Then they called Achior out of the house of Ozias; and when he was come, and saw the head of Holofernes in a man's hand in the assembly of the people, he fell down on his face, and his spirit failed. + +But when they had recovered him, he fell at Judith's feet, and reverenced her, and said, Blessed are you in all the tabernacles of Juda, and in all nations, which hearing your name shall be astonished. + +Now therefore tell me all the things that you have done in these days. Then Judith declared to him in the midst of the people all that she had done, from the day that she went forth until that hour she spoke to them. + +And when she had left off speaking, the people shouted with a loud voice, and made a joyful noise in their city. + +And when Achior had seen all that the God of Israel had done, he believed in God greatly, and circumcised the flesh of his foreskin, and was joined to the house of Israel to this day. + +And as soon as the morning arose, they hanged the head of Holofernes upon the wall, and every man took his weapons, and they went forth by bands to the straits of the mountain. + +But when the Assyrians saw them, they sent to their leaders, which came to their captains and tribunes, and to every one of their rulers. + +So they came to Holofernes' tent, and said to him that had the charge of all his things, Waken now our lord: for the slaves have been bold to come down against us to battle, that they may be utterly destroyed. + +Then went in Bagoas, and knocked at the door of the tent; for he thought that he had slept with Judith. + +But because none answered, he opened it, and went into the bedchamber, and found him cast upon the floor dead, and his head was taken from him. + +Therefore he cried with a loud voice, with weeping, and sighing, and a mighty cry, and tore his garments. + +After he went into the tent where Judith lodged: and when he found her not, he leaped out to the people, and cried, + +These slaves have dealt treacherously; one woman of the Hebrews has brought shame upon the house of king Nabuchodonosor: for, behold, Holofernes lies upon the ground without a head. + +When the captains of the Assyrians' army heard these words, they tore their coats and their minds were wonderfully troubled, and there was a cry and a very great noise throughout the camp. + +

+ + +

And when they that were in the tents heard, they were astonished at the thing that was done. + +And fear and trembling fell upon them, so that there was no man that dared abide in the sight of his neighbor, but rushing out all together, they fled into every way of the plain, and of the hill country. + +They also that had camped in the mountains round about Bethulia fled away. Then the children of Israel, every one that was a warrior among them, rushed out upon them. + +Then sent Ozias to Betomasthem, and to Bebai, and Chobai, and Cola and to all the coasts of Israel, such as should tell the things that were done, and that all should rush forth upon their enemies to destroy them. + +Now when the children of Israel heard it, they all fell upon them with one consent, and killed them to Chobai: likewise also they that came from Jerusalem, and from all the hill country, (for men had told them what things were done in the camp of their enemies) and they that were in Galaad, and in Galilee, chased them with a great slaughter, until they were past Damascus and the borders thereof. + +And the residue that lived at Bethulia, fell upon the camp of Assur, and spoiled them, and were greatly enriched. + +And the children of Israel that returned from the slaughter had that which remained; and the villages and the cities, that were in the mountains and in the plain, got many spoils: for the multitude was very great. + +Then Joacim the high priest, and the ancients of the children of Israel that lived in Jerusalem, came to behold the good things that God had showed to Israel, and to see Judith, and to salute her. + +And when they came to her, they blessed her with one accord, and said to her, You are the exaltation of Jerusalem, you are the great glory of Israel, you are the great rejoicing of our nation: + +You have done all these things by your hand: you have done much good to Israel, and God is pleased therewith: blessed be you of the Almighty Lord for evermore. And all the people said, So be it. + +And the people spoiled the camp the space of thirty days: and they gave to Judith Holofernes his tent, and all his plate, and beds, and vessels, and all his stuff: and she took it and laid it on her mule; and made ready her carts, and laid them thereon. + +Then all the women of Israel ran together to see her, and blessed her, and made a dance among them for her: and she took branches in her hand, and gave also to the women that were with her. + +And they put a garland of olive upon her and her maid that was with her, and she went before all the people in the dance, leading all the women: and all the men of Israel followed in their armor with garlands, and with songs in their mouths. + +

+ + +

Then Judith began to sing this thanksgiving in all Israel, and all the people sang after her this song of praise. + +And Judith said, Begin to my God with timbrels, sing to my Lord with cymbals: tune to him a new psalm: exalt him, and call upon his name. + +For God breaks the battles: for among the camps in the midst of the people he has delivered me out of the hands of them that persecuted me. + +Assur came out of the mountains from the north, he came with ten thousands of his army, the multitude whereof stopped the torrents, and their horsemen have covered the hills. + +He bragged that he would burn up my borders, and kill my young men with the sword, and dash the sucking children against the ground, and make my infants as a prey, and my virgins as a spoil. + +But the Almighty Lord has disappointed them by the hand of a woman. + +For the mighty one did not fall by the young men, neither did the sons of the Titans strike him, nor high giants set upon him: but Judith the daughter of Merari weakened him with the beauty of her countenance. + +For she put off the garment of her widowhood for the exaltation of those that were oppressed in Israel, and anointed her face with ointment, and bound her hair in a tire, and took a linen garment to deceive him. + +Her sandals ravished his eyes, her beauty took his mind prisoner, and the fauchion passed through his neck. + +The Persians quaked at her boldness, and the Medes were daunted at her hardiness. + +Then my afflicted shouted for joy, and my weak ones cried aloud; but they were astonished: these lifted up their voices, but they were overthrown. + +The sons of the damsels have pierced them through, and wounded them as fugatives' children: they perished by the battle of the Lord. + +I will sing to the Lord a new song: O Lord, you are great and glorious, wonderful in strength, and invincible. + +Let all creatures serve you: for you spoke, and they were made, you did send forth your spirit, and it created them, and there is none that can resist your voice. + +For the mountains shall be moved from their foundations with the waters, the rocks shall melt as wax at your presence: yet you are merciful to them that fear you. + +For all sacrifice is too little for a sweet savor to you, and all the fat is not sufficient for your burnt offering: but he that fears the Lord is great at all times. + +Woe to the nations that rise up against my kindred! the Lord Almighty will take vengeance of them in the day of judgment, in putting fire and worms in their flesh; and they shall feel them, and weep for ever. + +Now as soon as they entered into Jerusalem, they worshipped the Lord; and as soon as the people were purified, they offered their burnt offerings, and their free offerings, and their gifts. + +Judith also dedicated all the stuff of Holofernes, which the people had given her, and gave the canopy, which she had taken out of his bedchamber, for a gift to the Lord. + +So the people continued feasting in Jerusalem before the sanctuary for the space of three months and Judith remained with them. + +After this time every one returned to his own inheritance, and Judith went to Bethulia, and remained in her own possession, and was in her time honorable in all the country. + +And many desired her, but none knew her all the days of her life, after that Manasses her husband was dead, and was gathered to his people. + +But she increased more and more in honor, and waxed old in her husband's house, being one hundred and five years old, and made her maid free; so she died in Bethulia: and they buried her in the cave of her husband Manasses. + +And the house of Israel lamented her seven days: and before she died, she did distribute her goods to all them that were nearest of kindred to Manasses her husband, and to them that were the nearest of her kindred. + +And there was none that made the children of Israel any more afraid in the days of Judith, nor a long time after her death. + +

+
+ +Wisdom +WISDOM +Wisdom +WIS +

WISDOM +

+ + +

Love righteousness, you⌃ that be judges of the earth: think of the Lord with a good (heart,) and in simplicity of heart seek him. + +For he will be found of them that tempt him not; and shows himself to such as do not distrust him. + +For froward thoughts separate from God: and his power, when it is tried, reproves the unwise. + +For into a malicious soul wisdom shall not enter; nor dwell in the body that is subject to sin. + +For the holy spirit of discipline will flee deceit, and remove from thoughts that are without understanding, and will not abide when unrighteousness comes in. + +For wisdom is a loving spirit; and will not acquit a blasphemer of his words: for God is witness of his reins, and a true beholder of his heart, and a hearer of his tongue. + +For the Spirit of the Lord fills the world: and that which contains all things has knowledge of the voice. + +Therefore he that speaks unrighteous things can’t be hid: neither shall vengeance, when it punishes, pass by him. + +For inquisition shall be made into the counsels of the ungodly: and the sound of his words shall come to the Lord for the manifestation of his wicked deeds. + +For the ear of jealousy hears all things: and the noise of murmurings is not hid. + +Therefore beware of murmuring, which is unprofitable; and refrain your tongue from backbiting: for there is no word so secret, that shall go for nothing: and the mouth that belies slays the soul. + +Seek not death in the error of your life: and pull not upon yourselves destruction with the works of your hands. + +For God made not death: neither has he pleasure in the destruction of the living. + +For he created all things, that they might have their being: and the generations of the world were healthful; and there is no poison of destruction in them, nor the kingdom of death upon the earth: + +(For righteousness is immortal:) + +But ungodly men with their works and words called it to them: for when they thought to have it their friend, they consumed to nothing, and made a covenant with it, because they are worthy to take part with it. + +

+ + +

For the ungodly said, reasoning with themselves, but not aright, Our life is short and tedious, and in the death of a man there is no remedy: neither was there any man known to have returned from the grave. + +For we are born at all adventure: and we shall be hereafter as though we had never been: for the breath in our nostrils is as smoke, and a little spark in the moving of our heart: + +Which being extinguished, our body shall be turned into ashes, and our spirit shall vanish as the soft air, + +And our name shall be forgotten in time, and no man shall have our works in remembrance, and our life shall pass away as the trace of a cloud, and shall be dispersed as a mist, that is driven away with the beams of the sun, and overcome with the heat thereof. + +For our time is a very shadow that passes away; and after our end there is no returning: for it is fast sealed, so that no man comes again. + +Come on therefore, let us enjoy the good things that are present: and let us speedily use the creatures like as in youth. + +Let us fill ourselves with costly wine and ointments: and let no flower of the spring pass by us: + +Let us crown ourselves with rosebuds, before they be withered: + +Let none of us go without his part of our voluptuousness: let us leave tokens of our joyfulness in every place: for this is our portion, and our lot is this. + +Let us oppress the poor righteous man, let us not spare the widow, nor reverence the ancient gray hairs of the aged. + +Let our strength be the law of justice: for that which is feeble is found to be nothing worth. + +Therefore let us lie in wait for the righteous; because he is not for our turn, and he is clean contrary to our doings: he upbraids us with our offending the law, and objects to our infamy the transgressings of our education. + +He professes to have the knowledge of God: and he calls himself the child of the Lord. + +He was made to reprove our thoughts. + +He is grievous to us even to behold: for his life is not like other men's, his ways are of another fashion. + +We are esteemed of him as counterfeits: he abstains from our ways as from filthiness: he pronounces the end of the just to be blessed, and makes his boast that God is his father. + +Let us see if his words be true: and let us prove what shall happen in the end of him. + +For if the just man be the son of God, he will help him, and deliver him from the hand of his enemies. + +Let us examine him with despitefulness and torture, that we may know his meekness, and prove his patience. + +Let us condemn him with a shameful death: for by his own saying he shall be respected. + +Such things they did imagine, and were deceived: for their own wickedness has blinded them. + +As for the mysteries of God, they knew them not: neither hoped they for the wages of righteousness, nor discerned a reward for blameless souls. + +For God created man to be immortal, and made him to be an image of his own eternity. + +Nevertheless through envy of the devil came death into the world: and they that do hold of his side do find it. + +

+ + +

But the souls of the righteous are in the hand of God, and there shall no torment touch them. + +In the sight of the unwise they seemed to die: and their departure is taken for misery, + +And their going from us to be utter destruction: but they are in peace. + +For though they be punished in the sight of men, yet is their hope full of immortality. + +And having been a little chastised, they shall be greatly rewarded: for God proved them, and found them worthy for himself. + +As gold in the furnace has he tried them, and received them as a burnt offering. + +And in the time of their visitation they shall shine, and run to and fro like sparks among the stubble. + +They shall judge the nations, and have dominion over the people, and their Lord shall reign for ever. + +They that put their trust in him shall understand the truth: and such as be faithful in love shall abide with him: for grace and mercy is to his saints, and he has care for his elect. + +But the ungodly shall be punished according to their own imaginations, which have neglected the righteous, and forsaken the Lord. + +For whoso despises wisdom and nurture, he is miserable, and their hope is vain, their labors unfruitful, and their works unprofitable: + +Their wives are foolish, and their children wicked: + +Their offspring is cursed. Therefore blessed is the barren that is undefiled, which has not known the sinful bed: she shall have fruit in the visitation of souls. + +And blessed is the eunuch, which with his hands has wrought no iniquity, nor imagined wicked things against God: for to him shall be given the special gift of faith, and an inheritance in the temple of the Lord more acceptable to his mind. + +For glorious is the fruit of good labors: and the root of wisdom shall never fall away. + +As for the children of adulterers, they shall not come to their perfection, and the seed of an unrighteous bed shall be rooted out. + +For though they live long, yet shall they be nothing regarded: and their last age shall be without honor. + +Or, if they die quickly, they have no hope, neither comfort in the day of trial. + +For horrible is the end of the unrighteous generation. + +

+ + +

Better it is to have no children, and to have virtue: for the memorial thereof is immortal: because it is known with God, and with men. + +When it is present, men take example at it; and when it is gone, they desire it: it wears a crown, and triumphs for ever, having gotten the victory, striving for undefiled rewards. + +But the multiplying brood of the ungodly shall not thrive, nor take deep rooting from bastard slips, nor lay any fast foundation. + +For though they flourish in branches for a time; yet standing not last, they shall be shaken with the wind, and through the force of winds they shall be rooted out. + +The imperfect branches shall be broken off, their fruit unprofitable, not ripe to eat, yes, meet for nothing. + +For children begotten of unlawful beds are witnesses of wickedness against their parents in their trial. + +But though the righteous be prevented with death, yet shall he be in rest. + +For honorable age is not that which stands in length of time, nor that is measured by number of years. + +But wisdom is the gray hair to men, and an unspotted life is old age. + +He pleased God, and was beloved of him: so that living among sinners he was translated. + +Yes speedily was he taken away, lest that wickedness should alter his understanding, or deceit decieve his soul. + +For the bewitching of naughtiness does obscure things that are honest; and the wandering of concupiscence does undermine the simple mind. + +He, being made perfect in a short time, fulfilled a long time: + +For his soul pleased the Lord: therefore hasted he to take him away from among the wicked. + +This the people saw, and understood it not, neither laid they up this in their minds, That his grace and mercy is with his saints, and that he has respect to his chosen. + +Thus the righteous that is dead shall condemn the ungodly which are living; and youth that is soon perfected the many years and old age of the unrighteous. + +For they shall see the end of the wise, and shall not understand what God in his counsel has decreed of him, and to what end the Lord has set him in safety. + +They shall see him, and despise him; but God shall laugh them to scorn: and they shall hereafter be a vile carcass, and a reproach among the dead for evermore. + +For he shall rend them, and cast them down headlong, that they shall be speechless; and he shall shake them from the foundation; and they shall be utterly laid waste, and be in sorrow; and their memorial shall perish. + +And when they cast up the accounts of their sins, they shall come with fear: and their own iniquities shall convince them to their face. + +

+ + +

Then shall the righteous man stand in great boldness before the face of such as have afflicted him, and made no account of his labors. + +When they see it, they shall be troubled with terrible fear, and shall be amazed at the strangeness of his salvation, so far beyond all that they looked for. + +And they repenting and groaning for anguish of spirit shall say within themselves, This was he, whom we had sometimes in derision, and a proverb of reproach: + +We fools accounted his life madness, and his end to be without honor: + +How is he numbered among the children of God, and his lot is among the saints! + +Therefore have we erred from the way of truth, and the light of righteousness has not shined to us, and the sun of righteousness rose not upon us. + +We wearied ourselves in the way of wickedness and destruction: yes, we have gone through deserts, where there lay no way: but as for the way of the Lord, we have not known it. + +What has pride profited us? or what good has riches with our vaunting brought us? + +All those things are passed away like a shadow, and as a post that hasted by; + +And as a ship that passes over the waves of the water, which when it is gone by, the trace thereof can’t be found, neither the pathway of the keel in the waves; + +Or as when a bird has flown through the air, there is no token of her way to be found, but the light air being beaten with the stroke of her wings and parted with the violent noise and motion of them, is passed through, and therein afterwards no sign where she went is to be found; + +Or like as when an arrow is shot at a mark, it parts the air, which immediately comes together again, so that a man can’t know where it went through: + +Even so we in like manner, as soon as we were born, began to draw to our end, and had no sign of virtue to show; but were consumed in our own wickedness. + +For the hope of the ungodly is like dust that is blown away with the wind; like a thin froth that is driven away with the storm; like as the smoke which is dispersed here and there with a tempest, and passes away as the remembrance of a guest that waits but a day. + +But the righteous live for evermore; their reward also is with the Lord, and the care of them is with the most High. + +Therefore shall they receive a glorious kingdom, and a beautiful crown from the Lord's hand: for with his right hand shall he cover them, and with his arm shall he protect them. + +He shall take to him his jealousy for complete armor, and make the creature his weapon for the revenge of his enemies. + +He shall put on righteousness as a breastplate, and true judgment instead of an helmet. + +He shall take holiness for an invincible shield. + +His severe wrath shall he sharpen for a sword, and the world shall fight with him against the unwise. + +Then shall the right aiming thunderbolts go abroad; and from the clouds, as from a well drawn bow, shall they fly to the mark. + +And hailstones full of wrath shall be cast as out of a stone bow, and the water of the sea shall rage against them, and the floods shall cruelly drown them. + +Yes, a mighty wind shall stand up against them, and like a storm shall blow them away: thus iniquity shall lay waste the whole earth, and ill dealing shall overthrow the thrones of the mighty. + +

+ + +

Hear therefore, O you⌃ kings, and understand; learn, you⌃ that be judges of the ends of the earth. + +Give ear, you⌃ that rule the people, and glory in the multitude of nations. + +For power is given you of the Lord, and sovereignty from the Highest, who shall try your works, and search out your counsels. + +Because, being ministers of his kingdom, you⌃ have not judged aright, nor kept the law, nor walked after the counsel of God; + +Horribly and speedily shall he come upon you: for a sharp judgment shall be to them that be in high places. + +For mercy will soon pardon the meanest: but mighty men shall be mightily tormented. + +For he which is Lord over all shall fear no man's person, neither shall he stand in awe of any man's greatness: for he has made the small and great, and careth for all alike. + +But a sore trial shall come upon the mighty. + +To you therefore, O kings, do I speak, that you⌃ may learn wisdom, and not fall away. + +For they that keep holiness holily shall be judged holy: and they that have learned such things shall find what to answer. + +Therefore set your affection upon my words; desire them, and you⌃ shall be instructed. + +Wisdom is glorious, and never fades away: yes, she is easily seen of them that love her, and found of such as seek her. + +She prevents them that desire her, in making herself first known to them. + +Whoso seeks her early shall have no great travail: for he shall find her sitting at his doors. + +To think therefore upon her is perfection of wisdom: and whoso watches for her shall quickly be without care. + +For she goes about seeking such as are worthy of her, shows herself favourably to them in the ways, and meets them in every thought. + +For the very true beginning of her is the desire of discipline; and the care of discipline is love; + +And love is the keeping of her laws; and the giving heed to her laws is the assurance of incorruption; + +And incorruption makes us near to God: + +Therefore the desire of wisdom brings to a kingdom. + +If your delight be then in thrones and sceptres, O you⌃ kings of the people, honor wisdom, that you⌃ may reign for evermore. + +As for wisdom, what she is, and how she came up, I will tell you, and will not hide mysteries from you: but will seek her out from the beginning of her nativity, and bring the knowledge of her into light, and will not pass over the truth. + +Neither will I go with consuming envy; for such a man shall have no fellowship with wisdom. + +But the multitude of the wise is the welfare of the world: and a wise king is the upholding of the people. + +Receive therefore instruction through my words, and it shall do you good. + +

+ + +

I myself also am a mortal man, like to all, and the offspring of him that was first made of the earth, + +And in my mother's womb was fashioned to be flesh in the time of ten months, being compacted in blood, of the seed of man, and the pleasure that came with sleep. + +And when I was born, I drew in the common air, and fell upon the earth, which is of like nature, and the first voice which I uttered was crying, as all others do. + +I was nursed in swaddling clothes, and that with cares. + +For there is no king that had any other beginning of birth. + +For all men have one entrance into life, and the like going out. + +Therefore I prayed, and understanding was given me: I called upon God, and the spirit of wisdom came to me. + +I preferred her before sceptres and thrones, and esteemed riches nothing in comparison of her. + +Neither compared I to her any precious stone, because all gold in respect of her is as a little sand, and silver shall be counted as clay before her. + +I loved her above health and beauty, and chose to have her instead of light: for the light that comes from her never goes out. + +All good things together came to me with her, and innumerable riches in her hands. + +And I rejoiced in them all, because wisdom goes before them: and I knew not that she was the mother of them. + +I learned diligently, and do communicate her liberally: I do not hide her riches. + +For she is a treasure to men that never fails: which they that use become the friends of God, being commended for the gifts that come from learning. + +God has granted me to speak as I would, and to conceive as is meet for the things that are given me: because it is he that leads to wisdom, and directs the wise. + +For in his hand are both we and our words; all wisdom also, and knowledge of workmanship. + +For he has given me certain knowledge of the things that are, namely, to know how the world was made, and the operation of the elements: + +The beginning, ending, and midst of the times: the alterations of the turning of the sun, and the change of seasons: + +The circuits of years, and the positions of stars: + +The natures of living creatures, and the furies of wild beasts: the violence of winds, and the reasonings of men: the diversities of plants and the virtues of roots: + +And all such things as are either secret or manifest, them I know. + +For wisdom, which is the worker of all things, taught me: for in her is an understanding spirit holy, one only, manifold, subtle, lively, clear, undefiled, plain, not subject to hurt, loving the thing that is good quick, which can’t be letted, ready to do good, + +Kind to man, steadfast, sure, free from care, having all power, overseeing all things, and going through all understanding, pure, and most subtle, spirits. + +For wisdom is more moving than any motion: she passes and goes through all things by reason of her pureness. + +For she is the breath of the power of God, and a pure influence flowing from the glory of the Almighty: therefore can no defiled thing fall into her. + +For she is the brightness of the everlasting light, the unspotted mirror of the power of God, and the image of his goodness. + +And being but one, she can do all things: and remaining in herself, she makes all things new: and in all ages entering into holy souls, she makes them friends of God, and prophets. + +For God loves none but him that dwells with wisdom. + +For she is more beautiful than the sun, and above all the order of stars: being compared with the light, she is found before it. + +For after this comes night: but vice shall not prevail against wisdom. + +

+ + +

+Wisdom reaches from one end to another mightily: and sweetly does she order all things. + +I loved her, and sought her out from my youth, I desired to make her my spouse, and I was a lover of her beauty. + +In that she is conversant with God, she magnifies her nobility: yes, the Lord of all things himself loved her. + +For she is privy to the mysteries of the knowledge of God, and a lover of his works. + +If riches be a possession to be desired in this life; what is richer than wisdom, that works all things? + +And if prudence work; who of all that are is a more cunning workman than she? + +And if a man love righteousness her labors are virtues: for she teaches temperance and prudence, justice and fortitude: which are such things, as men can have nothing more profitable in their life. + +If a man desire much experience, she knows things of old, and conjectures aright what is to come: she knows the subtilties of speeches, and can expound dark sentences: she foresees signs and wonders, and the events of seasons and times. + +Therefore I purposed to take her to me to live with me, knowing that she would be a counsellor of good things, and a comfort in cares and grief. + +For her sake I shall have estimation among the multitude, and honor with the elders, though I be young. + +I shall be found of a quick conceit in judgment, and shall be admired in the sight of great men. + +When I hold my tongue, they shall bide my leisure, and when I speak, they shall give good ear to me: if I talk much, they shall lay their hands upon their mouth. + +Moreover by the means of her I shall obtain immortality, and leave behind me an everlasting memorial to them that come after me. + +I shall set the people in order, and the nations shall be subject to me. + +Horrible tyrants shall be afraid, when they do but hear of me; I shall be found good among the multitude, and valiant in war. + +After I am come into my house, I will repose myself with her: for her conversation has no bitterness; and to live with her has no sorrow, but mirth and joy. + +Now when I considered these things in myself, and pondered them in my heart, how that to be allied to wisdom is immortality; + +And great pleasure it is to have her friendship; and in the works of her hands are infinite riches; and in the exercise of conference with her, prudence; and in talking with her, a good report; I went about seeking how to take her to me. + +For I was a witty child, and had a good spirit. + +Yes rather, being good, I came into a body undefiled. + +Nevertheless, when I perceived that I could not otherwise obtain her, except God gave her me; and that was a point of wisdom also to know whose gift she was; I prayed to the Lord, and implored him, and with my whole heart I said, + +

+ + +

O God of my fathers, and Lord of mercy, who have made all things with your word, + +And ordained man through your wisdom, that he should have dominion over the creatures which you have made, + +And order the world according to equity and righteousness, and execute judgment with an upright heart: + +Give me wisdom, that sits by your throne; and reject me not from among your children: + +For I your servant and son of your handmaid am a feeble person, and of a short time, and too young for the understanding of judgment and laws. + +For though a man be never so perfect among the children of men, yet if your wisdom be not with him, he shall be nothing regarded. + +You have chosen me to be a king of your people, and a judge of your sons and daughters: + +You have commanded me to build a temple upon your holy mount, and an altar in the city wherein you dwell, a resemblance of the holy tabernacle, which you have prepared from the beginning. + +And wisdom was with you: which knows your works, and was present when you made the world, and knew what was acceptable in your sight, and right in your commandments. + +O send her out of your holy heavens, and from the throne of your glory, that being present she may labor with me, that I may know what is pleasing to you. + +For she knows and understands all things, and she shall lead me soberly in my doings, and preserve me in her power. + +So shall my works be acceptable, and then shall I judge your people righteously, and be worthy to sit in my father's seat. + +For what man is he that can know the counsel of God? or who can think what the will of the Lord is? + +For the thoughts of mortal men are miserable, and our devices are but uncertain. + +For the corruptible body presses down the soul, and the earthy tabernacle weighs down the mind that muses upon many things. + +And hardly do we guess aright at things that are upon earth, and with labor do we find the things that are before us: but the things that are in heaven who has searched out? + +And your counsel who has known, except you give wisdom, and send your Holy Spirit from above? + +For so the ways of them which lived on the earth were reformed, and men were taught the things that are pleasing to you, and were saved through wisdom. + +

+ + +

She preserved the first formed father of the world, that was created alone, and brought him out of his fall, + +And gave him power to rule all things. + +But when the unrighteous went away from her in his anger, he perished also in the fury wherewith he murdered his brother. + +For whose cause the earth being drowned with the flood, wisdom again preserved it, and directed the course of the righteous in a piece of wood of small value. + +Moreover, the nations in their wicked conspiracy being confounded, she found out the righteous, and preserved him blameless to God, and kept him strong against his tender compassion toward his son. + +When the ungodly perished, she delivered the righteous man, who fled from the fire which fell down upon the five cities. + +Of whose wickedness even to this day the waste land that smokes is a testimony, and plants bearing fruit that never come to ripeness: and a standing pillar of salt is a monument of an unbelieving soul. + +For regarding not wisdom, they got not only this hurt, that they knew not the things which were good; but also left behind them to the world a memorial of their foolishness: so that in the things wherein they offended they could not so much as be hid. + +Rut wisdom delivered from pain those that attended upon her. + +When the righteous fled from his brother's wrath she guided him in right paths, showed him the kingdom of God, and gave him knowledge of holy things, made him rich in his travels, and multiplied the fruit of his labors. + +In the covetousness of such as oppressed him she stood by him, and made him rich. + +She defended him from his enemies, and kept him safe from those that lay in wait, and in a sore conflict she gave him the victory; that he might know that goodness is stronger than all. + +When the righteous was sold, she forsook him not, but delivered him from sin: she went down with him into the pit, + +And left him not in bonds, till she brought him the sceptre of the kingdom, and power against those that oppressed him: as for them that had accused him, she showed them to be liars, and gave him perpetual glory. + +She delivered the righteous people and blameless seed from the nation that oppressed them. + +She entered into the soul of the servant of the Lord, and withstood dreadful kings in wonders and signs; + +Rendered to the righteous a reward of their labors, guided them in a marvelous way, and was to them for a cover by day, and a light of stars in the night season; + +Brought them through the Red sea, and led them through much water: + +But she drowned their enemies, and cast them up out of the bottom of the deep. + +Therefore the righteous spoiled the ungodly, and praised your holy name, O Lord, and magnified with one accord your hand, that fought for them. + +For wisdom opened the mouth of the dumb, and made the tongues of them that can’t speak eloquent. + +

+ + +

She prospered their works in the hand of the holy prophet. + +They went through the wilderness that was not inhabited, and pitched tents in places where there lay no way. + +They stood against their enemies, and were avenged of their adversaries. + +When they were thirsty, they called upon you, and water was given them out of the flinty rock, and their thirst was quenched out of the hard stone. + +For by what things their enemies were punished, by the same they in their need were benefited. + +For instead of a fountain of a perpetual running river troubled with foul blood, + +For a manifest reproof of that commandment, whereby the infants were slain, you gave to them abundance of water by a means which they hoped not for: + +Declaring by that thirst then how you had punished their adversaries. + +For when they were tried albeit but in mercy chastised, they knew how the ungodly were judged in wrath and tormented, thirsting in another manner than the just. + +For these you did admonish and try, as a father: but the other, as a severe king, you did condemn and punish. + +Whether they were absent or present, they were vexed alike. + +For a double grief came upon them, and a groaning for the remembrance of things past. + +For when they heard by their own punishments the other to be benefited, they had some feeling of the Lord. + +For whom they respected with scorn, when he was long before thrown out at the casting forth of the infants, him in the end, when they saw what came to pass, they admired. + +But for the foolish devices of their wickedness, wherewith being deceived they worshipped serpents void of reason, and vile beasts, you did send a multitude of unreasonable beasts upon them for vengeance; + +That they might know, that wherewithal a man sins, by the same also shall he be punished. + +For your Almighty hand, that made the world of matter without form, wanted not means to send among them a multitude of bears or fierce lions, + +Or unknown wild beasts, full of rage, newly created, breathing out either a fiery vapor, or filthy scents of scattered smoke, or shooting horrible sparkles out of their eyes: + +Whereof not only the harm might dispatch them at once, but also the terrible sight utterly destroy them. + +Yes, and without these might they have fallen down with one blast, being persecuted of vengeance, and scattered abroad through the breath of your power: but you have ordered all things in measure and number and weight. + +For you can show your great strength at all times when you will; and who may withstand the power of your arm? + +For the whole world before you is as a little grain of the balance, yes, as a drop of the morning dew that falls down upon the earth. + +But you have mercy upon all; for you can do all things, and wink at the sins of men, because they should amend. + +For you love all the things that are, and abhor nothing which you have made: for never would you have made any thing, if you had hated it. + +And how could any thing have endured, if it had not been your will? or been preserved, if not called by you? + +But you spare all: for they are your, O Lord, you lover of souls. + +

+ + +

For your incorruptible Spirit is in all things. + +Therefore chasten you them by little and little that offend, and warn them by putting them in remembrance wherein they have offended, that leaving their wickedness they may believe on you, O Lord. + +For it was your will to destroy by the hands of our fathers both those old inhabitants of your holy land, + +Whom you hated for doing most odious works of witchcrafts, and wicked sacrifices; + +And also those merciless murderers of children, and devourers of man's flesh, and the feasts of blood, + +With their priests out of the midst of their idolatrous crew, and the parents, that killed with their own hands souls destitute of help: + +That the land, which you esteemed above all other, might receive a worthy colony of God's children. + +Nevertheless even those you spared as men, and did send wasps, forerunners of your host, to destroy them by little and little. + +Not that you were unable to bring the ungodly under the hand of the righteous in battle, or to destroy them at once with cruel beasts, or with one rough word: + +But executing your judgments upon them by little and little, you gave them place of repentance, not being ignorant that they were a naughty generation, and that their malice was bred in them, and that their cogitation would never be changed. + +For it was a cursed seed from the beginning; neither did you for fear of any man give them pardon for those things wherein they sinned. + +For who shall say, What have you done? or who shall withstand your judgment? or who shall accuse you for the nations that perish, whom you made? or who shall come to stand against you, to be revenged for the unrighteous men? + +For neither is there any God but you that careth for all, to whom you might show that your judgment is not unright. + +Neither shall king or tyrant be able to set his face against you for any whom you have punished. + +Forsomuch then as you are righteous yourself, you order all things righteously: thinking it not agreeable with your power to condemn him that has not deserved to be punished. + +For your power is the beginning of righteousness, and because you are the Lord of all, it makes you to be gracious to all. + +For when men will not believe that you are of a full power, you show your strength, and among them that know it you make their boldness manifest. + +But you, mastering your power, judge with equity, and order us with great favor: for you may use power when you will. + +But by such works have you taught your people that the just man should be merciful, and have made your children to be of a good hope that you give repentance for sins. + +For if you did punish the enemies of your children, and the condemned to death, with such deliberation, giving them time and place, whereby they might be delivered from their malice: + +With how great circumspection did you judge your own sons, to whose fathers you have sworn, and made covenants of good promises? + +Therefore, whereas you do chasten us, you scourge our enemies a thousand times more, to the intent that, when we judge, we should carefully think of your goodness, and when we ourselves are judged, we should look for mercy. + +Therefore, whereas men have lived dissolutely and unrighteously, you have tormented them with their own abominations. + +For they went astray very far in the ways of error, and held them for gods, which even among the beasts of their enemies were despised, being deceived, as children of no understanding. + +Therefore to them, as to children without the use of reason, you did send a judgment to mock them. + +But they that would not be reformed by that correction, wherein he dallied with them, shall feel a judgment worthy of God. + +For, look, for what things they grudged, when they were punished, that is, for them whom they thought to be gods; +now being punished in them, when they saw it, they acknowledged him to be the true God, whom before they denied to know: and therefore came extreme damnation upon them. + +

+ + +

Surely vain are all men by nature, who are ignorant of God, and could not out of the good things that are seen know him that is: neither by considering the works did they acknowledge the workmaster; + +But deemed either fire, or wind, or the swift air, or the circle of the stars, or the violent water, or the lights of heaven, to be the gods which govern the world. + +With whose beauty if they being delighted took them to be gods; let them know how much better the Lord of them is: for the first author of beauty has created them. + +But if they were astonished at their power and virtue, let them understand by them, how much mightier he is that made them. + +For by the greatness and beauty of the creatures proportionably the maker of them is seen. + +But yet for this they are the less to be blamed: for they perhaps err, seeking God, and desirous to find him. + +For being conversant in his works they search him diligently, and believe their sight: because the things are beautiful that are seen. + +Howbeit neither are they to be pardoned. + +For if they were able to know so much, that they could aim at the world; how did they not sooner find out the Lord thereof? + +But miserable are they, and in dead things is their hope, who call them gods, which are the works of men's hands, gold and silver, to show are in, and resemblances of beasts, or a stone good for nothing, the work of an ancient hand. + +Now a carpenter that fells timber, after he has sawn down a tree meet for the purpose, and taken off all the bark skilfully round about, and has wrought it handsomely, and made a vessel thereof fit for the service of man's life; + +And after spending the refuse of his work to dress his meat, has filled himself; + +And taking the very refuse among those which served to no use, being a crooked piece of wood, and full of knots, has carved it diligently, when he had nothing else to do, and formed it by the skill of his understanding, and fashioned it to the image of a man; + +Or made it like some vile beast, laying it over with vermilion, and with paint colouring it red, and covering every spot therein; + +And when he had made a convenient room for it, set it in a wall, and made it fast with iron: + +For he provided for it that it might not fall, knowing that it was unable to help itself; for it is an image, and has need of help: + +Then makes he prayer for his goods, for his wife and children, and is not ashamed to speak to that which has no life. + +For health he calls upon that which is weak: for life prays to that which is dead; for aid humbly implores that which has least means to help: and for a good journey he asks of that which can’t set a foot forward: + +And for gaining and getting, and for good success of his hands, asks ability to do of him, that is most unable to do any thing. + +

+ + +

Again, one preparing himself to sail, and about to pass through the raging waves, calls upon a piece of wood more rotten than the vessel that carries him. + +For verily desire of gain devised that, and the workman built it by his skill. + +But your providence, O Father, governs it: for you have made a way in the sea, and a safe path in the waves; + +Shewing that you can save from all danger: yes, though a man went to sea without are. + +Nevertheless you would not that the works of your wisdom should be idle, and therefore do men commit their lives to a small piece of wood, and passing the rough sea in a weak vessel are saved. + +For in the old time also, when the proud giants perished, the hope of the world governed by your hand escaped in a weak vessel, and left to all ages a seed of generation. + +For blessed is the wood whereby righteousness comes. + +But that which is made with hands is cursed, as well it, as he that made it: he, because he made it; and it, because, being corruptible, it was called god. + +For the ungodly and his ungodliness are both alike hateful to God. + +For that which is made shall be punished together with him that made it. + +Therefore even upon the idols of the Gentiles shall there be a visitation: because in the creature of God they are become an abomination, and stumbling blocks to the souls of men, and a snare to the feet of the unwise. + +For the devising of idols was the beginning of spiritual fornication, and the invention of them the corruption of life. + +For neither were they from the beginning, neither shall they be for ever. + +For by the vain glory of men they entered into the world, and therefore shall they come shortly to an end. + +For a father afflicted with untimely mourning, when he has made an image of his child soon taken away, now honored him as a god, which was then a dead man, and delivered to those that were under him ceremonies and sacrifices. + +Thus in process of time an ungodly custom grown strong was kept as a law, and graven images were worshipped by the commandments of kings. + +Whom men could not honor in presence, because they lived far off, they took the counterfeit of his visage from far, and made an express image of a king whom they honored, to the end that by this their forwardness they might flatter him that was absent, as if he were present. + +Also the singular diligence of the artificer did help to set forward the ignorant to more superstition. + +For he, perhaps willing to please one in authority, forced all his skill to make the resemblance of the best fashion. + +And so the multitude, allured by the grace of the work, took him now for a god, which a little before was but honored. + +And this was an occasion to deceive the world: for men, serving either calamity or tyranny, did ascribe to stones and stocks the incommunicable name. + +Moreover this was not enough for them, that they erred in the knowledge of God; but whereas they lived in the great war of ignorance, those so great plagues called they peace. + +For while they killed their children in sacrifices, or used secret ceremonies, or made revellings of strange rites; + +They kept neither lives nor marriages any longer undefiled: but either one killed another traitorously, or grieved him by adultery. + +So that there reigned in all men without exception blood, manslaughter, theft, and dissimulation, corruption, unfaithfulness, tumults, perjury, + +Disquieting of good men, forgetfulness of good turns, defiling of souls, changing of kind, disorder in marriages, adultery, and shameless uncleanness. + +For the worshipping of idols not to be named is the beginning, the cause, and the end, of all evil. + +For either they are mad when they be merry, or prophesy lies, or live unjustly, or else lightly forswear themselves. + +For insomuch as their trust is in idols, which have no life; though they swear falsely, yet they look not to be hurt. + +Howbeit for both causes shall they be justly punished: both because they thought not well of God, giving heed to idols, and also unjustly swore in deceit, despising holiness. + +For it is not the power of them by whom they swear: but it is the just vengeance of sinners, that punishes always the offense of the ungodly. + +

+ + +

But you, O God, are gracious and true, longsuffering, and in mercy ordering all things, + +For if we sin, we are your, knowing your power: but we will not sin, knowing that we are counted your. + +For to know you is perfect righteousness: yes, to know your power is the root of immortality. + +For neither did the mischievous invention of men deceive us, nor an image spotted with various colors, the painter's fruitless labor; + +The sight whereof entices fools to lust after it, and so they desire the form of a dead image, that has no breath. + +Both they that make them, they that desire them, and they that worship them, are lovers of evil things, and are worthy to have such things to trust upon. + +For the potter, tempering soft earth, fashions every vessel with much labor for our service: yes, of the same clay he makes both the vessels that serve for clean uses, and likewise also all such as serve to the contrary: but what is the use of either sort, the potter himself is the judge. + +And employing his labors lewdly, he makes a vain god of the same clay, even he which a little before was made of earth himself, and within a little while after returns to the same, out when his life which was lent him shall be demanded. + +Notwithstanding his care is, not that he shall have much labor, nor that his life is short: but strives to excel goldsmiths and silversmiths, and endeavors to do like the workers in brass, and counts it his glory to make counterfeit things. + +His heart is ashes, his hope is more vile than earth, and his life of less value than clay: + +Forasmuch as he knew not his Maker, and him that inspired into him an active soul, and breathed in a living spirit. + +But they counted our life a pastime, and our time here a market for gain: for, say they, we must be getting every way, though it be by evil means. + +For this man, that of earthly matter makes brittle vessels and graven images, knows himself to offend above all others. + +And all the enemies of your people, that hold them in subjection, are most foolish, and are more miserable than very babes. + +For they counted all the idols of the heathen to be gods: which neither have the use of eyes to see, nor noses to draw breath, nor ears to hear, nor fingers of hands to handle; and as for their feet, they are slow to go. + +For man made them, and he that borrowed his own spirit fashioned them: but no man can make a god like to himself. + +For being mortal, he works a dead thing with wicked hands: for he himself is better than the things which he worships: whereas he lived once, but they never. + +Yes, they worshipped those beasts also that are most hateful: for being compared together, some are worse than others. + +Neither are they beautiful, so much as to be desired in respect of beasts: but they went without the praise of God and his blessing. + +

+ + +

Therefore by the like were they punished worthily, and by the multitude of beasts tormented. + +Instead of which punishment, dealing graciously with your own people, you prepared for them meat of a strange taste, even quails to stir up their appetite: + +To the end that they, desiring food, might for the ugly sight of the beasts sent among them lothe even that, which they must needs desire; but these, suffering penury for a short space, might be made partakers of a strange taste. + +For it was requisite, that upon them exercising tyranny should come penury, which they could not avoid: but to these it should only be showed how their enemies were tormented. + +For when the horrible fierceness of beasts came upon these, and they perished with the stings of crooked serpents, your wrath endured not for ever: + +But they were troubled for a small season, that they might be admonished, having a sign of salvation, to put them in remembrance of the commandment of your law. + +For he that turned himself toward it was not saved by the thing that he saw, but by you, that are the Saviour of all. + +And in this you made your enemies confess, that it is you who deliver from all evil: + +For them the bitings of grasshoppers and flies killed, neither was there found any remedy for their life: for they were worthy to be punished by such. + +But your sons not the very teeth of venomous dragons overcame: for your mercy was ever by them, and healed them. + +For they were pricked, that they should remember your words; and were quickly saved, that not falling into deep forgetfulness, they might be continually mindful of your goodness. + +For it was neither herb, nor mollifying plaister, that restored them to health: but your word, O Lord, which heals all things. + +For you have power of life and death: you lead to the gates of hell, and bring up again. + +A man indeed kills through his malice: and the spirit, when it is gone forth, returns not; neither the soul received up comes again. + +But it is not possible to escape your hand. + +For the ungodly, that denied to know you, were scourged by the strength of your arm: with strange rains, hails, and showers, were they persecuted, that they could not avoid, and through fire were they consumed. + +For, which is most to be wondered at, the fire had more force in the water, that quenches all things: for the world fights for the righteous. + +For sometime the flame was mitigated, that it might not burn up the beasts that were sent against the ungodly; but themselves might see and perceive that they were persecuted with the judgment of God. + +And at another time it burns even in the midst of water above the power of fire, that it might destroy the fruits of an unjust land. + +Instead whereof you fed your own people with angels' food, and did send them from heaven bread prepared without their labor, able to content every man's delight, and agreeing to every taste. + +For your sustenance declared your sweetness to your children, and serving to the appetite of the eater, tempered itself to every man's liking. + +But snow and ice endured the fire, and melted not, that they might know that fire burning in the hail, and sparkling in the rain, did destroy the fruits of the enemies. + +But this again did even forget his own strength, that the righteous might be nourished. + +For the creature that serves you, who are the Maker increases his strength against the unrighteous for their punishment, and abates his strength for the benefit of such as put their trust in you. + +Therefore even then was it altered into all fashions, and was obedient to your grace, that nourishes all things, according to the desire of them that had need: + +That your children, O Lord, whom you love, might know, that it is not the growing of fruits that nourishes man: but that it is your word, which preserves them that put their trust in you. + +For that which was not destroyed of the fire, being warmed with a little sunbeam, soon melted away: + +That it might be known, that we must prevent the sun to give you thanks, and at the dayspring pray to you. + +For the hope of the unthankful shall melt away as the winter's hoar frost, and shall run away as unprofitable water. + +

+ + +

For great are your judgments, and can’t be expressed: therefore unnurtured souls have erred. + +For when unrighteous men thought to oppress the holy nation; they being shut up in their houses, the prisoners of darkness, and fettered with the bonds of a long night, lay +there exiled from the eternal providence. + +For while they supposed to lie hid in their secret sins, they were scattered under a dark veil of forgetfulness, being horribly astonished, and troubled with +strange apparitions. + +For neither might the corner that held them keep them from fear: but noises +as of waters falling down sounded about them, and sad visions appeared to them with heavy countenances. + +No power of the fire might give them light: neither could the bright flames of the stars endure to lighten that horrible night. + +Only there appeared to them a fire kindled of itself, very dreadful: for being much terrified, they thought the things which they saw to be worse than the sight they saw not. + +As for the illusions of are magick, they were put down, and their vaunting in wisdom was reproved with disgrace. + +For they, that promised to drive away terrors and troubles from a sick soul, were sick themselves of fear, worthy to be laughed at. + +For though no terrible thing did fear them; yet being scared with beasts that passed by, and hissing of serpents, + +They died for fear, denying that they saw the air, which could of no side be avoided. + +For wickedness, condemned by her own witness, is very timorous, and being pressed with conscience, always forecasts grievous things. + +For fear is nothing else but a betraying of the help which reason offers. + +And the expectation from within, being less, counts the ignorance more than the cause which brings the torment. + +But they sleeping the same sleep that night, which was indeed intolerable, and which came upon them out of the bottoms of inevitable hell, + +Were partly vexed with monstrous apparitions, and partly fainted, their heart failing them: for a sudden fear, and not looked for, came upon them. + +So then whoever there fell down was straitly kept, shut up in a prison without iron bars, + +For whether he were husbandman, or shepherd, or a labourer in the field, he was overtaken, and endured that necessity, which could not be avoided: for they were all bound with one chain of darkness. + +Whether it were a whistling wind, or a melodious noise of birds among the spreading branches, or a pleasing fall of water running violently, + +Or a terrible sound of stones cast down, or a running that could not be seen of skipping beasts, or a roaring voice of most savage wild beasts, or a rebounding echo from the hollow mountains; these things made them to swoon for fear. + +For the whole world shined with clear light, and none were hindered in their labor: + +Over them only was spread an heavy night, an image of that darkness which should afterward receive them: but yet were they to themselves more grievous than the darkness. + +

+ + +

Nevertheless your saints had a very great light, whose voice they hearing, and not seeing their shape, because they also had not suffered the same things, they counted them happy. + +But for that they did not hurt them now, of whom they had been wronged before, they thanked them, and implored them pardon for that they had been enemies. + +Instead whereof you gave them a burning pillar of fire, both to be a guide of the unknown journey, and an harmless sun to entertain them honorably. + +For they were worthy to be deprived of light and imprisoned in darkness, who had kept your sons shut up, by whom the uncorrupt light of the law was to be given to the world. + +And when they had determined to kill the babes of the saints, one child being cast forth, and saved, to reprove them, you took away the multitude of their children, and destroyed them altogether in a mighty water. + +Of that night were our fathers certified before, that assuredly knowing to what oaths they had given credence, they might afterwards be of good cheer. + +So of your people was accepted both the salvation of the righteous, and destruction of the enemies. + +For wherewith you did punish our adversaries, by the same you did glorify us, whom you had called. + +For the righteous children of good men did sacrifice secretly, and with one consent made a holy law, that the saints should be like partakers of the same good and evil, the fathers now singing out the songs of praise. + +But on the other side there sounded an ill according cry of the enemies, and a lamentable noise was carried abroad for children that were bewailed. + +The master and the servant were punished after one manner; and like as the king, so suffered the common person. + +So they all together had innumerable dead with one kind of death; neither were the living sufficient to bury them: for in one moment the noblest offspring of them was destroyed. + +For whereas they would not believe any thing by reason of the enchantments; upon the destruction of the firstborn, they acknowledged this people to be the sons of God. + +For while all things were in quiet silence, and that night was in the midst of her swift course, + +Your Almighty word leaped down from heaven out of your royal throne, as a fierce man of war into the midst of a land of destruction, + +And brought your unfeigned commandment as a sharp sword, and standing up filled all things with death; and it touched the heaven, but it stood upon the earth. + +Then suddenly visions of horrible dreams troubled them sore, and terrors came upon them unlooked for. + +And one thrown here, and another there, half dead, showed the cause of his death. + +For the dreams that troubled them did foreshew this, lest they should perish, and not know why they were afflicted. + +Yes, the tasting of death touched the righteous also, and there was a destruction of the multitude in the wilderness: but the wrath endured not long. + +For then the blameless man made haste, and stood forth to defend them; and bringing the shield of his proper ministry, even prayer, and the propitiation of incense, set himself against the wrath, and so brought the calamity to an end, declaring that he was your servant. + +So he overcame the destroyer, not with strength of body, nor force of arms, but with a word subdued him that punished, alleging the oaths and covenants made with the fathers. + +For when the dead were now fallen down by heaps one upon another, standing between, he stayed the wrath, and parted the way to the living. + +For in the long garment was the whole world, and in the four rows of the stones was the glory of the fathers graven, and your Majesty upon the diadem of his head. + +To these the destroyer gave place, and was afraid of them: for it was enough that they only tasted of the wrath. + +

+ + +

As for the ungodly, wrath came upon them without mercy to the end: for he knew before what they would do; + +How that having given them leave to depart, and sent them hastily away, they would repent and pursue them. + +For while they were yet mourning and making lamentation at the graves of the dead, they added another foolish device, and pursued them as fugitives, whom they had entreated to be gone. + +For the destiny, whereof they were worthy, drew them to this end, and made them forget the things that had already happened, that they might fulfil the punishment which was lacking to their torments: + +And that your people might pass a wonderful way: but they might find a strange death. + +For the whole creature in his proper kind was fashioned again anew, serving the peculiar commandments that were given to them, that your children might be kept without hurt: + +As namely, a cloud shadowing the camp; and where water stood before, dry land appeared; and out of the Red sea a way without impediment; and out of the violent stream a green field: + +Where through all the people went that were defended with your hand, seeing your marvelous strange wonders. + +For they went at large like horses, and leaped like lambs, praising you, O Lord, who had delivered them. + +For they were yet mindful of the things that were done while they sojourned in the strange land, how the ground brought forth flies instead of cattle, and how the river cast up a multitude of frogs instead of fishes. + +But afterwards they saw a new generation of fowls, when, being led with their appetite, they asked delicate meats. + +For quails came up to them from the sea for their contentment. + +And punishments came upon the sinners not without former signs by the force of thunders: for they suffered justly according to their own wickedness, insomuch as they used a more hard and hateful behavior toward strangers. + +For the Sodomites did not receive those, whom they knew not when they came: but these brought friends into bondage, that had well deserved of them. + +And not only so, but perhaps some respect shall be had of those, because they used strangers not friendly: + +But these very grievously afflicted them, whom they had received with feastings, and were already made partakers of the same laws with them. + +Therefore even with blindness were these stricken, as those were at the doors of the righteous man: when, being compassed about with horrible great darkness, every one sought the passage of his own doors. + +For the elements were changed in themselves by a kind of harmony, like as in a lute notes change the name of the tune, and yet are always sounds; which may well be perceived by the sight of the things that have been done. + +For earthly things were turned into watery, and the things, that before swam in the water, now went upon the ground. + +The fire had power in the water, forgetting his own virtue: and the water forgat his own quenching nature. + +On the other side, the flames wasted not the flesh of the corruptible living things, though they walked therein; neither melted they the icy kind of heavenly meat that was of nature apt to melt. + +For in all things, O Lord, you did magnify your people, and glorify them, neither did you lightly regard them: but did assist them in every time and place. + +

+
+ +Sirach +SIRACH +Sirach +SIR +

SIRACH +

+

Whereas many and great things have been delivered to us by the law and the prophets, and by others that have followed their steps, for the which things Israel ought to be commended for learning and wisdom; and whereof not only the readers must needs become skillful themselves, but also they that desire to learn be able to profit them which are without, both by speaking and writing: my grandfather Jesus, when he had much given himself to the reading of the law, and the prophets, and other books of our fathers, and had gotten therein good judgment, was drawn on also himself to write something pertaining to learning and wisdom; to the intent that those which are desirous to learn, and are addicted to these things, might profit much more in living according to the law. Therefore let me entreat you to read it with favor and attention, and to pardon us, wherein we may seem to come short of some words, which we have laboured to interpret. For the same things uttered in Hebrew, and translated into another tongue, have not the same force in them: and not only these things, but the law itself, and the prophets, and the rest of the books, have no small difference, when they are spoken in their own language. For in the eight and thirties year coming into Egypt, when Euergetes was king, and continuing there some time, I found a book of no small learning: therefore I thought it most necessary for me to bestow some diligence and travail to interpret it; using great watchfulness and skill in that space to bring the book to an end, and set it forth for them also, which in a strange country are willing to learn, being prepared before in manners to live after the law. +

+ + +

All wisdom +comes from the Lord, and is with him for ever. + +Who can number the sand of the sea, and the drops of rain, and the days of eternity? + +Who can find out the height of heaven, and the breadth of the earth, and the deep, and wisdom? + +Wisdom has been created before all things, and the understanding of prudence from everlasting. + +The word of God most high is the fountain of wisdom; and her ways are everlasting commandments. + +To whom has the root of wisdom been revealed? or who has known her wise counsels? + + +To whom has the knowledge of wisdom been made manifest? and who has understood her great experience? + +There is one wise and greatly to be feared, the Lord sitting upon his throne. + +He created her, and saw her, and numbered her, and poured her out upon all his works. + +She is with all flesh according to his gift, and he has given her to them that love him. + +The fear of the Lord is honor, and glory, and gladness, and a crown of rejoicing. + +The fear of the Lord makes a merry heart, and gives joy, and gladness, and a long life. + +Whoso fears the Lord, it shall go well with him at the last, and he shall find favor in the day of his death. + +To fear the Lord is the beginning of wisdom: and it was created with the faithful in the womb. + +She has built an everlasting foundation with men, and she shall continue with their seed. + +To fear the Lord is fulness of wisdom, and fills men with her fruits. + +She fills all their house with things desirable, and the garners with her increase. + +The fear of the Lord is a crown of wisdom, making peace and perfect health to flourish; both which are the gifts of God: and it enlarges their rejoicing that love him. + +Wisdom rains down skill and knowledge of understanding standing, and exalts them to honor that hold her fast. + +The root of wisdom is to fear the Lord, and the branches thereof are long life. + +The fear of the Lord drives away sins: and where it is present, it turns away wrath. + +A furious man can’t be justified; for the sway of his fury shall be his destruction. + +A patient man will tear for a time, and afterward joy shall spring up to him. + +He will hide his words for a time, and the lips of many shall declare his wisdom. + +The parables of knowledge are in the treasures of wisdom: but godliness is an abomination to a sinner. + +If you desire wisdom, keep the commandments, and the Lord shall give her to you. + +For the fear of the Lord is wisdom and instruction: and faith and meekness are his delight. + +Distrust not the fear of the Lord when you are poor: and come not to him with a double heart. + +Be not an hypocrite in the sight of men, and take good heed what you speak. + +Exalt not yourself, lest you fall, and bring dishonor upon your soul, and so God discover your secrets, and cast you down in the midst of the congregation, because you came not in truth to the fear of the Lord, but your heart is full of deceit. + +

+ + +

My son, if you come to serve the Lord, prepare your soul for temptation. + +Set your heart aright, and constantly endure, and make not haste in time of trouble. + +Cleave to him, and depart not away, that you may be increased at your last end. + +Whatsoever is brought upon you take cheerfully, and be patient when you are changed to a low estate. + +For gold is tried in the fire, and acceptable men in the furnace of adversity. + +Believe in him, and he will help you; order your way aright, and trust in him. + +You⌃ that fear the Lord, wait for his mercy; and go not aside, lest you⌃ fall. + +You⌃ that fear the Lord, believe him; and your reward shall not fail. + +You⌃ that fear the Lord, hope for good, and for everlasting joy and mercy. + +Look at the generations of old, and see; did ever any trust in the Lord, and was confounded? or did any abide in his fear, and was forsaken? or whom did he ever despise, that called upon him? + +For the Lord is full of compassion and mercy, longsuffering, and very pitiful, and forgives sins, and saves in time of affliction. + +Woe be to fearful hearts, and faint hands, and the sinner that goes two ways! + +Woe to him that is faint-hearted! for he believes not; therefore shall he not be defended. + +Woe to you that have lost patience! and what will you⌃ do when the Lord shall visit you? + +They that fear the Lord will not disobey his Word; and they that love him will keep his ways. + +They that fear the Lord will seek that which is well, pleasing to him; and they that love him shall be filled with the law. + +They that fear the Lord will prepare their hearts, and humble their souls in his sight, + +Saying, We will fall into the hands of the Lord, and not into the hands of men: for as his majesty is, so is his mercy. + +

+ + +

Hear me your father, O children, and do thereafter, that you⌃ may be safe. + +For the Lord has given the father honor over the children, and has confirmed the authority of the mother over the sons. + +Whoso honors his father makes an atonement for his sins: + +And he that honors his mother is as one that lays up treasure. + +Whoso honors his father shall have joy of his own children; and when he makes his prayer, he shall be heard. + +He that honors his father shall have a long life; and he that is obedient to the Lord shall be a comfort to his mother. + +He that fears the Lord will honor his father, and will do service to his parents, as to his masters. + +Honor your father and mother both in word and deed, that a blessing may come upon you from them. + +For the blessing of the father establishes the houses of children; but the curse of the mother roots out foundations. + +Glory not in the dishonor of your father; for your father's dishonor is no glory to you. + +For the glory of a man is from the honor of his father; and a mother in dishonor is a reproach to the children. + +My son, help your father in his age, and grieve him not as long as he lives. + +And if his understanding fail, have patience with him; and despise him not when you are in your full strength. + +For the relieving of your father shall not be forgotten: and instead of sins it shall be added to build you up. + +In the day of your affliction it shall be remembered; your sins also shall melt away, as the ice in the fair warm weather. + +He that forsakes his father is as a blasphemer; and he that angers his mother is cursed: of God. + +My son, go on with your business in meekness; so shall you be beloved of him that is approved. + +The greater you are, the more humble yourself, and you shall find favor before the Lord. + +Many are in high place, and of renown: but mysteries are revealed to the meek. + +For the power of the Lord is great, and he is honored of the lowly. + +Seek not out things that are too hard for you, neither search the things that are above your strength. + +But what is commanded you, think thereupon with reverence, for it is not needful for you to see with your eyes the things that are in secret. + +Be not curious in unnecessary matters: for more things are showed to you than men understand. + +For many are deceived by their own vain opinion; and an evil suspicion has overthrown their judgment. + +Without eyes you shall lack light: profess not the knowledge therefore that you have not. + +A stubborn heart shall fare evil at the last; and he that loves danger shall perish therein. + +An obstinate heart shall be laden with sorrows; and the wicked man shall heap sin upon sin. + +In the punishment of the proud there is no remedy; for the plant of wickedness has taken root in him. + +The heart of the prudent will understand a parable; and an attentive ear is the desire of a wise man. + +Water will quench a flaming fire; and alms makes an atonement for sins. + +And he that requites good turns is mindful of that which may come hereafter; and when he falls, he shall find a stay. + +

+ + +

My son, defraud not the poor of his living, and make not the needy eyes to wait long. + +Make not an hungry soul sorrowful; neither provoke a man in his distress. + +Add not more trouble to an heart that is vexed; and defer not to give to him that is in need. + +Reject not the supplication of the afflicted; neither turn away your face from a poor man. + +Turn not away your eye from the needy, and give him none occasion to curse you: + +For if he curse you in the bitterness of his soul, his prayer shall be heard of him that made him. + +Get yourself the love of the congregation, and bow your head to a great man. + +Let it not grieve you to bow down your ear to the poor, and give him a friendly answer with meekness. + +Deliver him that suffers wrong from the hand of the oppressor; and be not faint-hearted when you sit in judgment. + +Be as a father to the fatherless, and instead of an husband to their mother: so shall you be as the son of the most High, and he shall love you more than your mother does. + +Wisdom exalts her children, and lays hold of them that seek her. + +He that loves her loves life; and they that seek to her early shall be filled with joy. + +He that holds her fast shall inherit glory; and wherever she enters, the Lord will bless. + +They that serve her shall minister to the Holy One: and them that love her the Lord does love. + +Whoso gives ear to her shall judge the nations: and he that attends to her shall dwell securely. + +If a man commit himself to her, he shall inherit her; and his generation shall hold her in possession. + +For at the first she will walk with him by crooked ways, and bring fear and dread upon him, and torment him with her discipline, until she may trust his soul, and try him by her laws. + +Then will she return the straight way to him, and comfort him, and show him her secrets. + +But if he go wrong, she will forsake him, and give him over to his own ruin. + +Observe the opportunity, and beware of evil; and be not ashamed when it concerns your soul. + +For there is a shame that brings sin; and there is a shame which is glory and grace. + +Accept no person against your soul, and let not the reverence of any man cause you to fall. + +And refrain not to speak, when there is occasion to do good, and hide not your wisdom in her beauty. + +For by speech wisdom shall be known: and learning by the word of the tongue. + +In no wise speak against the truth; but be abashed of the error of your ignorance. + +Be not ashamed to confess your sins; and force not the course of the river. + +Make not yourself an underling to a foolish man; neither accept the person of the mighty. + +Strive for the truth to death, and the Lord shall fight for you. + +Be not hasty in your tongue, and in your deeds slack and remiss. + +Be not as a lion in your house, nor frantick among your servants. + +Let not your hand be stretched out to receive, and shut when you should repay. + +

+ + +

Set your heart upon your goods; and say not, I have enough for my life. + +Follow not your own mind and your strength, to walk in the ways of your heart: + +And say not, Who shall control me for my works? for the Lord will surely revenge your pride. + +Say not, I have sinned, and what harm has happened to me? for the Lord is longsuffering, he will in no wise let you go. + +Concerning propitiation, be not without fear to add sin to sin: + +And say not His mercy is great; he will be pacified for the multitude of my sins: for mercy and wrath come from him, and his indignation rests upon sinners. + +Make no tarrying to turn to the Lord, and put not off from day to day: for suddenly shall the wrath of the Lord come forth, and in your security you shall be destroyed, and perish in the day of vengeance. + +Set not your heart upon goods unjustly gotten, for they shall not profit you in the day of calamity. + +Winnow not with every wind, and go not into every way: for so does the sinner that has a double tongue. + +Be stedfast in your understanding; and let your word be the same. + +Be swift to hear; and let your life be sincere; and with patience give answer. + +If you have understanding, answer your neighbor; if not, lay your hand upon your mouth. + +Honor and shame is in talk: and the tongue of man is his fall. + +Be not called a whisperer, and lie not in wait with your tongue: for a foul shame is upon the thief, and an evil condemnation upon the double tongue. + +Be not ignorant of any thing in a great matter or a small. + +

+ + +

Instead of a friend become not an enemy; for +thereby you shall inherit an ill name, shame, and reproach: even so shall a sinner that has a double tongue. + +Extol not yourself in the counsel of your own heart; that your soul be not torn in pieces as a bull +straying alone. + +You shall eat up your leaves, and lose your fruit, and leave yourself as a dry tree. + +A wicked soul shall destroy him that has it, and shall make him to be laughed to scorn of his enemies. + +Sweet language will multiply friends: and a fairspeaking tongue will increase kind greetings. + +Be in peace with many: nevertheless have but one counsellor of a thousand. + +If you would get a friend, prove him first and be not hasty to credit him. + +For some man is a friend for his own occasion, and will not abide in the day of your trouble. + +And there is a friend, who being turned to enmity, and strife will discover your reproach. + +Again, some friend is a companion at the table, and will not continue in the day of your affliction. + +But in your prosperity he will be as yourself, and will be bold over your servants. + +If you be brought low, he will be against you, and will hide himself from your face. + +Separate yourself from your enemies, and take heed of your friends. + +A faithful friend is a strong defence: and he that has found such an one has found a treasure. + +Nothing does countervail a faithful friend, and his excellency is invaluable. + +A faithful friend is the medicine of life; and they that fear the Lord shall find him. + +Whoso fears the Lord shall direct his friendship aright: for as he is, so shall his neighbor be also. + +My son, gather instruction from your youth up: so shall you find wisdom till your old age. + +Come to her as one that plows and sows, and wait for her good fruits: for you shall not toil much in laboring about her, but you shall eat of her fruits right soon. + +She is very unpleasant to the unlearned: he that is without understanding will not remain with her. + +She will lie upon him as a mighty stone of trial; and he will cast her from him ere it be long. + +For wisdom is according to her name, and she is not manifest to many. + +Give ear, my son, receive my advice, and refuse not my counsel, + +And put your feet into her fetters, and your neck into her chain. + +Bow down your shoulder, and bear her, and be not grieved with her bonds. + +Come to her with your whole heart, and keep her ways with all your power. + +Search, and seek, and she shall be made known to you: and when you have got hold of her, let her not go. + +For at the last you shall find her rest, and that shall be turned to your joy. + +Then shall her fetters be a strong defence for you, and her chains a robe of glory. + +For there is a golden ornament upon her, and her bands are purple lace. + +You shall put her on as a robe of honor, and shall put her about you as a crown of joy. + +My son, if you will, you shall be taught: and if you will apply your mind, you shall be prudent. + +If you love to hear, you shall receive understanding: and if you bow your ear, you shall be wise, + +Stand in the multitude of the elders; and cleave to him that is wise. + +Be willing to hear every godly discourse; and let not the parables of understanding escape you. + +And if you see a man of understanding, get you betimes to him, and let your foot wear the steps of his door. + +Let your mind be upon the ordinances of the Lord and meditate continually in his commandments: he shall establish your heart, and give you wisdom at your owns desire. + +

+ + +

Do no evil, so shall no harm come to you. + +Depart from the unjust, and iniquity shall turn away from you. + +My son, sow not upon the furrows of unrighteousness, and you shall not reap them sevenfold. + +Seek not of the Lord preeminence, neither of the king the seat of honor. + +justify not yourself before the Lord; and boast not of your wisdom before the king. + +Seek not to be judge, being not able to take away iniquity; lest at any time you fear the person of the mighty, an stumbling block in the way of your uprightness. + +Offend not against the multitude of a city, and then you shall not cast yourself down among the people. + +Bind not one sin upon another; for in one you shall not be unpunished. + +Say not, God will look upon the multitude of my oblations, and when I offer to the most high God, he will accept it. + +Be not faint-hearted when you make your prayer, and neglect not to give alms. + +Laugh no man to scorn in the bitterness of his soul: for there is one which humbles and exalts. + +Devise not a lie against your brother; neither do the like to your friend. + +Use not to make any manner of lie: for the custom thereof is not good. + +Use not many words in a multitude of elders, and make not much babbling when you pray. + +Hate not laborious work, neither husbandry, which the most High has ordained. + +Number not yourself among the multitude of sinners, but remember that wrath will not wait long. + +Humble yourself greatly: for the vengeance of the ungodly is fire and worms. + +Change not a friend for any good by no means; neither a faithful brother for the gold of Ophir. + +Forego not a wise and good woman: for her grace is above gold. + +Whereas your servant works truly, entreat him not evil. nor the hireling that gives himself wholly for you. + +Let your soul love a good servant, and defraud him not of liberty. + +Have you cattle? have an eye to them: and if they be for your profit, keep them with you. + +Have you children? instruct them, and bow down their neck from their youth. + +Have you daughters? have a care of their body, and show not yourself cheerful toward them. + +Marry your daughter, and so shall you have performed a weighty matter: but give her to a man of understanding. + +Have you a wife after your mind? forsake her not: but give not yourself over to a light woman. + +Honor your father with your whole heart, and forget not the sorrows of your mother. + +Remember that you were begotten of them; and how can you recompense them the things that they have done for you? + +Fear the Lord with all your soul, and reverence his priests. + +Love him that made you with all your strength, and forsake not his ministers. + +Fear the Lord, and honor the priest; and give him his portion, as it is commanded you; the first fruits, and the trespass offering, and the gift of the shoulders, and the sacrifice of sanctification, and the first fruits of the holy things. + +And stretch your hand to the poor, that your blessing may be perfected. + +A gift has grace in the sight of every man living; and for the dead detain it not. + +Fail not to be with them that weep, and mourn with them that mourn. + +Be not slow to visit the sick: fir that shall make you to be beloved. + +Whatsoever you take in hand, remember the end, and you shall never do amiss. + +

+ + +

Strive not with a mighty man' lest you fall into his hands. + +Be not at variance with a rich man, lest he overweigh you: for gold has destroyed many, and perverted the hearts of kings. + +Strive not with a man that is full of tongue, and heap not wood upon his fire. + +Jest not with a rude man, lest your ancestors be disgraced. + +Reproach not a man that turns from sin, but remember that we are all worthy of punishment. + +Dishonour not a man in his old age: for even some of us wax old. + +Rejoice not over your greatest enemy being dead, but remember that we die all. + +Despise not the discourse of the wise, but acquaint yourself with their proverbs: for of them you shall learn instruction, and how to serve great men with ease. + +Miss not the discourse of the elders: for they also learned of their fathers, and of them you shall learn understanding, and to give answer as need requires. + +Kindle not the coals of a sinner, lest you be burnt with the flame of his fire. + +Rise not up +in anger at the presence of an injurious person, lest he lie in wait to entrap you in your words + +Lend not to him that is mightier than yourself; for if you lend him, count it but lost. + +Be not surety above your power: for if you be surety, take care to pay it. + +Go not to law with a judge; for they will judge for him according to his honor. + +Travel not by the way with a bold fellow, lest he become grievous to you: for he will do according to his own will, and you shall perish with him through his folly. + +Strive not with an angry man, and go not with him into a solitary place: for blood is as nothing in his sight, and where there is no help, he will overthrow you. + +Consult not with a fool; for he can’t keep counsel. + +Do no secret thing before a stranger; for you know not what he will bring forth. + +Open not your heart to every man, lest he requite you with a shrewd turn. + +

+ + +

Be not jealous over the wife of your bosom, and teach her not an evil lesson against yourself. + +Give not your soul to a woman to set her foot upon your substance. + +Meet not with an harlot, lest you fall into her snares. + +Use not much the company of a woman that is a singer, lest you be taken with her attempts. + +Gaze not on a maid, that you fall not by those things that are precious in her. + +Give not your soul to harlots, that you lose not your inheritance. + +Look not round about you in the streets of the city, neither wander you in the solitary place thereof. + +Turn away your eye from a beautiful woman, and look not upon another's beauty; for many have been deceived by the beauty of a woman; for herewith love is kindled as a fire. + +Sit not at all with another man's wife, nor sit down with her in your arms, and spend not your money with her at the wine; lest your heart incline to her, and so through your desire you fall into destruction. + +Forsake not an old friend; for the new is not comparable to him: a new friend is as new wine; when it is old, you shall drink it with pleasure. + +Envy not the glory of a sinner: for you know not what shall be his end. + +Delight not in the thing that the ungodly have pleasure in; but remember they shall not go unpunished to their grave. + +Keep you far from the man that has power to kill; so shall you not doubt the fear of death: and if you come to him, make no fault, lest he take away your life presently: remember that you go in the midst of snares, and that you walk upon the battlements of the city. + +As near as you can, guess at your neighbor, and consult with the wise. + +Let your talk be with the wise, and all your communication in the law of the most High. + +And let just men eat and drink with you; and let your glorying be in the fear of the Lord. + +For the hand of the artificer the work shall be commended: and the wise ruler of the people for his speech. + +A man of an ill tongue is dangerous in his city; and he that is rash in his talk shall be hated. + +

+ + +

A wise judge will instruct his people; and the government of a prudent man is well ordered. + +As the judge of the people is himself, so are his officers; and what manner of man the ruler of the city is, such are all they that dwell therein. + +An unwise king destroys his people; but through the prudence of them which are in authority the city shall be inhabited. + +The power of the earth is in the hand of the Lord, and in due time he will set over it one that is profitable. + +In the hand of God is the prosperity of man: and upon the person of the scribe shall he lay his honor. + +Bear not hatred to your neighbor for every wrong; and do nothing at all by injurious practices. + +Pride is hateful before God and man: and by both does one commit iniquity. + +Because of unrighteous dealings, injuries, and riches got by deceit, the kingdom is translated from one people to another. + +Why is earth and ashes proud? There is not a more wicked thing than a covetous man: for such an one sets his own soul to sale; because while he lives he casts away his bowels. + +The physician cuts off a long disease; and he that is to day a king to morrow shall die. + +For when a man is dead, he shall inherit creeping things, beasts, and worms. + +The beginning of pride is when one departs from God, and his heart is turned away from his Maker. + +For pride is the beginning of sin, and he that has it shall pour out abomination: and therefore the Lord brought upon them strange calamities, and overthrew them utterly. + +The Lord has cast down the thrones of proud princes, and set up the meek in their stead. + +The Lord has plucked up the roots of the proud nations, and planted the lowly in their place. + +The Lord overthrew countries of the heathen, and destroyed them to the foundations of the earth. + +He took some of them away, and destroyed them, and has made their memorial to cease from the earth. + +Pride was not made for men, nor furious anger for them that are born of a woman. + +They that fear the Lord are a sure seed, and they that love him an honorable plant: they that regard not the law are a dishonourable seed; they that transgress the commandments are a deceivable seed. + +Among brethren he that is chief is honorably; so are they that fear the Lord in his eyes. + +The fear of the Lord goes before the obtaining of authority: but roughness and pride is the losing thereof. + +Whether he be rich, noble, or poor, their glory is the fear of the Lord. + +It is not meet to despise the poor man that has understanding; neither is it convenient to magnify a sinful man. + +Great men, and judges, and potentates, shall be honored; yet is there none of them greater than he that fears the Lord. + +To the servant that is wise shall they that are free do service: and he that has knowledge will not grudge when he is reformed. + +Be not overwise in doing your business; and boast not yourself in the time of your distress. + +Better is he that labores, and abounds in all things, than he that boasts himself, and lacks bread. + +My son, glorify your soul in meekness, and give it honor according to the dignity thereof. + +Who will justify him that sins against his own soul? and who will honor him that dishonors his own life? + +The poor man is honored for his skill, and the rich man is honored for his riches. + +He that is honored in poverty, how much more in riches? and he that is dishonourable in riches, how much more in poverty? + +

+ + +

Wisdom lifts up the head of him that is of low degree, and makes him to sit among great men. + +Commend not a man for his beauty; neither abhor a man for his outward appearance. + +The bee is little among such as fly; but her fruit is the chief of sweet things. + +Boast not of your clothing and raiment, and exalt not yourself in the day of honor: for the works of the Lord are wonderful, and his works among men are hidden. + +Many kings have sat down upon the ground; and one that was never thought of has worn the crown. + +Many mighty men have been greatly disgraced; and the honorable delivered into other men's hands. + +Blame not before you have examined the truth: understand first, and then rebuke. + +Answer not before you have heard the cause: neither interrupt men in the midst of their talk. + +Strive not in a matter that concerns you not; and sit not in judgment with sinners. + +My son, meddle not with many matters: for if you meddle much, you shall not be innocent; and if you follow after, you shall not obtain, neither shall you escape by fleeing. + +There is one that labores, and takes pains, and makes haste, and is so much the more behind. + +Again, there is another that is slow, and has need of help, lacking ability, and full of poverty; yet the eye of the Lord looked upon him for good, and set him up from his low estate, + +And lifted up his head from misery; so that many that saw from him is peace over all the + +Prosperity and adversity, life and death, poverty and riches, come of the Lord. + +Wisdom, knowledge, and understanding of the law, are of the Lord: love, and the way of good works, are from him. + +Error and darkness had their beginning together with sinners: and evil shall wax old with them that glory therein. + +The gift of the Lord remains with the ungodly, and his favor brings prosperity for ever. + +There is that waxes rich by his wariness and pinching, and this his the portion of his reward: + +Whereas he says, I have found rest, and now will eat continually of my goods; and yet he knows not what time shall come upon him, and that he must leave those things to others, and die. + +Be stedfast in your covenant, and be conversant therein, and wax old in your work. + +Marvel not at the works of sinners; but trust in the Lord, and abide in your labor: for it is an easy thing in the sight of the Lord on the sudden to make a poor man rich. + +The blessing of the Lord is in the reward of the godly, and suddenly he makes his blessing flourish. + +Say not, What profit is there of my service? and what good things shall I have hereafter? + +Again, say not, I have enough, and possess many things, and what evil shall I have hereafter? + +In the day of prosperity there is a forgetfulness of affliction: and in the day of affliction there is no more remembrance of prosperity. + +For it is an easy thing to the Lord in the day of death to reward a man according to his ways. + +The affliction of an hour makes a man forget pleasure: and in his end his deeds shall be revealed. + +Judge none blessed before his death: for a man shall be known in his children. + +Bring not every man into your house: for the deceitful man has many trains. + +Like as a partridge taken +and kept in a cage, so is the heart of the proud; and like as a spy, watches he for your fall: + +For he lies in wait, and turns good into evil, and in things worthy praise will lay blame upon you. + +Of a spark of fire a heap of coals is kindled: and a sinful man lays wait for blood. + +Take heed of a mischievous man, for he works wickedness; lest he bring upon you a perpetual blot. + +Receive a stranger into your house, and he will disturb you, and turn you out of your own. + +

+ + +

When you will do good know to whom you do it; so shall you be thanked for your benefits. + +Do good to the godly man, and you shall find a recompence; and if not from him, yet from the most High. + +There can no good come to him that is always occupied in evil, nor to him that gives no alms. + +Give to the godly man, and help not a sinner. + +Do well to him that is lowly, but give not to the ungodly: hold back your bread, and give it not to him, lest he overmaster you thereby: for +else you shall receive twice as much evil for all the good you shall have done to him. + +For the most High hates sinners, and will repay vengeance to the ungodly, and keeps them against the mighty day of their punishment. + +Give to the good, and help not the sinner. + +A friend can’t be known in prosperity: and an enemy can’t be hidden in adversity. + +In the prosperity of a man enemies will be grieved: but in his adversity even a friend will depart. + +Never trust your enemy: for like as iron rusts, so is his wickedness. + +Though he humble himself, and go crouching, yet take good heed and beware of him, and you shall be to him as if you had wiped a lookingglass, and you shall know that his rust has not been altogether wiped away. + +Set him not by you, lest, when he has overthrown you, he stand up in your place; neither let him sit at your right hand, lest he seek to take your seat, and you at the last remember my words, and be pricked therewith. + +Who will pity a charmer that is bitten with a serpent, or any such as come near wild beasts? + +So one that goes to a sinner, and is defiled with him in his sins, who will pity? + +For a while he will abide with you, but if you begin to fall, he will not wait. + +An enemy speaks sweetly with his lips, but in his heart he imagines how to throw you into a pit: he will weep with his eyes, but if he find opportunity, he will not be satisfied with blood. + +If adversity come upon you, you shall find him there first; and though he pretend to help you, yet shall he undermine you. + +He will shake his head, and clap his hands, and whisper much, and change his countenance. + +

+ + +

He that touches pitch shall be defiled therewith; and he that has fellowship with a proud man shall be like to him. + +Burden not yourself above your power while you live; and have no fellowship with one that is mightier and richer than yourself: for how agree the kettle and the earthen pot together? for if the one be struck against the other, it shall be broken. + +The rich man has done wrong, and yet he threatens withal: the poor is wronged, and he must entreat also. + +If you be for his profit, he will use you: but if you have nothing, he will forsake you. + +If you have any thing, he will live with you: yes, he will make you bare, and will not be sorry for it. + +If he have need of you, he will deceive you, and smile upon you, and put you in hope; he will speak you fair, and say, What want you? + +And he will shame you by his meats, until he have drawn you dry twice or thrice, and at the last he will laugh you to scorn afterward, when he sees you, he will forsake you, and shake his head at you. + +Beware that you be not deceived and brought down in your jollity. + +If you be invited of a mighty man, withdraw yourself, and so much the more will he invite you. + +Press you not upon him, lest you be put back; stand not far off, lest you be forgotten. + +Affect not to be made equal to him in talk, and believe not his many words: for with much communication will he tempt you, and smiling upon you will get out your secrets: + +But cruelly he will lay up your words, and will not spare to do you hurt, and to put you in prison. + +Observe, and take good heed, for you walk in peril of your overthrowing: when you hear these things, awake in your sleep. + +Love the Lord all your life, and call upon him for your salvation. + +Every beast loves his like, and every man loves his neighbor. + +All flesh consorts according to kind, and a man will cleave to his like. + +What fellowship has the wolf with the lamb? so the sinner with the godly. + +What agreement is there between the hyena and a dog? and what peace between the rich and the poor? + +As the wild ass is the lion's prey in the wilderness: so the rich eat up the poor. + +As the proud hate humility: so does the rich abhor the poor. + +A rich man beginning to fall is held up of his friends: but a poor man being down is thrust away by his friends. + +When a rich man is fallen, he has many helpers: he speaks things not to be spoken, and yet men justify him: the poor man slipped, and yet they rebuked him too; he spoke wisely, and could have no place. + +When a rich man speaks, every man holds his tongue, and, look, what he says, they extol it to the clouds: but if the poor man speak, they say, What fellow is this? and if he stumble, they will help to overthrow him. + +Riches are good to him that has no sin, and poverty is evil in the mouth of the ungodly. + +The heart of a man changes his countenance, whether it be for good or evil: and a merry heart makes a cheerful countenance. + +A cheerful countenance is a token of a heart that is in prosperity; and the finding out of parables is a wearisome labor of the mind. + +

+ + +

Blessed is the man that has not slipped with his mouth, and is not pricked with the multitude of sins. + +Blessed is he whose conscience has not condemned him, and who is not fallen from his hope in the Lord. + +Riches are not comely for a niggard: and what should an envious man do with money? + +He that gathers by defrauding his own soul gathers for others, that shall spend his goods riotously. + +He that is evil to himself, to whom will he be good? he shall not take pleasure in his goods. + +There is none worse than he that envies himself; and this is a recompence of his wickedness. + +And if he does good, he does it unwillingly; and at the last he will declare his wickedness. + +The envious man has a wicked eye; he turns away his face, and despises men. + +A covetous man's eye is not satisfied with his portion; and the iniquity of the wicked dries up his soul. + +A wicked eye envies +his bread, and he is a niggard at his table. + +My son, according to your ability do good to yourself, and give the Lord his due offering. + +Remember that death will not be long in coming, and that the covenant of the grave is not showed to you. + +Do good to your friend before you die, and according to your ability stretch out your hand and give to him. + +Defraud not yourself of the good day, and let not the part of a good desire overpass you. + +Shall you not leave your travails to another? and your labors to be divided by lot? + +Give, and take, and sanctify your soul; for there is no seeking of dainties in the grave. + +All flesh waxes old as a garment: for the covenant from the beginning is, You shall die the death. + +As of the green leaves on a thick tree, some fall, and some grow; so is the generation of flesh and blood, one comes to an end, and another is born. + +Every work rots and consumes away, and the worker thereof shall go withal. + +Blessed is the man that does meditate good things in wisdom, and that reasons of holy things by his understanding. + +He that considers her ways in his heart shall also have understanding in her secrets. + +Go after her as one that traces, and lie in wait in her ways. + +He that pries in at her windows shall also listen at her doors. + +He that does lodge near her house shall also fasten a pin in her walls. + +He shall pitch his tent near to her, and shall lodge in a lodging where good things are. + +He shall set his children under her shelter, and shall lodge under her branches. + +By her he shall be covered from heat, and in her glory shall he dwell. + +

+ + +

He that fears the Lord will do good, and he that has the knowledge of the law shall obtain her. + +And as a mother shall she meet him, and receive him as a wife married of a virgin. + +With the bread of understanding shall she feed him, and give him the water of wisdom to drink. + +He shall be stayed upon her, and shall not be moved; and shall rely upon her, and shall not be confounded. + +She shall exalt him above his neighbors, and in the midst of the congregation shall she open his mouth. + +He shall find joy and a crown of gladness, and she shall cause him to inherit an everlasting name. + +But foolish men shall not attain to her, and sinners shall not see her. + +For she is far from pride, and men that are liars can’t remember her. + +Praise is not seemly in the mouth of a sinner, for it was not sent him of the Lord. + +For praise shall be uttered in wisdom, and the Lord will prosper it. + +Say not you, It is through the Lord that I fell away: for you ought not to do the things that he hates. + +Say not you, He has caused me to err: for he has no need of the sinful man. + +The Lord hates all abomination; and they that fear God love it not. + +He himself made man from the beginning, and left him in the hand of his counsel; + +If you will, to keep the commandments, and to perform acceptable faithfulness. + +He has set fire and water before you: stretch forth your hand to whether you will. + +Before man is life and death; and whether him likes shall be given him. + +For the wisdom of the Lord is great, and he is mighty in power, and sees all things: + +And his eyes are upon them that fear him, and he knows every work of man. + +He has commanded no man to do wickedly, neither has he given any man licence to sin. + +

+ + +

Desire not a multitude of unprofitable children, neither delight in ungodly sons. + +Though they multiply, rejoice not in them, except the fear of the Lord be with them. + +Trust not you in their life, neither respect their multitude: for one that is just is better than a thousand; and better it is to die without children, than to have them that are ungodly. + +For by one that has understanding shall the city be replenished: but the kindred of the wicked shall speedily become desolate. + +Many such things have I seen with my eyes, and my ear has heard greater things than these. + +In the congregation of the ungodly shall a fire be kindled; and in a rebellious nation wrath is set on fire. + +He was not pacified toward the old giants, who fell away in the strength of their foolishness. + +Neither spared he the place where Lot sojourned, but abhorred them for their pride. + +He pitied not the people of perdition, who were taken away in their sins: + +Nor the six hundred thousand footmen, who were gathered together in the hardness of their hearts. + +And if there be one stiff-necked among the people, it is marvel if he escape unpunished: for mercy and wrath are with him; he is mighty to forgive, and to pour out displeasure. + +As his mercy is great, so is his correction also: he judges a man according to his works + +The sinner shall not escape with his spoils: and the patience of the godly shall not be frustrate. + +Make way for every work of mercy: for every man shall find according to his works. + +The Lord hardened Pharaoh, that he should not know him, that his powerful works might be known to the world. + +His mercy is manifest to every creature; and he has separated his light from the darkness with an adamant. + +Say not you, I will hide myself from the Lord: shall any remember me from above? I shall not be remembered among so many people: for what is my soul among such an infinite number of creatures? + +Behold, the heaven, and the heaven of heavens, the deep, and the earth, and all that therein is, shall be moved when he shall visit. + +The mountains also and foundations of the earth be shaken with trembling, when the Lord looks upon them. + +No heart can think upon these things worthily: and who is able to conceive his ways? + +It is a tempest which no man can see: for the most part of his works are hid. + +Who can declare the works of his justice? or who can endure them? for his covenant is afar off, and the trial of all things is in the end. + +He that lacks understanding will think upon vain things: and a foolish man erring imagines follies. + +My son, listen to me, and learn knowledge, and mark my words with your heart. + +I will show forth doctrine in weight, and declare his knowledge exactly. + +The works of the Lord are done in judgment from the beginning: and from the time he made them he disposed the parts thereof. + +He garnished his works for ever, and in his hand are the chief of them to all generations: they neither labor, nor are weary, nor cease from their works. + +None of them hinders another, and they shall never disobey his word. + +After this the Lord looked upon the earth, and filled it with his blessings. + +With all manner of living things has he covered the face thereof; and they shall return into it again. + +

+ + +

The Lord created man of the earth, and turned him into it again. + +He gave them few days, and a short time, and power also over the things therein. + +He endued them with strength by themselves, and made them according to his image, + +And put the fear of man upon all flesh, and gave him dominion over beasts and fowls. + + +They received the use of the five operations of the Lord, and in the sixth place he imparted them understanding, and in the seventh speech, an interpreter of the cogitations thereof. + +Counsel, and a tongue, and eyes, ears, and a heart, gave he them to understand. + +Withal he filled them with the knowledge of understanding, and showed them good and evil. + +He set his eye upon their hearts, that he might show them the greatness of his works. + +He gave them to glory in his marvelous acts for ever, that they might declare his works with understanding. + +And the elect shall praise his holy name. + +Beside this he gave them knowledge, and the law of life for an heritage. + +He made an everlasting covenant with them, and showed them his judgments. + +Their eyes saw the majesty of his glory, and their ears heard his glorious voice. + +And he said to them, Beware of all unrighteousness; and he gave every man commandment concerning his neighbor. + +Their ways are ever before him, and shall not be hid from his eyes. + +Every man from his youth is given to evil; neither could they make to themselves fleshy hearts for stony. + +For in the division of the nations of the whole earth he set a ruler over every people; but Israel is the Lord's portion: + +Whom, being his firstborn, he nourishes with discipline, and giving him the light of his love does not forsake him. + +Therefore all their works are as the sun before him, and his eyes are continually upon their ways. + +None of their unrighteous deeds are hid from him, but all their sins are before the Lord + +But the Lord being gracious and knowing his workmanship, neither left nor forsook them, but spared them. + +The alms of a man is as a signet with him, and he will keep the good deeds of man as the apple of the eye, and give repentance to his sons and daughters. + +Afterwards he will rise up and reward them, and render their recompence upon their heads. + +But to them that repent, he granted them return, and comforted those that failed in patience. + +Return to the Lord, and forsake your sins, make your prayer before his face, and offend less. + +Turn again to the most High, and turn away from iniquity: for he will lead you out of darkness into the light of health, and hate you abomination vehemently. + +Who shall praise the most High in the grave, instead of them which live and give thanks? + +Thanksgiving perishes from the dead, as from one that is not: the living and sound in heart shall praise the Lord. + +How great is the lovingkindness of the Lord our God, and his compassion to such as turn to him in holiness! + +For all things can’t be in men, because the son of man is not immortal. + +What is brighter than the sun? yet the light thereof fails; and flesh and blood will imagine evil. + +He views the power of the height of heaven; and all men are but earth and ashes. + +

+ + +

He that lives for ever Hath created all things in general. + +The Lord only is righteous, and there is none other but he, + +Who governs the world with the palm of his hand, and all things obey his will: for he is the King of all, by his power dividing holy things among them from profane. + +To whom has he given power to declare his works? and who shall find out his noble acts? + +Who shall number the strength of his majesty? and who shall also tell out his mercies? + +As for the wondrous works of the Lord, there may nothing be taken from them, neither may any thing be put to them, neither can the ground of them be found out. + +When a man has done, then he begins; and when he leaves off, then he shall be doubtful. + +What is man, and whereto serves he? what is his good, and what is his evil? + +The number of a man's days at the most are one hundred years. + +As a drop of water to the sea, and a gravelstone in comparison of the sand; so are a thousand years to the days of eternity. + +Therefore is God patient with them, and pours forth his mercy upon them. + +He saw and perceived their end to be evil; therefore he multiplied his compassion. + +The mercy of man is toward his neighbor; but the mercy of the Lord is upon all flesh: he reproves, and nurtures, and teaches and brings again, as a shepherd his flock. + +He has mercy on them that receive discipline, and that diligently seek after his judgments. + +My son, blemish not your good deeds, neither use uncomfortable words when you give any thing. + +Shall not the dew asswage the heat? so is a word better than a gift. + +Behold, is not a word better than a gift? but both are with a gracious man. + +A fool will upbraid churlishly, and a gift of the envious consumes the eyes. + +Learn before you speak, and use physick or ever you be sick. + +Before judgment examine yourself, and in the day of visitation you shall find mercy. + +Humble yourself before you be sick, and in the time of sins show repentance. + +Let nothing hinder you to pay your vow in due time, and defer not until death to be justified. + +Before you pray, prepare yourself; and be not as one that tempts the Lord. + +Think upon the wrath that shall be at the end, and the time of vengeance, when he shall turn away his face. + +When you have enough, remember the time of hunger: and when you are rich, think upon poverty and need. + +From the morning until the evening the time is changed, and all things are soon done before the Lord. + +A wise man will fear in every thing, and in the day of sinning he will beware of offense: but a fool will not observe time. + +Every man of understanding knows wisdom, and will give praise to him that found her. + +They that were of understanding in sayings became also wise themselves, and poured forth exquisite parables. + +Go not after your lusts, but refrain yourself from your appetites. + +If you give your soul the desires that please her, she will make you a laughing stock to your enemies that malign you. + +Take not pleasure in much good cheer, neither be tied to the expense thereof. + +Be not made a beggar by banqueting upon borrowing, when you have nothing in your purse: for you shall lie in wait for your own life, and be talked on. + +

+ + +

A laboring man that A is given to drunkenness shall not be rich: and he that contemns small things shall fall by little and little. + +Wine and women will make men of understanding to fall away: and he that cleaves to harlots will become impudent. + +Moths and worms shall have him to heritage, and a bold man shall be taken away. + +He that is hasty to give credit is lightminded; and he that sins shall offend against his own soul. + +Whoso takes pleasure in wickedness shall be condemned: but he that resists pleasures crowns his life. + +He that can rule his tongue shall live without strife; and he that hates babbling shall have less evil. + +Rehearse not to another that which is told to you, and you shall fare never the worse. + +Whether it be to friend or foe, talk not of other men's lives; and if you can without offense, reveal them not. + +For he heard and observed you, and when time comes he will hate you. + +If you have heard a word, let it die with you; and be bold, it will not burst you. + +A fool travails with a word, as a woman in labor of a child. + +As an arrow that sticks in a man's thigh, so is a word within a fool's belly. + +Admonish a friend, it may be he has not done it: and if he have done it, that he do it no more. + +Admonish your friend, it may be he has not said it: and if he have, that he speak it not again. + +Admonish a friend: for many times it is a slander, and believe not every tale. + +There is one that slips in his speech, but not from his heart; and who is he that has not offended with his tongue? + +Admonish your neighbor before you threaten him; and not being angry, give place to the law of the most High. + +The fear of the Lord is the first step to be accepted +of him, and wisdom obtains his love. + +The knowledge of the commandments of the Lord is the doctrine of life: and they that do things that please him shall receive the fruit of the tree of immortality. + +The fear of the Lord is all wisdom; and in all wisdom is the performance of the law, and the knowledge of his omnipotency. + +If a servant say to his master, I will not do as it pleases you; though afterward he do it, he angers him that nourishes him. + +The knowledge of wickedness is not wisdom, neither at any time the counsel of sinners prudence. + +There is a wickedness, and the same an abomination; and there is a fool lacking in wisdom. + +He that has small understanding, and fears God, is better than one that has much wisdom, and transgresses the law of the most High. + +There is an exquisite subtilty, and the same is unjust; and there is one that turns aside to make judgment appear; and there is a wise man that justifies in judgment. + +There is a wicked man that hangs down his head sadly; but inwardly he is full of deceit, + +Casting down his countenance, and making as if he heard not: where he is not known, he will do you a mischief before you be aware. + +And if for lack of power he be hindered from sinning, yet when he finds opportunity he will do evil. + +A man may be known by his look, and one that has understanding by his countenance, when you meet him. + +A man's attire, and excessive laughter, and gait, show what he is. + +

+ + +

There is a reproof that is not comely: again, some man holds his tongue, and he is wise. + +It is much better to reprove, than to be angry secretly: and he that confesses his fault shall be preserved from hurt. + +How good is it, when you are reproved, to show repentance! for so shall you escape wilful sin. + +As is the lust of an eunuch to deflower a virgin; so is he that executes judgment with violence. + +There is one that keeps silence, and is found wise: and another by much babbling becomes hateful. + +Some man holds his tongue, because he has not to answer: and some keeps silence, knowing his time. + +A wise man will hold his tongue till he see opportunity: but a babbler and a fool will regard no time. + +He that uses many words shall be abhorred; and he that takes to himself authority therein shall be hated. + +There is a sinner that has good success in evil things; and there is a gain that turns to loss. + +There is a gift that shall not profit you; and there is a gift whose recompence is double. + +There is an abasement because of glory; and there is that lifts up his head from a low estate. + +There is that buys much for a little, and repays it sevenfold. + +A wise man by his words makes him beloved: but the graces of fools shall be poured out. + +The gift of a fool shall do you no good when you have it; neither yet of the envious for his necessity: for he looks to receive many things for one. + +He gives little, and upbraids much; he opens his mouth like a crier; to day he lends, and to morrow will he ask it again: such an one is to be hated of God and man. + +The fool says, I have no friends, I have no thank for all my good deeds, and they that eat my bread speak evil of me. + +How often, and of how many shall he be laughed to scorn! for he knows not aright what it is to have; and it is all one to him as if he had it not. + +To slip upon a pavement is better than to slip with the tongue: so the fall of the wicked shall come speedily. + +An unseasonable tale will always be in the mouth of the unwise. + +A wise sentence shall be rejected when it comes out of a fool's mouth; for he will not speak it in due season. + +There is that is hindered from sinning through lack: and when he takes rest, he shall not be troubled. + +There is that destroys his own soul through bashfulness, and by accepting of persons overthrows himself. + +There is that for bashfulness promises to his friend, and makes him his enemy for nothing. + +A lie is a foul blot in a man, yet it is continually in the mouth of the untaught. + +A thief is better than a man that is accustomed to lie: but they both shall have destruction to heritage. + +The disposition of a liar is dishonourable, and his shame is ever with him. + +A wise man shall promote himself to honor with his words: and he that has understanding will please great men. + +He that tils his land shall increase his heap: and he that pleases great men shall get pardon for iniquity. + +Presents and gifts blind the eyes of the wise, and stop up his mouth that he can’t reprove. + +Wisdom that is hid, and treasure that is hoarded up, what profit is in them both? + +Better is he that hides his folly than a man that hides his wisdom. + +Necessary patience in seeking the Lord is better than he that leads his life without a guide. + +

+ + +

My son, have you sinned? do so no more, but ask pardon for your former sins. + +Flee from sin as from the face of a serpent: for if you come too near it, it will bite you: the teeth thereof are as the teeth of a lion, slaying the souls of men. + +All iniquity is as a two edged sword, the wounds whereof can’t be healed. + +To terrify and do wrong will waste riches: thus the house of proud men shall be made desolate. + +A prayer out of a poor man's mouth reaches to the ears of God, and his judgment comes speedily. + +He that hates to be reproved is in the way of sinners: but he that fears the Lord will repent from his heart. + +An eloquent man is known far and near; but a man of understanding knows when he slips. + +He that builds his house with other men's money is like one that gathers himself stones for the tomb of his burial. + +The congregation of the wicked is like tow wrapped together: and the end of them is a flame of fire to destroy them. + +The way of sinners is made plain with stones, but at the end thereof is the pit of hell. + +He that keeps the law of the Lord gets the understanding thereof: and the perfection of the fear of the Lord is wisdom. + +He that is not wise will not be taught: but there is a wisdom which multiplies bitterness. + +The knowledge of a wise man shall abound like a flood: and his counsel is like a pure fountain of life. + +The inner parts of a fool are like a broken vessel, and he will hold no knowledge as long as he lives. + +If a skillful man hear a wise word, he will commend it, and add to it: but as soon as one of no understanding hears it, it displeases him, and he casts it behind his back. + +The talking of a fool is like a burden in the way: but grace shall be found in the lips of the wise. + +They enquire at the mouth of the wise man in the congregation, and they shall ponder his words in their heart. + +As is a house that is destroyed, so is wisdom to a fool: and the knowledge of the unwise is as talk without sense. + +Doctrine to fools is as fetters on the feet, and like manacles on the right hand. + +A fool lifts up his voice with laughter; but a wise man does scarce smile a little. + +Learning is to a wise man as an ornament of gold, and like a bracelet upon his right arm. + +A foolish man's foot is soon in his +neighbor's house: but a man of experience is ashamed of him. + +A fool will peep in at the door into the house: but he that is well nurtured will stand without. + +It is the rudeness of a man to listen at the door: but a wise man will be grieved with the disgrace. + +The lips of talkers will be telling such things as pertain not to them: but the words of such as have understanding are weighed in the balance. + +The heart of fools is in their mouth: but the mouth of the wise is in their heart. + +When the ungodly curses Satan, he curses his own soul. + +A whisperer defiles his own soul, and is hated wherever he dwells. + +

+ + +

A slothful man is compared to a filthy stone, and every one will hiss him out to his disgrace. + +A slothful man is compared to the filth of a dunghill: every man that takes it up will shake his hand. + +An evil-nurtured man is the dishonor of his father that became the father of him: and a +foolish daughter is born to his loss. + +A wise daughter shall bring an inheritance to her husband: but she that lives dishonestly is her father's heaviness. + +She that is bold dishonors both her father and her husband, but they both shall despise her. + +A tale out of season +is as musick in mourning: but stripes and correction of wisdom are never out of time. + +Whoso teaches a fool is as one that glues a potsherd together, and as he that wakes one from a sound sleep. + +He that tells a tale to a fool speaks to one in a slumber: when he has told his tale, he will say, What is the matter? + +If children live honestly, and have wherewithal, they shall cover the baseness of their parents. + +But children, being haughty, through disdain and lack of nurture do stain the nobility of their kindred. + +Weep for the dead, for he has lost the light: and weep for the fool, for he lacks understanding: make little weeping for the dead, for he is at rest: but the life of the fool is worse than death. + +Seven days do men mourn for him that is dead; but for a fool and an ungodly man all the days of his life. + +Talk not much with a fool, and go not to him that has no understanding: beware of him, lest you have trouble, and you shall never be defiled with his fooleries: depart from him, and you shall find rest, and never be disquieted with madness. + +What is heavier than lead? and what is the name thereof, but a fool? + +Sand, and salt, and a mass of iron, is easier to bear, than a man without understanding. + +As timber girded and bound together in a building can’t be loosed with shaking: so the heart that is established by advised counsel shall fear at no time. + +A heart settled upon a thought of understanding is as a fair plaistering on the wall of a gallery. + +Pales set on an high place will never stand against the wind: so a fearful heart in the imagination of a fool can’t stand against any fear. + +He that pricks the eye will make tears to fall: and he that pricks the heart makes it to show her knowledge. + +Whoso casts a stone at the birds frays them away: and he that upbraids his friend breaks friendship. + +Though you drew a sword at your friend, yet despair not: for there may be a returning +to favor. + +If you have opened your mouth against your friend, fear not; for there may be a reconciliation: except for upbraiding, or pride, or disclosing of secrets, or a treacherous wound: for for these things every friend will depart. + +Be faithful to your neighbor in his poverty, that you may rejoice in his prosperity: abide stedfast to him in the time of his trouble, that you may be heir with him in his heritage: for a mean estate is not always to be contemned: nor the rich that is foolish to be had in admiration. + +As the vapor and smoke of a furnace goes before the fire; so reviling before blood. + +I will not be ashamed to defend a friend; neither will I hide myself from him. + +And if any evil happen to me by him, every one that hears it will beware of him. + +Who shall set a watch before my mouth, and a seal of wisdom upon my lips, that I fall not suddenly by them, and that my tongue destroy me not? + +

+ + +

O Lord, Father and Governor of all my whole life, leave me not to their counsels, and let me not fall by them. + +Who will set scourges over my thoughts, and the discipline of wisdom over my heart? that they spare me not for my ignorances, and it pass not by my sins: + +Lest my ignorances increase, and my sins abound to my destruction, and I fall before my adversaries, and my enemy rejoice over me, whose hope is far from your mercy. + +O Lord, Father and God of my life, give me not a proud look, but turn away from your servants always a haughty mind. + +Turn away from me vain hopes and concupiscence, and you shall hold him up that is desirous always to serve you. + +Let not the greediness of the belly nor lust of the flesh take hold of me; and give not over me your servant into an impudent mind. + +Hear, O you⌃ children, the discipline of the mouth: he that keeps it shall never be taken in his lips. + +The sinner shall be left in his foolishness: both the evil speaker and the proud shall fall thereby. + +Accustom not your mouth to swearing; neither use yourself to the naming of the Holy One. + +For as a servant that is continually beaten shall not be without a blue mark: so he that swears and names God continually shall not be faultless. + +A man that uses much swearing shall be filled with iniquity, and the plague shall never depart from his house: if he shall offend, his sin shall be upon him: and if he acknowledge not his sin, he makes a double offense: and if he swear in vain, he shall not be innocent, but his house shall be full of calamities. + +There is a word that is clothed about with death: God grant that it be not found in the heritage of Jacob; for all such things shall be far from the godly, and they shall not wallow in their sins. + +Use not your mouth to intemperate swearing, for therein is the word of sin. + +Remember your father and your mother, when you sit among great men. Be not forgetful before them, and so you by your custom become a fool, and wish that you had not been born, and curse they day of your nativity. + +The man that is accustomed to opprobrious words will never be reformed all the days of his life. + +Two sorts of men multiply sin, and the third will bring wrath: a hot mind is as a burning fire, it will never be quenched till it be consumed: a fornicator in the body of his flesh will never cease till he has kindled a fire. + +All bread is sweet to a whoremonger, he will not leave off till he die. + +A man that breaks wedlock, saying thus in his heart, Who sees me? I am compassed about with darkness, the walls cover me, and no body sees me; what need I to fear? the most High will not remember my sins: + +Such a man only fears the eyes of men, and knows not that the eyes of the Lord are ten thousand times brighter than the sun, beholding all the ways of men, and considering the most secret parts. + +He knew all things ere ever they were created; so also after they were perfected he looked upon them all. + +This man shall be punished in the streets of the city, and where he suspects not he shall be taken. + +Thus shall it go also with the wife that leaves her husband, and brings in an heir by another. + +For first, she has disobeyed the law of the most High; and secondly, she has trespassed against her own husband; and thirdly, she has played the whore in adultery, and brought children by another man. + +She shall be brought out into the congregation, and inquisition shall be made of her children. + +Her children shall not take root, and her branches shall bring forth no fruit. + +She shall leave her memory to be cursed, and her reproach shall not be blotted out. + +And they that remain shall know that there is nothing better than the fear of the Lord, and that there is nothing sweeter than to take heed to the commandments of the Lord. + +It is great glory to follow the Lord, and to be received of him is long life. + +

+ + +

Wisdom shall praise herself, and shall glory in the midst of her people. + +In the congregation of the most High shall she open her mouth, and triumph before his power. + +I came out of the mouth of the most High, and covered the earth as a cloud. + +I lived in high places, and my throne is in a cloudy pillar. + +I alone compassed the circuit of heaven, and walked in the bottom of the deep. + +In the waves of the sea and in all the earth, and in every people and nation, I got a possession. + +With all these I sought rest: and in whose inheritance shall I abide? + +So the Creator of all things gave me a commandment, and he that made me caused my tabernacle to rest, and said, Let your dwelling be in Jacob, and your inheritance in Israel. + +He created me from the beginning before the world, and I shall never fail. + +In the holy tabernacle I served before him; and so was I established in Sion. + +Likewise in the beloved city he gave me rest, and in Jerusalem was my power. + +And I took root in an honorable people, even in the portion of the Lord's inheritance. + +I was exalted like a cedar in Libanus, and as a cypress tree upon the mountains of Hermon. + +I was exalted like a palm tree in En-gaddi, and as a rose plant in Jericho, as a fair olive tree in a pleasant field, and grew up as a plane tree by the water. + +I gave a sweet smell like cinnamon and aspalathus, and I yielded a pleasant odour like the best myrrh, as galbanum, and onyx, and sweet storax, and as the fume of frankincense in the tabernacle. + +As the turpentine tree I stretched out my branches, and my branches are the branches of honor and grace. + +As the vine brought I forth pleasant savor, and my flowers are the fruit of honor and riches. + +I am the mother of fair love, and fear, and knowledge, and holy hope: I therefore, being eternal, am given to all my children which are named of him. + +Come to me, all you⌃ that be desirous of me, and fill yourselves with my fruits. + +For my memorial is sweeter than honey, and my inheritance than the honeycomb. + +They that eat me shall yet be hungry, and they that drink me shall yet be thirsty. + +He that obeys me shall never be confounded, and they that work by me shall not do amiss. + +All these things are the book of the covenant of the most high God, even the law which Moses commanded for an heritage to the congregations of Jacob. + +Faint not to be strong in the Lord; that he may confirm you, cleave to him: for the Lord Almighty is God alone, and beside him there is no other Saviour. + +He fills all things with his wisdom, as Phison and as Tigris in the time of the new fruits. + +He makes the understanding to abound like Euphrates, and as Jordan in the time of the harvest. + +He makes the doctrine of knowledge appear as the light, and as Geon in the time of vintage. + +The first man knew her not perfectly: no more shall the last find her out. + +For her thoughts are more than the sea, and her counsels profounder than the great deep. + +I also came out as a brook from a river, and as a conduit into a garden. + +I said, I will water my best garden, and will water abundantly my garden bed: and, behold, my brook became a river, and my river became a sea. + +I will yet make doctrine to shine as the morning, and will send forth her light afar off. + +I will yet pour out doctrine as prophecy, and leave it to all ages for ever. + +Behold that I have not laboured for myself only, but for all them that seek wisdom. + +

+ + +

In three things I was beautified, and stood up beautiful both before God and men: the unity of brethren, the love of neighbors, a man and a wife that agree together. + +Three sorts of men my soul hates, and I am greatly offended at their life: a poor man that is proud, a rich man that is a liar, and an old adulterer that doats. + +If you have gathered nothing in your youth, how can you find any thing in your age? + +O how comely a thing is judgment for gray hairs, and for ancient men to know counsel! + +O how comely is the wisdom of old men, and understanding and counsel to men of honor. + +Much experience is the crown of old men, and the fear of God is their glory. + +There be nine things which I have judged in my heart to be happy, and the tenth I will utter with my tongue: A man that has joy of his children; and he that lives to see the fall of his enemy: + +Well is him that dwells with a wife of understanding, and that has not slipped with his tongue, and that has not served a man more unworthy than himself: + +Well is him that has found prudence, and he that speaks in the ears of them that will hear: + +O how great is he that finds wisdom! yet is there none above him that fears the Lord. + +But the love of the Lord passes all things for illumination: he that holds it, whereto shall he be likened? + +The fear of the Lord is the beginning of his love: and faith is the beginning of cleaving to him. + + +Give me any plague, but the plague of the heart: and any wickedness, but the wickedness of a woman: + +And any affliction, but the affliction from them that hate me: and any revenge, but the revenge of enemies. + +There is no head above the head of a serpent; and there is no wrath above the wrath of an enemy. + +I had rather dwell with a lion and a dragon, than to keep house with a wicked woman. + +The wickedness of a woman changes her face, and darkens her countenance like sackcloth. + +Her husband shall sit among his neighbors; and when he hears it shall sigh bitterly. + +All wickedness is but little to the wickedness of a woman: let the portion of a sinner fall upon her. + +As the climbing up a sandy way is to the feet of the aged, so is a wife full of words to a quiet man. + +Stumble not at the beauty of a woman, and desire her not for pleasure. + +A woman, if she maintain her husband, is full of anger, impudence, and much reproach. + +A wicked woman abates the courage, makes an heavy countenance and a wounded heart: a woman that will not comfort her husband in distress makes weak hands and feeble knees. + +Of the woman came the beginning of sin, and through her we all die. + +Give the water no passage; neither a wicked woman liberty to gad abroad. + +If she go not as you would have her, cut her off from your flesh, and give her a bill of divorce, and let her go. + +

+ + +

Blessed is the man that has a virtuous wife, for the number of his days shall be double. + +A virtuous woman rejoices her husband, and he shall fulfil the years of his life in peace. + +A good wife is a good portion, which shall be given in the portion of them that fear the Lord. + +Whether a man be rich or poor, if he have a good heart toward the Lord, he shall at all times rejoice with a cheerful countenance. + +There be three things that my heart fears; and for the fourth I was sore afraid: the slander of a city, the gathering together of an unruly multitude, and a false accusation: all these are worse than death. + +But a grief of heart and sorrow is a woman that is jealous over another woman, and a scourge of the tongue which communicates with all. + +An evil wife is a yoke shaken to and fro: he that has hold of her is as though he held a scorpion. + +A drunken woman and a gadder abroad causes great anger, and she will not cover her own shame. + +The whoredom of a woman may be known in her haughty looks and eyelids. + +If your daughter be shameless, keep her in straitly, lest she abuse herself through overmuch liberty. + +Watch over an impudent eye: and marvel not if she trespass against you. + +She will open her mouth, as a thirsty traveller when he has found a fountain, and drink of every water near her: by every hedge will she sit down, and open her quiver against every arrow. + +The grace of a wife delights her husband, and her discretion will fatten his bones. + +A silent and loving woman is a gift of the Lord; and there is nothing so much worth as a mind well instructed. + +A shamefaced and faithful woman is a double grace, and her continent mind can’t be valued. + +As the sun when it arises in the high heaven; so is the beauty of a good wife in the ordering of her house. + +As the clear light is upon the holy candlestick; so is the beauty of the face in ripe age. + +As the golden pillars are upon the sockets of silver; so are the fair feet with a constant heart. + +My son, keep the flower of your age sound; and give not your strength to strangers. + +When you have gotten a fruitful possession through all the field, sow it with your own seed, trusting in the goodness of your stock. + +So your race which you leave shall be magnified, having the confidence of their good descent. + +An harlot shall be accounted as spittle; but a married woman is a tower against death to her husband. + +A wicked woman is given as a portion to a wicked man: but a godly woman is given to him that fears the Lord. + +A dishonest woman contemns shame: but an honest woman will reverence her husband. + +A shameless woman shall be counted as a dog; but she that is shamefaced will fear the Lord. + +A woman that honors her husband shall be judged wise of all; but she that dishonors him in her pride shall be counted ungodly of all. + +A loud crying woman and a scold shall be sought out to drive away the enemies. + +There be two things that grieve my heart; and the third makes me angry: a man of war that suffers poverty; and men of understanding that are not set by; and one that returns from righteousness to sin; the Lord prepares such an one for the sword. + +A merchant shall hardly keep himself from doing wrong; and an huckster shall not be freed from sin. + +

+ + +

Many have sinned for a small matter; and he that seeks for abundance will turn his eyes away. + +As a nail sticks fast between the joinings of the stones; so does sin stick close between buying and selling. + +Unless a man hold himself diligently in the fear of the Lord, his house shall soon be overthrown. + +As when one sifts with a sieve, the refuse remains; so the filth of man in his talk. + +The furnace proves the potter's vessels; so the trial of man is in his reasoning. + +The fruit declares if the tree have been dressed; so is the utterance of a conceit in the heart of man. + +Praise no man before you hear him speak; for this is the trial of men. + +If you follow righteousness, you shall obtain her, and put her on, as a glorious long robe. + +The birds will resort to their like; so will truth return to them that practise in her. + +As the lion lies in wait for the prey; so sin for them that work iniquity. + +The discourse of a godly man is always with wisdom; but a fool changes as the moon. + +If you be among the indiscreet, observe the time; but be continually among men of understanding. + +The discourse of fools is irksome, and their sport is the wantonness of sin. + +The talk of him that swears much makes the hair stand upright; and their brawls make one stop his ears. + +The strife of the proud is blood shedding, and their revilings are grievous to the ear. + +Whoso discovers secrets loses his credit; and shall never find friend to his mind. + +Love your friend, and be faithful to him: but if you betray his secrets, follow no more after him. + +For as a man has destroyed his enemy; so have you lost the love of your neighbor. + +As one that lets a bird go out of his hand, so have you let your neighbor go, and shall not get him again + +Follow after him no more, for he is too far off; he is as a roe escaped out of the snare. + +As for a wound, it may be bound up; and after reviling there may be reconcilement: but he that betrays secrets is without hope. + +He that winks with the eyes works evil: and he that knows him will depart from him. + +When you are present, he will speak sweetly, and will admire your words: but at the last he will writhe his mouth, and slander your sayings. + +I have hated many things, but nothing like him; for the Lord will hate him. + +Whoso casts a stone on high casts it on his own head; and a deceitful stroke shall make wounds. + +Whoso digs a pit shall fall therein: and he that sets a trap shall be taken therein. + +He that works mischief, it shall fall upon him, and he shall not know whence it comes. + +Mockery and reproach are from the proud; but vengeance, as a lion, shall lie in wait for them. + +They that rejoice at the fall of the righteous shall be taken in the snare; and anguish shall consume them before they die. + +Malice and wrath, even these are abominations; and the sinful man shall have them both. + +

+ + +

He that revenges shall find vengeance from the Lord, and he will surely keep his sins +in remembrance. + +Forgive your neighbor the hurt that he has done to you, so shall your sins also be forgiven when you pray. + +One man bears hatred against another, and does he seek pardon from the Lord? + +He shows no mercy to a man, which is like himself: and does he ask forgiveness of his own sins? + +If he that is but flesh nourish hatred, who will entreat for pardon of his sins? + +Remember your end, and let enmity cease; +remember corruption and death, and abide in the commandments. + +Remember the commandments, and bear no malice to your neighbor: +remember the covenant of the Highest, and wink at ignorance. + +Abstain from strife, and you shall diminish your sins: for a furious man will kindle strife, + +A sinful man disquiets friends, and makes debate among them that be at peace. + +As the matter of the fire is, so it burns: and as a man's strength is, so is his wrath; and according to his riches his anger rises; and the stronger they are which contend, the more they will be inflamed. + +An hasty contention kindles a fire: and an hasty fighting sheds blood. + +If you blow the spark, it shall burn: if you spit upon it, it shall be quenched: and both these come out of your mouth. + +Curse the whisperer and double-tongued: for such have destroyed many that were at peace. + +A backbiting tongue has disquieted many, and driven them from nation to nation: strong cities has it pulled down, and overthrown the houses of great men. + +A backbiting tongue has cast out virtuous women, and deprived them of their labors. + +Whoso hearkens to it shall never find rest, and never dwell quietly. + +The stroke of the whip makes marks in the flesh: but the stroke of the tongue breaks the bones. + +Many have fallen by the edge of the sword: but not so many as have fallen by the tongue. + +Well is he that is defended through the venom thereof; who has not drawn the yoke thereof, nor has been bound in her bands. + +For the yoke thereof is a yoke of iron, and the bands thereof are bands of brass. + +The death thereof is an evil death, the grave were better than it. + +It shall not have rule over them that fear God, neither shall they be burned with the flame thereof. + +Such as forsake the Lord shall fall into it; and it shall burn in them, and not be quenched; it shall be sent upon them as a lion, and devour them as a leopard. + +Look that you hedge your possession about with thorns, and bind up your silver and gold, + +And weigh your words in a balance, and make a door and bar for your mouth. + +Beware you slide not by it, lest you fall before him that lies in wait. + +

+ + +

He that is merciful will lend to his neighbor; and he that strengthens his hand keeps the commandments. + +Lend to your neighbor in time of his need, and pay you your neighbor again in due season. + +Keep your word, and deal faithfully with him, and you shall always find the thing that is necessary for you. + +Many, when a thing was lent them, reckoned it to be found, and put them to trouble that helped them. + +Till he has received, he will kiss a man's hand; and for his neighbor's money he will speak submissly: but when he should repay, he will prolong the time, and return words of grief, and complain of the time. + +If he prevail, he shall hardly receive the half, and he will count as if he had found it: if not, he has deprived him of his money, and he has gotten him an enemy without cause: he pays him with cursings and railings; and for honor he will pay him disgrace. + +Many therefore have refused to lend for other men's ill dealing, fearing to be defrauded. + +Yet have you patience with a man in poor estate, and delay not to show him mercy. + +Help the poor for the commandment's sake, and turn him not away because of his poverty. + +Lose your money for your brother and your friend, and let it not rust under a stone to be lost. + +Lay up your treasure according to the commandments of the most High, and it shall bring you more profit than gold. + +Shut up alms in your storehouses: and it shall deliver you from all affliction. + +It shall fight for you against your enemies better than a mighty shield and strong spear. + +An honest man is surety for his neighbor: but he that is impudent will forsake him. + +Forget not the friendship of your surety, for he has given his life for you. + +A sinner will overthrow the good estate of his surety: + +And he that is of an unthankful mind will leave him +in danger that delivered him. + +Suretiship has undone many of good estate, and shaken them as a wave of the sea: mighty men has it driven from their houses, so that they wandered among strange nations. + +A wicked man transgressing the commandments of the Lord shall fall into suretiship: and he that undertakes and follows other men's business for gain shall fall into suits. + +Help your neighbor according to your power, and beware that you yourself fall not into the same. + +The chief thing for life is water, and bread, and clothing, and an house to cover shame. + +Better is the life of a poor man in a mean cottage, than delicate fare in another man's house. + +Be it little or much, hold you contented, that you hear not the reproach of your house. + +For it is a miserable life to go from house to house: for where you are a stranger, you dare not open your mouth. + +You shall entertain, and feast, and have no thanks: moreover you shall hear bitter words: + +Come, you stranger, and furnish a table, and feed me of that you have ready. + +Give place, you stranger, to an honorable man; my brother comes to be lodged, and I have need of my house. + +These things are grievous to a man of understanding; the upbraiding of houseroom, and reproaching of the lender. + +

+ + +

He that loves his son causes him often to feel the rod, that he may have joy of him in the end. + +He that chastises his son shall have joy in him, and shall rejoice of him among his acquaintance. + +He that teaches his son grieves the enemy: and before his friends he shall rejoice of him. + +Though his father die, yet he is as though he were not dead: for he has left one behind him that is like himself. + +While he lived, he saw and rejoiced in him: and when he died, he was not sorrowful. + +He left behind him an avenger against his enemies, and one that shall requite kindness to his friends. + +He that makes too much of his son shall bind up his wounds; and his bowels will be troubled at every cry. + +An horse not broken becomes headstrong: and a child left to himself will be wilful. + +Cocker your child, and he shall make you afraid: play with him, and he will bring you to heaviness. + +Laugh not with him, lest you have sorrow with him, and lest you gnash your teeth in the end. + +Give him no liberty in his youth, and wink not at his follies. + +Bow down his neck while he is young, and beat him on the sides while he is a child, lest he wax stubborn, and be disobedient to you, and so bring sorrow to your heart. + +Chastise your son, and hold him to labor, lest his lewd behavior be an offense to you. + +Better is the poor, being sound and strong of constitution, than a rich man that is afflicted in his body. + +Health and good estate of body are above all gold, and a strong body above infinite wealth. + +There is no riches above a sound body, and no joy above the joy of the heart. + +Death is better than a bitter life or continual sickness. + +Delicates poured upon a mouth shut up are as messes of meat set upon a grave. + +What good does the offering to an idol? for neither can it eat nor smell: so is he that is persecuted of the Lord. + +He sees with his eyes and groanes, as an eunuch that embraces a virgin and sighs. + +Give not over your mind to heaviness, and afflict not yourself in your own counsel. + +The gladness of the heart is the life of man, and the joyfulness of a man prolongs his days. + +Love your own soul, and comfort your heart, remove sorrow far from you: for sorrow has killed many, and there is no profit therein. + +Envy and wrath shorten the life, and carefulness brings age before the time. + +A cheerful and good heart will have a care of his meat and diet. + +

+ + +

Watching for riches consumes the flesh, and the care thereof drives away sleep. + +Watching care will not let a man slumber, as a sore disease breaks sleep, + +The rich has great labor in gathering riches together; and when he rests, he is filled with his delicates. + +The poor labores in his poor estate; and when he leaves off, he is still needy. + +He that loves gold shall not be justified, and he that follows corruption shall have enough thereof. + +Gold has been the ruin of many, and their destruction was present. + +It is a stumbling block to them that sacrifice to it, and every fool shall be taken therewith. + +Blessed is the rich that is found without blemish, and has not gone after gold. + +Who is he? and we will call him blessed: for wonderful things has he done among his people. + +Who has been tried thereby, and found perfect? then let him glory. Who might offend, and has not offended? or done evil, and has not done it? + +His goods shall be established, and the congregation shall declare his alms. + +If you sit at a bountiful table, be not greedy upon it, and say not, There is much meat on it. + +Remember that a wicked eye is an evil thing: and what is created more wicked than an eye? therefore it weeps upon every occasion. + +Stretch not your hand wherever it looks, and thrust it not with him into the dish. + +Judge not your neighbor by yourself: and be discreet in every point. + +Eat as it becomes a man, those things which are set before you; and devour note, lest you be hated. + +Leave off first for manners' sake; and be not unsatiable, lest you offend. + +When you sit among many, reach not your hand out first of all. + +A very little is sufficient for a man well nurtured, and he fetches not his wind short upon his bed. + +Sound sleep comes of moderate eating: he rises early, and his wits are with him: but the pain of watching, and choler, and pangs of the belly, are with an unsatiable man. + +And if you have been forced to eat, arise, go forth, vomit, and you shall have rest. + +My son, hear me, and despise me not, and at the last you shall find as I told you: in all your works be quick, so shall there no sickness come to you. + +Whoso is liberal of his meat, men shall speak well of him; and the report of his good housekeeping will be believed. + +But against him that is a niggard of his meat the whole city shall murmur; and the testimonies of his niggardness shall not be doubted of. + +Show not your valiantness in wine; for wine has destroyed many. + +The furnace proves the edge by dipping: so does wine the hearts of the proud by drunkenness. + +Wine is as good as life to a man, if it be drunk moderately: what life is then to a man that is without wine? for it was made to make men glad. + +Wine measurably drunk and in season brings gladness of the heart, and cheerfulness of the mind: + +But wine drunken with excess makes bitterness of the mind, with brawling and quarrelling. + +Drunkenness increases the rage of a fool till he offend: it diminishes strength, and makes wounds. + +Rebuke not your neighbor at the wine, and despise him not in his mirth: give him no despiteful words, and press not upon him with urging him +to drink. + +

+ + +

If you be made the master +of a feast, lift not yourself up, but be among them as one of the rest; take diligent care for them, and so sit down. + +And when you have done all your office, take your place, that you may be merry with them, and receive a crown for your well ordering of the feast. + +Speak, you that are the elder, for it becomes you, but with sound judgment; and hinder not musick. + +Pour not out words where there is a musician, and show not forth wisdom out of time. + +A concert of musick in a banquet of wine is as a signet of carbuncle set in gold. + +As a signet of an emerald set in a work of gold, so is the melody of musick with pleasant wine. + +Speak, young man, if there be need of you: and yet scarcely when you are twice asked. + +Let your speech be short, comprehending much in few words; be as one that knows and yet holds his tongue. + +If you be among great men, make not yourself equal with them; and when ancient men are in place, use not many words. + +Before the thunder goes lightning; and before a shamefaced man shall go favor. + +Rise up betimes, and be not the last; but get you home without delay. + +There take your pastime, and do what you will: but sin not by proud speech. + +And for these things bless him that made you, and has replenished you with his good things. + +Whoso fears the Lord will receive his discipline; and they that seek him early shall find favor. + +He that seeks the law shall be filled therewith: but the hypocrite will be offended thereat. + +They that fear the Lord shall find judgment, and shall kindle justice as a light. + +A sinful man will not be reproved, but finds an excuse according to his will. + +A man of counsel will be considerate; but a strange and proud man is not daunted with fear, even when of himself he has done without counsel. + +Do nothing without advice; and when you have once done, repent not. + +Go not in a way wherein you may fall, and stumble not among the stones. + +Be not confident in a plain way. + +And beware of your own children. + +In every good work trust your own soul; for this is the keeping of the commandments. + +He that believes in the Lord takes heed to the commandment; and he that trusts in him shall fare never the worse. + +

+ + +

There shall no evil happen to him that fears the Lord; but in temptation even again he will deliver him. + +A wise man hates not the law; but he that is an hypocrite therein is as a ship in a storm. + +A man of understanding trusts in the law; and the law is faithful to him, as an oracle. + +Prepare what to say, and so you shall be heard: and bind up instruction, and then make answer. + +The heart of the foolish is like a cartwheel; and his thoughts are like a rolling axle tree. + +A stallion horse is as a mocking friend, he neighs under every one that sits upon him. + +Why does one day excel another, when as all the light of every day in the year is of the sun? + +By the knowledge of the Lord they were distinguished: and he altered seasons and feasts. + +Some of them has he made high days, and hallowed them, and some of them has he made ordinary days. + +And all men are from the ground, and Adam was created of earth: + +In much knowledge the Lord has divided them, and made their ways diverse. + +Some of them has he blessed and exalted and some of them he sanctified, and set near himself: but some of them has he cursed and brought low, and turned out of their places. + +As the clay is in the potter's hand, to fashion it at his pleasure: so man is in the hand of him that made him, to render to them as likes him best. + +Good is set against evil, and life against death: so is the godly against the sinner, and the sinner against the godly. + +So look upon all the works of the most High; and there are two and two, one against another. + +I awaked up last of all, as one that gathers after the grape gatherers: by the blessing of the Lord I profited, and filled my winepress like a gatherer of grapes. + +Consider that I laboured not for myself only, but for all them that seek learning. + +Hear me, O you⌃ great men of the people, and listen with your ears, you⌃ rulers of the congregation. + +Give not your son and wife, your brother and friend, power over you while you live, and give not your goods to another: lest it repent you, and you entreat for the same again. + +As long as you live and have breath in you, give not yourself over to any. + +For better it is that your children should seek to you, than that you should stand to their courtesy. + +In all your works keep to yourself the preeminence; leave not a stain in your honor. + +At the time when you shall end your days, and finish your life, distribute your inheritance. + +Fodder, a wand, and burdens, are for the ass; and bread, correction, and work, for a servant. + +If you set your servant to labor, you shall find rest: but if you let him go idle, he shall seek liberty. + +A yoke and a collar do bow the neck: so are tortures and torments for an evil servant. + +Send him to labor, that he be not idle; for idleness teaches much evil. + +Set him to work, as is fit for him: if he be not obedient, put on more heavy fetters. + +But be not excessive toward any; and without discretion do nothing. + +If you have a servant, let him be to you as yourself, because you have bought him with a price. + +If you have a servant, entreat him as a brother: for you have need of him, as of your own soul: if you entreat him evil, and he run from you, which way will you go to seek him? + +

+ + +

The hopes of a man void of understanding are vain and false: and dreams lift up fools. + +Whoso regards dreams is like him that catches at a shadow, and follows after the wind. + +The vision of dreams is the resemblance of one thing to another, even as the likeness of a face to a face. + +Of an unclean thing what can be cleansed? and from that thing which is false what truth can come? + +Divinations, and soothsayings, and dreams, are vain: and the heart fancies, as a woman's heart in travail. + +If they be not sent from the most High in your visitation, set not your heart upon them. + +For dreams have deceived many, and they have failed that put their trust in them. + +The law shall be found perfect without lies: and wisdom is perfection to a faithful mouth. + +A man that has travelled knows many things; and he that has much experience will declare wisdom. + +He that has no experience knows little: but he that has travelled is full of prudence. + +When I travelled, I saw many things; and I understand more than I can express. + +I was ofttimes in danger of death: yet I was delivered because of these things. + +The spirit of those that fear the Lord shall live; for their hope is in him that saves them. + +Whoso fears the Lord shall not fear nor be afraid; for he is his hope. + +Blessed is the soul of him that fears the Lord: to whom does he look? and who is his strength? + +For the eyes of the Lord are upon them that love him, he is their mighty protection and strong stay, a defence from heat, and a cover from the sun at noon, a preservation from stumbling, and an help from falling. + +He raises up the soul, and lightens the eyes: he gives health, life, and blessing. + +He that sacrifices of a thing wrongfully gotten, his offering is ridiculous; and the gifts of unjust men are not accepted. + +The most High is not pleased with the offerings of the wicked; neither is he pacified for sin by the multitude of sacrifices. + +Whoso brings an offering of the goods of the poor does as one that kills the son before his father's eyes. + +The bread of the needy is their life: he that defrauds him thereof is a man of blood. + +He that takes away his neighbor's living slays him; and he that defrauds the labourer of his hire is a bloodshedder. + +When one builds, and another pulls down, what profit have they then but labor? + +When one prays, and another curses, whose voice will the Lord hear? + +He that washes himself after the touching of a dead body, if he touch it again, what avails his washing? + +So is it with a man that fasts for his sins, and goes again, and does the same: who will hear his prayer? or what does his humbling profit him? + +

+ + +

He that keeps the law brings offerings enough: he that takes heed to the commandment offers a peace offering. + +He that requites a good turn offers fine flour; and he that gives alms sacrifices praise. + +To depart from wickedness is a thing pleasing to the Lord; and to forsake unrighteousness is a propitiation. + +You shall not appear empty before the Lord. + +For all these things +are to be done because of the commandment. + +The offering of the righteous makes the altar fat, and the sweet savor thereof is before the most High. + +The sacrifice of a just man is acceptable. and the memorial thereof shall never be forgotten. + +Give the Lord his honor with a good eye, and diminish not the first fruits of your hands. + +In all your gifts show a cheerful countenance, and dedicate your tithes with gladness. + +Give to the most High according as he has enriched you; and as you have gotten, give with a cheerful eye. + +For the Lord recompenses, and will give you seven times as much. + +Do not think to corrupt with gifts; for such he will not receive: and trust not to unrighteous sacrifices; for the Lord is judge, and with him is no respect of persons. + +He will not accept any person against a poor man, but will hear the prayer of the oppressed. + +He will not despise the supplication of the fatherless; nor the widow, when she pours out her complaint. + +Do not the tears run down the widow's cheeks? and is not her cry against him that causes them to fall? + +He that serves the Lord shall be accepted with favor, and his prayer shall reach to the clouds. + +The prayer of the humble pierces the clouds: and till it come near, he will not be comforted; and will not depart, till the most High shall behold to judge righteously, and execute judgment. + +For the Lord will not be slack, neither will the Mighty be patient toward them, till he have struck in sunder the loins of the unmerciful, and repayed vengeance to the heathen; till he have taken away the multitude of the proud, and broken the sceptre of the unrighteous; + +Till he have rendered to every man according to his deeds, and to the works of men according to their devices; till he have judged the cause of his people, and made them to rejoice in his mercy. + +Mercy is seasonable in the time of affliction, as clouds of rain in the time of drought. + +

+ + +

Have mercy upon us, O Lord God of all, and behold us: + +And send your fear upon all the nations that seek not after you. + +Lift up your hand against the strange nations, and let them see your power. + +As you were sanctified in us before them: so be you magnified among them before us. + +And let them know you, as we have known you, that there is no God but only you, O God. + +Show new signs, and make other strange wonders: glorify your hand and your right arm, that they may set forth your wondrous works. + +Raise up indignation, and pour out wrath: take away the adversary, and destroy the enemy. + +Sake the time short, remember the covenant, and let them declare your wonderful works. + +Let him that escapes be consumed by the rage of the fire; and let them perish that oppress the people. + +Strike in sunder the heads of the rulers of the heathen, that say, There is none other but we. + +Gather all the tribes of Jacob together, and inherit you them, as from the beginning. Though I was the last to wake up, yet I received their inheritance as from the beginning. + +O Lord, have mercy upon the people that is called by your name, and upon Israel, whom you have named your firstborn. + +O be merciful to Jerusalem, your holy city, the place of your rest. + +Fill Sion with your unspeakable oracles, and your people with your glory: + +Give testimony to those that you have possessed from the beginning, and raise up prophets that have been in your name. + +Reward them that wait for you, and let your prophets be found faithful. + +O Lord, hear the prayer of your servants, according to the blessing of Aaron over your people, that all they which dwell upon the earth may know that you are the Lord, the eternal God. + +The belly devours all meats, yet is one meat better than another. + +As the palate tastes various kinds of venison: so does an heart of understanding false speeches. + +A froward heart causes heaviness: but a man of experience will recompense him. + +A woman will receive every man, yet is one daughter better than another. + +The beauty of a woman cheers the countenance, and a man loves nothing better. + +If there be kindness, meekness, and comfort, in her tongue, then is not her husband like other men. + +He that gets a wife begins a possession, a help like to himself, and a pillar of rest. + +Where no hedge is, there the possession is spoiled: and he that has no wife will wander up and down mourning. + +Who will trust a thief well appointed, that skips from city to city? so +who will believe a man that has no house, and lodges wherever the night takes him? + +

+ + +

Every friend says, I am his friend also: but there is a friend, which is only a friend in name. + +Is it not a grief to death, when a companion and friend is turned to an enemy? + +O wicked imagination, whence came you in to cover the earth with deceit? + +There is a companion, which rejoices in the prosperity of a friend, but in the time of trouble will be against him. + +There is a companion, which helps his friend for the belly, and takes up the buckler against the enemy. + +Forget not your friend in your mind, and be not unmindful of him in your riches. + +Every counsellor extols counsel; but there is some that counsels for himself. + +Beware of a counsellor, and know before what need he has; for he will counsel for himself; lest he cast the lot upon you, + +And say to you, Your way is good: and afterward he stand on the other side, to see what shall befall you. + +Consult not with one that suspects you: and hide your counsel from such as envy you. + +Neither consult with a woman touching her of whom she is jealous; neither with a coward in matters of war; nor with a merchant concerning exchange; nor with a buyer of selling; nor with an envious man of thankfulness; nor with an unmerciful man touching kindness; nor with the slothful for any work; nor with an hireling for a year of finishing work; nor with an idle servant of much business: listen not to these in any matter of counsel. + +But be continually with a godly man, whom you know to keep the commandments of the Lord, whose, mind is according to your mind, and will sorrow with you, if you shall miscarry. + +And let the counsel of your own heart stand: for there is no man more faithful to you than it. + +For a man's mind is sometime wont to tell him more than seven watchmen, that sit above in an high tower. + +And above all this pray to the most High, that he will direct your way in truth. + +Let reason go before every enterprise, and counsel before every action. + +The countenance is a sign of changing of the heart. + +Four manner of things appear: good and evil, life and death: but the tongue rules over them continually. + +There is one that is wise and teaches many, and yet is unprofitable to himself. + +There is one that shows wisdom in words, and is hated: he shall be destitute of all food. + +For grace is not given, him from the Lord, because he is deprived of all wisdom. + +Another is wise to himself; and the fruits of understanding are commendable in his mouth. + +A wise man instructs his people; and the fruits of his understanding fail not. + +A wise man shall be filled with blessing; and all they that see him shall count him happy. + +The days of the life of man may be numbered: but the days of Israel are innumerable. + +A wise man shall inherit glory among his people, and his name shall be perpetual. + +My son, prove your soul in your life, and see what is evil for it, and give not that to it. + +For all things are not profitable for all men, neither has every soul pleasure in every thing. + +Be not unsatiable in any dainty thing, nor too greedy upon meats: + +For excess of meats brings sickness, and surfeiting will turn into choler. + +By surfeiting have many perished; but he that takes heed prolongs his life. + +

+ + +

Honor a physician with the honor due to him for the uses which you⌃ may have of him: for the Lord has created him. + +For of the most High comes healing, and he shall receive honor of the king. + +The skill of the physician shall lift up his head: and in the sight of great men he shall be in admiration. + +The Lord has created medicines out of the earth; and he that is wise will not abhor them. + +Was not the water made sweet with wood, that the virtue thereof might be known? + +And he has given men skill, that he might be honored in his marvelous works. + +With such does he heal +men, and takes away their pains. + +Of such does the apothecary make a confection; and of his works there is no end; and from him is peace over all the earth, + +My son, in your sickness be not negligent: but pray to the Lord, and he will make you whole. + +Leave off from sin, and order your hands aright, and cleanse your heart from all wickedness. + +Give a sweet savor, and a memorial of fine flour; and make a fat offering, as not being. + +Then give place to the physician, for the Lord has created him: let him not go from you, for you have need of him. + +There is a time when in their hands there is good success. + +For they shall also pray to the Lord, that he would prosper that, which they give for ease and remedy to prolong life. + +He that sins before his Maker, let him fall into the hand of the physician. + +My son, let tears fall down over the dead, and begin to lament, as if you had suffered great harm yourself; and then cover his body according to the custom, and neglect not his burial. + +Weep bitterly, and make great moan, and use lamentation, as he is worthy, and that a day or two, lest you be evil spoken of: and then comfort yourself for your heaviness. + +For of heaviness comes death, and the heaviness of the heart breaks strength. + +In affliction also sorrow remains: and the life of the poor is the curse of the heart. + +Take no heaviness to heart: drive it away, and member the last end. + +Forget it not, for there is no turning again: you shall not do him good, but hurt yourself. + +Remember my judgment: for your also shall be so; yesterday for me, and to day for you. + +When the dead is at rest, let his remembrance rest; and be comforted for him, when his Spirit is departed from him. + +The wisdom of a learned man comes by opportunity of leisure: and he that has little business shall become wise. + +How can he get wisdom that holds the plow, and that glories in the goad, that drives oxen, and is occupied in their labors, and whose talk is of bullocks? + +He gives his mind to make furrows; and is diligent to give the kine fodder. + +So every carpenter and workmaster, that labores night and day: and they that cut and grave seals, and are diligent to make great variety, and give themselves to counterfeit imagery, and watch to finish a work: + +The smith also sitting by the anvil, and considering the iron work, the vapor of the fire wastes his flesh, and he fights with the heat of the furnace: the noise of the hammer and the anvil is ever in his ears, and his eyes look still upon the pattern of the thing that he makes; he sets his mind to finish his work, and watches to polish it perfectly: + +So does the potter sitting at his work, and turning the wheel about with his feet, who is always carefully set at his work, and makes all his work by number; + +He fashions the clay with his arm, and bows down his strength before his feet; he applies himself to lead it over; and he is diligent to make clean the furnace: + +All these trust to their hands: and every one is wise in his work. + +Without these can’t a city be inhabited: and they shall not dwell where they will, nor go up and down: + +They shall not be sought for in publick counsel, nor sit high in the congregation: they shall not sit on the judges' seat, nor understand the sentence of judgment: they can’t declare justice and judgment; and they shall not be found where parables are spoken. + +But they will maintain the state of the world, and +all their desire is in the work of their craft. + +

+ + +

But he that gives his mind to the law of the most High, and is occupied in the meditation thereof, will seek out the wisdom of all the ancient, and be occupied in prophecies. + +He will keep the sayings of the renowned men: and where subtle parables are, he will be there also. + +He will seek out the secrets of grave sentences, and be conversant in dark parables. + +He shall serve among great men, and appear before princes: he will travel through strange countries; for he has tried the good and the evil among men. + +He will give his heart to resort early to the Lord that made him, and will pray before the most High, and will open his mouth in prayer, and make supplication for his sins. + +When the great Lord will, he shall be filled with the spirit of understanding: he shall pour out wise sentences, and give thanks to the Lord in his prayer. + +He shall direct his counsel and knowledge, and in his secrets shall he meditate. + +He shall show forth that which he has learned, and shall glory in the law of the covenant of the Lord. + +Many shall commend his understanding; and so long as the world endures, it shall not be blotted out; his memorial shall not depart away, and his name shall live from generation to generation. + +Nations shall show forth his wisdom, and the congregation shall declare his praise. + +If he die, he shall leave a greater name than a thousand: and if he live, he shall increase it. + +Yet have I more to say, which I have thought upon; for I am filled as the moon at the full. + +Listen to me, you⌃ holy children, and bud forth as a rose growing by the brook of the field: + +And give you⌃ a sweet savor as frankincense, and flourish as a lily, send forth a smell, and sing a song of praise, bless the Lord in all his works. + +Magnify his name, and show forth his praise with the songs of your lips, and with harps, and in praising him you⌃ shall say after this manner: + +All the works of the Lord are exceeding good, and whatever he commands shall be accomplished in due season. + +And none may say, What is this? therefore is that? for at time convenient they shall all be sought out: at his commandment the waters stood as an heap, and at the words of his mouth the receptacles of waters. + +At his commandment is done whatever pleases him; and none can hinder, when he will save. + +The works of all flesh are before him, and nothing can be hid from his eyes. + +He sees from everlasting to everlasting; and there is nothing wonderful before him. + +A man need not to say, What is this? therefore is that? for he has made all things for their uses. + +His blessing covered the dry land as a river, and watered it as a flood. + +As he has turned the waters into saltness: so shall the heathen inherit his wrath. + +As his ways are plain to the holy; so are they stumbling blocks to the wicked. + +For the good are good things created from the beginning: so evil things for sinners. + +The principal things for the whole use of man's life are water, fire, iron, and salt, flour of wheat, honey, milk, and the blood of the grape, and oil, and clothing. + +All these things are for good to the godly: so to the sinners they are turned into evil. + +There be spirits that are created for vengeance, which in their fury lay on sore strokes; in the time of destruction they pour out their force, and appease the wrath of him that made them. + +Fire, and hail, and famine, and death, all these were created for vengeance; + +Teeth of wild beasts, and scorpions, serpents, and the sword punishing the wicked to destruction. + +They shall rejoice in his commandment, and they shall be ready upon earth, when need is; and when their time is come, they shall not transgress his word. + +Therefore from the beginning I was resolved, and thought upon these things, and have left them in writing. + +All the works of the Lord are good: and he will give every needful thing in due season. + +So that a man can’t say, This is worse than that: for in time they shall all be well approved. + +And therefore praise you⌃ the Lord with the whole heart and mouth, and bless the name of the Lord. + +

+ + +

Great travail is created for every man, and an heavy yoke is upon the sons of Adam, from the day that they go out of their mother's womb, till the day that they return to the mother of all things. + +Their imagination of things to come, and the day of death, +trouble their thoughts, and +cause fear of heart; + +From him that sits on a throne of glory, to him that is humbled in earth and ashes; + +From him that wears purple and a crown, to him that is clothed with a linen frock. + +Wrath, and envy, trouble, and unquietness, fear of death, and anger, and strife, and in the time of rest upon his bed his night sleep, do change his knowledge. + +A little or nothing is his rest, and afterward he is in his sleep, as in a day of keeping watch, troubled in the vision of his heart, as if he were escaped out of a battle. + +When all is safe, he awakens, and marvels that the fear was nothing. + + +Such things happen to all flesh, both man and beast, and that is sevenfold more upon sinners. + +Death, and bloodshed, strife, and sword, calamities, famine, tribulation, and the scourge; + +These things are created for the wicked, and for their sakes came the flood. + +All things that are of the earth shall turn to the earth again: and that which is of the waters does return into the sea. + +All bribery and injustice shall be blotted out: but true dealing shall endure for ever. + +The goods of the unjust shall be dried up like a river, and shall vanish with noise, like a great thunder in rain. + +While he opens his hand he shall rejoice: so shall transgressors come to nothing. + +The children of the ungodly shall not bring forth many branches: but are as unclean roots upon a hard rock. + +The weed growing upon every water and bank of a river shall be pulled up before all grass. + +Bountifulness is as a most fruitful garden, and mercifulness endures for ever. + +To labor, and to be content with that a man has, is a sweet life: but he that finds a treasure is above them both. + +Children and the building of a city continue a man's name: but a blameless wife is counted above them both. + +Wine and musick rejoice the heart: but the love of wisdom is above them both. + +The pipe and the lute make sweet melody: but a pleasant tongue is above them both. + +Your eye desires favor and beauty: but more than both corn while it is green. + +A friend and companion never meet amiss: but above both is a wife with her husband. + +Brethren and help are against time of trouble: but alms shall deliver more than them both. + +Gold and silver make the foot stand sure: but counsel is esteemed above them both. + +Riches and strength lift up the heart: but the fear of the Lord is above them both: there is no lack in the fear of the Lord, and it needs not to seek help. + +The fear of the Lord is a fruitful garden, and covers him above all glory. + +My son, lead not a beggar's life; for better it is to die than to beg. + +The life of him that depends on another man's table is not to be counted for a life; for he pollutes himself with other men's meat: but a wise man well nurtured will beware thereof. + +Begging is sweet in the mouth of the shameless: but in his belly there shall burn a fire. + +

+ + +

O death, how bitter is the remembrance of you to a man that lives at rest in his possessions, to the man that has nothing to vex him, and that has prosperity in all things: yes, to him that is yet able to receive meat! + +O death, acceptable is your sentence to the needy, and to him whose strength fails, that is now in the last age, and is vexed with all things, and to him that despairs, and has lost patience! + +Fear not the sentence of death, remember them that have been before you, and that come after; for this is the sentence of the Lord over all flesh. + +And why are you against the pleasure of the most High? there is no inquisition in the grave, whether you have lived ten, or one hundred, or a thousand years. + +The children of sinners are abominable children, and they that are conversant in the dwelling of the ungodly. + +The inheritance of sinners' children shall perish, and their posterity shall have a perpetual reproach. + +The children will complain of an ungodly father, because they shall be reproached for his sake. + +Woe be to you, ungodly men, which have forsaken the law of the most high God! for if you⌃ increase, it shall be to your destruction: + +And if you⌃ be born, you⌃ shall be born to a curse: and if you⌃ die, a curse shall be your portion. + +All that are of the earth shall turn to earth again: so the ungodly shall go from a curse to destruction. + +The mourning of men is about their bodies: but an ill name of sinners shall be blotted out. + +Have regard to your name; for that shall continue with you above a thousand great treasures of gold. + +A good life has but few days: but a good name endures for ever. + +My children, keep discipline in peace: for wisdom that is hid, and a treasure that is not seen, what profit is in them both? + +A man that hides his foolishness is better than a man that hides his wisdom. + +Therefore be shamefaced according to my word: for it is not good to retain all shamefacedness; neither is it altogether approved in every thing. + +Be ashamed of whoredom before father and mother: and of a lie before a prince and a mighty man; + +Of an offense before a judge and ruler; of iniquity before a congregation and people; of unjust dealing before your partner and friend; + +And of theft in regard of the place where you sojourn, and in regard of the truth of God and his covenant; and to lean with your elbow upon the meat; and of scorning to give and take; + +And of silence before them that salute you; and to look upon an harlot; + +And to turn away your face from your kinsman; or to take away a portion or a gift; or to gaze upon another man's wife. + +Or to be overbusy with his maid, and come not near her bed; or of upbraiding speeches before friends; and after you have given, upbraid not; + +

+ + +

Or of iterating and speaking again that which you have heard; and of revealing of secrets. So shall you be truly shamefaced and find favor before all men. Of these things be not you ashamed, and accept no person to sin thereby: + +Of the law of the most High, and his covenant; and of judgment to justify the ungodly; + +Of reckoning with your partners and travellers; or of the gift of the heritage of friends; + +Of exactness of balance and weights; or of getting much or little; + +And of merchants' indifferent selling; of much correction of children; and to make the side of an evil servant to bleed. + +Sure keeping is good, where an evil wife is; and shut up, where many hands are. + +Deliver all things in number and weight; and put all in writing that you give out, or receive in. + +Be not ashamed to inform the unwise and foolish, and the extreme aged that contends with those that are young: thus shall you be truly learned, and approved of all men living. + +A daughter is a wakeful care to a father; and the care for her takes away sleep: when she is young, lest she pass away the flower of her age; and being married, lest she should be hated: + +In her virginity, lest she should be defiled and gotten with child in her father's house; and having an husband, lest she should misbehave herself; and when she is married, lest she should be barren. + +Keep a sure watch over a shameless daughter, lest she make you a laughing stock to your enemies, and a byword in the city, and a reproach among the people, and make you ashamed before the multitude. + +Behold not every body's beauty, and sit not in the midst of women. + +For from garments comes a moth, and from women wickedness. + +Better is the churlishness of a man than a courteous woman, a woman, I say, which brings shame and reproach. + +I will now remember the works of the Lord, and declare the things that I have seen: In the words of the Lord are his works. + +The sun that gives light looks upon all things, and the work thereof is full of the glory of the Lord. + +The Lord has not given power to the saints to declare all his marvelous works, which the Almighty Lord firmly settled, that whatever is might be established for his glory. + +He seeks out the deep, and the heart, and considers their crafty devices: for the Lord knows all that may be known, and he sees the signs of the world. + +He declares the things that are past, and for to come, and reveals the steps of hidden things. + +No thought escapes him, neither any word is hidden from him. + +He has garnished the excellent works of his wisdom, and he is from everlasting to everlasting: to him may nothing be added, neither can he be diminished, and he has no need of any counsellor. + +Oh how desirable are all his works! and that a man may see even to a spark. + +All these things live and remain for ever for all uses, and they are all obedient. + +All things are double one against another: and he has made nothing imperfect. + +One thing establishes the good or another: and who shall be filled with beholding his glory? + +

+ + +

The pride of the height, the clear firmament, the beauty of heaven, with his glorious show; + +The sun when it appears, declaring at his rising a marvelous instrument, the work of the most High: + +At noon it parches the country, and who can abide the burning heat thereof? + +A man blowing a furnace is in works of heat, but the sun burns the mountains three times more; breathing out fiery vapours, and sending forth bright beams, it dims the eyes. + +Great is the Lord that made it; and at his commandment runs hastily. + +He made the moon also to serve in her season for a declaration of times, and a sign of the world. + +From the moon is the sign of feasts, a light that decreases in her perfection. + +The month is called after her name, increasing wonderfully in her changing, being an instrument of the armies above, shining in the firmament of heaven; + +The beauty of heaven, the glory of the stars, an ornament giving light in the highest places of the Lord. + +At the commandment of the Holy One they will stand in their order, and never faint in their watches. + +Look upon the rainbow, and praise him that made it; very beautiful it is in the brightness thereof. + +It encircles the heaven about with a glorious circle, and the hands of the most High have bended it. + +By his commandment he makes the snow to fall apace, and sends swiftly the lightnings of his judgment. + +Through this the treasures are opened: and clouds fly forth as fowls. + +By his great power he makes the clouds firm, and the hailstones are broken small. + +At his sight the mountains are shaken, and at his will the south wind blows. + +The noise of the thunder makes the earth to tremble: so does the northern storm and the whirlwind: as birds flying he scatters the snow, and the falling down thereof is as the lighting of grasshoppers: + +The eye marvels at the beauty of the whiteness thereof, and the heart is astonished at the raining of it. + +The hoarfrost also as salt he pours on the earth, and being congealed, it lies on the top of sharp stakes. + +When the cold north wind blows, and the water is congealed into ice, it remains upon every gathering together of water, and clothes the water as with a breastplate. + +It devours the mountains, and burns the wilderness, and consumes the grass as fire. + +A present remedy of all is a mist coming speedily, a dew coming after heat refreshes. + +By his counsel he appeases the deep, and plants islands therein. + +They that sail on the sea tell of the danger thereof; and when we hear it with our ears, we marvel thereat. + +For therein be strange and wondrous works, variety of all kinds of beasts and whales created. + +By him the end of them has prosperous success, and by his word all things consist. + +We may speak much, and yet come short: therefore in sum, he is all. + +How shall we be able to magnify him? for he is great above all his works. + +The Lord is terrible and very great, and marvelous is his power. + +When you⌃ glorify the Lord, exalt him as much as you⌃ can; for even yet will he far exceed: and when you⌃ exalt him, put forth all your strength, and be not weary; for you⌃ can never go far enough. + +Who has seen him, that he might tell us? and who can magnify him as he is? + +There are yet hid greater things than these be, for we have seen but a few of his works. + +For the Lord has made all things; and to the godly has he given wisdom. + +

+ + +

Let us now praise famous men, and our fathers that became the father of us. + +The Lord has wrought great glory by them through his great power from the beginning. + +Such as did bear rule in their kingdoms, men renowned for their power, giving counsel by their understanding, and declaring prophecies: + +Leaders of the people by their counsels, and by their knowledge of learning meet for the people, wise and eloquent are their instructions: + +Such as found out musical tunes, and recited verses in writing: + +Rich men furnished with ability, living peaceably in their habitations: + +All these were honored in their generations, and were the glory of their times. + +There be of them, that have left a name behind them, that their praises might be reported. + +And some there be, which have no memorial; who are perished, as though they had never been; and are become as though they had never been born; and their children after them. + +But these were merciful men, whose righteousness has not been forgotten. + +With their seed shall continually remain a good inheritance, and their children are within the covenant. + +Their seed stands fast, and their children for their sakes. + +Their seed shall remain for ever, and their glory shall not be blotted out. + +Their bodies are buried in peace; but their name lives for evermore. + +The people will tell of their wisdom, and the congregation will show forth their praise. + +Enoch pleased the Lord, and was translated, being an example of repentance to all generations. + +Noah was found perfect and righteous; in the time of wrath he was taken in exchange +for the world; therefore was he left as a remnant to the earth, when the flood came. + +An everlasting covenant was made with him, that all flesh should perish no more by the flood. + +Abraham was a great father of many people: in glory was there none like to him; + +Who kept the law of the most High, and was in covenant with him: he established the covenant in his flesh; and when he was proved, he was found faithful. + +Therefore he assured him by an oath, that he would bless the nations in his seed, and that he would multiply him as the dust of the earth, and exalt his seed as the stars, and cause them to inherit from sea to sea, and from the river to the utmost part of the land. + +With Isaac did he establish likewise +for Abraham his father's sake the blessing of all men, and the covenant, + +And made it rest upon the head of Jacob. He acknowledged him in his blessing, and gave him an heritage, and divided his portions; among the twelve tribes did he part them. + +And he brought out of him a merciful man, which found favor in the sight of all flesh, even Moses, beloved of God and men, whose memorial is blessed. + +

+ + +

He made him like to the glorious saints, and magnified him, so that his enemies stood in fear of him. + +By his words he caused the wonders to cease, and he made him glorious in the sight of kings, and gave him a commandment for his people, and showed him part of his glory. + +He sanctified him in his faithfulness and meekness, and chose him out of all men. + +He made him to hear his voice, and brought him into the dark cloud, and gave him commandments before his face, even the law of life and knowledge, that he might teach Jacob his covenants, and Israel his judgments. + +He exalted Aaron, an holy man like to him, even his brother, of the tribe of Levi. + +An everlasting covenant he made with him and gave him the priesthood among the people; he beautified him with comely ornaments, and clothed him with a robe of glory. + +He put upon him perfect glory; and strengthened him with rich garments, with breeches, with a long robe, and the ephod. + +And he compassed him with pomegranates, and with many golden bells round about, that as he went there might be a sound, and a noise made that might be heard in the temple, for a memorial to the children of his people; + +With an holy garment, with gold, and blue silk, and purple, the work of the embroiderer, with a breastplate of judgment, and with Urim and Thummim; + +With twisted scarlet, the work of the cunning workman, with precious stones graven like seals, and set in gold, the work of the jeweller, with a writing engraved for a memorial, after the number of the tribes of Israel. + +He set a crown of gold upon the mitre, wherein was engraved Holiness, an ornament of honor, a costly work, the desires of the eyes, goodly and beautiful. + +Before him there were none such, neither did ever any stranger put them on, but only his children and his children's children perpetually. + +Their sacrifices shall be wholly consumed every day twice continually. + +Moses consecrated him, and anointed him with holy oil: this was appointed to him by an everlasting covenant, and to his seed, so long as the heavens should remain, that they should minister to him, and execute the office of the priesthood, and bless the people in his name. + +He chose him out of all men living to offer sacrifices to the Lord, incense, and a sweet savor, for a memorial, to make reconciliation for his people. + +He gave to him his commandments, and authority in the statutes of judgments, that he should teach Jacob the testimonies, and inform Israel in his laws. + +Strangers conspired together against him, and maligned him in the wilderness, even the men that were of Dathan's and Abiron's side, and the congregation of Core, with fury and wrath. + +This the Lord saw, and it displeased him, and in his wrathful indignation were they consumed: he did wonders upon them, to consume them with the fiery flame. + +But he made Aaron more honorable, and gave him an heritage, and divided to him the first fruits of the increase; especially he prepared bread in abundance: + +For they eat of the sacrifices of the Lord, which he gave to him and his seed. + +Howbeit in the land of the people he had no inheritance, neither had he any portion among the people: for the Lord himself is his portion and inheritance. + +The third in glory is Phinees the son of Eleazar, because he had zeal in the fear of the Lord, and stood up with good courage of heart: when the people were turned back, and made reconciliation for Israel. + +Therefore was there a covenant of peace made with him, that he should be the chief of the sanctuary and of his people, and that he and his posterity should have the dignity of the priesthood for ever: + +According to the covenant made with David son of Jesse, of the tribe of Juda, that the inheritance of the king should be to his posterity alone: so the inheritance of Aaron should also be to his seed. + +God give you wisdom in your heart to judge his people in righteousness, that their good things be not abolished, and that their glory may endure for ever. + +

+ + +

Jesus the son a Nave was valiant in the wars, and was the successor of Moses in prophecies, who according to his name was made great for the saving of the elect of God, and taking vengeance of the enemies that rose up against them, that he might set Israel in their inheritance. + +How great glory got he, when he did lift up his hands, and stretched out his sword against the cities! + +Who before him so stood to it? for the Lord himself brought his enemies to him. + +Did not the sun go back by his means? and was not one day as long as two? + +He called upon the most high Lord, when the enemies pressed upon him on every side; and the great Lord heard him. + +And with hailstones of mighty power he made the battle to fall violently upon the nations, and in the descent +of Beth-horon he destroyed them that resisted, that the nations might know all their strength, because he fought in the sight of the Lord, and he followed the Mighty One. + +In the time of Moses also he did a work of mercy, he and Caleb the son of Jephunne, in that they withstood the congregation, and withheld the people from sin, and appeased the wicked murmuring. + +And of six hundred thousand people on foot, they two were preserved to bring them in to the heritage, even to the land that flows with milk and honey. + +The Lord gave strength also to Caleb, which remained with him to his old age: so that he entered upon the high places of the land, and his seed obtained it for an heritage: + +That all the children of Israel might see that it is good to follow the Lord. + +And concerning the judges, every one by name, whose heart went not a whoring, nor departed from the Lord, let their memory be blessed. + +Let their bones flourish out of their place, and let the name of them that were honored be continued upon their children. + +Samuel, the prophet of the Lord, beloved of his Lord, established a kingdom, and anointed princes over his people. + +By the law of the Lord he judged the congregation, and the Lord had respect to Jacob. + +By his faithfulness he was found a true prophet, and by his word he was known to be faithful in vision. + +He called upon the mighty Lord, when his enemies pressed upon him on every side, when he offered the sucking lamb. + +And the Lord thundered from heaven, and with a great noise made his voice to be heard. + +And he destroyed the rulers of the Tyrians, and all the princes of the Philistines. + +And before his long sleep he made protestations in the sight of the Lord and his anointed, I have not taken any man's goods, so much as a shoe: and no man did accuse him. + +And after his death he prophesied, and showed the king his end, and lifted up his voice from the earth in prophecy, to blot out the wickedness of the people. + +

+ + +

And after him rose up Nathan to prophesy in the time of David. + +As is the fat taken away from the peace offering, so was David chosen out of the children of Israel. + +He played with lions as with kids, and with bears as with lambs. + +Slew he not a giant, when he was yet but young? and did he not take away reproach from the people, when he lifted up his hand with the stone in the sling, and beat down the boasting of Goliath? + +For he called upon the most high Lord; and he gave him strength in his right hand to kill that mighty warrior, and set up the horn of his people. + +So the people honored him with ten thousands, and praised him in the blessings of the Lord, in that he gave him a crown of glory. + +For he destroyed the enemies on every side, and brought to nothing the Philistines his adversaries, and brake their horn in sunder to this day. + +In all his works he praised the Holy One most high with words of glory; with his whole heart he sung songs, and loved him that made him. + +He set singers also before the altar, that by their voices they might make sweet melody, and daily sing praises in their songs. + +He beautified their feasts, and set in order the solemn times until the end, that they might praise his holy name, and that the temple might sound from morning. + +The Lord took away his sins, and exalted his horn for ever: he gave him a covenant of kings, and a throne of glory in Israel. + +After him rose up a wise son, and for his sake he lived at large. + +Solomon reigned in a peaceful time, and was honored; for God made all quiet round about him, that he might build an house in his name, and prepare his sanctuary for ever. + +How wise was you in your youth and, as a flood, filled with understanding! + +Your soul covered the whole earth, and you filled it with dark parables. + +Your name went far to the islands; and for your peace you were beloved. + +The countries marveled at you for your songs, and proverbs, and parables, and interpretations. + +By the name of the Lord God, which is called the Lord God of Israel, you did gather gold as tin and did multiply silver as lead. + +You did bow your loins to women, and by your body you were brought into subjection. + +You did stain your honor, and pollute your seed: so that you brought wrath upon your children, and was grieved for your folly. + +So the kingdom was divided, and out of Ephraim ruled a rebellious kingdom. + +But the Lord will never leave off his mercy, neither shall any of his works perish, neither will he abolish the posterity of his elect, and the seed of him that loves him he will not take away: therefore he gave a remnant to Jacob, and out of him a root to David. + +Thus rested Solomon with his fathers, and of his seed he left behind him Roboam, even the foolishness of the people, and one that had no understanding, who turned away the people through his counsel. There was also Jeroboam the son of Nebat, who caused Israel to sin, and showed Ephraim the way of sin: + +And their sins were multiplied exceedingly, that they were driven out of the land. + +For they sought out all wickedness, till the vengeance came upon them. + +

+ + +

Then stood up Elias the prophet as fire, and his word burned like a lamp. + +He brought a sore famine upon them, and by his zeal he diminished their number. + +By the word of the Lord he shut up the heaven, and also three times brought down fire. + +O Elias, how was you honored in your wondrous deeds! and who may glory like to you! + +Who did raise up a dead man from death, and his soul from the place of the dead, by the word of the most High: + +Who brought kings to destruction, and honorably men from their bed: + +Who heard the rebuke of the Lord in Sinai, and in Horeb the judgment of vengeance: + +Who anointed kings to take revenge, and prophets to succeed after him: + +Who was taken up in a whirlwind of fire, and in a chariot of fiery horses: + +Who was ordained for reproofs in their times, to pacify the wrath of the Lord's judgment, before it brake forth into fury, and to turn the heart of the father to the son, and to restore the tribes of Jacob. + +Blessed are they that saw you, and slept in love; for we shall surely live. + +Elias it was, who was covered with a whirlwind: and Eliseus was filled with his spirit: while he lived, he was not moved with the presence of any prince, neither could any bring him into subjection. + +No word could overcome him; and after his death his body prophesied. + +He did wonders in his life, and at his death were his works marvelous. + +For all this the people repented not, neither departed they from their sins, till they were spoiled and carried out of their land, and were scattered through all the earth: yet there remained a small people, and a ruler in the house of David: + +Of whom some did that which was pleasing to God, and some multiplied sins. + +Ezekias fortified his city, and brought in water into the midst thereof: he digged the hard rock with iron, and made wells for waters. + +In his time Sennacherib came up, and sent Rabsaces, and lifted up his hand against Sion, and boasted proudly. + +Then trembled their hearts and hands, and they were in pain, as women in travail. + +But they called upon the Lord which is merciful, and stretched out their hands toward him: and immediately the Holy One heard them out of heaven, and delivered them by the ministry of Esay. + +He struck the host of the Assyrians, and his angel destroyed them. + +For Ezekias had done the thing that pleased the Lord, and was strong in the ways of David his father, as Esay the prophet, who was great and faithful in his vision, had commanded him. + +In his time the sun went backward, and he lengthened the king's life. + +He saw by an excellent spirit what should come to pass at the last, and he comforted them that mourned in Sion. + +He showed what should come to pass for ever, and secret things or ever they came. + +

+ + +

The remembrance of Josias is like the composition of the perfume that is made by the art of the apothecary: it is sweet as honey in all mouths, and as musick at a banquet of wine. + +He behaved himself uprightly in the conversion of the people, and took away the abominations of iniquity. + +He directed his heart to the Lord, and in the time of the ungodly he established the worship of God. + +All, except David and Ezekias and Josias, were defective: for they forsook the law of the most High, even the kings of Juda failed. + +Therefore he gave their power to others, and their glory to a strange nation. + +They burnt the chosen city of the sanctuary, and made the streets desolate, according to the prophecy of Jeremias. + +For they entreated him evil, who nevertheless was a prophet, sanctified in his mother's womb, that he might root out, and afflict, and destroy; and that he might build up also, and plant. + +It was Ezekiel who saw the glorious vision, which was showed him upon the chariot of the cherubims. + +For he made mention of the enemies under the figure of the rain, and directed them that went right. + +And of the twelve prophets let the memorial be blessed, and let their bones flourish again out of their place: for they comforted Jacob, and delivered them by assured hope. + +How shall we magnify Zorobabel? even he was as a signet on the right hand: + +So was Jesus the son of Josedec: who in their time builded the house, and set up an holy temple to the Lord, which was prepared for everlasting glory. + +And among the elect was Neemias, whose renown is great, who raised up for us the walls that were fallen, and set up the gates and the bars, and raised up our ruins again. + +But upon the earth was no man created like Enoch; for he was taken from the earth. + +Neither was there a young man born like Joseph, a governor of his brethren, a stay of the people, whose bones were regarded of the Lord. + +Sem and Seth were in great honor among men, and so was Adam above every living thing in creation. + +

+ + +

Simon the high priest, the son of Onias, who in his life repaired the house again, and in his days fortified the temple: + +And by him was built from the foundation the double height, the high fortress of the wall about the temple: + +In his days the cistern to receive water, being in compass as the sea, was covered with plates of brass: + +He took care of the temple that it should not fall, and fortified the city against besieging: + +How was he honored in the midst of the people in his coming out of the sanctuary! + +He was as the morning star in the midst of a cloud, and as the moon at the full: + +As the sun shining upon the temple of the most High, and as the rainbow giving light in the bright clouds: + +And as the flower of roses in the spring of the year, as lilies by the rivers of waters, and as the branches of the frankincense tree in the time of summer: + +As fire and incense in the censer, and as a vessel of beaten gold set with all manner of precious stones: + +And as a fair olive tree budding forth fruit, and as a cypress tree which grows up to the clouds. + +When he put on the robe of honor, and was clothed with the perfection of glory, when he went up to the holy altar, he made the garment of holiness honorable. + +When he took the portions out of the priests' hands, he himself stood by the hearth of the altar, compassed about, as a young cedar in Libanus; and as palm trees compassed they him round about. + +So were all the sons of Aaron in their glory, and the oblations of the Lord in their hands, before all the congregation of Israel. + +And finishing the service at the altar, that he might adorn the offering of the most high Almighty, + +He stretched out his hand to the cup, and poured of the blood of the grape, he poured out at the foot of the altar a sweet smelling savor to the most high King of all. + +Then shouted the sons of Aaron, and sounded the silver trumpets, and made a great noise to be heard, for a remembrance before the most High. + +Then all the people together hasted, and fell down to the earth upon their faces to worship their Lord God Almighty, the most High. + +The singers also sang praises with their voices, with great variety of sounds was there made sweet melody. + +And the people implored the Lord, the most High, by prayer before him that is merciful, till the solemnity of the Lord was ended, and they had finished his service. + +Then he went down, and lifted up his hands over the whole congregation of the children of Israel, to give the blessing of the Lord with his lips, and to rejoice in his name. + +And they bowed themselves down to worship the second time, that they might receive a blessing from the most High. + +Now therefore bless you⌃ the God of all, which only does wondrous things every where, which exalts our days from the womb, and deals with us according to his mercy. + +He grant us joyfulness of heart, and that peace may be in our days in Israel for ever: + +That he would confirm his mercy with us, and deliver us at his time! + +There be two manner of nations which my heart abhorrs, and the third is no nation: + +They that sit upon the mountain of Samaria, and they that dwell among the Philistines, and that foolish people that dwell in Sichem. + +Jesus the son of Sirach of Jerusalem has written in this book the instruction of understanding and knowledge, who out of his heart poured forth wisdom. + +Blessed is he that shall be exercised in these things; and he that lays them up in his heart shall become wise. + +For if he do them, he shall be strong to all things: for the light of the Lord leads him, who gives wisdom to the godly. Blessed be the name of the Lord for ever. Amen, Amen. + +

+ + +

I will thank you, O Lord and King, and praise you, O God my Saviour: I do give praise to your name: + +For you are my defender and helper, and has preserved my body from destruction, and from the snare of the slanderous tongue, and from the lips that forge lies, and has been my helper against my adversaries: + +And have delivered me, according to the multitude of your mercies and greatness of your name, from the teeth of them that were ready to devour me, and out of the hands of such as sought after my life, and from the manifold afflictions which I had; + +From the choking of fire on every side, and from the midst of the fire which I kindled not; + +From the depth of the belly of hell, from an unclean tongue, and from lying words. + +By an accusation to the king from an unrighteous tongue my soul drew near even to death, my life was near to the hell beneath. + +They compassed me on every side, and there was no man to help me: I looked for the succour of men, but there was none. + +Then thought I upon your mercy, O Lord, and upon your acts of old, how you deliver such as wait for you, and save them out of the hands of the enemies. + +Then lifted I up my supplications from the earth, and prayed for deliverance from death. + +I called upon the Lord, the Father of my Lord, that he would not leave me in the days of my trouble, and in the time of the proud, when there was no help. + +I will praise your name continually, and will sing praises with thanksgiving; and so my prayer was heard: + +For you saved me from destruction, and delivered me from the evil time: therefore will I give thanks, and praise you, and bless they name, O Lord. + +When I was yet young, or ever I went abroad, I desired wisdom openly in my prayer. + +I prayed for her before the temple, and will seek her out even to the end. + +Even from the flower till the grape was ripe has my heart delighted in her: my foot went the right way, from my youth up sought I after her. + +I bowed down my ear a little, and received her, and got much learning. + +I profited therein, therefore will I ascribe glory to him that gives me wisdom. + +For I purposed to do after her, and earnestly I followed that which is good; so shall I not be confounded. + +My soul has wrestled with her, and in my doings I was exact: I stretched forth my hands to the heaven above, and bewailed my ignorances of her. + +I directed my soul to her, and I found her in pureness: I have had my heart joined with her from the beginning, therefore shall I not be forsaken. + +My heart was troubled in seeking her: therefore have I gotten a good possession. + +The Lord has given me a tongue for my reward, and I will praise him therewith. + +Draw near to me, you⌃ unlearned, and dwell in the house of learning. + +Therefore are you⌃ slow, and what say you⌃ to these things, seeing your souls are very thirsty? + +I opened my mouth, and said, Buy her for yourselves without money. + +Put your neck under the yoke, and let your soul receive instruction: she is hard at hand to find. + +Behold with your eyes, how that I have but little labor, and have gotten to me much rest. + +Get learning with a great sum of money, and get much gold by her. + +Let your soul rejoice in his mercy, and be not ashamed of his praise. + +Work your work betimes, and in his time he will give you your reward. + +

+
+ +Baruch +BARUCH +Baruch +BAR +

BARUCH +

+ + +

And these are the words of the book, which Baruch the son of Nerias, the son of Maasias, the son of Sedecias, the son of Asadias, the son of Chelcias, wrote in Babylon, + +In the fifth year, and in the seventh day of the month, what time as the Chaldeans took Jerusalem, and burnt it with fire. + +And Baruch did read the words of this book in the hearing of Jechonias the son of Joachim king of Juda, and in the ears of all the people that came to hear the book, + +And in the hearing of the nobles, and of the king's sons, and in the hearing of the elders, and of all the people, from the lowest to the highest, even of all them that lived at Babylon by the river Sud. + +Whereupon they wept, fasted, and prayed before the Lord. + +They made also a collection of money according to every man's power: + +And they sent it to Jerusalem to Joachim the high priest, the son of Chelcias, son of Salom, and to the priests, and to all the people which were found with him at Jerusalem, + +At the same time when he received the vessels of the house of the Lord, that were carried out of the temple, to return them into the land of Juda, the tenth day of the month Sivan, namely, silver vessels, which Sedecias the son of Josias king of Jada had made, + +After that Nabuchodonosor king of Babylon had carried away Jechonias, and the princes, and the captives, and the mighty men, and the people of the land, from Jerusalem, and brought them to Babylon. + +And they said, Behold, we have sent you money to buy you burnt offerings, and sin offerings, and incense, and prepare you⌃ manna, and offer upon the altar of the Lord our God; + +And pray for the life of Nabuchodonosor king of Babylon, and for the life of Balthasar his son, that their days may be upon earth as the days of heaven: + +And the Lord will give us strength, and lighten our eyes, and we shall live under the shadow of Nabuchodonosor king of Babylon, and under the shadow of Balthasar his son, and we shall serve them many days, and find favor in their sight. + +Pray for us also to the Lord our God, for we have sinned against the Lord our God; and to this day the fury of the Lord and his wrath is not turned from us. + +And you⌃ shall read this book which we have sent to you, to make confession in the house of the Lord, upon the feasts and solemn days. + +And you⌃ shall say, To the Lord our God belongs righteousness, but to us the confusion of faces, as it is come to pass this day, to them of Juda, and to the inhabitants of Jerusalem, + +And to our kings, and to our princes, and to our priests, and to our prophets, and to our fathers: + +For we have sinned before the Lord, + +And disobeyed him, and have not listened to the voice of the Lord our God, to walk in the commandments that he gave us openly: + +Since the day that the Lord brought our forefathers out of the land of Egypt, to this present day, we have been disobedient to the Lord our God, and we have been negligent in not hearing his voice. + +Therefore the evils cleaved to us, and the curse, which the Lord appointed by Moses his servant at the time that he brought our fathers out of the land of Egypt, to give us a land that flows with milk and honey, like as it is to see this day. + +Nevertheless we have not listened to the voice of the Lord our God, according to all the words of the prophets, whom he sent to us: + +But every man followed the imagination of his own wicked heart, to serve strange gods, and to do evil in the sight of the Lord our God. + +

+ + +

Therefore the Lord has made good his word, which he pronounced against us, and against our judges that judged Israel, and against our kings, and against our princes, and against the men of Israel and Juda, + +To bring upon us great plagues, such as never happened under the whole heaven, as it came to pass in Jerusalem, according to the things that were written in the law of Moses; + +That a man should eat the flesh of his own son, and the flesh of his own daughter. + +Moreover he has delivered them to be in subjection to all the kingdoms that are round about us, to be as a reproach and desolation among all the people round about, where the Lord has scattered them. + +Thus we were cast down, and not exalted, because we have sinned against the Lord our God, and have not been obedient to his voice. + +To the Lord our God appertains righteousness: but to us and to our fathers open shame, as appears this day. + +For all these plagues are come upon us, which the Lord has pronounced against us + +Yet have we not prayed before the Lord, that we might turn every one from the imaginations of his wicked heart. + +Therefore the Lord watched over us for evil, and the Lord has brought it upon us: for the Lord is righteous in all his works which he has commanded us. + +Yet we have not listened to his voice, to walk in the commandments of the Lord, that he has set before us. + +And now, O Lord God of Israel, that have brought your people out of the land of Egypt with a mighty hand, and high arm, and with signs, and with wonders, and with great power, and have gotten yourself a name, as appears this day: + +O Lord our God, we have sinned, we have done ungodly, we have dealt unrighteously in all your ordinances. + +Let your wrath turn from us: for we are but a few left among the heathen, where you have scattered us. + +Hear our prayers, O Lord, and our petitions, and deliver us for your own sake, and give us favor in the sight of them which have led us away: + +That all the earth may know that you are the Lord our God, because Israel and his posterity is called by your name. + +O Lord, look down from your holy house, and consider us: bow down your ear, O Lord, to hear us. + +Open your eyes, and behold; for the dead that are in the graves, whose souls are taken from their bodies, will give to the Lord neither praise nor righteousness: + +But the soul that is greatly vexed, which goes stooping and feeble, and the eyes that fail, and the hungry soul, will give you praise and righteousness, O Lord. + +Therefore we do not make our humble supplication before you, O Lord our God, for the righteousness of our fathers, and of our kings. + +For you have sent out your wrath and indignation upon us, as you have spoken by your servants the prophets, saying, + +Thus says the Lord, Bow down your shoulders to serve the king of Babylon: so shall you⌃ remain in the land that I gave to your fathers. + +But if you⌃ will not hear the voice of the Lord, to serve the king of Babylon, + +I will cause to cease out of the cites of Judah, and from without Jerusalem, the voice of mirth, and the voice of joy, the voice of the bridegroom, and the voice of the bride: and the whole land shall be desolate of inhabitants. + +But we would not listen to your voice, to serve the king of Babylon: therefore have you made good the words that you spoke by your servants the prophets, namely, that the bones of our kings, and the bones of our fathers, should be taken out of their place. + +And, behold, they are cast out to the heat of the day, and to the frost of the night, and they died in great miseries by famine, by sword, and by pestilence. + +And the house which is called by your name have you laid waste, as it is to be seen this day, for the wickedness of the house of Israel and the house of Juda. + +O Lord our God, you have dealt with us after all your goodness, and according to all that great mercy of yours, + +As you spoke by your servant Moses in the day when you did command him to write the law before the children of Israel, saying, + +If you⌃ will not hear my voice, surely this very great multitude shall be turned into a small number among the nations, where I will scatter them. + +For I knew that they would not hear me, because it is a stiff-necked people: but in the land of their captivities they shall remember themselves. + +And shall know that I am the Lord their God: for I will give them an heart, and ears to hear: + +And they shall praise me in the land of their captivity, and think upon my name, + +And return from their stiff neck, and from their wicked deeds: for they shall remember the way of their fathers, which sinned before the Lord. + +And I will bring them again into the land which I promised with an oath to their fathers, Abraham, Isaac, and Jacob, and they shall be lords of it: and I will increase them, and they shall not be diminished. + +And I will make an everlasting covenant with them to be their God, and they shall be my people: and I will no more drive my people of Israel out of the land that I have given them. + +

+ + +

O Lord Almighty, God of Israel, the soul in anguish the troubled spirit, cries to you. + +Hear, O Lord, and have mercy; for you are merciful: and have pity upon us, because we have sinned before you. + +For you endure for ever, and we perish utterly. + +O Lord Almighty, you God of Israel, hear now the prayers of the dead Israelites, and of their children, which have sinned before you, and not listened to the voice of you their God: for the which cause these plagues cleave to us. + +Remember not the iniquities of our forefathers: but think upon your power and your name now at this time. + +For you are the Lord our God, and you, O Lord, will we praise. + +And for this cause you have put your fear in our hearts, to the intent that we should call upon your name, and praise you in our captivity: for we have called to mind all the iniquity of our forefathers, that sinned before you. + +Behold, we are yet this day in our captivity, where you have scattered us, for a reproach and a curse, and to be subject to payments, according to all the iniquities of our fathers, which departed from the Lord our God. + +Hear, Israel, the commandments of life: give ear to understand wisdom. + +How is it Israel, that you are in your enemies' land, that you have become old in a strange country, that you are defiled with the dead, + +That you are counted with them that go down into the grave? + +You have forsaken the fountain of wisdom. + +For if you had walked in the way of God, you should have dwelled in peace for ever. + +Learn where is wisdom, where is strength, where is understanding; that you may know also where is length of days, and life, where is the light of the eyes, and peace. + +Who has found out her place? or who has come into her treasures? + +Where are the princes of the heathen become, and such as ruled the beasts upon the earth; + +They that had their pastime with the fowls of the air, and they that hoarded up silver and gold, wherein men trust, and made no end of their getting? + +For they that wrought in silver, and were so careful, and whose works are unsearchable, + +They are vanished and gone down to the grave, and others are come up in their steads. + +Young men have seen light, and lived upon the earth: but the way of knowledge have they not known, + +Nor understood the paths thereof, nor laid hold of it: their children were far off from that way. + +It has not been heard of in Chanaan, neither has it been seen in Theman. + +The Agarenes that seek wisdom upon earth, the merchants of Meran and of Theman, the authors of fables, and searchers out of understanding; none of these have known the way of wisdom, or remember her paths. + +O Israel, how great is the house of God! and how large is the place of his possession! + +Great, and has none end; high, and unmeasurable. + +There were the giants famous from the beginning, that were of so great stature, and so expert in war. + +Those did not the Lord choose, neither gave he the way of knowledge to them: + +But they were destroyed, because they had no wisdom, and perished through their own foolishness. + +Who has gone up into heaven, and taken her, and brought her down from the clouds? + +Who has gone over the sea, and found her, and will bring her for pure gold? + +No man knows her way, nor thinks of her path. + +But he that knows all things knows her, and has found her out with his understanding: he that prepared the earth for evermore has filled it with four-footed beasts: + +He that sends forth light, and it goes, calls it again, and it obeys him with fear. + +The stars shined in their watches, and rejoiced: when he calls them, they say, Here we be; and so with cheerfulness they showed light to him that made them. + +This is our God, and there shall none other be accounted of in comparison of him + +He has found out all the way of knowledge, and has given it to Jacob his servant, and to Israel his beloved. + +Afterward did he show himself upon earth, and conversed with men. + +

+ + +

This is the book of the commandments of God, and the law that endures for ever: all they that keep it shall come to life; but such as leave it shall die. + +Turn you, O Jacob, and take hold of it: walk in the presence of the light thereof, that you may be illuminated. + +Give not your honor to another, nor the things that are profitable to you to a strange nation. + +O Israel, happy are we: for things that are pleasing to God are made known to us. + +Be of good cheer, my people, the memorial of Israel. + +You⌃ were sold to the nations, not for +your destruction: but because you⌃ moved God to wrath, you⌃ were delivered to the enemies. + +For you⌃ provoked him that made you by sacrificing to devils, and not to God. + +You⌃ have forgotten the everlasting God, that brought you up; and you⌃ have grieved Jerusalem, that nursed you. + +For when she saw the wrath of God coming upon you, she said, Listen, O you⌃ that dwell about Sion: God has brought upon me great mourning; + +For I saw the captivity of my sons and daughters, which the Everlasting brought upon them. + +With joy did I nourish them; but sent them away with weeping and mourning. + +Let no man rejoice over me, a widow, and forsaken of many, who for the sins of my children am left desolate; because they departed from the law of God. + +They knew not his statutes, nor walked in the ways of his commandments, nor trod in the paths of discipline in his righteousness. + +Let them that dwell about Sion come, and remember you⌃ the captivity of my sons and daughters, which the Everlasting has brought upon them. + +For he has brought a nation upon them from far, a shameless nation, and of a strange language, who neither reverenced old man, nor pitied child. + +These have carried away the dear beloved children of the widow, and left her that was alone desolate without daughters. + +But what can I help you? + +For he that brought these plagues upon you will deliver you from the hands of your enemies. + +Go your way, O my children, go your way: for I am left desolate. + +I have put off the clothing of peace, and put upon me the sackcloth of my prayer: I will cry to the Everlasting in my days. + +Be of good cheer, O my children, cry to the Lord, and he will deliver you from the power and hand of the enemies. + +For my hope is in the Everlasting, that he will save you; and joy is come to me from the Holy One, because of the mercy which shall soon come to you from the Everlasting our Saviour. + +For I sent you out with mourning and weeping: but God will give you to me again with joy and gladness for ever. + +Like as now the neighbors of Sion have seen your captivity: so shall they see shortly your salvation from our God which shall come upon you with great glory, and brightness of the Everlasting. + +My children, suffer patiently the wrath that is come upon you from God: for your enemy has persecuted you; but shortly you shall see his destruction, and shall tread upon his neck. + +My delicate ones have gone rough ways, and were taken away as a flock caught of the enemies. + +Be of good comfort, O my children, and cry to God: for you⌃ shall be remembered of him that brought these things upon you. + +For as it was your mind to go astray from God: so, being returned, seek him ten times more. + +For he that has brought these plagues upon you shall bring you everlasting joy with your salvation. + +Take a good heart, O Jerusalem: for he that gave you that name will comfort you. + +Miserable are they that afflicted you, and rejoiced at your fall. + +Miserable are the cities which your children served: miserable is she that received your sons. + +For as she rejoiced at your ruin, and was glad of your fall: so shall she be grieved for her own desolation. + +For I will take away the rejoicing of her great multitude, and her pride shall be turned into mourning. + +For fire shall come upon her from the Everlasting, long to endure; and she shall be inhabited of devils for a great time. + +O Jerusalem, look about you toward the east, and behold the joy that comes to you from God. + +Behold, your sons come, whom you sent away, they come gathered together from the east to the west by the word of the Holy One, rejoicing in the glory of God. + +

+ + +

Put off, O Jerusalem, the garment of mourning and affliction, and put on the comeliness of the glory that comes from God for ever. + +Cast about you a double garment of the righteousness which comes from God; and set a diadem on your head of the glory of the Everlasting. + +For God will show your brightness to every country under heaven. + +For your name shall be called of God for ever The peace of righteousness, and The glory of God's worship. + +Arise, O Jerusalem, and stand on high, and look about toward the east, and behold your children gathered from the west to the east by the word of the Holy One, rejoicing in the remembrance of God. + +For they departed from you on foot, and were led away of their enemies: but God brings them to you exalted with glory, as children of the kingdom. + +For God has appointed that every high hill, and banks of long continuance, should be cast down, and valleys filled up, to make even the ground, that Israel may go safely in the glory of God, + +Moreover even the woods and every sweet smelling tree shall overshadow Israel by the commandment of God. + +For God shall lead Israel with joy in the light of his glory with the mercy and righteousness that comes from him. + +

+
+ +Epistle of Jeremy +EPISTLE OF JEREMY +Epistle of Jeremy +LJE +

EPISTLE OF JEREMY +

+ + +

A copy of an epistle, which Jeremy sent to them which were to be led captives into Babylon by the king of the Babylonians, to certify them, as it was commanded him of God. + +Because of the sins which you⌃ have committed before God, you⌃ shall be led away captives into Babylon by Nabuchodonosor king of the Babylonians. + +So when you⌃ be come to Babylon, you⌃ shall remain there many years, and for a long season, namely, seven generations: and after that I will bring you away peaceably from thence. + +Now shall you⌃ see in Babylon gods of silver, and of gold, and of wood, borne upon shoulders, which cause the nations to fear. + +Beware therefore that you⌃ in no wise be like to strangers, neither be you⌃ and of them, when you⌃ see the multitude before them and behind them, worshipping them. + +But say you⌃ in your hearts, O Lord, we must worship you. + +For my angel is with you, and I myself caring for your souls. + +As for their tongue, it is polished by the workman, and they themselves are gilded and laid over with silver; yet are they but false, and can’t speak. + +And taking gold, as it were for a virgin that loves to go gay, they make crowns for the heads of their gods. + +Sometimes also the priests convey from their gods gold and silver, and bestow it upon themselves. + +Yes, they will give thereof to the common harlots, and deck them as men with garments, +being gods of silver, and gods of gold, and wood. + +Yet can’t these gods save themselves from rust and moth, though they be covered with purple raiment. + +They wipe their faces because of the dust of the temple, when there is much upon them. + +And he that can’t put to death one that offends him holds a scepter, as though he were a judge of the country. + +He has also in his right hand a dagger and an axe: but can’t deliver himself from war and thieves. + +Whereby they are known not to be gods: therefore fear them not. + +For like as a vessel that a man uses is nothing worth when it is broken; even so it is with their gods: when they be set up in the temple, their eyes be full of dust through the feet of them that come in. + +And as the doors are made sure on every side upon him that offends the king, as being committed to suffer death: even so the priests make fast their temples with doors, with locks, and bars, lest their gods be spoiled with robbers. + +They light them candles, yes, more than for themselves, whereof they can’t see one. + +They are as one of the beams of the temple, yet they say their hearts are gnawed upon by things creeping out of the earth; and when they eat them and their clothes, they feel it not. + +Their faces are blacked through the smoke that comes out of the temple. + +Upon their bodies and heads sit bats, swallows, and birds, and the cats also. + +By this you⌃ may know that they are no gods: therefore fear them not. + +Notwithstanding the gold that is about them to make them beautiful, except they wipe off the rust, they will not shine: for neither when they were molten did they feel it. + +The things wherein there is no breath are bought for a most high price. + +They are borne upon shoulders, having no feet whereby they declare to men that they be nothing worth. + +They also that serve them are ashamed: for if they fall to the ground at any time, they can’t rise up again of themselves: neither, if one set them upright, can they move of themselves: neither, if they be bowed down, can they make themselves straight: but they set gifts before them as to dead men. + +As for the things that are sacrificed to them, their priests sell and abuse; in like manner their wives lay up part thereof in salt; but to the poor and impotent they give nothing of it. + +Menstruous women and women in childbed eat their sacrifices: by these things you⌃ may know that they are no gods: fear them not. + +For how can they be called gods? because women set meat before the gods of silver, gold, and wood. + +And the priests sit in their temples, having their clothes torn, and their heads and beards shaven, and nothing upon their heads. + +They roar and cry before their gods, as men do at the feast when one is dead. + +The priests also take off their garments, and clothe their wives and children. + +Whether it be evil that one does to them, or good, they are not able to recompense it: they can neither set up a king, nor put him down. + +In like manner, they can neither give riches nor money: though a man make a vow to them, and keep it not, they will not require it. + +They can save no man from death, neither deliver the weak from the mighty. + +They can’t restore a blind man to his sight, nor help any man in his distress. + +They can show no mercy to the widow, nor do good to the fatherless. + +Their gods of wood, and which are overlaid with gold and silver, are like the stones that be hewn out of the mountain: they that worship them shall be confounded. + +How should a man then think and say that they are gods, when even the Chaldeans themselves dishonor them? + +Who if they shall see one dumb that can’t speak, they bring him, and entreat Bel that he may speak, as though he were able to understand. + +Yet they can’t understand this themselves, and leave them: for they have no knowledge. + +The women also with cords about them, sitting in the ways, burn bran for perfume: but if any of them, drawn by some that passes by, lie with him, she reproaches her fellow, that she was not thought as worthy as herself, nor her cord broken. + +Whatsoever is done among them is false: how may it then be thought or said that they are gods? + +They are made of carpenters and goldsmiths: they can be nothing else than the workmen will have them to be. + +And they themselves that made them can never continue long; how should then the things that are made of them be gods? + +For they left lies and reproaches to them that come after. + +For when there comes any war or plague upon them, the priests consult with themselves, where they may be hidden with them. + +How then can’t men perceive that they be no gods, which can neither save themselves from war, nor from plague? + +For seeing they be but of wood, and overlaid with silver and gold, it shall be known hereafter that they are false: + +And it shall manifestly appear to all nations and kings that they are no gods, but the works of men's hands, and that there is no work of God in them. + +Who then may not know that they are no gods? + +For neither can they set up a king in the land, nor give rain to men. + +Neither can they judge their own cause, nor redress a wrong, being unable: for they are as crows between heaven and earth. + +Whereupon when fire falls upon the house of gods of wood, or laid over with gold or silver, their priests will flee away, and escape; but they themselves shall be burned asunder like beams. + +Moreover they can’t withstand any king or enemies: how can it then be thought or said that they be gods? + +Neither are those gods of wood, and laid over with silver or gold, able to escape either from thieves or robbers. + +Whose gold, and silver, and garments wherewith they are clothed, they that are strong take, and go away withal: neither are they able to help themselves. + +Therefore it is better to be a king that shows his power, or else a profitable vessel in an house, which the owner shall have use of, than such false gods; or to be a door in an house, to keep such things therein, than such false gods. or a pillar of wood in a palace, than such false gods. + +For sun, moon, and stars, being bright and sent to do their offices, are obedient. + +In like manner the lightning when it breaks forth is easy to be seen; and after the same manner the wind blows in every country. + +And when God commands the clouds to go over the whole world, they do as they are bidden. + +And the fire sent from above to consume hills and woods does as it is commanded: but these are like to them neither in show nor power. + +Therefore it is neither to be supposed nor said that they are gods, seeing, they are able neither to judge causes, nor to do good to men. + +Knowing therefore that they are no gods, fear them not, + +For they can neither curse nor bless kings: + +Neither can they show signs in the heavens among the heathen, nor shine as the sun, nor give light as the moon. + +The beasts are better than they: for they can get under a cover and help themselves. + +It is then by no means manifest to us that they are gods: therefore fear them not. + +For as a scarecrow in a garden of cucumbers keeps nothing: so are their gods of wood, and laid over with silver and gold. + +And likewise their gods of wood, and laid over with silver and gold, are like to a white thorn in an orchard, that every bird sits upon; as also to a dead body, that is east into the dark. + +And you⌃ shall know them to be no gods by the bright purple that rots upon them: and they themselves afterward shall be eaten, and shall be a reproach in the country. + +Better therefore is the just man that has none idols: for he shall be far from reproach. + +

+
+ +Prayer of Azarias +PRAYER OF AZARIAS +Prayer of Azarias +S3Y +

PRAYER OF AZARIAS +

+ + +

Then Azarias stood up, and prayed on this manner; and opening his mouth in the midst of the fire said, + +Blessed are you, O Lord God of our fathers: your name is worthy to be praised and glorified for evermore: + +For you are righteous in all the things that you have done to us: yes, true are all your works, your ways are right, and all your judgments truth. + +In all the things that you have brought upon us, and upon the holy city of our fathers, even Jerusalem, you have executed true judgment: for according to truth and judgment did you bring all these things upon us because of our sins. + +For we have sinned and committed iniquity, departing from you. + +In all things have we trespassed, and not obeyed your commandments, nor kept them, neither done as you have commanded us, that it might go well with us. + +Therefore all that you have brought upon us, and every thing that you have done to us, you have done in true judgment. + +And you did deliver us into the hands of lawless enemies, most hateful forsakers of God, and to an unjust king, and the most wicked in all the world. + +And now we can’t open our mouths, we are become a shame and reproach to your servants; and to them that worship you. + +Yet deliver us not up wholly, for your name's sake, neither disannul you your covenant: + +And cause not your mercy to depart from us, for your beloved Abraham's sake, for your servant Isaac's sake, and for your holy Israel's sake; + +To whom you have spoken and promised, that you would multiply their seed as the stars of heaven, and as the sand that lies upon the seashore. + +For we, O Lord, are become less than any nation, and be kept under this day in all the world because of our sins. + +Neither is there at this time prince, or prophet, or leader, or burnt offering, or sacrifice, or oblation, or incense, or place to sacrifice before you, and to find mercy. + +Nevertheless in a contrite heart and an humble spirit let us be accepted. + +Like as in the burnt offerings of rams and bullocks, and like as in ten thousands of fat lambs: so let our sacrifice be in your sight this day, and grant that we may wholly go after you: for they shall not be confounded that put their trust in you. + +And now we follow you with all our heart, we fear you, and seek your face. + +Put us not to shame: but deal with us after your lovingkindness, and according to the multitude of your mercies. + +Deliver us also according to your marvelous works, and give glory to your name, O Lord: and let all them that do your servants hurt be ashamed; + +And let them be confounded in all their power and might, and let their strength be broken; + +And let them know that you are God, the only God, and glorious over the whole world. + +And the king's servants, that put them in, ceased not to make the oven hot with rosin, pitch, tow, and small wood; + +So that the flame streamed forth above the furnace forty and nine cubits. + +And it passed through, and burned those Chaldeans it found about the furnace. + +But the angel of the Lord came down into the oven together with Azarias and his fellows, and struck the flame of the fire out of the oven; + +And made the midst of the furnace as it had been a moist whistling wind, so that the fire touched them not at all, neither hurt nor troubled them. + +Then the three, as out of one mouth, praised, glorified, and blessed, God in the furnace, saying, + +Blessed are you, O Lord God of our fathers: and to be praised and exalted above all for ever. + +And blessed is your glorious and holy name: and to be praised and exalted above all for ever. + +Blessed are you in the temple of your holy glory: and to be praised and glorified above all for ever. + +Blessed are you that behold the depths, and sit upon the cherubims: and to be praised and exalted above all for ever. + +Blessed are you on the glorious throne of your kingdom: and to be praised and glorified above all for ever. + +Blessed are you in the firmament of heaven: and above all to be praised and glorified for ever. + +O all you⌃ works of the Lord, bless you⌃ the Lord: praise and exalt him above all for ever, + +O you⌃ heavens, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ angels of the Lord, bless you⌃ the Lord: praise and exalt him above all for ever. + +O all you⌃ waters that be above the heaven, bless you⌃ the Lord: praise and exalt him above all for ever. + +O all you⌃ powers of the Lord, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ sun and moon, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ stars of heaven, bless you⌃ the Lord: praise and exalt him above all for ever. + +O every shower and dew, bless you⌃ the Lord: praise and exalt him above all for ever. + +O all you⌃ winds, bless you⌃ the Lord: praise and exalt him above all for ever, + +O you⌃ fire and heat, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ winter and summer, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ dews and storms of snow, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ nights and days, bless you⌃ the Lord: bless and exalt him above all for ever. + +O you⌃ light and darkness, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ ice and cold, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ frost and snow, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ lightnings and clouds, bless you⌃ the Lord: praise and exalt him above all for ever. + +O let the earth bless the Lord: praise and exalt him above all for ever. + +O you⌃ mountains and little hills, bless you⌃ the Lord: praise and exalt him above all for ever. + +O all you⌃ things that grow in the earth, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ mountains, bless you⌃ the Lord: Praise and exalt him above all for ever. + +O you⌃ seas and rivers, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ whales, and all that move in the waters, bless you⌃ the Lord: praise and exalt him above all for ever. + +O all you⌃ fowls of the air, bless you⌃ the Lord: praise and exalt him above all for ever. + +O all you⌃ beasts and cattle, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ children of men, bless you⌃ the Lord: praise and exalt him above all for ever. + +O Israel, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ priests of the Lord, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ servants of the Lord, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ spirits and souls of the righteous, bless you⌃ the Lord: praise and exalt him above all for ever. + +O you⌃ holy and humble men of heart, bless you⌃ the Lord: praise and exalt him above all for ever. + +O Ananias, Azarias, and Misael, bless you⌃ the Lord: praise and exalt him above all for ever: for he has delivered us from hell, and saved us from the hand of death, and delivered us out of the midst of the furnace and burning flame: even out of the midst of the fire has he delivered us. + +O give thanks to the Lord, because he is gracious: for his mercy endures for ever. + +O all you⌃ that worship the Lord, bless the God of gods, praise him, and give him thanks: for his mercy endures for ever. + +

+
+ +Susanna +SUSANNA +Susanna +SUS +

SUSANNA +

+ + +

There lived a man in Babylon, called Joacim: + +And he took a wife, whose name was Susanna, the daughter of Chelcias, a very fair woman, and one that feared the Lord. + +Her parents also were righteous, and taught their daughter according to the law of Moses. + +Now Joacim was a great rich man, and had a fair garden joining to his house: and to him resorted the Jews; because he was more honorable than all others. + +The same year were appointed two of the ancients of the people to be judges, such as the Lord spoke of, that wickedness came from Babylon from ancient judges, who seemed to govern the people. + +These kept much at Joacim's house: and all that had any suits in law came to them. + +Now when the people departed away at noon, Susanna went into her husband's garden to walk. + +And the two elders saw her going in every day, and walking; so that their lust was inflamed toward her. + +And they perverted their own mind, and turned away their eyes, that they might not look to heaven, nor remember just judgments. + +And albeit they both were wounded with her love, yet dared not one show another his grief. + +For they were ashamed to declare their lust, that they desired to have to do with her. + +Yet they watched diligently from day to day to see her. + +And the one said to the other, Let us now go home: for it is dinner time. + +So when they were gone out, they parted the one from the other, and turning back again they came to the same place; and after that they had asked one another the cause, they acknowledged their lust: then appointed they a time both together, when they might find her alone. + +And it fell out, as they watched a fit time, she went in as before with two maids only, and she was desirous to wash herself in the garden: for it was hot. + +And there was no body there save the two elders, that had hid themselves, and watched her. + +Then she said to her maids, Bring me oil and washing balls, and shut the garden doors, that I may wash me. + +And they did as she bade them, and shut the garden doors, and went out themselves at privy doors to fetch the things that she had commanded them: but they saw not the elders, because they were hid. + +Now when the maids were gone forth, the two elders rose up, and ran to her, saying, + +Behold, the garden doors are shut, that no man can see us, and we are in love with you; therefore consent to us, and lie with us. + +If you will not, we will bear witness against you, that a young man was with you: and therefore you did send away your maids from you. + +Then Susanna sighed, and said, I am straitened on every side: for if I do this thing, it is death to me: and if I do it not I can’t escape your hands. + +It is better for me to fall into your hands, and not do it, than to sin in the sight of the Lord. + +With that Susanna cried with a loud voice: and the two elders cried out against her. + +Then ran the one, and opened the garden door. + +So when the servants of the house heard the cry in the garden, they rushed in at the privy door, to see what was done to her. + +But when the elders had declared their matter, the servants were greatly ashamed: for there was never such a report made of Susanna. + +And it came to pass the next day, when the people were assembled to her husband Joacim, the two elders came also full of mischievous imagination against Susanna to put her to death; + +And said before the people, Send for Susanna, the daughter of Chelcias, Joacim's wife. And so they sent. + +So she came with her father and mother, her children, and all her kindred. + +Now Susanna was a very delicate woman, and beauteous to behold. + +And these wicked men commanded to uncover her face, (for she was covered) that they might be filled with her beauty. + +Therefore her friends and all that saw her wept. + +Then the two elders stood up in the midst of the people, and laid their hands upon her head. + +And she weeping looked up toward heaven: for her heart trusted in the Lord. + +And the elders said, As we walked in the garden alone, this woman came in with two maids, and shut the garden doors, and sent the maids away. + +Then a young man, who there was hid, came to her, and lay with her. + +Then we that stood in a corner of the garden, seeing this wickedness, ran to them. + +And when we saw them together, the man we could not hold: for he was stronger than we, and opened the door, and leaped out. + +But having taken this woman, we asked who the young man was, but she would not tell us: these things do we testify. + +Then the assembly believed them as those that were the elders and judges of the people: so they condemned her to death. + +Then Susanna cried out with a loud voice, and said, O everlasting God, that know the secrets, and know all things before they be: + +You know that they have borne false witness against me, and, behold, I must die; whereas I never did such things as these men have maliciously invented against me. + +And the Lord heard her voice. + +Therefore when she was led to be put to death, the Lord raised up the holy spirit of a young youth whose name was Daniel: + +Who cried with a loud voice, I am clear from the blood of this woman. + +Then all the people turned them toward him, and said, What mean these words that you have spoken? + +So he standing in the midst of them said, Are you⌃ such fools, you⌃ sons of Israel, that without examination or knowledge of the truth you⌃ have condemned a daughter of Israel? + +Return again to the place of judgment: for they have borne false witness against her. + +Therefore all the people turned again in haste, and the elders said to him, Come, sit down among us, and show it us, seeing God has given you the honor of an elder. + +Then said Daniel to them, Put these two aside one far from another, and I will examine them. + +So when they were put asunder one from another, he called one of them, and said to him, O you that have become old in wickedness, now your sins which you have committed aforetime are come to light. + +For you have pronounced false judgment and have condemned the innocent and have let the guilty go free; albeit the Lord says, The innocent and righteous shall you not kill. + +Now then, if you have seen her, tell me, Under what tree saw you them companying together? Who answered, Under a mastick tree. + +And Daniel said, Very well; you have lied against your own head; for even now the angel of God has received the sentence of God to cut you in two. + +So he put him aside, and commanded to bring the other, and said to him, O you seed of Chanaan, and not of Juda, beauty has deceived you, and lust has perverted your heart. + +Thus have you⌃ dealt with the daughters of Israel, and they for fear companied with you: but the daughter of Juda would not abide your wickedness. + +Now therefore tell me, Under what tree did you take them companying together? Who answered, Under an holm tree. + +Then said Daniel to him, Well; you have also lied against your own head: for the angel of God waits with the sword to cut you in two, that he may destroy you. + +With that all the assembly cried out with a loud voice, and praised God, who saves them that trust in him. + +And they arose against the two elders, for Daniel had convicted them of false witness by their own mouth: + +And according to the law of Moses they did to them in such sort as they maliciously intended to do to their neighbor: and they put them to death. Thus the innocent blood was saved the same day. + +Therefore Chelcias and his wife praised God for their daughter Susanna, with Joacim her husband, and all the kindred, because there was no dishonesty found in her. + +From that day forth was Daniel had in great reputation in the sight of the people. + +

+
+ +Bel and the Dragon +BEL AND THE DRAGON +Bel and the Dragon +BEL +

BEL AND THE DRAGON +

+ + +

And king Astyages was gathered to his fathers, and Cyrus of Persia received his kingdom. + +And Daniel conversed with the king, and was honored above all his friends. + +Now the Babylonians had an idol, called Bel, and there were spent upon him every day twelve great measures of fine flour, and forty sheep, and six vessels of wine. + +And the king worshipped it and went daily to adore it: but Daniel worshipped his own God. And the king said to him, Why do not you worship Bel? + +Who answered and said, Because I may not worship idols made with hands, but the living God, who has created the heaven and the earth, and has sovereignty over all flesh. + +Then said the king to him, Thinkest you not that Bel is a living God? see you not how much he eats and drinks every day? + +Then Daniel smiled, and said, O king, be not deceived: for this is but clay within, and brass without, and did never eat or drink any thing. + +So the king was angry, and called for his priests, and said to them, If you⌃ tell me not who this is that devours these expenses, you⌃ shall die. + +But if you⌃ can certify me that Bel devours them, then Daniel shall die: for he has spoken blasphemy against Bel. And Daniel said to the king, Let it be according to your word. + +Now the priests of Bel were threescore and ten, beside their wives and children. And the king went with Daniel into the temple of Bel. + +So Bel's priests said, Behold, we go out: but you, O king, set on the meat, and make ready the wine, and shut the door fast and seal it with your own signet; + +And to morrow when you come in, if you find not that Bel has eaten up all, we will suffer death: or else Daniel, that speaks falsely against us. + +And they little regarded it: for under the table they had made a privy entrance, whereby they entered in continually, and consumed those things. + +So when they were gone forth, the king set meats before Bel. Now Daniel had commanded his servants to bring ashes, and those they strewed throughout all the temple in the presence of the king alone: then they went out, and shut the door, and sealed it with the king's signet, and so departed. + +Now in the night came the priests with their wives and children, as they were wont to do, and did eat and drink up all. + +In the morning betime the king arose, and Daniel with him. + +And the king said, Daniel, are the seals whole? And he said, Yes, O king, they be whole. + +And as soon as he had opened the door, the king looked upon the table, and cried with a loud voice, Great are you, O Bel, and with you is no deceit at all. + +Then laughed Daniel, and held the king that he should not go in, and said, Behold now the pavement, and mark well whose footsteps are these. + +And the king said, I see the footsteps of men, women, and children. And then the king was angry, + +And took the priests with their wives and children, who showed him the privy doors, where they came in, and consumed such things as were upon the table. + +Therefore the king killed them, and delivered Bel into Daniel's power, who destroyed him and his temple. + +And in that same place there was a great dragon, which they of Babylon worshipped. + +And the king said to Daniel, Will you also say that this is of brass? behold, he lives, he eats and drinks; you can not say that he is no living god: therefore worship him. + +Then said Daniel to the king, I will worship the Lord my God: for he is the living God. + +But give me leave, O king, and I shall kill this dragon without sword or staff. The king said, I give you leave. + +Then Daniel took pitch, and fat, and hair, and did seethe them together, and made lumps thereof: this he put in the dragon's mouth, and so the dragon burst in sunder: and Daniel said, Behold, these are the gods you⌃ worship. + +When they of Babylon heard that, they took great indignation, and conspired against the king, saying, The king is become a Jew, and he has destroyed Bel, he has slain the dragon, and put the priests to death. + +So they came to the king, and said, Deliver us Daniel, or else we will destroy you and your house. + +Now when the king saw that they pressed him sore, being constrained, he delivered Daniel to them: + +Who cast him into the lions' den: where he was six days. + +And in the den there were seven lions, and they had given them every day two carcasses, and two sheep: which then were not given to them, to the intent they might devour Daniel. + +Now there was in Jewry a prophet, called Habbacuc, who had made pottage, and had broken bread in a bowl, and was going into the field, for to bring it to the reapers. + +But the angel of the Lord said to Habbacuc, Go, carry the dinner that you have into Babylon to Daniel, who is in the lions' den. + +And Habbacuc said, Lord, I never saw Babylon; neither do I know where the den is. + +Then the angel of the Lord took him by the crown, and bare him by the hair of his head, and through the vehemency of his spirit set him in Babylon over the den. + +And Habbacuc cried, saying, O Daniel, Daniel, take the dinner which God has sent you. + +And Daniel said, You have remembered me, O God: neither have you forsaken them that seek you and love you. + +So Daniel arose, and did eat: and the angel of the Lord set Habbacuc in his own place again immediately. + +Upon the seventh day the king went to bewail Daniel: and when he came to the den, he looked in, and behold, Daniel was sitting. + +Then cried the king with a loud voice, saying, Great are you Lord God of Daniel, and there is none other beside you. + +And he drew him out, and cast those that were the cause of his destruction into the den: and they were devoured in a moment before his face. + +

+
+ +1 Maccabees +I MACCABEES +1 Maccabees +1MA +

I MACCABEES +

+ + +

And it happened, after that Alexander son of Philip, the Macedonian, who came out of the land of Chettiim, had struck Darius king of the Persians and Medes, that he reigned in his stead, the first over Greece, + +And made many wars, and won many strong holds, and killed the kings of the earth, + +And went through to the ends of the earth, and took spoils of many nations, insomuch that the earth was quiet before him; whereupon he was exalted and his heart was lifted up. + +And he gathered a mighty strong host and ruled over countries, and nations, and kings, who became tributaries to him. + +And after these things he fell sick, and perceived that he should die. + +Therefore he called his servants, such as were honorable, and had been brought up with him from his youth, and parted his kingdom among them, while he was yet alive. + +So Alexander reigned twelve years, and then died. + +And his servants bare rule every one in his place. + +And after his death they all put crowns upon themselves; so did their sons after them many years: and evils were multiplied in the earth. + +And there came out of them a wicked root Antiochus +surnamed Epiphanes, son of Antiochus the king, who had been an hostage at Rome, and he reigned in the hundred and thirty and seventh year of the kingdom of the Greeks. + +In those days went there out of Israel wicked men, who persuaded many, saying, Let us go and make a covenant with the heathen that are round about us: for since we departed from them we have had much sorrow. + +So this device pleased them well. + +Then certain of the people were so forward herein, that they went to the king, who gave them licence to do after the ordinances of the heathen: + +Whereupon they built a place of exercise at Jerusalem according to the customs of the heathen: + +And made themselves uncircumcised, and forsook the holy covenant, and joined themselves to the heathen, and were sold to do mischief. + +Now when the kingdom was established before Antiochus, he thought to reign over Egypt that he might have the dominion of two realms. + +Therefore he entered into Egypt with a great multitude, with chariots, and elephants, and horsemen, and a great navy, + +And made war against Ptolemee king of Egypt: but Ptolemee was afraid of him, and fled; and many were wounded to death. + +Thus they got the strong cities in the land of Egypt and he took the spoils thereof. + +And after that Antiochus had struck Egypt, he returned again in the hundred forty and third year, and went up against Israel and Jerusalem with a great multitude, + +And entered proudly into the sanctuary, and took away the golden altar, and the candlestick of light, and all the vessels thereof, + +And the table of the show bread, and the pouring vessels, and the vials. and the censers of gold, and the veil, and the crown, and the golden ornaments that were before the temple, all which he pulled off. + +He took also the silver and the gold, and the precious vessels: also he took the hidden treasures which he found. + +And when he had taken all away, he went into his own land, having made a great massacre, and spoken very proudly. + +Therefore there was a great mourning in Israel, in every place where they were; + +So that the princes and elders mourned, the virgins and young men were made feeble, and the beauty of women was changed. + +Every bridegroom took up lamentation, and she that sat in the marriage chamber was in heaviness, + +The land also was moved for the inhabitants thereof, and all the house of Jacob was covered with confusion. + +And after two years fully expired the king sent his chief collector of tribute to the cities of Juda, who came to Jerusalem with a great multitude, + +And spoke peaceful words to them, but all was deceit: for when they had given him credence, he fell suddenly upon the city, and struck it very sore, and destroyed much people of Israel. + +And when he had taken the spoils of the city, he set it on fire, and pulled down the houses and walls thereof on every side. + +But the women and children took they captive, and possessed the cattle. + +Then builded they the city of David with a great and strong wall, and with mighty towers, and made it a strong hold for them. + +And they put therein a sinful nation, wicked men, and fortified themselves therein. + +They stored it also with armor and food, and when they had gathered together the spoils of Jerusalem, they laid them up there, and so they became a sore snare: + +For it was a place to lie in wait against the sanctuary, and an evil adversary to Israel. + +Thus they shed innocent blood on every side of the sanctuary, and defiled it: + +Insomuch that the inhabitants of Jerusalem fled because of them: whereupon the city was made an habitation of strangers, and became strange to those that were born in her; and her own children left her. + +Her sanctuary was laid waste like a wilderness, her feasts were turned into mourning, her sabbaths into reproach her honor into contempt. + +As had been her glory, so was her dishonor increased, and her excellency was turned into mourning. + +Moreover king Antiochus wrote to his whole kingdom, that all should be one people, + +And every one should leave his laws: so all the heathen agreed according to the commandment of the king. + +Yes, many also of the Israelites consented to his religion, and sacrificed to idols, and profaned the sabbath. + +For the king had sent letters by messengers to Jerusalem and the cities of Juda that they should follow the strange laws of the land, + +And forbid burnt offerings, and sacrifice, and drink offerings, in the temple; and that they should profane the sabbaths and festival days: + +And pollute the sanctuary and holy people: + +Set up altars, and groves, and chapels of idols, and sacrifice swine's flesh, and unclean beasts: + +That they should also leave their children uncircumcised, and make their souls abominable with all manner of uncleanness and profanation: + +To the end they might forget the law, and change all the ordinances. + +And whoever would not do according to the commandment of the king, he said, he should die. + +In the selfsame manner wrote he to his whole kingdom, and appointed overseers over all the people, commanding the cities of Juda to sacrifice, city by city. + +Then many of the people were gathered to them, to wit every one that forsook the law; and so they committed evils in the land; + +And drove the Israelites into secret places, even wherever they could flee for succour. + +Now the fifteenth day of the month Casleu, in the hundred forty and fifth year, they set up the abomination of desolation upon the altar, and builded idol altars throughout the cities of Juda on every side; + +And burnt incense at the doors of their houses, and in the streets. + +And when they had torn in pieces the books of the law which they found, they burnt them with fire. + +And whoever was found with any the book of the testament, or if any committed to the law, the king's commandment was, that they should put him to death. + +Thus did they by their authority to the Israelites every month, to as many as were found in the cities. + +Now the five and twentieth day of the month they did sacrifice upon the idol altar, which was upon the altar of God. + +At which time according to the commandment they put to death certain women, that had caused their children to be circumcised. + +And they hanged the infants about their necks, and rifled their houses, and killed them that had circumcised them. + +Howbeit many in Israel were fully resolved and confirmed in themselves not to eat any unclean thing. + +Therefore the rather to die, that they might not be defiled with meats, and that they might not profane the holy covenant: so then they died. + +And there was very great wrath upon Israel. + +

+ + +

In those days arose Mattathias the son of John, the son of Simeon, a priest of the sons of Joarib, from Jerusalem, and lived in Modin. + +And he had five sons, Joannan, called Caddis: + +Simon; called Thassi: + +Judas, who was called Maccabeus: + +Eleazar, called Avaran: and Jonathan, whose surname was Apphus. + +And when he saw the blasphemies that were committed in Juda and Jerusalem, + +He said, Woe is me! therefore was I born to see this misery of my people, and of the holy city, and to dwell there, when it was delivered into the hand of the enemy, and the sanctuary into the hand of strangers? + +Her temple is become as a man without glory. + +Her glorious vessels are carried away into captivity, her infants are slain in the streets, her young men with the sword of the enemy. + +What nation has not had a part in her kingdom and gotten of her spoils? + +All her ornaments are taken away; of a free woman she is become a bondslave. + +And, behold, our sanctuary, even our beauty and our glory, is laid waste, and the Gentiles have profaned it. + +To what end therefore shall we live any longer? + +Then Mattathias and his sons tore their clothes, and put on sackcloth, and mourned very sore. + +In the mean while the king's officers, such as compelled the people to revolt, came into the city Modin, to make them sacrifice. + +And when many of Israel came to them, Mattathias also and his sons came together. + +Then answered the king's officers, and said to Mattathias on this wise, You are a ruler, and an honorable and great man in this city, and strengthened with sons and brethren: + +Now therefore come you first, and fulfil the king's commandment, like as all the heathen have done, yes, and the men of Juda also, and such as remain at Jerusalem: so shall you and your house be in the number of the king's friends, and you and your children shall be honored with silver and gold, and many rewards. + +Then Mattathias answered and spoke with a loud voice, Though all the nations that are under the king's dominion obey him, and fall away every one from the religion of their fathers, and give consent to his commandments: + +Yet will I and my sons and my brethren walk in the covenant of our fathers. + +God forbid that we should forsake the law and the ordinances. + +We will not listen to the king's words, to go from our religion, either on the right hand, or the left. + +Now when he had left speaking these words, there came one of the Jews in the sight of all to sacrifice on the altar which was at Modin, according to the king's commandment. + +Which thing when Mattathias saw, he was inflamed with zeal, and his reins trembled, neither could he forbear to show his anger according to judgment: therefore he ran, and killed him upon the altar. + +Also the king's commissioner, who compelled men to sacrifice, he killed at that time, and the altar he pulled down. + +Thus dealt he zealously for the law of God like as Phinees did to Zambri the son of Salom. + +And Mattathias cried throughout the city with a loud voice, saying, Whosoever is zealous of the law, and maintains the covenant, let him follow me. + +So he and his sons fled into the mountains, and left all that ever they had in the city. + +Then many that sought after justice and judgment went down into the wilderness, to dwell there: + +Both they, and their children, and their wives; and their cattle; because afflictions increased sore upon them. + +Now when it was told the king's servants, and the host that was at Jerusalem, in the city of David, that certain men, who had broken the king's commandment, were gone down into the secret places in the wilderness, + +They pursued after them a great number, and having overtaken them, they camped against them, and made war against them on the sabbath day. + +And they said to them, Let that which you⌃ have done hitherto suffice; come forth, and do according to the commandment of the king, and you⌃ shall live. + +But they said, We will not come forth, neither will we do the king's commandment, to profane the sabbath day. + +So then they gave them the battle with all speed. + +Howbeit they answered them not, neither cast they a stone at them, nor stopped the places where they lay hid; + +But said, Let us die all in our innocency: heaven and earth will testify for us, that you⌃ put us to death wrongfully. + +So they rose up against them in battle on the sabbath, and they killed them, with their wives and children and their cattle, to the number of a thousand people. + +Now when Mattathias and his friends understood hereof, they mourned for them right sore. + +And one of them said to another, If we all do as our brethren have done, and fight not for our lives and laws against the heathen, they will now quickly root us out of the earth. + +At that time therefore they decreed, saying, Whosoever shall come to make battle with us on the sabbath day, we will fight against him; neither will we die all, as our brethren that were murdered in the secret places. + +Then came there to him a company of Assideans who were mighty men of Israel, even all such as were voluntarily devoted to the law. + +Also all they that fled for persecution joined themselves to them, and were a stay to them. + +So they joined their forces, and struck sinful men in their anger, and wicked men in their wrath: but the rest fled to the heathen for succour. + +Then Mattathias and his friends went round about, and pulled down the altars: + +And what children soever they found within the coast of Israel uncircumcised, those they circumcised valiantly. + +They pursued also after the proud men, and the work prospered in their hand. + +So they recovered the law out of the hand of the Gentiles, and out of the hand of kings, neither suffered they the sinner to triumph. + +Now when the time drew near that Mattathias should die, he said to his sons, Now has pride and rebuke gotten strength, and the time of destruction, and the wrath of indignation: + +Now therefore, my sons, be you⌃ zealous for the law, and give your lives for the covenant of your fathers. + +Call to remembrance what acts our fathers did in their time; so shall you⌃ receive great honor and an everlasting name. + +Was not Abraham found faithful in temptation, and it was imputed to him for righteousness? + +Joseph in the time of his distress kept the commandment and was made lord of Egypt. + +Phinees our father in being zealous and fervent obtained the covenant of an everlasting priesthood. + +Jesus for fulfilling the word was made a judge in Israel. + +Caleb for bearing witness before the congregation received the heritage of the land. + +David for being merciful possessed the throne of an everlasting kingdom. + +Elias for being zealous and fervent for the law was taken up into heaven. + +Ananias, Azarias, and Misael, by believing were saved out of the flame. + +Daniel for his innocency was delivered from the mouth of lions. + +And thus consider you⌃ throughout all ages, that none that put their trust in him shall be overcome. + +Fear not then the words of a sinful man: for his glory shall be dung and worms. + +To day he shall be lifted up and to morrow he shall not be found, because he is returned into his dust, and his thought is come to nothing. + +Therefore, you⌃ my sons, be valiant and show yourselves men in the behalf of the law; for by it shall you⌃ obtain glory. + +And behold, I know that your brother Simon is a man of counsel, give ear to him always: he shall be a father to you. + +As for Judas Maccabeus, he has been mighty and strong, even from his youth up: let him be your captain, and fight the battle of the people. + +Take also to you all those that observe the law, and avenge you⌃ the wrong of your people. + +Recompense fully the heathen, and take heed to the commandments of the law. + +So he blessed them, and was gathered to his fathers. + +And he died in the hundred forty and sixth year, and his sons buried him in the sepulchres of his fathers at Modin, and all Israel made great lamentation for him. + +

+ + +

Then his son Judas, called Maccabeus, rose up in his stead. + +And all his brethren helped him, and so did all they that held with his father, and they fought with cheerfulness the battle of Israel. + +So he got his people great honor, and put on a breastplate as a giant, and girded his warlike harness about him, and he made battles, protecting the host with his sword. + +In his acts he was like a lion, and like a lion's whelp roaring for his prey. + +For He pursued the wicked, and sought them out, and burnt up those that vexed his people. + +Therefore the wicked shrunk for fear of him, and all the workers of iniquity were troubled, because salvation prospered in his hand. + +He grieved also many kings, and made Jacob glad with his acts, and his memorial is blessed for ever. + +Moreover he went through the cities of Juda, destroying the ungodly out of them, and turning away wrath from Israel: + +So that he was renowned to the utmost part of the earth, and he received to him such as were ready to perish. + +Then Apollonius gathered the Gentiles together, and a great host out of Samaria, to fight against Israel. + +Which thing when Judas perceived, he went forth to meet him, and so he struck him, and killed him: many also fell down slain, but the rest fled. + +Therefore Judas took their spoils, and Apollonius' sword also, and therewith he fought all his life long. + +Now when Seron, a prince of the army of Syria, heard say that Judas had gathered to him a multitude and company of the faithful to go out with him to war; + +He said, I will get me a name and honor in the kingdom; for I will go fight with Judas and them that are with him, who despise the king's commandment. + +So he made him ready to go up, and there went with him a mighty host of the ungodly to help him, and to be avenged of the children of Israel. + +And when he came near to the going up of Bethhoron, Judas went forth to meet him with a small company: + +Who, when they saw the host coming to meet them, said to Judas, How shall we be able, being so few, to fight against so great a multitude and so strong, seeing we are ready to faint with fasting all this day? + +To whom Judas answered, It is no hard matter for many to be shut up in the hands of a few; and with the God of heaven it is all one, to deliver with a great multitude, or a small company: + +For the victory of battle stands not in the multitude of an host; but strength comes from heaven. + +They come against us in much pride and iniquity to destroy us, and our wives and children, and to spoil us: + +But we fight for our lives and our laws. + +Therefore the Lord himself will overthrow them before our face: and as for you, be you⌃ not afraid of them. + +Now as soon as he had left off speaking, he leapt suddenly upon them, and so Seron and his host was overthrown before him. + +And they pursued them from the going down of Bethhoron to the plain, where were slain about eight hundred men of them; and the residue fled into the land of the Philistines. + +Then began the fear of Judas and his brethren, and an exceeding great dread, to fall upon the nations round about them: + +Insomuch as his fame came to the king, and all nations talked of the battles of Judas. + +Now when king Antiochus heard these things, he was full of indignation: therefore he sent and gathered together all the forces of his realm, even a very strong army. + +He opened also his treasure, and gave his soldiers pay for a year, commanding them to be ready whenever he should need them. + +Nevertheless, when he saw that the money of his treasures failed and that the tributes in the country were small, because of the dissension and plague, which he had brought upon the land in taking away the laws which had been of old time; + +He feared that he should not be able to bear the charges any longer, nor to have such gifts to give so liberally as he did before: for he had abounded above the kings that were before him. + +Therefore, being greatly perplexed in his mind, he determined to go into Persia, there to take the tributes of the countries, and to gather much money. + +So he left Lysias, a nobleman, and one of the blood royal, to oversee the affairs of the king from the river Euphrates to the borders of Egypt: + +And to bring up his son Antiochus, until he came again. + +Moreover he delivered to him the half of his forces, and the elephants, and gave him charge of all things that he would have done, as also concerning them that lived in Juda and Jerusalem: + +To wit, that he should send an army against them, to destroy and root out the strength of Israel, and the remnant of Jerusalem, and to take away their memorial from that place; + +And that he should place strangers in all their quarters, and divide their land by lot. + +So the king took the half of the forces that remained, and departed from Antioch, his royal city, the hundred forty and seventh year; and having passed the river Euphrates, he went through the high countries. + +Then Lysias chose Ptolemee the son of Dorymenes, Nicanor, and Gorgias, mighty men of the king's friends: + +And with them he sent forty thousand footmen, and seven thousand horsemen, to go into the land of Juda, and to destroy it, as the king commanded. + +So they went forth with all their power, and came and pitched by Emmaus in the plain country. + +And the merchants of the country, hearing the fame of them, took silver and gold very much, with servants, and came into the camp to buy the children of Israel for slaves: a power also of Syria and of the land of the Philistines joined themselves to them. + +Now when Judas and his brethren saw that miseries were multiplied, and that the forces did encamp themselves in their borders: for they knew how the king had given commandment to destroy the people, and utterly abolish them; + +They said one to another, Let us restore the decayed fortune of our people, and let us fight for our people and the sanctuary. + +Then was the congregation gathered together, that they might be ready for battle, and that they might pray, and ask mercy and compassion. + +Now Jerusalem lay void as a wilderness, there was none of her children that went in or out: the sanctuary also was trodden down, and aliens kept the strong hold; the heathen had their habitation in that place; and joy was taken from Jacob, and the pipe with the harp ceased. + +Therefore the Israelites assembled themselves together, and came to Maspha, over against Jerusalem; for in Maspha was the place where they prayed aforetime in Israel. + +Then they fasted that day, and put on sackcloth, and cast ashes upon their heads, and tore their clothes, + +And laid open the book of the law, wherein the heathen had sought to paint the likeness of their images. + +They brought also the priests' garments, and the first fruits, and the tithes: and the Nazarites they stirred up, who had accomplished their days. + +Then cried they with a loud voice toward heaven, saying, What shall we do with these, and whither shall we carry them away? + +For your sanctuary is trodden down and profaned, and your priests are in heaviness, and brought low. + +And behold, the heathen are assembled together against us to destroy us: what things they imagine against us, you know. + +How shall we be able to stand against them, except you, O God, be our help? + +Then sounded they with trumpets, and cried with a loud voice. + +And after this Judas ordained captains over the people, even captains over thousands, and over hundreds, and over fifties, and over tens. + +But as for such as were building houses, or had betrothed wives, or were planting vineyards, or were fearful, those he commanded that they should return, every man to his own house, according to the law. + +So the camp removed, and pitched upon the south side of Emmaus. + +And Judas said, arm yourselves, and be valiant men, and see that you⌃ be in readiness against the morning, that you⌃ may fight with these nations, that are assembled together against us to destroy us and our sanctuary: + +For it is better for us to die in battle, than to behold the calamities of our people and our sanctuary. + +Nevertheless, as the will of God is in heaven, so let him do. + +

+ + +

Then took Gorgias five thousand footmen, and a thousand of the best horsemen, and removed out of the camp by night; + +To the end he might rush in upon the camp of the Jews, and strike them suddenly. And the men of the fortress were his guides. + +Now when Judas heard thereof he himself removed, and the valiant men with him, that he might strike the king's army which was at Emmaus, + +While as yet the forces were dispersed from the camp. + +In the mean season came Gorgias by night into the camp of Judas: and when he found no man there, he sought them in the mountains: for said he, These fellows flee from us + +But as soon as it was day, Judas showed himself in the plain with three thousand men, who nevertheless had neither armor nor swords to their minds. + +And they saw the camp of the heathen, that it was strong and well harnessed, and compassed round about with horsemen; and these were expert of war. + +Then said Judas to the men that were with him, Fear you⌃ not their multitude, neither be you⌃ afraid of their assault. + +Remember how our fathers were delivered in the Red sea, when Pharaoh pursued them with an army. + +Now therefore let us cry to heaven, if perhaps the Lord will have mercy upon us, and remember the covenant of our fathers, and destroy this host before our face this day: + +That so all the heathen may know that there is one who delivers and saves Israel. + +Then the strangers lifted up their eyes, and saw them coming over against them. + +Therefore they went out of the camp to battle; but they that were with Judas sounded their trumpets. + +So they joined battle, and the heathen being discomfited fled into the plain. + +Howbeit all the hindmost of them were slain with the sword: for they pursued them to Gazera, and to the plains of Idumea, and Azotus, and Jamnia, so that there were slain of them upon a three thousand men. + +This done, Judas returned again with his host from pursuing them, + +And said to the people, Be not greedy of the spoil inasmuch as there is a battle before us, + +And Gorgias and his host are here by us in the mountain: but stand you⌃ now against our enemies, and overcome them, and after this you⌃ may boldly take the spoils. + +As Judas was yet speaking these words, there appeared a part of them looking out of the mountain: + +Who when they perceived that the Jews had put their host to flight and were burning the tents; for the smoke that was seen declared what was done: + +When therefore they perceived these things, they were sore afraid, and seeing also the host of Judas in the plain ready to fight, + +They fled every one into the land of strangers. + +Then Judas returned to spoil the tents, where they got much gold, and silver, and blue silk, and purple of the sea, and great riches. + +After this they went home, and sung a song of thanksgiving, and praised the Lord in heaven: because it is good, because his mercy endures forever. + +Thus Israel had a great deliverance that day. + +Now all the strangers that had escaped came and told Lysias what had happened: + +Who, when he heard thereof, was confounded and discouraged, because neither such things as he would were done to Israel, nor such things as the king commanded him were come to pass. + +The next year therefore following Lysias gathered together threescore thousand choice men of foot, and five thousand horsemen, that he might subdue them. + +So they came into Idumea, and pitched their tents at Bethsura, and Judas met them with ten thousand men. + +And when he saw that mighty army, he prayed and said, Blessed are you, O Saviour of Israel, who did quell the violence of the mighty man by the hand of your servant David, and gave the host of strangers into the hands of Jonathan the son of Saul, and his armor bearer; + +Shut up this army in the hand of your people Israel, and let them be confounded in their power and horsemen: + +Make them to be of no courage, and cause the boldness of their strength to fall away, and let them quake at their destruction: + +Cast them down with the sword of them that love you, and let all those that know your name praise you with thanksgiving. + +So they joined battle; and there were slain of the host of Lysias about five thousand men, even before them were they slain. + +Now when Lysias saw his army put to flight, and the manliness of Judas' soldiers, and how they were ready either to live or die valiantly, he went into Antiochia, and gathered together a company of strangers, and having made his army greater than it was, he purposed to come again into Judea. + +Then said Judas and his brethren, Behold, our enemies are discomfited: let us go up to cleanse and dedicate the sanctuary. + +Upon this all the host assembled themselves together, and went up into mount Sion. + +And when they saw the sanctuary desolate, and the altar profaned, and the gates burned up, and shrubs growing in the courts as in a forest, or in one of the mountains, yes, and the priests' chambers pulled down; + +They tore their clothes, and made great lamentation, and cast ashes upon their heads, + +And fell down flat to the ground upon their faces, and blew an alarm with the trumpets, and cried toward heaven. + +Then Judas appointed certain men to fight against those that were in the fortress, until he had cleansed the sanctuary. + +So he chose priests of blameless conversation, such as had pleasure in the law: + +Who cleansed the sanctuary, and bare out the defiled stones into an unclean place. + +And when as they consulted what to do with the altar of burnt offerings, which was profaned; + +They thought it best to pull it down, lest it should be a reproach to them, because the heathen had defiled it: therefore they pulled it down, + +And laid up the stones in the mountain of the temple in a convenient place, until there should come a prophet to show what should be done with them. + +Then they took whole stones according to the law, and built a new altar according to the former; + +And made up the sanctuary, and the things that were within the temple, and hallowed the courts. + +They made also new holy vessels, and into the temple they brought the candlestick, and the altar of burnt offerings, and of incense, and the table. + +And upon the altar they burned incense, and the lamps that were upon the candlestick they lighted, that they might give light in the temple. + +Furthermore they set the loaves upon the table, and spread out the veils, and finished all the works which they had begun to make. + +Now on the five and twentieth day of the ninth month, which is called the month Casleu, in the hundred forty and eighth year, they rose up betimes in the morning, + +And offered sacrifice according to the law upon the new altar of burnt offerings, which they had made. + +Look, at what time and what day the heathen had profaned it, even in that was it dedicated with songs, and citherns, and harps, and cymbals. + +Then all the people fell upon their faces, worshipping and praising the God of heaven, who had given them good success. + +And so they kept the dedication of the altar eight days and offered burnt offerings with gladness, and sacrificed the sacrifice of deliverance and praise. + +They decked also the forefront of the temple with crowns of gold, and with shields; and the gates and the chambers they renewed, and hanged doors upon them. + +Thus was there very great gladness among the people, for that the reproach of the heathen was put away. + +Moreover Judas and his brethren with the whole congregation of Israel ordained, that the days of the dedication of the altar should be kept in their season from year to year by the space of eight days, from the five and twentieth day of the month Casleu, with mirth and gladness. + +At that time also they builded up the mount Sion with high walls and strong towers round about, lest the Gentiles should come and tread it down as they had done before. + +And they set there a garrison to keep it, and fortified Bethsura to preserve it; that the people might have a defence against Idumea. + +

+ + +

Now when the nations round about heard that the altar was built and the sanctuary renewed as before, it displeased them very much. + +Therefore they thought to destroy the generation of Jacob that was among them, and thereupon they began to kill and destroy the people. + +Then Judas fought against the children of Esau in Idumea at Arabattine, because they besieged Gael: and he gave them a great overthrow, and abated their courage, and took their spoils. + +Also he remembered the injury of the children of Bean, who had been a snare and an offense to the people, in that they lay in wait for them in the ways. + +He shut them up therefore in the towers, and encamped against them, and destroyed them utterly, and burned the towers of that place with fire, and all that were therein. + +Afterward he passed over to the children of Ammon, where he found a mighty power, and much people, with Timotheus their captain. + +So he fought many battles with them, till at length they were discomfited before him; and he struck them. + +And when he had taken Jazar, with the towns belonging thereto, he returned into Judea. + +Then the heathen that were at Galaad assembled themselves together against the Israelites that were in their quarters, to destroy them; but they fled to the fortress of Dathema. + +And sent letters to Judas and his brethren, The heathen that are round about us are assembled together against us to destroy us: + +And they are preparing to come and take the fortress whereunto we are fled, Timotheus being captain of their host. + +Come now therefore, and deliver us from their hands, for many of us are slain: + +Yes, all our brethren that were in the places of Tobie are put to death: their wives and their children also they have carried away captives, and borne away their stuff; and they have destroyed there about a thousand men. + +While these letters were yet reading, behold, there came other messengers from Galilee with their clothes torn, who reported on this wise, + +And said, They of Ptolemais, and of Tyrus, and Sidon, and all Galilee of the Gentiles, are assembled together against us to consume us. + +Now when Judas and the people heard these words, there assembled a great congregation together, to consult what they should do for their brethren, that were in trouble, and assaulted of them. + +Then said Judas to Simon his brother, Choose you out men, and go and deliver your brethren that are in Galilee, for I and Jonathan my brother will go into the country of Galaad. + +So he left Joseph the son of Zacharias, and Azarias, captains of the people, with the remnant of the host in Judea to keep it. + +To whom he gave commandment, saying, Take you⌃ the charge of this people, and see that you⌃ make not war against the heathen until the time that we come again. + +Now to Simon were given three thousand men to go into Galilee, and to Judas eight thousand men for the country of Galaad. + +Then went Simon into Galilee, where he fought many battles with the heathen, so that the heathen were discomfited by him. + +And he pursued them to the gate of Ptolemais; and there were slain of the heathen about three thousand men, whose spoils he took. + +And those that were in Galilee, and in Arbattis, with their wives and their children, and all that they had, took he away with him, and brought them into Judea with great joy. + +Judas Maccabeus also and his brother Jonathan went over Jordan, and travelled three days' journey in the wilderness, + +Where they met with the Nabathites, who came to them in a peaceful manner, and told them every thing that had happened to their brethren in the land of Galaad: + +And how that many of them were shut up in Bosora, and Bosor, and Alema, Casphor, Maked, and Carnaim; all these cities are strong and great: + +And that they were shut up in the rest of the cities of the country of Galaad, and that against to morrow they had appointed to bring their host against the forts, and to take them, and to destroy them all in one day. + +Hereupon Judas and his host turned suddenly by the way of the wilderness to Bosora; and when he had won the city, he killed all the males with the edge of the sword, and took all their spoils, and burned the city with fire, + +From whence he removed by night, and went till he came to the fortress. + +And betimes in the morning they looked up, and, behold, there was an innumerable people bearing ladders and other engines of war, to take the fortress: for they assaulted them. + +When Judas therefore saw that the battle was begun, and that the cry of the city went up to heaven, with trumpets, and a great sound, + +He said to his host, Fight this day for your brethren. + +So he went forth behind them in three companies, who sounded their trumpets, and cried with prayer. + +Then the host of Timotheus, knowing that it was Maccabeus, fled from him: therefore he struck them with a great slaughter; so that there were killed of them that day about eight thousand men. + +This done, Judas turned aside to Maspha; and after he had assaulted it he took and killed all the males therein, and received the spoils thereof and burnt it with fire. + +From thence went he, and took Casphon, Maged, Bosor, and the other cities of the country of Galaad. + +After these things gathered Timotheus another host and encamped against Raphon beyond the brook. + +So Judas sent men to espy the host, who brought him word, saying, All the heathen that be round about us are assembled to them, even a very great host. + +He has also hired the Arabians to help them and they have pitched their tents beyond the brook, ready to come and fight against you. Upon this Judas went to meet them. + +Then Timotheus said to the captains of his host, When Judas and his host come near the brook, if he pass over first to us, we shall not be able to withstand him; for he will mightily prevail against us: + +But if he be afraid, and camp beyond the river, we shall go over to him, and prevail against him. + +Now when Judas came near the brook, he caused the scribes of the people to remain by the brook: to whom he gave commandment, saying, Suffer no man to remain in the camp, but let all come to the battle. + +So he went first over to them, and all the people after him: then all the heathen, being discomfited before him, cast away their weapons, and fled to the temple that was at Carnaim. + +But they took the city, and burned the temple with all that were therein. Thus was Carnaim subdued, neither could they stand any longer before Judas. + +Then Judas gathered together all the Israelites that were in the country of Galaad, from the least to the greatest, even their wives, and their children, and their stuff, a very great host, to the end they might come into the land of Judea. + +Now when they came to Ephron, (this was a great city in the way as they should go, very well fortified) they could not turn from it, either on the right hand or the left, but must needs pass through the midst of it. + +Then they of the city shut them out, and stopped up the gates with stones. + +Whereupon Judas sent to them in peaceful manner, saying, Let us pass through your land to go into our own country, and none shall do you any hurt; we will only pass through on foot: howbeit they would not open to him. + +Therefore Judas commanded a proclamation to be made throughout the host, that every man should pitch his tent in the place where he was. + +So the soldiers pitched, and assaulted the city all that day and all that night, till at the length the city was delivered into his hands: + +Who then killed all the males with the edge of the sword, and rased the city, and took the spoils thereof, and passed through the city over them that were slain. + +After this they went over Jordan into the great plain before Bethsan. + +And Judas gathered together those that came behind, and exhorted the people all the way through, till they came into the land of Judea. + +So they went up to mount Sion with joy and gladness, where they offered burnt offerings, because not one of them were slain until they had returned in peace. + +Now what time as Judas and Jonathan were in the land of Galaad, and Simon his brother in Galilee before Ptolemais, + +Joseph the son of Zacharias, and Azarias, captains of the garrisons, heard of the valiant acts and warlike deeds which they had done. + +Therefore they said, Let us also get us a name, and go fight against the heathen that are round about us. + +So when they had given charge to the garrison that was with them, they went toward Jamnia. + +Then came Gorgias and his men out of the city to fight against them. + +And so it was, that Joseph and Azarias were put to flight, and pursued to the borders of Judea: and there were slain that day of the people of Israel about two thousand men. + +Thus was there a great overthrow among the children of Israel, because they were not obedient to Judas and his brethren, but thought to do some valiant act. + +Moreover these men came not of the seed of those, by whose hand deliverance was given to Israel. + +Howbeit the man Judas and his brethren were greatly renowned in the sight of all Israel, and of all the heathen, wherever their name was heard of; + +Insomuch as the people assembled to them with joyful acclamations. + +Afterward went Judas forth with his brethren, and fought against the children of Esau in the land toward the south, where he struck Hebron, and the towns thereof, and pulled down the fortress of it, and burned the towers thereof round about. + +From thence he removed to go into the land of the Philistines, and passed through Samaria. + +At that time certain priests, desirous to show their valour, were slain in battle, for that they went out to fight unadvisedly. + +So Judas turned to Azotus in the land of the Philistines, and when he had pulled down their altars, and burned their carved images with fire, and spoiled their cities, he returned into the land of Judea. + +

+ + +

About that time king Antiochus travelling through the high countries heard say, that Elymais in the country of Persia was a city greatly renowned for riches, silver, and gold; + +And that there was in it a very rich temple, wherein were coverings of gold, and breastplates, and shields, which Alexander, son of Philip, the Macedonian king, who reigned first among the Grecians, had left there. + +Therefore he came and sought to take the city, and to spoil it; but he was not able, because they of the city, having had warning thereof, + +Rose up against him in battle: so he fled, and departed thence with great heaviness, and returned to Babylon. + +Moreover there came one who brought him tidings into Persia, that the armies, which went against the land of Judea, were put to flight: + +And that Lysias, who went forth first with a great power was driven away of the Jews; and that they were made strong by the armor, and power, and store of spoils, which they had gotten of the armies, whom they had destroyed: + +Also that they had pulled down the abomination, which he had set up upon the altar in Jerusalem, and that they had compassed about the sanctuary with high walls, as before, and his city Bethsura. + +Now when the king heard these words, he was astonished and sore moved: whereupon he laid him down upon his bed, and fell sick for grief, because it had not befallen him as he looked for. + +And there he continued many days: for his grief was ever more and more, and he made account that he should die. + +Therefore he called for all his friends, and said to them, The sleep is gone from my eyes, and my heart fails for very care. + +And I thought with myself, Into what tribulation am I come, and how great a flood of misery is it, wherein now I am! for I was bountiful and beloved in my power. + +But now I remember the evils that I did at Jerusalem, and that I took all the vessels of gold and silver that were therein, and sent to destroy the inhabitants of Judea without a cause. + +I perceive therefore that for this cause these troubles are come upon me, and, behold, I perish through great grief in a strange land. + +Then called he for Philip, one of his friends, who he made ruler over all his realm, + +And gave him the crown, and his robe, and his signet, to the end he should bring up his son Antiochus, and nourish him up for the kingdom. + +So king Antiochus died there in the hundred forty and ninth year. + +Now when Lysias knew that the king was dead, he set up Antiochus his son, whom he had brought up being young, to reign in his stead, and his name he called Eupator. + +About this time they that were in the tower shut up the Israelites round about the sanctuary, and sought always their hurt, and the strengthening of the heathen. + +Therefore Judas, purposing to destroy them, called all the people together to besiege them. + +So they came together, and besieged them in the hundred and fifties year, and he made mounts for shot against them, and other engines. + +Howbeit certain of them that were besieged got forth, to whom some ungodly men of Israel joined themselves: + +And they went to the king, and said, How long will it be ere you execute judgment, and avenge our brethren? + +We have been willing to serve your father, and to do as he would have us, and to obey his commandments; + +For which cause they of our nation besiege the tower, and are alienated from us: moreover as many of us as they could light on they killed, and spoiled our inheritance. + +Neither have they stretched out their hand against us only, but also against their borders. + +And, behold, this day are they besieging the tower at Jerusalem, to take it: the sanctuary also and Bethsura have they fortified. + +Therefore if you do not prevent them quickly, they will do the greater things than these, neither shall you be able to rule them. + +Now when the king heard this, he was angry, and gathered together all his friends, and the captains of his army, and those that had charge of the horse. + +There came also to him from other kingdoms, and from isles of the sea, bands of hired soldiers. + +So that the number of his army was one hundred thousand footmen, and twenty thousand horsemen, and two and thirty elephants exercised in battle. + +These went through Idumea, and pitched against Bethsura, which they assaulted many days, making engines of war; but they of Bethsura came out, and burned them with fire, and fought valiantly. + +Upon this Judas removed from the tower, and pitched in Bathzacharias, over against the king's camp. + +Then the king rising very early marched fiercely with his host toward Bathzacharias, where his armies made them ready to battle, and sounded the trumpets. + +And to the end they might provoke the elephants to fight, they showed them the blood of grapes and mulberries. + +Moreover they divided the beasts among the armies, and for every elephant they appointed a thousand men, armed with coats of mail, and with helmets of brass on their heads; and beside this, for every beast were ordained five hundred horsemen of the best. + +These were ready at every occasion: wherever the beast was, and wherever the beast went, they went also, neither departed they from him. + +And upon the beasts were there strong towers of wood, which covered every one of them, and were girded fast to them with devices: there were also upon every one two and thirty strong men, that fought upon them, beside the Indian that ruled him. + +As for the remnant of the horsemen, they set them on this side and that side at the two parts of the host giving them signs what to do, and being harnessed all over amidst the ranks. + +Now when the sun shone upon the shields of gold and brass, the mountains glistered therewith, and shined like lamps of fire. + +So part of the king's army being spread upon the high mountains, and part on the valleys below, they marched on safely and in order. + +Therefore all that heard the noise of their multitude, and the marching of the company, and the rattling of the harness, were moved: for the army was very great and mighty. + +Then Judas and his host drew near, and entered into battle, and there were slain of the king's army six hundred men. + +Eleazar also, surnamed Savaran, perceiving that one of the beasts, armed with royal harness, was higher than all the rest, and supposing that the king was upon him, + +Put himself in jeopardy, to the end he might deliver his people, and get him a perpetual name: + +Therefore he ran upon him courageously through the midst of the battle, slaying on the right hand and on the left, so that they were divided from him on both sides. + +Which done, he crept under the elephant, and thrust him under, and killed him: whereupon the elephant fell down upon him, and there he died. + +Howbeit the rest of the Jews seeing the strength of the king, and the violence of his forces, turned away from them. + +Then the king's army went up to Jerusalem to meet them, and the king pitched his tents against Judea, and against mount Sion. + +But with them that were in Bethsura he made peace: for they came out of the city, because they had no food there to endure the siege, it being a year of rest to the land. + +So the king took Bethsura, and set a garrison there to keep it. + +As for the sanctuary, he besieged it many days: and set there artillery with engines and instruments to cast fire and stones, and pieces to cast darts and slings. + +Whereupon they also made engines against their engines, and held them battle a long season. + +Yet at the last, their vessels being without food, (for that it was the seventh year, and they in Judea that were delivered from the Gentiles, had eaten up the residue of the store;) + +There were but a few left in the sanctuary, because the famine did so prevail against them, that they were fain to disperse themselves, every man to his own place. + +At that time Lysias heard say, that Philip, whom Antiochus the king, while he lived, had appointed to bring up his son Antiochus, that he might be king, + +Was returned out of Persia and Media, and the king's host also that went with him, and that he sought to take to him the ruling of the affairs. + +Therefore he went in all haste, and said to the king and the captains of the host and the company, We decay daily, and our food are but small, and the place we lay siege to is strong, and the affairs of the kingdom lie upon us: + +Now therefore let us be friends with these men, and make peace with them, and with all their nation; + +And covenant with them, that they shall live after their laws, as they did before: for they are therefore displeased, and have done all these things, because we abolished their laws. + +So the king and the princes were content: therefore he sent to them to make peace; and they accepted thereof. + +Also the king and the princes made an oath to them: whereupon they went out of the strong hold. + +Then the king entered into mount Sion; but when he saw the strength of the place, he broke his oath that he had made, and gave commandment to pull down the wall round about. + +Afterward departed he in all haste, and returned to Antiochia, where he found Philip to be master of the city: so he fought against him, and took the city by force. + +

+ + +

In the hundred and one and fifties year Demetrius the son of Seleucus departed from Rome, and came up with a few men to a city of the sea coast, and reigned there. + +And as he entered into the palace of his ancestors, so it was, that his forces had taken Antiochus and Lysias, to bring them to him. + +Therefore, when he knew it, he said, Let me not see their faces. + +So his host killed them. Now when Demetrius was set upon the throne of his kingdom, + +There came to him all the wicked and ungodly men of Israel, having Alcimus, who was desirous to be high priest, for their captain: + +And they accused the people to the king, saying, Judas and his brethren have slain all your friends, and driven us out of our own land. + +Now therefore send some man whom you trust, and let him go and see what havock he has made among us, and in the king's land, and let him punish them with all them that aid them. + +Then the king chose Bacchides, a friend of the king, who ruled beyond the flood, and was a great man in the kingdom, and faithful to the king, + +And him he sent with that wicked Alcimus, whom he made high priest, and commanded that he should take vengeance of the children of Israel. + +So they departed, and came with a great power into the land of Judea, where they sent messengers to Judas and his brethren with peaceful words deceitfully. + +But they gave no heed to their words; for they saw that they were come with a great power. + +Then did there assemble to Alcimus and Bacchides a company of scribes, to require justice. + +Now the Assideans were the first among the children of Israel that sought peace of them: + +For said they, One that is a priest of the seed of Aaron is come with this army, and he will do us no wrong. + +So he spoke to them, peaceably, and swore to them, saying, we will procure the harm neither of you nor your friends. + +Whereupon they believed him: howbeit he took of them threescore men, and killed them in one day, according to the words which he wrote, + +The flesh of your saints have they cast out, and their blood have they shed round about Jerusalem, and there was none to bury them. + +Therefore the fear and dread of them fell upon all the people, who said, There is neither truth nor righteousness in them; for they have broken the covenant and oath that they made. + +After this, removed Bacchides from Jerusalem, and pitched his tents in Bezeth, where he sent and took many of the men that had forsaken him, and certain of the people also, and when he had slain them, he cast them into the great pit. + +Then committed he the country to Alcimus, and left with him a power to aid him: so Bacchides went to the king. + +But Alcimus contended for the high priesthood. + +And to him resorted all such as troubled the people, who, after they had gotten the land of Juda into their power, did much hurt in Israel. + +Now when Judas saw all the mischief that Alcimus and his company had done among the Israelites, even above the heathen, + +He went out into all the coasts of Judea round about, and took vengeance of them that had revolted from him, so that they dared no more go forth into the country. + +On the other side, when Alcimus saw that Judas and his company had gotten the upper hand, and knew that he was not able to abide their force, he went again to the king, and said all the worst of them that he could. + +Then the king sent Nicanor, one of his honorable princes, a man that bare deadly hate to Israel, with commandment to destroy the people. + +So Nicanor came to Jerusalem with a great force; and sent to Judas and his brethren deceitfully with friendly words, saying, + +Let there be no battle between me and you; I will come with a few men, that I may see you in peace. + +He came therefore to Judas, and they saluted one another peaceably. Howbeit the enemies were prepared to take away Judas by violence. + +Which thing after it was known to Judas, to wit, that he came to him with deceit, he was sore afraid of him, and would see his face no more. + +Nicanor also, when he saw that his counsel was revealed, went out to fight against Judas beside Capharsalama: + +Where there were slain of Nicanor's side about five thousand men, and the rest fled into the city of David. + +After this went Nicanor up to mount Sion, and there came out of the sanctuary certain of the priests and certain of the elders of the people, to salute him peaceably, and to show him the burnt sacrifice that was offered for the king. + +But he mocked them, and laughed at them, and abused them shamefully, and spoke proudly, + +And swore in his wrath, saying, Unless Judas and his host be now delivered into my hands, if ever I come again in safety, I will burn up this house: and with that he went out in a great rage. + +Then the priests entered in, and stood before the altar and the temple, weeping, and saying, + +You, O Lord, did choose this house to be called by your name, and to be a house of prayer and petition for your people: + +Be avenged of this man and his host, and let them fall by the sword: remember their blasphemies, and suffer them not to continue any longer. + +So Nicanor went out of Jerusalem, and pitched his tents in Bethhoron, where an host out of Syria met him. + +But Judas pitched in Adasa with three thousand men, and there he prayed, saying, + +O Lord, when they that were sent from the king of the Assyrians blasphemed, your angel went out, and struck one hundred fourscore and five thousand of them. + +Even so destroy you this host before us this day, that the rest may know that he has spoken blasphemously against your sanctuary, and judge you him according to his wickedness. + +So the thirteenth day of the month Adar the hosts joined battle: but Nicanor's host was discomfited, and he himself was first slain in the battle. + +Now when Nicanor's host saw that he was slain, they cast away their weapons, and fled. + +Then they pursued after them a day's journey, from Adasa to Gazera, sounding an alarm after them with their trumpets. + +Whereupon they came forth out of all the towns of Judea round about, and closed them in; so that they, turning back upon them that pursued them, were all slain with the sword, and not one of them was left. + +Afterwards they took the spoils, and the prey, and struck off Nicanor's head, and his right hand, which he stretched out so proudly, and brought them away, and hanged them up toward Jerusalem. + +For this cause the people rejoiced greatly, and they kept that day a day of great gladness. + +Moreover they ordained to keep yearly this day, being the thirteenth of Adar. + +Thus the land of Juda was in rest a little while. + +

+ + +

Now Judas had heard of the fame of the Romans, that they were mighty and valiant men, and such as would lovingly accept all that joined themselves to them, and make a league of amity with all that came to them; + +And that they were men of great valour. It was told him also of their wars and noble acts which they had done among the Galatians, and how they had conquered them, and brought them under tribute; + +And what they had done in the country of Spain, for the winning of the mines of the silver and gold which is there; + +And that by their policy and patience they had conquered all the place, though it were very far from them; and the kings also that came against them from the uttermost part of the earth, till they had discomfited them, and given them a great overthrow, so that the rest did give them tribute every year: + +Beside this, how they had discomfited in battle Philip, and Perseus, king of the Citims, with others that lifted up themselves against them, and had overcome them: + +How also Antiochus the great king of Asia, that came against them in battle, having one hundred and twenty elephants, with horsemen, and chariots, and a very great army, was discomfited by them; + +And how they took him alive, and covenanted that he and such as reigned after him should pay a great tribute, and give hostages, and that which was agreed upon, + +And the country of India, and Media and Lydia and of the goodliest countries, which they took of him, and gave to king Eumenes: + +Moreover how the Grecians had determined to come and destroy them; + +And that they, having knowledge thereof sent against them a certain captain, and fighting with them killed many of them, and carried away captives their wives and their children, and spoiled them, and took possession of their lands, and pulled down their strong holds, and brought them to be their servants to this day: + +It was told him besides, how they destroyed and brought under their dominion all other kingdoms and isles that at any time resisted them; + +But with their friends and such as relied upon them they kept amity: and that they had conquered kingdoms both far and near, insomuch as all that heard of their name were afraid of them: + +Also that, whom they would help to a kingdom, those reign; and whom again they would, they displace: finally, that they were greatly exalted: + +Yet for all this none of them wore a crown or was clothed in purple, to be magnified thereby: + +Moreover how they had made for themselves a senate house, wherein three hundred and twenty men sat in council daily, consulting always for the people, to the end they might be well ordered: + +And that they committed their government to one man every year, who ruled over all their country, and that all were obedient to that one, and that there was neither envy nor emulation among them. + +In consideration of these things, Judas chose Eupolemus the son of John, the son of Accos, and Jason the son of Eleazar, and sent them to Rome, to make a league of amity and confederacy with them, + +And to entreat them that they would take the yoke from them; for they saw that the kingdom of the Grecians did oppress Israel with servitude. + +They went therefore to Rome, which was a very great journey, and came into the senate, where they spoke and said. + +Judas Maccabeus with his brethren, and the people of the Jews, have sent us to you, to make a confederacy and peace with you, and that we might be registered your confederates and friends. + +So that matter pleased the Romans well. + +And this is the copy of the epistle which the senate wrote back again in tables of brass, and sent to Jerusalem, that there they might have by them a memorial of peace and confederacy: + +Good success be to the Romans, and to the people of the Jews, by sea and by land for ever: the sword also and enemy be far from them, + +If there come first any war upon the Romans or any of their confederates throughout all their dominion, + +The people of the Jews shall help them, as the time shall be appointed, with all their heart: + +Neither shall they give any thing to them that make war upon them, or aid them with food, weapons, money, or ships, as it has seemed good to the Romans; but they shall keep their covenants without taking any thing therefore. + +In the same manner also, if war come first upon the nation of the Jews, the Romans shall help them with all their heart, according as the time shall be appointed them: + +Neither shall food be given to them that take part against them, or weapons, or money, or ships, as it has seemed good to the Romans; but they shall keep their covenants, and that without deceit. + +According to these articles did the Romans make a covenant with the people of the Jews. + +Howbeit if hereafter the one party or the other shall think to meet to add or diminish any thing, they may do it at their pleasures, and whatever they shall add or take away shall be ratified. + +And as touching the evils that Demetrius does to the Jews, we have written to him, saying, Therefore you made your yoke heavy upon our friends and confederates the Jews? + +If therefore they complain any more against you, we will do them justice, and fight with you by sea and by land. + +

+ + +

Furthermore, when Demetrius heard the Nicanor and his host were slain in battle, he sent Bacchides and Alcimus into the land of Judea the second time, and with them the chief strength of his host: + +Who went forth by the way that leads to Galgala, and pitched their tents before Masaloth, which is in Arbela, and after they had won it, they killed much people. + +Also the first month of the hundred fifty and second year they encamped before Jerusalem: + +From whence they removed, and went to Berea, with twenty thousand footmen and two thousand horsemen. + +Now Judas had pitched his tents at Eleasa, and three thousand chosen men with him: + +Who seeing the multitude of the other army to he so great were sore afraid; whereupon many conveyed themselves out of the host, insomuch as abode of them no more but eight hundred men. + +When Judas therefore saw that his host slipt away, and that the battle pressed upon him, he was sore troubled in mind, and much distressed, for that he had no time to gather them together. + +Nevertheless to them that remained he said, Let us arise and go up against our enemies, if perhaps we may be able to fight with them. + +But they dehorted him, saying, We shall never be able: let us now rather save our lives, and hereafter we will return with our brethren, and fight against them: for we are but few. + +Then Judas said, God forbid that I should do this thing, and flee away from them: if our time be come, let us die manfully for our brethren, and let us not stain our honor. + +With that the host of Bacchides removed out of their tents, and stood over against them, their horsemen being divided into two troops, and their slingers and archers going before the host and they that marched in the foreward were all mighty men. + +As for Bacchides, he was in the right wing: so the host drew near on the two parts, and sounded their trumpets. + +They also of Judas' side, even they sounded their trumpets also, so that the earth shook at the noise of the armies, and the battle continued from morning till night. + +Now when Judas perceived that Bacchides and the strength of his army were on the right side, he took with him all the hardy men, + +Who discomfited the right wing, and pursued them to the mount Azotus. + +But when they of the left wing saw that they of the right wing were discomfited, they followed upon Judas and those that were with him hard at the heels from behind: + +Whereupon there was a sore battle, insomuch as many were slain on both parts. + +Judas also was killed, and the remnant fled. + +Then Jonathan and Simon took Judas their brother, and buried him in the sepulchre of his fathers in Modin. + +Moreover they bewailed him, and all Israel made great lamentation for him, and mourned many days, saying, + +How is the valiant man fallen, that delivered Israel! + +As for the other things concerning Judas and his wars, and the noble acts which he did, and his greatness, they are not written: for they were very many. + +Now after the death of Judas the wicked began to put forth their heads in all the coasts of Israel, and there arose up all such as wrought iniquity. + +In those days also was there a very great famine, by reason whereof the country revolted, and went with them. + +Then Bacchides chose the wicked men, and made them lords of the country. + +And they made enquiry and search for Judas' friends, and brought them to Bacchides, who took vengeance of them, and used them despitefully. + +So was there a great affliction in Israel, the like whereof was not since the time that a prophet was not seen among them. + +For this cause all Judas' friends came together, and said to Jonathan, + +Since your brother Judas died, we have no man like him to go forth against our enemies, and Bacchides, and against them of our nation that are adversaries to us. + +Now therefore we have chosen you this day to be our prince and captain in his stead, that you may fight our battles. + +Upon this Jonathan took the governance upon him at that time, and rose up instead of his brother Judas. + +But when Bacchides got knowledge thereof, he sought for to kill him + +Then Jonathan, and Simon his brother, and all that were with him, perceiving that, fled into the wilderness of Thecoe, and pitched their tents by the water of the pool Asphar. + +Which when Bacchides understood, he came near to Jordan with all his host upon the sabbath day. + +Now Jonathan had sent his brother John, a captain of the people, to pray his friends the Nabathites, that they might leave with them their carriage, which was much. + +But the children of Jambri came out of Medaba, and took John, and all that he had, and went their way with it. + +After this came word to Jonathan and Simon his brother, that the children of Jambri made a great marriage, and were bringing the bride from Nadabatha with a great train, as being the daughter of one of the great princes of Chanaan. + +Therefore they remembered John their brother, and went up, and hid themselves under the covert of the mountain: + +Where they lifted up their eyes, and looked, and, behold, there was much ado and great carriage: and the bridegroom came forth, and his friends and brethren, to meet them with drums, and instruments of musick, and many weapons. + +Then Jonathan and they that were with him rose up against them from the place where they lay in ambush, and made a slaughter of them in such sort, as many fell down dead, and the remnant fled into the mountain, and they took all their spoils. + +Thus was the marriage turned into mourning, and the noise of their melody into lamentation. + +So when they had avenged fully the blood of their brother, they turned again to the marsh of Jordan. + +Now when Bacchides heard hereof, he came on the sabbath day to the banks of Jordan with a great power. + +Then Jonathan said to his company, Let us go up now and fight for our lives, for it stands not with us to day, as in time past: + +For, behold, the battle is before us and behind us, and the water of Jordan on this side and that side, the marsh likewise and wood, neither is there place for us to turn aside. + +Therefore cry you⌃ now to heaven, that you⌃ may be delivered from the hand of your enemies. + +With that they joined battle, and Jonathan stretched forth his hand to strike Bacchides, but he turned back from him. + +Then Jonathan and they that were with him leapt into Jordan, and swam over to the other bank: howbeit the other passed not over Jordan to them. + +So there were slain of Bacchides' side that day about a thousand men. + +Afterward returned Bacchides to Jerusalem and repaired the strong cites in Judea; the fort in Jericho, and Emmaus, and Bethhoron, and Bethel, and Thamnatha, Pharathoni, and Taphon, these did he strengthen with high walls, with gates and with bars. + +And in them he set a garrison, that they might work malice upon Israel. + +He fortified also the city Bethsura, and Gazera, and the tower, and put forces in them, and provision of food. + +Besides, he took the chief men's sons in the country for hostages, and put them into the tower at Jerusalem to be kept. + +Moreover in the hundred fifty and third year, in the second month, Alcimus commanded that the wall of the inner court of the sanctuary should be pulled down; he pulled down also the works of the prophets + +And as he began to pull down, even at that time was Alcimus plagued, and his enterprises hindered: for his mouth was stopped, and he was taken with a palsy, so that he could no more speak any thing, nor give order concerning his house. + +So Alcimus died at that time with great torment. + +Now when Bacchides saw that Alcimus was dead, he returned to the king: whereupon the land of Judea was in rest two years. + +Then all the ungodly men held a council, saying, Behold, Jonathan and his company are at ease, and dwell without care: now therefore we will bring Bacchides hither, who shall take them all in one night. + +So they went and consulted with him. + +Then removed he, and came with a great host, and sent letters privily to his adherents in Judea, that they should take Jonathan and those that were with him: howbeit they could not, because their counsel was known to them. + +Therefore they took of the men of the country, that were authors of that mischief, about fifty persons, and killed them. + +Afterward Jonathan, and Simon, and they that were with him, got them away to Bethbasi, which is in the wilderness, and they repaired the decays thereof, and made it strong. + +Which thing when Bacchides knew, he gathered together all his host, and sent word to them that were of Judea. + +Then went he and laid siege against Bethbasi; and they fought against it a long season and made engines of war. + +But Jonathan left his brother Simon in the city, and went forth himself into the country, and with a certain number went he forth. + +And he struck Odonarkes and his brethren, and the children of Phasiron in their tent. + +And when he began to strike them, and came up with his forces, Simon and his company went out of the city, and burned up the engines of war, + +And fought against Bacchides, who was discomfited by them, and they afflicted him sore: for his counsel and travail was in vain. + +Therefore he was very angry at the wicked men that gave him counsel to come into the country, inasmuch as he killed many of them, and purposed to return into his own country. + +Whereof when Jonathan had knowledge, he sent ambassadors to him, to the end he should make peace with him, and deliver them the prisoners. + +Which thing he accepted, and did according to his demands, and swore to him that he would never do him harm all the days of his life. + +When therefore he had restored to him the prisoners that he had taken aforetime out of the land of Judea, he returned and went his way into his own land, neither came he any more into their borders. + +Thus the sword ceased from Israel: but Jonathan lived at Machmas, and began to govern the people; and he destroyed the ungodly men out of Israel. + +

+ + +

In the hundred and sixties year Alexander, the son of Antiochus surnamed Epiphanes, went up and took Ptolemais: for the people had received him, by means whereof he reigned there, + +Now when king Demetrius heard thereof, he gathered together an exceeding great host, and went forth against him to fight. + +Moreover Demetrius sent letters to Jonathan with loving words, so as he magnified him. + +For said he, Let us first make peace with him, before he join with Alexander against us: + +Else he will remember all the evils that we have done against him, and against his brethren and his people. + +Therefore he gave him authority to gather together an host, and to provide weapons, that he might aid him in battle: he commanded also that the hostages that were in the tower should be delivered him. + +Then came Jonathan to Jerusalem, and read the letters in the audience of all the people, and of them that were in the tower: + +Who were sore afraid, when they heard that the king had given him authority to gather together an host. + +Whereupon they of the tower delivered their hostages to Jonathan, and he delivered them to their parents. + +This done, Jonathan settled himself in Jerusalem, and began to build and repair the city. + +And he commanded the workmen to build the walls and the mount Sion and about with square stones for fortification; and they did so. + +Then the strangers, that were in the fortresses which Bacchides had built, fled away; + +Insomuch as every man left his place, and went into his own country. + +Only at Bethsura certain of those that had forsaken the law and the commandments remained still: for it was their place of refuge. + +Now when king Alexander had heard what promises Demetrius had sent to Jonathan: when also it was told him of the battles and noble acts which he and his brethren had done, and of the pains that they had endured, + +He said, Shall we find such another man? now therefore we will make him our friend and confederate. + +Upon this he wrote a letter, and sent it to him, according to these words, saying, + +King Alexander to his brother Jonathan sends greeting: + +We have heard of you, that you are a man of great power, and meet to be our friend. + +Therefore now this day we ordain you to be the high priest of your nation, and to be called the king's friend; (and therewithal he sent him a purple robe and a crown of gold:) and require you to take our part, and keep friendship with us. + +So in the seventh month of the hundred and sixties year, at the feast of the tabernacles, Jonathan put on the holy robe, and gathered together forces, and provided much armor. + +Whereof when Demetrius heard, he was very sorry, and said, + +What have we done, that Alexander has prevented us in making amity with the Jews to strengthen himself? + +I also will write to them words of encouragement, and promise them dignities and gifts, that I may have their aid. + +He sent to them therefore to this effect: King Demetrius to the people of the Jews sends greeting: + +Whereas you⌃ have kept covenants with us, and continued in our friendship, not joining yourselves with our enemies, we have heard hereof, and are glad. + +Therefore now continue you⌃ still to be faithful to us, and we will well recompense you for the things you⌃ do in our behalf, + +And will grant you many immunities, and give you rewards. + +And now do I free you, and for your sake I release all the Jews, from tributes, and from the customs of salt, and from crown taxes, + +And from that which appertains to me to receive for the third part or the seed, and the half of the fruit of the trees, I release it from this day forth, so that they shall not be taken of the land of Judea, nor of the three governments which are added thereto out of the country of Samaria and Galilee, from this day forth for evermore. + +Let Jerusalem also be holy and free, with the borders thereof, both from tenths and tributes. + +And as for the tower which is at Jerusalem, I yield up authority over it, and give the high priest, that he may set in it such men as he shall choose to keep it. + +Moreover I freely set at liberty every one of the Jews, that were carried captives out of the land of Judea into any part of my kingdom, and I will that all my officers remit the tributes even of their cattle. + +Furthermore I will that all the feasts, and sabbaths, and new moons, and solemn days, and the three days before the feast, and the three days after the feast shall be all of immunity and freedom for all the Jews in my realm. + +Also no man shall have authority to meddle with or to molest any of them in any matter. + +I will further, that there be enrolled among the king's forces about thirty thousand men of the Jews, to whom pay shall be given, as belongs to all king's forces. + +And of them some shall be placed in the king's strong holds, of whom also some shall be set over the affairs of the kingdom, which are of trust: and I will that their overseers and governors be of themselves, and that they live after their own laws, even as the king has commanded in the land of Judea. + +And concerning the three governments that are added to Judea from the country of Samaria, let them be joined with Judea, that they may be reckoned to be under one, nor bound to obey other authority than the high priest's. + +As for Ptolemais, and the land pertaining thereto, I give it as a free gift to the sanctuary at Jerusalem for the necessary expenses of the sanctuary. + +Moreover I give every year fifteen thousand shekels of silver out of the king's accounts from the places appertaining. + +And all the overplus, which the officers payed not in as in former time, from henceforth shall be given toward the works of the temple. + +And beside this, the five thousand shekels of silver, which they took from the uses of the temple out of the accounts year by year, even those things shall be released, because they appertain to the priests that minister. + +And whoever they be that flee to the temple at Jerusalem, or be within the liberties hereof, being indebted to the king, or for any other matter, let them be at liberty, and all that they have in my realm. + +For the building also and repairing of the works of the sanctuary expenses shall be given of the king's accounts. + +Yes, and for the building of the walls of Jerusalem, and the fortifying thereof round about, expenses shall be given out of the king's accounts, as also for the building of the walls in Judea. + +Now when Jonathan and the people heard these words, they gave no credit to them, nor received them, because they remembered the great evil that he had done in Israel; for he had afflicted them very sore. + +But with Alexander they were well pleased, because he was the first that entreated of true peace with them, and they were confederate with him always. + +Then gathered king Alexander great forces, and camped over against Demetrius. + +And after the two kings had joined battle, Demetrius' host fled: but Alexander followed after him, and prevailed against them. + +And he continued the battle very sore until the sun went down: and that day was Demetrius slain. + +Afterward Alexander sent ambassadors to Ptolemee king of Egypt with a message to this effect: + +Forasmuch as I am come again to my realm, and am set in the throne of my progenitors, and have gotten the dominion, and overthrown Demetrius, and recovered our country; + +For after I had joined battle with him, both he and his host was discomfited by us, so that we sit in the throne of his kingdom: + +Now therefore let us make a league of amity together, and give me now your daughter to wife: and I will be your son in law, and will give both you and her as according to your dignity. + +Then Ptolemee the king gave answer, saying, Happy be the day wherein you did return into the land of your fathers, and sat in the throne of their kingdom. + +And now will I do to you, as you have written: meet me therefore at Ptolemais, that we may see one another; for I will marry my daughter to you according to your desire. + +So Ptolemee went out of Egypt with his daughter Cleopatra, and they came to Ptolemais in the hundred threescore and second year: + +Where king Alexander meeting him, he gave to him his daughter Cleopatra, and celebrated her marriage at Ptolemais with great glory, as the manner of kings is. + +Now king Alexander had written to Jonathan, that he should come and meet him. + +Who thereupon went honorably to Ptolemais, where he met the two kings, and gave them and their friends silver and gold, and many presents, and found favor in their sight. + +At that time certain pestilent fellows of Israel, men of a wicked life, assembled themselves against him, to accuse him: but the king would not hear them. + +Yes more than that, the king commanded to take off his garments, and clothe him in purple: and they did so. + +And he made him sit by himself, and said into his princes, Go with him into the midst of the city, and make proclamation, that no man complain against him of any matter, and that no man trouble him for any manner of cause. + +Now when his accusers saw that he was honored according to the proclamation, and clothed in purple, they fled all away. + +So the king honored him, and wrote him among his chief friends, and made him a duke, and partaker of his dominion. + +Afterward Jonathan returned to Jerusalem with peace and gladness. + +Furthermore in the; hundred threescore and fifth year came Demetrius son of Demetrius out of Crete into the land of his fathers: + +Whereof when king Alexander heard tell, he was right sorry, and returned into Antioch. + +Then Demetrius made Apollonius the governor of Celosyria his general, who gathered together a great host, and camped in Jamnia, and sent to Jonathan the high priest, saying, + +You alone lift up yourself against us, and I am laughed to scorn for your sake, and reproached: and why do you vaunt your power against us in the mountains? + +Now therefore, if you trust in your own strength, come down to us into the plain field, and there let us try the matter together: for with me is the power of the cities. + +Ask and learn who I am, and the rest that take our part, and they shall tell you that your foot is not able to stand before our face; for your fathers have twice been put to flight in their own land. + +Therefore now you shall not be able to abide the horsemen and so great a power in the plain, where is neither stone nor flint, nor place to flee to. + +So when Jonathan heard these words of Apollonius, he was moved in his mind, and choosing ten thousand men he went out of Jerusalem, where Simon his brother met him for to help him. + +And he pitched his tents against Joppa: but; they of Joppa shut him out of the city, because Apollonius had a garrison there. + +Then Jonathan laid siege to it: whereupon they of the city let him in for fear: and so Jonathan won Joppa. + +Whereof when Apollonius heard, he took three thousand horsemen, with a great host of footmen, and went to Azotus as one that journeyed, and therewithal drew him forth into the plain. because he had a great number of horsemen, in whom he put his trust. + +Then Jonathan followed after him to Azotus, where the armies joined battle. + +Now Apollonius had left a thousand horsemen in ambush. + +And Jonathan knew that there was an ambushment behind him; for they had compassed in his host, and cast darts at the people, from morning till evening. + +But the people stood still, as Jonathan had commanded them: and so the enemies' horses were tired. + +Then brought Simon forth his host, and set them against the footmen, (for the horsemen were spent) who were discomfited by him, and fled. + +The horsemen also, being scattered in the field, fled to Azotus, and went into Bethdagon, their idol's temple, for safety. + +But Jonathan set fire on Azotus, and the cities round about it, and took their spoils; and the temple of Dagon, with them that were fled into it, he burned with fire. + +Thus there were burned and slain with the sword well near eight thousand men. + +And from thence Jonathan removed his host, and camped against Ascalon, where the men of the city came forth, and met him with great pomp. + +After this returned Jonathan and his host to Jerusalem, having any spoils. + +Now when king Alexander heard these things, he honored Jonathan yet more. + +And sent him a buckle of gold, as the use is to be given to such as are of the king's blood: he gave him also Accaron with the borders thereof in possession. + +

+ + +

And the king of Egypt gathered together a great host, like the sand that lies upon the sea shore, and many ships, and went about through deceit to get Alexander's kingdom, and join it to his own. + +Whereupon he took his journey into Syria in peaceful manner, so as they of the cities opened to him, and met him: for king Alexander had commanded them so to do, because he was his brother in law. + +Now as Ptolemee entered into the cities, he set in every one of them a garrison of soldiers to keep it. + +And when he came near to Azotus, they showed him the temple of Dagon that was burnt, and Azotus and the suburbs thereof that were destroyed, and the bodies that were cast abroad and them that he had burnt in the battle; for they had made heaps of them by the way where he should pass. + +Also they told the king whatever Jonathan had done, to the intent he might blame him: but the king held his peace. + +Then Jonathan met the king with great pomp at Joppa, where they saluted one another, and lodged. + +Afterward Jonathan, when he had gone with the king to the river called Eleutherus, returned again to Jerusalem. + +King Ptolemee therefore, having gotten the dominion of the cities by the sea to Seleucia upon the sea coast, imagined wicked counsels against Alexander. + +Whereupon he sent ambassadors to king Demetrius, saying, Come, let us make a league between us, and I will give you my daughter whom Alexander has, and you shall reign in your father's kingdom: + +For I repent that I gave my daughter to him, for he sought to kill me. + +Thus did he slander him, because he was desirous of his kingdom. + +Therefore he took his daughter from him, and gave her to Demetrius, and forsook Alexander, so that their hatred was openly known. + +Then Ptolemee entered into Antioch, where he set two crowns upon his head, the crown of Asia, and of Egypt. + +In the mean season was king Alexander in Cilicia, because those that lived in those parts had revolted from him. + +But when Alexander heard of this, he came to war against him: whereupon king Ptolemee brought forth his host, and met him with a mighty power, and put him to flight. + +So Alexander fled into Arabia there to be defended; but king Ptolemee was exalted: + +For Zabdiel the Arabian took off Alexander's head, and sent it to Ptolemee. + +King Ptolemee also died the third day after, and they that were in the strong holds were slain one of another. + +By this means Demetrius reigned in the hundred threescore and seventh year. + +At the same time Jonathan gathered together them that were in Judea to take the tower that was in Jerusalem: and he made many engines of war against it. + +Then came ungodly persons, who hated their own people, went to the king, and told him that Jonathan besieged the tower, + +Whereof when he heard, he was angry, and immediately removing, he came to Ptolemais, and wrote to Jonathan, that he should not lay siege to the tower, but come and speak with him at Ptolemais in great haste. + +Nevertheless Jonathan, when he heard this, commanded to besiege it still: and he chose certain of the elders of Israel and the priests, and put himself in peril; + +And took silver and gold, and raiment, and various presents besides, and went to Ptolemais to the king, where he found favor in his sight. + +And though certain ungodly men of the people had made complaints against him, + +Yet the king entreated him as his predecessors had done before, and promoted him in the sight of all his friends, + +And confirmed him in the high priesthood, and in all the honors that he had before, and gave him preeminence among his chief friends. + +Then Jonathan desired the king, that he would make Judea free from tribute, as also the three governments, with the country of Samaria; and he promised him three hundred talents. + +So the king consented, and wrote letters to Jonathan of all these things after this manner: + +King Demetrius to his brother Jonathan, and to the nation of the Jews, sends greeting: + +We send you here a copy of the letter which we did write to our cousin Lasthenes concerning you, that you⌃ might see it. + +King Demetrius to his father Lasthenes sends greeting: + +We are determined to do good to the people of the Jews, who are our friends, and keep covenants with us, because of their good will toward us. + +Therefore we have ratified to them the borders of Judea, with the three governments of Apherema and Lydda and Ramathem, that are added to Judea from the country of Samaria, and all things appertaining to them, for all such as do sacrifice in Jerusalem, instead of the payments which the king received of them yearly aforetime out of the fruits of the earth and of trees. + +And as for other things that belong to us, of the tithes and customs pertaining to us, as also the saltpits, and the crown taxes, which are due to us, we discharge them of them all for their relief. + +And nothing hereof shall be revoked from this time forth for ever. + +Now therefore see that you make a copy of these things, and let it be delivered to Jonathan, and set upon the holy mount in a conspicuous place. + +After this, when king Demetrius saw that the land was quiet before him, and that no resistance was made against him, he sent away all his forces, every one to his own place, except certain bands of strangers, whom he had gathered from the isles of the heathen: therefore all the forces of his fathers hated him. + +Moreover there was one Tryphon, that had been of Alexander's part before, who, seeing that all the host murmured against Demetrius, went to Simalcue the Arabian that brought up Antiochus the young son of Alexander, + +And lay sore upon him to deliver him this young Antiochus, that he might reign in his father's stead: he told him therefore all that Demetrius had done, and how his men of war were at enmity with him, and there he remained a long season. + +In the mean time Jonathan sent to king Demetrius, that he would cast those of the tower out of Jerusalem, and those also in the fortresses: for they fought against Israel. + +So Demetrius sent to Jonathan, saying, I will not only do this for you and your people, but I will greatly honor you and your nation, if opportunity serve. + +Now therefore you shall do well, if you send me men to help me; for all my forces are gone from me. + +Upon this Jonathan sent him three thousand strong men to Antioch: and when they came to the king, the king was very glad of their coming. + +Howbeit they that were of the city gathered themselves together into the midst of the city, to the number of one hundred and twenty thousand men, and would have slain the king. + +Therefore the king fled into the court, but they of the city kept the passages of the city, and began to fight. + +Then the king called to the Jews for help, who came to him all at once, and dispersing themselves through the city killed that day in the city to the number of one hundred thousand. + +Also they set fire on the city, and got many spoils that day, and delivered the king. + +So when they of the city saw that the Jews had got the city as they would, their courage was abated: therefore they made supplication to the king, and cried, saying, + +Grant us peace, and let the Jews cease from assaulting us and the city. + +With that they cast away their weapons, and made peace; and the Jews were honored in the sight of the king, and in the sight of all that were in his realm; and they returned to Jerusalem, having great spoils. + +So king Demetrius sat on the throne of his kingdom, and the land was quiet before him. + +Nevertheless he dissembled in all that ever he spoke, and estranged himself from Jonathan, neither rewarded he him according to the benefits which he had received of him, but troubled him very sore. + +After this returned Tryphon, and with him the young child Antiochus, who reigned, and was crowned. + +Then there gathered to him all the men of war, whom Demetrius had put away, and they fought against Demetrius, who turned his back and fled. + +Moreover Tryphon took the elephants, and won Antioch. + +At that time young Antiochus wrote to Jonathan, saying, I confirm you in the high priesthood, and appoint you ruler over the four governments, and to be one of the king's friends. + +Upon this he sent him golden vessels to be served in, and gave him leave to drink in gold, and to be clothed in purple, and to wear a golden buckle. + +His brother Simon also he made captain from the place called The ladder of Tyrus to the borders of Egypt. + +Then Jonathan went forth, and passed through the cities beyond the water, and all the forces of Syria gathered themselves to him for to help him: and when he came to Ascalon, they of the city met him honorably. + +From whence he went to Gaza, but they of Gaza shut him out; therefore he laid siege to it, and burned the suburbs thereof with fire, and spoiled them. + +Afterward, when they of Gaza made supplication to Jonathan, he made peace with them, and took the sons of their chief men for hostages, and sent them to Jerusalem, and passed through the country to Damascus. + +Now when Jonathan heard that Demetrius' princes were come to Cades, which is in Galilee, with a great power, purposing to remove him out of the country, + +He went to meet them, and left Simon his brother in the country. + +Then Simon encamped against Bethsura and fought against it a long season, and shut it up: + +But they desired to have peace with him, which he granted them, and then put them out from thence, and took the city, and set a garrison in it. + +As for Jonathan and his host, they pitched at the water of Gennesar, from whence betimes in the morning they got them to the plain of Nasor. + +And, behold, the host of strangers met them in the plain, who, having laid men in ambush for him in the mountains, came themselves over against him. + +So when they that lay in ambush rose out of their places and joined battle, all that were of Jonathan's side fled; + +Insomuch as there was not one of them left, except Mattathias the son of Absalom, and Judas the son of Calphi, the captains of the host. + +Then Jonathan tore his clothes, and cast earth upon his head, and prayed. + +Afterwards turning again to battle, he put them to flight, and so they ran away. + +Now when his own men that were fled saw this, they turned again to him, and with him pursued them to Cades, even to their own tents, and there they camped. + +So there were slain of the heathen that day about three thousand men: but Jonathan returned to Jerusalem. + +

+ + +

Now when Jonathan saw that time served him, he chose certain men, and sent them to Rome, for to confirm and renew the friendship that they had with them. + +He sent letters also to the Lacedemonians, and to other places, for the same purpose. + +So they went to Rome, and entered into the senate, and said, Jonathan the high priest, and the people of the Jews, sent us to you, to the end you⌃ should renew the friendship, which you⌃ had with them, and league, as in former time. + +Upon this the Romans gave them letters to the governors of every place that they should bring them into the land of Judea peaceably. + +And this is the copy of the letters which Jonathan wrote to the Lacedemonians: + +Jonathan the high priest, and the elders of the nation, and the priests, and the other of the Jews, to the Lacedemonians their brethren send greeting: + +There were letters sent in times past to Onias the high priest from Darius, who reigned then among you, to signify that you⌃ are our brethren, as the copy here underwritten does specify. + +At which time Onias entreated the ambassador that was sent honorably, and received the letters, wherein declaration was made of the league and friendship. + +Therefore we also, albeit we need none of these things, that we have the holy books of scripture in our hands to comfort us, + +Have nevertheless attempted to send to you for the renewing of brotherhood and friendship, lest we should become strangers to you altogether: for there is a long time passed since you⌃ sent to us. + +We therefore at all times without ceasing, both in our feasts, and other convenient days, do remember you in the sacrifices which we offer, and in our prayers, as reason is, and as it becomes us to think upon our brethren: + +And we are right glad of your honor. + +As for ourselves, we have had great troubles and wars on every side, forsomuch as the kings that are round about us have fought against us. + +Howbeit we would not be troublesome to you, nor to others of our confederates and friends, in these wars: + +For we have help from heaven that helps us, so as we are delivered from our enemies, and our enemies are brought under foot. + +For this cause we chose Numenius the son of Antiochus, and Antipater he son of Jason, and sent them to the Romans, to renew the amity that we had with them, and the former league. + +We commanded them also to go to you, and to salute and to deliver you our letters concerning the renewing of our brotherhood. + +Therefore now you⌃ shall do well to give us an answer thereto. + +And this is the copy of the letters which Oniares sent. + +Areus king of the Lacedemonians to Onias the high priest, greeting: + +It is found in writing, that the Lacedemonians and Jews are brethren, and that they are of the stock of Abraham: + +Now therefore, since this is come to our knowledge, you⌃ shall do well to write to us of your prosperity. + +We do write back again to you, that your cattle and goods are our's, and our's are your's We do command therefore our ambassadors to make report to you on this wise. + +Now when Jonathan heard that Demetrius' princes were come to fight against him with a greater host than before, + +He removed from Jerusalem, and met them in the land of Amathis: for he gave them no respite to enter his country. + +He sent spies also to their tents, who came again, and told him that they were appointed to come upon them in the night season. + +Therefore so soon as the sun was down, Jonathan commanded his men to watch, and to be in arms, that all the night long they might be ready to fight: also he sent forth sentinels round about the host. + +But when the adversaries heard that Jonathan and his men were ready for battle, they feared, and trembled in their hearts, and they kindled fires in their camp. + +Howbeit Jonathan and his company knew it not till the morning: for they saw the lights burning. + +Then Jonathan pursued after them, but overtook them not: for they were gone over the river Eleutherus. + +Therefore Jonathan turned to the Arabians, who were called Zabadeans, and struck them, and took their spoils. + +And removing thence, he came to Damascus, and so passed through all the country, + +Simon also went forth, and passed through the country to Ascalon, and the holds there adjoining, from whence he turned aside to Joppa, and won it. + +For he had heard that they would deliver the hold to them that took Demetrius' part; therefore he set a garrison there to keep it. + +After this came Jonathan home again, and calling the elders of the people together, he consulted with them about building strong holds in Judea, + +And making the walls of Jerusalem higher, and raising a great mount between the tower and the city, for to separate it from the city, that so it might be alone, that men might neither sell nor buy in it. + +Upon this they came together to build up the city, forasmuch as part of the wall toward the brook on the east side was fallen down, and they repaired that which was called Caphenatha. + +Simon also set up Adida in Sephela, and made it strong with gates and bars. + +Now Tryphon went about to get the kingdom of Asia, and to kill Antiochus the king, that he might set the crown upon his own head. + +Howbeit he was afraid that Jonathan would not suffer him, and that he would fight against him; therefore he sought a way how to take Jonathan, that he might kill him. So he removed, and came to Bethsan. + +Then Jonathan went out to meet him with forty thousand men chosen for the battle, and came to Bethsan. + +Now when Tryphon saw Jonathan came with so great a force, he dared not stretch his hand against him; + +But received him honorably, and commended him to all his friends, and gave him gifts, and commanded his men of war to be as obedient to him, as to himself. + +To Jonathan also he said, Why have you brought all this people to so great trouble, seeing there is no war between us? + +Therefore send them now home again, and choose a few men to wait on you, and come you with me to Ptolemais, for I will give it you, and the rest of the strong holds and forces, and all that have any charge: as for me, I will return and depart: for this is the cause of my coming. + +So Jonathan believing him did as he bade him, and sent away his host, who went into the land of Judea. + +And with himself he retained but three thousand men, of whom he sent two thousand into Galilee, and one thousand went with him. + +Now as soon as Jonathan entered into Ptolemais, they of Ptolemais shut the gates and took him, and all them that came with him they killed with the sword. + +Then sent Tryphon an host of footmen and horsemen into Galilee, and into the great plain, to destroy all Jonathan's company. + +But when they knew that Jonathan and they that were with him were taken and slain, they encouraged one another; and went close together, prepared to fight. + +They therefore that followed upon them, perceiving that they were ready to fight for their lives, turned back again. + +Whereupon they all came into the land of Judea peaceably, and there they bewailed Jonathan, and them that were with him, and they were sore afraid; therefore all Israel made great lamentation. + +Then all the heathen that were round about then sought to destroy them: for said they, They have no captain, nor any to help them: now therefore let us make war upon them, and take away their memorial from among men. + +

+ + +

Now when Simon heard that Tryphon had gathered together a great host to invade the land of Judea, and destroy it, + +And saw that the people was in great trembling and fear, he went up to Jerusalem, and gathered the people together, + +And gave them exhortation, saying, You⌃ yourselves know what great things I, and my brethren, and my father's house, have done for the laws and the sanctuary, the battles also and troubles which we have seen. + +By reason whereof all my brethren are slain for Israel's sake, and I am left alone. + +Now therefore be it far from me, that I should spare my own life in any time of trouble: for I am no better than my brethren. + +Doubtless I will avenge my nation, and the sanctuary, and our wives, and our children: for all the heathen are gathered to destroy us of very malice. + +Now as soon as the people heard these words, their spirit revived. + +And they answered with a loud voice, saying, You shall be our leader instead of Judas and Jonathan your brother. + +Fight you our battles, and whatever, you command us, that will we do. + +So then he gathered together all the men of war, and made haste to finish the walls of Jerusalem, and he fortified it round about. + +Also he sent Jonathan the son of Absalom, and with him a great power, to Joppa: who casting out them that were therein remained there in it. + +So Tryphon removed from Ptolemais with a great power to invade the land of Judea, and Jonathan was with him in ward. + +But Simon pitched his tents at Adida, over against the plain. + +Now when Tryphon knew that Simon was risen up instead of his brother Jonathan, and meant to join battle with him, he sent messengers to him, saying, + +Whereas we have Jonathan your brother in hold, it is for money that he is owing to the king's treasure, concerning the business that was committed to him. + +Therefore now send one hundred talents of silver, and two of his sons for hostages, that when he is at liberty he may not revolt from us, and we will let him go. + +Hereupon Simon, albeit he perceived that they spoke deceitfully to him yet sent he the money and the children, lest perhaps he should procure to himself great hatred of the people: + +Who might have said, Because I sent him not the money and the children, therefore is Jonathan dead. + +So he sent them the children and the hundred talents: howbeit Tryphon dissembled neither would he let Jonathan go. + +And after this came Tryphon to invade the land, and destroy it, going round about by the way that leads to Adora: but Simon and his host marched against him in every place, wherever he went. + +Now they that were in the tower sent messengers to Tryphon, to the end that he should hasten his coming to them by the wilderness, and send them food. + +Therefore Tryphon made ready all his horsemen to come that night: but there fell a very great snow, by reason whereof he came not. So he departed, and came into the country of Galaad. + +And when he came near to Bascama he killed Jonathan, who was buried there. + +Afterward Tryphon returned and went into his own land. + +Then sent Simon, and took the bones of Jonathan his brother, and buried them in Modin, the city of his fathers. + +And all Israel made great lamentation for him, and bewailed him many days. + +Simon also built a monument upon the sepulchre of his father and his brethren, and raised it aloft to the sight, with hewn stone behind and before. + +Moreover he set up seven pyramids, one against another, for his father, and his mother, and his four brethren. + +And in these he made cunning devices, about the which he set great pillars, and upon the pillars he made all their armor for a perpetual memory, and by the armor ships carved, that they might be seen of all that sail on the sea. + +This is the sepulchre which he made at Modin, and it stands yet to this day. + +Now Tryphon dealt deceitfully with the young king Antiochus, and killed him. + +And he reigned in his stead, and crowned himself king of Asia, and brought a great calamity upon the land. + +Then Simon built up the strong holds in Judea, and fenced them about with high towers, and great walls, and gates, and bars, and laid up food therein. + +Moreover Simon chose men, and sent to king Demetrius, to the end he should give the land an immunity, because all that Tryphon did was to spoil. + +To whom king Demetrius answered and wrote after this manner: + +King Demetrius to Simon the high priest, and friend of kings, as also to the elders and nation of the Jews, sends greeting: + +The golden crown, and the scarlet robe, which you⌃ sent to us, we have received: and we are ready to make a stedfast peace with you, yes, and to write to our officers, to confirm the immunities which we have granted. + +And whatever covenants we have made with you shall stand; and the strong holds, which you⌃ have builded, shall be your own. + +As for any oversight or fault committed to this day, we forgive it, and the crown tax also, which you⌃ owe us: and if there were any other tribute paid in Jerusalem, it shall no more be paid. + +And look who are meet among you to be in our court, let then be enrolled, and let there be peace between us. + +Thus the yoke of the heathen was taken away from Israel in the hundred and seventies year. + +Then the people of Israel began to write in their instruments and contracts, In the first year of Simon the high priest, the governor and leader of the Jews. + +In those days Simon camped against Gaza and besieged it round about; he made also an engine of war, and set it by the city, and battered a certain tower, and took it. + +And they that were in the engine leaped into the city; whereupon there was a great uproar in the city: + +Insomuch as the people of the city tore their clothes, and climbed upon the walls with their wives and children, and cried with a loud voice, beseeching Simon to grant them peace. + +And they said, Deal not with us according to our wickedness, but according to your mercy. + +So Simon was appeased toward them, and fought no more against them, but put them out of the city, and cleansed the houses wherein the idols were, and so entered into it with songs and thanksgiving. + +Yes, he put all uncleanness out of it, and placed such men there as would keep the law, and made it stronger than it was before, and built therein a dwelling place for himself. + +They also of the tower in Jerusalem were kept so strait, that they could neither come forth, nor go into the country, nor buy, nor sell: therefore they were in great distress for lack of food, and a great number of them perished through famine. + +Then cried they to Simon, beseeching him to be at one with them: which thing he granted them; and when he had put them out from thence, he cleansed the tower from pollutions: + +And entered into it the three and twentieth day of the second month in the hundred seventy and first year, with thanksgiving, and branches of palm trees, and with harps, and cymbals, and with viols, and hymns, and songs: because there was destroyed a great enemy out of Israel. + +He ordained also that that day should be kept every year with gladness. Moreover the hill of the temple that was by the tower he made stronger than it was, and there he lived himself with his company. + +And when Simon saw that John his son was a valiant man, he made him captain of all the hosts; and he lived in Gazera. + +

+ + +

Now in the hundred threescore and twelfth year king Demetrius gathered his forces together, and went into Media to get him help to fight against Tryphon. + +But when Arsaces, the king of Persia and Media, heard that Demetrius was entered within his borders, he sent one of his princes to take him alive: + +Who went and struck the host of Demetrius, and took him, and brought him to Arsaces, by whom he was put in ward. + +As for the land of Judea, that was quiet all the days of Simon; for he sought the good of his nation in such wise, as that evermore his authority and honor pleased them well. + +And as he was honorable in all his acts, so in this, that he took Joppa for an haven, and made an entrance to the isles of the sea, + +And enlarged the bounds of his nation, and recovered the country, + +And gathered together a great number of captives, and had the dominion of Gazera, and Bethsura, and the tower, out of the which he took all uncleanness, neither was there any that resisted him. + +Then did they till their ground in peace, and the earth gave her increase, and the trees of the field their fruit. + +The ancient men sat all in the streets, communing together of good things, and the young men put on glorious and warlike apparel. + +He provided food for the cities, and set in them all manner of munition, so that his honorable name was renowned to the end of the world. + +He made peace in the land, and Israel rejoiced with great joy: + +For every man sat under his vine and his fig tree, and there was none to fray them: + +Neither was there any left in the land to fight against them: yes, the kings themselves were overthrown in those days. + +Moreover he strengthened all those of his people that were brought low: the law he searched out; and every contemner of the law and wicked person he took away. + +He beautified the sanctuary, and multiplied vessels of the temple. + +Now when it was heard at Rome, and as far as Sparta, that Jonathan was dead, they were very sorry. + +But as soon as they heard that his brother Simon was made high priest in his stead, and ruled the country, and the cities therein: + +They wrote to him in tables of brass, to renew the friendship and league which they had made with Judas and Jonathan his brethren: + +Which writings were read before the congregation at Jerusalem. + +And this is the copy of the letters that the Lacedemonians sent; The rulers of the Lacedemonians, with the city, to Simon the high priest, and the elders, and priests, and residue of the people of the Jews, our brethren, send greeting: + +The ambassadors that were sent to our people certified us of your glory and honor: therefore we were glad of their coming, + +And did register the things that they spoke in the council of the people in this manner; Numenius son of Antiochus, and Antipater son of Jason, the Jews' ambassadors, came to us to renew the friendship they had with us. + +And it pleased the people to entertain the men honorably, and to put the copy of their ambassage in publick records, to the end the people of the Lacedemonians might have a memorial thereof: furthermore we have written a copy thereof to Simon the high priest. + +After this Simon sent Numenius to Rome with a great shield of gold of a thousand pound weight to confirm the league with them. + +Whereof when the people heard, they said, What thanks shall we give to Simon and his sons? + +For he and his brethren and the house of his father have established Israel, and chased away in fight their enemies from them, and confirmed their liberty. + +So then they wrote it in tables of brass, which they set upon pillars in mount Sion: and this is the copy of the writing; The eighteenth day of the month Elul, in the hundred threescore and twelfth year, being the third year of Simon the high priest, + +At Saramel in the great congregation of the priests, and people, and rulers of the nation, and elders of the country, were these things notified to us. + +Forasmuch as oftentimes there have been wars in the country, wherein for the maintenance of their sanctuary, and the law, Simon the son of Mattathias, of the posterity of Jarib, together with his brethren, put themselves in jeopardy, and resisting the enemies of their nation did their nation great honor: + +(For after that Jonathan, having gathered his nation together, and been their high priest, was added to his people, + +Their enemies prepared to invade their country, that they might destroy it, and lay hands on the sanctuary: + +At which time Simon rose up, and fought for his nation, and spent much of his own substance, and armed the valiant men of his nation and gave them wages, + +And fortified the cities of Judea, together with Bethsura, that lies upon the borders of Judea, where the armor of the enemies had been before; but he set a garrison of Jews there: + +Moreover he fortified Joppa, which lies upon the sea, and Gazera, that borders upon Azotus, where the enemies had lived before: but he placed Jews there, and furnished them with all things convenient for the reparation thereof.) + +The people therefore sang the acts of Simon, and to what glory he thought to bring his nation, made him their governor and chief priest, because he had done all these things, and for the justice and faith which he kept to his nation, and for that he sought by all means to exalt his people. + +For in his time things prospered in his hands, so that the heathen were taken out of their country, and they also that were in the city of David in Jerusalem, who had made themselves a tower, out of which they issued, and polluted all about the sanctuary, and did much hurt in the holy place: + +But he placed Jews therein. and fortified it for the safety of the country and the city, and raised up the walls of Jerusalem. + +King Demetrius also confirmed him in the high priesthood according to those things, + +And made him one of his friends, and honored him with great honor. + +For he had heard say, that the Romans had called the Jews their friends and confederates and brethren; and that they had entertained the ambassadors of Simon honorably; + +Also that the Jews and priests were well pleased that Simon should be their governor and high priest for ever, until there should arise a faithful prophet; + +Moreover that he should be their captain, and should take charge of the sanctuary, to set them over their works, and over the country, and over the armor, and over the fortresses, that, I say, he should take charge of the sanctuary; + +Beside this, that he should be obeyed of every man, and that all the writings in the country should be made in his name, and that he should be clothed in purple, and wear gold: + +Also that it should be lawful for none of the people or priests to break any of these things, or to gainsay his words, or to gather an assembly in the country without him, or to be clothed in purple, or wear a buckle of gold; + +And whoever should do otherwise, or break any of these things, he should be punished. + +Thus it liked all the people to deal with Simon, and to do as has been said. + +Then Simon accepted hereof, and was well pleased to be high priest, and captain and governor of the Jews and priests, and to defend them all. + +So they commanded that this writing should be put in tables of brass, and that they should be set up within the compass of the sanctuary in a conspicuous place; + +Also that the copies thereof should be laid up in the treasury, to the end that Simon and his sons might have them. + +

+ + +

Moreover Antiochus son of Demetrius the king sent letters from the isles of the sea to Simon the priest and prince of the Jews, and to all the people; + +The contents whereof were these: King Antiochus to Simon the high priest and prince of his nation, and to the people of the Jews, greeting: + +Forasmuch as certain pestilent men have usurped the kingdom of our fathers, and my purpose is to challenge it again, that I may restore it to the old estate, and to that end have gathered a multitude of foreign soldiers together, and prepared ships of war; + +My meaning also being to go through the country, that I may be avenged of them that have destroyed it, and made many cities in the kingdom desolate: + +Now therefore I confirm to you all the oblations which the kings before me granted you, and whatever gifts besides they granted. + +I give you leave also to coin money for your country with your own stamp. + +And as concerning Jerusalem and the sanctuary, let them be free; and all the armor that you have made, and fortresses that you have built, and keep in your hands, let them remain to you. + +And if anything be, or shall be, owing to the king, let it be forgiven you from this time forth for evermore. + +Furthermore, when we have obtained our kingdom, we will honor you, and your nation, and your temple, with great honor, so that your honor shall be known throughout the world. + +In the hundred threescore and fourteenth year went Antiochus into the land of his fathers: at which time all the forces came together to him, so that few were left with Tryphon. + +Therefore being pursued by king Antiochus, he fled to Dora, which lies by the sea side: + +For he saw that troubles came upon him all at once, and that his forces had forsaken him. + +Then camped Antiochus against Dora, having with him one hundred and twenty thousand men of war, and eight thousand horsemen. + +And when he had compassed the city round about, and joined ships close to the town on the sea side, he vexed the city by land and by sea, neither suffered he any to go out or in. + +In the mean season came Numenius and his company from Rome, having letters to the kings and countries; wherein were written these things: + +Lucius, consul of the Romans to king Ptolemee, greeting: + +The Jews' ambassadors, our friends and confederates, came to us to renew the old friendship and league, being sent from Simon the high priest, and from the people of the Jews: + +And they brought a shield of gold of a thousand pound. + +We thought it good therefore to write to the kings and countries, that they should do them no harm, nor fight against them, their cities, or countries, nor yet aid their enemies against them. + +It seemed also good to us to receive the shield of them. + +If therefore there be any pestilent fellows, that have fled from their country to you, deliver them to Simon the high priest, that he may punish them according to their own law. + +The same things wrote he likewise to Demetrius the king, and Attalus, to Ariarathes, and Arsaces, + +And to all the countries and to Sampsames, and the Lacedemonians, and to Delus, and Myndus, and Sicyon, and Caria, and Samos, and Pamphylia, and Lycia, and Halicarnassus, and Rhodus, and Aradus, and Cos, and Side, and Aradus, and Gortyna, and Cnidus, and Cyprus, and Cyrene. + +And the copy hereof they wrote to Simon the high priest. + +So Antiochus the king camped against Dora the second day, assaulting it continually, and making engines, by which means he shut up Tryphon, that he could neither go out nor in. + +At that time Simon sent him two thousand chosen men to aid him; silver also, and gold, and much armor. + +Nevertheless he would not receive them, but brake all the covenants which he had made with him before, and became strange to him. + +Furthermore he sent to him Athenobius, one of his friends, to commune with him, and say, You⌃ withhold Joppa and Gazera; with the tower that is in Jerusalem, which are cities of my realm. + +The borders thereof you⌃ have wasted, and done great hurt in the land, and got the dominion of many places within my kingdom. + +Now therefore deliver the cities which you⌃ have taken, and the tributes of the places, whereof you⌃ have gotten dominion without the borders of Judea: + +Or else give me for them five hundred talents of silver; and for the harm that you⌃ have done, and the tributes of the cities, other five hundred talents: if not, we will come and fight against you + +So Athenobius the king's friend came to Jerusalem: and when he saw the glory of Simon, and the cupboard of gold and silver plate, and his great attendance, he was astonished, and told him the king's message. + +Then answered Simon, and said to him, We have neither taken other men's land, nor holden that which appertains to others, but the inheritance of our fathers, which our enemies had wrongfully in possession a certain time. + +Therefore we, having opportunity, hold the inheritance of our fathers. + +And whereas you demand Joppa and Gazera, albeit they did great harm to the people in our country, yet will we give you one hundred talents for them. Hereunto Athenobius answered him not a word; + +But returned in a rage to the king, and made report to him of these speeches, and of the glory of Simon, and of all that he had seen: whereupon the king was exceeding angry. + +In the mean time fled Tryphon by ship to Orthosias. + +Then the king made Cendebeus captain of the sea coast, and gave him an host of footmen and horsemen, + +And commanded him to remove his host toward Judea; also he commanded him to build up Cedron, and to fortify the gates, and to war against the people; but as for the king himself, he pursued Tryphon. + +So Cendebeus came to Jamnia and began to provoke the people and to invade Judea, and to take the people prisoners, and kill them. + +And when he had built up Cedron, he set horsemen there, and an host of footmen, to the end that issuing out they might make outroads upon the ways of Judea, as the king had commanded him. + +

+ + +

Then came up John from Gazera, and told Simon his father what Cendebeus had done. + +Therefore Simon called his two oldest sons, Judas and John, and said to them, I, and my brethren, and my father's house, have ever from my youth to this day fought against the enemies of Israel; and things have prospered so well in our hands, that we have delivered Israel oftentimes. + +But now I am old, and you⌃, by God's mercy, are of a sufficient age: be you⌃ instead of me and my brother, and go and fight for our nation, and the help from heaven be with you. + +So he chose out of the country twenty thousand men of war with horsemen, who went out against Cendebeus, and rested that night at Modin. + +And when as they rose in the morning, and went into the plain, behold, a mighty great host both of footmen and horsemen came against them: howbeit there was a water brook between them. + +So he and his people pitched over against them: and when he saw that the people were afraid to go over the water brook, he went first over himself, and then the men seeing him passed through after him. + +That done, he divided his men, and set the horsemen in the midst of the footmen: for the enemies' horsemen were very many. + +Then sounded they with the holy trumpets: whereupon Cendebeus and his host were put to flight, so that many of them were slain, and the remnant got them to the strong hold. + +At that time was Judas John's brother wounded; but John still followed after them, until he came to Cedron, which Cendebeus had built. + +So they fled even to the towers in the fields of Azotus; therefore he burned it with fire: so that there were slain of them about two thousand men. Afterward he returned into the land of Judea in peace. + +Moreover in the plain of Jericho was Ptolemeus the son of Abubus made captain, and he had abundance of silver and gold: + +For he was the high priest's son in law. + +Therefore his heart being lifted up, he thought to get the country to himself, and thereupon consulted deceitfully against Simon and his sons to destroy them. + +Now Simon was visiting the cities that were in the country, and taking care for the good ordering of them; at which time he came down himself to Jericho with his sons, Mattathias and Judas, in the hundred threescore and seventeenth year, in the eleventh month, called Sabat: + +Where the son of Abubus receiving them deceitfully into a little hold, called Docus, which he had built, made them a great banquet: howbeit he had hid men there. + +So when Simon and his sons had drunk largely, Ptolemee and his men rose up, and took their weapons, and came upon Simon into the banqueting place, and killed him, and his two sons, and certain of his servants. + +In which doing he committed a great treachery, and recompensed evil for good. + +Then Ptolemee wrote these things, and sent to the king, that he should send him an host to aid him, and he would deliver him the country and cities. + +He sent others also to Gazera to kill John: and to the tribunes he sent letters to come to him, that he might give them silver, and gold, and rewards. + +And others he sent to take Jerusalem, and the mountain of the temple. + +Now one had run before to Gazera and told John that his father and brethren were slain, and, quoth he, Ptolemee has sent to kill you also. + +Hereof when he heard, he was sore astonished: so he laid hands on them that were come to destroy him, and killed them; for he knew that they sought to make him away. + +As concerning the rest of the acts of John, and his wars, and worthy deeds which he did, and the building of the walls which he made, and his doings, + +Behold, these are written in the chronicles of his priesthood, from the time he was made high priest after his father. + +

+
+ +2 Maccabees +II MACCABEES +2 Maccabees +2MA +

II MACCABEES +

+ + +

The brethren, the Jews that be at Jerusalem and in the land of Judea, wish to the brethren, the Jews that are throughout Egypt health and peace: + +God be gracious to you, and remember his covenant that he made with Abraham, Isaac, and Jacob, his faithful servants; + +And give you all an heart to serve him, and to do his will, with a good courage and a willing mind; + +And open your hearts in his law and commandments, and send you peace, + +And hear your prayers, and be at one with you, and never forsake you in time of trouble. + +And now we be here praying for you. + +What time as Demetrius reigned, in the hundred threescore and ninth year, we the Jews wrote to you in the extremity of trouble that came upon us in those years, from the time that Jason and his company revolted from the holy land and kingdom, + +And burned the porch, and shed innocent blood: then we prayed to the Lord, and were heard; we offered also sacrifices and fine flour, and lighted the lamps, and set forth the loaves. + +And now see that you⌃ keep the feast of tabernacles in the month Casleu. + +In the hundred fourscore and eighth year, the people that were at Jerusalem and in Judea, and the council, and Judas, sent greeting and health to Aristobulus, king Ptolemeus' master, who was of the stock of the anointed priests, and to the Jews that were in Egypt: + +Insomuch as God has delivered us from great perils, we thank him highly, as having been in battle against a king. + +For he cast them out that fought within the holy city. + +For when the leader was come into Persia, and the army with him that seemed invincible, they were slain in the temple of Nanea by the deceit of Nanea's priests. + +For Antiochus, as though he would marry her, came into the place, and his friends that were with him, to receive money in name of a dowry. + +Which when the priests of Nanea had set forth, and he was entered with a small company into the compass of the temple, they shut the temple as soon as Antiochus was come in: + +And opening a privy door of the roof, they threw stones like thunderbolts, and struck down the captain, hewed them in pieces, struck off their heads and cast them to those that were without. + +Blessed be our God in all things, who has delivered up the ungodly. + +Therefore whereas we are now purposed to keep the purification of the temple upon the five and twentieth day of the month Casleu, we thought it necessary to certify you thereof, that you⌃ also might keep it, as the feast of the tabernacles, and of the fire, which was given us when Neemias offered sacrifice, after that he had builded the temple and the altar. + +For when our fathers were led into Persia, the priests that were then devout took the fire of the altar privily, and hid it in an hollow place of a pit without water, where they kept it sure, so that the place was unknown to all men. + +Now after many years, when it pleased God, Neemias, being sent from the king of Persia, did send of the posterity of those priests that had hid it to the fire: but when they told us they found no fire, but thick water; + +Then commanded he them to draw it up, and to bring it; and when the sacrifices were laid on, Neemias commanded the priests to sprinkle the wood and the things laid thereupon with the water. + +When this was done, and the time came that the sun shone, which before was hid in the cloud, there was a great fire kindled, so that every man marveled. + +And the priests made a prayer while the sacrifice was consuming, I say, both the priests, and all the rest, Jonathan beginning, and the rest answering thereto, as Neemias did. + +And the prayer was after this manner; O Lord, Lord God, Creator of all things, who are fearful and strong, and righteous, and merciful, and the only and gracious King, + +The only giver of all things, the only just, almighty, and everlasting, you that deliver Israel from all trouble, and did choose the fathers, and sanctify them: + +Receive the sacrifice for your whole people Israel, and preserve your own portion, and sanctify it. + +Gather those together that are scattered from us, deliver them that serve among the heathen, look upon them that are despised and abhorred, and let the heathen know that you are our God. + +Punish them that oppress us, and with pride do us wrong. + +Plant your people again in your holy place, as Moses has spoken. + +And the priests sung psalms of thanksgiving. + +Now when the sacrifice was consumed, Neemias commanded the water that was left to be poured on the great stones. + +When this was done, there was kindled a flame: but it was consumed by the light that shined from the altar. + +So when this matter was known, it was told the king of Persia, that in the place, where the priests that were led away had hid the fire, there appeared water, and that Neemias had purified the sacrifices therewith. + +Then the king, inclosing the place, made it holy, after he had tried the matter. + +And the king took many gifts, and bestowed thereof on those whom he would gratify. + +And Neemias called this thing Naphthar, which is as much as to say, a cleansing: but many men call it Nephi. + +

+ + +

It is also found in the records, that Jeremy the prophet commanded them that were carried away to take of the fire, as it has been signified: + +And how that the prophet, having given them the law, charged them not to forget the commandments of the Lord, and that they should not err in their minds, when they see images of silver and gold, with their ornaments. + +And with other such speeches exhorted he them, that the law should not depart from their hearts. + +It was also contained in the same writing, that the prophet, being warned of God, commanded the tabernacle and the ark to go with him, as he went forth into the mountain, where Moses climbed up, and saw the heritage of God. + +And when Jeremy came there, he found an hollow cave, wherein he laid the tabernacle, and the ark, and the altar of incense, and so stopped the door. + +And some of those that followed him came to mark the way, but they could not find it. + +Which when Jeremy perceived, he blamed them, saying, As for that place, it shall be unknown until the time that God gather his people again together, and receive them to mercy. + +Then shall the Lord show them these things, and the glory of the Lord shall appear, and the cloud also, as it was showed under Moses, and as when Solomon desired that the place might be honorably sanctified. + +It was also declared, that he being wise offered the sacrifice of dedication, and of the finishing of the temple. + +And as when Moses prayed to the Lord, the fire came down from heaven, and consumed the sacrifices: even so prayed Solomon also, and the fire came down from heaven, and consumed the burnt offerings. + +And Moses said, Because the sin offering was not to be eaten, it was consumed. + +So Solomon kept those eight days. + +The same things also were reported in the writings and commentaries of Neemias; and how he founding a library gathered together the acts of the kings, and the prophets, and of David, and the epistles of the kings concerning the holy gifts. + +In like manner also Judas gathered together all those things that were lost by reason of the war we had, and they remain with us, + +Therefore if you⌃ have need thereof, send some to fetch them to you. + +Whereas we then are about to celebrate the purification, we have written to you, and you⌃ shall do well, if you⌃ keep the same days. + +We hope also, that the God, that delivered all his people, and gave them all an heritage, and the kingdom, and the priesthood, and the sanctuary, + +As he promised in the law, will shortly have mercy upon us, and gather us together out of every land under heaven into the holy place: for he has delivered us out of great troubles, and has purified the place. + +Now as concerning Judas Maccabeus, and his brethren, and the purification of the great temple, and the dedication of the altar, + +And the wars against Antiochus Epiphanes, and Eupator his son, + +And the manifest signs that came from heaven to those that behaved themselves manfully to their honor for Judaism: so that, being but a few, they overcame the whole country, and chased barbarous multitudes, + +And recovered again the temple renowned all the world over, and freed the city, and upheld the laws which were going down, the Lord being gracious to them with all favor: + +All these things, I say, being declared by Jason of Cyrene in five books, we will assay to abridge in one volume. + +For considering the infinite number, and the difficulty which they find that desire to look into the narrations of the story, for the variety of the matter, + +We have been careful, that they that will read may have delight, and that they that are desirous to commit to memory might have ease, and that all into whose hands it comes might have profit. + +Therefore to us, that have taken upon us this painful labor of abridging, it was not easy, but a matter of sweat and watching; + +Even as it is no ease to him that prepares a banquet, and seeks the benefit of others: yet for the pleasuring of many we will undertake gladly this great pains; + +Leaving to the author the exact handling of every particular, and laboring to follow the rules of an abridgement. + +For as the master builder of a new house must care for the whole building; but he that undertakes to set it out, and paint it, must seek out fit things for the adorning thereof: even so I think it is with us. + +To stand upon every point, and go over things at large, and to be curious in particulars, belongs to the first author of the story: + +But to use brevity, and avoid much laboring of the work, is to be granted to him that will make an abridgment. + +Here then will we begin the story: only adding thus much to that which has been said, that it is a foolish thing to make a long prologue, and to be short in the story itself. + +

+ + +

Now when the holy city was inhabited with all peace, and the laws were kept very well, because of the godliness of Onias the high priest, and his hatred of wickedness, + +It came to pass that even the kings themselves did honor the place, and magnify the temple with their best gifts; + +Insomuch that Seleucus of Asia of his own revenues bare all the costs belonging to the service of the sacrifices. + +But one Simon of the tribe of Benjamin, who was made governor of the temple, fell out with the high priest about disorder in the city. + +And when he could not overcome Onias, he got him to Apollonius the son of Thraseas, who then was governor of Celosyria and Phenice, + +And told him that the treasury in Jerusalem was full of infinite sums of money, so that the multitude of their riches, which did not pertain to the account of the sacrifices, was innumerable, and that it was possible to bring all into the king's hand. + +Now when Apollonius came to the king, and had showed him of the money whereof he was told, the king chose out Heliodorus his treasurer, and sent him with a commandment to bring him the foresaid money. + +So forthwith Heliodorus took his journey; under a color of visiting the cities of Celosyria and Phenice, but indeed to fulfil the king's purpose. + +And when he was come to Jerusalem, and had been courteously received of the high priest of the city, he told him what intelligence was given of the money, and declared therefore he came, and asked if these things were so indeed. + +Then the high priest told him that there was such money laid up for the relief of widows and fatherless children: + +And that some of it belonged to Hircanus son of Tobias, a man of great dignity, and not as that wicked Simon had misinformed: the sum whereof in all was four hundred talents of silver, and two hundred of gold: + +And that it was altogether impossible that such wrongs should be done to them, that had committed it to the holiness of the place, and to the majesty and inviolable sanctity of the temple, honored over all the world. + +But Heliodorus, because of the king's commandment given him, said, That in any wise it must be brought into the king's treasury. + +So at the day which he appointed he entered in to order this matter: therefore there was no small agony throughout the whole city. + +But the priests, prostrating themselves before the altar in their priests' vestments, called to heaven upon him that made a law concerning things given to he kept, that they should safely be preserved for such as had committed them to be kept. + +Then whoso had looked the high priest in the face, it would have wounded his heart: for his countenance and the changing of his color declared the inward agony of his mind. + +For the man was so compassed with fear and horror of the body, that it was manifest to them that looked upon him, what sorrow he had now in his heart. + +Others ran flocking out of their houses to the general supplication, because the place was like to come into contempt. + +And the women, girded with sackcloth under their breasts, abounded in the streets, and the virgins that were kept in ran, some to the gates, and some to the walls, and others looked out of the windows. + +And all, holding their hands toward heaven, made supplication. + +Then it would have pitied a man to see the falling down of the multitude of all sorts, and the fear of the high priest being in such an agony. + +They then called upon the Almighty Lord to keep the things committed of trust safe and sure for those that had committed them. + +Nevertheless Heliodorus executed that which was decreed. + +Now as he was there present himself with his guard about the treasury, the Lord of spirits, and the Prince of all power, caused a great apparition, so that all that presumed to come in with him were astonished at the power of God, and fainted, and were sore afraid. + +For there appeared to them an horse with a terrible rider upon him, and adorned with a very fair covering, and he ran fiercely, and struck at Heliodorus with his forefeet, and it seemed that he that sat upon the horse had complete harness of gold. + +Moreover two other young men appeared before him, notable in strength, excellent in beauty, and comely in apparel, who stood by him on either side; and scourged him continually, and gave him many sore stripes. + +And Heliodorus fell suddenly to the ground, and was compassed with great darkness: but they that were with him took him up, and put him into a litter. + +Thus him, that lately came with a great train and with all his guard into the said treasury, they carried out, being unable to help himself with his weapons: and manifestly they acknowledged the power of God. + +For he by the hand of God was cast down, and lay speechless without all hope of life. + +But they praised the Lord, that had miraculously honored his own place: for the temple; which a little before was full of fear and trouble, when the Almighty Lord appeared, was filled with joy and gladness. + +Then straightways certain of Heliodorus' friends prayed Onias, that he would call upon the most High to grant him his life, who lay ready to give up the ghost. + +So the high priest, suspecting lest the king should misconceive that some treachery had been done to Heliodorus by the Jews, offered a sacrifice for the health of the man. + +Now as the high priest was making an atonement, the same young men in the same clothing appeared and stood beside Heliodorus, saying, Give Onias the high priest great thanks, insomuch as for his sake the Lord has granted you life: + +And seeing that you have been scourged from heaven, declare to all men the mighty power of God. And when they had spoken these words, they appeared no more. + +So Heliodorus, after he had offered sacrifice to the Lord, and made great vows to him that had saved his life, and saluted Onias, returned with his host to the king. + +Then testified he to all men the works of the great God, which he had seen with his eyes. + +And when the king Heliodorus, who might be a fit man to be sent yet once again to Jerusalem, he said, + +If you have any enemy or traitor, send him there, and you shall receive him well scourged, if he escape with his life: for in that place, no doubt; there is an especial power of God. + +For he that dwells in heaven has his eye on that place, and defends it; and he beats and destroys them that come to hurt it. + +And the things concerning Heliodorus, and the keeping of the treasury, fell out on this sort. + +

+ + +

This Simon now, of whom we spoke before, having been a betrayer of the money, and of his country, slandered Onias, as if he had terrified Heliodorus, and been the worker of these evils. + +Thus was he bold to call him a traitor, that had deserved well of the city, and tendered his own nation, and was so zealous of the laws. + +But when their hatred went so far, that by one of Simon's faction murders were committed, + +Onias seeing the danger of this contention, and that Apollonius, as being the governor of Celosyria and Phenice, did rage, and increase Simon's malice, + +He went to the king, not to be an accuser of his countrymen, but seeking the good of all, both publick and private: + +For he saw that it was impossible that the state should continue quiet, and Simon leave his folly, unless the king did look thereto. + +But after the death of Seleucus, when Antiochus, called Epiphanes, took the kingdom, Jason the brother of Onias laboured underhand to be high priest, + +Promising to the king by intercession three hundred and threescore talents of silver, and of another revenue eighty talents: + +Beside this, he promised to assign one hundred and fifty more, if he might have licence to set him up a place for exercise, and for the training up of youth in the fashions of the heathen, and to write them of Jerusalem by the name of Antiochians. + +Which when the king had granted, and he had gotten into his hand the rule he forthwith brought his own nation to Greekish fashion. + +And the royal privileges granted of special favor to the Jews by the means of John the father of Eupolemus, who went ambassador to Rome for amity and aid, he took away; and putting down the governments which were according to the law, he brought up new customs against the law: + +For he built gladly a place of exercise under the tower itself, and brought the chief young men under his subjection, and made them wear a hat. + +Now such was the height of Greek fashions, and increase of heathenish manners, through the exceeding profaneness of Jason, that ungodly wretch, and no high priest; + +That the priests had no courage to serve any more at the altar, but despising the temple, and neglecting the sacrifices, hastened to be partakers of the unlawful allowance in the place of exercise, after the game of Discus called them forth; + +Not setting by the honors of their fathers, but liking the glory of the Grecians best of all. + +By reason whereof sore calamity came upon them: for they had them to be their enemies and avengers, whose custom they followed so earnestly, and to whom they desired to be like in all things. + +For it is not a light thing to do wickedly against the laws of God: but the time following shall declare these things. + +Now when the game that was used every faith year was kept at Tyrus, the king being present, + +This ungracious Jason sent special messengers from Jerusalem, who were Antiochians, to carry three hundred drachmas of silver to the sacrifice of Hercules, which even the bearers thereof thought fit not to bestow upon the sacrifice, because it was not convenient, but to be reserved for other charges. + +This money then, in regard of the sender, was appointed to Hercules' sacrifice; but because of the bearers thereof, it was employed to the making of gallies. + +Now when Apollonius the son of Menestheus was sent into Egypt for the coronation of king Ptolemeus Philometor, Antiochus, understanding him not to be well affected to his affairs, provided for his own safety: whereupon he came to Joppa, and from thence to Jerusalem: + +Where he was honorably received of Jason, and of the city, and was brought in with torch alight, and with great shoutings: and so afterward went with his host to Phenice. + +Three years afterward Jason sent Menelaus, the aforesaid Simon's brother, to bear the money to the king, and to put him in mind of certain necessary matters. + +But he being brought to the presence of the king, when he had magnified him for the glorious appearance of his power, got the priesthood to himself, offering more than Jason by three hundred talents of silver. + +So he came with the king's mandate, bringing nothing worthy the high priesthood, but having the fury of a cruel tyrant, and the rage of a savage beast. + +Then Jason, who had undermined his own brother, being undermined by another, was compelled to flee into the country of the Ammonites. + +So Menelaus got the principality: but as for the money that he had promised to the king, he took no good order for it, albeit Sostratis the ruler of the castle required it: + +For to him appertained the gathering of the customs. Therefore they were both called before the king. + +Now Menelaus left his brother Lysimachus in his stead in the priesthood; and Sostratus left Crates, who was governor of the Cyprians. + +While those things were in doing, they of Tarsus and Mallos made insurrection, because they were given to the king's concubine, called Antiochus. + +Then came the king in all haste to appease matters, leaving Andronicus, a man in authority, for his deputy. + +Now Menelaus, supposing that he had gotten a convenient time, stole certain vessels of gold out of the temple, and gave some of them to Andronicus, and some he sold into Tyrus and the cities round about. + +Which when Onias knew of a surety, he reproved him, and withdrew himself into a sanctuary at Daphne, that lies by Antiochia. + +Therefore Menelaus, taking Andronicus apart, prayed, him to get Onias into his hands; who being persuaded thereto, and coming to Onias in deceit, gave him his right hand with oaths; and though he were suspected by him, yet persuaded he him to come forth of the sanctuary: whom forthwith he shut up without regard of justice. + +For the which cause not only the Jews, but many also of other nations, took great indignation, and were much grieved for the unjust murder of the man. + +And when the king was come again from the places about Cilicia, the Jews that were in the city, and certain of the Greeks that abhorred the fact also, complained because Onias was slain without cause. + +Therefore Antiochus was heartily sorry, and moved to pity, and wept, because of the sober and modest behavior of him that was dead. + +And being kindled with anger, forthwith he took away Andronicus his purple, and tore off his clothes, and leading him through the whole city to that very place, where he had committed impiety against Onias, there killed he the cursed murderer. Thus the Lord rewarded him his punishment, as he had deserved. + +Now when many sacrileges had been committed in the city by Lysimachus with the consent of Menelaus, and the fruit thereof was spread abroad, the multitude gathered themselves together against Lysimachus, many vessels of gold being already carried away. + +Whereupon the common people rising, and being filled with rage, Lysimachus armed about three thousand men, and began first to offer violence; one Auranus being the leader, a man far gone in years, and no less in folly. + +They then seeing the attempt of Lysimachus, some of them caught stones, some clubs, others taking handfuls of dust, that was next at hand, cast them all together upon Lysimachus, and those that set upon them. + +Thus many of them they wounded, and some they struck to the ground, and all of them they forced to flee: but as for the churchrobber himself, him they killed beside the treasury. + +Of these matters therefore there was an accusation laid against Menelaus. + +Now when the king came to Tyrus, three men that were sent from the senate pleaded the cause before him: + +But Menelaus, being now convicted, promised Ptolemee the son of Dorymenes to give him much money, if he would pacify the king toward him. + +Whereupon Ptolemee taking the king aside into a certain gallery, as it were to take the air, brought him to be of another mind: + +Insomuch that he discharged Menelaus from the accusations, who notwithstanding was cause of all the mischief: and those poor men, who, if they had told their cause, yes, before the Scythians, should have been judged innocent, them he condemned to death. + +Thus they that followed the matter for the city, and for the people, and for the holy vessels, did soon suffer unjust punishment. + +Therefore even they of Tyrus, moved with hatred of that wicked deed, caused them to be honorably buried. + +And so through the covetousness of them that were of power Menelaus remained still in authority, increasing in malice, and being a great traitor to the citizens. + +

+ + +

About the same time Antiochus prepared his second voyage into Egypt: + +And then it happened, that through all the city, for the space almost of forty days, there were seen horsemen running in the air, in cloth of gold, and armed with lances, like a band of soldiers, + +And troops of horsemen in array, encountering and running one against another, with shaking of shields, and multitude of pikes, and drawing of swords, and casting of darts, and glittering of golden ornaments, and harness of all sorts. + +Therefore every man prayed that that apparition might turn to good. + +Now when there was gone forth a false rumour, as though Antiochus had been dead, Jason took at the least a thousand men, and suddenly made an assault upon the city; and they that were upon the walls being put back, and the city at length taken, Menelaus fled into the castle: + +But Jason killed his own citizens without mercy, not considering that to get the day of them of his own nation would be a most unhappy day for him; but thinking they had been his enemies, and not his countrymen, whom he conquered. + +Howbeit for all this he obtained not the principality, but at the last received shame for the reward of his treason, and fled again into the country of the Ammonites. + +In the end therefore he had an unhappy return, being accused before Aretas the king of the Arabians, fleeing from city to city, pursued of all men, hated as a forsaker of the laws, and being had in abomination as an open enemy of his country and countrymen, he was cast out into Egypt. + +Thus he that had driven many out of their country perished in a strange land, retiring to the Lacedemonians, and thinking there to find succour by reason of his kindred: + +And he that had cast out many unburied had none to mourn for him, nor any solemn funerals at all, nor sepulchre with his fathers. + +Now when this that was done came to the king's ear, he thought that Judea had revolted: whereupon removing out of Egypt in a furious mind, he took the city by force of arms, + +And commanded his men of war not to spare such as they met, and to kill such as went up upon the houses. + +Thus there was killing of young and old, making away of men, women, and children, slaying of virgins and infants. + +And there were destroyed within the space of three whole days fourscore thousand, whereof forty thousand were slain in the conflict; and no fewer sold than slain. + +Yet was he not content with this, but presumed to go into the most holy temple of all the world; Menelaus, that traitor to the laws, and to his own country, being his guide: + +And taking the holy vessels with polluted hands, and with profane hands pulling down the things that were dedicated by other kings to the augmentation and glory and honor of the place, he gave them away. + +And so haughty was Antiochus in mind, that he considered not that the Lord was angry for a while for the sins of them that lived in the city, and therefore his eye was not upon the place. + +For had they not been formerly wrapped in many sins, this man, as soon as he had come, had forthwith been scourged, and put back from his presumption, as Heliodorus was, whom Seleucus the king sent to view the treasury. + +Nevertheless God did not choose the people for the place's sake, but the place for the people's sake. + +And therefore the place itself, that was partaker with them of the adversity that happened to the nation, did afterward communicate in the benefits sent from the Lord: and as it was forsaken in the wrath of the Almighty, so again, the great Lord being reconciled, it was set up with all glory. + +So when Antiochus had carried out of the temple a thousand and eight hundred talents, he departed in all haste to Antiochia, weening in his pride to make the land navigable, and the sea passable by foot: such was the haughtiness of his mind. + +And he left governors to vex the nation: at Jerusalem, Philip, for his country a Phrygian, and for manners more barbarous than he that set him there; + +And at Garizim, Andronicus; and besides, Menelaus, who worse than all the rest bare an heavy hand over the citizens, having a malicious mind against his countrymen the Jews. + +He sent also that detestable ringleader Apollonius with an army of two and twenty thousand, commanding him to kill all those that were in their best age, and to sell the women and the younger sort: + +Who coming to Jerusalem, and pretending peace, did forbear till the holy day of the sabbath, when taking the Jews keeping holy day, he commanded his men to arm themselves. + +And so he killed all them that were gone to the celebrating of the sabbath, and running through the city with weapons killed great multitudes. + +But Judas Maccabeus with nine others, or thereabout, withdrew himself into the wilderness, and lived in the mountains after the manner of beasts, with his company, who fed on herbs continually, lest they should be partakers of the pollution. + +

+ + +

Not long after this the king sent an old man of Athens to compel the Jews to depart from the laws of their fathers, and not to live after the laws of God: + +And to pollute also the temple in Jerusalem, and to call it the temple of Jupiter Olympius; and that in Garizim, of Jupiter the Defender of strangers, as they did desire that lived in the place. + +The coming in of this mischief was sore and grievous to the people: + +For the temple was filled with riot and revelling by the Gentiles, who dallied with harlots, and had to do with women within the circuit of the holy places, and besides that brought in things that were not lawful. + +The altar also was filled with profane things, which the law forbids. + +Neither was it lawful for a man to keep sabbath days or ancient fasts, or to profess himself at all to be a Jew. + +And in the day of the king's birth every month they were brought by bitter constraint to eat of the sacrifices; and when the fast of Bacchus was kept, the Jews were compelled to go in procession to Bacchus, carrying ivy. + +Moreover there went out a decree to the neighbor cities of the heathen, by the suggestion of Ptolemee, against the Jews, that they should observe the same fashions, and be partakers of their sacrifices: + +And whoso would not conform themselves to the manners of the Gentiles should be put to death. Then might a man have seen the present misery. + +For there were two women brought, who had circumcised their children; whom when they had openly led round about the city, the babes handing at their breasts, they cast them down headlong from the wall. + +And others, that had run together into caves near by, to keep the sabbath day secretly, being discovered by Philip, were all burnt together, because they made a conscience to help themselves for the honor of the most sacred day. + +Now I beseech those that read this book, that they be not discouraged for these calamities, but that they judge those punishments not to be for destruction, but for a chastening of our nation. + +For it is a token of his great goodness, when wicked doers are not suffered any long time, but forthwith punished. + +For not as with other nations, whom the Lord patiently forbears to punish, till they be come to the fulness of their sins, so deals he with us, + +Lest that, being come to the height of sin, afterwards he should take vengeance of us. + +And therefore he never withdraws his mercy from us: and though he punish with adversity, yet does he never forsake his people. + +But let this that we at spoken be for a warning to us. And now will we come to the declaring of the matter in a few words. + +Eleazar, one of the principal scribes, an aged man, and of a well favoured countenance, was constrained to open his mouth, and to eat swine's flesh. + +But he, choosing rather to die gloriously, than to live stained with such an abomination, spit it forth, and came of his own accord to the torment, + +As it behoved them to come, that are resolute to stand out against such things, as are not lawful for love of life to be tasted. + +But they that had the charge of that wicked feast, for the old acquaintance they had with the man, taking him aside, implored him to bring flesh of his own provision, such as was lawful for him to use, and make as if he did eat of the flesh taken from the sacrifice commanded by the king; + +That in so doing he might be delivered from death, and for the old friendship with them find favor. + +But he began to consider discreetly, and as became his age, and the excellency of his ancient years, and the honor of his gray head, whereon was come, and his most honest education from a child, or rather the holy law made and given by God: therefore he answered accordingly, and willed them straightways to send him to the grave. + +For it becomes not our age, said he, in any wise to dissemble, whereby many young persons might think that Eleazar, being fourscore years old and ten, were now gone to a strange religion; + +And so they through my hypocrisy, and desire to live a little time and a moment longer, should be deceived by me, and I get a stain to my old age, and make it abominable. + +For though for the present time I should be delivered from the punishment of men: yet should I not escape the hand of the Almighty, neither alive, nor dead. + +Therefore now, manfully changing this life, I will show myself such an one as my age requires, + +And leave a notable example to such as be young to die willingly and courageously for the honorable and holy laws. And when he had said these words, immediately he went to the torment: + +They that led him changing the good will they bare him a little before into hatred, because the foresaid speeches proceeded, as they thought, from a desperate mind. + +But when he was ready to die with stripes, he groaned, and said, It is manifest to the Lord, that has the holy knowledge, that whereas I might have been delivered from death, I now endure sore pains in body by being beaten: but in soul am well content to suffer these things, because I fear him. + +And thus this man died, leaving his death for an example of a noble courage, and a memorial of virtue, not only to young men, but to all his nation. + +

+ + +

It came to pass also, that seven brethren with their mother were taken, and compelled by the king against the law to taste swine's flesh, and were tormented with scourges and whips. + +But one of them that spoke first said thus, What would you ask or learn of us? we are ready to die, rather than to transgress the laws of our fathers. + +Then the king, being in a rage, commanded pans and caldrons to be made hot: + +Which forthwith being heated, he commanded to cut out the tongue of him that spoke first, and to cut off the utmost parts of his body, the rest of his brethren and his mother looking on. + +Now when he was thus maimed in all his members, he commanded him being yet alive to be brought to the fire, and to be fried in the pan: and as the vapor of the pan was for a good space dispersed, they exhorted one another with the mother to die manfully, saying thus, + +The Lord God looks upon us, and in truth has comfort in us, as Moses in his song, which witnessed to their faces, declared, saying, And he shall be comforted in his servants. + +So when the first was dead after this number, they brought the second to make him a mocking stock: and when they had pulled off the skin of his head with the hair, they asked him, Will you eat, before you be punished throughout every member of your body? + +But he answered in his own language, and said, No. Therefore he also received the next torment in order, as the former did. + +And when he was at the last gasp, he said, You like a fury take us out of this present life, but the King of the world shall raise us up, who have died for his laws, to everlasting life. + +After him was the third made a mocking stock: and when he was required, he put out his tongue, and that right soon, holding forth his hands manfully. + +And said courageously, These I had from heaven; and for his laws I despise them; and from him I hope to receive them again. + +Insomuch that the king, and they that were with him, marveled at the young man's courage, for that he nothing regarded the pains. + +Now when this man was dead also, they tormented and mangled the fourth in like manner. + +So when he was ready to die he said thus, It is good, being put to death by men, to look for hope from God to be raised up again by him: as for you, you shall have no resurrection to life. + +Afterward they brought the fifth also, and mangled him. + +Then looked he to the king, and said, You have power over men, you are corruptible, you do what you will; yet think not that our nation is forsaken of God; + +But abide a while, and behold his great power, how he will torment you and your seed. + +After him also they brought the sixth, who being ready to die said, Be not deceived without cause: for we suffer these things for ourselves, having sinned against our God: therefore marvelous things are done to us. + +But think not you, that take in hand to strive against God, that you shall escape unpunished. + +But the mother was marvelous above all, and worthy of honorable memory: for when she saw her seven sons slain within the space of one day, she bare it with a good courage, because of the hope that she had in the Lord. + +Yes, she exhorted every one of them in her own language, filled with courageous spirits; and stirring up her womanish thoughts with a manly stomach, she said to them, + +I can’t tell how you⌃ came into my womb: for I neither gave you breath nor life, neither was it I that formed the members of every one of you; + +But doubtless the Creator of the world, who formed the generation of man, and found out the beginning of all things, will also of his own mercy give you breath and life again, as you⌃ now regard not your own selves for his laws' sake. + +Now Antiochus, thinking himself despised, and suspecting it to be a reproachful speech, while the youngest was yet alive, did not only exhort him by words, but also assured him with oaths, that he would make him both a rich and a happy man, if he would turn from the laws of his fathers; and that also he would take him for his friend, and trust him with affairs. + +But when the young man would in no case listen to him, the king called his mother, and exhorted her that she would counsel the young man to save his life. + +And when he had exhorted her with many words, she promised him that she would counsel her son. + +But she bowing herself toward him, laughing the cruel tyrant to scorn, spoke in her country language on this manner; O my son, have pity upon me that bare you nine months in my womb, and gave you such three years, and nourished you, and brought you up to this age, and endured the troubles of education. + +I beseech you, my son, look upon the heaven and the earth, and all that is therein, and consider that God made them of things that were not; and so was mankind made likewise. + +Fear not this tormentor, but, being worthy of your brethren, take your death that I may receive you again in mercy with your brethren. + +While she was yet speaking these words, the young man said, Whom wait you⌃ for? I will not obey the king's commandment: but I will obey the commandment of the law that was given to our fathers by Moses. + +And you, that have been the author of all mischief against the Hebrews, shall not escape the hands of God. + +For we suffer because of our sins. + +And though the living Lord be angry with us a little while for our chastening and correction, yet shall he be at one again with his servants. + +But you, O godless man, and of all other most wicked, be not lifted up without a cause, nor puffed up with uncertain hopes, lifting up your hand against the servants of God: + +For you have not yet escaped the judgment of Almighty God, who sees all things. + +For our brethren, who now have suffered a short pain, are dead under God's covenant of everlasting life: but you, through the judgment of God, shall receive just punishment for your pride. + +But I, as my brethren, offer up my body and life for the laws of our fathers, beseeching God that he would speedily be merciful to our nation; and that you by torments and plagues may confess, that he alone is God; + +And that in me and my brethren the wrath of the Almighty, which is justly brought upon our nation, may cease. + +Then the king, being in a rage, handed him worse than all the rest, and took it grievously that he was mocked. + +So this man died undefiled, and put his whole trust in the Lord. + +Last of all after the sons the mother died. + +Let this be enough now to have spoken concerning the idolatrous feasts, and the extreme tortures. + +

+ + +

Then Judas Maccabeus, and they that were with him, went privily into the towns, and called their kinsfolks together, and took to them all such as continued in the Jews' religion, and assembled about six thousand men. + +And they called upon the Lord, that he would look upon the people that was trodden down of all; and also pity the temple profaned of ungodly men; + +And that he would have compassion upon the city, sore defaced, and ready to be made even with the ground; and hear the blood that cried to him, + +And remember the wicked slaughter of harmless infants, and the blasphemies committed against his name; and that he would show his hatred against the wicked. + +Now when Maccabeus had his company about him, he could not be withstood by the heathen: for the wrath of the Lord was turned into mercy. + +Therefore he came at unawares, and burnt up towns and cities, and got into his hands the most commodious places, and overcame and put to flight no small number of his enemies. + +But specially took he advantage of the night for such privy attempts, insomuch that the fruit of his holiness was spread every where. + +So when Philip saw that this man increased by little and little, and that things prospered with him still more and more, he wrote to Ptolemeus, the governor of Celosyria and Phenice, to yield more aid to the king's affairs. + +Then forthwith choosing Nicanor the son of Patroclus, one of his special friends, he sent him with no fewer than twenty thousand of all nations under him, to root out the whole generation of the Jews; and with him he joined also Gorgias a captain, who in matters of war had great experience. + +So Nicanor undertook to make so much money of the captive Jews, as should defray the tribute of two thousand talents, which the king was to pay to the Romans. + +Therefore immediately he sent to the cities upon the sea coast, proclaiming a sale of the captive Jews, and promising that they should have fourscore and ten bodies for one talent, not expecting the vengeance that was to follow upon him from the Almighty God. + +Now when word was brought to Judas of Nicanor's coming, and he had imparted to those that were with him that the army was at hand, + +They that were fearful, and distrusted the justice of God, fled, and conveyed themselves away. + +Others sold all that they had left, and withal implored the Lord to deliver them, sold by the wicked Nicanor before they met together: + +And if not for their own sakes, yet for the covenants he had made with their fathers, and for his holy and glorious name's sake, by which they were called. + +So Maccabeus called his men together to the number of six thousand, and exhorted them not to be stricken with terror of the enemy, nor to fear the great multitude of the heathen, who came wrongly against them; but to fight manfully, + +And to set before their eyes the injury that they had unjustly done to the holy place, and the cruel handling of the city, whereof they made a mockery, and also the taking away of the government of their forefathers: + +For they, said he, trust in their weapons and boldness; but our confidence is in the Almighty who at a beck can cast down both them that come against us, and also all the world. + +Moreover, he recounted to them what helps their forefathers had found, and how they were delivered, when under Sennacherib one hundred fourscore and five thousand perished. + +And he told them of the battle that they had in Babylon with the Galatians, how they came but eight thousand in all to the business, with four thousand Macedonians, and that the Macedonians being perplexed, the eight thousand destroyed one hundred and twenty thousand because of the help that they had from heaven, and so received a great booty. + +Thus when he had made them bold with these words, and ready to die for the law and the country, he divided his army into four parts; + +And joined with himself his own brethren, leaders of each band, to wit Simon, and Joseph, and Jonathan, giving each one fifteen hundred men. + +Also he appointed Eleazar to read the holy book: and when he had given them this watchword, The help of God; himself leading the first band, + +And by the help of the Almighty they killed above nine thousand of their enemies, and wounded and maimed the most part of Nicanor's host, and so put all to flight; + +And took their money that came to buy them, and pursued them far: but lacking time they returned: + +For it was the day before the sabbath, and therefore they would no longer pursue them. + +So when they had gathered their armor together, and spoiled their enemies, they occupied themselves about the sabbath, yielding exceeding praise and thanks to the Lord, who had preserved them to that day, which was the beginning of mercy distilling upon them. + +And after the sabbath, when they had given part of the spoils to the maimed, and the widows, and orphans, the residue they divided among themselves and their servants. + +When this was done, and they had made a common supplication, they implored the merciful Lord to be reconciled with his servants for ever. + +Moreover of those that were with Timotheus and Bacchides, who fought against them, they killed above twenty thousand, and very easily got high and strong holds, and divided among themselves many spoils more, and made the maimed, orphans, widows, yes, and the aged also, equal in spoils with themselves. + +And when they had gathered their armor together, they laid them up all carefully in convenient places, and the remnant of the spoils they brought to Jerusalem. + +They killed also Philarches, that wicked person, who was with Timotheus, and had annoyed the Jews many ways. + +Furthermore at such time as they kept the feast for the victory in their country they burnt Callisthenes, that had set fire upon the holy gates, who had fled into a little house; and so he received a reward meet for his wickedness. + +As for that most ungracious Nicanor, who had brought a thousand merchants to buy the Jews, + +He was through the help of the Lord brought down by them, of whom he made least account; and putting off his glorious apparel, and discharging his company, he came like a fugitive servant through the midland to Antioch having very great dishonor, for that his host was destroyed. + +Thus he, that took upon him to make good to the Romans their tribute by means of captives in Jerusalem, told abroad, that the Jews had God to fight for them, and therefore they could not be hurt, because they followed the laws that he gave them. + +

+ + +

About that time came Antiochus with dishonor out of the country of Persia + +For he had entered the city called Persepolis, and went about to rob the temple, and to hold the city; whereupon the multitude running to defend themselves with their weapons put them to flight; and so it happened, that Antiochus being put to flight of the inhabitants returned with shame. + +Now when he came to Ecbatane, news was brought him what had happened to Nicanor and Timotheus. + +Then swelling with anger. he thought to avenge upon the Jews the disgrace done to him by those that made him flee. Therefore commanded he his chariotman to drive without ceasing, and to dispatch the journey, the judgment of God now following him. For he had spoken proudly in this sort, That he would come to Jerusalem and make it a common burying place of the Jews. + +But the Lord Almighty, the God of Israel, struck him with an incurable and invisible plague: or as soon as he had spoken these words, a pain of the bowels that was remediless came upon him, and sore torments of the inner parts; + +And that most justly: for he had tormented other men's bowels with many and strange torments. + +Howbeit he nothing at all ceased from his bragging, but still was filled with pride, breathing out fire in his rage against the Jews, and commanding to haste the journey: but it came to pass that he fell down from his chariot, carried violently; so that having a sore fall, all the members of his body were much pained. + +And thus he that a little before thought he might command the waves of the sea, (so proud was he beyond the condition of man) and weigh the high mountains in a balance, was now cast on the ground, and carried in an horselitter, showing forth to all the manifest power of God. + +So that the worms rose up out of the body of this wicked man, and while he lived in sorrow and pain, his flesh fell away, and the filthiness of his smell was noisome to all his army. + +And the man, that thought a little before he could reach to the stars of heaven, no man could endure to carry for his intolerable stink. + +Here therefore, being plagued, he began to leave off his great pride, and to come to the knowledge of himself by the scourge of God, his pain increasing every moment. + +And when he himself could not abide his own smell, he said these words, It is meet to be subject to God, and that a man that is mortal should not proudly think of himself if he were God. + +This wicked person vowed also to the Lord, who now no more would have mercy upon him, saying thus, + +That the holy city (to the which he was going in haste to lay it even with the ground, and to make it a common burying place,) he would set at liberty: + +And as touching the Jews, whom he had judged not worthy so much as to be buried, but to be cast out with their children to be devoured of the fowls and wild beasts, he would make them all equals to the citizens of Athens: + +And the holy temple, which before he had spoiled, he would garnish with goodly gifts, and restore all the holy vessels with many more, and out of his own revenue defray the charges belonging to the sacrifices: + +Yes, and that also he would become a Jew himself, and go through all the world that was inhabited, and declare the power of God. + +But for all this his pains would not cease: for the just judgment of God was come upon him: therefore despairing of his health, he wrote to the Jews the letter underwritten, containing the form of a supplication, after this manner: + +Antiochus, king and governor, to the good Jews his citizens wishes much joy, health, and prosperity: + +If you⌃ and your children fare well, and your affairs be to your contentment, I give very great thanks to God, having my hope in heaven. + +As for me, I was weak, or else I would have remembered kindly your honor and good will returning out of Persia, and being taken with a grievous disease, I thought it necessary to care for the common safety of all: + +Not distrusting my health, but having great hope to escape this sickness. + +But considering that even my father, at what time he led an army into the high countries. appointed a successor, + +To the end that, if any thing fell out contrary to expectation, or if any tidings were brought that were grievous, they of the land, knowing to whom the state was left, might not be troubled: + +Again, considering how that the princes that are borderers and neighbors to my kingdom wait for opportunities, and expect what shall be the event. I have appointed my son Antiochus king, whom I often committed and commended to many of you, when I went up into the high provinces; to whom I have written as follows: + +Therefore I pray and request you to remember the benefits that I have done to you generally, and in special, and that every man will be still faithful to me and my son. + +For I am persuaded that he understanding my mind will favourably and graciously yield to your desires. + +Thus the murderer and blasphemer having suffered most grievously, as he entreated other men, so died he a miserable death in a strange country in the mountains. + +And Philip, that was brought up with him, carried away his body, who also fearing the son of Antiochus went into Egypt to Ptolemeus Philometor. + +

+ + +

Now Maccabeus and his company, the Lord guiding them, recovered the temple and the city: + +But the altars which the heathen had built in the open street, and also the chapels, they pulled down. + +And having cleansed the temple they made another altar, and striking stones they took fire out of them, and offered a sacrifice after two years, and set forth incense, and lights, and show bread. + +When that was done, they fell flat down, and implored the Lord that they might come no more into such troubles; but if they sinned any more against him, that he himself would chasten them with mercy, and that they might not be delivered to the blasphemous and barbarous nations. + +Now upon the same day that the strangers profaned the temple, on the very same day it was cleansed again, even the five and twentieth day of the same month, which is Casleu. + +And they kept the eight days with gladness, as in the feast of the tabernacles, remembering that not long before they had held the feast of the tabernacles, when as they wandered in the mountains and dens like beasts. + +Therefore they bare branches, and fair boughs, and palms also, and sang psalms to him that had given them good success in cleansing his place. + +They ordained also by a common statute and decree, That every year those days should be kept of the whole nation of the Jews. + +And this was the end of Antiochus, called Epiphanes. + +Now will we declare the acts of Antiochus Eupator, who was the son of this wicked man, gathering briefly the calamities of the wars. + +So when he was come to the crown, he set one Lysias over the affairs of his realm, and appointed him his chief governor of Celosyria and Phenice. + +For Ptolemeus, that was called Macron, choosing rather to do justice to the Jews for the wrong that had been done to them, endeavoured to continue peace with them. + +Whereupon being accused of the king's friends before Eupator, and called traitor at every word because he had left Cyprus, that Philometor had committed to him, and departed to Antiochus Epiphanes, and seeing that he was in no honorable place, he was so discouraged, that he poisoned himself and died. + +But when Gorgias was governor of the holds, he hired soldiers, and nourished war continually with the Jews: + +And therewithal the Idumeans, having gotten into their hands the most commodious holds, kept the Jews occupied, and receiving those that were banished from Jerusalem, they went about to nourish war. + +Then they that were with Maccabeus made supplication, and implored God that he would be their helper; and so they ran with violence upon the strong holds of the Idumeans, + +And assaulting them strongly, they won the holds, and kept off all that fought upon the wall, and killed all that fell into their hands, and killed no fewer than twenty thousand. + +And because certain, who were no less than nine thousand, were fled together into two very strong castles, having all manner of things convenient to sustain the siege, + +Maccabeus left Simon and Joseph, and Zaccheus also, and them that were with him, who were enough to besiege them, and departed himself to those places which more needed his help. + +Now they that were with Simon, being led with covetousness, were persuaded for money through certain of those that were in the castle, and took seventy thousand drachmas, and let some of them escape. + +But when it was told Maccabeus what was done, he called the governors of the people together, and accused those men, that they had sold their brethren for money, and set their enemies free to fight against them. + +So he killed those that were found traitors, and immediately took the two castles. + +And having good success with his weapons in all things he took in hand, he killed in the two holds more than twenty thousand. + +Now Timotheus, whom the Jews had overcome before, when he had gathered a great multitude of foreign forces, and horses out of Asia not a few, came as though he would take Jewry by force of arms. + +But when he drew near, they that were with Maccabeus turned themselves to pray to God, and sprinkled earth upon their heads, and girded their loins with sackcloth, + +And fell down at the foot of the altar, and implored him to be merciful to them, and to be an enemy to their enemies, and an adversary to their adversaries, as the law declares. + +So after the prayer they took their weapons, and went on further from the city: and when they drew near to their enemies, they kept by themselves. + +Now the sun being newly risen, they joined both together; the one part having together with their virtue their refuge also to the Lord for a pledge of their success and victory: the other side making their rage leader of their battle + +But when the battle waxed strong, there appeared to the enemies from heaven five comely men upon horses, with bridles of gold, and two of them led the Jews, + +And took Maccabeus between them, and covered him on every side weapons, and kept him safe, but shot arrows and lightnings against the enemies: so that being confounded with blindness, and full of trouble, they were killed. + +And there were slain of footmen twenty thousand and five hundred, and six hundred horsemen. + +As for Timotheus himself, he fled into a very strong hold, called Gazara, where Chereas was governor. + +But they that were with Maccabeus laid siege against the fortress courageously four days. + +And they that were within, trusting to the strength of the place, blasphemed exceedingly, and uttered wicked words. + +Nevertheless upon the fifth day early twenty young men of Maccabeus' company, inflamed with anger because of the blasphemies, assaulted the wall manly, and with a fierce courage killed all that they met withal. + +Others likewise ascending after them, while they were busied with them that were within, burnt the towers, and kindling fires burnt the blasphemers alive; and others broke open the gates, and, having received in the rest of the army, took the city, + +And killed Timotheus, that was hid in a certain pit, and Chereas his brother, with Apollophanes. + +When this was done, they praised the Lord with psalms and thanksgiving, who had done so great things for Israel, and given them the victory. + +

+ + +

Not long after the, Lysias the king's protector and cousin, who also managed the affairs, took sore displeasure for the things that were done. + +And when he had gathered about fourscore thousand with all the horsemen, he came against the Jews, thinking to make the city an habitation of the Gentiles, + +And to make a gain of the temple, as of the other chapels of the heathen, and to set the high priesthood to sale every year: + +Not at all considering the power of God but puffed up with his ten thousands of footmen, and his thousands of horsemen, and his fourscore elephants. + +So he came to Judea, and drew near to Bethsura, which was a strong town, but distant from Jerusalem about five furlongs, and he laid sore siege to it. + +Now when they that were with Maccabeus heard that he besieged the holds, they and all the people with lamentation and tears implored the Lord that he would send a good angel to deliver Israel. + +Then Maccabeus himself first of all took weapons, exhorting the other that they would jeopard themselves together with him to help their brethren: so they went forth together with a willing mind. + +And as they were at Jerusalem, there appeared before them on horseback one in white clothing, shaking his armor of gold. + +Then they praised the merciful God all together, and took heart, insomuch that they were ready not only to fight with men, but with most cruel beasts, and to pierce through walls of iron. + +Thus they marched forward in their armor, having an helper from heaven: for the Lord was merciful to them + +And giving a charge upon their enemies like lions, they killed eleven thousand footmen, and sixteen hundred horsemen, and put all the other to flight. + +Many of them also being wounded escaped naked; and Lysias himself fled away shamefully, and so escaped. + +Who, as he was a man of understanding, casting with himself what loss he had had, and considering that the Hebrews could not be overcome, because the Almighty God helped them, he sent to them, + +And persuaded them to agree to all reasonable conditions, and promised that he would persuade the king that he must needs be a friend to them. + +Then Maccabeus consented to all that Lysias desired, being careful of the common good; and whatever Maccabeus wrote to Lysias concerning the Jews, the king granted it. + +For there were letters written to the Jews from Lysias to this effect: Lysias to the people of the Jews sends greeting: + +John and Absalon, who were sent from you, delivered me the petition subscribed, and made request for the performance of the contents thereof. + +Therefore what things soever were meet to be reported to the king, I have declared them, and he has granted as much as might be. + +And if then you⌃ will keep yourselves loyal to the state, hereafter also will I endeavor to be a means of your good. + +But of the particulars I have given order both to these and the other that came from me, to commune with you. + +Fare you⌃ well. The hundred and eight and fortieth year, the four and twentieth day of the month Dioscorinthius. + +Now the king's letter contained these words: King Antiochus to his brother Lysias sends greeting: + +Since our father is translated to the gods, our will is, that they that are in our realm live quietly, that every one may attend upon his own affairs. + +We understand also that the Jews would not consent to our father, for to be brought to the custom of the Gentiles, but had rather keep their own manner of living: for the which cause they require of us, that we should suffer them to live after their own laws. + +Therefore our mind is, that this nation shall be in rest, and we have determined to restore them their temple, that they may live according to the customs of their forefathers. + +You shall do well therefore to send to them, and grant them peace, that when they are certified of our mind, they may be of good comfort, and ever go cheerfully about their own affairs. + +And the letter of the king to the nation of the Jews was after this manner: King Antiochus sends greeting to the council, and the rest of the Jews: + +If you⌃ fare well, we have our desire; we are also in good health. + +Menelaus declared to us, that your desire was to return home, and to follow your own business: + +Therefore they that will depart shall have safe conduct till the thirties day of Xanthicus with security. + +And the Jews shall use their own kind of meats and laws, as before; and none of them any manner of ways shall be molested for things ignorantly done. + +I have sent also Menelaus, that he may comfort you. + +Fare you⌃ well. In the hundred forty and eighth year, and the fifteenth day of the month Xanthicus. + +The Romans also sent to them a letter containing these words: Quintus Memmius and Titus Manlius, ambassadors of the Romans, send greeting to the people of the Jews. + +Whatsoever Lysias the king's cousin has granted, therewith we also are well pleased. + +But touching such things as he judged to be referred to the king, after you⌃ have advised thereof, send one forthwith, that we may declare as it is convenient for you: for we are now going to Antioch. + +Therefore send some with speed, that we may know what is your mind. + +Farewell. This hundred and eight and fortieth year, the fifteenth day of the month Xanthicus. + +

+ + +

When these covenants were made, Lysias went to the king, and the Jews were about their husbandry. + +But of the governors of several places, Timotheus, and Apollonius the son of Genneus, also Hieronymus, and Demophon, and beside them Nicanor the governor of Cyprus, would not suffer them to be quiet and live in peace. + +The men of Joppa also did such an ungodly deed: they prayed the Jews that lived among them to go with their wives and children into the boats which they had prepared, as though they had meant them no hurt. + +Who accepted of it according to the common decree of the city, as being desirous to live in peace, and suspecting nothing: but when they were gone forth into the deep, they drowned no less than two hundred of them. + +When Judas heard of this cruelty done to his countrymen, he commanded those that were with him to make them ready. + +And calling upon God the righteous Judge, he came against those murderers of his brethren, and burnt the haven by night, and set the boats on fire, and those that fled there he killed. + +And when the town was shut up, he went backward, as if he would return to root out all them of the city of Joppa. + +But when he heard that the Jamnites were minded to do in like manner to the Jews that lived among them, + +He came upon the Jamnites also by night, and set fire on the haven and the navy, so that the light of the fire was seen at Jerusalem two hundred and forty furlongs off. + +Now when they were gone from thence nine furlongs in their journey toward Timotheus, no fewer than five thousand men on foot and five hundred horsemen of the Arabians set upon him. + +Whereupon there was a very sore battle; but Judas' side by the help of God got the victory; so that the Nomades of Arabia, being overcome, implored Judas for peace, promising both to give him cattle, and to pleasure him otherwise. + +Then Judas, thinking indeed that they would be profitable in many things, granted them peace: whereupon they shook hands, and so they departed to their tents. + +He went also about to make a bridge to a certain strong city, which was fenced about with walls, and inhabited by people of various countries; and the name of it was Caspis. + +But they that were within it put such trust in the strength of the walls and provision of food, that they behaved themselves rudely toward them that were with Judas, railing and blaspheming, and uttering such words as were not to be spoken. + +Therefore Judas with his company, calling upon the great Lord of the world, who without rams or engines of war did cast down Jericho in the time of Joshua, gave a fierce assault against the walls, + +And took the city by the will of God, and made unspeakable slaughters, insomuch that a lake two furlongs broad near adjoining thereto, being filled full, was seen running with blood. + +Then departed they from thence seven hundred and fifty furlongs, and came to Characa to the Jews that are called Tubieni. + +But as for Timotheus, they found him not in the places: for before he had dispatched any thing, he departed from thence, having left a very strong garrison in a certain hold. + +Howbeit Dositheus and Sosipater, who were of Maccabeus' captains, went forth, and killed those that Timotheus had left in the fortress, above ten thousand men. + +And Maccabeus ranged his army by bands, and set them over the bands, and went against Timotheus, who had about him one hundred and twenty thousand men of foot, and two thousand and five hundred horsemen. + +Now when Timotheus had knowledge of Judas' coming, he sent the women and children and the other baggage to a fortress called Carnion: for the town was hard to besiege, and uneasy to come to, by reason of the straitness of all the places. + +But when Judas his first band came in sight, the enemies, being struck with fear and terror through the appearing of him who sees all things, fled amain, one running into this way, another that way, so as that they were often hurt of their own men, and wounded with the points of their own swords. + +Judas also was very earnest in pursuing them, killing those wicked wretches, of whom he killed about thirty thousand men. + +Moreover Timotheus himself fell into the hands of Dositheus and Sosipater, whom he implored with much craft to let him go with his life, because he had many of the Jews' parents, and the brethren of some of them, who, if they put him to death, should not be regarded. + +So when he had assured them with many words that he would restore them without hurt, according to the agreement, they let him go for the saving of their brethren. + +Then Maccabeus marched forth to Carnion, and to the temple of Atargatis, and there he killed five and twenty thousand persons. + +And after he had put to flight and destroyed them, Judas removed the host toward Ephron, a strong city, wherein Lysias abode, and a great multitude of various nations, and the strong young men kept the walls, and defended them mightily: wherein also was great provision of engines and darts. + +But when Judas and his company had called upon Almighty God, who with his power breaks the strength of his enemies, they won the city, and killed twenty and five thousand of them that were within, + +From thence they departed to Scythopolis, which lies six hundred furlongs from Jerusalem, + +But when the Jews that lived there had testified that the Scythopolitans dealt lovingly with them, and entreated them kindly in the time of their adversity; + +They gave them thanks, desiring them to be friendly still to them: and so they came to Jerusalem, the feast of the weeks approaching. + +And after the feast, called Pentecost, they went forth against Gorgias the governor of Idumea, + +Who came out with three thousand men of foot and four hundred horsemen. + +And it happened that in their fighting together a few of the Jews were slain. + +At which time Dositheus, one of Bacenor's company, who was on horseback, and a strong man, was still upon Gorgias, and taking hold of his coat drew him by force; and when he would have taken that cursed man alive, a horseman of Thracia coming upon him struck off his shoulder, so that Gorgias fled to Marisa. + +Now when they that were with Gorgias had fought long, and were weary, Judas called upon the Lord, that he would show himself to be their helper and leader of the battle. + +And with that he began in his own language, and sung psalms with a loud voice, and rushing unawares upon Gorgias' men, he put them to flight. + +So Judas gathered his host, and came into the city of Odollam, And when the seventh day came, they purified themselves, as the custom was, and kept the sabbath in the same place. + +And upon the day following, as the use had been, Judas and his company came to take up the bodies of them that were slain, and to bury them with their kinsmen in their fathers' graves. + +Now under the coats of every one that was slain they found things consecrated to the idols of the Jamnites, which is forbidden the Jews by the law. Then every man saw that this was the cause therefore they were slain. + +All men therefore praising the Lord, the righteous Judge, who had opened the things that were hid, + +Betook themselves to prayer, and implored him that the sin committed might wholly be put out of remembrance. Besides, that noble Judas exhorted the people to keep themselves from sin, forsomuch as they saw before their eyes the things that came to pass for the sins of those that were slain. + +And when he had made a gathering throughout the company to the sum of two thousand drachmas of silver, he sent it to Jerusalem to offer a sin offering, doing therein very well and honestly, in that he was mindful of the resurrection: + +For if he had not hoped that they that were slain should have risen again, it had been superfluous and vain to pray for the dead. + +And also in that he perceived that there was great favor laid up for those that died godly, it was an holy and good thought. Whereupon he made a reconciliation for the dead, that they might be delivered from sin. + +

+ + +

In the hundred forty and ninth year it was told Judas, that Antiochus Eupator was coming with a great power into Judea, + +And with him Lysias his protector, and ruler of his affairs, having either of them a Grecian power of footmen, one hundred and ten thousand, and horsemen five thousand and three hundred, and elephants two and twenty, and three hundred chariots armed with hooks. + +Menelaus also joined himself with them, and with great dissimulation encouraged Antiochus, not for the safeguard of the country, but because he thought to have been made governor. + +But the King of kings moved Antiochus' mind against this wicked wretch, and Lysias informed the king that this man was the cause of all mischief, so that the king commanded to bring him to Berea, and to put him to death, as the manner is in that place. + +Now there was in that place a tower of fifty cubits high, full of ashes, and it had a round instrument which on every side hanged down into the ashes. + +And whoever was condemned of sacrilege, or had committed any other grievous crime, there did all men thrust him to death. + +Such a death it happened that wicked man to die, not having so much as burial in the earth; and that most justly: + +For inasmuch as he had committed many sins about the altar, whose fire and ashes were holy, he received his death in ashes. + +Now the king came with a barbarous and haughty mind to do far worse to the Jews, than had been done in his father's time. + +Which things when Judas perceived, he commanded the multitude to call upon the Lord night and day, that if ever at any other time, he would now also help them, being at the point to be put from their law, from their country, and from the holy temple: + +And that he would not suffer the people, that had even now been but a little refreshed, to be in subjection to the blasphemous nations. + +So when they had all done this together, and implored the merciful Lord with weeping and fasting, and lying flat upon the ground three days long, Judas, having exhorted them, commanded they should be in a readiness. + +And Judas, being apart with the elders, determined, before the king's host should enter into Judea, and get the city, to go forth and try the matter in fight by the help of the Lord. + +So when he had committed all to the Creator of the world, and exhorted his soldiers to fight manfully, even to death, for the laws, the temple, the city, the country, and the commonwealth, he camped by Modin: + +And having given the watchword to them that were about him, Victory is of God; with the most valiant and choice young men he went in into the king's tent by night, and killed in the camp about four thousand men, and the chiefest of the elephants, with all that were upon him. + +And at last they filled the camp with fear and tumult, and departed with good success. + +This was done in the break of the day, because the protection of the Lord did help him. + +Now when the king had taken a taste of the manliness of the Jews, he went about to take the holds by policy, + +And marched toward Bethsura, which was a strong hold of the Jews: but he was put to flight, failed, and lost of his men: + +For Judas had conveyed to them that were in it such things as were necessary. + +But Rhodocus, who was in the Jews' host, disclosed the secrets to the enemies; therefore he was sought out, and when they had gotten him, they put him in prison. + +The king treated with them in Bethsura the second time, gave his hand, took their's, departed, fought with Judas, was overcome; + +Heard that Philip, who was left over the affairs in Antioch, was desperately bent, confounded, entreated the Jews, submitted himself, and swore to all equal conditions, agreed with them, and offered sacrifice, honored the temple, and dealt kindly with the place, + +And accepted well of Maccabeus, made him principal governor from Ptolemais to the Gerrhenians; + +Came to Ptolemais: the people there were grieved for the covenants; for they stormed, because they would make their covenants void: + +Lysias went up to the judgment seat, said as much as could be in defence of the cause, persuaded, pacified, made them well affected, returned to Antioch. Thus it went touching the king's coming and departing. + +

+ + +

After three years was Judas informed, that Demetrius the son of Seleucus, having entered by the haven of Tripolis with a great power and navy, + +Had taken the country, and killed Antiochus, and Lysias his protector. + +Now one Alcimus, who had been high priest, and had defiled himself wilfully in the times of their mingling with the Gentiles, seeing that by no means he could save himself, nor have any more access to the holy altar, + +Came to king Demetrius in the hundred and one and fifties year, presenting to him a crown of gold, and a palm, and also of the boughs which were used solemnly in the temple: and so that day he held his peace. + +Howbeit having gotten opportunity to further his foolish enterprise, and being called into counsel by Demetrius, and asked how the Jews stood affected, and what they intended, he answered thereto: + +Those of the Jews that he called Assideans, whose captain is Judas Maccabeus, nourish war and are seditious, and will not let the rest be in peace. + +Therefore I, being deprived of my ancestors' honor, I mean the high priesthood, am now come here: + +First, verily for the unfeigned care I have of things pertaining to the king; and secondly, even for that I intend the good of my own countrymen: for all our nation is in no small misery through the unadvised dealing of them aforesaid. + +Therefore, O king, seeing know all these things, be careful for the country, and our nation, which is pressed on every side, according to the clemency that you readily show to all. + +For as long as Judas lives, it is not possible that the state should be quiet. + +This was no sooner spoken of him, but others of the king's friends, being maliciously set against Judas, did more incense Demetrius. + +And forthwith calling Nicanor, who had been master of the elephants, and making him governor over Judea, he sent him forth, + +Commanding him to kill Judas, and to scatter them that were with him, and to make Alcimus high priest of the great temple. + +Then the heathen, that had fled out of Judea from Judas, came to Nicanor by flocks, thinking the harm and calamities of the Jews to be their welfare. + +Now when the Jews heard of Nicanor's coming, and that the heathen were up against them, they cast earth upon their heads, and made supplication to him that had established his people for ever, and who always helps his portion with manifestation of his presence. + +So at the commandment of the captain they removed straightways from thence, and came near to them at the town of Dessau. + +Now Simon, Judas' brother, had joined battle with Nicanor, but was somewhat discomfited through the sudden silence of his enemies. + +Nevertheless Nicanor, hearing of the manliness of them that were with Judas, and the courageousness that they had to fight for their country, dared not try the matter by the sword. + +Therefore he sent Posidonius, and Theodotus, and Mattathias, to make peace. + +So when they had taken long advisement thereupon, and the captain had made the multitude acquainted therewith, and it appeared that they were all of one mind, they consented to the covenants, + +And appointed a day to meet in together by themselves: and when the day came, and stools were set for either of them, + +Judas placed armed men ready in convenient places, lest some treachery should be suddenly practised by the enemies: so they made a peaceful conference. + +Now Nicanor abode in Jerusalem, and did no hurt, but sent away the people that came flocking to him. + +And he would not willingly have Judas out of his sight: for he love the man from his heart + +He prayed him also to take a wife, and to beget children: so he married, was quiet, and took part of this life. + +But Alcimus, perceiving the love that was between them, and considering the covenants that were made, came to Demetrius, and told him that Nicanor was not well affected toward the state; for that he had ordained Judas, a traitor to his realm, to be the king's successor. + +Then the king being in a rage, and provoked with the accusations of the most wicked man, wrote to Nicanor, signifying that he was much displeased with the covenants, and commanding him that he should send Maccabeus prisoner in all haste to Antioch. + +When this came to Nicanor's hearing, he was much confounded in himself, and took it grievously that he should make void the articles which were agreed upon, the man being in no fault. + +But because there was no dealing against the king, he watched his time to accomplish this thing by policy. + +Notwithstanding, when Maccabeus saw that Nicanor began to be churlish to him, and that he entreated him more roughly than he was wont, perceiving that such sour behavior came not of good, he gathered together not a few of his men, and withdrew himself from Nicanor. + +But the other, knowing that he was notably prevented by Judas' policy, came into the great and holy temple, and commanded the priests, that were offering their usual sacrifices, to deliver him the man. + +And when they swore that they could not tell where the man was whom he sought, + +He stretched out his right hand toward the temple, and made an oath in this manner: If you⌃ will not deliver me Judas as a prisoner, I will lay this temple of God even with the ground, and I will break down the altar, and erect a notable temple to Bacchus. + +After these words he departed. Then the priests lifted up their hands toward heaven, and implored him that was ever a defender of their nation, saying in this manner; + +You, O Lord of all things, who have need of nothing, was pleased that the temple of your habitation should be among us: + +Therefore now, O holy Lord of all holiness, keep this house ever undefiled, which lately was cleansed, and stop every unrighteous mouth. + +Now was there accused to Nicanor one Razis, one of the elders of Jerusalem, a lover of his countrymen, and a man of very good report, who for his kindness was called a father of the Jews. + +For in the former times, when they mingled not themselves with the Gentiles, he had been accused of Judaism, and did boldly jeopard his body and life with all vehemency for the religion of the Jews. + +So Nicanor, willing to declare the hate that he bare to the Jews, sent above five hundred men of war to take him: + +For he thought by taking him to do the Jews much hurt. + +Now when the multitude would have taken the tower, and violently broken into the outer door, and bade that fire should be brought to burn it, he being ready to be taken on every side fell upon his sword; + +Choosing rather to die manfully, than to come into the hands of the wicked, to be abused otherwise than beseemed his noble birth: + +But missing his stroke through haste, the multitude also rushing within the doors, he ran boldly up to the wall, and cast himself down manfully among the thickest of them. + +But they quickly giving back, and a space being made, he fell down into the midst of the void place. + +Nevertheless, while there was yet breath within him, being inflamed with anger, he rose up; and though his blood gushed out like spouts of water, and his wounds were grievous, yet he ran through the midst of the throng; and standing upon a steep rock, + +When as his blood was now quite gone, he plucked out his bowels, and taking them in both his hands, he cast them upon the throng, and calling upon the Lord of life and spirit to restore him those again, he thus died. + +

+ + +

But Nicanor, hearing that Judas and his company were in the strong places about Samaria, resolved without any danger to set upon them on the sabbath day. + +Nevertheless the Jews that were compelled to go with him said, O destroy not so cruelly and barbarously, but give honor to that day, which he, that sees all things, has honored with holiness above all other days. + +Then the most ungracious wretch demanded, if there were a Mighty one in heaven, that had commanded the sabbath day to be kept. + +And when they said, There is in heaven a living Lord, and mighty, who commanded the seventh day to be kept: + +Then said the other, And I also am mighty upon earth, and I command to take arms, and to do the king's business. Yet he obtained not to have his wicked will done. + +So Nicanor in exceeding pride and haughtiness determined to set up a publick monument of his victory over Judas and them that were with him. + +But Maccabeus had ever sure confidence that the Lord would help him: + +Therefore he exhorted his people not to fear the coming of the heathen against them, but to remember the help which in former times they had received from heaven, and now to expect the victory and aid, which should come to them from the Almighty. + +And so comforting them out of the law and the prophets, and withal putting them in mind of the battles that they won before, he made them more cheerful. + +And when he had stirred up their minds, he gave them their charge, showing them therewithal the falsehood of the heathen, and the breach of oaths. + +Thus he armed every one of them, not so much with defence of shields and spears, as with comfortable and good words: and beside that, he told them a dream worthy to be believed, as if it had been so indeed, which did not a little rejoice them. + +And this was his vision: That Onias, who had been high priest, a virtuous and a good man, reverend in conversation, gentle in condition, well spoken also, and exercised from a child in all points of virtue, holding up his hands prayed for the whole body of the Jews. + +This done, in like manner there appeared a man with gray hairs, and exceeding glorious, who was of a wonderful and excellent majesty. + +Then Onias answered, saying, This is a lover of the brethren, who prays much for the people, and for the holy city, to wit, Jeremias the prophet of God. + +Whereupon Jeremias holding forth his right hand gave to Judas a sword of gold, and in giving it spoke thus, + +Take this holy sword, a gift from God, with the which you shall wound the adversaries. + +Thus being well comforted by the words of Judas, which were very good, and able to stir them up to valour, and to encourage the hearts of the young men, they determined not to pitch camp, but courageously to set upon them, and manfully to try the matter by conflict, because the city and the sanctuary and the temple were in danger. + +For the care that they took for their wives, and their children, their brethren, and folks, was in least account with them: but the greatest and principal fear was for the holy temple. + +Also they that were in the city took not the least care, being troubled for the conflict abroad. + +And now, when as all looked what should be the trial, and the enemies were already come near, and the army was set in array, and the beasts conveniently placed, and the horsemen set in wings, + +Maccabeus seeing the coming of the multitude, and the various preparations of armor, and the fierceness of the beasts, stretched out his hands toward heaven, and called upon the Lord that works wonders, knowing that victory comes not by arms, but even as it seems good to him, he gives it to such as are worthy: + +Therefore in his prayer he said after this manner; O Lord, you did send your angel in the time of Ezekias king of Judea, and did kill in the host of Sennacherib one hundred fourscore and five thousand: + +Therefore now also, O Lord of heaven, send a good angel before us for a fear and dread to them; + +And through the might of your arm let those be stricken with terror, that come against your holy people to blaspheme. And he ended thus. + +Then Nicanor and they that were with him came forward with trumpets and songs. + +But Judas and his company encountered the enemies with invocation and prayer. + +So that fighting with their hands, and praying to God with their hearts, they killed no less than thirty and five thousand men: for through the appearance of God they were greatly cheered. + +Now when the battle was done, returning again with joy, they knew that Nicanor lay dead in his harness. + +Then they made a great shout and a noise, praising the Almighty in their own language. + +And Judas, who was ever the chief defender of the citizens both in body and mind, and who continued his love toward his countrymen all his life, commanded to strike off Nicanor's head, and his hand with his shoulder, and bring them to Jerusalem. + +So when he was there, and called them of his nation together, and set the priests before the altar, he sent for them that were of the tower, + +And showed them vile Nicanor's head, and the hand of that blasphemer, which with proud brags he had stretched out against the holy temple of the Almighty. + +And when he had cut out the tongue of that ungodly Nicanor, he commanded that they should give it by pieces to the fowls, and hang up the reward of his madness before the temple. + +So every man praised toward the heaven the glorious Lord, saying, Blessed be he that has kept his own place undefiled. + +He hanged also Nicanor's head upon the tower, an evident and manifest sign to all of the help of the Lord. + +And they ordained all with a common decree in no case to let that day pass without solemnity, but to celebrate the thirties day of the twelfth month, which in the Syrian tongue is called Adar, the day before Mardocheus' day. + +Thus went it with Nicanor: and from that time forth the Hebrews had the city in their power. And here will I make an end. + +And if I have done well, and as is fitting the story, it is that which I desired: but if slenderly and meanly, it is that which I could attain to. + +For as it is hurtful to drink wine or water alone; and as wine mingled with water is pleasant, and delights the taste: even so speech finely framed delights the ears of them that read the story. And here shall be an end. + +

+
+ +I Esdras +I ESDRAS +I Esdras +1ES +

I ESDRAS +

+ + +

And Josias held the feast of the passover in Jerusalem to his Lord, and offered the passover the fourteenth day of the first month; + +Having set the priests according to their daily courses, being arrayed in long garments, in the temple of the Lord. + +And he spoke to the Levites, the holy ministers of Israel, that they should hallow themselves to the Lord, to set the holy ark of the Lord in the house that king Solomon the son of David had built: + +And said, You⌃ shall no more bear the ark upon your shoulders: now therefore serve the Lord your God, and minister to his people Israel, and prepare you after your families and kindred, + +According as David the king of Israel prescribed, and according to the magnificence of Solomon his son: and standing in the temple according to the several dignity of the families of you the Levites, who minister in the presence of your brethren the children of Israel, + +Offer the passover in order, and make ready the sacrifices for your brethren, and keep the passover according to the commandment of the Lord, which was given to Moses. + +And to the people that was found there Josias gave thirty thousand lambs and kids, and three thousand calves: these things were given of the king's allowance, according as he promised, to the people, to the priests, and to the Levites. + +And Helkias, Zacharias, and Syelus, the governors of the temple, gave to the priests for the passover two thousand and six hundred sheep, and three hundred calves. + +And Jeconias, and Samaias, and Nathanael his brother, and Assabias, and Ochiel, and Joram, captains over thousands, gave to the Levites for the passover five thousand sheep, and seven hundred calves. + +And when these things were done, the priests and Levites, having the unleavened bread, stood in very comely order according to the kindred, + +And according to the several dignities of the fathers, before the people, to offer to the Lord, as it is written in the book of Moses: and thus did they in the morning. + +And they roasted the passover with fire, as appertains: as for the sacrifices, they sod them in brass pots and pans with a good savor, + +And set them before all the people: and afterward they prepared for themselves, and for the priests their brethren, the sons of Aaron. + +For the priests offered the fat until night: and the Levites prepared for themselves, and the priests their brethren, the sons of Aaron. + +The holy singers also, the sons of Asaph, were in their order, according to the appointment of David, to wit, Asaph, Zacharias, and Jeduthun, who was of the king's retinue. + +Moreover the porters were at every gate; it was not lawful for any to go from his ordinary service: for their brethren the Levites prepared for them. + +Thus were the things that belonged to the sacrifices of the Lord accomplished in that day, that they might hold the passover, + +And offer sacrifices upon the altar of the Lord, according to the commandment of king Josias. + +So the children of Israel which were present held the passover at that time, and the feast of sweet bread seven days. + +And such a passover was not kept in Israel since the time of the prophet Samuel. + +Yes, all the kings of Israel held not such a passover as Josias, and the priests, and the Levites, and the Jews, held with all Israel that were found dwelling at Jerusalem. + +In the eighteenth year of the reign of Josias was this passover kept. + +And the works or Josias were upright before his Lord with an heart full of godliness. + +As for the things that came to pass in his time, they were written in former times, concerning those that sinned, and did wickedly against the Lord above all people and kingdoms, and how they grieved him exceedingly, so that the words of the Lord rose up against Israel. + +Now after all these acts of Josias it came to pass, that Pharaoh the king of Egypt came to raise war at Carchamis upon Euphrates: and Josias went out against him. + +But the king of Egypt sent to him, saying, What have I to do with you, O king of Judea? + +I am not sent out from the Lord God against you; for my war is upon Euphrates: and now the Lord is with me, yes, the Lord is with me hasting me forward: depart from me, and be not against the Lord. + +Howbeit Josias did not turn back his chariot from him, but undertook to fight with him, not regarding the words of the prophet Jeremy spoken by the mouth of the Lord: + +But joined battle with him in the plain of Magiddo, and the princes came against king Josias. + +Then said the king to his servants, Carry me away out of the battle; for I am very weak. And immediately his servants took him away out of the battle. + +Then got he up upon his second chariot; and being brought back to Jerusalem died, and was buried in his father's sepulchre. + +And in all Jewry they mourned for Josias, yes, Jeremy the prophet lamented for Josias, and the chief men with the women made lamentation for him to this day: and this was given out for an ordinance to be done continually in all the nation of Israel. + +These things are written in the book of the stories of the kings of Judah, and every one of the acts that Josias did, and his glory, and his understanding in the law of the Lord, and the things that he had done before, and the things now recited, are reported in the book of the kings of Israel and Judea. + +And the people took Joachaz the son of Josias, and made him king instead of Josias his father, when he was twenty and three years old. + +And he reigned in Judea and in Jerusalem three months: and then the king of Egypt deposed him from reigning in Jerusalem. + +And he set a tax upon the land of one hundred talents of silver and one talent of gold. + +The king of Egypt also made king Joacim his brother king of Judea and Jerusalem. + +And he bound Joacim and the nobles: but Zaraces his brother he apprehended, and brought him out of Egypt. + +Five and twenty years old was Joacim when he was made king in the land of Judea and Jerusalem; and he did evil before the Lord. + +Therefore against him Nabuchodonosor the king of Babylon came up, and bound him with a chain of brass, and carried him into Babylon. + +Nabuchodonosor also took of the holy vessels of the Lord, and carried them away, and set them in his own temple at Babylon. + +But those things that are recorded of him, and of his uncleanness and impiety, are written in the chronicles of the kings. + +And Joacim his son reigned in his stead: he was made king being eighteen years old; + +And reigned but three months and ten days in Jerusalem; and did evil before the Lord. + +So after a year Nabuchodonosor sent and caused him to be brought into Babylon with the holy vessels of the Lord; + +And made Zedechias king of Judea and Jerusalem, when he was one and twenty years old; and he reigned eleven years: + +And he did evil also in the sight of the Lord, and cared not for the words that were spoken to him by the prophet Jeremy from the mouth of the Lord. + +And after that king Nabuchodonosor had made him to swear by the name of the Lord, he forswore himself, and rebelled; and hardening his neck, his heart, he transgressed the laws of the Lord God of Israel. + +The governors also of the people and of the priests did many things against the laws, and passed all the pollutions of all nations, and defiled the temple of the Lord, which was sanctified in Jerusalem. + +Nevertheless the God of their fathers sent by his messenger to call them back, because he spared them and his tabernacle also. + +But they had his messengers in derision; and, look, when the Lord spoke to them, they made a sport of his prophets: + +So far forth, that he, being angry with his people for their great ungodliness, commanded the kings of the Chaldees to come up against them; + +Who killed their young men with the sword, yes, even within the compass of their holy temple, and spared neither young man nor maid, old man nor child, among them; for he delivered all into their hands. + +And they took all the holy vessels of the Lord, both great and small, with the vessels of the ark of God, and the king's treasures, and carried them away into Babylon. + +As for the house of the Lord, they burnt it, and brake down the walls of Jerusalem, and set fire upon her towers: + +And as for her glorious things, they never ceased till they had consumed and brought them all to nothing: and the people that were not slain with the sword he carried to Babylon: + +Who became servants to him and his children, till the Persians reigned, to fulfil the word of the Lord spoken by the mouth of Jeremy: + +Until the land had enjoyed her sabbaths, the whole time of her desolation shall she rest, until the full term of seventy years. + +

+ + +

In the first year of Cyrus king of the Persians, that the word of the Lord might be accomplished, that he had promised by the mouth of Jeremy; + +The Lord raised up the spirit of Cyrus the king of the Persians, and he made proclamation through all his kingdom, and also by writing, + +Saying, Thus says Cyrus king of the Persians; The Lord of Israel, the most high Lord, has made me king of the whole world, + +And commanded me to build him an house at Jerusalem in Jewry. + +If therefore there be any of you that are of his people, let the Lord, even his Lord, be with him, and let him go up to Jerusalem that is in Judea, and build the house of the Lord of Israel: for he is the Lord that dwells in Jerusalem. + +Whosoever then dwell in the places about, let them help him, those, I say, that are his neighbors, with gold, and with silver, + +With gifts, with horses, and with cattle, and other things, which have been set forth by vow, for the temple of the Lord at Jerusalem. + +Then the chief of the families of Judea and of the tribe of Benjamin stood up; the priests also, and the Levites, and all they whose mind the Lord had moved to go up, and to build an house for the Lord at Jerusalem, + +And they that lived round about them, and helped them in all things with silver and gold, with horses and cattle, and with very many free gifts of a great number whose minds were stirred up thereto. + +King Cyrus also brought forth the holy vessels, which Nabuchodonosor had carried away from Jerusalem, and had set up in his temple of idols. + +Now when Cyrus king of the Persians had brought them forth, he delivered them to Mithridates his treasurer: + +And by him they were delivered to Sanabassar the governor of Judea. + +And this was the number of them; A thousand golden cups, and a thousand of silver, censers of silver twenty nine, vials of gold thirty, and of silver two thousand four hundred and ten, and a thousand other vessels. + +So all the vessels of gold and of silver, which were carried away, were five thousand four hundred threescore and nine. + +These were brought back by Sanabassar, together with them of the captivity, from Babylon to Jerusalem. + +But in the time of Artaxerxes king of the Persians Belemus, and Mithridates, and Tabellius, and Rathumus, and Beeltethmus, and Semellius the secretary, with others that were in commission with them, dwelling in Samaria and other places, wrote to him against them that lived in Judea and Jerusalem these letters following; + +To king Artaxerxes our lord, Your servants, Rathumus the storywriter, and Semellius the scribe, and the rest of their council, and the judges that are in Celosyria and Phenice. + +Be it now known to the lord king, that the Jews that are up from you to us, being come into Jerusalem, that rebellious and wicked city, do build the marketplaces, and repair the walls of it and do lay the foundation of the temple. + +Now if this city and the walls thereof be made up again, they will not only refuse to give tribute, but also rebel against kings. + +And forasmuch as the things pertaining to the temple are now in hand, we think it meet not to neglect such a matter, + +But to speak to our lord the king, to the intent that, if it be your pleasure it may be sought out in the books of your fathers: + +And you shall find in the chronicles what is written concerning these things, and shall understand that that city was rebellious, troubling both kings and cities: + +And that the Jews were rebellious, and raised always wars therein; for the which cause even this city was made desolate. + +Therefore now we do declare to you, O lord the king, that if this city be built again, and the walls thereof set up anew, you shall from henceforth have no passage into Celosyria and Phenice. + +Then the king wrote back again to Rathumus the storywriter, to Beeltethmus, to Semellius the scribe, and to the rest that were in commission, and dwellers in Samaria and Syria and Phenice, after this manner; + +I have read the epistle which you⌃ have sent to me: therefore I commanded to make diligent search, and it has been found that that city was from the beginning practising against kings; + +And the men therein were given to rebellion and war: and that mighty kings and fierce were in Jerusalem, who reigned and exacted tributes in Celosyria and Phenice. + +Now therefore I have commanded to hinder those men from building the city, and heed to be taken that there be no more done in it; + +And that those wicked workers proceed no further to the annoyance of kings, + +Then king Artaxerxes his letters being read, Rathumus, and Semellius the scribe, and the rest that were in commission with them, removing in haste toward Jerusalem with a troop of horsemen and a multitude of people in battle array, began to hinder the builders; and the building of the temple in Jerusalem ceased until the second year of the reign of Darius king of the Persians. + +

+ + +

Now when Darius reigned, he made a great feast to all his subjects, and to all his household, and to all the princes of Media and Persia, + +And to all the governors and captains and lieutenants that were under him, from India to Ethiopia, of one hundred twenty and seven provinces. + +And when they had eaten and drunken, and being satisfied were gone home, then Darius the king went into his bedchamber, and slept, and soon after awaked. + +Then three young men, that were of the guard that kept the king's body, spoke one to another; + +Let every one of us speak a sentence: he that shall overcome, and whose sentence shall seem wiser than the others, to him shall the king Darius give great gifts, and great things in token of victory: + +As, to be clothed in purple, to drink in gold, and to sleep upon gold, and a chariot with bridles of gold, and an headtire of fine linen, and a chain about his neck: + +And he shall sit next to Darius because of his wisdom, and shall be called Darius his cousin. + +And then every one wrote his sentence, sealed it, and laid it under king Darius his pillow; + +And said that, when the king is risen, some will give him the writings; and of whose side the king and the three princes of Persia shall judge that his sentence is the wisest, to him shall the victory be given, as was appointed. + +The first wrote, Wine is the strongest. + +The second wrote, The king is strongest. + +The third wrote, Women are strongest: but above all things Truth bears away the victory. + +Now when the king was risen up, they took their writings, and delivered them to him, and so he read them: + +And sending forth he called all the princes of Persia and Media, and the governors, and the captains, and the lieutenants, and the chief officers; + +And sat him down in the royal seat of judgment; and the writings were read before them. + +And he said, Call the young men, and they shall declare their own sentences. So they were called, and came in. + +And he said to them, Declare to us your mind concerning the writings. Then began the first, who had spoken of the strength of wine; + +And he said thus, O you⌃ men, how exceeding strong is wine! it causes all men to err that drink it: + +It makes the mind of the king and of the fatherless child to be all one; of the bondman and of the freeman, of the poor man and of the rich: + +It turns also every thought into jollity and mirth, so that a man remembers neither sorrow nor debt: + +And it makes every heart rich, so that a man remembers neither king nor governor; and it makes to speak all things by talents: + +And when they are in their cups, they forget their love both to friends and brethren, and a little after draw out swords: + +But when they are from the wine, they remember not what they have done. + +O you⌃ men, is not wine the strongest, that enforces to do thus? And when he had so spoken, he held his peace. + +

+ + +

Then the second, that had spoken of the strength of the king, began to say, + +O you⌃ men, do not men excel in strength that bear rule over sea and land and all things in them? + +But yet the king is more mighty: for he is lord of all these things, and has dominion over them; and whatever he commands them they do. + +If he bid them make war the one against the other, they do it: if he send them out against the enemies, they go, and break down mountains walls and towers. + +They kill and are slain, and transgress not the king's commandment: if they get the victory, they bring all to the king, as well the spoil, as all things else. + +Likewise for those that are no soldiers, and have not to do with wars, but use husbandry, when they have reaped again that which they had sown, they bring it to the king, and compel one another to pay tribute to the king. + +And yet he is but one man: if he command to kill, they kill; if he command to spare, they spare; + +If he command to strike, they strike; if he command to make desolate, they make desolate; if he command to build, they build; + +If he command to cut down, they cut down; if he command to plant, they plant. + +So all his people and his armies obey him: furthermore he lies down, he eats and drinks, and takes his rest: + +And these keep watch round about him, neither may any one depart, and do his own business, neither disobey they him in any thing. + +O you⌃ men, how should not the king be mightiest, when in such sort he is obeyed? And he held his tongue. + +Then the third, who had spoken of women, and of the truth, (this was Zorobabel) began to speak. + +O you⌃ men, it is not the great king, nor the multitude of men, neither is it wine, that excels; who is it then that rules them, or has the lordship over them? are they not women? + +Women have borne the king and all the people that bear rule by sea and land. + +Even of them came they: and they nourished them up that planted the vineyards, from whence the wine comes. + +These also make garments for men; these bring glory to men; and without women can’t men be. + +Yes, and if men have gathered together gold and silver, or any other goodly thing, do they not love a woman which is comely in favor and beauty? + +And letting all those things go, do they not gape, and even with open mouth fix their eyes fast on her; and have not all men more desire to her than to silver or gold, or any goodly thing whatever? + +A man leaves his own father that brought him up, and his own country, and cleaves to his wife. + +He sticks not to spend his life with his wife. and remembers neither father, nor mother, nor country. + +By this also you⌃ must know that women have dominion over you: do you⌃ not labor and toil, and give and bring all to the woman? + +Yes, a man takes his sword, and goes his way to rob and to steal, to sail upon the sea and upon rivers; + +And looks upon a lion, and goes in the darkness; and when he has stolen, spoiled, and robbed, he brings it to his love. + +Therefore a man loves his wife better than father or mother. + +Yes, many there be that have run out of their wits for women, and become servants for their sakes. + +Many also have perished, have erred, and sinned, for women. + +And now do you⌃ not believe me? is not the king great in his power? do not all regions fear to touch him? + +Yet did I see him and Apame the king's concubine, the daughter of the admirable Bartacus, sitting at the right hand of the king, + +And taking the crown from the king's head, and setting it upon her own head; she also struck the king with her left hand. + +And yet for all this the king gaped and gazed upon her with open mouth: if she laughed upon him, he laughed also: but if she took any displeasure at him, the king was fain to flatter, that she might be reconciled to him again. + +O you⌃ men, how can it be but women should be strong, seeing they do thus? + +Then the king and the princes looked one upon another: so he began to speak of the truth. + +O you⌃ men, are not women strong? great is the earth, high is the heaven, swift is the sun in his course, for he encircles the heavens round about, and fetches his course again to his own place in one day. + +Is he not great that makes these things? therefore great is the truth, and stronger than all things. + +All the earth cries upon the truth, and the heaven blesses it: all works shake and tremble at it, and with it is no unrighteous thing. + +Wine is wicked, the king is wicked, women are wicked, all the children of men are wicked, and such are all their wicked works; and there is no truth in them; in their unrighteousness also they shall perish. + +As for the truth, it endures, and is Always strong; it lives and conquers for evermore. + +With her there is no accepting of persons or rewards; but she does the things that are just, and refrains from all unjust and wicked things; and all men do well like of her works. + +Neither in her judgment is any unrighteousness; and she is the strength, kingdom, power, and majesty, of all ages. Blessed be the God of truth. + +And with that he held his peace. And all the people then shouted, and said, Great is Truth, and mighty above all things. + +Then said the king to him, Ask what you will more than is appointed in the writing, and we will give it you, because you are found wisest; and you shall sit next me, and shall be called my cousin. + +Then said he to the king, Remember your vow, which you have vowed to build Jerusalem, in the day when you came to your kingdom, + +And to send away all the vessels that were taken away out of Jerusalem, which Cyrus set apart, when he vowed to destroy Babylon, and to send them again there. + +You also have vowed to build up the temple, which the Edomites burned when Judea was made desolate by the Chaldees. + +And now, O lord the king, this is that which I require, and which I desire of you, and this is the princely liberality proceeding from yourself: I desire therefore that you make good the vow, the performance whereof with your own mouth you have vowed to the King of heaven. + +Then Darius the king stood up, and kissed him, and wrote letters for him to all the treasurers and lieutenants and captains and governors, that they should safely convey on their way both him, and all those that go up with him to build Jerusalem. + +He wrote letters also to the lieutenants that were in Celosyria and Phenice, and to them in Libanus, that they should bring cedar wood from Libanus to Jerusalem, and that they should build the city with him. + +Moreover he wrote for all the Jews that went out of his realm up into Jewry, concerning their freedom, that no officer, no ruler, no lieutenant, nor treasurer, should forcibly enter into their doors; + +And that all the country which they hold should be free without tribute; and that the Edomites should give over the villages of the Jews which then they held: + +Yes, that there should be yearly given twenty talents to the building of the temple, until the time that it were built; + +And other ten talents yearly, to maintain the burnt offerings upon the altar every day, as they had a commandment to offer seventeen: + +And that all they that went from Babylon to build the city should have free liberty, as well they as their posterity, and all the priests that went away. + +He wrote also concerning. the charges, and the priests' vestments wherein they minister; + +And likewise for the charges of the Levites, to be given them until the day that the house were finished, and Jerusalem builded up. + +And he commanded to give to all that kept the city pensions and wages. + +He sent away also all the vessels from Babylon, that Cyrus had set apart; and all that Cyrus had given in commandment, the same charged he also to be done, and sent to Jerusalem. + +Now when this young man was gone forth, he lifted up his face to heaven toward Jerusalem, and praised the King of heaven, + +And said, From you comes victory, from you comes wisdom, and your is the glory, and I am your servant. + +Blessed are you, who have given me wisdom: for to you I give thanks, O Lord of our fathers. + +And so he took the letters, and went out, and came to Babylon, and told it all his brethren. + +And they praised the God of their fathers, because he had given them freedom and liberty + +To go up, and to build Jerusalem, and the temple which is called by his name: and they feasted with instruments of musick and gladness seven days. + +

+ + +

After this were the principal men of the families chosen according to their tribes, to go up with their wives and sons and daughters, with their menservants and maidservants, and their cattle. + +And Darius sent with them a thousand horsemen, till they had brought them back to Jerusalem safely, and with musical +instruments tabrets and flutes. + +And all their brethren played, and he made them go up together with them. + +And these are the names of the men which went up, according to their families among their tribes, after their several heads. + +The priests, the sons of Phinees the son of Aaron: Jesus the son of Josedec, the son of Saraias, and Joacim the son of Zorobabel, the son of Salathiel, of the house of David, out of the kindred of Phares, of the tribe of Judah; + +Who spoke wise sentences before Darius the king of Persia in the second year of his reign, in the month Nisan, which is the first month. + +And these are they of Jewry that came up from the captivity, where they lived as strangers, whom Nabuchodonosor the king of Babylon had carried away to Babylon. + +And they returned to Jerusalem, and to the other parts of Jewry, every man to his own city, who came with Zorobabel, with Jesus, Nehemias, and Zacharias, and Reesaias, Enenius, Mardocheus, Beelsarus, Aspharasus, Reelius, Roimus, and Baana, their guides. + +The number of them of the nation, and their governors, sons of Phoros, two thousand one hundred seventy and two; the sons of Saphat, four hundred seventy and two: + +The sons of Ares, seven hundred fifty and six: + +The sons of Phaath Moab, two thousand eight hundred and twelve: + +The sons of Elam, a thousand two hundred fifty and four: the sons of Zathui, nine hundred forty and five: the sons of Corbe, seven hundred and five: the sons of Bani, six hundred forty and eight: + +The sons of Bebai, six hundred twenty and three: the sons of Sadas, three thousand two hundred twenty and two: + +The sons of Adonikam, six hundred sixty and seven: the sons of Bagoi, two thousand sixty and six: the sons of Adin, four hundred fifty and four: + +The sons of Aterezias, ninety and two: the sons of Ceilan and Azetas threescore and seven: the sons of Azuran, four hundred thirty and two: + +The sons of Ananias, one hundred and one: the sons of Arom, thirty two: and the sons of Bassa, three hundred twenty and three: the sons of Azephurith, one hundred and two: + +The sons of Meterus, three thousand and five: the sons of Bethlomon, one hundred twenty and three: + +They of Netophah, fifty and five: they of Anathoth, one hundred fifty and eight: they of Bethsamos, forty and two: + +They of Kiriathiarius, twenty and five: they of Caphira and Beroth, seven hundred forty and three: they of Pira, seven hundred: + +They of Chadias and Ammidoi, four hundred twenty and two: they of Cirama and Gabdes, six hundred twenty and one: + +They of Macalon, one hundred twenty and two: they of Betolius, fifty and two: the sons of Nephis, one hundred fifty and six: + +The sons of Calamolalus and Onus, seven hundred twenty and five: the sons of Jerechus, two hundred forty and five: + +The sons of Annas, three thousand three hundred and thirty. + +The priests: the sons of Jeddu, the son of Jesus among the sons of Sanasib, nine hundred seventy and two: the sons of Meruth, a thousand fifty and two: + +The sons of Phassaron, a thousand forty and seven: the sons of Carme, a thousand and seventeen. + +The Levites: the sons of Jessue, and Cadmiel, and Banuas, and Sudias, seventy and four. + +The holy singers: the sons of Asaph, one hundred twenty and eight. + +The porters: the sons of Salum, the sons of Jatal, the sons of Talmon, the sons of Dacobi, the sons of Teta, the sons of Sami, in all one hundred thirty and nine. + +The servants of the temple: the sons of Esau, the sons of Asipha, the sons of Tabaoth, the sons of Ceras, the sons of Sud, the sons of Phaleas, the sons of Labana, the sons of Graba, + +The sons of Acua, the sons of Uta, the sons of Cetab, the sons of Agaba, the sons of Subai, the sons of Anan, the sons of Cathua, the sons of Geddur, + +The sons of Airus, the sons of Daisan, the sons of Noeba, the sons of Chaseba, the sons of Gazera, the sons of Azia, the sons of Phinees, the sons of Azara, the sons of Bastai, the sons of Asana, the sons of Meani, the sons of Naphisi, the sons of Acub, the sons of Acipha, the sons of Assur, the sons of Pharacim, the sons of Basaloth, + +The sons of Meeda, the sons of Coutha, the sons of Charea, the sons of Charcus, the sons of Aserer, the sons of Thomoi, the sons of Nasith, the sons of Atipha. + +The sons of the servants of Solomon: the sons of Azaphion, the sons of Pharira, the sons of Jeeli, the sons of Lozon, the sons of Israel, the sons of Sapheth, + +The sons of Hagia, the sons of Pharacareth, the sons of Sabi, the sons of Sarothie, the sons of Masias, the sons of Gar, the sons of Addus, the sons of Suba, the sons of Apherra, the sons of Barodis, the sons of Sabat, the sons of Allom. + +All the ministers of the temple, and the sons of the servants of Solomon, were three hundred seventy and two. + +These came up from Thermeleth and Thelersas, Charaathalar leading them, and Aalar; + +Neither could they show their families, nor their stock, how they were of Israel: the sons of Ladan, the son of Ban, the sons of Necodan, six hundred fifty and two. + +And of the priests that usurped the office of the priesthood, and were not found: the sons of Obdia, the sons of Accoz, the sons of Addus, who married Augia one of the daughters of Barzelus, and was named after his name. + +And when the description of the kindred of these men was sought in the register, and was not found, they were removed from executing the office of the priesthood: + +For to them said Nehemias and Atharias, that they should not be partakers of the holy things, till there arose up an high priest clothed with doctrine and truth. + +So of Israel, from them of twelve years old and upward, they were all in number forty thousand, beside menservants and women servants two thousand three hundred and sixty. + +Their menservants and handmaids were seven thousand three hundred forty and seven: the singing men and singing women, two hundred forty and five: + +Four hundred thirty and five camels, seven thousand thirty and six horses, two hundred forty and five mules, five thousand five hundred twenty and five beasts used to the yoke. + +And certain of the chief of their families, when they came to the temple of God that is in Jerusalem, vowed to set up the house again in his own place according to their ability, + +And to give into the holy treasury of the works a thousand pounds of gold, five thousand of silver, and one hundred priestly vestments. + +And so lived the priests and the Levites and the people in Jerusalem, and in the country, the singers also and the porters; and all Israel in their villages. + +But when the seventh month was at hand, and when the children of Israel were every man in his own place, they came all together with one consent into the open place of the first gate which is toward the east. + +Then stood up Jesus the son of Josedec, and his brethren the priests and Zorobabel the son of Salathiel, and his brethren, and made ready the altar of the God of Israel, + +To offer burnt sacrifices upon it, according as it is expressly commanded in the book of Moses the man of God. + +And there were gathered to them out of the other nations of the land, and they erected the altar upon his own place, because all the nations of the land were at enmity with them, and oppressed them; and they offered sacrifices according to the time, and burnt offerings to the Lord both morning and evening. + +Also they held the feast of tabernacles, as it is commanded in the law, and offered sacrifices daily, as was meet: + +And after that, the continual oblations, and the sacrifice of the sabbaths, and of the new moons, and of all holy feasts. + +And all they that had made any vow to God began to offer sacrifices to God from the first day of the seventh month, although the temple of the Lord was not yet built. + +And they gave to the masons and carpenters money, meat, and drink, with cheerfulness. + +To them of Zidon also and Tyre they gave carrs, that they should bring cedar trees from Libanus, which should be brought by floats to the haven of Joppa, according as it was commanded them by Cyrus king of the Persians. + +And in the second year and second month after his coming to the temple of God at Jerusalem began Zorobabel the son of Salathiel, and Jesus the son of Josedec, and their brethren, and the priests, and the Levites, and all they that were come to Jerusalem out of the captivity: + +And they laid the foundation of the house of God in the first day of the second month, in the second year after they were come to Jewry and Jerusalem. + +And they appointed the Levites from twenty years old over the works of the Lord. Then stood up Jesus, and his sons and brethren, and Cadmiel his brother, and the sons of Madiabun, with the sons of Joda the son of Eliadun, with their sons and brethren, all Levites, with one accord setters forward of the business, laboring to advance the works in the house of God. So the workmen built the temple of the Lord. + +And the priests stood arrayed in their vestments with musical instruments and trumpets; and the Levites the sons of Asaph had cymbals, + +Singing songs of thanksgiving, and praising the Lord, according as David the king of Israel had ordained. + +And they sung with loud voices songs to the praise of the Lord, because his mercy and glory is for ever in all Israel. + +And all the people sounded trumpets, and shouted with a loud voice, singing songs of thanksgiving to the Lord for the rearing up of the house of the Lord. + +Also of the priests and Levites, and of the chief of their families, the ancients who had seen the former house came to the building of this with weeping and great crying. + +But many with trumpets and joy shouted with loud voice, + +Insomuch that the trumpets might not be heard for the weeping of the people: yet the multitude sounded marvelously, so that it was heard afar off. + +Therefore when the enemies of the tribe of Judah and Benjamin heard it, they came to know what that noise of trumpets should mean. + +And they perceived that they that were of the captivity did build the temple to the Lord God of Israel. + +So they went to Zorobabel and Jesus, and to the chief of the families, and said to them, We will build together with you. + +For we likewise, as you⌃, do obey your Lord, and do sacrifice to him from the days of Azbazareth the king of the Assyrians, who brought us hither. + +Then Zorobabel and Jesus and the chief of the families of Israel said to them, It is not for us and you to build together an house to the Lord our God. + +We ourselves alone will build to the Lord of Israel, according as Cyrus the king of the Persians has commanded us. + +But the heathen of the land lying heavy upon the inhabitants of Judea, and holding them strait, hindered their building; + +And by their secret plots, and popular persuasions and commotions, they hindered the finishing of the building all the time that king Cyrus lived: so they were hindered from building for the space of two years, until the reign of Darius. + +

+ + +

Now in the second year of the reign of Darius Aggeus and Zacharias the son of Addo, the prophets, prophesied to the Jews in Jewry and Jerusalem in the name of the Lord God of Israel, which was upon them. + +Then stood up Zorobabel the son of Salatiel, and Jesus the son of Josedec, and began to build the house of the Lord at Jerusalem, the prophets of the Lord being with them, and helping them. + +At the same time came to them Sisinnes the governor of Syria and Phenice, with Sathrabuzanes and his companions, and said to them, + +By whose appointment do you⌃ build this house and this roof, and perform all the other things? and who are the workmen that perform these things? + +Nevertheless the elders of the Jews obtained favor, because the Lord had visited the captivity; + +And they were not hindered from building, until such time as signification was given to Darius concerning them, and an answer received. + +The copy of the letters which Sisinnes, governor of Syria and Phenice, and Sathrabuzanes, with their companions, rulers in Syria and Phenice, wrote and sent to Darius; To king Darius, greeting: + +Let all things be known to our lord the king, that being come into the country of Judea, and entered into the city of Jerusalem we found in the city of Jerusalem the ancients of the Jews that were of the captivity + +Building an house to the Lord, great and new, of hewn and costly stones, and the timber already laid upon the walls. + +And those works are done with great speed, and the work goes on prosperously in their hands, and with all glory and diligence is it made. + +Then asked we these elders, saying, By whose commandment build you⌃ this house, and lay the foundations of these works? + +Therefore to the intent that we might give knowledge to you by writing, we demanded of them who were the chief doers, and we required of them the names in writing of their principal men. + +So they gave us this answer, We are the servants of the Lord which made heaven and earth. + +And as for this house, it was builded many years ago by a king of Israel great and strong, and was finished. + +But when our fathers provoked God to wrath, and sinned against the Lord of Israel which is in heaven, he gave them over into the power of Nabuchodonosor king of Babylon, of the Chaldees; + +Who pulled down the house, and burned it, and carried away the people captives to Babylon. + +But in the first year that king Cyrus reigned over the country of Babylon Cyrus the king wrote to build up this house. + +And the holy vessels of gold and of silver, that Nabuchodonosor had carried away out of the house at Jerusalem, and had set them in his own temple those Cyrus the king brought forth again out of the temple at Babylon, and they were delivered to Zorobabel and to Sanabassarus the ruler, + +With commandment that he should carry away the same vessels, and put them in the temple at Jerusalem; and that the temple of the Lord should be built in his place. + +Then the same Sanabassarus, being come here, laid the foundations of the house of the Lord at Jerusalem; and from that time to this being still a building, it is not yet fully ended. + +Now therefore, if it seem good to the king, let search be made among the records of king Cyrus: + +And if it be found that the building of the house of the Lord at Jerusalem has been done with the consent of king Cyrus, and if our lord the king be so minded, let him signify to us thereof. + +Then commanded king Darius to seek among the records at Babylon: and so at Ecbatana the palace, which is in the country of Media, there was found a roll wherein these things were recorded. + +In the first year of the reign of Cyrus king Cyrus commanded that the house of the Lord at Jerusalem should be built again, where they do sacrifice with continual fire: + +Whose height shall be sixty cubits and the breadth sixty cubits, with three rows of hewn stones, and one row of new wood of that country; and the expenses thereof to be given out of the house of king Cyrus: + +And that the holy vessels of the house of the Lord, both of gold and silver, that Nabuchodonosor took out of the house at Jerusalem, and brought to Babylon, should be restored to the house at Jerusalem, and be set in the place where they were before. + +And also he commanded that Sisinnes the governor of Syria and Phenice, and Sathrabuzanes, and their companions, and those which were appointed rulers in Syria and Phenice, should be careful not to meddle with the place, but suffer Zorobabel, the servant of the Lord, and governor of Judea, and the elders of the Jews, to build the house of the Lord in that place. + +I have commanded also to have it built up whole again; and that they look diligently to help those that be of the captivity of the Jews, till the house of the Lord be finished: + +And out of the tribute of Celosyria and Phenice a portion carefully to be given these men for the sacrifices of the Lord, that is, to Zorobabel the governor, for bullocks, and rams, and lambs; + +And also corn, salt, wine, and oil, and that continually every year without further question, according as the priests that be in Jerusalem shall signify to be daily spent: + +That offerings may be made to the most high God for the king and for his children, and that they may pray for their lives. + +And he commanded that whoever should transgress, yes, or make light of any thing before spoken or written, out of his own house should a tree be taken, and he thereon be hanged, and all his goods seized for the king. + +The Lord therefore, whose name is there called upon, utterly destroy every king and nation, that stretches out his hand to hinder or endamage that house of the Lord in Jerusalem. + +I Darius the king have ordained that according to these things it be done with diligence. + +

+ + +

Then Sisinnes the governor of Celosyria and Phenice, and Sathrabuzanes, with their companions following the commandments of king Darius, + +Did very carefully oversee the holy works, assisting the ancients of the Jews and governors of the temple. + +And so the holy works prospered, when Aggeus and Zacharias the prophets prophesied. + +And they finished these things by the commandment of the Lord God of Israel, and with the consent of Cyrus, Darius, and Artaxerxes, kings of Persia. + +And thus was the holy house finished in the three and twentieth day of the month Adar, in the sixth year of Darius king of the Persians + +And the children of Israel, the priests, and the Levites, and others that were of the captivity, that were added to them, did according to the things written in the book of Moses. + +And to the dedication of the temple of the Lord they offered one hundred bullocks two hundred rams, four hundred lambs; + +And twelve goats for the sin of all Israel, according to the number of the chief of the tribes of Israel. + +The priests also and the Levites stood arrayed in their vestments, according to their kindred, in the service of the Lord God of Israel, according to the book of Moses: and the porters at every gate. + +And the children of Israel that were of the captivity held the passover the fourteenth day of the first month, after that the priests and the Levites were sanctified. + +They that were of the captivity were not all sanctified together: but the Levites were all sanctified together. + +And so they offered the passover for all them of the captivity, and for their brethren the priests, and for themselves. + +And the children of Israel that came out of the captivity did eat, even all they that had separated themselves from the abominations of the people of the land, and sought the Lord. + +And they kept the feast of unleavened bread seven days, making merry before the Lord, + +For that he had turned the counsel of the king of Assyria toward them, to strengthen their hands in the works of the Lord God of Israel. + +

+ + +

And after these things, when Artaxerxes the king of the Persians reigned came Esdras the son of Saraias, the son of Ezerias, the son of Helchiah, the son of Salum, + +The son of Sadduc, the son of Achitob, the son of Amarias, the son of Ezias, the son of Meremoth, the son of Zaraias, the son of Savias, the son of Boccas, the son of Abisum, the son of Phinees, the son of Eleazar, the son of Aaron the chief priest. + +This Esdras went up from Babylon, as a scribe, being very ready in the law of Moses, that was given by the God of Israel. + +And the king did him honor: for he found grace in his sight in all his requests. + +There went up with him also certain of the children of Israel, of the priest of the Levites, of the holy singers, porters, and ministers of the temple, to Jerusalem, + +In the seventh year of the reign of Artaxerxes, in the fifth month, this was the king's seventh year; for they went from Babylon in the first day of the first month, and came to Jerusalem, according to the prosperous journey which the Lord gave them. + +For Esdras had very great skill, so that he omitted nothing of the law and commandments of the Lord, but taught all Israel the ordinances and judgments. + +Now the copy of the commission, which was written from Artaxerxes the king, and came to Esdras the priest and reader of the law of the Lord, is this that follows; + +King Artaxerxes to Esdras the priest and reader of the law of the Lord sends greeting: + +Having determined to deal graciously, I have given order, that such of the nation of the Jews, and of the priests and Levites being within our realm, as are willing and desirous should go with you to Jerusalem. + +As many therefore as have a mind thereto, let them depart with you, as it has seemed good both to me and my seven friends the counselors; + +That they may look to the affairs of Judea and Jerusalem, agreeably to that which is in the law of the Lord; + +And carry the gifts to the Lord of Israel to Jerusalem, which I and my friends have vowed, and all the gold and silver that in the country of Babylon can be found, to the Lord in Jerusalem, + +With that also which is given of the people for the temple of the Lord their God at Jerusalem: and that silver and gold may be collected for bullocks, rams, and lambs, and things thereto appertaining; + +To the end that they may offer sacrifices to the Lord upon the altar of the Lord their God, which is in Jerusalem. + +And whatever you and your brethren will do with the silver and gold, that do, according to the will of your God. + +And the holy vessels of the Lord, which are given you for the use of the temple of your God, which is in Jerusalem, you shall set before your God in Jerusalem. + +And whatever thing else you shall remember for the use of the temple of your God, you shall give it out of the king's treasury. + +And I king Artaxerxes have also commanded the keepers of the treasures in Syria and Phenice, that whatever Esdras the priest and the reader of the law of the most high God shall send for, they should give it him with speed, + +To the sum of one hundred talents of silver, likewise also of wheat even to one hundred cors, and one hundred pieces of wine, and other things in abundance. + +Let all things be performed after the law of God diligently to the most high God, that wrath come not upon the kingdom of the king and his sons. + +I command you also, that you⌃ require no tax, nor any other imposition, of any of the priests, or Levites, or holy singers, or porters, or ministers of the temple, or of any that have doings in this temple, and that no man have authority to impose any thing upon them. + +And you, Esdras, according to the wisdom of God ordain judges and justices, that they may judge in all Syria and Phenice all those that know the law of your God; and those that know it not you shall teach. + +And whoever shall transgress the law of your God, and of the king, shall be punished diligently, whether it be by death, or other punishment, by penalty of money, or by imprisonment. + +Then said Esdras the scribe, Blessed be the only Lord God of my fathers, who has put these things into the heart of the king, to glorify his house that is in Jerusalem: + +And has honored me in the sight of the king, and his counselors, and all his friends and nobles. + +Therefore was I encouraged by the help of the Lord my God, and gathered together men of Israel to go up with me. + +And these are the chief according to their families and several dignities, that went up with me from Babylon in the reign of king Artaxerxes: + +Of the sons of Phinees, Gerson: of the sons of Ithamar, Gamael: of the sons of David, Lettus the son of Sechenias: + +Of the sons of Pharez, Zacharias; and with him were counted one hundred and fifty men: + +Of the sons of Pahath Moab, Eliaonias, the son of Zaraias, and with him two hundred men: + +Of the sons of Zathoe, Sechenias the son of Jezelus, and with him three hundred men: of the sons of Adin, Obeth the son of Jonathan, and with him two hundred and fifty men: + +Of the sons of Elam, Josias son of Gotholias, and with him seventy men: + +Of the sons of Saphatias, Zaraias son of Michael, and with him threescore and ten men: + +Of the sons of Joab, Abadias son of Jezelus, and with him two hundred and twelve men: + +Of the sons of Banid, Assalimoth son of Josaphias, and with him one hundred and threescore men: + +Of the sons of Babi, Zacharias son of Bebai, and with him twenty and eight men: + +Of the sons of Astath, Johannes son of Acatan, and with him one hundred and ten men: + +Of the sons of Adonikam the last, and these are the names of them, Eliphalet, Jewel, and Samaias, and with them seventy men: + +Of the sons of Bago, Uthi the son of Istalcurus, and with him seventy men. + +And these I gathered together to the river called Theras, where we pitched our tents three days: and then I surveyed them. + +But when I had found there none of the priests and Levites, + +Then sent I to Eleazar, and Iduel, and Masman, + +And Alnathan, and Mamaias, and Joribas, and Nathan, Eunatan, Zacharias, and Mosollamon, principal men and learned. + +And I bade them that they should go to Saddeus the captain, who was in the place of the treasury: + +And commanded them that they should speak to Daddeus, and to his brethren, and to the treasurers in that place, to send us such men as might execute the priests' office in the house of the Lord. + +And by the mighty hand of our Lord they brought to us skillful men of the sons of Moli the son of Levi, the son of Israel, Asebebia, and his sons, and his brethren, who were eighteen. + +And Asebia, and Annuus, and Osaias his brother, of the sons of Channuneus, and their sons, were twenty men. + +And of the servants of the temple whom David had ordained, and the principal men for the service of the Levites to wit, the servants of the temple two hundred and twenty, the catalogue of whose names were showed. + +And there I vowed a fast to the young men before our Lord, to desire of him a prosperous journey both for us and them that were with us, for our children, and for the cattle: + +For I was ashamed to ask the king footmen, and horsemen, and conduct for safeguard against our adversaries. + +For we had said to the king, that the power of the Lord our God should be with them that seek him, to support them in all ways. + +And again we implored our Lord as touching these things, and found him favourable to us. + +Then I separated twelve of the chief of the priests, Esebrias, and Assanias, and ten men of their brethren with them: + +And I weighed them the gold, and the silver, and the holy vessels of the house of our Lord, which the king, and his council, and the princes, and all Israel, had given. + +And when I had weighed it, I delivered to them six hundred and fifty talents of silver, and silver vessels of one hundred talents, and one hundred talents of gold, + +And twenty golden vessels, and twelve vessels of brass, even of fine brass, glittering like gold. + +And I said to them, Both you⌃ are holy to the Lord, and the vessels are holy, and the gold and the silver is a vow to the Lord, the Lord of our fathers. + +Watch you⌃, and keep them till you⌃ deliver them to the chief of the priests and Levites, and to the principal men of the families of Israel, in Jerusalem, into the chambers of the house of our God. + +So the priests and the Levites, who had received the silver and the gold and the vessels, brought them to Jerusalem, into the temple of the Lord. + +And from the river Theras we departed the twelfth day of the first month, and came to Jerusalem by the mighty hand of our Lord, which was with us: and from the beginning of our journey the Lord delivered us from every enemy, and so we came to Jerusalem. + +And when we had been there three days, the gold and silver that was weighed was delivered in the house of our Lord on the fourth day to Marmoth the priest the son of Iri. + +And with him was Eleazar the son of Phinees, and with them were Josabad the son of Jesu and Moeth the son of Sabban, Levites: all was delivered them by number and weight. + +And all the weight of them was written up the same hour. + +Moreover they that were come out of the captivity offered sacrifice to the Lord God of Israel, even twelve bullocks for all Israel, fourscore and sixteen rams, + +Threescore and twelve lambs, goats for a peace offering, twelve; all of them a sacrifice to the Lord. + +And they delivered the king's commandments to the king's stewards' and to the governors of Celosyria and Phenice; and they honored the people and the temple of God. + +Now when these things were done, the rulers came to me, and said, + +The nation of Israel, the princes, the priests and Levites, have not put away from them the strange people of the land, nor the pollutions of the Gentiles to wit, of the Canaanites, Hittites, Pheresites, Jebusites, and the Moabites, Egyptians, and Edomites. + +For both they and their sons have married with their daughters, and the holy seed is mixed with the strange people of the land; and from the beginning of this matter the rulers and the great men have been partakers of this iniquity. + +And as soon as I had heard these things, I tore my clothes, and the holy garment, and pulled off the hair from off my head and beard, and sat me down sad and very heavy. + +So all they that were then moved at the word of the Lord God of Israel assembled to me, while I mourned for the iniquity: but I sat still full of heaviness until the evening sacrifice. + +Then rising up from the fast with my clothes and the holy garment torn, and bowing my knees, and stretching forth my hands to the Lord, + +I said, O Lord, I am confounded and ashamed before your face; + +For our sins are multiplied above our heads, and our ignorances have reached up to heaven. + +For ever since the time of our fathers we have been and are in great sin, even to this day. + +And for our sins and our fathers' we with our brethren and our kings and our priests were given up to the kings of the earth, to the sword, and to captivity, and for a prey with shame, to this day. + +And now in some measure has mercy been showed to us from you, O Lord, that there should be left us a root and a name in the place of your sanctuary; + +And to discover to us a light in the house of the Lord our God, and to give us food in the time of our servitude. + +Yes, when we were in bondage, we were not forsaken of our Lord; but he made us gracious before the kings of Persia, so that they gave us food; + +Yes, and honored the temple of our Lord, and raised up the desolate Sion, that they have given us a sure dwelling in Jewry and Jerusalem. + +And now, O Lord, what shall we say, having these things? for we have transgressed your commandments, which you gave by the hand of your servants the prophets, saying, + +That the land, which you⌃ enter into to possess as an heritage, is a land polluted with the pollutions of the strangers of the land, and they have filled it with their uncleanness. + +Therefore now shall you⌃ not join your daughters to their sons, neither shall you⌃ take their daughters to your sons. + +Moreover you⌃ shall never seek to have peace with them, that you⌃ may be strong, and eat the good things of the land, and that you⌃ may leave the inheritance of the land to your children for evermore. + +And all that is befallen is done to us for our wicked works and great sins; for you, O Lord, did make our sins light, + +And did give to us such a root: but we have turned back again to transgress your law, and to mingle ourselves with the uncleanness of the nations of the land. + +Mightest not you be angry with us to destroy us, till you had left us neither root, seed, nor name? + +O Lord of Israel, you are true: for we are left a root this day. + +Behold, now are we before you in our iniquities, for we can’t stand any longer by reason of these things before you. + +And as Esdras in his prayer made his confession, weeping, and lying flat upon the ground before the temple, there gathered to him from Jerusalem a very great multitude of men and women and children: for there was great weeping among the multitude. + +Then Jechonias the son of Jeelus, one of the sons of Israel, called out, and said, O Esdras, we have sinned against the Lord God, we have married strange women of the nations of the land, and now is all Israel aloft. + +Let us make an oath to the Lord, that we will put away all our wives, which we have taken of the heathen, with their children, + +Like as you have decreed, and as many as do obey the law of the Lord. + +Arise and put in execution: for to you does this matter appertain, and we will be with you: do valiantly. + +So Esdras arose, and took an oath of the chief of the priests and Levites of all Israel to do after these things; and so they swore. + +

+ + +

Then Esdras rising from the court of the temple went to the chamber of Joanan the son of Eliasib, + +And remained there, and did eat no meat nor drink water, mourning for the great iniquities of the multitude. + +And there was a proclamation in all Jewry and Jerusalem to all them that were of the captivity, that they should be gathered together at Jerusalem: + +And that whoever met not there within two or three days according as the elders that bare rule appointed, their cattle should be seized to the use of the temple, and himself cast out from them that were of the captivity. + +And in three days were all they of the tribe of Judah and Benjamin gathered together at Jerusalem the twentieth day of the ninth month. + +And all the multitude sat trembling in the broad court of the temple because of the present foul weather. + +So Esdras arose up, and said to them, You⌃ have transgressed the law in marrying strange wives, thereby to increase the sins of Israel. + +And now by confessing give glory to the Lord God of our fathers, + +And do his will, and separate yourselves from the heathen of the land, and from the strange women. + +Then cried the whole multitude, and said with a loud voice, Like as you have spoken, so will we do. + +But forasmuch as the people are many, and it is foul weather, so that we can’t stand without, and this is not a work of a day or two, seeing our sin in these things is spread far: + +Therefore let the rulers of the multitude stay, and let all them of our habitations that have strange wives come at the time appointed, + +And with them the rulers and judges of every place, till we turn away the wrath of the Lord from us for this matter. + +Then Jonathan the son of Azael and Ezechias the son of Theocanus accordingly took this matter upon them: and Mosollam and Levis and Sabbatheus helped them. + +And they that were of the captivity did according to all these things. + +And Esdras the priest chose to him the principal men of their families, all by name: and in the first day of the tenth month they sat together to examine the matter. + +So their cause that held strange wives was brought to an end in the first day of the first month. + +And of the priests that were come together, and had strange wives, there were found: + +Of the sons of Jesus the son of Josedec, and his brethren; Matthelas and Eleazar, and Joribus and Joadanus. + +And they gave their hands to put away their wives and to offer rams to make reconcilement for their errors. + +And of the sons of Emmer; Ananias, and Zabdeus, and Eanes, and Sameius, and Hiereel, and Azarias. + +And of the sons of Phaisur; Elionas, Massias Israel, and Nathanael, and Ocidelus and Talsas. + +And of the Levites; Jozabad, and Semis, and Colius, who was called Calitas, and Patheus, and Judas, and Jonas. + +Of the holy singers; Eleazurus, Bacchurus. + +Of the porters; Sallumus, and Tolbanes. + +Of them of Israel, of the sons of Phoros; Hiermas, and Eddias, and Melchias, and Maelus, and Eleazar, and Asibias, and Baanias. + +Of the sons of Ela; Matthanias, Zacharias, and Hierielus, and Hieremoth, and Aedias. + +And of the sons of Zamoth; Eliadas, Elisimus, Othonias, Jarimoth, and Sabatus, and Sardeus. + +Of the sons of Babai; Johannes, and Ananias and Josabad, and Amatheis. + +Of the sons of Mani; Olamus, Mamuchus, Jedeus, Jasubus, Jasael, and Hieremoth. + +And of the sons of Addi; Naathus, and Moosias, Lacunus, and Naidus, and Mathanias, and Sesthel, Balnuus, and Manasseas. + +And of the sons of Annas; Elionas and Aseas, and Melchias, and Sabbeus, and Simon Chosameus. + +And of the sons of Asom; Altaneus, and Matthias, and Baanaia, Eliphalet, and Manasses, and Semei. + +And of the sons of Maani; Jeremias, Momdis, Omaerus, Juel, Mabdai, and Pelias, and Anos, Carabasion, and Enasibus, and Mamnitanaimus, Eliasis, Bannus, Eliali, Samis, Selemias, Nathanias: and of the sons of Ozora; Sesis, Esril, Azaelus, Samatus, Zambis, Josephus. + +And of the sons of Ethma; Mazitias, Zabadaias, Edes, Juel, Banaias. + +All these had taken strange wives, and they put them away with their children. + +And the priests and Levites, and they that were of Israel, lived in Jerusalem, and in the country, in the first day of the seventh month: so the children of Israel were in their habitations. + +And the whole multitude came together with one accord into the broad place of the holy porch toward the east: + +And they spoke to Esdras the priest and reader, that he would bring the law of Moses, that was given of the Lord God of Israel. + +So Esdras the chief priest brought the law to the whole multitude from man to woman, and to all the priests, to hear law in the first day of the seventh month. + +And he read in the broad court before the holy porch from morning to midday, before both men and women; and the multitude gave heed to the law. + +And Esdras the priest and reader of the law stood up upon a pulpit of wood, which was made for that purpose. + +And there stood up by him Mattathias, Sammus, Ananias, Azarias, Urias, Ezecias, Balasamus, upon the right hand: + +And upon his left hand stood Phaldaius, Misael, Melchias, Lothasubus, and Nabarias. + +Then took Esdras the book of the law before the multitude: for he sat honorably in the first place in the sight of them all. + +And when he opened the law, they stood all straight up. So Esdras blessed the Lord God most High, the God of hosts, Almighty. + +And all the people answered, Amen; and lifting up their hands they fell to the ground, and worshipped the Lord. + +Also Jesus, Anus, Sarabias, Adinus, Jacubus, Sabateas, Auteas, Maianeas, and Calitas, Azarias, and Joazabdus, and Ananias, Biatas, the Levites, taught the law of the Lord, making them withal to understand it. + +Then spoke Attharates to Esdras the chief priest. and reader, and to the Levites that taught the multitude, even to all, saying, + +This day is holy to the Lord; (for they all wept when they heard the law:) + +Go then, and eat the fat, and drink the sweet, and send part to them that have nothing; + +For this day is holy to the Lord: and be not sorrowful; for the Lord will bring you to honor. + +So the Levites published all things to the people, saying, This day is holy to the Lord; be not sorrowful. + +Then they went their way, every one to eat and drink, and make merry, and to give part to them that had nothing, and to make great cheer; + +Because they understood the words wherein they were instructed, and for the which they had been assembled. + +

+
+ +Prayer of Manasses +PRAYER OF MANASSES +Prayer of Manasses +MAN +

PRAYER OF MANASSES +

+ + +

O LORD Almighty, the God of our fathers Abraham and Isaac and Jacob and of their righteous seed; + +that have made the heaven and the earth with all their adornment; + +that have bound the sea with the word of your commandment; that have closed the abyss and sealed it with your fearful and glorious name; + +whom all things revere and tremble before the face of your power, + +because the magnificence of your glory is unendurable and irresistible the wrath of your threatening against sinners: + +the mercy of your promise is both immeasurable and inscrutable; + +for you are the Lord most high, compassionate, longsuffering, and most merciful, repenting of the evils of men. You, Lord, according to the abundance of your goodness, have proclaimed repentance and forgiveness to those that have sinned against you, and in the multitude of your kindnesses you have decreed for sinners repentance to salvation. + +Surely you, O Lord, the God of the just, have not appointed repentance for the just, for Abraham and Isaac and Jacob who have not sinned against you; but you have appointed repentance for me a sinner: + +for I have sinned above the number of the sand of the sea. My transgressions are multiplied, O Lord, they are multiplied, and I am not worthy to look at or see the height of heaven, for the multitude of my iniquities, + +being bowed down by many iron bonds, so that I can’t uplift my head, and there is no release for me, because I have provoked your anger, and have done evil before you, not doing your will, nor keeping your commandments, but setting up abominations and multiplying offenses. + +And now I bend the knee of my heart, beseeching your goodness: + +I have sinned, Lord, I have sinned, and I acknowledge my transgressions: + +but I pray and beseech you, release me, Lord, release me, and destroy me not with my transgressions; keep not evils for me in anger for ever, nor condemn me to the lowest parts of the earth: because you are God, the God of the repenting; and in me you will show all your benevolence, for that me unworthy you will save, according to your great mercy: + +and I will praise you continually all the days of my life: for all the hosts of the heavens sings to you, and your is the glory for ever and ever. Amen. + +

+
+ +3 Maccabees +III MACCABEES +3 Maccabees +3MA +

III MACCABEES +

+ + +

Now Philopater, on learning from those who came back that Antiochus had made himself master of the places which belonged to himself, sent orders to all his footmen and horsemen, took with him his sister Arsinoe, and marched out as far as the parts of Raphia, where Antiochus and his forces encamped. + +And one Theodotus, intending to carry out his design, took with him the bravest of the armed men who had been before committed to his trust by Ptolemy, and got through at night to the tent of Ptolemy, to kill him on his own responsibility, and so to end the war. + +But Dositheus, called the son of Drimulus, by birth a Jew, afterward a renegade from the laws and observances of his country, conveyed Ptolemy away, and made an obscure person lie down in his stead in the tent. It befell this man to receive the fate which was meant for the other. + +A fierce battle then took place; and the men of Antiochus prevailing, Arsinoe continually went up and down the ranks, and with dishevelled hair, with tears and entreaties, begged the soldiers to fight manfully for themselves, their children, and wives; and promised that if they proved conquerors, she would give them two minas of gold apiece. + +It thus fell out that their enemies were defeated in hand-to-hand encounter, and that many of them were taken prisoners. + +Having vanquished this attempt, the king then decided to proceed to the neighbouring cities, and encourage them. + +By doing this, and by making donations to their temples, he inspired his subjects with confidence. + +The Jews sent some of their council and of their elders to him. The greetings, guest-gifts, and congratulations of the past, bestowed by them, filled him with the greater eagerness to visit their city. + +Having arrived at Jerusalem, sacrificed, and offered thank-offerings to the Greatest God, and done whatever else was suitable to the sanctity of the place, and entered the inner court, + +he was so struck with the magnificence of the place, and so wondered at the orderly arrangements of the temple, that he considered entering the sanctuary itself. + +And when they told him that this was not permissible, none of the nation, no, nor even the priests in general, but only the supreme high priest of all, and he only once in a year, being allowed to go in, he would by no means give way. + +Then they read the law to him; but he persisted in obtruding himself, exclaiming, that he ought to be allowed: and saying Be it that they were deprived of this honor, I ought not to be. + +And he put the question, Why, when he entered all the temples, none of the priests who were present forbad him? + +He was thoroughly answered by some one, That he did wrong to boast of this. + +Well; since I have done this, said he, be the cause what it may, shall I not enter with or without your consent? + +And when the priests fell down in their sacred vestments imploring the Greatest God to come and help in time of need, and to avert the violence of the fierce aggressor, and when they filled the temple with lamentations and tears, + +then those who had been left behind in the city were scared, and rushed forth, uncertain of the event. + +Virgins, who had been shut up within their chambers, came out with their mothers, scattering dust and ashes on their heads, and filling the streets with outcries. + +Women, but recently separated off, left their bridal chambers, left the reserve that befitted them, and ran about the city in a disorderly manner. + +New-born babes were deserted by the mothers or nurses who waited upon them; some here, some there, in houses, or in fields; these now, with an ardour which could not be checked, swarmed into the Most High temple. + +Various were the prayers offered up by those who assembled in this place, on account of the unholy attempt of the king. + +Along with these there were some of the citizens who took courage, and would not submit to his obstinacy, and his intention of carrying out his purpose. + +Calling out to arms, and to die bravely in defence of the law of their fathers, they created a great uproar in the place, and were with difficulty brought back by the aged and the elders to the station of prayer which they had occupied before. + +During this time the multitude kept on praying. + +The elders who surrounded the king strove in many ways to divert his haughty mind from the design which he had formed. + +He, in his hardened mood, insensible to all persuasion, was going onwards with the view of carrying out this design. + +Yet even his own officers, when they saw this, joined the Jews in an appeal to Him who has all power, to aid in the present crisis, and not wink at such overweening lawlessness. + +Such was the frequency and the vehemence of the cry of the assembled crowd, that an indescribable noise ensued. + +Not the men only, but the very walls and floor seemed to sound forth; all things preferring dissolution rather than to see the place defiled. + +

+ + +

Now was it that the high priest Simon bowed his knees over against the holy place, and spread out his hands in reverent form, and uttered the following supplication: + +O Lord, Lord, King of the heavens, and Ruler of the whole creation, Holy among the holy, sole Governor, Almighty, give ear to us who are oppressed by a wicked and profane one, who exults in his confidence and strength. + +It is you, the Creator of all, the Lord of the universe, who are a righteous Governor, and judge all who act with pride and insolence. + +It was you who did destroy the former workers of unrighteousness, among whom were the giants, who trusted in their strength and hardihood, by covering them with a measureless flood. + +It was you who did make the Sodomites, those workers of exceeding iniquity, men notorious for their vices, an example to after generations, when you did cover them with fire and brimstone. + +You did make known your power when you caused the bold Pharaoh, the enslaver of your people, to pass through the ordeal of many and diverse inflictions. + +And you rolled the depths of the sea over him, when he made pursuit with chariots, and with a multitude of followers, and gave a safe passage to those who put their trust in you, the Lord of the whole creation. + +These saw and felt the works of your hands, and praised you the Almighty. + +You, O King, when you created the illimitable and measureless earth, did choose out this city: you did make this place sacred to your name, albeit you need nothing: you did glorify it with your illustrious presence, after constructing it to the glory of your great and honorable name. + +And you did promise, out of love to the people of Israel, that should we fall away from you, and become afflicted, and then come to this house and pray, you would hear our prayer. + +Verily you are faithful and true. + +And when you did often aid our fathers when hard pressed, and in low estate, and delivered them out of gret dangers, + +see now, holy King, how through our many and great sins we are borne down, and made subject to our enemies, and are become weak and powerless. + +We being in this low condition, this bold and profane man seeks to dishonor this your holy place, consecrated out of the earth to the name of your Majesty. + +Your dwelling place, the heaven of heavens, is indeed unapproachable to men. + +But since it seemed good to you to exhibit your glory among your people Israel, you did sanctify this place. + +Punish us not by means of the uncleanness of their men, nor chastise us by means of their profanity; lest the lawless ones should boast in their rage, and exult in exuberant pride of speech, and say, + +We have trampled upon the holy house, as idolatrous houses are trampled upon. + +Blot out our iniquities, and do away with our errors, and show forth your compassion in this hour. + +Let your mercies quickly go before us. Grant us peace, that the cast down and broken hearted may praise you with their mouth. + +At that time God, who sees all things, who is beyond all Holy among the holy, heard that prayer, so suitable; and scourged the man greatly uplifted with scorn and insolence. + +Shaking him to and fro as a reed is shaken with the wind, he cast him upon the pavement, powerless, with limbs paralyzed; by a righteous judgment deprived of the faculty of speech. + +His friends and bodyguards, beholding the swift recompense which had suddenly overtaken him, struck with exceeding terror, and fearing that he would die, speedily removed him. + +When in course of time he had come to himself, this severe check caused no repentance within him, but he departed with bitter threatenings. + +He proceeded to Egypt, grew worse in wickedness through his before mentioned companions in wine, who were lost to all goodness; + +and not satisfied with countless acts of impiety, his audacity so increased that he raised evil reports there, and many of his friends, watching his purpose attentively, joined in furthering his will. + +His purpose was to indict a public stigma upon our race; therefore he erected a pillar at the tower-porch, and caused the following inscription to be engraved upon it: + +That entrance to their own temple was to be refused to all those who would not sacrifice; that all the Jews were to be registered among the common people; that those who resisted were to be forcibly seized and put to death; + +that those who were thus registered, were to be marked on their persons by the ivy-leaf symbol of Dionysus, and to be set apart with these limited rights. + +To do away with the appearance of hating them all, he had it written underneath, that if any of them should elect to enter the community of those initiated in the rites, these should have equal rights with the Alexandrians. + +Some of those who were over the city, therefore, abhorring any approach to the city of piety, unhesitatingly gave in to the king, and expected to derive some great honor from a future connection with him. + +A nobler spirit, however, prompted the majority to cling to their religious observances, and by paying money that they might live unmolested, these sought to escape the registration: + +cheerfully looking forward to future aid, they abhorred their own apostates, considering them to be national foes, and debarring them from the common usages of social intercourse. + +

+ + +

On discovering this, so incensed was the wicked king, that he no longer confined his rage to the Jews in Alexandria. Laying his hand more heavily upon those who lived in the country, he gave orders that they should be quickly collected into one place, and most cruelly deprived of their lives. + +While this was going on, an invidious rumour was uttered abroad by men who had banded together to injure the Jewish race. The purport of their charge was, that the Jews kept them away from the ordinances of the law. + +Now, while the Jews always maintained a feeling of un-swerving loyalty towards the kings, + +yet, as they worshipped God, and observed his law, they made certain distinctions, and avoided certain things. Hence some persons held them in odium; + +although, as they adorned their conversation with works of righteousness, they had established themselves in the good opinion of the world. + +What all the rest of mankind said, was, however, made of no account by the foreigners; + +who said much of the exclusiveness of the Jews with regard to their worship and meats; they alleged that they were men unsociable, hostile to the king's interests, refusing to associate with him or his troops. By this way of speaking, they brought much odium upon them. + +Nor was this unexpected uproar and sudden conflux of people unobserved by the Greeks who lived in the city, concerning men who had never harmed them: yet to aid them was not in their power, since all was oppression around; but they encouraged them in their troubles, and expected a favourable turn of affairs: + +He who knows all things, will not, +said they, disregard so great a people. + +Some of the neighbors, friends, and fellow dealers of the Jews, even called them secretly to an interview, pledged them their assistance, and promised to do their very utmost for them. + +Now the king, elated with his prosperous fortune, and not regarding the superior power of God, but thinking to persevere in his present purpose, wrote the following letter to the prejudice of the Jews. + +King Ptolemy Philopater, to the commanders and soldiers in Egypt, and in all places, health and happiness! + +I am right well; and so, too, are my affairs. + +Since our Asiatic campaign, the particulars of which you⌃ know, and which by the aid of the gods, not lightly given, and by our own vigour, has been brought to a successful issue according to our expectation, + +we resolved, not with strength of spear, but with gentleness and much humanity, as it were to nurse the inhabitants of Coele-Syria and Phoenicia, and to be their willing benefactors. + +So, having bestowed considerable sums of money upon the temples of the several cities, we proceeded even as far as Jerusalem; and went up to honor the temple of these wretched beings who never cease from their folly. + +To outward appearance they received us willingly; but belied that appearance by their deeds. When we were eager to enter their temple, and to honor it with the most beautiful and exquisite gifts, + +they were so carried away by their old arrogance, as to forbid us the entrance; while we, out of our forbearance toward all men, refrained from exercising our power upon them. + +And thus, exhibiting their enmity against us, they alone among the nations lift up their heads against kings and benefactors, as men unwilling to submit to any thing reasonable. + +We then, having endeavoured to make allowance for the madness of these persons, and on our victorious return treating all people in Egypt courteously, acted in a manner which was befitting. + +Accordingly, bearing no ill-will against their kinsmen +at Jerusalem, but rather remembering our connection with them, and the numerous matters with sincere heart from a remote period entrusted to them, we wished to venture a total alteration of their state, by bestowing upon them the rights of citizens of Alexandria, and to admit them to the everlasting rites of our solemnities. + +All this, however, they have taken in a very different spirit. With their innate malignity, they have spurned the fair offer; and constantly inclining to evil, + +have rejected the inestimable rights. Not only so, but by using speech, and by refraining from speech, they abhor the few among them who are heartily disposed towards us; ever deeming that their ignoble course of procedure will force us to do away with our reform. + +Having then, received certain proofs that these +Jews bear us every sort of ill-will, we must look forward to the possibility of some sudden tumult among ourselves, when these impious men may turn traitors and barbarous enemies. + +As soon, therefore, as the contents of this letter become known to you, in that same hour we order those +Jews who dwell among you, with wives and children, to be sent to us, vilified and abused, in chains of iron, to undergo a death, cruel and ignominious, suitable to men disaffected. + +For by the punishment of them in one body we perceive that we have found the only means of establishing our affairs for the future on a firm and satisfactory basis. + +Whosoever shall shield a Jew, whether it be old man, child, or suckling, shall with his whole house be tortured to death. + +Whoever shall inform against the +Jews, besides receiving the property of the person charged, shall be presented with two thousand drachmas from the royal treasury, shall be made free, and shall be crowned. + +Whatever place shall shelter a Jew, shall, when he is hunted forth, be put under the ban of fire, and be for ever rendered useless to every living being for all time to come. + +Such was the purport of the king's letter. + +

+ + +

Wherever this decree was received, the people kept up a revelry of joy and shouting; as if their long-pent-up, hardened hatred, were now to show itself openly. + +The Jews suffered great throes of sorrow, and wept much; while their hearts, all things around being lamentable, were set on fire as they bewailed the sudden destruction which was decreed against them. + +What home, or city, or place at all inhabited, or what streets were there, which their condition did not fill with wailing and lamentation? + +They were sent out unanimously by the generals in the several cities, with such stern and pitiless feeling, that the exceptional nature of the infliction moved even some of their enemies. These, influenced by sentiments of common humanity, and reflecting upon the uncertain issue of life, shed tears at this their miserable expulsion. + +A multitude of aged hoary-haired old men, were driven along with halting bending feet, urged onward by the impulse of a violent, shameless force to quick speed. + +Girls who had entered the bridal chamber quite lately, to enjoy the partnership of marriage, exchanged pleasure for misery; and with dust scattered upon their myrrh-anointed heads, were hurried along unveiled; and, in the midst of outlandish insults, set up with one accord a lamentable cry in lieu of the marriage hymn. + +Bound, and exposed to public gaze, they were hurried violently on board ship. + +The husbands of these, in the prime of their youthful vigour, instead of crowns wore halters round their necks; instead of feasting and youthful jollity, spent the rest of their nuptial days in wailings, and saw only the grave at hand. + +They were dragged along by unyielding chains, like wild beasts: of these, some had their necks thrust into the benches of the rowers; while the feet of others were enclosed in hard fetters. + +The planks of the deck above them barred out the light, and shut out the day on every side, so that they might be treated like traitors during the whole voyage. + +They were conveyed accordingly in this vessel, and at the end of it arrived at Schedia. The king had ordered them to be cast into the vast hippodrome, which was built in front of the city. This place was well adapted by its situation to expose them to the gaze of all comers into the city, and of those who went from the city into the country. Thus they could hold no communication with his forces; nay, were deemed unworthy of any civilized accommodation. + +When this was done, the king, hearing that their brethren in the city often went out and lamented the melancholy distress of these victims, + +was full of rage, and commanded that they should be carefully subjected to the same (and not one whit milder) treatment. + +The whole nation was now to be registered. Every individual was to be specified by name; not for that hard servitude of labor which we have a little before mentioned, but that he might expose them to the before-mentioned tortures; and finally, in the short space of a day, might extirpate them by his cruelties. + +The registering of these men was carried on cruelly, zealously, assiduously, from the rising of the sun to its going down, and was not brought to an end in forty days. + +The king was filled with great and constant joy, and celebrated banquets before the temple idols. His erring heart, far from the truth, and his profane mouth, gave glory to idols, deaf and incapable of speaking or aiding, and uttered unworthy speech against the Greatest God. + +At the end of the above-mentioned interval of time, the registrars brought word to the king that the multitude of the Jews was too great for registration, + +inasmuch as there were many still left in the land, of whom some were in inhabited houses, and others were scattered about in various places; so that all the commanders in Egypt were insufficient for the work. + +The king threatened them, and charged them with taking bribes, in order to contrive the escape of the Jews: but was clearly convinced of the truth of what had been said. + +They said, and proved, that paper and pens had failed them for the carrying out of their purpose. + +Now this was an active interference of the unconquerable Providence which assisted the Jews from heaven. + +

+ + +

Then he called Hermon, who had charge of the elephants. Full of rage, altogether fixed in his furious design, + +he commanded him, with a quantity of unmixed wine and handfuls of incense +infused to drug the elephants early on the following day. These five hundred elephants were, when infuriated by the copious draughts of frankincense, to be led up to the execution of death upon the Jews. + +The king, after issuing these orders, went to his feasting, and gathered together all those of his friends and of the army who hated the Jews the most. + +The master of the elephants, Hermon, fulfilled his commission punctually. + +The underlings appointed for the purpose went out about eventide and bound the hands of the miserable victims, and took other precautions for their security at night, thinking that the whole race would perish together. + +The heathen believed the Jews to be destitute of all protection; for chains fettered them about. + +they invoked the Almighty Lord, and ceaselessly implored with tears their merciful God and Father, Ruler of all, Lord of every power, + +to overthrow the evil purpose which was gone out against them, and to deliver them by extraordinary manifestation from that death which was in store for them. + +Their litany so earnest went up to heaven. + +Then Hermon, who had filled his merciless elephants with copious draughts of mingled wine and frankincense, came early to the palace to certify the kind thereof. + +He, however, who has sent his good creature sleep from all time by night or by day thus gratifying whom he wills, diffused a portion thereof now upon the king. + +By this sweet and profound influence of the Lord he was held fast, and thus his unjust purpose was quite frustrated, and his unflinching resolve greatly falsified. + +But the Jews, having escaped the hour which had been fixed, praised their holy God, and again prayed him who is easily reconciled to display the power of his powerful hand to the overweening Gentiles. + +The middle of the tenth hour had well near arrived, when the master-bidder, seeing the guests who were bidden collected, came and shook the king. + +He gained his attention with difficulty, and hinting that the mealtime was getting past, talked the matter over with him. + +The king listened to this, and then turning aside to his potations, commanded the guests to sit down before him. + +This done, he asked them to enjoy themselves, and to indulge in mirth at this somewhat late hour of the banquet. + +Conversation grew on, and the king sent for Hermon, and enquired of him, with fierce denunciations, why the Jews had been allowed to outlive that day. + +Hermon explained that he had done his bidding over night; and in this he was confirmed by his friends. + +The king, then, with a barbarity exceeding that of Phalaris, said, That they might thank his sleep of that day. Lose no time, and get ready the elephants against tomorrow, as you did before, for the destruction of these accursed Jews. + +When the king said this, the company present were glad, and approved; and then each man went to his own home. + +Nor did they employ the night in sleep, so much as in contriving cruel mockeries for those deemed miserable. + +The morning cock had just crowed, and Hermon, having harnessed the brutes, was stimulating them in the great colonnade. + +The city crowds were collected together to see the hideous spectacle, and waited impatiently for the dawn. + +The Jews, breathless with momentary suspense, stretched forth their hands, and prayed the Greatest God, in mournful strains, again to help them speedily. + +The sun's rays were not yet shed abroad, and the king was waiting for his friends, when Hermon came to him, calling him out, and saying, That his desires could now be realized. + +The king, receiving him, was astonished at his unwonted exit; and, overwhelmed with a spirit of oblivion about everything, enquired the object of this earnest preparation. + +But this was the working of that Almighty God who had made him forget all his purpose. + +Hermon, and all his friends, pointed out the preparation of the animals. They are ready, O king, according to your own strict injunction. + +The king was filled with fierce anger at these words; for, by the Providence of God regarding these things, his mind had become entirely confused. He looked hard at Hermon, and threatened him as follows: + +Your parents, or your children, were they here, to these wild beasts a large repast they should have furnished; not these innocent Jews, who me and my forefathers loyally have served. + +Had it not been for familiar friendship, and the claims of your office, your life should have gone for theirs. + +Hermon, being threatened in this unexpected and alarming manner, was troubled in visage, and depressed in countenance. + +The friends, too, stole out one by one, and dismissed the assembled multitudes to their respective occupations. + +The Jews, having heard of these events, praised the glorious God and King of kings, because they had obtained this help, too, from him. + +Now the king arranged another banquet after the same manner, and proclaimed an invitation to mirth. + +And he summoned Hermon to his presence, and said, with threats, How often, O wretch, must I repeat my orders to you about these same persons? + +Once more, arm the elephants against the morrow for the extermination of the Jews. + +His kinsmen, who were reclining with him, wondered at his instability, and thus expressed themselves: + +O king, how long do you make trial of us, as of men bereft of reason? This is the third time that you have ordered their destruction. When the thing is to be done, you change your mind, and recall your instructions. + +For this cause the feeling of expectation causes tumult in the city: it swarms with factions; and is continually on the point of being plundered. + +The king, just like another Phalaris, a prey to thoughtlessness, made no account of the changes which his own mind had undergone, issuing in the deliverance of the Jews. He swore a fruitless oath, and determined forthwith to send them to hades, crushed by the knees and feet of the elephants. + +He would also invade Judea, and level its towns with fire and the sword; and destroy that temple which the heathen might not enter, and prevent sacrifices ever after being offered up there. + +Joyfully his friends broke up, together with his kinsmen; and, trusting in his determination, arranged their forces in guard at the most convenient places of the city. + +And the master of the elephants urged the beasts into an almost maniacal state, drenched them with incense and wine, and decked them with frightful instruments. + +About early morning, when the city was now filled with an immense number of people at the hippodrome, he entered the palace, and called the king to the business in hand. + +The king's heart teemed with impious rage; and he rushed forth with the mass, along with the elephants. With feelings unsoftened, and eyes pitiless, he longed to gaze at the hard and wretched doom of the above-mentioned +Jews. + +But the +Jews, when the elephants went out at the gate, followed by the armed force; and when they saw the dust raised by the throng, and heard the loud cries of the crowd, + +thought that they had come to the last moment of their lives, to the end of what they had tremblingly expected. They gave way, therefore, to lamentations and moans: they kissed each other: those nearest of kin to each other hung about one another's necks: fathers about their sons, mother their daughters: other women held their infants to their breasts, which drew what seemed their last milk. + +Nevertheless, when they reflected upon the succour before granted them from heaven, they prostrated themselves with one accord; removed even the sucking children from the breasts, and + +sent up an exceeding great cry entreating the Lord of all power to reveal himself, and have mercy upon those who now lay at the gates of hades. + +

+ + +

And Eleazar, an illustrious priest of the country, who had attained to length of days, and whose life had been adorned with virtue, caused the presbyters who were about him to cease to cry out to the holy God, and prayed thus: + +O king, mighty in power, most high, Almighty God, who regulates the whole creation with your tender mercy, + +look upon the seed of Abraham, upon the children of the sanctified Jacob, your sanctified inheritance, O Father, now being wrongfully destroyed as strangers in a strange land. + +You destroyed Pharaoh, with his hosts of chariots, when that lord of this same Egypt was uplifted with lawless hardihood and loud-sounding tongue. Shedding the beams of your mercy upon the race of Israel, you did overwhelm him with his proud army. + +When Sennacherim, the grievous king of the Assyrians, glorying in his countless hosts, had subdued the whole land with his spear, and was lifting himself against your holy city, with boastings grievous to be endured, you, O Lord, did demolish him and did show forth your might to many nations. + +When the three friends in the land of Babylon of their own will exposed their lives to the fire rather than serve vain things, you did send a dewy coolness through the fiery furnace, and bring the fire upon all their adversaries. + +It was you who, when Daniel was hurled, through slander and envy, as a prey to lions down below, did bring him back against unhurt to light. + +When Jonah was pining away in the belly of the sea-bred monster, you did look upon him, O Father, and recover him to the sight of his own. + +And now, you who hate insolence; you who do abound in mercy; you who are the protector of all things; appear quickly to those of the race of Israel, who are insulted by abhorred, lawless gentiles. + +If our life has during our exile been stained with iniquity, deliver us from the hand of the enemy, and destroy us, O Lord, by the death which you prefer. + +Let not the vain-minded congratulate vain idols at the destruction of your beloved, saying, Neither did their god deliver them. + +You, who are All-powerful and Almighty, O Eternal One, behold! have mercy upon us who are being withdrawn from life, like traitors, by the unreasoning insolence of lawless men. + +Let the heathen cower before your invincible might today, O glorious One, who have all power to save the race of Jacob. + +The whole band of infants and their parents with tears beseech you. + +Let it be shown to all the nations that you are with us, O Lord, and have not turned your face away from us; but as you said that you would not forget them even in the land of their enemies, so do you fulfil this saying, O Lord. + +Now, at the time that Eleazar had ended his prayer, the king came along to the hippodrome, with the wild beasts, and with his tumultuous power. + +When the Jews saw this, they uttered a loud cry to heaven, so that the adjacent valleys resounded, and caused an irrepressible lamentation throughout the army. + +Then the all-glorious, all-powerful, and true God, displayed his holy countenance, and opened the gates of heaven, from which two angels, dreadful of form, came down and were visible to all but the Jews. + +And they stood opposite, and filled the enemies' host with confusion and cowardice; and bound them with immoveable fetters. + +And a cold shudder came over the person of the king, and oblivion paralysed the vehemence of his spirit. + +They turned back the animals upon the armed forces which followed them; and the animals trod them down, and destroyed them. + +The king's wrath was converted into compassion; and he wept at his own machinations. + +For when he heard the cry, and saw them all on the verge of destruction, with tears he angrily threatened his friends, saying, + +You⌃ have governed badly; and have exceeded tyrants in cruelty; and me your benefactor you⌃ have laboured to deprive at once of my dominion and my life, by secretly devising measures injurious to the kingdom. + +Who has gathered here, unreasonably removing each from his home, those who, in fidelity to us, had held the fortresses of the country? + +Who has thus consigned to unmerited punishments those who in good will towards us from the beginning have in all things surpassed all nations, and who often have engaged in the most dangerous undertakings? + +Loose, loose the unjust bonds; send them to their homes in peace, and deprecate what has been done. + +Release the sons of the almighty living God of heaven, who from our ancestors' times until now has granted a glorious and uninterrupted prosperity to our affairs. + +These things he said; and they, released the same moment, having now escaped death, praised God their holy Saviour. + +The king then departed to the city, and called his financier to him, and bade him provide a seven days' quantity of wine and other materials for feasting for the Jews. He decided that they should keep a gladsome festival of deliverance in the very place in which they expected to meet with their destruction. + +Then they who were before despised and near to hades, yes, rather advanced into it, partook of the cup of salvation, instead of a grievous and lamentable death. Full of exultation, they parted out the place intended for their fall and burial into banqueting booths. + +Ceasing their miserable strain of woe, they took up the subject of their fatherland, hymning in praise God their wonder-working Saviour. All groans, all wailing, were laid aside: they formed dances in token of serene joy. + +So, also, the king collected a number of guests for the occasion, and returned unceasing thanks with much magnificence for the unexpected deliverance afforded him. + +Those who had marked them out as for death and for carrion, and had registered them with joy, howled aloud, and were clothed with shame, and had the fire of their rage ingloriously put out. + +But the Jews, as we just said, instituted a dance, and then gave themselves up to feasting, glad thanksgivings, and psalms. + +They made a public ordinance to commemorate these things for generations to come, as long as they should be sojourners. They thus established these days as days of mirth, not for the purpose of drinking or luxury, but because God had saved them. + +They requested the king to send them back to their homes. + +They were being enrolled from the twenty-fifth of Pachon to the fourth of Epiphi, a period of forty days: the measures taken for their destruction lasted from the fifth of Epiphi till the seventh, that is, three days. + +The Ruler over all did during this time manifest forth his mercy gloriously, and did deliver them all together unharmed. + +They feasted upon the king's provision up to the fourteenth day, and then asked to be sent away. + +The king commended them, and wrote the subjoined letter, of magnanimous import for them, to the commanders of every city. + +

+ + +

King Ptolemy Philopator to the commanders throughout Egypt, and to all who are set over affairs, joy and strength. + +We, too, and our children are well; and God has directed our affairs as we wish. + +Certain of our friends did of malice vehemently urge us to punish the Jews of our realm in a body, with the infliction of a monstrous punishment. + +They pretended that our affairs would never be in a good state till this took place. Such, they said, was the hatred borne by the Jews to all other people. + +They brought them fettered in grievous chains as slaves, nay, as traitors. Without enquiry or examination they endeavoured to annihilate them. They buckled themselves with a savage cruelty, worse than Scythian custom. + +For this cause we severely threatened them; yet, with the clemency which we are wont to extend to all men, we at length permitted them to live. Finding that the God of heaven cast a shield of protection over the Jews so as to preserve them, and that he fought for them as a father always fights for his sons; + +and taking into consideration their constancy and fidelity towards us and towards our ancestors, we have, as we ought, acquitted them of every sort of charge. + +And we have dismissed them to their several homes; bidding all men everywhere to do them no wrong, or unrighteously revile them about the past. + +For know you⌃, that should we conceive any evil design, or in any way aggrieve them, we shall ever have as our opposite, not man, but the highest God, the ruler of all might. From Him there will be no escape, as the avenger of such deeds. Fare you⌃ well. + +When they had received this letter, they were not forward to depart immediately. They petitioned the king to be allowed to inflict fitting punishment upon those of their race who had willingly transgressed the holy god, and the law of God. + +They alleged that men who had for their bellies' sake transgressed the ordinances of God, would never be faithful to the interests of the king. + +The king admitted the truth of this reasoning, and commended them. Full power was given them, without warrant or special commission, to destroy those who had transgressed the law of God boldly in every part of the king's dominions. + +Their priests, then, as it was meet, saluted him with good wishes, and all the people echoed with the Hallelujah. They then joyfully departed. + +Then they punished and destroyed with ignominy every polluted Jew that fell in their way; + +slaying thus, in that day, above three hundred men, and esteeming this destruction of the wicked a season of joy. + +They themselves having held fast their God to death, and having enjoyed a full deliverance, departed from the city garlanded with sweet-flowered wreaths of every kind. Uttering exclamations of joy, with songs of praise, and melodious hymns they thanked the God of their fathers, the eternal Saviour of Israel. + +Having arrived at Ptolemais, called from the specialty of that district Rose-bearing, where the fleet, in accordance with the general wish, waited for them seven days, + +they partook of a banquet of deliverance, for the king generously granted them severally the means of securing a return home. + +They were accordingly brought back in peace, while they gave utterance to becoming thanks; and they determined to keep these days during their sojourn as days of joyfulness. + +These they registered as sacred upon a pillar, when they had dedicated the place of their festivity to be one of prayer. They departed unharmed, free, abundant in joy, preserved by the king's command, by land, by sea, and by river, each to his own home. + +They had more weight than before among their enemies; and were honored and feared, and no one in any way robbed them of their goods. + +Every man received back his own, according to inventory; those who had obtained their goods, giving them up with the greatest terror. For the greatest God wrought with perfectness wonders for their salvation. + +Blessed be the Redeemer of Israel to everlasting. Amen. + +

+
+ +4 Maccabees +IV MACCABEES +4 Maccabees +4MA +

IV MACCABEES +

+ + +

As I am going to demonstrate a most philosophical proposition, namely, that religious reasoning is absolute master of the passions, I would willingly advise you to give the utmost heed to philosophy. + +For reason is necessary to every one as a step to science: and more especially does it embrace the praise of prudence, the highest virtue. + +If, then, reasoning appears to hold the mastery over the passions which stand in the way of temperance, such as gluttony and lust, + +it surely also and manifestly has the rule over the affections which are contrary to justice, such as malice; and of those which are hindrances to manliness, as wrath, and pain, and fear. + +How, then, is it, perhaps some may say, that reasoning, if it rule the affections, is not also master of forgetfulness and ignorance? They attempt a ridiculous argument. + +For reasoning does not rule over its own affections, but over such as are contrary to justice, and manliness and temperance, and prudence; and yet over these, so as to withstand, without destroying them. + +I might prove to you, from many other considerations, that religious reasoning is sole master of the passions; + +but I shall prove it with the greatest force from the fortitude of Eleazar, and seven brethren, and their mother, who suffered death in defence of virtue. + +For all these, contemning pains even to death, by this contempt, demonstrated that reasoning has command over the passions. + +For their virtues, then, it is right that I should commend those men who died with their mother at this time in behalf of rectitude; and for their honors, I may count them happy. + +For they, winning admiration not only from men in general, but even from the persecutors, for their manliness and endurance, became the means of the destruction of the tyranny against their nation, having conquered the tyrant by their endurance, so that by them their country was purified. + +But we may now at once enter upon the question, having commenced, as is our wont, with laying down the doctrine, and so proceed to the account of these persons, giving glory to the all wise God. + +The question, therefore, is, whether reasoning be absolute master of the passions. + +Let us determine, then, What is reasoning? and what passion? and how many forms of the passions? and whether reasoning bears sway over all of these? + +Reasoning is, then, intellect accompanied by a life of rectitude, putting foremost the consideration of wisdom. + +And wisdom is a knowledge of divine and human things, and of their causes. + +And this is contained in the education of the law; by means of which we learn divine things reverently, and human things profitably. + +And the forms of wisdom are prudence, and justice, and manliness, and temperance. + +The leading one of these is prudence; by whose means, indeed, it is that reasoning bears rule over the passions. + +Of the passions, pleasure and pain are the two most comprehensive; and they also by nature refer to the soul. + +And there are many attendant affections surrounding pleasure and pain. + +Before pleasure is lust; and after pleasure, joy. + +And before pain is fear; and after pain is sorrow. + +Wrath is an affection, common to pleasure and to pain, if any one will pay attention when it comes upon him. + +And there exists in pleasure a malicious disposition, which is the most multiform of all the affections. + +In the soul it is arrogance, and love of money, and vaingloriousness, and contention, and faithlessness, and the evil eye. + +In the body it is greediness and gormandizing, and solitary gluttony. + +As pleasure and pain are, therefore, two growth of the body and the soul, so there are many offshoots of these passions. + +And reasoning, the universal husbandman, purging, and pruning these severally, and binding round, and watering, and transplanting, in every way improves the materials of the morals and affections. + +For reasoning is the leader of the virtues, but it is the sole ruler of the passions. Observe then first, through the very things which stand in the way of temperance, that reasoning is absolute ruler of the passions. + +Now temperance consists of a command over the lusts. + +But of the lusts, some belong to the soul, others to the body: and over each of these classes the reasoning appears to bear sway. + +For whence is it, otherwise, that when urged on to forbidden meats, we reject the gratification which would ensue from them? Is it not because reasoning is able to command the appetites? I believe so. + +Hence it is, then, that when lusting after water-animals and birds, and four-footed beasts, and all kinds of food which are forbidden us by the law, we withhold ourselves through the mastery of reasoning. + +For the affections of our appetites are resisted by the temperate understanding, and bent back again, and all the impulses of the body are reined in by reasoning. + +

+ + +

And what wonder? if the lusts of the soul, after participation with what is beautiful, are frustrated, + +on this ground, therefore, the temperate Joseph is praised in that by reasoning, he subdued, on reflection, the indulgence of sense. + +For, although young, and ripe for sexual intercourse, he abrogated by reasoning the stimulus of his passions. + +And it is not merely the stimulus of sensual indulgence, but that of every desire, that reasoning is able to master. + +For instance, the law says, You shall not covet your neighbor's wife, nor anything that belongs to your neighbor. + +Now, then, since it is the law which has forbidden us to desire, I shall much the more easily persuade you, that reasoning is able to govern our lusts, just as it does the affections which are impediments to justice. + +Since in what way is a solitary eater, and a glutton, and a drunkard reclaimed, unless it be clear that reasoning is lord of the passions? + +A man, therefore, who regulates his course by the law, even if he be a lover of money, straightway puts force upon his own disposition; lending to the needy without interest, and cancelling the debt of the incoming sabbath. + +And should a man be parsimonious, he is ruled by the law acting through reasoning; so that he does not glean his harvest crops, nor vintage: and in reference to other points we may perceive that it is reasoning that conquers his passions. + +For the law conquers even affection toward parents, not surrendering virtue on their account. + +And it prevails over marriage love, condemning it when transgressing law. + +And it lords it over the love of parents toward their children, for they punish them for vice; and it domineers over the intimacy of friends, reproving them when wicked. + +And think it not a strange assertion that reasoning can in behalf of the law conquer even enmity. + +It allows not to cut down the cultivated herbage of an enemy, but preserves it from the destroyers, and collects their fallen ruins. + +And reason appears to be master of the more violent passions, as love of empire and empty boasting, and slander. + +For the temperate understanding repels all these malignant passions, as it does wrath: for it masters even this. + +Thus Moses, when angered against Dathan and Abiram, did nothing to them in wrath, but regulated his anger by reasoning. + +For the temperate mind is able, as I said, to be superior to the passions, and to transfer some, and destroy others. + +For why, else, does our most wise father Jacob blame Simeon and Levi for having irrationally slain the whole race of the Shechemites, saying, Cursed be their anger. + +For if reasoning did not possess the power of subduing angry affections, he would not have spoken thus. + +For at the time when God created man, He implanted within him his passions and moral nature. + +And at that time He enthroned above all the holy leader mind, through the medium of the senses. + +And He gave a law to this mind, by living according to which it will maintain a temperate, and just, and good, and manly reign. + +How, then, a man may say, if reasoning be master of the passions, has it no control over forgetfulness and ignorance? + +

+ + +

The argument is exceedingly ridiculous: for reasoning does not appear to bear sway over its own affections, but over those of the body, + +in such a way as that any one of you may not be able to root out desire, but reasoning will enable you to avoid being enslaved to it. + +One may not be able to root out anger from the soul, but it is possible to withstand anger. + +Any one of you may not be able to eradicate malice, but reasoning has force to work with you to prevent you yielding to malice. + +For reasoning is not an eradicator, but an antagonist of the passions. + +And this may be more clearly comprehended from the thirst of king David. + +For after David had been attacking the Philistines the whole day, he with the soldiers of his nation killed many of them; + +then when evening came, sweating and very weary, he came to the royal tent, about which the entire host of our ancestors was encamped. + +Now all the rest of them were at supper; + +but the king, being very much thirsty, although he had numerous springs, could not by their means quench his thirst; + +but a certain irrational longing for the water in the enemy's camp grew stronger and fiercer upon him, and consumed him with languish. + +Therefore his bodyguards being troubled at this longing of the king, two valiant young soldiers, reverencing the desire of the king, put on their panoplies, and taking a pitcher, got over the ramparts of the enemies: + +and unperceived by the guardians of the gate, they went throughout the whole camp of the enemy in quest. + +And having boldly discovered the fountain, they filled out of it the draught for the king. + +But he, though parched with thirst, reasoned that a draught reputed of equal value to blood, would be terribly dangerous to his soul. + +Therefore, setting up reasoning in opposition to his desire, he poured out the draught to God. + +For the temperate mind has power to conquer the pressure of the passions, and to quench the fires of excitement, + +and to wrestle down the pains of the body, however excessive; and, through the excellency of reasoning, to abominate all the assaults of the passions. + +But the occasion now invites us to give an illustration of temperate reasoning from history. + +For at a time when our fathers were in possession of undisturbed peace through obedience to the law, and were prosperous, so that Seleucus Nicanor, the king of Asia, both assigned them money for divine service, and accepted their form of government, + +then certain persons, bringing in new things contrary to the general unanimity, in various ways fell into calamities. + +

+ + +

For a certain man named Simon, who was in opposition to Onias, who once held the high priesthood for life, and was an honorable and good man, after that by slandering him in every way, he could not injure him with the people, went away as an exile, with the intention of betraying his country. + +Whence coming to Apollonius, the military governor of Syria, and Phoenicia, and Cilicia, he said, + +Having good will to the king's affairs, I am come to inform you that infinite private wealth is laid up in the treasuries of Jerusalem which do not belong to the temple, but pertain to king Seleucus. + +Apollonius, acquainting himself with the particulars of this, praised Simon for his care of the king's interests, and going up to Seleucus informed him of the treasure; + +and getting authority about it, and quickly advancing into our country with the accursed Simon and a very heavy force, + +he said that he came with the commands of the king that he should take the private money of the treasure. + +And the nation, indignant at this proclamation, and replying to the effect that it was extremely unfair that those who had committed deposits to the sacred treasury should be deprived of them, resisted as well as they could. + +But Appolonius went away with threats into the temple. + +And the priests, with the women and children, having supplicated God to throw his shield over the holy, despised place, + +and Appolonius going up with his armed force to the seizure of the treasure, —there appeared from heaven angels riding on horseback, all radiant in armor, filling them with much fear and trembling. + +And Apollonius fell half dead upon the court which is open to all nations, and extended his hands to heaven, and implored the Hebrews, with tears, to pray for him, and propitiate the heavenly host. + +For he said that he had sinned, so as to be consequently worthy of death; and that if he were saved, he would celebrate to all men the blessedness of the holy place. + +Onias the high priest, induced by these words, although for other reasons anxious that king Seleucus should not suppose that Apollonius was slain by human device and not by Divine punishment, prayed for him; + +and he being thus unexpectedly saved, departed to manifest to the king what had happened to him. + +But on the death of Seleucus the king, his son Antiochus Epiphanes succeeds to the kingdom: a man of haughty pride and terrible. + +Who having deposed Onias from the high priesthood, appointed his brother Jason to be high priest: + +who had made a covenant, if he would give him this authority, to pay yearly three thousand six hundred and sixty talents. + +And he committed to him the high priesthood and rulership over the nation. + +And he both changed the manner of living of the people, and perverted their civil customs into all lawlessness. + +So that he not only erected a gymnasium on the very citadel of our country, +but neglected the guardianship of the temple. + +At which Divine vengeance being grieved, instigated Antiochus himself against them. + +For being at war with Ptolemy in Egypt, he heard that on a report of his death being spread abroad, the inhabitants of Jerusalem had exceedingly rejoiced, and he quickly marched against them. + +And having subdued them, he established a decree that if any of them lived according to the laws of his country he should die. + +And when he could by no means destroy by his decrees the obedience to the law of the nation, but saw all his threats and punishments without effect, + +for even women, because they continued to circumcise their children, were flung down a precipice along with them, knowing beforehand of the punishment. + +When, therefore, his decrees were disregarded by the people, he himself compelled by means of tortures every one of this race, by tasting forbidden meats, to abjure the Jewish religion. + +

+ + +

The tyrant Antiochus, therefore, sitting in public state with his assessors upon a certain lofty place, with his armed troops standing in a circle around him, + +commanded his spearbearers to seize every one of the Hebrews, and to compel them to taste swine's flesh, and things offered to idols. + +And should any of them be unwilling to eat the accursed food, they were to be tortured on the wheel, and so killed. + +And when many had been seized, a foremost man of the assembly, a Hebrew, by name Eleazar, a priest by family, by profession a lawyer, and advanced in years, and for this reason known to many of the king's followers, was brought near to him. + +And Antiochus seeing him, said, + +I would counsel you, old man, before your tortures begin, to taste the swine's flesh, and save your life; for I feel respect for your age and hoary head, which since you have had so long, you appear to me to be no philosopher in retaining the superstition of the Jews. + +For therefore, since nature has conferred upon you the most excellent flesh of this animal, do you loathe it? + +It seems senseless not to enjoy what is pleasant, yet not disgraceful; and from notions of sinfulness, to reject the boons of nature. + +And you will be acting, I think, still more senselessly, if you follow vain conceits about the truth. + +And you will, moreover, be despising me to your own punishment. + +Will you not awake from your trifling philosophy? and give up the folly of your notions; and, regaining understanding worthy of your age, search into the truth of an expedient course? + +and, reverencing my kindly admonition, have pity upon your own years? + +For, bear in mind, that if there be any power which watches over this religion of yours, it will pardon you for all transgressions of the law which you commit through compulsion. + +While the tyrant incited him in this manner to the unlawful eating of flesh, Eleazar begged permission to speak. + +And having received power to speak, he began thus to deliver himself: + +We, O Antiochus, who are persuaded that we live under a divine law, consider no compulsion to be so forcible as obedience to that law; + +therefore we consider that we ought not in any point to transgress the law. + +And indeed, were our law (as you suppose) not truly divine, and if we wrongly think it divine, we should have no right even in that case to destroy our sense of religion. + +think not eating the unclean, then, a trifling offense. + +For transgression of the law, whether in small or great matters, is of equal moment; + +for in either case the law is equally slighted. + +But you deride our philosophy, as though we lived irrationally in it. + +Yet it instructs us in temperance, so that we are superior to all pleasures and lusts; and it exercises us in manliness, so that we cheerfully undergo every grievance. + +And it instructs us in justice, so that in all our dealings we render what is due; and it teaches us piety, so that we worship the one only God becomingly. + +Therefore it is that we eat not the unclean; for believing that the law was established by God, we are convinced that the Creator of the world, in giving his laws, sympathizes with our nature. + +Those things which are convenient to our souls, he has directed us to eat; but those which are repugnant to them, he has interdicted. + +But, tyrant-like, you not only force us to break the law, but also to eat, that you may ridicule us as we thus profanely eat: + +but you shall not have this cause of laughter against me; + +nor will I transgress the sacred oaths of my forefathers to keep the law. + +No, not if you pluck out my eyes, and consume my entrails. + +I am not so old, and void of manliness, but that my rational powers are youthful in defence of my religion. + +Now then; prepare your wheels, and kindle a fiercer flame. + +I will not so compassionate my old age, as on my account to break the law of my country. + +I will not belie you, O law, my instructor! or forsake you, O beloved self-control! + +I will not put you to shame, O philosopher Reason; or deny you, O honored priesthood, and science of the law. + +Mouth! you shall not pollute my old age, nor the full stature of a perfect life. + +My fathers shall receive me pure, not having quailed before your compulsion, though to death. + +For over the ungodly you shall tyrannize; but you shall not lord it over my thoughts about religion, either by your arguments, or through deeds. + +

+ + +

When Eleazar had in this manner answered the exhortations of the tyrant, the spearbearers came up, and rudely haled Eleazar to the instruments of torture. + +And first, they stripped the old man, adorned as he was with the comeliness of piety. + +Then tying back his arms and hands, they disdainfully used him with stripes; + +a herald opposite crying out, Obey the commands of the king. + +But Eleazar, the high-minded and truly noble, as one tortured in a dream, regarded it not all. + +But raising his eyes on high to heaven, the old man's flesh was stripped off by the scourges, and his blood streamed down, and his sides were pierced through. + +And falling upon the ground, from his body having no power to support the pains, he yet kept his reasoning upright and unbending. + +then one of the harsh spearbearers leaped upon his belly as he was falling, to force him upright. + +But he endured the pains, and despised the cruelty, and persevered through the indignities; + +and like a noble athlete, the old man, when struck, vanquished his torturers. + +His countenance sweating, and he panting for breath, he was admired by the very torturers for his courage. + +Therefore, partly in pity for his old age, + +partly from the sympathy of acquaintance, and partly in admiration of his endurance, some of the attendants of the king said, + +Why do you unreasonably destroy yourself, O Eleazar, with these miseries? + +We will bring you some meat cooked by yourself, and do you save yourself by pretending that you have eaten swine's flesh. + +And Eleazar, as though the advice more painfully tortured him, cried out, + +Let not us who are children of Abraham be so evil advised as by giving way to make use of an unbecoming pretense; + +for it were irrational, if having lived up to old age in all truth, and having scrupulously guarded our character for it, we should now turn back, + +and ourselves should become a pattern of impiety to the young, as being an example of pollution eating. + +It would be disgraceful if we should live on some short time, and that scorned by all men for cowardice, + +and be condemned by the tyrant for unmanliness, by not contending to the death for our divine law. + +Therefore do you, O children of Abraham, die nobly for your religion. + +You⌃ spearbearers of the tyrant, why do you⌃ linger? + +Beholding him so high-minded against misery, and not changing at their pity, they led him to the fire: + +then with their wickedly contrived instruments they burnt him on the fire, and poured stinking fluids down into his nostrils. + +And he being at length burnt down to the bones, and about to expire, raised his eyes Godward, and said, + +You know, O God, that when I might have been saved, I am slain for the sake of the law by tortures of fire. + +Be merciful to your people, and be satisfied with the punishment of me on their account. + +Let my blood be a purification for them, and take my life in recompense for theirs. + +Thus speaking, the holy man departed, noble in his torments, and even to the agonies of death resisted in his reasoning for the sake of the law. + +Confessedly, therefore, religious reasoning is master of the passions. + +For had the passions been superior to reasoning, I would have given them the witness of this mastery. + +But now, since reasoning conquered the passions, we befittingly awared it the authority of first place. + +And it is but fair that we should allow, that the power belongs to reasoning, since it masters external miseries. + +Ridiculous would it be were it not so; and I prove that reasoning has not only mastered pains, but that it is also superior to the pleasures, and withstands them. + +

+ + +

The reasoning of our father Eleazar, like a first-rate pilot, steering the vessel of piety in the sea of passions, + +and flouted by the threats of the tyrant, and overwhelmed with the breakers of torture, + +in no way shifted the rudder of piety till it sailed into the harbour of victory over death. + +Not so has ever a city, when besieged, held out against many and various machines, as did that holy man, when his pious soul was tried with the fiery trial of tortures and rackings, move his besiegers through the religious reasoning that shielded him. + +For father Eleazar, projecting his disposition, broke the raging waves of the passions as with a jutting promontory. + +O priest worthy of the priesthood! you did not pollute your sacred teeth; nor make your appetite, which had always embraced the clean and lawful, a partaker of profanity. + +O harmonizer with the law, and sage devoted to a divine life! + +Of such a character ought those to be who perform the duties of the law at the risk of their own blood, and defend it with generous sweat by sufferings even to death. + +You, father, have gloriously established our right government by your endurance; and making of much account our service past, prevented its destruction, and, by your deeds, have made credible the words of philosophy. + +O aged man of more power than tortures, elder more vigorous than fire, greatest king over the passions, Eleazar! + +For as father Aaron, armed with a censer, hastening through the consuming fire, vanquished the flame-bearing angel, + +so, Eleazar, the descendant of Aaron, wasted away by the fire, did not give up his reasoning. + +And, what is most wonderful, though an old man, though the labors of his body were now spent, and his fibres were relaxed, and his sinews worn out, he recovered youth. + +By the spirit of reasoning, and the reasoning of Isaac, he rendered powerless the many-headed instrument. + +O blessed old age, and reverend hoar head, and life obedient to the law, which the faithful seal of death perfected. + +If, then, an old man, through religion, despised tortures even to death, confessedly religious reasoning is ruler of the passions. + +But perhaps some might say, It is not all who conquer passions, as all do not possess wise reasoning. + +But they who have meditated upon religion with their whole heart, these alone can master the passions of the flesh; + +they who believe that to God they die not; for, as our forefathers, Abraham, Isaac, Jacob, they live to God. + +This circumstance, then, is by no means an objection, that some who have weak reasoning, are governed by their passions: + +since what person, walking religiously by the whole rule of philosophy, and believing in God, + +and knowing that it is a blessed thing to endure all kinds of hardships for virtue, would not, for the sake of religion, master his passion? + +For the wise and brave man only is lord over his passions. + +Whence it is, that even boys, imbued with the philosophy of religious reasoning, have conquered still more bitter tortures: + +for when the tyrant was manifestly vanquished in his first attempt, in being unable to force the old man to eat the unclean thing,- + +

+ + +

Then, indeed, vehemently swayed with passion, he commanded to bring others of the adult Hebrews, and if they would eat of the unclean thing, to let them go when they had eaten; but if they objected, to torment them more grievously. + +The tyrant having given this charge, seven brethren were brought into his presence, along with their aged mother, handsome, and modest, and well-born, and altogether comely. + +Whom, when the tyrant saw, encircling their mother as in a dance, he was pleased at them; and being struck with their becoming and ingenuous mien, smiled upon them, and calling them near, said: + +O youths, with favourable feelings, I admire the beauty of each of you; and greatly honouring so numerous a band of brethren, I not only counsel you not to share the madness of the old man who has been tortured before, + +but I do beg you to yield, and to enjoy my friendship; for I possess the power, not only of punishing those who disobey my commands, but of doing good to those who obey them. + +Put confidence in me, then, and you shall receive places of authority in my government, if you forsake your national ordinance, + +and, conforming to the Greek mode of life, alter your rule, and revel in youth's delights. + +For if you provoke me by your disobedience, you will compel me to destroy you, every one, with terrible punishments by tortures. + +Have mercy, then, upon your own selves, whom I, although an enemy, compassionate for your age and comeliness. + +Will you not reason upon this—that if you disobey, there will be nothing left for you but to die in tortures? + +Thus speaking, he ordered the instruments of torture to be brought forward, that very fear might prevail upon them to eat unclean meat. + +And when the spearman brought forward the wheels, and the racks, and the hooks, and catapults, and caldrons, pans, and finger-racks, and iron hands and wedges, and bellows, the tyrant continue: + +Fear, young men, and the righteousness which you⌃ worship will be merciful to you if you err from compulsion. + +Now they having listened to these words of persuasion, and seeing the fearful instruments, not only were not afraid, but even answered the arguments of the tyrant, and through their good reasoning destroyed his power. + +Now let us consider the matter: had any of them been weak-spirited and cowardly among them, what reasonings would they have employed but these? + +O wretched that we are, and exceeding senseless! when the king exhorts us, and calls us to his bounty, should we not obey him? + +Why do we cheer ourselves with vain counsels, and venture upon a disobedience bringing death? + +Shall we not fear, O brethren, the instruments of torture and weigh the threatenings of torment and shun this vain-glory and destructive pride? + +Let us have compassion upon our age and relent over the years of our mother. + +And let us bear in mind that we shall be dying as rebels. + +And Divine Justice will pardon us if we fear the king through necessity. + +Why withdraw ourselves from a most sweet life, and deprive ourselves of this pleasant world? + +Let us not oppose necessity, nor seek vain-glory by our own excruciation. + +The law itself is not forward to put us to death, if we dread torture. + +Whence has such angry zeal taken root in us, and such fatal obstinacy approved itself to us, when we might live unmolested by the king? + +But nothing of this kind did the young men say or think when about to be tortured. + +For they were well aware of the sufferings, and masters of the pains. So that as soon as the tyrant had ceased counselling them to eat the unclean, they altogether with one voice, as from the same heart said: + +

+ + +

Why delay you, O tyrant? for we are readier to die than to transgress the injunctions of our fathers. + +And we should be disgracing our fathers if we did not obey the law, and take knowledge for our guide. + +O tyrant, counsellor of law-breaking, do not, hating us as you do, pity us more than we pity ourselves. + +For we account escape to be worse than death. + +And you think to scare us, by threatening us with death by tortures, as though you had learned nothing by the death of Eleazar. + +But if aged men of the Hebrews have died in the cause of religion after enduring torture, more rightly should we younger men die, scorning your cruel tortures, which our aged instructor overcame. + +Make the attempt, then, O tyrant; and if you put us to death for our religion, think not that you harm us by torturing us. + +For we through this ill-treatment and endurance shall bear off the rewards of virtue. + +But you, for the wicked and despotic slaughter of us, shall, from the Divine vengeance, endure eternal torture by fire. + +When they had thus spoken, the tyrant was not only exasperated against them as being refractory, but enraged with them as being ungrateful. + +So that, at his bidding, the torturers brought forth the oldest of them, and tearing through his tunic, bound his hands and arms on each side with thongs. + +And when they had laboured hard without effect in scourging him, they hurled him upon the wheel. + +And the noble youth, extended upon this, became dislocated. + +And with every member disjointed, he exclaimed in expostulation, + +O most accursed tyrant, and enemy of heavenly justice, and cruel-hearted, I am no murderer, nor sacrilegious man, whom you thus ill-usest; but a defender of the Divine law. + +And when the spearmen said, Consent to eat, that you may be released from your tortures,— + +he answered, Not so powerful, O accursed ministers, is your wheel, as to stifle my reasoning; cut my limbs, and burn my flesh, and twist my joints. + +For through all my torments I will convince you that the children of the Hebrews are alone unconquered in behalf of virtue. + +While he was saying this, they heaped up fuel, and setting fire to it, strained him upon the wheel still more. + +And the wheel was defiled all over with blood, and the hot ashes were quenched by the droppings of gore, and pieces of flesh were scattered about the axles of the machine. + +And although the framework of his bones was now destroyed the high-minded and Abrahamic youth did not groan. + +But, as though transformed by fire into immortality, he nobly endured the rackings, saying + +Imitate me, O brethren, nor ever desert your station, nor abjure my brotherhood in courage: fight the holy and honorable fight of religion; + +by which means our just and paternal Providence, becoming merciful to the nation, will punish the pestilent tyrant. + +And saying this, the revered youth abruptly closed his life. + +And when all admired his courageous soul, the spearmen brought forward him who was second in point of age, and having put on iron hands, bound him with pointed hooks to the catapelt. + +And when, on enquiring whether he would eat before he was tortured, they heard his noble sentiment, + +after they with the iron hands had violently dragged all the flesh from the neck to the chin, the panther-like beasts tore off the very skin of his head: but he, bearing with firmness this misery, said, + +How sweet is every form of death for the religion of our fathers! and he said to the tyrant, + +Thinkest you not, most cruel of all tyrants, that you are now tortured more than I, finding your overweening conception of tyranny conquered by our patience in behalf of our religion? + +For I lighten my suffering by the pleasures which are connected with virtue. + +But you are tortured with threatenings for impiety; and you shall not escape, most corrupt tyrant, the vengeance of Divine wrath. + +

+ + +

Now this one, having endured this praiseworthy death, the third was brought along, and exhorted by many to taste and save his life. + +But he cried out and said, Know you⌃ not, that the father of those who are dead, became the father of me also; and that the same mother bare me; and that I was brought up in the same tenets? + +I abjure not the noble relationship of my brethren. + +Now then, whatever instrument of vengeance you⌃ have, apply it to my body, for you⌃ are not able to touch, even if you⌃ wish it, my soul. + +But they, highly incensed at his boldness of speech, dislocated his hands and feet with racking engines, and wrenching them from their sockets, dismembered him. + +And they dragged round his fingers, and his arms, and his legs, and his ankles. + +And not being able by any means to strangle him, they tore off his skin, together with the extreme tips of his fingers, flayed him, and then haled him to the wheel; + +around which his vertebral joints were loosened, and he saw his own flesh torn to shreds, and streams of blood flowing from his entrails. + +And when about to die, he said, + +We, O accursed tyrant, suffer this for the sake of Divine education and virtue. + +But you, for your impiety and blood shedding, shall endure indissoluble torments. + +And thus having died worthily of his brethren, they dragged forward the fourth, saying, + +Do not you share the madness of your brethren: but give regard to the king, and save yourself. + +But he said to them, You have not a fire so scorching as to make me play the coward. + +By the blessed death of my brethren, and the eternal punishment of the tyrant, and the glorious life of the pious, I will not repudiate the noble brotherhood. + +Invent, O tyrant, tortures; that you may learn, even through them, that I am the brother of those tormented before. + +When he had said this, the blood-thirsty, and murderous, and unhallowed Antiochus ordered his tongue to be cut out. + +But he said, Even if you take away the organ of speech, yet God hears the silent. + +Behold, my tongue is extended, cut it off; for not for that halt you extirpate our reasoning. + +Gladly do we lose our limbs in behalf of God. + +But God shall speedly find you, since you cut off the tongue, the instrument of divine melody. + +

+ + +

And when he had died, disfigured in his torments, the fifth leaped forward, and said, + +I intend not, O tyrant, to get excused from the torment which is in behalf of virtue. + +But I have come of my own accord, that by the death of me, you may owe heavenly vengeance a punishment for more crimes. + +O you hater of virtue and of men, what have we done that you thus revel in our blood? + +Does it seem evil to you that we worship the Founder of all things, and live according to his surpassing law? + +But this is worthy of honors, not torments; + +had you been capable of the higher feelings of men, and possessed the hope of salvation from God. + +Behold now, being alien from God, you make war against those who are religious toward God. + +As he said this, the spearbearers bound him, and drew him to the catapelt: + +to which binding him at his knees, and fastening them with iron fetters, they bent down his loins upon the wedge of the wheel; and his body was then dismembered, scorpion-fashion. + +With his breath thus confined, and his body strangled, he said, + +A great favor you bestow upon us, O tyrant, by enabling us to manifest our adherence to the law by means of nobler sufferings. + +He also being dead, the sixth, quite a youth, was brought out; and on the tyrant asking him whether he would eat and be delivered, he said, + +I am indeed younger than my brothers, but in understanding I am as old; + +for having been born and reared to the same end, we are bound to die also in behalf of the same cause. + +So that if you⌃ think proper to torment us for not eating the unclean;—torment! + +As he said this, they brought him to the wheel. + +Extended upon which, with limbs racked and dislocated, he was gradually roasted from beneath. + +And having heated sharp spits, they approached them to his back; and having transfixed his sides, they burned away his entrails. + +And he, while tormented, said, O period good and holy, in which, for the sake of religion, we brethren have been called to the contest of pain, and have not been conquered. + +For religious understanding, O tyrant, is unconquered. + +Armed with upright virtue, I also shall depart with my brethren. + +I, too, bearing with me a great avenger, O deviser of tortures, and enemy of the truly pious. + +We six youths have destroyed your tyranny. + +For is not your inability to overrule our reasoning, and to compel us to eat the unclean, your destruction? + +Your fire is cold to us, your catapelts are painless, and your violence harmless. + +For the guards not of a tyrant but of a divine law are our defenders: through this we keep our reasoning unconquered. + +

+ + +

When he, too, had undergone blessed martyrdom, and died in the caldron into which he had been thrown, the seventh, the youngest of all, came forward: + +whom the tyrant pitying, though he had been dreadfully reproached by his brethren, + +seeing him already encompassed with chains, had him brought nearer, and endeavoured to counsel him, saying, + +You see the end of the madness of your brethren: for they have died in torture through disobedience; and you, if disobedient, having been miserably tormented, will yourself perish prematurely. + +But if you obey, you shall be my friend, and have a charge over the affairs of the kingdom. + +And having thus exhorted him, he sent for the mother of the boy; that, by condoling with her for the loss of so many sons, he might incline her, through the hope of safety, to render the survivor obedient. + +And he, after his mother had urged him on in the Hebrew tongue, (as we shall soon relate) says, + +Release me that I may speak to the king and all his friends. + +And they, rejoicing exceedingly at the promise of the youth, quickly let him go. + +And he, running up to the pans, said, + +Impious tyrant, and most blasphemous man, were you not ashamed, having received prosperity and a kingdom from God, to kill His servants, and to rack the doers of godliness? + +Therefore the divine vengeance is reserving you for eternal fire and torments, which shall cling to you for all time. + +Were you not ashamed, man as you are, yet most savage, to cut out the tongues of men of like feeling and origin, and having thus abused to torture them? + +But they, bravely dying, fulfilled their religion towards God. + +But you shall groan according to your deserts for having slain without cause the champions of virtue. + +Therefore, he continued, I myself, being about to die, + +will not forsake my brethren. + +And I call upon the God of my fathers to be merciful to my race. + +But you, both living and dead, he will punish. + +Thus having prayed, he hurled himself into the pans; and so expired. + +

+ + +

If then, the seven brethren despised troubles even to death, it is confessed on all sides that righteous reasoning is absolute master over the passions. + +For just as if, had they as slaves to the passions, eaten of the unholy, we should have said that they had been conquered by the; + +now it is not so: but by means of the reasoning which is praised by God, they mastered their passions. + +And it is impossible to overlook the leadership of reflection: for it gained the victory over both passions and troubles. + +How, then, can we avoid according to these men mastery of passion through right reasoning, since they drew not back from the pains of fire? + +For just as by means of towers projecting in front of harbors men break the threatening waves, and thus assure a still course to vessels entering port, + +so that seven-towered right-reasoning of the young men, securing the harbour of religion, conquered the intermperance of passions. + +For having arranged a holy choir of piety, they encouraged one another, saying, + +Brothers, may we die brotherly for the law. Let us imitate the three young men in Assyria who despised the equally afflicting furnace. + +Let us not be cowards in the manifestation of piety. + +And one said, Courage, brother; and another, Nobly endure. + +And another, Remember of what stock you⌃ are; and by the hand of our father Isaac endured to be slain for the sake of piety. + +And one and all, looking on each other serene and confident, said, Let us sacrifice with all our heart our souls to God who gave them, and employ our bodies for the keeping of the law. + +Let us not fear him who thinks he kills; + +for great is the trial of soul and danger of eternal torment laid up for those who transgress the commandment of God. + +Let us arm ourselves, therefore, in the abnegation of the divine reasoning. + +If we suffer thus, Abraham, and Isaac, and Jacob will receive us, and all the fathers will commend us. + +And as each one of the brethren was haled away, the rest exclaimed, Disgrace us not, O brother, nor falsify those who died before you. + +Now you are not ignorant of the charm of brotherhood, which the Divine and all wise Providence has imparted through fathers to children, and has engendered through the mother's womb. + +In which these brothers having remained an equal time, and having been formed for the same period, and been increased by the same blood, and having been perfected through the same principle of life, + +and having been brought forth at equal intervals, and having sucked milk from the same fountains, hence their brotherly souls are reared up lovingly together; + +and increase the more powerfully by reason of this simultaneous rearing, and by daily intercourse, and by other education, and exercise in the law of God. + +Brotherly love being thus sympathetically constituted, the seven brethren had a more sympathetic mutual harmony. + +For being educated in the same law, and practising the same virtues, and reared up in a just course of life, they increased this harmony with each other. + +For a like ardour for what is right and honorable increased their fellow-feeling towards each other. + +For it acting along with religion, made their brotherly feeling more desirable to them. + +And yet, although nature and intercourse and virtuous morals increased their brotherly love those who were left endured to behold their brethren, who were ill-used for their religion, tortured even to death. + +

+ + +

And more that this, they even urged them on to this ill-treatment; so that they not only despised pains themselves, but they even got the better of their affections of brotherly love. + +O reasonings more royal than a king, and freer than freemen! + +Sacred and harmonious concert of the seven brethren as concerning piety! + +None of the seven youths turned cowardly, or shrank back from death. + +But all of them, as though running the road to immortality, hastened on to death through tortures. + +For just as hands and feet are moved sympathetically with the directions of the soul, so those holy youths agreed to death for religion's sake, as through the immortal soul of religion. + +O holy seven of harmonious brethren! for as the seven days of creation, about religion, + +so the youths, circling around the number seven, annulled the fear of torments. + +We now shudder at the recital of the affliction of those young men; but they not only saw, and not only heard the immediate execution of the threat, but undergoing it, persevered; and that through the pains of fire. + +And what could be more painful? for the power of fire, being sharp and quick, speedily dissolved their bodies. + +And think it not wonderful that reasoning bore rule over those men in their torments, when even a woman's mind despised more manifold pains. + +For the mother of those seven youths endured the rackings of each of her children. + +And consider how comprehensive is the love of offspring, which draws every one to sympathy of affection, + +where irrational animals possess a similar sympathy and love for their offspring with men. + +The tame birds frequenting the roofs of our houses, defend their fledglings. + +Others build their nests, and hatch their young, in the tops of mountains and in the precipices of valleys, and the holes and tops of trees, and keep off the intruder. + +And if not able to do this, they fly circling round them in agony of affection, calling out in their own note, and save their offspring in whatever manner they are able. + +But why should we point attention to the sympathy toward children shown by irrational animals? + +The very bees, at the season of honey-making, attack all who approach; and pierce with their sting, as with a sword, those who draw near their hive, and repel them even to death. + +But sympathy with her children did not turn aside the mother of the young men, who had a spirit kindred with that of Abraham. + +

+ + +

O reasoning of the sons, lord over the passions, and religion more desirable to a mother than progeny! + +The mother, when two things were set before here, religion and the safety of her seven sons for a time, on the conditional promise of a tyrant, + +rather elected the religion which according to God preserves to eternal life. + +O in what way can I describe ethically the affections of parents toward their children, the resemblance of soul and of form engrafted into the small type of a child in a wonderful manner, especially through the greater sympathy of mothers with the feelings of those born of them! + +for by how much mothers are by nature weak in disposition and prolific in offspring, by so much the fonder they are of children. + +And of all mothers the mother of the seven was the fondest of children, who in seven childbirths had deeply engendered love toward them; + +and through her many pains undergone in connection with each one, was compelled to feel sympathy with them; + +yet, through fear of God, she neglected the temporary salvation of her children. + +Not but that, on account of the excellent disposition to the law, her maternal affection toward them was increased. + +For they were both just and temperate, and manly, and high-minded, and fond of their brethren, and so fond of their mother that even to death they obeyed her by observing the law. + +And yet, though there were so many circumstances connected with love of children to draw on a mother to sympathy, in the case of none of them were the various tortures able to pervert her principle. + +But she inclined each one separately and all together to death for religion. + +O holy nature and parental feeling, and reward of bringing up children, and unconquerable maternal affection! + +At the racking and roasting of each one of them, the observant mother was prevented by religion from changing. + +She saw her children's flesh dissolving around the fire; and their extremities quivering on the ground, and the flesh of their heads dropped forwards down to their beards, like masks. + +O you mother, who was tried at this time with bitterer pangs than those of parturition! + +O you only woman who have brought forth perfect holiness! + +Your firstborn, expiring, turned you not; nor the second, looking miserable in his torments; nor the third, breathing out his soul. + +Nor when you did behold the eyes of each of them looking sternly upon their tortures, and their nostrils foreboding death, did you weep! + +When you did see children's flesh heaped upon children's flesh that had been torn off, heads decapitated upon heads, dead falling upon the dead, and a choir of children turned through torture into a burying ground, you lamented not. + +Not so do siren melodies, or songs of swans, attract the hearers to listening, O voices of children calling upon your mother in the midst of torments! + +With what and what manner of torments was the mother herself tortured, as her sons were undergoing the wheel and the fires! + +But religious reasoning, having strengthened her courage in the midst of sufferings, enabled her to forego, for the time, parental love. + +Although beholding the destruction of seven children, the noble mother, after one embrace, stripped off +her feelings through faith in God. + +For just as in a council-room, beholding in her own soul vehement counselors, nature and parentage and love of her children, and the racking of her children, + +she holding two votes, one for the death, the other for the preservation of her children, + +did not lean to that which would have saved her children for the safety of a brief space. + +But this daughter of Abraham remembered his holy fortitude. + +O holy mother of a nation avenger of the law, and defender of religion, and prime bearer in the battle of the affections! + +O you nobler in endurance than males, and more manly than men in patience! + +For as the ark of Noah, bearing the world in the world-filling flood, bore up against the waves, + +so you, the guardian of the law, when surrounded on every side by the flood of passions, and straitened by violent storms which were the torments of they children, did bear up nobly against the storms against religion. + +

+ + +

If, then, even a woman, and that an aged one, and the mother of seven children, endured to see her children's torments even to death, confessedly religious reasoning is master even of the passions. + +I have proved, then, that not only men have obtained the mastery of their passions, but also that a woman despised the greatest torments. + +And not so fierce were the lions round Daniel, nor the furnace of Misael burning with most vehement fires as that natural love of children burned within her, when she saw her seven sons tortured. + +But with the reasoning of religion the mother quenched passions so great and powerful. + +For we must consider also this: that, had the woman been faint hearted, as being their other, she would have lamented over them; and perhaps might have spoken thus: + +Ah! wretched I, and many times miserable; who having born seven sons, have become the mother of none. + +O seven useless childbirths, and seven profitless periods of labor, and fruitless givings of suck, and miserable nursings at the breast. + +Vainly, for your sakes, O sons, have I endured many pangs, and the more difficult anxieties of rearing. + +Alas, of my children, some of you unmarried, and some who have married to no profit, I shall not see your children, nor be felicitated as a grandmother. + +Ah, that I who had many and fair children, should be a lone widow full of sorrows! + +Nor, should I die, shall I have a son to bury me. But with such a lament as this the holy and God-fearing mother bewailed none of them. + +Nor did she divert any of them from death, nor grieve for them as for the dead. + +But as one possessed with an adamantine mind, and as one bringing forth again her full number of sons to immortality, she rather with supplication exhorted them to death in behalf of religion. + +O woman, soldier of God for religion, you, aged and a female, have conquered through endurance even a tyrant; and though but weak, have been found more powerful in deeds and words. + +For when you were seized along with your children, you stood looking upon Eleazar in torments, and said to your sons in the Hebrew tongue, + +O sons, noble is the contest; to which you being called as a witness for the nation, strive zealously for the laws of your country. + +For it were disgraceful that this old man should endure pains for the sake of righteousness, and that you who are younger should be afraid of the tortures. + +Remember that through God you⌃ obtained existence, and have enjoyed it. + +And on this second account you⌃ ought to bear every affliction because of God. + +For whom also our father Abraham was forward to sacrifice Isaac our progenitor, and shuddered not at the sight of his own paternal hand descending down with the sword upon him. + +And the righteous Daniel was cast to the lions; and Ananias, and Azarias, and Misael, were slung out into a furnace of fire; yet they endured through God. + +You, then, having the same faith towards God, be not troubled. + +For it is unreasonable that they who know religion should not stand up against troubles. + +With these arguments, the mother of seven, exhorting each of her sons, over-persuaded them from transgressing the commandment of God. + +And they saw this, too, that they who die for God, live to God; as Abraham, and Isaac, and Jacob, and all the patriarchs. + +

+ + +

And some of the spearbearers said, that when she herself was about to be seized for the purpose of being put to death, she threw herself upon the pile, rather than they should touch her person. + +O you mother, who together with seven children did destroy the violence of the tyrant, and render void his wicked intentions, and exhibit the nobleness of faith! + +For you, as an house bravely built upon the pillar of your children, did bear without swaying, the shock of tortures. + +Be of good cheer, therefore, O holy-minded mother! holding the firm +substance of the hope of your steadfastness with God. + +Not so gracious does the moon appear with the stars in heaven, as you are established honorable before God, and fixed in the firmament with your sons who you did illuminate with religion to the stars. + +For your bearing of children was after the fashion of a child of Abraham. + +And, were it lawful for us to paint as on a tablet the religion of your story, the spectators would not shudder at beholding the mother of seven children enduring for the sake of religion various tortures even to death. + +And it had been a worth thing to have inscribed upon the tomb itself these words as a memorial to those of the nation, + +Here an aged priest, and an aged woman, and seven sons, are buried through the violence of a tyrant, who wished to destroy the polity of the Hebrews. + +These also avenged their nation, looking to God, and enduring torments to death. + +For it was truly a divine contest which was carried through by them. + +For at that time virtue presided over the contest, approving the victory through endurance, namely, immortality, eternal life. + +Eleazar was the first to contend: and the mother of the seven children entered the contest; and the brethren contended. + +The tyrant was the opposite; and the world and living men were the spectators. + +And reverence for God conquered, and crowned her own athletes. + +Who did not admire those champions of true legislation? who were not astonied? + +The tyrant himself, and all their council, admired their endurance; + +through which, also, they now stand beside the divine throne, and live a blessed life. + +For Moses says, And all the saints are under your hands. + +These, therefore, having been sanctified through God, have been honored not only with this honor, but that also by their means the enemy did not overcome our nation; + +and that the tyrant was punished, and their country purified. + +For they became the ransom to the sin of the nation; and the Divine Providence saved Israel, aforetime afflicted, by the blood of those pious ones, and the propitiatory death. + +For the tyrant Antiochus, looking to their manly virtue, and to their endurance in torture, proclaimed that endurance as an example to his soldiers. + +And they proved to be to him noble and brave for land battles and for sieges; and he conquered and stormed the towns of all his enemies. + +

+ + +

O Israelitish children, descendants of the seed of Abraham, obey this law, and in every way be religious. + +Knowing that religious reasoning is lord of the passions, and those not only inward but outward. + +When those persons giving up their bodies to pains for the sake of religion, were not only admired by men, but were deemed worthy of a divine portion. + +And the nation through them obtained peace, and having renewed the observance of the law in their country, drove the enemy out of the land. + +And the tyrant Antiochus was both punished upon earth, and is punished now he is dead; for when he was quite unable to compel the Israelites to adopt foreign customs, and to desert the manner of life of their fathers, + +then, departing from Jerusalem, he made war against the Persians. + +And the righteous mother of the seven children spoke also as follows to her offspring: I was a pure virgin, and went not beyond my father's house; but I took care of the built-up rib. + +No destroyer of the desert, +or ravisher of the plain, injured me; nor did the destructive, deceitful snake, make spoil of my chaste virginity; and I remained with my husband during the period of my prime. + +And these my children, having arrived at maturity, their father died: blessed was he! for having sought out a life of fertility in children, he was not grieved with a period of loss of children. + +And he used to teach you, when yet with you, the law and the prophets. + +He used to read to you the slaying of Abel by Cain, and the offering up of Isaac, and the imprisonment of Joseph. + +And he used to tell you of the zealous Phinehas; and informed you of Ananias and Azarias, and Misael in the fire. + +And he used to glorify Daniel, who was in the den of lions, and pronounce him blessed. + +And he used to put you in mind of the scripture of Esaias, which says, Even if you pass through the fire, it shall not burn you. + +He chanted to you David, the hymn-writer, who says, Many are the afflictions of the just. + +He declared the proverbs of Solomon, who says, He is a tree of life to all those who do His will. + +He used to verify Ezekiel, who said, Shall these dry bones live? + +For he did not forget the song which Moses taught, proclaiming, I will kill, and I will make to live. + +This is our life, and the length of our days. + +O that bitter, and yet not bitter, day when the bitter tyrant of the Greeks, quenching fire with fire in his cruel caldrons, brought with boiling rage the seven sons of the daughter of Abraham to the catapelt, and to all his torments! + +He pierced the balls of their eyes, and cut out their tongues, and put them to death with varied tortures. + +Therefore divine retribution pursued and will pursue the pestilent wretch. + +But the children of Abraham, with their victorious mother, are assembled together to the choir of their father; having received pure and immortal souls from God. + +To whom be glory for ever and ever. Amen. + +

+
\ No newline at end of file diff --git a/data/eng-web_usfx.xml b/data/eng-web_usfx.xml new file mode 100644 index 0000000..28e3002 --- /dev/null +++ b/data/eng-web_usfx.xml @@ -0,0 +1,135412 @@ +eng +Preface to the World English Bible +Preface +Preface +Preface +Pre +

Preface to the World English Bible +

+

What is the Holy Bible? +

+

The Holy Bible is a collection of books and letters written by many people who were inspired by the Holy Spirit of God. These books tell us how we can be saved from the evil of this world and gain eternal life that is truly worth living. Although the Holy Bible contains rules of conduct, it is not just a rule book. It reveals God’s heart—a Father’s heart, full of love and compassion. The Holy Bible tells you what you need to know and believe to be saved from sin and evil and how to live a life that is truly worth living, no matter what your current circumstances may be. +

+

The Holy Bible consists of two main sections: the Old Testament (including Psalms and Proverbs) and the New Testament (Matthew through Revelation). The Old Testament records God’s interaction with mankind before He sent His son to redeem us, while recording prophesy predicting that coming. The New Testament tells us of God’s Son and Anointed One, Jesus, and the wonderful salvation that He purchased for us. +

+

The same Holy Spirit who inspired the Holy Bible is living among us today, and He is happy to help you understand what He intended as you study His Word. Just ask Him, and He is more than happy to help you apply His message to your life. +

+

The Old Testament was originally written mostly in Hebrew. The New Testament was originally written mostly in the common street Greek (not the formal Greek used for official legal matters). The Holy Bible is translated into many languages, and being translated into many more, so that everyone may have an opportunity to hear the Good News about Jesus Christ.1:0 +“Christ” means “Anointed One”. +

+

Why was the World English Bible translated? +

+

There are already many good translations of the Holy Bible into contemporary English. Unfortunately, almost all of them are restricted by copyright and copyright holder policy. This restricts publication and republication of God’s Word in many ways, such as in downloadable files on the Internet, use of extensive quotations in books, etc. The World English Bible was commissioned by God in response to prayer about this subject. +

+

Because the World English Bible is in the Public Domain (not copyrighted), it can be freely copied, distributed, and redistributed without any payment of royalties. You don’t even have to ask permission to do so. You may publish the whole World English Bible in book form, bind it in leather, and sell it. You may incorporate it into your Bible study software. You may make and distribute audio recordings of it. You may broadcast it. All you have to do is maintain the integrity of God’s Word before God, and reserve the name “World English Bible” for faithful copies of this translation. +

+

How was the World English Bible translated? +

+

The World English Bible is an update of the American Standard Version (ASV) of the Holy Bible, published in 1901. A custom computer program updated the archaic words and word forms to contemporary equivalents, and then a team of volunteers proofread and updated the grammar. The New Testament was updated in places to conform to the Byzantine Majority Text reconstruction of the original Greek manuscripts, thus taking advantage of the superior access to manuscripts that we have now compared to when the original ASV was translated. +

+

What is different about the World English Bible? +

+

The style of the World English Bible, while fairly literally translated, is in informal, spoken English. The World English Bible is designed to sound good and be accurate when read aloud. It is not formal in its language, just as the original Greek of the New Testament was not formal. The WEB uses contractions rather freely. +

+

The World English Bible doesn’t capitalize pronouns pertaining to God. The original manuscripts made no such distinction. Hebrew has no such thing as upper and lower case, and the original Greek manuscripts were written in all upper case letters. Attempting to add in such a distinction raises some difficulties in translating dual-meaning Scriptures such as the coronation psalms. +

+

The Classic World English Bible translates God’s Proper Name in the Old Testament as “Yahweh.” All other editions of the World English Bible translate the same name as “LORD” (all capital letters), or when used with “Lord” (mixed case, translated from “Adonai”), GOD. There are solid translational arguments for both traditions. +

+

Because the World English Bible uses the Byzantine Majority Text (MT) as the primary basis for the New Testament, you may notice the following differences in comparing the WEB to other translations: +

+

The order of Matthew 23:13 and 14 is reversed in some translations. +

+

Luke 17:36 and Acts 15:34, which are not found in the majority of the Greek Manuscripts (and are relegated to footnotes in the WEB), may be included in some other translations. +

+

Romans 14:24-26 in the WEB may appear as Romans 16:25-27 in other translations. +

+

1 John 5:7-8 contains an addition in some translations, including the KJV. Erasmus admitted adding this text to his published Greek New Testament, even though he could at first find no Greek manuscript support for it, because he was being pressured by men to do so, and because he didn’t see any doctrinal harm in it. Lots of things not written by John in this letter are true, but we decline to add them to what the Holy Spirit inspired through John. +

+

With all of the above and some other places where lack of clarity in the original manuscripts has led to multiple possible readings, significant variants are listed in footnotes. The reading that in our prayerful judgment is best is in the main text. Overall, the World English Bible doesn’t differ very much from several other good contemporary English translations of the Holy Bible. The message of Salvation through Jesus Christ is still the same. The point of this translation was not to be very different (except for legal status), but to update the ASV for readability while retaining or improving the accuracy of that well-respected translation and retaining the public domain status of the ASV. +

+

Does the World English Bible include the Apocrypha? +

+

The World English Bible is an ecumenical project that includes books included in Bibles in many denominations. The main 66 books of the Old and New Testaments are recognized as Scripture by all true Christians. There are also books considered to be part of, depending on which book and who you ask, Deuterocanon, Apocrypha, and Pseudepigrapha. The Deuterocanon/Apocrypha books are only included in the printed editions marked “Ecumenical”. +

+

The following books and parts of books are recognized as Deuterocanonical Scripture by the Roman Catholic, Greek, and Russian Orthodox Churches: +Tobit, +Judith, +Esther from the Greek Septuagint, +The Wisdom of Solomon, +Ecclesiasticus (also called +The Wisdom of Jesus Son of Sirach), +Baruch, +The Song of the Three Holy Children, +Susanna, +Bel and the Dragon, +1 Maccabees, and +2 Maccabees. In this edition, +The Letter of Jeremiah is included as chapter 6 of +Baruch. Three of those books come from parts of Daniel found in the Greek Septuagint, but not the Hebrew Old Testament: +The Song of the Three Holy Children, +Susanna, and +Bel and the Dragon. These three are included in +Daniel (Greek), in context, as they make more sense that way. +

+

The following books are recognized as Deuterocanonical Scripture by the Greek and Russian Orthodox Churches, but not the Roman Catholic Church: 1 Esdras, The Prayer of Manasseh, Psalm 151, and 3 Maccabees. Note that 1 Esdras and the Prayer of Manasseh are also in an appendix to the Latin Vulgate Bible. +

+

The Slavonic Bible includes 2 Esdras, but calls it 3 Esdras. This same book is in the Appendix to the Latin Vulgate as 4 Esdras. +

+

An appendix to the Greek Septuagint contains 4 Maccabees. It is included for its historical value. +

+

Among Christian denominations and among individual Christians, opinions vary widely on the Deuterocanon/Apocrypha, as do the collective names they give them. Many regard them as useful in gaining additional understanding of the Old and New Testaments and the hand of God in history, even if they don’t give them the same status as the 66 books of the Old and New Testaments. They are included here in support of the churches and individuals who read them and use them, as separate from, but frequently used with, the core canon of the 66 books of the Holy Bible. +

+

What are MT, TR, and NU? +

+

In the footnotes, MT refers to the Byzantine Greek Majority Text New Testament, which is usually in the main text. TR stands for Textus Receptus, which is the Greek Text from which the King James Version New Testament was translated. NU stands for the Nestle-Aland/UBS critical text of the Greek New Testament, which is used as a basis for some other Bible translations. +

+

More Information +

+

For answers to frequently asked questions about the World English Bible, please visit our web site at WorldEnglish.Bible. +

+
+World English Bible (WEB) 2024-01-15 +Genesis +The First Book of Moses, Commonly Called Genesis +Genesis +Gen +

The First Book of Moses, +

+

Commonly Called +

+

Genesis +

+ + +

In the beginning, God1:1 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). created the heavens and the earth. + +The earth was formless and empty. Darkness was on the surface of the deep and God’s Spirit was hovering over the surface of the waters. + +

+

God said, “Let there be light,” and there was light. + +God saw the light, and saw that it was good. God divided the light from the darkness. + +God called the light “day”, and the darkness he callednight”. There was evening and there was morning, the first day. + +

+

God said, “Let there be an expanse in the middle of the waters, and let it divide the waters from the waters.” + +God made the expanse, and divided the waters which were under the expanse from the waters which were above the expanse; and it was so. + +God called the expansesky”. There was evening and there was morning, a second day. + +

+

God said, “Let the waters under the sky be gathered together to one place, and let the dry land appear;” and it was so. + +God called the dry land “earth”, and the gathering together of the waters he calledseas”. God saw that it was good. + +God said, “Let the earth yield grass, herbs yielding seeds, and fruit trees bearing fruit after their kind, with their seeds in it, on the earth;” and it was so. + +The earth yielded grass, herbs yielding seed after their kind, and trees bearing fruit, with their seeds in it, after their kind; and God saw that it was good. + +There was evening and there was morning, a third day. + +

+

God said, “Let there be lights in the expanse of the sky to divide the day from the night; and let them be for signs to mark seasons, days, and years; + +and let them be for lights in the expanse of the sky to give light on the earth;” and it was so. + +God made the two great lights: the greater light to rule the day, and the lesser light to rule the night. He also made the stars. + +God set them in the expanse of the sky to give light to the earth, + +and to rule over the day and over the night, and to divide the light from the darkness. God saw that it was good. + +There was evening and there was morning, a fourth day. + +

+

God said, “Let the waters abound with living creatures, and let birds fly above the earth in the open expanse of the sky.” + +God created the large sea creatures and every living creature that moves, with which the waters swarmed, after their kind, and every winged bird after its kind. God saw that it was good. + +God blessed them, saying, “Be fruitful, and multiply, and fill the waters in the seas, and let birds multiply on the earth.” + +There was evening and there was morning, a fifth day. + +

+

God said, “Let the earth produce living creatures after their kind, livestock, creeping things, and animals of the earth after their kind;” and it was so. + +God made the animals of the earth after their kind, and the livestock after their kind, and everything that creeps on the ground after its kind. God saw that it was good. + +

+

God said, “Let’s make man in our image, after our likeness. Let them have dominion over the fish of the sea, and over the birds of the sky, and over the livestock, and over all the earth, and over every creeping thing that creeps on the earth.” + +God created man in his own image. In God’s image he created him; male and female he created them. + +God blessed them. God said to them, “Be fruitful, multiply, fill the earth, and subdue it. Have dominion over the fish of the sea, over the birds of the sky, and over every living thing that moves on the earth.” + +God said, “Behold,1:29 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I have given you every herb yielding seed, which is on the surface of all the earth, and every tree, which bears fruit yielding seed. It will be your food. + +To every animal of the earth, and to every bird of the sky, and to everything that creeps on the earth, in which there is life, I have given every green herb for food;” and it was so. + +

+

God saw everything that he had made, and, behold, it was very good. There was evening and there was morning, a sixth day. + +

+ + +

The heavens, the earth, and all their vast array were finished. + +On the seventh day God finished his work which he had done; and he rested on the seventh day from all his work which he had done. + +God blessed the seventh day, and made it holy, because he rested in it from all his work of creation which he had done. + +

+

This is the history of the generations of the heavens and of the earth when they were created, in the day that Yahweh2:4 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. God made the earth and the heavens. + +No plant of the field was yet in the earth, and no herb of the field had yet sprung up; for Yahweh God had not caused it to rain on the earth. There was not a man to till the ground, + +but a mist went up from the earth, and watered the whole surface of the ground. + +Yahweh God formed man from the dust of the ground, and breathed into his nostrils the breath of life; and man became a living soul. + +Yahweh God planted a garden eastward, in Eden, and there he put the man whom he had formed. + +Out of the ground Yahweh God made every tree to grow that is pleasant to the sight, and good for food, including the tree of life in the middle of the garden and the tree of the knowledge of good and evil. + +A river went out of Eden to water the garden; and from there it was parted, and became the source of four rivers. + +The name of the first is Pishon: it flows through the whole land of Havilah, where there is gold; + +and the gold of that land is good. Bdellium2:12 +or, aromatic resin and onyx stone are also there. + +The name of the second river is Gihon. It is the same river that flows through the whole land of Cush. + +The name of the third river is Hiddekel. This is the one which flows in front of Assyria. The fourth river is the Euphrates. + +Yahweh God took the man, and put him into the garden of Eden to cultivate and keep it. + +Yahweh God commanded the man, saying, “You may freely eat of every tree of the garden; + +but you shall not eat of the tree of the knowledge of good and evil; for in the day that you eat of it, you will surely die.” + +

+

Yahweh God said, “It is not good for the man to be alone. I will make him a helper comparable to2:18 +or, suitable for, or appropriate for. him.” + +Out of the ground Yahweh God formed every animal of the field, and every bird of the sky, and brought them to the man to see what he would call them. Whatever the man called every living creature became its name. + +The man gave names to all livestock, and to the birds of the sky, and to every animal of the field; but for man there was not found a helper comparable to him. + +Yahweh God caused the man to fall into a deep sleep. As the man slept, he took one of his ribs, and closed up the flesh in its place. + +Yahweh God made a woman from the rib which he had taken from the man, and brought her to the man. + +The man said, “This is now bone of my bones, and flesh of my flesh. She will be called ‘woman,’ because she was taken out of Man.” + +Therefore a man will leave his father and his mother, and will join with his wife, and they will be one flesh. + +The man and his wife were both naked, and they were not ashamed. + +

+ + +

Now the serpent was more subtle than any animal of the field which Yahweh God had made. He said to the woman, “Has God really said, ‘You shall not eat of any tree of the garden’?” + +

+

The woman said to the serpent, “We may eat fruit from the trees of the garden, + +but not the fruit of the tree which is in the middle of the garden. God has said, ‘You shall not eat of it. You shall not touch it, lest you die.’” + +

+

The serpent said to the woman, “You won’t really die, + +for God knows that in the day you eat it, your eyes will be opened, and you will be like God, knowing good and evil.” + +

+

When the woman saw that the tree was good for food, and that it was a delight to the eyes, and that the tree was to be desired to make one wise, she took some of its fruit, and ate. Then she gave some to her husband with her, and he ate it, too. + +Their eyes were opened, and they both knew that they were naked. They sewed fig leaves together, and made coverings for themselves. + +They heard Yahweh God’s voice walking in the garden in the cool of the day, and the man and his wife hid themselves from the presence of Yahweh God among the trees of the garden. + +

+

Yahweh God called to the man, and said to him, “Where are you?” + +

+

The man said, “I heard your voice in the garden, and I was afraid, because I was naked; so I hid myself.” + +

+

God said, “Who told you that you were naked? Have you eaten from the tree that I commanded you not to eat from?” + +

+

The man said, “The woman whom you gave to be with me, she gave me fruit from the tree, and I ate it.” + +

+

Yahweh God said to the woman, “What have you done?” +

+

The woman said, “The serpent deceived me, and I ate.” + +

+

Yahweh God said to the serpent, +

+Because you have done this, + +you are cursed above all livestock, + +and above every animal of the field. + +You shall go on your belly + +and you shall eat dust all the days of your life. + + +I will put hostility between you and the woman, + +and between your offspring and her offspring. + +He will bruise your head, + +and you will bruise his heel.” + + +

To the woman he said, +

+I will greatly multiply your pain in childbirth. + +You will bear children in pain. + +Your desire will be for your husband, + +and he will rule over you.” + + +

To Adam he said, +

+Because you have listened to your wife’s voice, + +and have eaten from the tree, + +about which I commanded you, saying, ‘You shall not eat of it,’ + +the ground is cursed for your sake. + +You will eat from it with much labor all the days of your life. + + +It will yield thorns and thistles to you; + +and you will eat the herb of the field. + + +You will eat bread by the sweat of your face until you return to the ground, + +for you were taken out of it. + +For you are dust, + +and you shall return to dust.” + + +

The man called his wife Eve because she would be the mother of all the living. + +Yahweh God made garments of animal skins for Adam and for his wife, and clothed them. + +

+

Yahweh God said, “Behold, the man has become like one of us, knowing good and evil. Now, lest he reach out his hand, and also take of the tree of life, and eat, and live forever—” + +Therefore Yahweh God sent him out from the garden of Eden, to till the ground from which he was taken. + +So he drove out the man; and he placed cherubim3:24 +cherubim are powerful angelic creatures, messengers of God with wings. See Ezekiel 10. at the east of the garden of Eden, and a flaming sword which turned every way, to guard the way to the tree of life. + +

+ + +

The man knew4:1 +or, lay with, or, had relations with Eve his wife. She conceived,4:1 +or, became pregnant and gave birth to Cain, and said, “I have gotten a man with Yahweh’s help.” + +Again she gave birth, to Cain’s brother Abel. Abel was a keeper of sheep, but Cain was a tiller of the ground. + +As time passed, Cain brought an offering to Yahweh from the fruit of the ground. + +Abel also brought some of the firstborn of his flock and of its fat. Yahweh respected Abel and his offering, + +but he didn’t respect Cain and his offering. Cain was very angry, and the expression on his face fell. + +Yahweh said to Cain, “Why are you angry? Why has the expression of your face fallen? + +If you do well, won’t it be lifted up? If you don’t do well, sin crouches at the door. Its desire is for you, but you are to rule over it.” + +Cain said to Abel, his brother, “Let’s go into the field.” While they were in the field, Cain rose up against Abel, his brother, and killed him. + +

+

Yahweh said to Cain, “Where is Abel, your brother?” +

+

He said, “I don’t know. Am I my brother’s keeper?” + +

+

Yahweh said, “What have you done? The voice of your brother’s blood cries to me from the ground. + +Now you are cursed because of the ground, which has opened its mouth to receive your brother’s blood from your hand. + +From now on, when you till the ground, it won’t yield its strength to you. You will be a fugitive and a wanderer on the earth.” + +

+

Cain said to Yahweh, “My punishment is greater than I can bear. + +Behold, you have driven me out today from the surface of the ground. I will be hidden from your face, and I will be a fugitive and a wanderer on the earth. Whoever finds me will kill me.” + +

+

Yahweh said to him, “Therefore whoever slays Cain, vengeance will be taken on him sevenfold.” Yahweh appointed a sign for Cain, so that anyone finding him would not strike him. + +

+

Cain left Yahweh’s presence, and lived in the land of Nod, east of Eden. + +Cain knew his wife. She conceived, and gave birth to Enoch. He built a city, and named the city after the name of his son, Enoch. + +Irad was born to Enoch. Irad became the father of Mehujael. Mehujael became the father of Methushael. Methushael became the father of Lamech. + +Lamech took two wives: the name of the first one was Adah, and the name of the second one was Zillah. + +Adah gave birth to Jabal, who was the father of those who dwell in tents and have livestock. + +His brother’s name was Jubal, who was the father of all who handle the harp and pipe. + +Zillah also gave birth to Tubal Cain, the forger of every cutting instrument of bronze and iron. Tubal Cain’s sister was Naamah. + +Lamech said to his wives, +

+Adah and Zillah, hear my voice. + +You wives of Lamech, listen to my speech, + +for I have slain a man for wounding me, + +a young man for bruising me. + + +If Cain will be avenged seven times, + +truly Lamech seventy-seven times.” + + +

Adam knew his wife again. She gave birth to a son, and named him Seth, saying, “for God has given me another child instead of Abel, for Cain killed him.” + +A son was also born to Seth, and he named him Enosh. At that time men began to call on Yahweh’s name. + +

+ + +

This is the book of the generations of Adam. In the day that God created man, he made him in God’s likeness. + +He created them male and female, and blessed them. On the day they were created, he named them Adam.5:2 +“Adam” and “Man” are spelled with the exact same consonants in Hebrew, so this can be correctly translated either way. + +Adam lived one hundred thirty years, and became the father of a son in his own likeness, after his image, and named him Seth. + +The days of Adam after he became the father of Seth were eight hundred years, and he became the father of other sons and daughters. + +All the days that Adam lived were nine hundred thirty years, then he died. + +

+

Seth lived one hundred five years, then became the father of Enosh. + +Seth lived after he became the father of Enosh eight hundred seven years, and became the father of other sons and daughters. + +All of the days of Seth were nine hundred twelve years, then he died. + +

+

Enosh lived ninety years, and became the father of Kenan. + +Enosh lived after he became the father of Kenan eight hundred fifteen years, and became the father of other sons and daughters. + +All of the days of Enosh were nine hundred five years, then he died. + +

+

Kenan lived seventy years, then became the father of Mahalalel. + +Kenan lived after he became the father of Mahalalel eight hundred forty years, and became the father of other sons and daughters + +and all of the days of Kenan were nine hundred ten years, then he died. + +

+

Mahalalel lived sixty-five years, then became the father of Jared. + +Mahalalel lived after he became the father of Jared eight hundred thirty years, and became the father of other sons and daughters. + +All of the days of Mahalalel were eight hundred ninety-five years, then he died. + +

+

Jared lived one hundred sixty-two years, then became the father of Enoch. + +Jared lived after he became the father of Enoch eight hundred years, and became the father of other sons and daughters. + +All of the days of Jared were nine hundred sixty-two years, then he died. + +

+

Enoch lived sixty-five years, then became the father of Methuselah. + +After Methuselah’s birth, Enoch walked with God for three hundred years, and became the father of more sons and daughters. + +All the days of Enoch were three hundred sixty-five years. + +Enoch walked with God, and he was not found, for God took him. + +

+

Methuselah lived one hundred eighty-seven years, then became the father of Lamech. + +Methuselah lived after he became the father of Lamech seven hundred eighty-two years, and became the father of other sons and daughters. + +All the days of Methuselah were nine hundred sixty-nine years, then he died. + +

+

Lamech lived one hundred eighty-two years, then became the father of a son. + +He named him Noah, saying, “This one will comfort us in our work and in the toil of our hands, caused by the ground which Yahweh has cursed.” + +Lamech lived after he became the father of Noah five hundred ninety-five years, and became the father of other sons and daughters. + +All the days of Lamech were seven hundred seventy-seven years, then he died. + +

+

Noah was five hundred years old, then Noah became the father of Shem, Ham, and Japheth. + +

+ + +

When men began to multiply on the surface of the ground, and daughters were born to them, + +God’s sons saw that men’s daughters were beautiful, and they took any that they wanted for themselves as wives. + +Yahweh said, “My Spirit will not strive with man forever, because he also is flesh; so his days will be one hundred twenty years.” + +The Nephilim6:4 +or, giants were on the earth in those days, and also after that, when God’s sons came in to men’s daughters and had children with them. Those were the mighty men who were of old, men of renown. + +

+

Yahweh saw that the wickedness of man was great on the earth, and that every imagination of the thoughts of man’s heart was continually only evil. + +Yahweh was sorry that he had made man on the earth, and it grieved him in his heart. + +Yahweh said, “I will destroy man whom I have created from the surface of the groundman, along with animals, creeping things, and birds of the skyfor I am sorry that I have made them.” + +But Noah found favor in Yahweh’s eyes. + +

+

This is the history of the generations of Noah: Noah was a righteous man, blameless among the people of his time. Noah walked with God. + +Noah became the father of three sons: Shem, Ham, and Japheth. + +The earth was corrupt before God, and the earth was filled with violence. + +God saw the earth, and saw that it was corrupt, for all flesh had corrupted their way on the earth. + +

+

God said to Noah, “I will bring an end to all flesh, for the earth is filled with violence through them. Behold, I will destroy them and the earth. + +Make a ship of gopher wood. You shall make rooms in the ship, and shall seal it inside and outside with pitch. + +This is how you shall make it. The length of the ship shall be three hundred cubits,6:15 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. its width fifty cubits, and its height thirty cubits. + +You shall make a roof in the ship, and you shall finish it to a cubit upward. You shall set the door of the ship in its side. You shall make it with lower, second, and third levels. + +I, even I, will bring the flood of waters on this earth, to destroy all flesh having the breath of life from under the sky. Everything that is on the earth will die. + +But I will establish my covenant with you. You shall come into the ship, you, your sons, your wife, and your sons’ wives with you. + +Of every living thing of all flesh, you shall bring two of every sort into the ship, to keep them alive with you. They shall be male and female. + +Of the birds after their kind, of the livestock after their kind, of every creeping thing of the ground after its kind, two of every sort will come to you, to keep them alive. + +Take with you some of all food that is eaten, and gather it to yourself; and it will be for food for you, and for them.” + +Thus Noah did. He did all that God commanded him. + +

+ + +

Yahweh said to Noah, “Come with all of your household into the ship, for I have seen your righteousness before me in this generation. + +You shall take seven pairs of every clean animal with you, the male and his female. Of the animals that are not clean, take two, the male and his female. + +Also of the birds of the sky, seven and seven, male and female, to keep seed alive on the surface of all the earth. + +In seven days, I will cause it to rain on the earth for forty days and forty nights. I will destroy every living thing that I have made from the surface of the ground.” + +

+

Noah did everything that Yahweh commanded him. + +

+

Noah was six hundred years old when the flood of waters came on the earth. + +Noah went into the ship with his sons, his wife, and his sons’ wives, because of the floodwaters. + +Clean animals, unclean animals, birds, and everything that creeps on the ground + +went by pairs to Noah into the ship, male and female, as God commanded Noah. + +After the seven days, the floodwaters came on the earth. + +In the six hundredth year of Noah’s life, in the second month, on the seventeenth day of the month, on that day all the fountains of the great deep burst open, and the sky’s windows opened. + +It rained on the earth forty days and forty nights. + +

+

In the same day Noah, and Shem, Ham, and Japheththe sons of Noahand Noah’s wife and the three wives of his sons with them, entered into the ship— + +they, and every animal after its kind, all the livestock after their kind, every creeping thing that creeps on the earth after its kind, and every bird after its kind, every bird of every sort. + +Pairs from all flesh with the breath of life in them went into the ship to Noah. + +Those who went in, went in male and female of all flesh, as God commanded him; then Yahweh shut him in. + +The flood was forty days on the earth. The waters increased, and lifted up the ship, and it was lifted up above the earth. + +The waters rose, and increased greatly on the earth; and the ship floated on the surface of the waters. + +The waters rose very high on the earth. All the high mountains that were under the whole sky were covered. + +The waters rose fifteen cubits7:20 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. higher, and the mountains were covered. + +All flesh died that moved on the earth, including birds, livestock, animals, every creeping thing that creeps on the earth, and every man. + +All on the dry land, in whose nostrils was the breath of the spirit of life, died. + +Every living thing was destroyed that was on the surface of the ground, including man, livestock, creeping things, and birds of the sky. They were destroyed from the earth. Only Noah was left, and those who were with him in the ship. + +The waters flooded the earth one hundred fifty days. + +

+ + +

God remembered Noah, all the animals, and all the livestock that were with him in the ship; and God made a wind to pass over the earth. The waters subsided. + +The deep’s fountains and the sky’s windows were also stopped, and the rain from the sky was restrained. + +The waters continually receded from the earth. After the end of one hundred fifty days the waters receded. + +The ship rested in the seventh month, on the seventeenth day of the month, on Ararat’s mountains. + +The waters receded continually until the tenth month. In the tenth month, on the first day of the month, the tops of the mountains were visible. + +

+

At the end of forty days, Noah opened the window of the ship which he had made, + +and he sent out a raven. It went back and forth, until the waters were dried up from the earth. + +He himself sent out a dove to see if the waters were abated from the surface of the ground, + +but the dove found no place to rest her foot, and she returned into the ship to him, for the waters were on the surface of the whole earth. He put out his hand, and took her, and brought her to him into the ship. + +He waited yet another seven days; and again he sent the dove out of the ship. + +The dove came back to him at evening and, behold, in her mouth was a freshly plucked olive leaf. So Noah knew that the waters were abated from the earth. + +He waited yet another seven days, and sent out the dove; and she didn’t return to him any more. + +

+

In the six hundred first year, in the first month, the first day of the month, the waters were dried up from the earth. Noah removed the covering of the ship, and looked. He saw that the surface of the ground was dry. + +In the second month, on the twenty-seventh day of the month, the earth was dry. + +

+

God spoke to Noah, saying, + +Go out of the ship, you, your wife, your sons, and your sons’ wives with you. + +Bring out with you every living thing that is with you of all flesh, including birds, livestock, and every creeping thing that creeps on the earth, that they may breed abundantly on the earth, and be fruitful, and multiply on the earth.” + +

+

Noah went out, with his sons, his wife, and his sons’ wives with him. + +Every animal, every creeping thing, and every bird, whatever moves on the earth, after their families, went out of the ship. + +

+

Noah built an altar to Yahweh, and took of every clean animal, and of every clean bird, and offered burnt offerings on the altar. + +Yahweh smelled the pleasant aroma. Yahweh said in his heart, “I will not again curse the ground any more for man’s sake because the imagination of man’s heart is evil from his youth. I will never again strike every living thing, as I have done. + +While the earth remains, seed time and harvest, and cold and heat, and summer and winter, and day and night will not cease.” + +

+ + +

God blessed Noah and his sons, and said to them, “Be fruitful, multiply, and replenish the earth. + +The fear of you and the dread of you will be on every animal of the earth, and on every bird of the sky. Everything that moves along the ground, and all the fish of the sea, are delivered into your hand. + +Every moving thing that lives will be food for you. As I gave you the green herb, I have given everything to you. + +But flesh with its life, that is, its blood, you shall not eat. + +I will surely require accounting for your life’s blood. At the hand of every animal I will require it. At the hand of man, even at the hand of every man’s brother, I will require the life of man. + +Whoever sheds man’s blood, his blood will be shed by man, for God made man in his own image. + +Be fruitful and multiply. Increase abundantly on the earth, and multiply in it.” + +

+

God spoke to Noah and to his sons with him, saying, + +As for me, behold, I establish my covenant with you, and with your offspring after you, + +and with every living creature that is with you: the birds, the livestock, and every animal of the earth with you, of all that go out of the ship, even every animal of the earth. + +I will establish my covenant with you: All flesh will not be cut off any more by the waters of the flood. There will never again be a flood to destroy the earth.” + +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: + +I set my rainbow in the cloud, and it will be a sign of a covenant between me and the earth. + +When I bring a cloud over the earth, that the rainbow will be seen in the cloud, + +I will remember my covenant, which is between me and you and every living creature of all flesh, and the waters will no more become a flood to destroy all flesh. + +The rainbow will be in the cloud. I will look at it, that I may remember the everlasting covenant between God and every living creature of all flesh that is on the earth.” + +God said to Noah, “This is the token of the covenant which I have established between me and all flesh that is on the earth.” + +

+

The sons of Noah who went out from the ship were Shem, Ham, and Japheth. Ham is the father of Canaan. + +These three were the sons of Noah, and from these the whole earth was populated. + +

+

Noah began to be a farmer, and planted a vineyard. + +He drank of the wine and got drunk. He was uncovered within his tent. + +Ham, the father of Canaan, saw the nakedness of his father, and told his two brothers outside. + +Shem and Japheth took a garment, and laid it on both their shoulders, went in backwards, and covered the nakedness of their father. Their faces were backwards, and they didn’t see their father’s nakedness. + +Noah awoke from his wine, and knew what his youngest son had done to him. + +He said, +

+Canaan is cursed. + +He will be a servant of servants to his brothers.” + + +

He said, +

+Blessed be Yahweh, the God of Shem. + +Let Canaan be his servant. + + +May God enlarge Japheth. + +Let him dwell in the tents of Shem. + +Let Canaan be his servant.” + + +

Noah lived three hundred fifty years after the flood. + +All the days of Noah were nine hundred fifty years, and then he died. + +

+ + +

Now this is the history of the generations of the sons of Noah and of Shem, Ham, and Japheth. Sons were born to them after the flood. + +

+

The sons of Japheth were: Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras. + +The sons of Gomer were: Ashkenaz, Riphath, and Togarmah. + +The sons of Javan were: Elishah, Tarshish, Kittim, and Dodanim. + +Of these were the islands of the nations divided in their lands, everyone after his language, after their families, in their nations. + +

+

The sons of Ham were: Cush, Mizraim, Put, and Canaan. + +The sons of Cush were: Seba, Havilah, Sabtah, Raamah, and Sabteca. The sons of Raamah were: Sheba and Dedan. + +Cush became the father of Nimrod. He began to be a mighty one on the earth. + +He was a mighty hunter before Yahweh. Therefore it is said, “like Nimrod, a mighty hunter before Yahweh”. + +The beginning of his kingdom was Babel, Erech, Accad, and Calneh, in the land of Shinar. + +Out of that land he went into Assyria, and built Nineveh, Rehoboth Ir, Calah, + +and Resen between Nineveh and the great city Calah. + +Mizraim became the father of Ludim, Anamim, Lehabim, Naphtuhim, + +Pathrusim, Casluhim (which the Philistines descended from), and Caphtorim. + +

+

Canaan became the father of Sidon (his firstborn), Heth, + +the Jebusites, the Amorites, the Girgashites, + +the Hivites, the Arkites, the Sinites, + +the Arvadites, the Zemarites, and the Hamathites. Afterward the families of the Canaanites were spread abroad. + +The border of the Canaanites was from Sidonas you go toward Gerarto Gazaas you go toward Sodom, Gomorrah, Admah, and Zeboiimto Lasha. + +These are the sons of Ham, after their families, according to their languages, in their lands and their nations. + +

+

Children were also born to Shem (the elder brother of Japheth), the father of all the children of Eber. + +The sons of Shem were: Elam, Asshur, Arpachshad, Lud, and Aram. + +The sons of Aram were: Uz, Hul, Gether, and Mash. + +Arpachshad became the father of Shelah. Shelah became the father of Eber. + +To Eber were born two sons. The name of the one was Peleg, for in his days the earth was divided. His brother’s name was Joktan. + +Joktan became the father of Almodad, Sheleph, Hazarmaveth, Jerah, + +Hadoram, Uzal, Diklah, + +Obal, Abimael, Sheba, + +Ophir, Havilah, and Jobab. All these were the sons of Joktan. + +Their dwelling extended from Mesha, as you go toward Sephar, the mountain of the east. + +These are the sons of Shem, by their families, according to their languages, lands, and nations. + +

+

These are the families of the sons of Noah, by their generations, according to their nations. The nations divided from these on the earth after the flood. + +

+ + +

The whole earth was of one language and of one speech. + +As they traveled east,11:2 +LXX reads “from the east”. they found a plain in the land of Shinar, and they lived there. + +They said to one another, “Come, let’s make bricks, and burn them thoroughly.” They had brick for stone, and they used tar for mortar. + +They said, “Come, let’s build ourselves a city, and a tower whose top reaches to the sky, and let’s make a name for ourselves, lest we be scattered abroad on the surface of the whole earth.” + +

+

Yahweh came down to see the city and the tower, which the children of men built. + +Yahweh said, “Behold, they are one people, and they all have one language, and this is what they begin to do. Now nothing will be withheld from them, which they intend to do. + +Come, let’s go down, and there confuse their language, that they may not understand one another’s speech.” + +So Yahweh scattered them abroad from there on the surface of all the earth. They stopped building the city. + +Therefore its name was called Babel, because there Yahweh confused the language of all the earth. From there, Yahweh scattered them abroad on the surface of all the earth. + +

+

This is the history of the generations of Shem: Shem was one hundred years old when he became the father of Arpachshad two years after the flood. + +Shem lived five hundred years after he became the father of Arpachshad, and became the father of more sons and daughters. + +

+

Arpachshad lived thirty-five years and became the father of Shelah. + +Arpachshad lived four hundred three years after he became the father of Shelah, and became the father of more sons and daughters. + +

+

Shelah lived thirty years, and became the father of Eber. + +Shelah lived four hundred three years after he became the father of Eber, and became the father of more sons and daughters. + +

+

Eber lived thirty-four years, and became the father of Peleg. + +Eber lived four hundred thirty years after he became the father of Peleg, and became the father of more sons and daughters. + +

+

Peleg lived thirty years, and became the father of Reu. + +Peleg lived two hundred nine years after he became the father of Reu, and became the father of more sons and daughters. + +

+

Reu lived thirty-two years, and became the father of Serug. + +Reu lived two hundred seven years after he became the father of Serug, and became the father of more sons and daughters. + +

+

Serug lived thirty years, and became the father of Nahor. + +Serug lived two hundred years after he became the father of Nahor, and became the father of more sons and daughters. + +

+

Nahor lived twenty-nine years, and became the father of Terah. + +Nahor lived one hundred nineteen years after he became the father of Terah, and became the father of more sons and daughters. + +

+

Terah lived seventy years, and became the father of Abram, Nahor, and Haran. + +

+

Now this is the history of the generations of Terah. Terah became the father of Abram, Nahor, and Haran. Haran became the father of Lot. + +Haran died in the land of his birth, in Ur of the Chaldees, while his father Terah was still alive. + +Abram and Nahor married wives. The name of Abram’s wife was Sarai, and the name of Nahor’s wife was Milcah, the daughter of Haran, who was also the father of Iscah. + +Sarai was barren. She had no child. + +Terah took Abram his son, Lot the son of Haran, his son’s son, and Sarai his daughter-in-law, his son Abram’s wife. They went from Ur of the Chaldees, to go into the land of Canaan. They came to Haran and lived there. + +The days of Terah were two hundred five years. Terah died in Haran. + +

+ + +

Now Yahweh said to Abram, “Leave your country, and your relatives, and your father’s house, and go to the land that I will show you. + +I will make of you a great nation. I will bless you and make your name great. You will be a blessing. + +I will bless those who bless you, and I will curse him who treats you with contempt. All the families of the earth will be blessed through you.” + +

+

So Abram went, as Yahweh had told him. Lot went with him. Abram was seventy-five years old when he departed from Haran. + +Abram took Sarai his wife, Lot his brother’s son, all their possessions that they had gathered, and the people whom they had acquired in Haran, and they went to go into the land of Canaan. They entered into the land of Canaan. + +Abram passed through the land to the place of Shechem, to the oak of Moreh. At that time, Canaanites were in the land. + +

+

Yahweh appeared to Abram and said, “I will give this land to your offspring.”12:7 +or, seed +

+

He built an altar there to Yahweh, who had appeared to him. + +He left from there to go to the mountain on the east of Bethel and pitched his tent, having Bethel on the west, and Ai on the east. There he built an altar to Yahweh and called on Yahweh’s name. + +Abram traveled, still going on toward the South. + +

+

There was a famine in the land. Abram went down into Egypt to live as a foreigner there, for the famine was severe in the land. + +When he had come near to enter Egypt, he said to Sarai his wife, “See now, I know that you are a beautiful woman to look at. + +It will happen that when the Egyptians see you, they will say, ‘This is his wife.’ They will kill me, but they will save you alive. + +Please say that you are my sister, that it may be well with me for your sake, and that my soul may live because of you.” + +

+

When Abram had come into Egypt, some Egyptians saw that the woman was very beautiful. + +The princes of Pharaoh saw her, and praised her to Pharaoh; and the woman was taken into Pharaoh’s house. + +He dealt well with Abram for her sake. He had sheep, cattle, male donkeys, male servants, female servants, female donkeys, and camels. + +Yahweh afflicted Pharaoh and his house with great plagues because of Sarai, Abram’s wife. + +Pharaoh called Abram and said, “What is this that you have done to me? Why didn’t you tell me that she was your wife? + +Why did you say, ‘She is my sister,’ so that I took her to be my wife? Now therefore, see your wife, take her, and go your way.” + +

+

Pharaoh commanded men concerning him, and they escorted him away with his wife and all that he had. + +

+ + +

Abram went up out of Egypthe, his wife, all that he had, and Lot with himinto the South. + +Abram was very rich in livestock, in silver, and in gold. + +He went on his journeys from the South as far as Bethel, to the place where his tent had been at the beginning, between Bethel and Ai, + +to the place of the altar, which he had made there at the first. There Abram called on Yahweh’s name. + +Lot also, who went with Abram, had flocks, herds, and tents. + +The land was not able to bear them, that they might live together; for their possessions were so great that they couldn’t live together. + +There was strife between the herdsmen of Abram’s livestock and the herdsmen of Lot’s livestock. The Canaanites and the Perizzites lived in the land at that time. + +Abram said to Lot, “Please, let there be no strife between you and me, and between your herdsmen and my herdsmen; for we are relatives. + +Isn’t the whole land before you? Please separate yourself from me. If you go to the left hand, then I will go to the right. Or if you go to the right hand, then I will go to the left.” + +

+

Lot lifted up his eyes, and saw all the plain of the Jordan, that it was well-watered everywhere, before Yahweh destroyed Sodom and Gomorrah, like the garden of Yahweh, like the land of Egypt, as you go to Zoar. + +So Lot chose the Plain of the Jordan for himself. Lot traveled east, and they separated themselves from one another. + +Abram lived in the land of Canaan, and Lot lived in the cities of the plain, and moved his tent as far as Sodom. + +Now the men of Sodom were exceedingly wicked and sinners against Yahweh. + +

+

Yahweh said to Abram, after Lot was separated from him, “Now, lift up your eyes, and look from the place where you are, northward and southward and eastward and westward, + +for I will give all the land which you see to you and to your offspring forever. + +I will make your offspring as the dust of the earth, so that if a man can count the dust of the earth, then your offspring may also be counted. + +Arise, walk through the land in its length and in its width; for I will give it to you.” + +

+

Abram moved his tent, and came and lived by the oaks of Mamre, which are in Hebron, and built an altar there to Yahweh. + +

+ + +

In the days of Amraphel, king of Shinar; Arioch, king of Ellasar; Chedorlaomer, king of Elam; and Tidal, king of Goiim, + +they made war with Bera, king of Sodom; Birsha, king of Gomorrah; Shinab, king of Admah; Shemeber, king of Zeboiim; and the king of Bela (also called Zoar). + +All these joined together in the valley of Siddim (also called the Salt Sea). + +They served Chedorlaomer for twelve years, and in the thirteenth year they rebelled. + +In the fourteenth year Chedorlaomer and the kings who were with him came and struck the Rephaim in Ashteroth Karnaim, the Zuzim in Ham, the Emim in Shaveh Kiriathaim, + +and the Horites in their Mount Seir, to El Paran, which is by the wilderness. + +They returned, and came to En Mishpat (also called Kadesh), and struck all the country of the Amalekites, and also the Amorites, that lived in Hazazon Tamar. + +The king of Sodom, and the king of Gomorrah, the king of Admah, the king of Zeboiim, and the king of Bela (also called Zoar) went out; and they set the battle in array against them in the valley of Siddim + +against Chedorlaomer king of Elam, Tidal king of Goiim, Amraphel king of Shinar, and Arioch king of Ellasar; four kings against the five. + +Now the valley of Siddim was full of tar pits; and the kings of Sodom and Gomorrah fled, and some fell there. Those who remained fled to the hills. + +They took all the goods of Sodom and Gomorrah, and all their food, and went their way. + +They took Lot, Abram’s brother’s son, who lived in Sodom, and his goods, and departed. + +

+

One who had escaped came and told Abram, the Hebrew. At that time, he lived by the oaks of Mamre, the Amorite, brother of Eshcol and brother of Aner. They were allies of Abram. + +When Abram heard that his relative was taken captive, he led out his three hundred eighteen trained men, born in his house, and pursued as far as Dan. + +He divided himself against them by night, he and his servants, and struck them, and pursued them to Hobah, which is on the left hand of Damascus. + +He brought back all the goods, and also brought back his relative Lot and his goods, and the women also, and the other people. + +

+

The king of Sodom went out to meet him after his return from the slaughter of Chedorlaomer and the kings who were with him, at the valley of Shaveh (that is, the King’s Valley). + +Melchizedek king of Salem brought out bread and wine. He was priest of God Most High. + +He blessed him, and said, “Blessed be Abram of God Most High, possessor of heaven and earth. + +Blessed be God Most High, who has delivered your enemies into your hand.” +

+

Abram gave him a tenth of all. + +

+

The king of Sodom said to Abram, “Give me the people, and take the goods for yourself.” + +

+

Abram said to the king of Sodom, “I have lifted up my hand to Yahweh, God Most High, possessor of heaven and earth, + +that I will not take a thread nor a sandal strap nor anything that is yours, lest you should say, ‘I have made Abram rich.’ + +I will accept nothing from you except that which the young men have eaten, and the portion of the men who went with me: Aner, Eshcol, and Mamre. Let them take their portion.” + +

+ + +

After these things Yahweh’s word came to Abram in a vision, saying, “Don’t be afraid, Abram. I am your shield, your exceedingly great reward.” + +

+

Abram said, “Lord15:2 +The word translated “Lord” is “Adonai”. Yahweh, what will you give me, since I go childless, and he who will inherit my estate is Eliezer of Damascus?” + +Abram said, “Behold, you have given no children to me: and, behold, one born in my house is my heir.” + +

+

Behold, Yahweh’s word came to him, saying, “This man will not be your heir, but he who will come out of your own body will be your heir.” + +Yahweh brought him outside, and said, “Look now toward the sky, and count the stars, if you are able to count them.” He said to Abram, “So your offspring will be.” + +He believed in Yahweh, who credited it to him for righteousness. + +He said to Abram, “I am Yahweh who brought you out of Ur of the Chaldees, to give you this land to inherit it.” + +

+

He said, “Lord Yahweh, how will I know that I will inherit it?” + +

+

He said to him, “Bring me a heifer three years old, a female goat three years old, a ram three years old, a turtledove, and a young pigeon.” + +He brought him all these, and divided them in the middle, and laid each half opposite the other; but he didn’t divide the birds. + +The birds of prey came down on the carcasses, and Abram drove them away. + +

+

When the sun was going down, a deep sleep fell on Abram. Now terror and great darkness fell on him. + +He said to Abram, “Know for sure that your offspring will live as foreigners in a land that is not theirs, and will serve them. They will afflict them four hundred years. + +I will also judge that nation, whom they will serve. Afterward they will come out with great wealth; + +but you will go to your fathers in peace. You will be buried at a good old age. + +In the fourth generation they will come here again, for the iniquity of the Amorite is not yet full.” + +It came to pass that, when the sun went down, and it was dark, behold, a smoking furnace and a flaming torch passed between these pieces. + +In that day Yahweh made a covenant with Abram, saying, “I have given this land to your offspring, from the river of Egypt to the great river, the river Euphrates: + +the land of the Kenites, the Kenizzites, the Kadmonites, + +the Hittites, the Perizzites, the Rephaim, + +the Amorites, the Canaanites, the Girgashites, and the Jebusites.” + +

+ + +

Now Sarai, Abram’s wife, bore him no children. She had a servant, an Egyptian, whose name was Hagar. + +Sarai said to Abram, “See now, Yahweh has restrained me from bearing. Please go in to my servant. It may be that I will obtain children by her.” Abram listened to the voice of Sarai. + +Sarai, Abram’s wife, took Hagar the Egyptian, her servant, after Abram had lived ten years in the land of Canaan, and gave her to Abram her husband to be his wife. + +He went in to Hagar, and she conceived. When she saw that she had conceived, her mistress was despised in her eyes. + +Sarai said to Abram, “This wrong is your fault. I gave my servant into your bosom, and when she saw that she had conceived, she despised me. May Yahweh judge between me and you.” + +

+

But Abram said to Sarai, “Behold, your maid is in your hand. Do to her whatever is good in your eyes.” Sarai dealt harshly with her, and she fled from her face. + +

+

Yahweh’s angel found her by a fountain of water in the wilderness, by the fountain on the way to Shur. + +He said, “Hagar, Sarai’s servant, where did you come from? Where are you going?” +

+

She said, “I am fleeing from the face of my mistress Sarai.” + +

+

Yahweh’s angel said to her, “Return to your mistress, and submit yourself under her hands.” + +Yahweh’s angel said to her, “I will greatly multiply your offspring, that they will not be counted for multitude.” + +Yahweh’s angel said to her, “Behold, you are with child, and will bear a son. You shall call his name Ishmael, because Yahweh has heard your affliction. + +He will be like a wild donkey among men. His hand will be against every man, and every man’s hand against him. He will live opposed to all of his brothers.” + +

+

She called the name of Yahweh who spoke to her, “You are a God who sees,” for she said, “Have I even stayed alive after seeing him?” + +Therefore the well was called Beer Lahai Roi.16:14 +Beer Lahai Roi means “well of the one who lives and sees me”. Behold, it is between Kadesh and Bered. + +

+

Hagar bore a son for Abram. Abram called the name of his son, whom Hagar bore, Ishmael. + +Abram was eighty-six years old when Hagar bore Ishmael to Abram. + +

+ + +

When Abram was ninety-nine years old, Yahweh appeared to Abram and said to him, “I am God Almighty. Walk before me and be blameless. + +I will make my covenant between me and you, and will multiply you exceedingly.” + +

+

Abram fell on his face. God talked with him, saying, + +As for me, behold, my covenant is with you. You will be the father of a multitude of nations. + +Your name will no more be called Abram, but your name will be Abraham; for I have made you the father of a multitude of nations. + +I will make you exceedingly fruitful, and I will make nations of you. Kings will come out of you. + +I will establish my covenant between me and you and your offspring after you throughout their generations for an everlasting covenant, to be a God to you and to your offspring after you. + +I will give to you, and to your offspring after you, the land where you are traveling, all the land of Canaan, for an everlasting possession. I will be their God.” + +

+

God said to Abraham, “As for you, you shall keep my covenant, you and your offspring after you throughout their generations. + +This is my covenant, which you shall keep, between me and you and your offspring after you. Every male among you shall be circumcised. + +You shall be circumcised in the flesh of your foreskin. It will be a token of the covenant between me and you. + +He who is eight days old shall be circumcised among you, every male throughout your generations, he who is born in the house, or bought with money from any foreigner who is not of your offspring. + +He who is born in your house, and he who is bought with your money, must be circumcised. My covenant shall be in your flesh for an everlasting covenant. + +The uncircumcised male who is not circumcised in the flesh of his foreskin, that soul shall be cut off from his people. He has broken my covenant.” + +

+

God said to Abraham, “As for Sarai your wife, you shall not call her name Sarai, but her name shall be Sarah. + +I will bless her, and moreover I will give you a son by her. Yes, I will bless her, and she will be a mother of nations. Kings of peoples will come from her.” + +

+

Then Abraham fell on his face, and laughed, and said in his heart, “Will a child be born to him who is one hundred years old? Will Sarah, who is ninety years old, give birth?” + +Abraham said to God, “Oh that Ishmael might live before you!” + +

+

God said, “No, but Sarah, your wife, will bear you a son. You shall call his name Isaac.17:19 +Isaac means “he laughs”. I will establish my covenant with him for an everlasting covenant for his offspring after him. + +As for Ishmael, I have heard you. Behold, I have blessed him, and will make him fruitful, and will multiply him exceedingly. He will become the father of twelve princes, and I will make him a great nation. + +But I will establish my covenant with Isaac, whom Sarah will bear to you at this set time next year.” + +

+

When he finished talking with him, God went up from Abraham. + +Abraham took Ishmael his son, all who were born in his house, and all who were bought with his money: every male among the men of Abraham’s house, and circumcised the flesh of their foreskin in the same day, as God had said to him. + +Abraham was ninety-nine years old when he was circumcised in the flesh of his foreskin. + +Ishmael, his son, was thirteen years old when he was circumcised in the flesh of his foreskin. + +In the same day both Abraham and Ishmael, his son, were circumcised. + +All the men of his house, those born in the house, and those bought with money from a foreigner, were circumcised with him. + +

+ + +

Yahweh appeared to him by the oaks of Mamre, as he sat in the tent door in the heat of the day. + +He lifted up his eyes and looked, and saw that three men stood near him. When he saw them, he ran to meet them from the tent door, and bowed himself to the earth, + +and said, “My lord, if now I have found favor in your sight, please don’t go away from your servant. + +Now let a little water be fetched, wash your feet, and rest yourselves under the tree. + +I will get a piece of bread so you can refresh your heart. After that you may go your way, now that you have come to your servant.” +

+

They said, “Very well, do as you have said.” + +

+

Abraham hurried into the tent to Sarah, and said, “Quickly prepare three seahs18:6 +1 seah is about 7 liters or 1.9 gallons or 0.8 pecks of fine meal, knead it, and make cakes.” + +Abraham ran to the herd, and fetched a tender and good calf, and gave it to the servant. He hurried to dress it. + +He took butter, milk, and the calf which he had dressed, and set it before them. He stood by them under the tree, and they ate. + +

+

They asked him, “Where is Sarah, your wife?” +

+

He said, “There, in the tent.” + +

+

He said, “I will certainly return to you at about this time next year; and behold, Sarah your wife will have a son.” +

+

Sarah heard in the tent door, which was behind him. + +Now Abraham and Sarah were old, well advanced in age. Sarah had passed the age of childbearing. + +Sarah laughed within herself, saying, “After I have grown old will I have pleasure, my lord being old also?” + +

+

Yahweh said to Abraham, “Why did Sarah laugh, saying, ‘Will I really bear a child when I am old?’ + +Is anything too hard for Yahweh? At the set time I will return to you, when the season comes around, and Sarah will have a son.” + +

+

Then Sarah denied it, saying, “I didn’t laugh,” for she was afraid. +

+

He said, “No, but you did laugh.” + +

+

The men rose up from there, and looked toward Sodom. Abraham went with them to see them on their way. + +Yahweh said, “Will I hide from Abraham what I do, + +since Abraham will surely become a great and mighty nation, and all the nations of the earth will be blessed in him? + +For I have known him, to the end that he may command his children and his household after him, that they may keep the way of Yahweh, to do righteousness and justice; to the end that Yahweh may bring on Abraham that which he has spoken of him.” + +Yahweh said, “Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous, + +I will go down now, and see whether their deeds are as bad as the reports which have come to me. If not, I will know.” + +

+

The men turned from there, and went toward Sodom, but Abraham stood yet before Yahweh. + +Abraham came near, and said, “Will you consume the righteous with the wicked? + +What if there are fifty righteous within the city? Will you consume and not spare the place for the fifty righteous who are in it? + +May it be far from you to do things like that, to kill the righteous with the wicked, so that the righteous should be like the wicked. May that be far from you. Shouldn’t the Judge of all the earth do right?” + +

+

Yahweh said, “If I find in Sodom fifty righteous within the city, then I will spare the whole place for their sake.” + +Abraham answered, “See now, I have taken it on myself to speak to the Lord, although I am dust and ashes. + +What if there will lack five of the fifty righteous? Will you destroy all the city for lack of five?” +

+

He said, “I will not destroy it if I find forty-five there.” + +

+

He spoke to him yet again, and said, “What if there are forty found there?” +

+

He said, “I will not do it for the forty’s sake.” + +

+

He said, “Oh don’t let the Lord be angry, and I will speak. What if there are thirty found there?” +

+

He said, “I will not do it if I find thirty there.” + +

+

He said, “See now, I have taken it on myself to speak to the Lord. What if there are twenty found there?” +

+

He said, “I will not destroy it for the twenty’s sake.” + +

+

He said, “Oh don’t let the Lord be angry, and I will speak just once more. What if ten are found there?” +

+

He said, “I will not destroy it for the ten’s sake.” + +

+

Yahweh went his way as soon as he had finished communing with Abraham, and Abraham returned to his place. + +

+ + +

The two angels came to Sodom at evening. Lot sat in the gate of Sodom. Lot saw them, and rose up to meet them. He bowed himself with his face to the earth, + +and he said, “See now, my lords, please come into your servant’s house, stay all night, wash your feet, and you can rise up early, and go on your way.” +

+

They said, “No, but we will stay in the street all night.” + +

+

He urged them greatly, and they came in with him, and entered into his house. He made them a feast, and baked unleavened bread, and they ate. + +But before they lay down, the men of the city, the men of Sodom, surrounded the house, both young and old, all the people from every quarter. + +They called to Lot, and said to him, “Where are the men who came in to you this night? Bring them out to us, that we may have sex with them.” + +

+

Lot went out to them through the door, and shut the door after himself. + +He said, “Please, my brothers, don’t act so wickedly. + +See now, I have two virgin daughters. Please let me bring them out to you, and you may do to them what seems good to you. Only don’t do anything to these men, because they have come under the shadow of my roof.” + +

+

They said, “Stand back!” Then they said, “This one fellow came in to live as a foreigner, and he appoints himself a judge. Now we will deal worse with you than with them!” They pressed hard on the man Lot, and came near to break the door. + +But the men reached out their hand, and brought Lot into the house to them, and shut the door. + +They struck the men who were at the door of the house with blindness, both small and great, so that they wearied themselves to find the door. + +

+

The men said to Lot, “Do you have anybody else here? Sons-in-law, your sons, your daughters, and whomever you have in the city, bring them out of the place: + +for we will destroy this place, because the outcry against them has grown so great before Yahweh that Yahweh has sent us to destroy it.” + +

+

Lot went out, and spoke to his sons-in-law, who were pledged to marry his daughters, and said, “Get up! Get out of this place, for Yahweh will destroy the city!” +

+

But he seemed to his sons-in-law to be joking. + +When the morning came, then the angels hurried Lot, saying, “Get up! Take your wife and your two daughters who are here, lest you be consumed in the iniquity of the city.” + +But he lingered; and the men grabbed his hand, his wife’s hand, and his two daughtershands, Yahweh being merciful to him; and they took him out, and set him outside of the city. + +It came to pass, when they had taken them out, that he said, “Escape for your life! Don’t look behind you, and don’t stay anywhere in the plain. Escape to the mountains, lest you be consumed!” + +

+

Lot said to them, “Oh, not so, my lord. + +See now, your servant has found favor in your sight, and you have magnified your loving kindness, which you have shown to me in saving my life. I can’t escape to the mountain, lest evil overtake me, and I die. + +See now, this city is near to flee to, and it is a little one. Oh let me escape there (isn’t it a little one?), and my soul will live.” + +

+

He said to him, “Behold, I have granted your request concerning this thing also, that I will not overthrow the city of which you have spoken. + +Hurry, escape there, for I can’t do anything until you get there.” Therefore the name of the city was called Zoar.19:22 +Zoar means “little”. + +

+

The sun had risen on the earth when Lot came to Zoar. + +Then Yahweh rained on Sodom and on Gomorrah sulfur and fire from Yahweh out of the sky. + +He overthrew those cities, all the plain, all the inhabitants of the cities, and that which grew on the ground. + +But Lot’s wife looked back from behind him, and she became a pillar of salt. + +

+

Abraham went up early in the morning to the place where he had stood before Yahweh. + +He looked toward Sodom and Gomorrah, and toward all the land of the plain, and saw that the smoke of the land went up as the smoke of a furnace. + +

+

When God destroyed the cities of the plain, God remembered Abraham, and sent Lot out of the middle of the overthrow, when he overthrew the cities in which Lot lived. + +

+

Lot went up out of Zoar, and lived in the mountain, and his two daughters with him; for he was afraid to live in Zoar. He lived in a cave with his two daughters. + +The firstborn said to the younger, “Our father is old, and there is not a man on the earth to come in to us in the way of all the earth. + +Come, let’s make our father drink wine, and we will lie with him, that we may preserve our father’s family line.” + +They made their father drink wine that night: and the firstborn went in, and lay with her father. He didn’t know when she lay down, nor when she arose. + +It came to pass on the next day, that the firstborn said to the younger, “Behold, I lay last night with my father. Let’s make him drink wine again tonight. You go in, and lie with him, that we may preserve our father’s family line.” + +They made their father drink wine that night also. The younger went and lay with him. He didn’t know when she lay down, nor when she got up. + +Thus both of Lot’s daughters were with child by their father. + +The firstborn bore a son, and named him Moab. He is the father of the Moabites to this day. + +The younger also bore a son, and called his name Ben Ammi. He is the father of the children of Ammon to this day. + +

+ + +

Abraham traveled from there toward the land of the South, and lived between Kadesh and Shur. He lived as a foreigner in Gerar. + +Abraham said about Sarah his wife, “She is my sister.” Abimelech king of Gerar sent, and took Sarah. + +But God came to Abimelech in a dream of the night, and said to him, “Behold, you are a dead man, because of the woman whom you have taken; for she is a man’s wife.” + +

+

Now Abimelech had not come near her. He said, “Lord, will you kill even a righteous nation? + +Didn’t he tell me, ‘She is my sister’? She, even she herself, said, ‘He is my brother.’ I have done this in the integrity of my heart and the innocence of my hands.” + +

+

God said to him in the dream, “Yes, I know that in the integrity of your heart you have done this, and I also withheld you from sinning against me. Therefore I didn’t allow you to touch her. + +Now therefore, restore the man’s wife. For he is a prophet, and he will pray for you, and you will live. If you don’t restore her, know for sure that you will die, you, and all who are yours.” + +

+

Abimelech rose early in the morning, and called all his servants, and told all these things in their ear. The men were very scared. + +Then Abimelech called Abraham, and said to him, “What have you done to us? How have I sinned against you, that you have brought on me and on my kingdom a great sin? You have done deeds to me that ought not to be done!” + +Abimelech said to Abraham, “What did you see, that you have done this thing?” + +

+

Abraham said, “Because I thought, ‘Surely the fear of God is not in this place. They will kill me for my wife’s sake.’ + +Besides, she is indeed my sister, the daughter of my father, but not the daughter of my mother; and she became my wife. + +When God caused me to wander from my father’s house, I said to her, ‘This is your kindness which you shall show to me. Everywhere that we go, say of me, “He is my brother.”’” + +

+

Abimelech took sheep and cattle, male servants and female servants, and gave them to Abraham, and restored Sarah, his wife, to him. + +Abimelech said, “Behold, my land is before you. Dwell where it pleases you.” + +To Sarah he said, “Behold, I have given your brother a thousand pieces of silver. Behold, it is for you a covering of the eyes to all that are with you. In front of all you are vindicated.” + +

+

Abraham prayed to God. So God healed Abimelech, his wife, and his female servants, and they bore children. + +For Yahweh had closed up tight all the wombs of the house of Abimelech, because of Sarah, Abraham’s wife. + +

+ + +

Yahweh visited Sarah as he had said, and Yahweh did to Sarah as he had spoken. + +Sarah conceived, and bore Abraham a son in his old age, at the set time of which God had spoken to him. + +Abraham called his son who was born to him, whom Sarah bore to him, Isaac.21:3 +Isaac means “He laughs”. + +Abraham circumcised his son, Isaac, when he was eight days old, as God had commanded him. + +Abraham was one hundred years old when his son, Isaac, was born to him. + +Sarah said, “God has made me laugh. Everyone who hears will laugh with me.” + +She said, “Who would have said to Abraham that Sarah would nurse children? For I have borne him a son in his old age.” + +

+

The child grew and was weaned. Abraham made a great feast on the day that Isaac was weaned. + +Sarah saw the son of Hagar the Egyptian, whom she had borne to Abraham, mocking. + +Therefore she said to Abraham, “Cast out this servant and her son! For the son of this servant will not be heir with my son, Isaac.” + +

+

The thing was very grievous in Abraham’s sight on account of his son. + +God said to Abraham, “Don’t let it be grievous in your sight because of the boy, and because of your servant. In all that Sarah says to you, listen to her voice. For your offspring will be named through Isaac. + +I will also make a nation of the son of the servant, because he is your child.” + +Abraham rose up early in the morning, and took bread and a container of water, and gave it to Hagar, putting it on her shoulder; and gave her the child, and sent her away. She departed, and wandered in the wilderness of Beersheba. + +The water in the container was spent, and she put the child under one of the shrubs. + +She went and sat down opposite him, a good way off, about a bow shot away. For she said, “Don’t let me see the death of the child.” She sat opposite him, and lifted up her voice, and wept. + +God heard the voice of the boy. +

+

The angel of God called to Hagar out of the sky, and said to her, “What troubles you, Hagar? Don’t be afraid. For God has heard the voice of the boy where he is. + +Get up, lift up the boy, and hold him with your hand. For I will make him a great nation.” + +

+

God opened her eyes, and she saw a well of water. She went, filled the container with water, and gave the boy a drink. + +

+

God was with the boy, and he grew. He lived in the wilderness, and as he grew up, he became an archer. + +He lived in the wilderness of Paran. His mother got a wife for him out of the land of Egypt. + +

+

At that time, Abimelech and Phicol the captain of his army spoke to Abraham, saying, “God is with you in all that you do. + +Now, therefore, swear to me here by God that you will not deal falsely with me, nor with my son, nor with my son’s son. But according to the kindness that I have done to you, you shall do to me, and to the land in which you have lived as a foreigner.” + +

+

Abraham said, “I will swear.” + +Abraham complained to Abimelech because of a water well, which Abimelech’s servants had violently taken away. + +Abimelech said, “I don’t know who has done this thing. You didn’t tell me, and I didn’t hear of it until today.” + +

+

Abraham took sheep and cattle, and gave them to Abimelech. Those two made a covenant. + +Abraham set seven ewe lambs of the flock by themselves. + +Abimelech said to Abraham, “What do these seven ewe lambs, which you have set by themselves, mean?” + +

+

He said, “You shall take these seven ewe lambs from my hand, that it may be a witness to me, that I have dug this well.” + +Therefore he called that place Beersheba,21:31 +Beersheba can mean “well of the oath” or “well of seven”. because they both swore an oath there. + +So they made a covenant at Beersheba. Abimelech rose up with Phicol, the captain of his army, and they returned into the land of the Philistines. + +Abraham planted a tamarisk tree in Beersheba, and there he called on the name of Yahweh, the Everlasting God. + +Abraham lived as a foreigner in the land of the Philistines many days. + +

+ + +

After these things, God tested Abraham, and said to him, “Abraham!” +

+

He said, “Here I am.” + +

+

He said, “Now take your son, your only son, Isaac, whom you love, and go into the land of Moriah. Offer him there as a burnt offering on one of the mountains which I will tell you of.” + +

+

Abraham rose early in the morning, and saddled his donkey; and took two of his young men with him, and Isaac his son. He split the wood for the burnt offering, and rose up, and went to the place of which God had told him. + +On the third day Abraham lifted up his eyes, and saw the place far off. + +Abraham said to his young men, “Stay here with the donkey. The boy and I will go over there. We will worship, and come back to you.” + +Abraham took the wood of the burnt offering and laid it on Isaac his son. He took in his hand the fire and the knife. They both went together. + +Isaac spoke to Abraham his father, and said, “My father?” +

+

He said, “Here I am, my son.” +

+

He said, “Here is the fire and the wood, but where is the lamb for a burnt offering?” + +

+

Abraham said, “God will provide himself the lamb for a burnt offering, my son.” So they both went together. + +They came to the place which God had told him of. Abraham built the altar there, and laid the wood in order, bound Isaac his son, and laid him on the altar, on the wood. + +Abraham stretched out his hand, and took the knife to kill his son. + +

+

Yahweh’s angel called to him out of the sky, and said, “Abraham, Abraham!” +

+

He said, “Here I am.” + +

+

He said, “Don’t lay your hand on the boy or do anything to him. For now I know that you fear God, since you have not withheld your son, your only son, from me.” + +

+

Abraham lifted up his eyes, and looked, and saw that behind him was a ram caught in the thicket by his horns. Abraham went and took the ram, and offered him up for a burnt offering instead of his son. + +Abraham called the name of that placeYahweh Will Provide”.22:14 +or, Yahweh-Jireh, or, Yahweh-Seeing As it is said to this day, “On Yahweh’s mountain, it will be provided.” + +

+

Yahweh’s angel called to Abraham a second time out of the sky, + +and said, “‘I have sworn by myself,’ says Yahweh, ‘because you have done this thing, and have not withheld your son, your only son, + +that I will bless you greatly, and I will multiply your offspring greatly like the stars of the heavens, and like the sand which is on the seashore. Your offspring will possess the gate of his enemies. + +All the nations of the earth will be blessed by your offspring, because you have obeyed my voice.’” + +

+

So Abraham returned to his young men, and they rose up and went together to Beersheba. Abraham lived at Beersheba. + +

+

After these things, Abraham was told, “Behold, Milcah, she also has borne children to your brother Nahor: + +Uz his firstborn, Buz his brother, Kemuel the father of Aram, + +Chesed, Hazo, Pildash, Jidlaph, and Bethuel.” + +Bethuel became the father of Rebekah. These eight Milcah bore to Nahor, Abraham’s brother. + +His concubine, whose name was Reumah, also bore Tebah, Gaham, Tahash, and Maacah. + +

+ + +

Sarah lived one hundred twenty-seven years. This was the length of Sarah’s life. + +Sarah died in Kiriath Arba (also called Hebron), in the land of Canaan. Abraham came to mourn for Sarah, and to weep for her. + +Abraham rose up from before his dead and spoke to the children of Heth, saying, + +I am a stranger and a foreigner living with you. Give me a possession of a burying-place with you, that I may bury my dead out of my sight.” + +

+

The children of Heth answered Abraham, saying to him, + +Hear us, my lord. You are a prince of God among us. Bury your dead in the best of our tombs. None of us will withhold from you his tomb. Bury your dead.” + +

+

Abraham rose up, and bowed himself to the people of the land, to the children of Heth. + +He talked with them, saying, “If you agree that I should bury my dead out of my sight, hear me, and entreat for me to Ephron the son of Zohar, + +that he may sell me the cave of Machpelah, which he has, which is in the end of his field. For the full price let him sell it to me among you as a possession for a burial place.” + +

+

Now Ephron was sitting in the middle of the children of Heth. Ephron the Hittite answered Abraham in the hearing of the children of Heth, even of all who went in at the gate of his city, saying, + +No, my lord, hear me. I give you the field, and I give you the cave that is in it. In the presence of the children of my people I give it to you. Bury your dead.” + +

+

Abraham bowed himself down before the people of the land. + +He spoke to Ephron in the audience of the people of the land, saying, “But if you will, please hear me. I will give the price of the field. Take it from me, and I will bury my dead there.” + +

+

Ephron answered Abraham, saying to him, + +My lord, listen to me. What is a piece of land worth four hundred shekels of silver23:15 +A shekel is about 10 grams, so 400 shekels would be about 4 kg. or 8.8 pounds. between me and you? Therefore bury your dead.” + +

+

Abraham listened to Ephron. Abraham weighed to Ephron the silver which he had named in the hearing of the children of Heth, four hundred shekels of silver, according to the current merchantsstandard. + +

+

So the field of Ephron, which was in Machpelah, which was before Mamre, the field, the cave which was in it, and all the trees that were in the field, that were in all of its borders, were deeded + +to Abraham for a possession in the presence of the children of Heth, before all who went in at the gate of his city. + +After this, Abraham buried Sarah his wife in the cave of the field of Machpelah before Mamre (that is, Hebron), in the land of Canaan. + +The field, and the cave that is in it, were deeded to Abraham by the children of Heth as a possession for a burial place. + +

+ + +

Abraham was old, and well advanced in age. Yahweh had blessed Abraham in all things. + +Abraham said to his servant, the elder of his house, who ruled over all that he had, “Please put your hand under my thigh. + +I will make you swear by Yahweh, the God of heaven and the God of the earth, that you shall not take a wife for my son of the daughters of the Canaanites, among whom I live. + +But you shall go to my country, and to my relatives, and take a wife for my son Isaac.” + +

+

The servant said to him, “What if the woman isn’t willing to follow me to this land? Must I bring your son again to the land you came from?” + +

+

Abraham said to him, “Beware that you don’t bring my son there again. + +Yahweh, the God of heavenwho took me from my father’s house, and from the land of my birth, who spoke to me, and who swore to me, saying, ‘I will give this land to your offspringhe will send his angel before you, and you shall take a wife for my son from there. + +If the woman isn’t willing to follow you, then you shall be clear from this oath to me. Only you shall not bring my son there again.” + +

+

The servant put his hand under the thigh of Abraham his master, and swore to him concerning this matter. + +The servant took ten of his master’s camels, and departed, having a variety of good things of his master’s with him. He arose, and went to Mesopotamia, to the city of Nahor. + +He made the camels kneel down outside the city by the well of water at the time of evening, the time that women go out to draw water. + +He said, “Yahweh, the God of my master Abraham, please give me success today, and show kindness to my master Abraham. + +Behold, I am standing by the spring of water. The daughters of the men of the city are coming out to draw water. + +Let it happen, that the young lady to whom I will say, ‘Please let down your pitcher, that I may drink,’ then she says, ‘Drink, and I will also give your camels a drink,’—let her be the one you have appointed for your servant Isaac. By this I will know that you have shown kindness to my master.” + +

+

Before he had finished speaking, behold, Rebekah came out, who was born to Bethuel the son of Milcah, the wife of Nahor, Abraham’s brother, with her pitcher on her shoulder. + +The young lady was very beautiful to look at, a virgin. No man had known her. She went down to the spring, filled her pitcher, and came up. + +The servant ran to meet her, and said, “Please give me a drink, a little water from your pitcher.” + +

+

She said, “Drink, my lord.” She hurried, and let down her pitcher on her hand, and gave him a drink. + +When she had finished giving him a drink, she said, “I will also draw for your camels, until they have finished drinking.” + +She hurried, and emptied her pitcher into the trough, and ran again to the well to draw, and drew for all his camels. + +

+

The man looked steadfastly at her, remaining silent, to know whether Yahweh had made his journey prosperous or not. + +As the camels had finished drinking, the man took a golden ring of half a shekel24:22 +A shekel is about 10 grams or about 0.35 ounces. weight, and two bracelets for her hands of ten shekels weight of gold, + +and said, “Whose daughter are you? Please tell me. Is there room in your father’s house for us to stay?” + +

+

She said to him, “I am the daughter of Bethuel the son of Milcah, whom she bore to Nahor.” + +She said moreover to him, “We have both straw and feed enough, and room to lodge in.” + +

+

The man bowed his head, and worshiped Yahweh. + +He said, “Blessed be Yahweh, the God of my master Abraham, who has not forsaken his loving kindness and his truth toward my master. As for me, Yahweh has led me on the way to the house of my master’s relatives.” + +

+

The young lady ran, and told her mother’s house about these words. + +Rebekah had a brother, and his name was Laban. Laban ran out to the man, to the spring. + +When he saw the ring, and the bracelets on his sister’s hands, and when he heard the words of Rebekah his sister, saying, “This is what the man said to me,” he came to the man. Behold, he was standing by the camels at the spring. + +He said, “Come in, you blessed of Yahweh. Why do you stand outside? For I have prepared the house, and room for the camels.” + +

+

The man came into the house, and he unloaded the camels. He gave straw and feed for the camels, and water to wash his feet and the feet of the men who were with him. + +Food was set before him to eat, but he said, “I will not eat until I have told my message.” +

+

Laban said, “Speak on.” + +

+

He said, “I am Abraham’s servant. + +Yahweh has blessed my master greatly. He has become great. Yahweh has given him flocks and herds, silver and gold, male servants and female servants, and camels and donkeys. + +Sarah, my master’s wife, bore a son to my master when she was old. He has given all that he has to him. + +My master made me swear, saying, ‘You shall not take a wife for my son from the daughters of the Canaanites, in whose land I live, + +but you shall go to my father’s house, and to my relatives, and take a wife for my son.’ + +I asked my master, ‘What if the woman will not follow me?’ + +He said to me, ‘Yahweh, before whom I walk, will send his angel with you, and prosper your way. You shall take a wife for my son from my relatives, and of my father’s house. + +Then you will be clear from my oath, when you come to my relatives. If they don’t give her to you, you shall be clear from my oath.’ + +I came today to the spring, and said, ‘Yahweh, the God of my master Abraham, if now you do prosper my way which I go— + +behold, I am standing by this spring of water. Let it happen, that the maiden who comes out to draw, to whom I will say, “Please give me a little water from your pitcher to drink,” + +then she tells me, “Drink, and I will also draw for your camels,”—let her be the woman whom Yahweh has appointed for my master’s son.’ + +Before I had finished speaking in my heart, behold, Rebekah came out with her pitcher on her shoulder. She went down to the spring, and drew. I said to her, ‘Please let me drink.’ + +She hurried and let down her pitcher from her shoulder, and said, ‘Drink, and I will also give your camels a drink.’ So I drank, and she also gave the camels a drink. + +I asked her, and said, ‘Whose daughter are you?’ She said, ‘The daughter of Bethuel, Nahor’s son, whom Milcah bore to him.’ I put the ring on her nose, and the bracelets on her hands. + +I bowed my head, and worshiped Yahweh, and blessed Yahweh, the God of my master Abraham, who had led me in the right way to take my master’s brother’s daughter for his son. + +Now if you will deal kindly and truly with my master, tell me. If not, tell me, that I may turn to the right hand, or to the left.” + +

+

Then Laban and Bethuel answered, “The thing proceeds from Yahweh. We can’t speak to you bad or good. + +Behold, Rebekah is before you. Take her, and go, and let her be your master’s son’s wife, as Yahweh has spoken.” + +

+

When Abraham’s servant heard their words, he bowed himself down to the earth to Yahweh. + +The servant brought out jewels of silver, and jewels of gold, and clothing, and gave them to Rebekah. He also gave precious things to her brother and her mother. + +They ate and drank, he and the men who were with him, and stayed all night. They rose up in the morning, and he said, “Send me away to my master.” + +

+

Her brother and her mother said, “Let the young lady stay with us a few days, at least ten. After that she will go.” + +

+

He said to them, “Don’t hinder me, since Yahweh has prospered my way. Send me away that I may go to my master.” + +

+

They said, “We will call the young lady, and ask her.” + +They called Rebekah, and said to her, “Will you go with this man?” +

+

She said, “I will go.” + +

+

They sent away Rebekah, their sister, with her nurse, Abraham’s servant, and his men. + +They blessed Rebekah, and said to her, “Our sister, may you be the mother of thousands of ten thousands, and let your offspring possess the gate of those who hate them.” + +

+

Rebekah arose with her ladies. They rode on the camels, and followed the man. The servant took Rebekah, and went his way. + +Isaac came from the way of Beer Lahai Roi, for he lived in the land of the South. + +Isaac went out to meditate in the field at the evening. He lifted up his eyes and looked. Behold, there were camels coming. + +Rebekah lifted up her eyes, and when she saw Isaac, she got off the camel. + +She said to the servant, “Who is the man who is walking in the field to meet us?” +

+

The servant said, “It is my master.” +

+

She took her veil, and covered herself. + +The servant told Isaac all the things that he had done. + +Isaac brought her into his mother Sarah’s tent, and took Rebekah, and she became his wife. He loved her. So Isaac was comforted after his mother’s death. + +

+ + +

Abraham took another wife, and her name was Keturah. + +She bore him Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah. + +Jokshan became the father of Sheba, and Dedan. The sons of Dedan were Asshurim, Letushim, and Leummim. + +The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah. All these were the children of Keturah. + +Abraham gave all that he had to Isaac, + +but Abraham gave gifts to the sons of Abraham’s concubines. While he still lived, he sent them away from Isaac his son, eastward, to the east country. + +These are the days of the years of Abraham’s life which he lived: one hundred seventy-five years. + +Abraham gave up his spirit, and died at a good old age, an old man, and full of years, and was gathered to his people. + +Isaac and Ishmael, his sons, buried him in the cave of Machpelah, in the field of Ephron, the son of Zohar the Hittite, which is near Mamre, + +the field which Abraham purchased from the children of Heth. Abraham was buried there with Sarah, his wife. + +After the death of Abraham, God blessed Isaac, his son. Isaac lived by Beer Lahai Roi. + +

+

Now this is the history of the generations of Ishmael, Abraham’s son, whom Hagar the Egyptian, Sarah’s servant, bore to Abraham. + +These are the names of the sons of Ishmael, by their names, according to the order of their birth: the firstborn of Ishmael, Nebaioth, then Kedar, Adbeel, Mibsam, + +Mishma, Dumah, Massa, + +Hadad, Tema, Jetur, Naphish, and Kedemah. + +These are the sons of Ishmael, and these are their names, by their villages, and by their encampments: twelve princes, according to their nations. + +These are the years of the life of Ishmael: one hundred thirty-seven years. He gave up his spirit and died, and was gathered to his people. + +They lived from Havilah to Shur that is before Egypt, as you go toward Assyria. He lived opposite all his relatives. + +

+

This is the history of the generations of Isaac, Abraham’s son. Abraham became the father of Isaac. + +Isaac was forty years old when he took Rebekah, the daughter of Bethuel the Syrian of Paddan Aram, the sister of Laban the Syrian, to be his wife. + +Isaac entreated Yahweh for his wife, because she was barren. Yahweh was entreated by him, and Rebekah his wife conceived. + +The children struggled together within her. She said, “If it is like this, why do I live?” She went to inquire of Yahweh. + +Yahweh said to her, +

+Two nations are in your womb. + +Two peoples will be separated from your body. + +The one people will be stronger than the other people. + +The elder will serve the younger.” + + +

When her days to be delivered were fulfilled, behold, there were twins in her womb. + +The first came out red all over, like a hairy garment. They named him Esau. + +After that, his brother came out, and his hand had hold on Esau’s heel. He was named Jacob. Isaac was sixty years old when she bore them. + +

+

The boys grew. Esau was a skillful hunter, a man of the field. Jacob was a quiet man, living in tents. + +Now Isaac loved Esau, because he ate his venison. Rebekah loved Jacob. + +Jacob boiled stew. Esau came in from the field, and he was famished. + +Esau said to Jacob, “Please feed me with some of that red stew, for I am famished.” Therefore his name was called Edom.25:30 +“Edom” means “red”. + +

+

Jacob said, “First, sell me your birthright.” + +

+

Esau said, “Behold, I am about to die. What good is the birthright to me?” + +

+

Jacob said, “Swear to me first.” +

+

He swore to him. He sold his birthright to Jacob. + +Jacob gave Esau bread and lentil stew. He ate and drank, rose up, and went his way. So Esau despised his birthright. + +

+ + +

There was a famine in the land, in addition to the first famine that was in the days of Abraham. Isaac went to Abimelech king of the Philistines, to Gerar. + +Yahweh appeared to him, and said, “Don’t go down into Egypt. Live in the land I will tell you about. + +Live in this land, and I will be with you, and will bless you. For I will give to you, and to your offspring, all these lands, and I will establish the oath which I swore to Abraham your father. + +I will multiply your offspring as the stars of the sky, and will give all these lands to your offspring. In your offspring all the nations of the earth will be blessed, + +because Abraham obeyed my voice, and kept my requirements, my commandments, my statutes, and my laws.” + +

+

Isaac lived in Gerar. + +The men of the place asked him about his wife. He said, “She is my sister,” for he was afraid to say, “My wife”, lest, he thought, “the men of the place might kill me for Rebekah, because she is beautiful to look at.” + +When he had been there a long time, Abimelech king of the Philistines looked out at a window, and saw, and, behold, Isaac was caressing Rebekah, his wife. + +Abimelech called Isaac, and said, “Behold, surely she is your wife. Why did you say, ‘She is my sister’?” +

+

Isaac said to him, “Because I said, ‘Lest I die because of her.’” + +

+

Abimelech said, “What is this you have done to us? One of the people might easily have lain with your wife, and you would have brought guilt on us!” + +

+

Abimelech commanded all the people, saying, “He who touches this man or his wife will surely be put to death.” + +

+

Isaac sowed in that land, and reaped in the same year one hundred times what he planted. Yahweh blessed him. + +The man grew great, and grew more and more until he became very great. + +He had possessions of flocks, possessions of herds, and a great household. The Philistines envied him. + +Now all the wells which his father’s servants had dug in the days of Abraham his father, the Philistines had stopped, and filled with earth. + +Abimelech said to Isaac, “Go away from us, for you are much mightier than we.” + +

+

Isaac departed from there, encamped in the valley of Gerar, and lived there. + +

+

Isaac dug again the wells of water, which they had dug in the days of Abraham his father, for the Philistines had stopped them after the death of Abraham. He called their names after the names by which his father had called them. + +Isaac’s servants dug in the valley, and found there a well of flowing26:19 +Or, living. Or, fresh. water. + +The herdsmen of Gerar argued with Isaac’s herdsmen, saying, “The water is ours.” So he called the name of the well Esek,26:20 +“Esek” means “contention”. because they contended with him. + +They dug another well, and they argued over that, also. So he called its name Sitnah.26:21 +“Sitnah” means “hostility”. + +He left that place, and dug another well. They didn’t argue over that one. So he called it Rehoboth.26:22 +“Rehoboth” means “broad places”. He said, “For now Yahweh has made room for us, and we will be fruitful in the land.” + +

+

He went up from there to Beersheba. + +Yahweh appeared to him the same night, and said, “I am the God of Abraham your father. Don’t be afraid, for I am with you, and will bless you, and multiply your offspring for my servant Abraham’s sake.” + +

+

He built an altar there, and called on Yahweh’s name, and pitched his tent there. There Isaac’s servants dug a well. + +

+

Then Abimelech went to him from Gerar with Ahuzzath his friend, and Phicol the captain of his army. + +Isaac said to them, “Why have you come to me, since you hate me, and have sent me away from you?” + +

+

They said, “We saw plainly that Yahweh was with you. We said, ‘Let there now be an oath between us, even between us and you, and let’s make a covenant with you, + +that you will do us no harm, as we have not touched you, and as we have done to you nothing but good, and have sent you away in peace.’ You are now the blessed of Yahweh.” + +

+

He made them a feast, and they ate and drank. + +They rose up some time in the morning, and swore an oath to one another. Isaac sent them away, and they departed from him in peace. + +The same day, Isaac’s servants came, and told him concerning the well which they had dug, and said to him, “We have found water.” + +He called itShibah”.26:33 +Shibah means “oath” or “seven”. Therefore the name of the city is “Beersheba”26:33 +Beersheba means “well of the oath” or “well of the seven” to this day. + +

+

When Esau was forty years old, he took as wife Judith, the daughter of Beeri the Hittite, and Basemath, the daughter of Elon the Hittite. + +They grieved Isaac’s and Rebekah’s spirits. + +

+ + +

When Isaac was old, and his eyes were dim, so that he could not see, he called Esau his elder son, and said to him, “My son?” +

+

He said to him, “Here I am.” + +

+

He said, “See now, I am old. I don’t know the day of my death. + +Now therefore, please take your weapons, your quiver and your bow, and go out to the field, and get me venison. + +Make me savory food, such as I love, and bring it to me, that I may eat, and that my soul may bless you before I die.” + +

+

Rebekah heard when Isaac spoke to Esau his son. Esau went to the field to hunt for venison, and to bring it. + +Rebekah spoke to Jacob her son, saying, “Behold, I heard your father speak to Esau your brother, saying, + +Bring me venison, and make me savory food, that I may eat, and bless you before Yahweh before my death.’ + +Now therefore, my son, obey my voice according to that which I command you. + +Go now to the flock and get me two good young goats from there. I will make them savory food for your father, such as he loves. + +You shall bring it to your father, that he may eat, so that he may bless you before his death.” + +

+

Jacob said to Rebekah his mother, “Behold, Esau my brother is a hairy man, and I am a smooth man. + +What if my father touches me? I will seem to him as a deceiver, and I would bring a curse on myself, and not a blessing.” + +

+

His mother said to him, “Let your curse be on me, my son. Only obey my voice, and go get them for me.” + +

+

He went, and got them, and brought them to his mother. His mother made savory food, such as his father loved. + +Rebekah took the good clothes of Esau, her elder son, which were with her in the house, and put them on Jacob, her younger son. + +She put the skins of the young goats on his hands, and on the smooth of his neck. + +She gave the savory food and the bread, which she had prepared, into the hand of her son Jacob. + +

+

He came to his father, and said, “My father?” +

+

He said, “Here I am. Who are you, my son?” + +

+

Jacob said to his father, “I am Esau your firstborn. I have done what you asked me to do. Please arise, sit and eat of my venison, that your soul may bless me.” + +

+

Isaac said to his son, “How is it that you have found it so quickly, my son?” +

+

He said, “Because Yahweh your God gave me success.” + +

+

Isaac said to Jacob, “Please come near, that I may feel you, my son, whether you are really my son Esau or not.” + +

+

Jacob went near to Isaac his father. He felt him, and said, “The voice is Jacob’s voice, but the hands are the hands of Esau.” + +He didn’t recognize him, because his hands were hairy, like his brother Esau’s hands. So he blessed him. + +He said, “Are you really my son Esau?” +

+

He said, “I am.” + +

+

He said, “Bring it near to me, and I will eat of my son’s venison, that my soul may bless you.” +

+

He brought it near to him, and he ate. He brought him wine, and he drank. + +His father Isaac said to him, “Come near now, and kiss me, my son.” + +He came near, and kissed him. He smelled the smell of his clothing, and blessed him, and said, +

+Behold, the smell of my son + +is as the smell of a field which Yahweh has blessed. + + +God give you of the dew of the sky, + +of the fatness of the earth, + +and plenty of grain and new wine. + + +Let peoples serve you, + +and nations bow down to you. + +Be lord over your brothers. + +Let your mother’s sons bow down to you. + +Cursed be everyone who curses you. + +Blessed be everyone who blesses you.” + + +

As soon as Isaac had finished blessing Jacob, and Jacob had just gone out from the presence of Isaac his father, Esau his brother came in from his hunting. + +He also made savory food, and brought it to his father. He said to his father, “Let my father arise, and eat of his son’s venison, that your soul may bless me.” + +

+

Isaac his father said to him, “Who are you?” +

+

He said, “I am your son, your firstborn, Esau.” + +

+

Isaac trembled violently, and said, “Who, then, is he who has taken venison, and brought it to me, and I have eaten of all before you came, and have blessed him? Yes, he will be blessed.” + +

+

When Esau heard the words of his father, he cried with an exceedingly great and bitter cry, and said to his father, “Bless me, even me also, my father.” + +

+

He said, “Your brother came with deceit, and has taken away your blessing.” + +

+

He said, “Isn’t he rightly named Jacob? For he has supplanted me these two times. He took away my birthright. See, now he has taken away my blessing.” He said, “Haven’t you reserved a blessing for me?” + +

+

Isaac answered Esau, “Behold, I have made him your lord, and all his brothers I have given to him for servants. I have sustained him with grain and new wine. What then will I do for you, my son?” + +

+

Esau said to his father, “Do you have just one blessing, my father? Bless me, even me also, my father.” Esau lifted up his voice, and wept. + +

+

Isaac his father answered him, +

+Behold, your dwelling will be of the fatness of the earth, + +and of the dew of the sky from above. + + +You will live by your sword, and you will serve your brother. + +It will happen, when you will break loose, + +that you will shake his yoke from off your neck.” + + +

Esau hated Jacob because of the blessing with which his father blessed him. Esau said in his heart, “The days of mourning for my father are at hand. Then I will kill my brother Jacob.” + +

+

The words of Esau, her elder son, were told to Rebekah. She sent and called Jacob, her younger son, and said to him, “Behold, your brother Esau comforts himself about you by planning to kill you. + +Now therefore, my son, obey my voice. Arise, flee to Laban, my brother, in Haran. + +Stay with him a few days, until your brother’s fury turns away— + +until your brother’s anger turns away from you, and he forgets what you have done to him. Then I will send, and get you from there. Why should I be bereaved of you both in one day?” + +

+

Rebekah said to Isaac, “I am weary of my life because of the daughters of Heth. If Jacob takes a wife of the daughters of Heth, such as these, of the daughters of the land, what good will my life do me?” + +

+ + +

Isaac called Jacob, blessed him, and commanded him, “You shall not take a wife of the daughters of Canaan. + +Arise, go to Paddan Aram, to the house of Bethuel your mother’s father. Take a wife from there from the daughters of Laban, your mother’s brother. + +May God Almighty bless you, and make you fruitful, and multiply you, that you may be a company of peoples, + +and give you the blessing of Abraham, to you and to your offspring with you, that you may inherit the land where you travel, which God gave to Abraham.” + +

+

Isaac sent Jacob away. He went to Paddan Aram to Laban, son of Bethuel the Syrian, the brother of Rebekah, Jacob’s and Esau’s mother. + +

+

Now Esau saw that Isaac had blessed Jacob and sent him away to Paddan Aram, to take him a wife from there, and that as he blessed him he gave him a command, saying, “You shall not take a wife of the daughters of Canaan;” + +and that Jacob obeyed his father and his mother, and was gone to Paddan Aram. + +Esau saw that the daughters of Canaan didn’t please Isaac, his father. + +So Esau went to Ishmael, and took, in addition to the wives that he had, Mahalath the daughter of Ishmael, Abraham’s son, the sister of Nebaioth, to be his wife. + +

+

Jacob went out from Beersheba, and went toward Haran. + +He came to a certain place, and stayed there all night, because the sun had set. He took one of the stones of the place, and put it under his head, and lay down in that place to sleep. + +He dreamed and saw a stairway set upon the earth, and its top reached to heaven. Behold, the angels of God were ascending and descending on it. + +Behold, Yahweh stood above it, and said, “I am Yahweh, the God of Abraham your father, and the God of Isaac. I will give the land you lie on to you and to your offspring. + +Your offspring will be as the dust of the earth, and you will spread abroad to the west, and to the east, and to the north, and to the south. In you and in your offspring, all the families of the earth will be blessed. + +Behold, I am with you, and will keep you, wherever you go, and will bring you again into this land. For I will not leave you until I have done that which I have spoken of to you.” + +

+

Jacob awakened out of his sleep, and he said, “Surely Yahweh is in this place, and I didn’t know it.” + +He was afraid, and said, “How awesome this place is! This is none other than God’s house, and this is the gate of heaven.” + +

+

Jacob rose up early in the morning, and took the stone that he had put under his head, and set it up for a pillar, and poured oil on its top. + +He called the name of that place Bethel, but the name of the city was Luz at the first. + +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 clothing to put on, + +so that I come again to my father’s house in peace, and Yahweh will be my God, + +then this stone, which I have set up for a pillar, will be God’s house. Of all that you will give me I will surely give a tenth to you.” + +

+ + +

Then Jacob went on his journey, and came to the land of the children of the east. + +He looked, and saw a well in the field, and saw three flocks of sheep lying there by it. For out of that well they watered the flocks. The stone on the well’s mouth was large. + +There all the flocks were gathered. They rolled the stone from the well’s mouth, and watered the sheep, and put the stone back on the well’s mouth in its place. + +Jacob said to them, “My relatives, where are you from?” +

+

They said, “We are from Haran.” + +

+

He said to them, “Do you know Laban, the son of Nahor?” +

+

They said, “We know him.” + +

+

He said to them, “Is it well with him?” +

+

They said, “It is well. See, Rachel, his daughter, is coming with the sheep.” + +

+

He said, “Behold, it is still the middle of the day, not time to gather the livestock together. Water the sheep, and go and feed them.” + +

+

They said, “We can’t, until all the flocks are gathered together, and they roll the stone from the well’s mouth. Then we will water the sheep.” + +

+

While he was yet speaking with them, Rachel came with her father’s sheep, for she kept them. + +When Jacob saw Rachel the daughter of Laban, his mother’s brother, and the sheep of Laban, his mother’s brother, Jacob went near, and rolled the stone from the well’s mouth, and watered the flock of Laban his mother’s brother. + +Jacob kissed Rachel, and lifted up his voice, and wept. + +Jacob told Rachel that he was her father’s relative, and that he was Rebekah’s son. She ran and told her father. + +

+

When Laban heard the news of Jacob, his sister’s son, he ran to meet Jacob, and embraced him, and kissed him, and brought him to his house. Jacob told Laban all these things. + +Laban said to him, “Surely you are my bone and my flesh.” Jacob stayed with him for a month. + +Laban said to Jacob, “Because you are my relative, should you therefore serve me for nothing? Tell me, what will your wages be?” + +

+

Laban had two daughters. The name of the elder was Leah, and the name of the younger was Rachel. + +Leah’s eyes were weak, but Rachel was beautiful in form and attractive. + +Jacob loved Rachel. He said, “I will serve you seven years for Rachel, your younger daughter.” + +

+

Laban said, “It is better that I give her to you, than that I should give her to another man. Stay with me.” + +

+

Jacob served seven years for Rachel. They seemed to him but a few days, for the love he had for her. + +

+

Jacob said to Laban, “Give me my wife, for my days are fulfilled, that I may go in to her.” + +

+

Laban gathered together all the men of the place, and made a feast. + +In the evening, he took Leah his daughter, and brought her to Jacob. He went in to her. + +Laban gave Zilpah his servant to his daughter Leah for a servant. + +In the morning, behold, it was Leah! He said to Laban, “What is this you have done to me? Didn’t I serve with you for Rachel? Why then have you deceived me?” + +

+

Laban said, “It is not done so in our place, to give the younger before the firstborn. + +Fulfill the week of this one, and we will give you the other also for the service which you will serve with me for seven more years.” + +

+

Jacob did so, and fulfilled her week. He gave him Rachel his daughter as wife. + +Laban gave Bilhah, his servant, to his daughter Rachel to be her servant. + +He went in also to Rachel, and he loved also Rachel more than Leah, and served with him seven more years. + +

+

Yahweh saw that Leah was hated, and he opened her womb, but Rachel was barren. + +Leah conceived, and bore a son, and she named him Reuben. For she said, “Because Yahweh has looked at my affliction; for now my husband will love me.” + +She conceived again, and bore a son, and said, “Because Yahweh has heard that I am hated, he has therefore given me this son also.” She named him Simeon. + +She conceived again, and bore a son. She said, “Now this time my husband will be joined to me, because I have borne him three sons.” Therefore his name was called Levi. + +She conceived again, and bore a son. She said, “This time I will praise Yahweh.” Therefore she named him Judah. Then she stopped bearing. + +

+ + +

When Rachel saw that she bore Jacob no children, Rachel envied her sister. She said to Jacob, “Give me children, or else I will die.” + +

+

Jacob’s anger burned against Rachel, and he said, “Am I in God’s place, who has withheld from you the fruit of the womb?” + +

+

She said, “Behold, my maid Bilhah. Go in to her, that she may bear on my knees, and I also may obtain children by her.” + +She gave him Bilhah her servant as wife, and Jacob went in to her. + +Bilhah conceived, and bore Jacob a son. + +Rachel said, “God has judged me, and has also heard my voice, and has given me a son.” Therefore she called his name Dan. + +Bilhah, Rachel’s servant, conceived again, and bore Jacob a second son. + +Rachel said, “I have wrestled with my sister with mighty wrestlings, and have prevailed.” She named him Naphtali. + +

+

When Leah saw that she had finished bearing, she took Zilpah, her servant, and gave her to Jacob as a wife. + +Zilpah, Leah’s servant, bore Jacob a son. + +Leah said, “How fortunate!” She named him Gad. + +Zilpah, Leah’s servant, bore Jacob a second son. + +Leah said, “Happy am I, for the daughters will call me happy.” She named him Asher. + +

+

Reuben went in the days of wheat harvest, and found mandrakes in the field, and brought them to his mother, Leah. Then Rachel said to Leah, “Please give me some of your son’s mandrakes.” + +

+

Leah said to her, “Is it a small matter that you have taken away my husband? Would you take away my son’s mandrakes, also?” +

+

Rachel said, “Therefore he will lie with you tonight for your son’s mandrakes.” + +

+

Jacob came from the field in the evening, and Leah went out to meet him, and said, “You must come in to me; for I have surely hired you with my son’s mandrakes.” +

+

He lay with her that night. + +God listened to Leah, and she conceived, and bore Jacob a fifth son. + +Leah said, “God has given me my hire, because I gave my servant to my husband.” She named him Issachar. + +Leah conceived again, and bore a sixth son to Jacob. + +Leah said, “God has endowed me with a good dowry. Now my husband will live with me, because I have borne him six sons.” She named him Zebulun. + +Afterwards, she bore a daughter, and named her Dinah. + +

+

God remembered Rachel, and God listened to her, and opened her womb. + +She conceived, bore a son, and said, “God has taken away my reproach.” + +She named him Joseph,30:24 +Joseph means “may he add”. saying, “May Yahweh add another son to me.” + +

+

When Rachel had borne Joseph, Jacob said to Laban, “Send me away, that I may go to my own place, and to my country. + +Give me my wives and my children for whom I have served you, and let me go; for you know my service with which I have served you.” + +

+

Laban said to him, “If now I have found favor in your eyes, stay here, for I have divined that Yahweh has blessed me for your sake.” + +He said, “Appoint me your wages, and I will give it.” + +

+

Jacob said to him, “You know how I have served you, and how your livestock have fared with me. + +For it was little which you had before I came, and it has increased to a multitude. Yahweh has blessed you wherever I turned. Now when will I provide for my own house also?” + +

+

Laban said, “What shall I give you?” +

+

Jacob said, “You shall not give me anything. If you will do this thing for me, I will again feed your flock and keep it. + +I will pass through all your flock today, removing from there every speckled and spotted one, and every black one among the sheep, and the spotted and speckled among the goats. This will be my hire. + +So my righteousness will answer for me hereafter, when you come concerning my hire that is before you. Every one that is not speckled and spotted among the goats, and black among the sheep, that might be with me, will be considered stolen.” + +

+

Laban said, “Behold, let it be according to your word.” + +

+

That day, he removed the male goats that were streaked and spotted, and all the female goats that were speckled and spotted, every one that had white in it, and all the black ones among the sheep, and gave them into the hand of his sons. + +He set three daysjourney between himself and Jacob, and Jacob fed the rest of Laban’s flocks. + +

+

Jacob took to himself rods of fresh poplar, almond, and plane tree, peeled white streaks in them, and made the white appear which was in the rods. + +He set the rods which he had peeled opposite the flocks in the watering troughs where the flocks came to drink. They conceived when they came to drink. + +The flocks conceived before the rods, and the flocks produced streaked, speckled, and spotted. + +Jacob separated the lambs, and set the faces of the flocks toward the streaked and all the black in Laban’s flock. He put his own droves apart, and didn’t put them into Laban’s flock. + +Whenever the stronger of the flock conceived, Jacob laid the rods in front of the eyes of the flock in the watering troughs, that they might conceive among the rods; + +but when the flock were feeble, he didn’t put them in. So the feebler were Laban’s, and the stronger Jacob’s. + +The man increased exceedingly, and had large flocks, female servants and male servants, and camels and donkeys. + +

+ + +

Jacob heard Laban’s sonswords, saying, “Jacob has taken away all that was our father’s. He has obtained all this wealth from that which was our father’s.” + +Jacob saw the expression on Laban’s face, and, behold, it was not toward him as before. + +Yahweh said to Jacob, “Return to the land of your fathers, and to your relatives, and I will be with you.” + +

+

Jacob sent and called Rachel and Leah to the field to his flock, + +and said to them, “I see the expression on your father’s face, that it is not toward me as before; but the God of my father has been with me. + +You know that I have served your father with all of my strength. + +Your father has deceived me, and changed my wages ten times, but God didn’t allow him to hurt me. + +If he said, ‘The speckled will be your wages,’ then all the flock bore speckled. If he said, ‘The streaked will be your wages,’ then all the flock bore streaked. + +Thus God has taken away your father’s livestock, and given them to me. + +During mating season, I lifted up my eyes, and saw in a dream, and behold, the male goats which leaped on the flock were streaked, speckled, and grizzled. + +The angel of God said to me in the dream, ‘Jacob,’ and I said, ‘Here I am.’ + +He said, ‘Now lift up your eyes, and behold, all the male goats which leap on the flock are streaked, speckled, and grizzled, for I have seen all that Laban does to you. + +I am the God of Bethel, where you anointed a pillar, where you vowed a vow to me. Now arise, get out from this land, and return to the land of your birth.’” + +

+

Rachel and Leah answered him, “Is there yet any portion or inheritance for us in our father’s house? + +Aren’t we considered as foreigners by him? For he has sold us, and has also used up our money. + +For all the riches which God has taken away from our father are ours and our children’s. Now then, whatever God has said to you, do.” + +

+

Then Jacob rose up, and set his sons and his wives on the camels, + +and he took away all his livestock, and all his possessions which he had gathered, including the livestock which he had gained in Paddan Aram, to go to Isaac his father, to the land of Canaan. + +Now Laban had gone to shear his sheep; and Rachel stole the teraphim31:19 +teraphim were household idols that may have been associated with inheritance rights to the household property. that were her father’s. + +

+

Jacob deceived Laban the Syrian, in that he didn’t tell him that he was running away. + +So he fled with all that he had. He rose up, passed over the River, and set his face toward the mountain of Gilead. + +

+

Laban was told on the third day that Jacob had fled. + +He took his relatives with him, and pursued him seven daysjourney. He overtook him in the mountain of Gilead. + +God came to Laban the Syrian in a dream of the night, and said to him, “Be careful that you don’t speak to Jacob either good or bad.” + +

+

Laban caught up with Jacob. Now Jacob had pitched his tent in the mountain, and Laban with his relatives encamped in the mountain of Gilead. + +Laban said to Jacob, “What have you done, that you have deceived me, and carried away my daughters like captives of the sword? + +Why did you flee secretly, and deceive me, and didn’t tell me, that I might have sent you away with mirth and with songs, with tambourine and with harp; + +and didn’t allow me to kiss my sons and my daughters? Now you have done foolishly. + +It is in the power of my hand to hurt you, but the God of your father spoke to me last night, saying, ‘Be careful that you don’t speak to Jacob either good or bad.’ + +Now, you want to be gone, because you greatly longed for your father’s house, but why have you stolen my gods?” + +

+

Jacob answered Laban, “Because I was afraid, for I said, ‘Lest you should take your daughters from me by force.’ + +Anyone you find your gods with shall not live. Before our relatives, discern what is yours with me, and take it.” For Jacob didn’t know that Rachel had stolen them. + +

+

Laban went into Jacob’s tent, into Leah’s tent, and into the tent of the two female servants; but he didn’t find them. He went out of Leah’s tent, and entered into Rachel’s tent. + +Now Rachel had taken the teraphim, put them in the camel’s saddle, and sat on them. Laban felt around all the tent, but didn’t find them. + +She said to her father, “Don’t let my lord be angry that I can’t rise up before you; for I’m having my period.” He searched, but didn’t find the teraphim. + +

+

Jacob was angry, and argued with Laban. Jacob answered Laban, “What is my trespass? What is my sin, that you have hotly pursued me? + +Now that you have felt around in all my stuff, what have you found of all your household stuff? Set it here before my relatives and your relatives, that they may judge between us two. + +

+

These twenty years I have been with you. Your ewes and your female goats have not cast their young, and I haven’t eaten the rams of your flocks. + +That which was torn of animals, I didn’t bring to you. I bore its loss. Of my hand you required it, whether stolen by day or stolen by night. + +This was my situation: in the day the drought consumed me, and the frost by night; and my sleep fled from my eyes. + +These twenty years I have been in your house. I served you fourteen years for your two daughters, and six years for your flock, and you have changed my wages ten times. + +Unless the God of my father, the God of Abraham, and the fear of Isaac, had been with me, surely now you would have sent me away empty. God has seen my affliction and the labor of my hands, and rebuked you last night.” + +

+

Laban answered Jacob, “The daughters are my daughters, the children are my children, the flocks are my flocks, and all that you see is mine! What can I do today to these my daughters, or to their children whom they have borne? + +Now come, let’s make a covenant, you and I. Let it be for a witness between me and you.” + +

+

Jacob took a stone, and set it up for a pillar. + +Jacob said to his relatives, “Gather stones.” They took stones, and made a heap. They ate there by the heap. + +Laban called it Jegar Sahadutha,31:47 +“Jegar Sahadutha” means “Witness Heap” in Aramaic. but Jacob called it Galeed.31:47 +“Galeed” means “Witness Heap” in Hebrew. + +Laban said, “This heap is witness between me and you today.” Therefore it was named Galeed + +and Mizpah, for he said, “Yahweh watch between me and you, when we are absent one from another. + +If you afflict my daughters, or if you take wives in addition to my daughters, no man is with us; behold, God is witness between me and you.” + +Laban said to Jacob, “See this heap, and see the pillar, which I have set between me and you. + +May this heap be a witness, and the pillar be a witness, that I will not pass over this heap to you, and that you will not pass over this heap and this pillar to me, for harm. + +The God of Abraham, and the God of Nahor, the God of their father, judge between us.” Then Jacob swore by the fear of his father, Isaac. + +Jacob offered a sacrifice in the mountain, and called his relatives to eat bread. They ate bread, and stayed all night in the mountain. + +Early in the morning, Laban rose up, and kissed his sons and his daughters, and blessed them. Laban departed and returned to his place. + +

+ + +

Jacob went on his way, and the angels of God met him. + +When he saw them, Jacob said, “This is God’s army.” He called the name of that place Mahanaim.32:2 +“Mahanaim” means “two camps”. + +

+

Jacob sent messengers in front of him to Esau, his brother, to the land of Seir, the field of Edom. + +He commanded them, saying, “This is what you shall tell my lord, Esau: ‘This is what your servant, Jacob, says. I have lived as a foreigner with Laban, and stayed until now. + +I have cattle, donkeys, flocks, male servants, and female servants. I have sent to tell my lord, that I may find favor in your sight.’” + +The messengers returned to Jacob, saying, “We came to your brother Esau. He is coming to meet you, and four hundred men are with him.” + +Then Jacob was greatly afraid and was distressed. He divided the people who were with him, along with the flocks, the herds, and the camels, into two companies. + +He said, “If Esau comes to the one company, and strikes it, then the company which is left will escape.” + +Jacob said, “God of my father Abraham, and God of my father Isaac, Yahweh, who said to me, ‘Return to your country, and to your relatives, and I will do you good,’ + +I am not worthy of the least of all the loving kindnesses, and of all the truth, which you have shown to your servant; for with just my staff I crossed over this Jordan; and now I have become two companies. + +Please deliver me from the hand of my brother, from the hand of Esau; for I fear him, lest he come and strike me and the mothers with the children. + +You said, ‘I will surely do you good, and make your offspring as the sand of the sea, which can’t be counted because there are so many.’” + +

+

He stayed there that night, and took from that which he had with him a present for Esau, his brother: + +two hundred female goats and twenty male goats, two hundred ewes and twenty rams, + +thirty milk camels and their colts, forty cows, ten bulls, twenty female donkeys and ten foals. + +He delivered them into the hands of his servants, every herd by itself, and said to his servants, “Pass over before me, and put a space between herd and herd.” + +He commanded the foremost, saying, “When Esau, my brother, meets you, and asks you, saying, ‘Whose are you? Where are you going? Whose are these before you?’ + +Then you shall say, ‘They are your servant, Jacob’s. It is a present sent to my lord, Esau. Behold, he also is behind us.’” + +He commanded also the second, and the third, and all that followed the herds, saying, “This is how you shall speak to Esau, when you find him. + +You shall say, ‘Not only that, but behold, your servant, Jacob, is behind us.’” For, he said, “I will appease him with the present that goes before me, and afterward I will see his face. Perhaps he will accept me.” + +

+

So the present passed over before him, and he himself stayed that night in the camp. + +

+

He rose up that night, and took his two wives, and his two servants, and his eleven sons, and crossed over the ford of the Jabbok. + +He took them, and sent them over the stream, and sent over that which he had. + +Jacob was left alone, and wrestled with a man there until the breaking of the day. + +When he saw that he didn’t prevail against him, the man touched the hollow of his thigh, and the hollow of Jacob’s thigh was strained as he wrestled. + +The man said, “Let me go, for the day breaks.” +

+

Jacob said, “I won’t let you go unless you bless me.” + +

+

He said to him, “What is your name?” +

+

He said, “Jacob”. + +

+

He said, “Your name will no longer be called Jacob, but Israel; for you have fought with God and with men, and have prevailed.” + +

+

Jacob asked him, “Please tell me your name.” +

+

He said, “Why is it that you ask what my name is?” So he blessed him there. + +

+

Jacob called the name of the place Peniel;32:30 +Peniel means “face of God”. for he said, “I have seen God face to face, and my life is preserved.” + +The sun rose on him as he passed over Peniel, and he limped because of his thigh. + +Therefore the children of Israel don’t eat the sinew of the hip, which is on the hollow of the thigh, to this day, because he touched the hollow of Jacob’s thigh in the sinew of the hip. + +

+ + +

Jacob lifted up his eyes, and looked, and, behold, Esau was coming, and with him four hundred men. He divided the children between Leah, Rachel, and the two servants. + +He put the servants and their children in front, Leah and her children after, and Rachel and Joseph at the rear. + +He himself passed over in front of them, and bowed himself to the ground seven times, until he came near to his brother. + +

+

Esau ran to meet him, embraced him, fell on his neck, kissed him, and they wept. + +He lifted up his eyes, and saw the women and the children; and said, “Who are these with you?” +

+

He said, “The children whom God has graciously given your servant.” + +Then the servants came near with their children, and they bowed themselves. + +Leah also and her children came near, and bowed themselves. After them, Joseph came near with Rachel, and they bowed themselves. + +

+

Esau said, “What do you mean by all this company which I met?” +

+

Jacob said, “To find favor in the sight of my lord.” + +

+

Esau said, “I have enough, my brother; let that which you have be yours.” + +

+

Jacob said, “Please, no, if I have now found favor in your sight, then receive my present at my hand, because I have seen your face, as one sees the face of God, and you were pleased with me. + +Please take the gift that I brought to you, because God has dealt graciously with me, and because I have enough.” He urged him, and he took it. + +

+

Esau said, “Let’s take our journey, and let’s go, and I will go before you.” + +

+

Jacob said to him, “My lord knows that the children are tender, and that the flocks and herds with me have their young, and if they overdrive them one day, all the flocks will die. + +Please let my lord pass over before his servant, and I will lead on gently, according to the pace of the livestock that are before me and according to the pace of the children, until I come to my lord to Seir.” + +

+

Esau said, “Let me now leave with you some of the people who are with me.” +

+

He said, “Why? Let me find favor in the sight of my lord.” + +

+

So Esau returned that day on his way to Seir. + +Jacob traveled to Succoth, built himself a house, and made shelters for his livestock. Therefore the name of the place is called Succoth.33:17 +succoth means shelters or booths. + +

+

Jacob came in peace to the city of Shechem, which is in the land of Canaan, when he came from Paddan Aram; and encamped before the city. + +He bought the parcel of ground where he had spread his tent, at the hand of the children of Hamor, Shechem’s father, for one hundred pieces of money. + +He erected an altar there, and called it El Elohe Israel.33:20 +El Elohe Israel means “God, the God of Israel” or “The God of Israel is mighty”. + +

+ + +

Dinah, the daughter of Leah, whom she bore to Jacob, went out to see the daughters of the land. + +Shechem the son of Hamor the Hivite, the prince of the land, saw her. He took her, lay with her, and humbled her. + +His soul joined to Dinah, the daughter of Jacob, and he loved the young lady, and spoke kindly to the young lady. + +Shechem spoke to his father, Hamor, saying, “Get me this young lady as a wife.” + +

+

Now Jacob heard that he had defiled Dinah, his daughter; and his sons were with his livestock in the field. Jacob held his peace until they came. + +Hamor the father of Shechem went out to Jacob to talk with him. + +The sons of Jacob came in from the field when they heard it. The men were grieved, and they were very angry, because he had done folly in Israel in lying with Jacob’s daughter, a thing that ought not to be done. + +Hamor talked with them, saying, “The soul of my son, Shechem, longs for your daughter. Please give her to him as a wife. + +Make marriages with us. Give your daughters to us, and take our daughters for yourselves. + +You shall dwell with us, and the land will be before you. Live and trade in it, and get possessions in it.” + +

+

Shechem said to her father and to her brothers, “Let me find favor in your eyes, and whatever you will tell me I will give. + +Ask me a great amount for a dowry, and I will give whatever you ask of me, but give me the young lady as a wife.” + +

+

The sons of Jacob answered Shechem and Hamor his father with deceit when they spoke, because he had defiled Dinah their sister, + +and said to them, “We can’t do this thing, to give our sister to one who is uncircumcised; for that is a reproach to us. + +Only on this condition will we consent to you. If you will be as we are, that every male of you be circumcised, + +then will we give our daughters to you; and we will take your daughters to us, and we will dwell with you, and we will become one people. + +But if you will not listen to us and be circumcised, then we will take our sister,34:17 +Hebrew has, literally, “daughter” and we will be gone.” + +

+

Their words pleased Hamor and Shechem, Hamor’s son. + +The young man didn’t wait to do this thing, because he had delight in Jacob’s daughter, and he was honored above all the house of his father. + +Hamor and Shechem, his son, came to the gate of their city, and talked with the men of their city, saying, + +These men are peaceful with us. Therefore let them live in the land and trade in it. For behold, the land is large enough for them. Let’s take their daughters to us for wives, and let’s give them our daughters. + +Only on this condition will the men consent to us to live with us, to become one people, if every male among us is circumcised, as they are circumcised. + +Won’t their livestock and their possessions and all their animals be ours? Only let’s give our consent to them, and they will dwell with us.” + +

+

All who went out of the gate of his city listened to Hamor, and to Shechem his son; and every male was circumcised, all who went out of the gate of his city. + +On the third day, when they were sore, two of Jacob’s sons, Simeon and Levi, Dinah’s brothers, each took his sword, came upon the unsuspecting city, and killed all the males. + +They killed Hamor and Shechem, his son, with the edge of the sword, and took Dinah out of Shechem’s house, and went away. + +Jacob’s sons came on the dead, and plundered the city, because they had defiled their sister. + +They took their flocks, their herds, their donkeys, that which was in the city, that which was in the field, + +and all their wealth. They took captive all their little ones and their wives, and took as plunder everything that was in the house. + +Jacob said to Simeon and Levi, “You have troubled me, to make me odious to the inhabitants of the land, among the Canaanites and the Perizzites. I am few in number. They will gather themselves together against me and strike me, and I will be destroyed, I and my house.” + +

+

They said, “Should he deal with our sister as with a prostitute?” + +

+ + +

God said to Jacob, “Arise, go up to Bethel, and live there. Make there an altar to God, who appeared to you when you fled from the face of Esau your brother.” + +

+

Then Jacob said to his household, and to all who were with him, “Put away the foreign gods that are among you, purify yourselves, and change your garments. + +Let’s arise, and go up to Bethel. I will make there an altar to God, who answered me in the day of my distress, and was with me on the way which I went.” + +

+

They gave to Jacob all the foreign gods which were in their hands, and the rings which were in their ears; and Jacob hid them under the oak which was by Shechem. + +They traveled, and a terror of God was on the cities that were around them, and they didn’t pursue the sons of Jacob. + +So Jacob came to Luz (that is, Bethel), which is in the land of Canaan, he and all the people who were with him. + +He built an altar there, and called the place El Beth El; because there God was revealed to him, when he fled from the face of his brother. + +Deborah, Rebekah’s nurse, died, and she was buried below Bethel under the oak; and its name was called Allon Bacuth. + +

+

God appeared to Jacob again, when he came from Paddan Aram, and blessed him. + +God said to him, “Your name is Jacob. Your name shall not be Jacob any more, but your name will be Israel.” He named him Israel. + +God said to him, “I am God Almighty. Be fruitful and multiply. A nation and a company of nations will be from you, and kings will come out of your body. + +The land which I gave to Abraham and Isaac, I will give it to you, and to your offspring after you I will give the land.” + +

+

God went up from him in the place where he spoke with him. + +Jacob set up a pillar in the place where he spoke with him, a pillar of stone. He poured out a drink offering on it, and poured oil on it. + +Jacob called the name of the place where God spoke with himBethel”. + +

+

They traveled from Bethel. There was still some distance to come to Ephrath, and Rachel travailed. She had hard labor. + +When she was in hard labor, the midwife said to her, “Don’t be afraid, for now you will have another son.” + +

+

As her soul was departing (for she died), she named him Benoni,35:18 +“Benoni” means “son of my trouble”. but his father named him Benjamin.35:18 +“Benjamin” means “son of my right hand”. + +Rachel died, and was buried on the way to Ephrath (also called Bethlehem). + +Jacob set up a pillar on her grave. The same is the Pillar of Rachel’s grave to this day. + +Israel traveled, and spread his tent beyond the tower of Eder. + +While Israel lived in that land, Reuben went and lay with Bilhah, his father’s concubine, and Israel heard of it. +

+

Now the sons of Jacob were twelve. + +The sons of Leah: Reuben (Jacob’s firstborn), Simeon, Levi, Judah, Issachar, and Zebulun. + +The sons of Rachel: Joseph and Benjamin. + +The sons of Bilhah (Rachel’s servant): Dan and Naphtali. + +The sons of Zilpah (Leah’s servant): Gad and Asher. These are the sons of Jacob, who were born to him in Paddan Aram. + +Jacob came to Isaac his father, to Mamre, to Kiriath Arba (which is Hebron), where Abraham and Isaac lived as foreigners. + +

+

The days of Isaac were one hundred eighty years. + +Isaac gave up the spirit and died, and was gathered to his people, old and full of days. Esau and Jacob, his sons, buried him. + +

+ + +

Now this is the history of the generations of Esau (that is, Edom). + +Esau took his wives from the daughters of Canaan: Adah the daughter of Elon, the Hittite; and Oholibamah the daughter of Anah, the daughter of Zibeon, the Hivite; + +and Basemath, Ishmael’s daughter, sister of Nebaioth. + +Adah bore to Esau Eliphaz. Basemath bore Reuel. + +Oholibamah bore Jeush, Jalam, and Korah. These are the sons of Esau, who were born to him in the land of Canaan. + +Esau took his wives, his sons, his daughters, and all the members of his household, with his livestock, all his animals, and all his possessions, which he had gathered in the land of Canaan, and went into a land away from his brother Jacob. + +For their substance was too great for them to dwell together, and the land of their travels couldn’t bear them because of their livestock. + +Esau lived in the hill country of Seir. Esau is Edom. + +

+

This is the history of the generations of Esau the father of the Edomites in the hill country of Seir: + +these are the names of Esau’s sons: Eliphaz, the son of Adah, the wife of Esau; and Reuel, the son of Basemath, the wife of Esau. + +The sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz. + +Timna was concubine to Eliphaz, Esau’s son; and she bore to Eliphaz Amalek. These are the descendants of Adah, Esau’s wife. + +These are the sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. These were the descendants of Basemath, Esau’s wife. + +These were the sons of Oholibamah, the daughter of Anah, the daughter of Zibeon, Esau’s wife: she bore to Esau Jeush, Jalam, and Korah. + +

+

These are the chiefs of the sons of Esau: the sons of Eliphaz the firstborn of Esau: chief Teman, chief Omar, chief Zepho, chief Kenaz, + +chief Korah, chief Gatam, chief Amalek. These are the chiefs who came of Eliphaz in the land of Edom. These are the sons of Adah. + +These are the sons of Reuel, Esau’s son: chief Nahath, chief Zerah, chief Shammah, chief Mizzah. These are the chiefs who came of Reuel in the land of Edom. These are the sons of Basemath, Esau’s wife. + +These are the sons of Oholibamah, Esau’s wife: chief Jeush, chief Jalam, chief Korah. These are the chiefs who came of Oholibamah the daughter of Anah, Esau’s wife. + +These are the sons of Esau (that is, Edom), and these are their chiefs. + +

+

These are the sons of Seir the Horite, the inhabitants of the land: Lotan, Shobal, Zibeon, Anah, + +Dishon, Ezer, and Dishan. These are the chiefs who came of the Horites, the children of Seir in the land of Edom. + +The children of Lotan were Hori and Heman. Lotan’s sister was Timna. + +These are the children of Shobal: Alvan, Manahath, Ebal, Shepho, and Onam. + +These are the children of Zibeon: Aiah and Anah. This is Anah who found the hot springs in the wilderness, as he fed the donkeys of Zibeon his father. + +These are the children of Anah: Dishon and Oholibamah, the daughter of Anah. + +These are the children of Dishon: Hemdan, Eshban, Ithran, and Cheran. + +These are the children of Ezer: Bilhan, Zaavan, and Akan. + +These are the children of Dishan: Uz and Aran. + +These are the chiefs who came of the Horites: chief Lotan, chief Shobal, chief Zibeon, chief Anah, + +chief Dishon, chief Ezer, and chief Dishan. These are the chiefs who came of the Horites, according to their chiefs in the land of Seir. + +

+

These are the kings who reigned in the land of Edom, before any king reigned over the children of Israel. + +Bela, the son of Beor, reigned in Edom. The name of his city was Dinhabah. + +Bela died, and Jobab, the son of Zerah of Bozrah, reigned in his place. + +Jobab died, and Husham of the land of the Temanites reigned in his place. + +Husham died, and Hadad, the son of Bedad, who struck Midian in the field of Moab, reigned in his place. The name of his city was Avith. + +Hadad died, and Samlah of Masrekah reigned in his place. + +Samlah died, and Shaul of Rehoboth by the river, reigned in his place. + +Shaul died, and Baal Hanan the son of Achbor reigned in his place. + +Baal Hanan the son of Achbor died, and Hadar reigned in his place. The name of his city was Pau. His wife’s name was Mehetabel, the daughter of Matred, the daughter of Mezahab. + +

+

These are the names of the chiefs who came from Esau, according to their families, after their places, and by their names: chief Timna, chief Alvah, chief Jetheth, + +chief Oholibamah, chief Elah, chief Pinon, + +chief Kenaz, chief Teman, chief Mibzar, + +chief Magdiel, and chief Iram. These are the chiefs of Edom, according to their habitations in the land of their possession. This is Esau, the father of the Edomites. + +

+ + +

Jacob lived in the land of his father’s travels, in the land of Canaan. + +This is the history of the generations of Jacob. Joseph, being seventeen years old, was feeding the flock with his brothers. He was a boy with the sons of Bilhah and Zilpah, his father’s wives. Joseph brought an evil report of them to their father. + +Now Israel loved Joseph more than all his children, because he was the son of his old age, and he made him a tunic of many colors. + +His brothers saw that their father loved him more than all his brothers, and they hated him, and couldn’t speak peaceably to him. + +

+

Joseph dreamed a dream, and he told it to his brothers, and they hated him all the more. + +He said to them, “Please hear this dream which I have dreamed: + +for behold, we were binding sheaves in the field, and behold, my sheaf arose and also stood upright; and behold, your sheaves came around, and bowed down to my sheaf.” + +

+

His brothers asked him, “Will you indeed reign over us? Will you indeed have dominion over us?” They hated him all the more for his dreams and for his words. + +He dreamed yet another dream, and told it to his brothers, and said, “Behold, I have dreamed yet another dream: and behold, the sun and the moon and eleven stars bowed down to me.” + +He told it to his father and to his brothers. His father rebuked him, and said to him, “What is this dream that you have dreamed? Will I and your mother and your brothers indeed come to bow ourselves down to the earth before you?” + +His brothers envied him, but his father kept this saying in mind. + +

+

His brothers went to feed their father’s flock in Shechem. + +Israel said to Joseph, “Aren’t your brothers feeding the flock in Shechem? Come, and I will send you to them.” He said to him, “Here I am.” + +

+

He said to him, “Go now, see whether it is well with your brothers, and well with the flock; and bring me word again.” So he sent him out of the valley of Hebron, and he came to Shechem. + +A certain man found him, and behold, he was wandering in the field. The man asked him, “What are you looking for?” + +

+

He said, “I am looking for my brothers. Tell me, please, where they are feeding the flock.” + +

+

The man said, “They have left here, for I heard them say, ‘Let’s go to Dothan.’” +

+

Joseph went after his brothers, and found them in Dothan. + +They saw him afar off, and before he came near to them, they conspired against him to kill him. + +They said to one another, “Behold, this dreamer comes. + +Come now therefore, and let’s kill him, and cast him into one of the pits, and we will say, ‘An evil animal has devoured him.’ We will see what will become of his dreams.” + +

+

Reuben heard it, and delivered him out of their hand, and said, “Let’s not take his life.” + +Reuben said to them, “Shed no blood. Throw him into this pit that is in the wilderness, but lay no hand on him”—that he might deliver him out of their hand, to restore him to his father. + +When Joseph came to his brothers, they stripped Joseph of his tunic, the tunic of many colors that was on him; + +and they took him, and threw him into the pit. The pit was empty. There was no water in it. + +

+

They sat down to eat bread, and they lifted up their eyes and looked, and saw a caravan of Ishmaelites coming from Gilead, with their camels bearing spices and balm and myrrh, going to carry it down to Egypt. + +Judah said to his brothers, “What profit is it if we kill our brother and conceal his blood? + +Come, and let’s sell him to the Ishmaelites, and not let our hand be on him; for he is our brother, our flesh.” His brothers listened to him. + +Midianites who were merchants passed by, and they drew and lifted up Joseph out of the pit, and sold Joseph to the Ishmaelites for twenty pieces of silver. The merchants brought Joseph into Egypt. + +

+

Reuben returned to the pit, and saw that Joseph wasn’t in the pit; and he tore his clothes. + +He returned to his brothers, and said, “The child is no more; and I, where will I go?” + +They took Joseph’s tunic, and killed a male goat, and dipped the tunic in the blood. + +They took the tunic of many colors, and they brought it to their father, and said, “We have found this. Examine it, now, and see if it is your son’s tunic or not.” + +

+

He recognized it, and said, “It is my son’s tunic. An evil animal has devoured him. Joseph is without doubt torn in pieces.” + +Jacob tore his clothes, and put sackcloth on his waist, and mourned for his son many days. + +All his sons and all his daughters rose up to comfort him, but he refused to be comforted. He said, “For I will go down to Sheol37:35 +Sheol is the place of the dead. to my son, mourning.” His father wept for him. + +The Midianites sold him into Egypt to Potiphar, an officer of Pharaoh’s, the captain of the guard. + +

+ + +

At that time, Judah went down from his brothers, and visited a certain Adullamite, whose name was Hirah. + +There, Judah saw the daughter of a certain Canaanite man named Shua. He took her, and went in to her. + +She conceived, and bore a son; and he named him Er. + +She conceived again, and bore a son; and she named him Onan. + +She yet again bore a son, and named him Shelah. He was at Chezib when she bore him. + +Judah took a wife for Er, his firstborn, and her name was Tamar. + +Er, Judah’s firstborn, was wicked in Yahweh’s sight. So Yahweh killed him. + +Judah said to Onan, “Go in to your brother’s wife, and perform the duty of a husband’s brother to her, and raise up offspring for your brother.” + +Onan knew that the offspring wouldn’t be his; and when he went in to his brother’s wife, he spilled his semen on the ground, lest he should give offspring to his brother. + +The thing which he did was evil in Yahweh’s sight, and he killed him also. + +Then Judah said to Tamar, his daughter-in-law, “Remain a widow in your father’s house, until Shelah, my son, is grown up;” for he said, “Lest he also die, like his brothers.” Tamar went and lived in her father’s house. + +

+

After many days, Shua’s daughter, the wife of Judah, died. Judah was comforted, and went up to his sheep shearers to Timnah, he and his friend Hirah, the Adullamite. + +Tamar was told, “Behold, your father-in-law is going up to Timnah to shear his sheep.” + +She took off the garments of her widowhood, and covered herself with her veil, and wrapped herself, and sat in the gate of Enaim, which is on the way to Timnah; for she saw that Shelah was grown up, and she wasn’t given to him as a wife. + +When Judah saw her, he thought that she was a prostitute, for she had covered her face. + +He turned to her by the way, and said, “Please come, let me come in to you,” for he didn’t know that she was his daughter-in-law. +

+

She said, “What will you give me, that you may come in to me?” + +

+

He said, “I will send you a young goat from the flock.” +

+

She said, “Will you give me a pledge, until you send it?” + +

+

He said, “What pledge will I give you?” +

+

She said, “Your signet and your cord, and your staff that is in your hand.” +

+

He gave them to her, and came in to her, and she conceived by him. + +She arose, and went away, and put off her veil from her, and put on the garments of her widowhood. + +Judah sent the young goat by the hand of his friend, the Adullamite, to receive the pledge from the woman’s hand, but he didn’t find her. + +Then he asked the men of her place, saying, “Where is the prostitute, that was at Enaim by the road?” +

+

They said, “There has been no prostitute here.” + +

+

He returned to Judah, and said, “I haven’t found her; and also the men of the place said, ‘There has been no prostitute here.’” + +Judah said, “Let her keep it, lest we be shamed. Behold, I sent this young goat, and you haven’t found her.” + +

+

About three months later, Judah was told, “Tamar, your daughter-in-law, has played the prostitute. Moreover, behold, she is with child by prostitution.” +

+

Judah said, “Bring her out, and let her be burned.” + +When she was brought out, she sent to her father-in-law, saying, “I am with child by the man who owns these.” She also said, “Please discern whose these arethe signet, and the cords, and the staff.” + +

+

Judah acknowledged them, and said, “She is more righteous than I, because I didn’t give her to Shelah, my son.” +

+

He knew her again no more. + +In the time of her travail, behold, twins were in her womb. + +When she travailed, one put out a hand, and the midwife took and tied a scarlet thread on his hand, saying, “This came out first.” + +As he drew back his hand, behold, his brother came out, and she said, “Why have you made a breach for yourself?” Therefore his name was called Perez.38:29 +Perez means “breaking out”. + +Afterward his brother came out, who had the scarlet thread on his hand, and his name was called Zerah.38:30 +Zerah means “scarlet” or “brightness”. + +

+ + +

Joseph was brought down to Egypt. Potiphar, an officer of Pharaoh’s, the captain of the guard, an Egyptian, bought him from the hand of the Ishmaelites that had brought him down there. + +Yahweh was with Joseph, and he was a prosperous man. He was in the house of his master the Egyptian. + +His master saw that Yahweh was with him, and that Yahweh made all that he did prosper in his hand. + +Joseph found favor in his sight. He ministered to him, and Potiphar made him overseer over his house, and all that he had he put into his hand. + +From the time that he made him overseer in his house, and over all that he had, Yahweh blessed the Egyptian’s house for Joseph’s sake. Yahweh’s blessing was on all that he had, in the house and in the field. + +He left all that he had in Joseph’s hand. He didn’t concern himself with anything, except for the food which he ate. +

+

Joseph was well-built and handsome. + +After these things, his master’s wife set her eyes on Joseph; and she said, “Lie with me.” + +

+

But he refused, and said to his master’s wife, “Behold, my master doesn’t know what is with me in the house, and he has put all that he has into my hand. + +No one is greater in this house than I am, and he has not kept back anything from me but you, because you are his wife. How then can I do this great wickedness, and sin against God?” + +

+

As she spoke to Joseph day by day, he didn’t listen to her, to lie by her, or to be with her. + +About this time, he went into the house to do his work, and there were none of the men of the house inside. + +She caught him by his garment, saying, “Lie with me!” +

+

He left his garment in her hand, and ran outside. + +When she saw that he had left his garment in her hand, and had run outside, + +she called to the men of her house, and spoke to them, saying, “Behold, he has brought a Hebrew in to us to mock us. He came in to me to lie with me, and I cried with a loud voice. + +When he heard that I lifted up my voice and cried, he left his garment by me, and ran outside.” + +She laid up his garment by her, until his master came home. + +She spoke to him according to these words, saying, “The Hebrew servant, whom you have brought to us, came in to me to mock me, + +and as I lifted up my voice and cried, he left his garment by me, and ran outside.” + +

+

When his master heard the words of his wife, which she spoke to him, saying, “This is what your servant did to me,” his wrath was kindled. + +Joseph’s master took him, and put him into the prison, the place where the king’s prisoners were bound, and he was there in custody. + +But Yahweh was with Joseph, and showed kindness to him, and gave him favor in the sight of the keeper of the prison. + +The keeper of the prison committed to Joseph’s hand all the prisoners who were in the prison. Whatever they did there, he was responsible for it. + +The keeper of the prison didn’t look after anything that was under his hand, because Yahweh was with him; and that which he did, Yahweh made it prosper. + +

+ + +

After these things, the butler of the king of Egypt and his baker offended their lord, the king of Egypt. + +Pharaoh was angry with his two officers, the chief cup bearer and the chief baker. + +He put them in custody in the house of the captain of the guard, into the prison, the place where Joseph was bound. + +The captain of the guard assigned them to Joseph, and he took care of them. They stayed in prison many days. + +They both dreamed a dream, each man his dream, in one night, each man according to the interpretation of his dream, the cup bearer and the baker of the king of Egypt, who were bound in the prison. + +Joseph came in to them in the morning, and saw them, and saw that they were sad. + +He asked Pharaoh’s officers who were with him in custody in his master’s house, saying, “Why do you look so sad today?” + +

+

They said to him, “We have dreamed a dream, and there is no one who can interpret it.” +

+

Joseph said to them, “Don’t interpretations belong to God? Please tell it to me.” + +

+

The chief cup bearer told his dream to Joseph, and said to him, “In my dream, behold, a vine was in front of me, + +and in the vine were three branches. It was as though it budded, it blossomed, and its clusters produced ripe grapes. + +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.” + +

+

Joseph said to him, “This is its interpretation: the three branches are three days. + +Within three more days, Pharaoh will lift up your head, and restore you to your office. You will give Pharaoh’s cup into his hand, the way you did when you were his cup bearer. + +But remember me when it is well with you. Please show kindness to me, and make mention of me to Pharaoh, and bring me out of this house. + +For indeed, I was stolen away out of the land of the Hebrews, and here also I have done nothing that they should put me into the dungeon.” + +

+

When the chief baker saw that the interpretation was good, he said to Joseph, “I also was in my dream, and behold, three baskets of white bread were on my head. + +In the uppermost basket there were all kinds of baked food for Pharaoh, and the birds ate them out of the basket on my head.” + +

+

Joseph answered, “This is its interpretation. The three baskets are three days. + +Within three more days, Pharaoh will lift up your head from off you, and will hang you on a tree; and the birds will eat your flesh from off you.” + +On the third day, which was Pharaoh’s birthday, he made a feast for all his servants, and he lifted up the head of the chief cup bearer and the head of the chief baker among his servants. + +He restored the chief cup bearer to his position again, and he gave the cup into Pharaoh’s hand; + +but he hanged the chief baker, as Joseph had interpreted to them. + +Yet the chief cup bearer didn’t remember Joseph, but forgot him. + +

+ + +

At the end of two full years, Pharaoh dreamed, and behold, he stood by the river. + +Behold, seven cattle came up out of the river. They were sleek and fat, and they fed in the marsh grass. + +Behold, seven other cattle came up after them out of the river, ugly and thin, and stood by the other cattle on the brink of the river. + +The ugly and thin cattle ate up the seven sleek and fat cattle. So Pharaoh awoke. + +He slept and dreamed a second time; and behold, seven heads of grain came up on one stalk, healthy and good. + +Behold, seven heads of grain, thin and blasted with the east wind, sprung up after them. + +The thin heads of grain swallowed up the seven healthy and full ears. Pharaoh awoke, and behold, it was a dream. + +In the morning, his spirit was troubled, and he sent and called for all of Egypt’s magicians and wise men. Pharaoh told them his dreams, but there was no one who could interpret them to Pharaoh. + +

+

Then the chief cup bearer spoke to Pharaoh, saying, “I remember my faults today. + +Pharaoh was angry with his servants, and put me in custody in the house of the captain of the guard, with the chief baker. + +We dreamed a dream in one night, he and I. Each man dreamed according to the interpretation of his dream. + +There was with us there a young man, a Hebrew, servant to the captain of the guard, and we told him, and he interpreted to us our dreams. He interpreted to each man according to his dream. + +As he interpreted to us, so it was. He restored me to my office, and he hanged him.” + +

+

Then Pharaoh sent and called Joseph, and they brought him hastily out of the dungeon. He shaved himself, changed his clothing, and came in to Pharaoh. + +Pharaoh said to Joseph, “I have dreamed a dream, and there is no one who can interpret it. I have heard it said of you, that when you hear a dream you can interpret it.” + +

+

Joseph answered Pharaoh, saying, “It isn’t in me. God will give Pharaoh an answer of peace.” + +

+

Pharaoh spoke to Joseph, “In my dream, behold, I stood on the brink of the river; + +and behold, seven fat and sleek cattle came up out of the river. They fed in the marsh grass; + +and behold, seven other cattle came up after them, poor and very ugly and thin, such as I never saw in all the land of Egypt for ugliness. + +The thin and ugly cattle ate up the first seven fat cattle; + +and when they had eaten them up, it couldn’t be known that they had eaten them, but they were still ugly, as at the beginning. So I awoke. + +I saw in my dream, and behold, seven heads of grain came up on one stalk, full and good; + +and behold, seven heads of grain, withered, thin, and blasted with the east wind, sprung up after them. + +The thin heads of grain swallowed up the seven good heads of grain. I told it to the magicians, but there was no one who could explain it to me.” + +

+

Joseph said to Pharaoh, “The dream of Pharaoh is one. What God is about to do he has declared to Pharaoh. + +The seven good cattle are seven years; and the seven good heads of grain are seven years. The dream is one. + +The seven thin and ugly cattle that came up after them are seven years, and also the seven empty heads of grain blasted with the east wind; they will be seven years of famine. + +That is the thing which I have spoken to Pharaoh. God has shown Pharaoh what he is about to do. + +Behold, seven years of great plenty throughout all the land of Egypt are coming. + +Seven years of famine will arise after them, and all the plenty will be forgotten in the land of Egypt. The famine will consume the land, + +and the plenty will not be known in the land by reason of that famine which follows; for it will be very grievous. + +The dream was doubled to Pharaoh, because the thing is established by God, and God will shortly bring it to pass. + +

+

Now therefore let Pharaoh look for a discreet and wise man, and set him over the land of Egypt. + +Let Pharaoh do this, and let him appoint overseers over the land, and take up the fifth part of the land of Egypt’s produce in the seven plenteous years. + +Let them gather all the food of these good years that come, and store grain under the hand of Pharaoh for food in the cities, and let them keep it. + +The food will be to supply the land against the seven years of famine, which will be in the land of Egypt; so that the land will not perish through the famine.” + +

+

The thing was good in the eyes of Pharaoh, and in the eyes of all his servants. + +Pharaoh said to his servants, “Can we find such a one as this, a man in whom is the Spirit of God?” + +Pharaoh said to Joseph, “Because God has shown you all of this, there is no one so discreet and wise as you. + +You shall be over my house. All my people will be ruled according to your word. Only in the throne I will be greater than you.” + +Pharaoh said to Joseph, “Behold, I have set you over all the land of Egypt.” + +Pharaoh took off his signet ring from his hand, and put it on Joseph’s hand, and arrayed him in robes of fine linen, and put a gold chain about his neck. + +He made him ride in the second chariot which he had. They cried before him, “Bow the knee!” He set him over all the land of Egypt. + +Pharaoh said to Joseph, “I am Pharaoh. Without you, no man shall lift up his hand or his foot in all the land of Egypt.” + +Pharaoh called Joseph’s name Zaphenath-Paneah. He gave him Asenath, the daughter of Potiphera priest of On as a wife. Joseph went out over the land of Egypt. + +

+

Joseph was thirty years old when he stood before Pharaoh king of Egypt. Joseph went out from the presence of Pharaoh, and went throughout all the land of Egypt. + +In the seven plenteous years the earth produced abundantly. + +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. He stored food in each city from the fields around that city. + +Joseph laid up grain as the sand of the sea, very much, until he stopped counting, for it was without number. + +To Joseph were born two sons before the year of famine came, whom Asenath, the daughter of Potiphera priest of On, bore to him. + +Joseph called the name of the firstborn Manasseh,41:51 +“Manasseh” sounds like the Hebrew for “forget”.For”, he said, “God has made me forget all my toil, and all my father’s house.” + +The name of the second, he called Ephraim:41:52 +“Ephraim” sounds like the Hebrew for “twice fruitful”.For God has made me fruitful in the land of my affliction.” + +

+

The seven years of plenty, that were in the land of Egypt, came to an end. + +The seven years of famine began to come, just as Joseph had said. There was famine in all lands, but in all the land of Egypt there was bread. + +When all the land of Egypt was famished, the people cried to Pharaoh for bread, and Pharaoh said to all the Egyptians, “Go to Joseph. What he says to you, do.” + +The famine was over all the surface of the earth. Joseph opened all the store houses, and sold to the Egyptians. The famine was severe in the land of Egypt. + +All countries came into Egypt, to Joseph, to buy grain, because the famine was severe in all the earth. + +

+ + +

Now Jacob saw that there was grain in Egypt, and Jacob said to his sons, “Why do you look at one another?” + +He said, “Behold, I have heard that there is grain in Egypt. Go down there, and buy for us from there, so that we may live, and not die.” + +Joseph’s ten brothers went down to buy grain from Egypt. + +But Jacob didn’t send Benjamin, Joseph’s brother, with his brothers; for he said, “Lest perhaps harm happen to him.” + +The sons of Israel came to buy among those who came, for the famine was in the land of Canaan. + +Joseph was the governor over the land. It was he who sold to all the people of the land. Joseph’s brothers came, and bowed themselves down to him with their faces to the earth. + +Joseph saw his brothers, and he recognized them, but acted like a stranger to them, and spoke roughly with them. He said to them, “Where did you come from?” +

+

They said, “From the land of Canaan, to buy food.” + +

+

Joseph recognized his brothers, but they didn’t recognize him. + +Joseph remembered the dreams which he dreamed about them, and said to them, “You are spies! You have come to see the nakedness of the land.” + +

+

They said to him, “No, my lord, but your servants have come to buy food. + +We are all one man’s sons; we are honest men. Your servants are not spies.” + +

+

He said to them, “No, but you have come to see the nakedness of the land!” + +

+

They said, “We, your servants, are twelve brothers, the sons of one man in the land of Canaan; and behold, the youngest is today with our father, and one is no more.” + +

+

Joseph said to them, “It is like I told you, saying, ‘You are spies!’ + +By this you shall be tested. By the life of Pharaoh, you shall not go out from here, unless your youngest brother comes here. + +Send one of you, and let him get your brother, and you shall be bound, that your words may be tested, whether there is truth in you, or else by the life of Pharaoh surely you are spies.” + +He put them all together into custody for three days. + +

+

Joseph said to them the third day, “Do this, and live, for I fear God. + +If you are honest men, then let one of your brothers be bound in your prison; but you go, carry grain for the famine of your houses. + +Bring your youngest brother to me; so will your words be verified, and you won’t die.” +

+

They did so. + +They said to one another, “We are certainly guilty concerning our brother, in that we saw the distress of his soul, when he begged us, and we wouldn’t listen. Therefore this distress has come upon us.” + +Reuben answered them, saying, “Didn’t I tell you, saying, ‘Don’t sin against the child,’ and you wouldn’t listen? Therefore also, behold, his blood is required.” + +They didn’t know that Joseph understood them; for there was an interpreter between them. + +He turned himself away from them, and wept. Then he returned to them, and spoke to them, and took Simeon from among them, and bound him before their eyes. + +Then Joseph gave a command to fill their bags with grain, and to restore each man’s money into his sack, and to give them food for the way. So it was done to them. + +

+

They loaded their donkeys with their grain, and departed from there. + +As one of them opened his sack to give his donkey food in the lodging place, he saw his money. Behold, it was in the mouth of his sack. + +He said to his brothers, “My money is restored! Behold, it is in my sack!” Their hearts failed them, and they turned trembling to one another, saying, “What is this that God has done to us?” + +They came to Jacob their father, to the land of Canaan, and told him all that had happened to them, saying, + +The man, the lord of the land, spoke roughly with us, and took us for spies of the country. + +We said to him, ‘We are honest men. We are no spies. + +We are twelve brothers, sons of our father; one is no more, and the youngest is today with our father in the land of Canaan.’ + +The man, the lord of the land, said to us, ‘By this I will know that you are honest men: leave one of your brothers with me, and take grain for the famine of your houses, and go your way. + +Bring your youngest brother to me. Then I will know that you are not spies, but that you are honest men. So I will deliver your brother to you, and you shall trade in the land.’” + +

+

As they emptied their sacks, behold, each man’s bundle of money was in his sack. When they and their father saw their bundles of money, they were afraid. + +Jacob, their father, said to them, “You have bereaved me of my children! Joseph is no more, Simeon is no more, and you want to take Benjamin away. All these things are against me.” + +

+

Reuben spoke to his father, saying, “Kill my two sons, if I don’t bring him to you. Entrust him to my care, and I will bring him to you again.” + +

+

He said, “My son shall not go down with you; for his brother is dead, and he only is left. If harm happens to him along the way in which you go, then you will bring down my gray hairs with sorrow to Sheol.”42:38 +Sheol is the place of the dead. + +

+ + +

The famine was severe in the land. + +When they had eaten up the grain which they had brought out of Egypt, their father said to them, “Go again, buy us a little more food.” + +

+

Judah spoke to him, saying, “The man solemnly warned us, saying, ‘You shall not see my face, unless your brother is with you.’ + +If you’ll send our brother with us, we’ll go down and buy you food; + +but if you don’t send him, we won’t go down, for the man said to us, ‘You shall not see my face, unless your brother is with you.’” + +

+

Israel said, “Why did you treat me so badly, telling the man that you had another brother?” + +

+

They said, “The man asked directly concerning ourselves, and concerning our relatives, saying, ‘Is your father still alive? Have you another brother?’ We just answered his questions. Is there any way we could know that he would say, ‘Bring your brother down’?” + +

+

Judah said to Israel, his father, “Send the boy with me, and we’ll get up and go, so that we may live, and not die, both we, and you, and also our little ones. + +I’ll be collateral for him. From my hand will you require him. If I don’t bring him to you, and set him before you, then let me bear the blame forever; + +for if we hadn’t delayed, surely we would have returned a second time by now.” + +

+

Their father, Israel, said to them, “If it must be so, then do this: Take from the choice fruits of the land in your bags, and carry down a present for the man, a little balm, a little honey, spices and myrrh, nuts, and almonds; + +and take double money in your hand, and take back the money that was returned in the mouth of your sacks. Perhaps it was an oversight. + +Take your brother also, get up, and return to the man. + +May God Almighty give you mercy before the man, that he may release to you your other brother and Benjamin. If I am bereaved of my children, I am bereaved.” + +

+

The men took that present, and they took double money in their hand, and Benjamin; and got up, went down to Egypt, and stood before Joseph. + +When Joseph saw Benjamin with them, he said to the steward of his house, “Bring the men into the house, and butcher an animal, and prepare; for the men will dine with me at noon.” + +

+

The man did as Joseph commanded, and the man brought the men to Joseph’s house. + +The men were afraid, because they were brought to Joseph’s house; and they said, “Because of the money that was returned in our sacks the first time, we’re brought in; that he may seek occasion against us, attack us, and seize us as slaves, along with our donkeys.” + +They came near to the steward of Joseph’s house, and they spoke to him at the door of the house, + +and said, “Oh, my lord, we indeed came down the first time to buy food. + +When we came to the lodging place, we opened our sacks, and behold, each man’s money was in the mouth of his sack, our money in full weight. We have brought it back in our hand. + +We have brought down other money in our hand to buy food. We don’t know who put our money in our sacks.” + +

+

He said, “Peace be to you. Don’t be afraid. Your God, and the God of your father, has given you treasure in your sacks. I received your money.” He brought Simeon out to them. + +The man brought the men into Joseph’s house, and gave them water, and they washed their feet. He gave their donkeys fodder. + +They prepared the present for Joseph’s coming at noon, for they heard that they should eat bread there. + +

+

When Joseph came home, they brought him the present which was in their hand into the house, and bowed themselves down to the earth before him. + +He asked them of their welfare, and said, “Is your father well, the old man of whom you spoke? Is he yet alive?” + +

+

They said, “Your servant, our father, is well. He is still alive.” They bowed down humbly. + +He lifted up his eyes, and saw Benjamin, his brother, his mother’s son, and said, “Is this your youngest brother, of whom you spoke to me?” He said, “God be gracious to you, my son.” + +Joseph hurried, for his heart yearned over his brother; and he sought a place to weep. He entered into his room, and wept there. + +He washed his face, and came out. He controlled himself, and said, “Serve the meal.” + +

+

They served him by himself, and them by themselves, and the Egyptians who ate with him by themselves, because the Egyptians don’t eat with the Hebrews, for that is an abomination to the Egyptians. + +They sat before him, the firstborn according to his birthright, and the youngest according to his youth, and the men marveled with one another. + +He sent portions to them from before him, but Benjamin’s portion was five times as much as any of theirs. They drank, and were merry with him. + +

+ + +

He commanded the steward of his house, saying, “Fill the men’s sacks with food, as much as they can carry, and put each man’s money in his sack’s mouth. + +Put my cup, the silver cup, in the sack’s mouth of the youngest, with his grain money.” He did according to the word that Joseph had spoken. + +As soon as the morning was light, the men were sent away, they and their donkeys. + +When they had gone out of the city, and were not yet far off, Joseph said to his steward, “Up, follow after the men. When you overtake them, ask them, ‘Why have you rewarded evil for good? + +Isn’t this that from which my lord drinks, and by which he indeed divines? You have done evil in so doing.’” + +He overtook them, and he spoke these words to them. + +

+

They said to him, “Why does my lord speak such words as these? Far be it from your servants that they should do such a thing! + +Behold, the money, which we found in our sacks’ mouths, we brought again to you out of the land of Canaan. How then should we steal silver or gold out of your lord’s house? + +With whomever of your servants it is found, let him die, and we also will be my lord’s slaves.” + +

+

He said, “Now also let it be according to your words. He with whom it is found will be my slave; and you will be blameless.” + +

+

Then they hurried, and each man took his sack down to the ground, and each man opened his sack. + +He searched, beginning with the oldest, and ending at the youngest. The cup was found in Benjamin’s sack. + +Then they tore their clothes, and each man loaded his donkey, and returned to the city. + +

+

Judah and his brothers came to Joseph’s house, and he was still there. They fell on the ground before him. + +Joseph said to them, “What deed is this that you have done? Don’t you know that such a man as I can indeed do divination?” + +

+

Judah said, “What will we tell my lord? What will we speak? How will we clear ourselves? God has found out the iniquity of your servants. Behold, we are my lord’s slaves, both we and he also in whose hand the cup is found.” + +

+

He said, “Far be it from me that I should do so. The man in whose hand the cup is found, he will be my slave; but as for you, go up in peace to your father.” + +

+

Then Judah came near to him, and said, “Oh, my lord, please let your servant speak a word in my lord’s ears, and don’t let your anger burn against your servant; for you are even as Pharaoh. + +My lord asked his servants, saying, ‘Have you a father, or a brother?’ + +We said to 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 loves him.’ + +You said to your servants, ‘Bring him down to me, that I may set my eyes on him.’ + +We said to my lord, ‘The boy can’t leave his father, for if he should leave his father, his father would die.’ + +You said to your servants, ‘Unless your youngest brother comes down with you, you will see my face no more.’ + +When we came up to your servant my father, we told him the words of my lord. + +Our father said, ‘Go again and buy us a little food.’ + +We said, ‘We can’t go down. If our youngest brother is with us, then we will go down: for we may not see the man’s face, unless our youngest brother is with us.’ + +Your servant, my father, said to us, ‘You know that my wife bore me two sons. + +One went out from me, and I said, “Surely he is torn in pieces;” and I haven’t seen him since. + +If you take this one also from me, and harm happens to him, you will bring down my gray hairs with sorrow to Sheol.’44:29 +Sheol is the place of the dead. + +Now therefore when I come to your servant my father, and the boy is not with us; since his life is bound up in the boy’s life; + +it will happen, when he sees that the boy is no more, that he will die. Your servants will bring down the gray hairs of your servant, our father, with sorrow to Sheol.44:31 +Sheol is the place of the dead. + +For your servant became collateral for the boy to my father, saying, ‘If I don’t bring him to you, then I will bear the blame to my father forever.’ + +Now therefore, please let your servant stay instead of the boy, my lord’s slave; and let the boy go up with his brothers. + +For how will I go up to my father, if the boy isn’t with me?—lest I see the evil that will come on my father.” + +

+ + +

Then Joseph couldn’t control himself before all those who stood before him, and he called out, “Cause everyone to go out from me!” No one else stood with him, while Joseph made himself known to his brothers. + +He wept aloud. The Egyptians heard, and the house of Pharaoh heard. + +Joseph said to his brothers, “I am Joseph! Does my father still live?” +

+

His brothers couldn’t answer him; for they were terrified at his presence. + +Joseph said to his brothers, “Come near to me, please.” +

+

They came near. He said, “I am Joseph, your brother, whom you sold into Egypt. + +Now don’t be grieved, nor angry with yourselves, that you sold me here, for God sent me before you to preserve life. + +For these two years the famine has been in the land, and there are yet five years, in which there will be no plowing and no harvest. + +God sent me before you to preserve for you a remnant on the earth, and to save you alive by a great deliverance. + +So now it wasn’t you who sent me here, but God, and he has made me a father to Pharaoh, lord of all his house, and ruler over all the land of Egypt. + +Hurry, and go up to my father, and tell him, ‘This is what your son Joseph says, “God has made me lord of all Egypt. Come down to me. Don’t wait. + +You shall dwell in the land of Goshen, and you will be near to me, you, your children, your children’s children, your flocks, your herds, and all that you have. + +There I will provide for you; for there are yet five years of famine; lest you come to poverty, you, and your household, and all that you have.”’ + +Behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaks to you. + +You shall tell my father of all my glory in Egypt, and of all that you have seen. You shall hurry and bring my father down here.” + +He fell on his brother Benjamin’s neck and wept, and Benjamin wept on his neck. + +He kissed all his brothers, and wept on them. After that his brothers talked with him. + +

+

The report of it was heard in Pharaoh’s house, saying, “Joseph’s brothers have come.” It pleased Pharaoh well, and his servants. + +Pharaoh said to Joseph, “Tell your brothers, ‘Do this: Load your animals, and go, travel to the land of Canaan. + +Take your father and your households, and come to me, and I will give you the good of the land of Egypt, and you will eat the fat of the land.’ + +Now you are commanded to do this: Take wagons out of the land of Egypt for your little ones, and for your wives, and bring your father, and come. + +Also, don’t concern yourselves about your belongings, for the good of all the land of Egypt is yours.” + +

+

The sons of Israel did so. Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way. + +He gave each one of them changes of clothing, but to Benjamin he gave three hundred pieces of silver and five changes of clothing. + +He sent the following to his father: ten donkeys loaded with the good things of Egypt, and ten female donkeys loaded with grain and bread and provision for his father by the way. + +So he sent his brothers away, and they departed. He said to them, “See that you don’t quarrel on the way.” + +

+

They went up out of Egypt, and came into the land of Canaan, to Jacob their father. + +They told him, saying, “Joseph is still alive, and he is ruler over all the land of Egypt.” His heart fainted, for he didn’t believe them. + +They told him all the words of Joseph, which he had said to them. When he saw the wagons which Joseph had sent to carry him, the spirit of Jacob, their father, revived. + +Israel said, “It is enough. Joseph my son is still alive. I will go and see him before I die.” + +

+ + +

Israel traveled with all that he had, and came to Beersheba, and offered sacrifices to the God of his father, Isaac. + +God spoke to Israel in the visions of the night, and said, “Jacob, Jacob!” +

+

He said, “Here I am.” + +

+

He said, “I am God, the God of your father. Don’t be afraid to go down into Egypt, for there I will make of you a great nation. + +I will go down with you into Egypt. I will also surely bring you up again. Joseph’s hand will close your eyes.” + +

+

Jacob rose up from Beersheba, and the sons of Israel carried Jacob, their father, their little ones, and their wives, in the wagons which Pharaoh had sent to carry him. + +They took their livestock, and their goods, which they had gotten in the land of Canaan, and came into EgyptJacob, and all his offspring with him, + +his sons, and his sonssons with him, his daughters, and his sonsdaughters, and he brought all his offspring with him into Egypt. + +

+

These are the names of the children of Israel, who came into Egypt, Jacob and his sons: Reuben, Jacob’s firstborn. + +The sons of Reuben: Hanoch, Pallu, Hezron, and Carmi. + +The sons of Simeon: Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul the son of a Canaanite woman. + +The sons of Levi: Gershon, Kohath, and Merari. + +The sons of Judah: Er, Onan, Shelah, Perez, and Zerah; but Er and Onan died in the land of Canaan. The sons of Perez were Hezron and Hamul. + +The sons of Issachar: Tola, Puvah, Iob, and Shimron. + +The sons of Zebulun: Sered, Elon, and Jahleel. + +These are the sons of Leah, whom she bore to Jacob in Paddan Aram, with his daughter Dinah. All the souls of his sons and his daughters were thirty-three. + +The sons of Gad: Ziphion, Haggi, Shuni, Ezbon, Eri, Arodi, and Areli. + +The sons of Asher: Imnah, Ishvah, Ishvi, Beriah, and Serah their sister. The sons of Beriah: Heber and Malchiel. + +These are the sons of Zilpah, whom Laban gave to Leah, his daughter, and these she bore to Jacob, even sixteen souls. + +The sons of Rachel, Jacob’s wife: Joseph and Benjamin. + +To Joseph in the land of Egypt were born Manasseh and Ephraim, whom Asenath, the daughter of Potiphera, priest of On, bore to him. + +The sons of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, Huppim, and Ard. + +These are the sons of Rachel, who were born to Jacob: all the souls were fourteen. + +The son of Dan: Hushim. + +The sons of Naphtali: Jahzeel, Guni, Jezer, and Shillem. + +These are the sons of Bilhah, whom Laban gave to Rachel, his daughter, and these she bore to Jacob: all the souls were seven. + +All the souls who came with Jacob into Egypt, who were his direct offspring, in addition to Jacob’s sons’ wives, all the souls were sixty-six. + +The sons of Joseph, who were born to him in Egypt, were two souls. All the souls of the house of Jacob, who came into Egypt, were seventy. + +

+

Jacob sent Judah before him to Joseph, to show the way before him to Goshen, and they came into the land of Goshen. + +Joseph prepared his chariot, and went up to meet Israel, his father, in Goshen. He presented himself to him, and fell on his neck, and wept on his neck a good while. + +Israel said to Joseph, “Now let me die, since I have seen your face, that you are still alive.” + +

+

Joseph said to his brothers, and to his father’s house, “I will go up, and speak with Pharaoh, and will tell him, ‘My brothers, and my father’s house, who were in the land of Canaan, have come to me. + +These men are shepherds, for they have been keepers of livestock, and they have brought their flocks, and their herds, and all that they have.’ + +It will happen, when Pharaoh summons you, and will say, ‘What is your occupation?’ + +that you shall say, ‘Your servants have been keepers of livestock from our youth even until now, both we, and our fathers:’ that you may dwell in the land of Goshen; for every shepherd is an abomination to the Egyptians.” + +

+ + +

Then Joseph went in and told Pharaoh, and said, “My father and my brothers, with their flocks, their herds, and all that they own, have come out of the land of Canaan; and behold, they are in the land of Goshen.” + +From among his brothers he took five men, and presented them to Pharaoh. + +Pharaoh said to his brothers, “What is your occupation?” +

+

They said to Pharaoh, “Your servants are shepherds, both we, and our fathers.” + +They also said to Pharaoh, “We have come to live as foreigners in the land, for there is no pasture for your servantsflocks. For the famine is severe in the land of Canaan. Now therefore, please let your servants dwell in the land of Goshen.” + +

+

Pharaoh spoke to Joseph, saying, “Your father and your brothers have come to you. + +The land of Egypt is before you. Make your father and your brothers dwell in the best of the land. Let them dwell in the land of Goshen. If you know any able men among them, then put them in charge of my livestock.” + +

+

Joseph brought in Jacob, his father, and set him before Pharaoh; and Jacob blessed Pharaoh. + +Pharaoh said to Jacob, “How old are you?” + +

+

Jacob said to Pharaoh, “The years of my pilgrimage are one hundred thirty years. The days of the years of my life have been few and evil. They have not attained to the days of the years of the life of my fathers in the days of their pilgrimage.” + +Jacob blessed Pharaoh, and went out from the presence of Pharaoh. + +

+

Joseph placed his father and his brothers, 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. + +Joseph provided his father, his brothers, and all of his father’s household with bread, according to the sizes of their families. + +

+

There was no bread in all the land; for the famine was very severe, so that the land of Egypt and the land of Canaan fainted by reason of the famine. + +Joseph gathered up all the money that was found in the land of Egypt, and in the land of Canaan, for the grain which they bought: and Joseph brought the money into Pharaoh’s house. + +When the money was all spent in the land of Egypt, and in the land of Canaan, all the Egyptians came to Joseph, and said, “Give us bread, for why should we die in your presence? For our money fails.” + +

+

Joseph said, “Give me your livestock; and I will give you food for your livestock, if your money is gone.” + +

+

They brought their livestock to Joseph, and Joseph gave them bread in exchange for the horses, and for the flocks, and for the herds, and for the donkeys: and he fed them with bread in exchange for all their livestock for that year. + +When that year was ended, they came to him the second year, and said to him, “We will not hide from my lord how our money is all spent, and the herds of livestock are my lord’s. There is nothing left in the sight of my lord, but our bodies, and our lands. + +Why should we die before your eyes, both we and our land? Buy us and our land for bread, and we and our land will be servants to Pharaoh. Give us seed, that we may live, and not die, and that the land won’t be desolate.” + +

+

So Joseph bought all the land of Egypt for Pharaoh, for every man of the Egyptians sold his field, because the famine was severe on them, and the land became Pharaoh’s. + +As for the people, he moved them to the cities from one end of the border of Egypt even to the other end of it. + +Only he didn’t buy the land of the priests, for the priests had a portion from Pharaoh, and ate their portion which Pharaoh gave them. That is why they didn’t sell their land. + +Then Joseph said to the people, “Behold, I have bought you and your land today for Pharaoh. Behold, here is seed for you, and you shall sow the land. + +It will happen at the harvests, that you shall give a fifth to Pharaoh, and four parts will be your own, for seed of the field, for your food, for them of your households, and for food for your little ones.” + +

+

They said, “You have saved our lives! Let us find favor in the sight of my lord, and we will be Pharaoh’s servants.” + +

+

Joseph made it a statute concerning the land of Egypt to this day, that Pharaoh should have the fifth. Only the land of the priests alone didn’t become Pharaoh’s. + +

+

Israel lived in the land of Egypt, in the land of Goshen; and they got themselves possessions therein, and were fruitful, and multiplied exceedingly. + +Jacob lived in the land of Egypt seventeen years. So the days of Jacob, the years of his life, were one hundred forty-seven years. + +The time came near that Israel must die, and he called his son Joseph, and said to him, “If now I have found favor in your sight, please put your hand under my thigh, and deal kindly and truly with me. Please don’t bury me in Egypt, + +but when I sleep with my fathers, you shall carry me out of Egypt, and bury me in their burying place.” +

+

Joseph said, “I will do as you have said.” + +

+

Israel said, “Swear to me,” and he swore to him. Then Israel bowed himself on the bed’s head. + +

+ + +

After these things, someone said to Joseph, “Behold, your father is sick.” He took with him his two sons, Manasseh and Ephraim. + +Someone told Jacob, and said, “Behold, your son Joseph comes to you,” and Israel strengthened himself, and sat on the bed. + +Jacob said to Joseph, “God Almighty appeared to me at Luz in the land of Canaan, and blessed me, + +and said to me, ‘Behold, I will make you fruitful, and multiply you, and I will make of you a company of peoples, and will give this land to your offspring after you for an everlasting possession.’ + +Now your two sons, who were born to you in the land of Egypt before I came to you into Egypt, are mine; Ephraim and Manasseh, even as Reuben and Simeon, will be mine. + +Your offspring, whom you become the father of after them, will be yours. They will be called after the name of their brothers in their inheritance. + +As for me, when I came from Paddan, Rachel died beside me in the land of Canaan on the way, when there was still some distance to come to Ephrath, and I buried her there on the way to Ephrath (also called Bethlehem).” + +

+

Israel saw Joseph’s sons, and said, “Who are these?” + +

+

Joseph said to his father, “They are my sons, whom God has given me here.” +

+

He said, “Please bring them to me, and I will bless them.” + +Now the eyes of Israel were dim for age, so that he couldn’t see well. Joseph brought them near to him; and he kissed them, and embraced them. + +Israel said to Joseph, “I didn’t think I would see your face, and behold, God has let me see your offspring also.” + +Joseph brought them out from between his knees, and he bowed himself with his face to the earth. + +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 to him. + +Israel stretched out his right hand, and laid it on Ephraim’s head, who was the younger, and his left hand on Manasseh’s head, guiding his hands knowingly, for Manasseh was the firstborn. + +He blessed Joseph, and said, +

+The God before whom my fathers Abraham and Isaac walked, + +the God who has fed me all my life long to this day, + + +the angel who has 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. + +Let them grow into a multitude upon the earth.” + + +

When Joseph saw that his father laid his right hand on the head of Ephraim, it displeased him. He held up his father’s hand, to remove it from Ephraim’s head to Manasseh’s head. + +Joseph said to his father, “Not so, my father, for this is the firstborn. Put your right hand on his head.” + +

+

His father refused, and said, “I know, my son, I know. He also will become a people, and he also will be great. However, his younger brother will be greater than he, and his offspring will become a multitude of nations.” + +He blessed them that day, saying, “Israel will bless in your name, saying, ‘God make you as Ephraim and as Manasseh’” He set Ephraim before Manasseh. + +Israel said to Joseph, “Behold, I am dying, but God will be with you, and bring you again to the land of your fathers. + +Moreover I have given to you one portion above your brothers, which I took out of the hand of the Amorite with my sword and with my bow.” + +

+ + +

Jacob called to his sons, and said: “Gather yourselves together, that I may tell you that which will happen to you in the days to come. + +

+Assemble yourselves, and hear, you sons of Jacob. + +Listen to Israel, your father. + + + +Reuben, you are my firstborn, my might, and the beginning of my strength, + +excelling in dignity, and excelling in power. + + +Boiling over like water, you shall not excel, + +because you went up to your father’s bed, + +then defiled it. He went up to my couch. + + + +Simeon and Levi are brothers. + +Their swords are weapons of violence. + + +My soul, don’t come into their council. + +My glory, don’t be united to their assembly; + +for in their anger they killed men. + +In their self-will they hamstrung cattle. + + +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. + + + +Judah, your brothers will praise you. + +Your hand will be on the neck of your enemies. + +Your father’s sons will bow down before you. + + +Judah is a lion’s cub. + +From the prey, my son, you have gone up. + +He stooped down, he crouched as a lion, + +as a lioness. + +Who will rouse him up? + + +The scepter will not depart from Judah, + +nor the ruler’s staff from between his feet, + +until he comes to whom it belongs. + +The obedience of the peoples will be to him. + + +Binding his foal to the vine, + +his donkey’s colt to the choice vine, + +he has washed his garments in wine, + +his robes in the blood of grapes. + + +His eyes will be red with wine, + +his teeth white with milk. + + + +Zebulun will dwell at the haven of the sea. + +He will be for a haven of ships. + +His border will be on Sidon. + + + +Issachar is a strong donkey, + +lying down between the saddlebags. + + +He saw a resting place, that it was good, + +the land, that it was pleasant. + +He bows his shoulder to the burden, + +and becomes a servant doing forced labor. + + + +Dan will judge his people, + +as one of the tribes of Israel. + + +Dan will be a serpent on the trail, + +an adder in the path, + +that bites the horse’s heels, + +so that his rider falls backward. + + +I have waited for your salvation, Yahweh. + + + +A troop will press on Gad, + +but he will press on their heel. + + + +“Asher’s food will be rich. + +He will produce royal dainties. + + + +Naphtali is a doe set free, + +who bears beautiful fawns. + + + +Joseph is a fruitful vine, + +a fruitful vine by a spring. + +His branches run over the wall. + + +The archers have severely grieved him, + +shot at him, and persecuted him: + + +But his bow remained strong. + +The arms of his hands were made strong, + +by the hands of the Mighty One of Jacob, + +(from there is the shepherd, the stone of Israel), + + +even by the God of your father, who will help you, + +by the Almighty, who will bless you, + +with blessings of heaven above, + +blessings of the deep that lies below, + +blessings of the breasts, and of the womb. + + +The blessings of your father have prevailed above the blessings of my ancestors, + +above the boundaries of the ancient hills. + +They will be on the head of Joseph, + +on the crown of the head of him who is separated from his brothers. + + + +Benjamin is a ravenous wolf. + +In the morning he will devour the prey. + +At evening he will divide the plunder.” + + +

All these are the twelve tribes of Israel, and this is what their father spoke to them, and blessed them. He blessed everyone according to his own blessing. + +He instructed them, and said to them, “I am to be gathered to my people. Bury me with my fathers in the cave that is in the field of Ephron the Hittite, + +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 from Ephron the Hittite as a burial place. + +There they buried Abraham and Sarah, his wife. There they buried Isaac and Rebekah, his wife, and there I buried Leah: + +the field and the cave that is therein, which was purchased from the children of Heth.” + +When Jacob finished charging his sons, he gathered up his feet into the bed, breathed his last breath, and was gathered to his people. + +

+ + +

Joseph fell on his father’s face, wept on him, and kissed him. + +Joseph commanded his servants, the physicians, to embalm his father; and the physicians embalmed Israel. + +Forty days were used for him, for that is how many days it takes to embalm. The Egyptians wept for Israel for seventy days. + +

+

When the days of weeping for him were past, Joseph spoke to Pharaoh’s staff, saying, “If now I have found favor in your eyes, please speak in the ears of Pharaoh, saying, + +My father made me swear, saying, “Behold, I am dying. Bury me in my grave which I have dug for myself in the land of Canaan.” Now therefore, please let me go up and bury my father, and I will come again.’” + +

+

Pharaoh said, “Go up, and bury your father, just like he made you swear.” + +

+

Joseph went up to bury his father; and with him went up all the servants of Pharaoh, the elders of his house, all the elders of the land of Egypt, + +all the house of Joseph, his brothers, and his father’s house. Only their little ones, their flocks, and their herds, they left in the land of Goshen. + +Both chariots and horsemen went up with him. It was a very great company. + +They came to the threshing floor of Atad, which is beyond the Jordan, and there they lamented with a very great and severe lamentation. He mourned for his father seven days. + +When the inhabitants of the land, the Canaanites, saw the mourning in the floor of Atad, they said, “This is a grievous mourning by the Egyptians.” Therefore its name was called Abel Mizraim, which is beyond the Jordan. + +His sons did to him just as he commanded them, + +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, as a possession for a burial site, from Ephron the Hittite, near Mamre. + +Joseph returned into Egypthe, and his brothers, and all that went up with him to bury his father, after he had buried his father. + +

+

When Joseph’s brothers saw that their father was dead, they said, “It may be that Joseph will hate us, and will fully pay us back for all the evil which we did to him.” + +They sent a message to Joseph, saying, “Your father commanded before he died, saying, + +You shall tell Joseph, “Now please forgive the disobedience of your brothers, and their sin, because they did evil to you.”’ Now, please forgive the disobedience of the servants of the God of your father.” Joseph wept when they spoke to him. + +His brothers also went and fell down before his face; and they said, “Behold, we are your servants.” + +Joseph said to them, “Don’t be afraid, for am I in the place of God? + +As for you, you meant evil against me, but God meant it for good, to save many people alive, as is happening today. + +Now therefore don’t be afraid. I will provide for you and your little ones.” He comforted them, and spoke kindly to them. + +

+

Joseph lived in Egypt, he, and his father’s house. Joseph lived one hundred ten years. + +Joseph saw Ephraim’s children to the third generation. The children also of Machir, the son of Manasseh, were born on Joseph’s knees. + +Joseph said to his brothers, “I am dying, but God will surely visit you, and bring you up out of this land to the land which he swore to Abraham, to Isaac, and to Jacob.” + +Joseph took an oath from the children of Israel, saying, “God will surely visit you, and you shall carry up my bones from here.” + +So Joseph died, being one hundred ten years old, and they embalmed him, and he was put in a coffin in Egypt. + +

+
+World English Bible (WEB) +Exodus +The Second Book of Mosis, Commonly Called Exodus +Exodus +Exo +

The Second Book of Moses, +

+

Commonly Called +

+

Exodus +

+ + +

Now these are the names of the sons of Israel, who came into Egypt (every man and his household came with Jacob): + +Reuben, Simeon, Levi, and Judah, + +Issachar, Zebulun, and Benjamin, + +Dan and Naphtali, Gad and Asher. + +All the souls who came out of Jacob’s body were seventy souls, and Joseph was in Egypt already. + +Joseph died, as did all his brothers, and all that generation. + +The children of Israel were fruitful, and increased abundantly, and multiplied, and grew exceedingly mighty; and the land was filled with them. + +

+

Now there arose a new king over Egypt, who didn’t know Joseph. + +He said to his people, “Behold,1:9 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. the people of the children of Israel are more and mightier than we. + +Come, let’s deal wisely with them, lest they multiply, and it happen that when any war breaks out, they also join themselves to our enemies and fight against us, and escape out of the land.” + +Therefore they set taskmasters over them to afflict them with their burdens. They built storage cities for Pharaoh: Pithom and Raamses. + +But the more they afflicted them, the more they multiplied and the more they spread out. They started to dread the children of Israel. + +The Egyptians ruthlessly made the children of Israel serve, + +and they made their lives bitter with hard service in mortar and in brick, and in all kinds of service in the field, all their service, in which they ruthlessly made them serve. + +

+

The king of Egypt spoke to the Hebrew midwives, of whom the name of the one was Shiphrah, and the name of the other Puah, + +and he said, “When you perform the duty of a midwife to the Hebrew women, and see them on the birth stool, if it is a son, then you shall kill him; but if it is a daughter, then she shall live.” + +But the midwives feared God,1:17 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). and didn’t do what the king of Egypt commanded them, but saved the baby boys alive. + +The king of Egypt called for the midwives, and said to them, “Why have you done this thing and saved the boys alive?” + +

+

The midwives said to Pharaoh, “Because the Hebrew women aren’t like the Egyptian women; for they are vigorous and give birth before the midwife comes to them.” + +

+

God dealt well with the midwives, and the people multiplied, and grew very mighty. + +Because the midwives feared God, he gave them families. + +Pharaoh commanded all his people, saying, “You shall cast every son who is born into the river, and every daughter you shall save alive.” + +

+ + +

A man of the house of Levi went and took a daughter of Levi as his wife. + +The woman conceived and bore a son. When she saw that he was a fine child, she hid him three months. + +When she could no longer hide him, she took a papyrus basket for him, and coated it with tar and with pitch. She put the child in it, and laid it in the reeds by the river’s bank. + +His sister stood far off, to see what would be done to him. + +Pharaoh’s daughter came down to bathe at the river. Her maidens walked along by the riverside. She saw the basket among the reeds, and sent her servant to get it. + +She opened it, and saw the child, and behold, the baby cried. She had compassion on him, and said, “This is one of the Hebrewschildren.” + +

+

Then his sister said to Pharaoh’s daughter, “Should I go and call a nurse for you from the Hebrew women, that she may nurse the child for you?” + +

+

Pharaoh’s daughter said to her, “Go.” +

+

The young woman went and called the child’s mother. + +Pharaoh’s daughter said to her, “Take this child away, and nurse him for me, and I will give you your wages.” +

+

The woman took the child, and nursed him. + +The child grew, and she brought him to Pharaoh’s daughter, and he became her son. She named him Moses,2:10 +“Moses” sounds like the Hebrew for “draw out”. and said, “Because I drew him out of the water.” + +

+

In those days, when Moses had grown up, he went out to his brothers and saw their burdens. He saw an Egyptian striking a Hebrew, one of his brothers. + +He looked this way and that way, and when he saw that there was no one, he killed the Egyptian, and hid him in the sand. + +

+

He went out the second day, and behold, two men of the Hebrews were fighting with each other. He said to him who did the wrong, “Why do you strike your fellow?” + +

+

He said, “Who made you a prince and a judge over us? Do you plan to kill me, as you killed the Egyptian?” +

+

Moses was afraid, and said, “Surely this thing is known.” + +Now when Pharaoh heard this thing, he sought to kill Moses. But Moses fled from the face of Pharaoh, and lived in the land of Midian, and he sat down by a well. + +

+

Now the priest of Midian had seven daughters. They came and drew water, and filled the troughs to water their father’s flock. + +The shepherds came and drove them away; but Moses stood up and helped them, and watered their flock. + +When they came to Reuel, their father, he said, “How is it that you have returned so early today?” + +

+

They said, “An Egyptian delivered us out of the hand of the shepherds, and moreover he drew water for us, and watered the flock.” + +

+

He said to his daughters, “Where is he? Why is it that you have left the man? Call him, that he may eat bread.” + +

+

Moses was content to dwell with the man. He gave Moses Zipporah, his daughter. + +She bore a son, and he named him Gershom,2:22 +“Gershom” sounds like the Hebrew for “an alien there”. for he said, “I have lived as a foreigner in a foreign land.” + +

+

In the course of those many days, the king of Egypt died, and the children of Israel sighed because of the bondage, and they cried, and their cry came up to God because of the bondage. + +God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob. + +God saw the children of Israel, and God understood. + +

+ + +

Now Moses was keeping the flock of Jethro, his father-in-law, the priest of Midian, and he led the flock to the back of the wilderness, and came to God’s mountain, to Horeb. + +Yahweh’s3:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. angel appeared to him in a flame of fire out of the middle of a bush. He looked, and behold, the bush burned with fire, and the bush was not consumed. + +Moses said, “I will go now, and see this great sight, why the bush is not burned.” + +

+

When Yahweh saw that he came over to see, God called to him out of the middle of the bush, and said, “Moses! Moses!” +

+

He said, “Here I am.” + +

+

He said, “Don’t come close. Take off your sandals, for the place you are standing on is holy ground.” + +Moreover he said, “I am the God of your father, the God of Abraham, the God of Isaac, and the God of Jacob.” +

+

Moses hid his face because he was afraid to look at God. + +

+

Yahweh said, “I have surely seen the affliction of my people who are in Egypt, and have heard their cry because of their taskmasters, for I know their sorrows. + +I have come down to deliver them out of the hand of the Egyptians, and to bring them up out of that land to a good and large land, to a land flowing with milk and honey; to the place of the Canaanite, the Hittite, the Amorite, the Perizzite, the Hivite, and the Jebusite. + +Now, behold, the cry of the children of Israel has come to me. Moreover I have seen the oppression with which the Egyptians oppress them. + +Come now therefore, and I will send you to Pharaoh, that you may bring my people, the children of Israel, out of Egypt.” + +

+

Moses said to God, “Who am I, that I should go to Pharaoh, and that I should bring the children of Israel out of Egypt?” + +

+

He said, “Certainly I will be with you. This will be the token to you, that I have sent you: when you have brought the people out of Egypt, you shall serve God on this mountain.” + +

+

Moses said to God, “Behold, when I come to the children of Israel, and tell them, ‘The God of your fathers has sent me to you,’ and they ask me, ‘What is his name?’ what should I tell them?” + +

+

God said to Moses, “I AM WHO I AM,” and he said, “You shall tell the children of Israel this: ‘I AM has sent me to you.’” + +God said moreover to Moses, “You shall tell the children of Israel this, ‘Yahweh, the God of your fathers, the God of Abraham, the God of Isaac, and the God of Jacob, has sent me to you.’ This is my name forever, and this is my memorial to all generations. + +Go and gather the elders of Israel together, and tell them, ‘Yahweh, the God of your fathers, the God of Abraham, of Isaac, and of Jacob, has appeared to me, saying, “I have surely visited you, and seen that which is done to you in Egypt. + +I have said, I will bring you up out of the affliction of Egypt to the land of the Canaanite, the Hittite, the Amorite, the Perizzite, the Hivite, and the Jebusite, to a land flowing with milk and honey.”’ + +They will listen to your voice. You shall come, you and the elders of Israel, to the king of Egypt, and you shall tell him, ‘Yahweh, the God of the Hebrews, has met with us. Now please let us go three daysjourney into the wilderness, that we may sacrifice to Yahweh, our God.’ + +I know that the king of Egypt won’t give you permission to go, no, not by a mighty hand. + +I will reach out my hand and strike Egypt with all my wonders which I will do among them, and after that he will let you go. + +I will give this people favor in the sight of the Egyptians, and it will happen that when you go, you shall not go empty-handed. + +But every woman shall ask of her neighbor, and of her who visits her house, jewels of silver, jewels of gold, and clothing. You shall put them on your sons, and on your daughters. You shall plunder the Egyptians.” + +

+ + +

Moses answered, “But, behold, they will not believe me, nor listen to my voice; for they will say, ‘Yahweh has not appeared to you.’” + +

+

Yahweh said to him, “What is that in your hand?” +

+

He said, “A rod.” + +

+

He said, “Throw it on the ground.” +

+

He threw it on the ground, and it became a snake; and Moses ran away from it. + +

+

Yahweh said to Moses, “Stretch out your hand, and take it by the tail.” +

+

He stretched out his hand, and took hold of it, and it became a rod in his hand. + +

+

This is so that they may believe that Yahweh, the God of their fathers, the God of Abraham, the God of Isaac, and the God of Jacob, has appeared to you.” + +Yahweh said furthermore to him, “Now put your hand inside your cloak.” +

+

He put his hand inside his cloak, and when he took it out, behold, his hand was leprous, as white as snow. + +

+

He said, “Put your hand inside your cloak again.” +

+

He put his hand inside his cloak again, and when he took it out of his cloak, behold, it had turned again as his other flesh. + +

+

It will happen, if they will not believe you or listen to the voice of the first sign, that they will believe the voice of the latter sign. + +It will happen, if they will not believe even these two signs or listen to your voice, that you shall take of the water of the river, and pour it on the dry land. The water which you take out of the river will become blood on the dry land.” + +

+

Moses said to Yahweh, “O Lord,4:10 +The word translated “Lord” is “Adonai”. I am not eloquent, neither before now, nor since you have spoken to your servant; for I am slow of speech, and of a slow tongue.” + +

+

Yahweh said to him, “Who made man’s mouth? Or who makes one mute, or deaf, or seeing, or blind? Isn’t it I, Yahweh? + +Now therefore go, and I will be with your mouth, and teach you what you shall speak.” + +

+

Moses said, “Oh, Lord, please send someone else.” + +

+

Yahweh’s anger burned against Moses, and he said, “What about Aaron, your brother, the Levite? I know that he can speak well. Also, behold, he is coming out to meet you. When he sees you, he will be glad in his heart. + +You shall speak to him, and put the words in his mouth. I will be with your mouth, and with his mouth, and will teach you what you shall do. + +He will be your spokesman to the people. It will happen that he will be to you a mouth, and you will be to him as God. + +You shall take this rod in your hand, with which you shall do the signs.” + +

+

Moses went and returned to Jethro his father-in-law, and said to him, “Please let me go and return to my brothers who are in Egypt, and see whether they are still alive.” +

+

Jethro said to Moses, “Go in peace.” + +

+

Yahweh said to Moses in Midian, “Go, return into Egypt; for all the men who sought your life are dead.” + +

+

Moses took his wife and his sons, and set them on a donkey, and he returned to the land of Egypt. Moses took God’s rod in his hand. + +Yahweh said to Moses, “When you go back into Egypt, see that you do before Pharaoh all the wonders which I have put in your hand, but I will harden his heart and he will not let the people go. + +You shall tell Pharaoh, ‘Yahweh says, Israel is my son, my firstborn, + +and I have said to you, “Let my son go, that he may serve me;” and you have refused to let him go. Behold, I will kill your firstborn son.’” + +

+

On the way at a lodging place, Yahweh met Moses and wanted to kill him. + +Then Zipporah took a flint, and cut off the foreskin of her son, and cast it at his feet; and she said, “Surely you are a bridegroom of blood to me.” + +

+

So he let him alone. Then she said, “You are a bridegroom of blood,” because of the circumcision. + +

+

Yahweh said to Aaron, “Go into the wilderness to meet Moses.” +

+

He went, and met him on God’s mountain, and kissed him. + +Moses told Aaron all Yahweh’s words with which he had sent him, and all the signs with which he had instructed him. + +Moses and Aaron went and gathered together all the elders of the children of Israel. + +Aaron spoke all the words which Yahweh had spoken to Moses, and did the signs in the sight of the people. + +The people believed, and when they heard that Yahweh had visited the children of Israel, and that he had seen their affliction, then they bowed their heads and worshiped. + +

+ + +

Afterward Moses and Aaron came, and said to Pharaoh, “This is what Yahweh, the God of Israel, says, ‘Let my people go, that they may hold a feast to me in the wilderness.’” + +

+

Pharaoh said, “Who is Yahweh, that I should listen to his voice to let Israel go? I don’t know Yahweh, and moreover I will not let Israel go.” + +

+

They said, “The God of the Hebrews has met with us. Please let us go three daysjourney into the wilderness, and sacrifice to Yahweh, our God, lest he fall on us with pestilence, or with the sword.” + +

+

The king of Egypt said to them, “Why do you, Moses and Aaron, take the people from their work? Get back to your burdens!” + +Pharaoh said, “Behold, the people of the land are now many, and you make them rest from their burdens.” + +The same day Pharaoh commanded the taskmasters of the people and their officers, saying, + +You shall no longer give the people straw to make brick, as before. Let them go and gather straw for themselves. + +You shall require from them the number of the bricks which they made before. You shall not diminish anything of it, for they are idle. Therefore they cry, saying, ‘Let’s go and sacrifice to our God.’ + +Let heavier work be laid on the men, that they may labor in it. Don’t let them pay any attention to lying words.” + +

+

The taskmasters of the people went out with their officers, and they spoke to the people, saying, “This is what Pharaoh says: ‘I will not give you straw. + +Go yourselves, get straw where you can find it, for nothing of your work shall be diminished.’” + +So the people were scattered abroad throughout all the land of Egypt to gather stubble for straw. + +The taskmasters were urgent saying, “Fulfill your work quota daily, as when there was straw!” + +The officers of the children of Israel, whom Pharaoh’s taskmasters had set over them, were beaten, and were asked, “Why haven’t you fulfilled your quota both yesterday and today, in making brick as before?” + +

+

Then the officers of the children of Israel came and cried to Pharaoh, saying, “Why do you deal this way with your servants? + +No straw is given to your servants, and they tell us, ‘Make brick!’ and behold, your servants are beaten; but the fault is in your own people.” + +

+

But Pharaoh said, “You are idle! You are idle! Therefore you say, ‘Let’s go and sacrifice to Yahweh.’ + +Go therefore now, and work; for no straw shall be given to you; yet you shall deliver the same number of bricks!” + +

+

The officers of the children of Israel saw that they were in trouble when it was said, “You shall not diminish anything from your daily quota of bricks!” + +

+

They met Moses and Aaron, who stood along the way, as they came out from Pharaoh. + +They said to them, “May Yahweh look at you and judge, because you have made us a stench to be abhorred in the eyes of Pharaoh, and in the eyes of his servants, to put a sword in their hand to kill us!” + +

+

Moses returned to Yahweh, and said, “Lord, why have you brought trouble on this people? Why is it that you have sent me? + +For since I came to Pharaoh to speak in your name, he has brought trouble on this people. You have not rescued your people at all!” + +

+ + +

Yahweh said to Moses, “Now you shall see what I will do to Pharaoh, for by a strong hand he shall let them go, and by a strong hand he shall drive them out of his land.” + +

+

God spoke to Moses, and said to him, “I am Yahweh. + +I appeared to Abraham, to Isaac, and to Jacob, as God Almighty; but by my name Yahweh I was not known to them. + +I have also established my covenant with them, to give them the land of Canaan, the land of their travels, in which they lived as aliens. + +Moreover I have heard the groaning of the children of Israel, whom the Egyptians keep in bondage, and I have remembered my covenant. + +Therefore tell the children of Israel, ‘I am Yahweh, 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 an outstretched arm, and with great judgments. + +I will take you to myself for a people. I will be your God; and you shall know that I am Yahweh your God, who brings you out from under the burdens of the Egyptians. + +I will bring you into the land which I swore to give to Abraham, to Isaac, and to Jacob; and I will give it to you for a heritage: I am Yahweh.’” + +

+

Moses spoke so to the children of Israel, but they didn’t listen to Moses for anguish of spirit, and for cruel bondage. + +

+

Yahweh spoke to Moses, saying, + +Go in, speak to Pharaoh king of Egypt, that he let the children of Israel go out of his land.” + +

+

Moses spoke before Yahweh, saying, “Behold, the children of Israel haven’t listened to me. How then shall Pharaoh listen to me, when I have uncircumcised lips?” + +Yahweh spoke to Moses and to Aaron, and gave them a command to the children of Israel, and to Pharaoh king of Egypt, to bring the children of Israel out of the land of Egypt. + +

+

These are the heads of their fathers’ houses. The sons of Reuben the firstborn of Israel: Hanoch, and Pallu, Hezron, and Carmi; these are the families of Reuben. + +The sons of Simeon: Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanite woman; these are the families of Simeon. + +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 one hundred thirty-seven years. + +The sons of Gershon: Libni and Shimei, according to their families. + +The sons of Kohath: Amram, and Izhar, and Hebron, and Uzziel; and the years of the life of Kohath were one hundred thirty-three years. + +The sons of Merari: Mahli and Mushi. These are the families of the Levites according to their generations. + +Amram took Jochebed his father’s sister to himself as wife; and she bore him Aaron and Moses. The years of the life of Amram were one hundred thirty-seven years. + +The sons of Izhar: Korah, and Nepheg, and Zichri. + +The sons of Uzziel: Mishael, Elzaphan, and Sithri. + +Aaron took Elisheba, the daughter of Amminadab, the sister of Nahshon, as his wife; and she bore him Nadab and Abihu, Eleazar and Ithamar. + +The sons of Korah: Assir, Elkanah, and Abiasaph; these are the families of the Korahites. + +Eleazar Aaron’s son took one of the daughters of Putiel as his wife; and she bore him Phinehas. These are the heads of the fathers’ houses of the Levites according to their families. + +These are that Aaron and Moses to whom Yahweh said, “Bring out the children of Israel from the land of Egypt according to their armies.” + +These are those who spoke to Pharaoh king of Egypt, to bring out the children of Israel from Egypt. These are that Moses and Aaron. + +

+

On the day when Yahweh spoke to Moses in the land of Egypt, + +Yahweh said to Moses, “I am Yahweh. Tell Pharaoh king of Egypt all that I tell you.” + +

+

Moses said before Yahweh, “Behold, I am of uncircumcised lips, and how shall Pharaoh listen to me?” + +

+ + +

Yahweh said to Moses, “Behold, I have made you as God to Pharaoh; and Aaron your brother shall be your prophet. + +You shall speak all that I command you; and Aaron your brother shall speak to Pharaoh, that he let the children of Israel go out of his land. + +I will harden Pharaoh’s heart, and multiply my signs and my wonders in the land of Egypt. + +But Pharaoh will not listen to you, so I will lay my hand on Egypt, and bring out my armies, my people the children of Israel, out of the land of Egypt by great judgments. + +The Egyptians shall know that I am Yahweh when I stretch out my hand on Egypt, and bring the children of Israel out from among them.” + +

+

Moses and Aaron did so. As Yahweh commanded them, so they did. + +Moses was eighty years old, and Aaron eighty-three years old, when they spoke to Pharaoh. + +

+

Yahweh spoke to Moses and to Aaron, saying, + +When Pharaoh speaks to you, saying, ‘Perform a miracle!’ then you shall tell Aaron, ‘Take your rod, and cast it down before Pharaoh, and it will become a serpent.’” + +

+

Moses and Aaron went in to Pharaoh, and they did so, as Yahweh had commanded. Aaron cast down his rod before Pharaoh and before his servants, and it became a serpent. + +Then Pharaoh also called for the wise men and the sorcerers. They also, the magicians of Egypt, did the same thing with their enchantments. + +For they each cast down their rods, and they became serpents; but Aaron’s rod swallowed up their rods. + +Pharaoh’s heart was hardened, and he didn’t listen to them, as Yahweh had spoken. + +

+

Yahweh said to Moses, “Pharaoh’s heart is stubborn. He refuses to let the people go. + +Go to Pharaoh in the morning. Behold, he is going out to the water. You shall stand by the river’s bank to meet him. You shall take the rod which was turned to a serpent in your hand. + +You shall tell him, ‘Yahweh, the God of the Hebrews, has sent me to you, saying, “Let my people go, that they may serve me in the wilderness. Behold, until now you haven’t listened.” + +Yahweh says, “In this you shall know that I am Yahweh. Behold: I will strike with the rod that is in my hand on the waters which are in the river, and they shall be turned to blood. + +The fish that are in the river will die and the river will become foul. The Egyptians will loathe to drink water from the river.”’” + +Yahweh said to Moses, “Tell Aaron, ‘Take your rod, and stretch out your hand over the waters of Egypt, over their rivers, over their streams, and over their pools, and over all their ponds of water, that they may become blood. There will be blood throughout all the land of Egypt, both in vessels of wood and in vessels of stone.’” + +

+

Moses and Aaron did so, as Yahweh commanded; and he lifted up the rod, and struck 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. + +The fish that were in the river died. The river became foul. The Egyptians couldn’t drink water from the river. The blood was throughout all the land of Egypt. + +The magicians of Egypt did the same thing with their enchantments. So Pharaoh’s heart was hardened, and he didn’t listen to them, as Yahweh had spoken. + +Pharaoh turned and went into his house, and he didn’t even take this to heart. + +All the Egyptians dug around the river for water to drink; for they couldn’t drink the river water. + +Seven days were fulfilled, after Yahweh had struck the river. + +

+ + +

Yahweh spoke to Moses, “Go in to Pharaoh, and tell him, ‘This is what Yahweh says, “Let my people go, that they may serve me. + +If you refuse to let them go, behold, I will plague all your borders with frogs. + +The river will swarm with frogs, which will go up and come into your house, and into your bedroom, and on your bed, and into the house of your servants, and on your people, and into your ovens, and into your kneading troughs. + +The frogs shall come up both on you, and on your people, and on all your servants.”’” + +Yahweh said to Moses, “Tell Aaron, ‘Stretch out your hand with your rod over the rivers, over the streams, and over the pools, and cause frogs to come up on the land of Egypt.’” + +Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt. + +The magicians did the same thing with their enchantments, and brought up frogs on the land of Egypt. + +

+

Then Pharaoh called for Moses and Aaron, and said, “Entreat Yahweh, that he take away the frogs from me and from my people; and I will let the people go, that they may sacrifice to Yahweh.” + +

+

Moses said to Pharaoh, “I give you the honor of setting the time that I should pray for you, and for your servants, and for your people, that the frogs be destroyed from you and your houses, and remain in the river only.” + +

+

Pharaoh said, “Tomorrow.” +

+

Moses said, “Let it be according to your word, that you may know that there is no one like Yahweh our God. + +The frogs shall depart from you, and from your houses, and from your servants, and from your people. They shall remain in the river only.” + +

+

Moses and Aaron went out from Pharaoh, and Moses cried to Yahweh concerning the frogs which he had brought on Pharaoh. + +Yahweh did according to the word of Moses, and the frogs died out of the houses, out of the courts, and out of the fields. + +They gathered them together in heaps, and the land stank. + +But when Pharaoh saw that there was a respite, he hardened his heart, and didn’t listen to them, as Yahweh had spoken. + +

+

Yahweh said to Moses, “Tell Aaron, ‘Stretch out your rod, and strike the dust of the earth, that it may become lice throughout all the land of Egypt.’” + +They did so; and Aaron stretched out his hand with his rod, and struck the dust of the earth, and there were lice on man, and on animal; all the dust of the earth became lice throughout all the land of Egypt. + +The magicians tried with their enchantments to produce lice, but they couldn’t. There were lice on man, and on animal. + +Then the magicians said to Pharaoh, “This is God’s finger;” but Pharaoh’s heart was hardened, and he didn’t listen to them, as Yahweh had spoken. + +

+

Yahweh said to Moses, “Rise up early in the morning, and stand before Pharaoh; behold, he comes out to the water; and tell him, ‘This is what Yahweh says, “Let my people go, that they may serve me. + +Else, if you will not let my people go, behold, I will send swarms of flies on you, and on your servants, and on your people, and into your houses. The houses of the Egyptians shall be full of swarms of flies, and also the ground they are on. + +I will set apart in that day the land of Goshen, in which my people dwell, that no swarms of flies shall be there, to the end you may know that I am Yahweh on the earth. + +I will put a division between my people and your people. This sign shall happen by tomorrow.”’” + +Yahweh did so; and there came grievous swarms of flies into the house of Pharaoh, and into his servants’ houses. In all the land of Egypt the land was corrupted by reason of the swarms of flies. + +

+

Pharaoh called for Moses and for Aaron, and said, “Go, sacrifice to your God in the land!” + +

+

Moses said, “It isn’t appropriate to do so; for we shall sacrifice the abomination of the Egyptians to Yahweh our God. Behold, if we sacrifice the abomination of the Egyptians before their eyes, won’t they stone us? + +We will go three days’ journey into the wilderness, and sacrifice to Yahweh our God, as he shall command us.” + +

+

Pharaoh said, “I will let you go, that you may sacrifice to Yahweh your God in the wilderness, only you shall not go very far away. Pray for me.” + +

+

Moses said, “Behold, I am going out from you. I will pray to Yahweh that the swarms of flies may depart from Pharaoh, from his servants, and from his people, tomorrow; only don’t let Pharaoh deal deceitfully any more in not letting the people go to sacrifice to Yahweh.” + +Moses went out from Pharaoh, and prayed to Yahweh. + +Yahweh 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. + +Pharaoh hardened his heart this time also, and he didn’t let the people go. + +

+ + +

Then Yahweh said to Moses, “Go in to Pharaoh, and tell him, ‘This is what Yahweh, the God of the Hebrews, says: “Let my people go, that they may serve me. + +For if you refuse to let them go, and hold them still, + +behold, Yahweh’s hand is on your livestock which are in the field, on the horses, on the donkeys, on the camels, on the herds, and on the flocks with a very grievous pestilence. + +Yahweh will make a distinction between the livestock of Israel and the livestock of Egypt; and nothing shall die of all that belongs to the children of Israel.”’” + +Yahweh appointed a set time, saying, “Tomorrow Yahweh shall do this thing in the land.” + +Yahweh did that thing on the next day; and all the livestock of Egypt died, but of the livestock of the children of Israel, not one died. + +Pharaoh sent, and, behold, there was not so much as one of the livestock of the Israelites dead. But the heart of Pharaoh was stubborn, and he didn’t let the people go. + +

+

Yahweh said to Moses and to Aaron, “Take handfuls of ashes of the furnace, and let Moses sprinkle it toward the sky in the sight of Pharaoh. + +It shall become small dust over all the land of Egypt, and shall be boils and blisters breaking out on man and on animal, throughout all the land of Egypt.” + +

+

They took ashes of the furnace, and stood before Pharaoh; and Moses sprinkled it up toward the sky; and it became boils and blisters breaking out on man and on animal. + +The magicians couldn’t stand before Moses because of the boils; for the boils were on the magicians and on all the Egyptians. + +Yahweh hardened the heart of Pharaoh, and he didn’t listen to them, as Yahweh had spoken to Moses. + +

+

Yahweh said to Moses, “Rise up early in the morning, and stand before Pharaoh, and tell him, ‘This is what Yahweh, the God of the Hebrews, says: “Let my people go, that they may serve me. + +For this time I will send all my plagues against your heart, against your officials, and against your people; that you may know that there is no one like me in all the earth. + +For now I would have stretched out my hand, and struck you and your people with pestilence, and you would have been cut off from the earth; + +but indeed for this cause I have made you stand: to show you my power, and that my name may be declared throughout all the earth, + +because you still exalt yourself against my people, that you won’t let them go. + +Behold, tomorrow about this time I will cause it to rain a very grievous hail, such as has not been in Egypt since the day it was founded even until now. + +Now therefore command that all of your livestock and all that you have in the field be brought into shelter. The hail will come down on every man and animal that is found in the field, and isn’t brought home, and they will die.”’” + +

+

Those who feared Yahweh’s word among the servants of Pharaoh made their servants and their livestock flee into the houses. + +Whoever didn’t respect Yahweh’s word left his servants and his livestock in the field. + +

+

Yahweh said to Moses, “Stretch out your hand toward the sky, that there may be hail in all the land of Egypt, on man, and on animal, and on every herb of the field, throughout the land of Egypt.” + +

+

Moses stretched out his rod toward the heavens, and Yahweh sent thunder and hail; and lightning flashed down to the earth. Yahweh rained hail on the land of Egypt. + +So there was very severe hail, and lightning mixed with the hail, such as had not been in all the land of Egypt since it became a nation. + +The hail struck throughout all the land of Egypt all that was in the field, both man and animal; and the hail struck every herb of the field, and broke every tree of the field. + +Only in the land of Goshen, where the children of Israel were, there was no hail. + +

+

Pharaoh sent and called for Moses and Aaron, and said to them, “I have sinned this time. Yahweh is righteous, and I and my people are wicked. + +Pray to Yahweh; for there has been enough of mighty thunderings and hail. I will let you go, and you shall stay no longer.” + +

+

Moses said to him, “As soon as I have gone out of the city, I will spread out my hands to Yahweh. The thunders shall cease, and there will not be any more hail; that you may know that the earth is Yahweh’s. + +But as for you and your servants, I know that you don’t yet fear Yahweh God.” + +

+

The flax and the barley were struck, for the barley had ripened and the flax was blooming. + +But the wheat and the spelt were not struck, for they had not grown up. + +Moses went out of the city from Pharaoh, and spread out his hands to Yahweh; and the thunders and hail ceased, and the rain was not poured on the earth. + +When Pharaoh saw that the rain and the hail and the thunders had ceased, he sinned yet more, and hardened his heart, he and his servants. + +The heart of Pharaoh was hardened, and he didn’t let the children of Israel go, just as Yahweh had spoken through Moses. + +

+ + +

Yahweh said to Moses, “Go in to Pharaoh, for I have hardened his heart and the heart of his servants, that I may show these my signs among them; + +and that you may tell in the hearing of your son, and of your son’s son, what things I have done to Egypt, and my signs which I have done among them; that you may know that I am Yahweh.” + +

+

Moses and Aaron went in to Pharaoh, and said to him, “This is what Yahweh, the God of the Hebrews, says: ‘How long will you refuse to humble yourself before me? Let my people go, that they may serve me. + +Or else, if you refuse to let my people go, behold, tomorrow I will bring locusts into your country, + +and they shall cover the surface of the earth, so that one won’t be able to see the earth. They shall eat the residue of that which has escaped, which remains to you from the hail, and shall eat every tree which grows for you out of the field. + +Your houses shall be filled, and the houses of all your servants, and the houses of all the Egyptians, as neither your fathers nor your fathers’ fathers have seen, since the day that they were on the earth to this day.’” He turned, and went out from Pharaoh. + +

+

Pharaoh’s servants said to him, “How long will this man be a snare to us? Let the men go, that they may serve Yahweh, their God. Don’t you yet know that Egypt is destroyed?” + +

+

Moses and Aaron were brought again to Pharaoh, and he said to them, “Go, serve Yahweh your God; but who are those who will go?” + +

+

Moses said, “We will go with our young and with our old. We will go with our sons and with our daughters, with our flocks and with our herds; for we must hold a feast to Yahweh.” + +

+

He said to them, “Yahweh be with you if I let you go with your little ones! See, evil is clearly before your faces. + +Not so! Go now you who are men, and serve Yahweh; for that is what you desire!” Then they were driven out from Pharaoh’s presence. + +

+

Yahweh said to Moses, “Stretch out your hand over the land of Egypt for the locusts, that they may come up on the land of Egypt, and eat every herb of the land, even all that the hail has left.” + +Moses stretched out his rod over the land of Egypt, and Yahweh brought an east wind on the land all that day, and all night; and when it was morning, the east wind brought the locusts. + +The locusts went up over all the land of Egypt, and rested in all the borders of Egypt. They were very grievous. Before them there were no such locusts as they, nor will there ever be again. + +For they covered the surface of the whole earth, so that the land was darkened, and they ate every herb of the land, and all the fruit of the trees which the hail had left. There remained nothing green, either tree or herb of the field, through all the land of Egypt. + +Then Pharaoh called for Moses and Aaron in haste, and he said, “I have sinned against Yahweh your God, and against you. + +Now therefore please forgive my sin again, and pray to Yahweh your God, that he may also take away from me this death.” + +

+

Moses went out from Pharaoh, and prayed to Yahweh. + +Yahweh sent an exceedingly strong west wind, which took up the locusts, and drove them into the Red Sea.10:19 +“Red Sea” is the translation for the Hebrew “Yam Suf”, which could be more literally translated “Sea of Reeds” or “Sea of Cattails”. It refers to the body of water currently known as the Red Sea, or possibly to one of the bodies of water connected to it or near it. There remained not one locust in all the borders of Egypt. + +But Yahweh hardened Pharaoh’s heart, and he didn’t let the children of Israel go. + +

+

Yahweh said to Moses, “Stretch out your hand toward the sky, that there may be darkness over the land of Egypt, even darkness which may be felt.” + +Moses stretched out his hand toward the sky, and there was a thick darkness in all the land of Egypt for three days. + +They didn’t see one another, and nobody rose from his place for three days; but all the children of Israel had light in their dwellings. + +

+

Pharaoh called to Moses, and said, “Go, serve Yahweh. Only let your flocks and your herds stay behind. Let your little ones also go with you.” + +

+

Moses said, “You must also give into our hand sacrifices and burnt offerings, that we may sacrifice to Yahweh our God. + +Our livestock also shall go with us. Not a hoof shall be left behind, for of it we must take to serve Yahweh our God; and we don’t know with what we must serve Yahweh, until we come there.” + +

+

But Yahweh hardened Pharaoh’s heart, and he wouldn’t let them go. + +Pharaoh said to him, “Get away from me! Be careful to see my face no more; for in the day you see my face you shall die!” + +

+

Moses said, “You have spoken well. I will see your face again no more.” + +

+ + +

Yahweh said to Moses, “I will bring yet one more plague on Pharaoh, and on Egypt; afterwards he will let you go. When he lets you go, he will surely thrust you out altogether. + +Speak now in the ears of the people, and let every man ask of his neighbor, and every woman of her neighbor, jewels of silver, and jewels of gold.” + +Yahweh gave the people favor 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. + +

+

Moses said, “This is what Yahweh says: ‘About midnight I will go out into the middle of Egypt, + +and all the firstborn in the land of Egypt shall die, from the firstborn of Pharaoh who sits on his throne, even to the firstborn of the female servant who is behind the mill, and all the firstborn of livestock. + +There will be a great cry throughout all the land of Egypt, such as there has not been, nor will be any more. + +But against any of the children of Israel a dog won’t even bark or move its tongue, against man or animal, that you may know that Yahweh makes a distinction between the Egyptians and Israel. + +All these servants of yours will come down to me, and bow down themselves to me, saying, “Get out, with all the people who follow you;” and after that I will go out.’” He went out from Pharaoh in hot anger. + +

+

Yahweh said to Moses, “Pharaoh won’t listen to you, that my wonders may be multiplied in the land of Egypt.” + +Moses and Aaron did all these wonders before Pharaoh, but Yahweh hardened Pharaoh’s heart, and he didn’t let the children of Israel go out of his land. + +

+ + +

Yahweh spoke to Moses and Aaron in the land of Egypt, saying, + +This month shall be to you the beginning of months. It shall be the first month of the year to you. + +Speak to all the congregation of Israel, saying, ‘On the tenth day of this month, they shall take to them every man a lamb, according to their fathers’ houses, a lamb for a household; + +and if the household is too little for a lamb, then he and his neighbor next to his house shall take one according to the number of the souls. You shall make your count for the lamb according to what everyone can eat. + +Your lamb shall be without defect, a male a year old. You shall take it from the sheep or from the goats. + +You shall keep it until the fourteenth day of the same month; and the whole assembly of the congregation of Israel shall kill it at evening. + +They shall take some of the blood, and put it on the two door posts and on the lintel, on the houses in which they shall eat it. + +They shall eat the meat in that night, roasted with fire, with unleavened bread. They shall eat it with bitter herbs. + +Don’t eat it raw, nor boiled at all with water, but roasted with fire; with its head, its legs and its inner parts. + +You shall let nothing of it remain until the morning; but that which remains of it until the morning you shall burn with fire. + +This is how you shall eat it: with your belt on your waist, your sandals on your feet, and your staff in your hand; and you shall eat it in haste: it is Yahweh’s Passover. + +For I will go through the land of Egypt in that night, and will strike all the firstborn in the land of Egypt, both man and animal. I will execute judgments against all the gods of Egypt. I am Yahweh. + +The blood shall be to you for a token on the houses where you are. When I see the blood, I will pass over you, and no plague will be on you to destroy you when I strike the land of Egypt. + +This day shall be a memorial for you. You shall keep it as a feast to Yahweh. You shall keep it as a feast throughout your generations by an ordinance forever. + +

+

“‘Seven days you shall eat unleavened bread; even the first day you shall put away yeast out of your houses, for whoever eats leavened bread from the first day until the seventh day, that soul shall be cut off from Israel. + +In the first day there shall be to you a holy convocation, and in the seventh day a holy convocation; no kind of work shall be done in them, except that which every man must eat, only that may be done by you. + +You shall observe the feast of unleavened bread; for in this same day I have brought your armies out of the land of Egypt. Therefore you shall observe this day throughout your generations by an ordinance forever. + +In the first month, on the fourteenth day of the month at evening, you shall eat unleavened bread, until the twenty first day of the month at evening. + +There shall be no yeast found in your houses for seven days, for whoever eats that which is leavened, that soul shall be cut off from the congregation of Israel, whether he is a foreigner, or one who is born in the land. + +You shall eat nothing leavened. In all your habitations you shall eat unleavened bread.’” + +

+

Then Moses called for all the elders of Israel, and said to them, “Draw out, and take lambs according to your families, and kill the Passover. + +You shall take a bunch of hyssop, and dip it in the blood that is in the basin, and strike the lintel and the two door posts with the blood that is in the basin. None of you shall go out of the door of his house until the morning. + +For Yahweh will pass through to strike the Egyptians; and when he sees the blood on the lintel, and on the two door posts, Yahweh will pass over the door, and will not allow the destroyer to come in to your houses to strike you. + +You shall observe this thing for an ordinance to you and to your sons forever. + +It shall happen when you have come to the land which Yahweh will give you, as he has promised, that you shall keep this service. + +It will happen, when your children ask you, ‘What do you mean by this service?’ + +that you shall say, ‘It is the sacrifice of Yahweh’s Passover, who passed over the houses of the children of Israel in Egypt, when he struck the Egyptians, and spared our houses.’” +

+

The people bowed their heads and worshiped. + +The children of Israel went and did so; as Yahweh had commanded Moses and Aaron, so they did. + +

+

At midnight, Yahweh struck all the firstborn in the land of Egypt, from the firstborn of Pharaoh who sat on his throne to the firstborn of the captive who was in the dungeon, and all the firstborn of livestock. + +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. + +He called for Moses and Aaron by night, and said, “Rise up, get out from among my people, both you and the children of Israel; and go, serve Yahweh, as you have said! + +Take both your flocks and your herds, as you have said, and be gone; and bless me also!” + +

+

The Egyptians were urgent with the people, to send them out of the land in haste, for they said, “We are all dead men.” + +The people took their dough before it was leavened, their kneading troughs being bound up in their clothes on their shoulders. + +The children of Israel did according to the word of Moses; and they asked of the Egyptians jewels of silver, and jewels of gold, and clothing. + +Yahweh gave the people favor in the sight of the Egyptians, so that they let them have what they asked. They plundered the Egyptians. + +

+

The children of Israel traveled from Rameses to Succoth, about six hundred thousand on foot who were men, in addition to children. + +A mixed multitude went up also with them, with flocks, herds, and even very much livestock. + +They baked unleavened cakes of the dough which they brought out of Egypt; for it wasn’t leavened, because they were thrust out of Egypt, and couldn’t wait, and they had not prepared any food for themselves. + +Now the time that the children of Israel lived in Egypt was four hundred thirty years. + +At the end of four hundred thirty years, to the day, all of Yahweh’s armies went out from the land of Egypt. + +It is a night to be much observed to Yahweh for bringing them out from the land of Egypt. This is that night of Yahweh, to be much observed by all the children of Israel throughout their generations. + +

+

Yahweh said to Moses and Aaron, “This is the ordinance of the Passover. No foreigner shall eat of it, + +but every man’s servant who is bought for money, when you have circumcised him, then shall he eat of it. + +A foreigner and a hired servant shall not eat of it. + +It must be eaten in one house. You shall not carry any of the meat outside of the house. Do not break any of its bones. + +All the congregation of Israel shall keep it. + +When a stranger lives as a foreigner with you, and would like to keep the Passover to Yahweh, let all his males be circumcised, and then let him come near and keep it. He shall be as one who is born in the land; but no uncircumcised person shall eat of it. + +One law shall be to him who is born at home, and to the stranger who lives as a foreigner among you.” + +All the children of Israel did so. As Yahweh commanded Moses and Aaron, so they did. + +That same day, Yahweh brought the children of Israel out of the land of Egypt by their armies. + +

+ + +

Yahweh spoke to Moses, saying, + +Sanctify to me all the firstborn, whatever opens the womb among the children of Israel, both of man and of animal. It is mine.” + +

+

Moses said to the people, “Remember this day, in which you came out of Egypt, out of the house of bondage; for by strength of hand Yahweh brought you out from this place. No leavened bread shall be eaten. + +Today you go out in the month Abib. + +It shall be, when Yahweh brings you into the land of the Canaanite, and the Hittite, and the Amorite, and the Hivite, and the Jebusite, which he swore to your fathers to give you, a land flowing with milk and honey, that you shall keep this service in this month. + +Seven days you shall eat unleavened bread, and in the seventh day shall be a feast to Yahweh. + +Unleavened bread shall be eaten throughout the seven days; and no leavened bread shall be seen with you. No yeast shall be seen with you, within all your borders. + +You shall tell your son in that day, saying, ‘It is because of that which Yahweh did for me when I came out of Egypt.’ + +It shall be for a sign to you on your hand, and for a memorial between your eyes, that Yahweh’s law may be in your mouth; for with a strong hand Yahweh has brought you out of Egypt. + +You shall therefore keep this ordinance in its season from year to year. + +

+

It shall be, when Yahweh brings you into the land of the Canaanite, as he swore to you and to your fathers, and will give it to you, + +that you shall set apart to Yahweh all that opens the womb, and every firstborn that comes from an animal which you have. The males shall be Yahweh’s. + +Every firstborn of a donkey you shall redeem with a lamb; and if you will not redeem it, then you shall break its neck; and you shall redeem all the firstborn of man among your sons. + +It shall be, when your son asks you in time to come, saying, ‘What is this?’ that you shall tell him, ‘By strength of hand Yahweh brought us out from Egypt, from the house of bondage. + +When Pharaoh stubbornly refused to let us go, Yahweh killed all the firstborn in the land of Egypt, both the firstborn of man, and the firstborn of livestock. Therefore I sacrifice to Yahweh all that opens the womb, being males; but all the firstborn of my sons I redeem.’ + +It shall be for a sign on your hand, and for symbols between your eyes; for by strength of hand Yahweh brought us out of Egypt.” + +

+

When Pharaoh had let the people go, God didn’t lead them by the way of the land of the Philistines, although that was near; for God said, “Lest perhaps the people change their minds when they see war, and they return to Egypt”; + +but God led the people around by the way of the wilderness by the Red Sea; and the children of Israel went up armed out of the land of Egypt. + +Moses took the bones of Joseph with him, for he had made the children of Israel swear, saying, “God will surely visit you, and you shall carry up my bones away from here with you.” + +They took their journey from Succoth, and encamped in Etham, in the edge of the wilderness. + +Yahweh went before them by day in a pillar of cloud, to lead them on their way, and by night in a pillar of fire, to give them light, that they might go by day and by night: + +the pillar of cloud by day, and the pillar of fire by night, didn’t depart from before the people. + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, that they turn back and encamp before Pihahiroth, between Migdol and the sea, before Baal Zephon. You shall encamp opposite it by the sea. + +Pharaoh will say of the children of Israel, ‘They are entangled in the land. The wilderness has shut them in.’ + +I will harden Pharaoh’s heart, and he will follow after them; and I will get honor over Pharaoh, and over all his armies; and the Egyptians shall know that I am Yahweh.” They did so. + +

+

The king of Egypt was told that the people had fled; and the heart of Pharaoh and of his servants was changed toward the people, and they said, “What is this we have done, that we have let Israel go from serving us?” + +He prepared his chariot, and took his army with him; + +and he took six hundred chosen chariots, and all the chariots of Egypt, with captains over all of them. + +Yahweh hardened the heart of Pharaoh king of Egypt, and he pursued the children of Israel; for the children of Israel went out with a high hand.14:8 +or, defiantly. + +The Egyptians pursued them. All the horses and chariots of Pharaoh, his horsemen, and his army overtook them encamping by the sea, beside Pihahiroth, before Baal Zephon. + +

+

When Pharaoh came near, the children of Israel lifted up their eyes, and behold, the Egyptians were marching after them; and they were very afraid. The children of Israel cried out to Yahweh. + +They said to Moses, “Because there were no graves in Egypt, have you taken us away to die in the wilderness? Why have you treated us this way, to bring us out of Egypt? + +Isn’t this the word that we spoke to you in Egypt, saying, ‘Leave us alone, that we may serve the Egyptians’? For it would have been better for us to serve the Egyptians than to die in the wilderness.” + +

+

Moses said to the people, “Don’t be afraid. Stand still, and see the salvation of Yahweh, which he will work for you today; for you will never again see the Egyptians whom you have seen today. + +Yahweh will fight for you, and you shall be still.” + +

+

Yahweh said to Moses, “Why do you cry to me? Speak to the children of Israel, that they go forward. + +Lift up your rod, and stretch out your hand over the sea and divide it. Then the children of Israel shall go into the middle of the sea on dry ground. + +Behold, I myself will harden the hearts of the Egyptians, and they will go in after them. I will get myself honor over Pharaoh, and over all his armies, over his chariots, and over his horsemen. + +The Egyptians shall know that I am Yahweh when I have gotten myself honor over Pharaoh, over his chariots, and over his horsemen.” + +The angel of God, who went before the camp of Israel, moved and went behind them; and the pillar of cloud moved from before them, and stood behind them. + +It came between the camp of Egypt and the camp of Israel. There was the cloud and the darkness, yet it gave light by night. One didn’t come near the other all night. + +

+

Moses stretched out his hand over the sea, and Yahweh caused the sea to go back by a strong east wind all night, and made the sea dry land, and the waters were divided. + +The children of Israel went into the middle of the sea on the dry ground; and the waters were a wall to them on their right hand and on their left. + +The Egyptians pursued, and went in after them into the middle of the sea: all of Pharaoh’s horses, his chariots, and his horsemen. + +In the morning watch, Yahweh looked out on the Egyptian army through the pillar of fire and of cloud, and confused the Egyptian army. + +He took off their chariot wheels, and they drove them heavily; so that the Egyptians said, “Let’s flee from the face of Israel, for Yahweh fights for them against the Egyptians!” + +

+

Yahweh said to Moses, “Stretch out your hand over the sea, that the waters may come again on the Egyptians, on their chariots, and on their horsemen.” + +Moses stretched out his hand over the sea, and the sea returned to its strength when the morning appeared; and the Egyptians fled against it. Yahweh overthrew the Egyptians in the middle of the sea. + +The waters returned, and covered the chariots and the horsemen, even all Pharaoh’s army that went in after them into the sea. There remained not so much as one of them. + +But the children of Israel walked on dry land in the middle of the sea, and the waters were a wall to them on their right hand and on their left. + +Thus Yahweh saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead on the seashore. + +Israel saw the great work which Yahweh did to the Egyptians, and the people feared Yahweh; and they believed in Yahweh and in his servant Moses. + +

+ + +

Then Moses and the children of Israel sang this song to Yahweh, and said, +

+I will sing to Yahweh, for he has triumphed gloriously. + +He has thrown the horse and his rider into the sea. + + +Yah is my strength and song. + +He has become my salvation. + +This is my God, and I will praise him; + +my father’s God, and I will exalt him. + + +Yahweh is a man of war. + +Yahweh is his name. + + +He has cast Pharaoh’s chariots and his army into the sea. + +His chosen captains are sunk in the Red Sea. + + +The deeps cover them. + +They went down into the depths like a stone. + + +Your right hand, Yahweh, is glorious in power. + +Your right hand, Yahweh, dashes the enemy in pieces. + + +In the greatness of your excellency, you overthrow those who rise up against you. + +You send out your wrath. It consumes them as stubble. + + +With the blast of your nostrils, the waters were piled up. + +The floods stood upright as a heap. + +The deeps were congealed in the heart of the sea. + + +The enemy said, ‘I will pursue. I will overtake. I will divide the plunder. + +My desire will be satisfied on them. + +I will draw my sword. My hand will destroy them.’ + + +You blew with your wind. + +The sea covered them. + +They sank like lead in the mighty waters. + + +Who is like you, Yahweh, among the gods? + +Who is like you, glorious in holiness, + +fearful in praises, doing wonders? + + +You stretched out your right hand. + +The earth swallowed them. + + +You, in your loving kindness, have led the people that you have redeemed. + +You have guided them in your strength to your holy habitation. + + +The peoples have heard. + +They tremble. + +Pangs have taken hold of the inhabitants of Philistia. + + +Then the chiefs of Edom were dismayed. + +Trembling takes hold of the mighty men of Moab. + +All the inhabitants of Canaan have melted away. + + +Terror and dread falls on them. + +By the greatness of your arm they are as still as a stone, + +until your people pass over, Yahweh, + +until the people you have purchased pass over. + + +You will bring them in, and plant them in the mountain of your inheritance, + +the place, Yahweh, which you have made for yourself to dwell in: + +the sanctuary, Lord, which your hands have established. + + +Yahweh will reign forever and ever.” + + +

For the horses of Pharaoh went in with his chariots and with his horsemen into the sea, and Yahweh brought back the waters of the sea on them; but the children of Israel walked on dry land in the middle of the sea. + +Miriam the prophetess, the sister of Aaron, took a tambourine in her hand; and all the women went out after her with tambourines and with dances. + +Miriam answered them, +

+Sing to Yahweh, for he has triumphed gloriously. + +He has thrown the horse and his rider into the sea.” + + +

Moses led Israel onward 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. + +When they came to Marah, they couldn’t drink from the waters of Marah, for they were bitter. Therefore its name was called Marah.15:23 +Marah means bitter. + +The people murmured against Moses, saying, “What shall we drink?” + +Then he cried to Yahweh. Yahweh showed him a tree, and he threw it into the waters, and the waters were made sweet. There he made a statute and an ordinance for them, and there he tested them. + +He said, “If you will diligently listen to Yahweh your God’s voice, and will do that which is right in his eyes, and will pay attention to his commandments, and keep all his statutes, I will put none of the diseases on you which I have put on the Egyptians; for I am Yahweh who heals you.” + +

+

They came to Elim, where there were twelve springs of water and seventy palm trees. They encamped there by the waters. + +

+ + +

They took their journey from Elim, and all the congregation of the children of Israel came to 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. + +The whole congregation of the children of Israel murmured against Moses and against Aaron in the wilderness; + +and the children of Israel said to them, “We wish that we had died by Yahweh’s hand in the land of Egypt, when we sat by the meat pots, when we ate our fill of bread, for you have brought us out into this wilderness to kill this whole assembly with hunger.” + +

+

Then Yahweh said to Moses, “Behold, I will rain bread from the sky for you, and the people shall go out and gather a day’s portion every day, that I may test them, whether they will walk in my law or not. + +It shall come to pass on the sixth day, that they shall prepare that which they bring in, and it shall be twice as much as they gather daily.” + +

+

Moses and Aaron said to all the children of Israel, “At evening, you shall know that Yahweh has brought you out from the land of Egypt. + +In the morning, you shall see Yahweh’s glory; because he hears your murmurings against Yahweh. Who are we, that you murmur against us?” + +Moses said, “Now Yahweh will give you meat to eat in the evening, and in the morning bread to satisfy you, because Yahweh hears your murmurings which you murmur against him. And who are we? Your murmurings are not against us, but against Yahweh.” + +Moses said to Aaron, “Tell all the congregation of the children of Israel, ‘Come close to Yahweh, for he has heard your murmurings.’” + +As Aaron spoke to the whole congregation of the children of Israel, they looked toward the wilderness, and behold, Yahweh’s glory appeared in the cloud. + +Yahweh spoke to Moses, saying, + +I have heard the murmurings of the children of Israel. Speak to them, saying, ‘At evening you shall eat meat, and in the morning you shall be filled with bread. Then you will know that I am Yahweh your God.’” + +

+

In the evening, quail came up and covered the camp; and in the morning the dew lay around the camp. + +When the dew that lay had gone, behold, on the surface of the wilderness was a small round thing, small as the frost on the ground. + +When the children of Israel saw it, they said to one another, “What is it?” For they didn’t know what it was. Moses said to them, “It is the bread which Yahweh has given you to eat. + +This is the thing which Yahweh has commanded: ‘Gather of it everyone according to his eating; an omer16:16 +An omer is about 2.2 liters or about 2.3 quarts a head, according to the number of your persons, you shall take it, every man for those who are in his tent.’” + +The children of Israel did so, and some gathered more, some less. + +When they measured it with an omer, he who gathered much had nothing over, and he who gathered little had no lack. They each gathered according to his eating. + +Moses said to them, “Let no one leave of it until the morning.” + +Notwithstanding they didn’t listen to Moses, but some of them left of it until the morning, so it bred worms and became foul; and Moses was angry with them. + +They gathered it morning by morning, everyone according to his eating. When the sun grew hot, it melted. + +On the sixth day, they gathered twice as much bread, two omers for each one; and all the rulers of the congregation came and told Moses. + +He said to them, “This is that which Yahweh has spoken, ‘Tomorrow is a solemn rest, a holy Sabbath to Yahweh. Bake that which you want to bake, and boil that which you want to boil; and all that remains over lay up for yourselves to be kept until the morning.’” + +They laid it up until the morning, as Moses ordered, and it didn’t become foul, and there were no worms in it. + +Moses said, “Eat that today, for today is a Sabbath to Yahweh. Today you shall not find it in the field. + +Six days you shall gather it, but on the seventh day is the Sabbath. In it there shall be none.” + +On the seventh day, some of the people went out to gather, and they found none. + +Yahweh said to Moses, “How long do you refuse to keep my commandments and my laws? + +Behold, because Yahweh has given you the Sabbath, therefore he gives you on the sixth day the bread of two days. Everyone stay in his place. Let no one go out of his place on the seventh day.” + +So the people rested on the seventh day. + +

+

The house of Israel called its nameManna”,16:31 +“Manna” means “What is it?” and it was like coriander seed, white; and its taste was like wafers with honey. + +Moses said, “This is the thing which Yahweh has commanded, ‘Let an omer-full of it be kept throughout your generations, that they may see the bread with which I fed you in the wilderness, when I brought you out of the land of Egypt.’” + +Moses said to Aaron, “Take a pot, and put an omer-full of manna in it, and lay it up before Yahweh, to be kept throughout your generations.” + +As Yahweh commanded Moses, so Aaron laid it up before the Testimony, to be kept. + +The children of Israel ate the manna forty years, until they came to an inhabited land. They ate the manna until they came to the borders of the land of Canaan. + +Now an omer is one tenth of an ephah.16:36 +1 ephah is about 22 liters or about 2/3 of a bushel + +

+ + +

All the congregation of the children of Israel traveled from the wilderness of Sin, starting according to Yahweh’s commandment, and encamped in Rephidim; but there was no water for the people to drink. + +Therefore the people quarreled with Moses, and said, “Give us water to drink.” +

+

Moses said to them, “Why do you quarrel with me? Why do you test Yahweh?” + +

+

The people were thirsty for water there; so the people murmured against Moses, and said, “Why have you brought us up out of Egypt, to kill us, our children, and our livestock with thirst?” + +

+

Moses cried to Yahweh, saying, “What shall I do with these people? They are almost ready to stone me.” + +

+

Yahweh said to Moses, “Walk on before the people, and take the elders of Israel with you, and take the rod in your hand with which you struck the Nile, and go. + +Behold, I will stand before you there on the rock in Horeb. You shall strike the rock, and water will come out of it, that the people may drink.” Moses did so in the sight of the elders of Israel. + +He called the name of the place Massah,17:7 +Massah means testing. + and Meribah,17:7 +Meribah means quarreling. because the children of Israel quarreled, and because they tested Yahweh, saying, “Is Yahweh among us, or not?” + +

+

Then Amalek came and fought with Israel in Rephidim. + +Moses said to Joshua, “Choose men for us, and go out to fight with Amalek. Tomorrow I will stand on the top of the hill with God’s rod in my hand.” + +So Joshua did as Moses had told him, and fought with Amalek; and Moses, Aaron, and Hur went up to the top of the hill. + +When Moses held up his hand, Israel prevailed. When he let down his hand, Amalek prevailed. + +But Moseshands were heavy; so they took a stone, and put it under him, and he sat on it. Aaron and Hur held up his hands, the one on the one side, and the other on the other side. His hands were steady until sunset. + +Joshua defeated Amalek and his people with the edge of the sword. + +Yahweh said to Moses, “Write this for a memorial in a book, and rehearse it in the ears of Joshua: that I will utterly blot out the memory of Amalek from under the sky.” + +Moses built an altar, and called its nameYahweh our Banner”.17:15 +Hebrew, Yahweh Nissi + +He said, “Yah has sworn: ‘Yahweh will have war with Amalek from generation to generation.’” + +

+ + +

Now Jethro, the priest of Midian, Mosesfather-in-law, heard of all that God had done for Moses and for Israel his people, how Yahweh had brought Israel out of Egypt. + +Jethro, Mosesfather-in-law, received Zipporah, Moses’ wife, after he had sent her away, + +and her two sons. The name of one son was Gershom,18:3 +“Gershom” sounds like the Hebrew for “an alien there”. for Moses said, “I have lived as a foreigner in a foreign land”. + +The name of the other was Eliezer,18:4 +Eliezer means “God is my helper”. + for he said, “My father’s God was my help and delivered me from Pharaoh’s sword.” + +Jethro, Mosesfather-in-law, came with Mosessons and his wife to Moses into the wilderness where he was encamped, at the Mountain of God. + +He said to Moses, “I, your father-in-law Jethro, have come to you with your wife, and her two sons with her.” + +

+

Moses went out to meet his father-in-law, and bowed and kissed him. They asked each other of their welfare, and they came into the tent. + +Moses told his father-in-law all that Yahweh had done to Pharaoh and to the Egyptians for Israel’s sake, all the hardships that had come on them on the way, and how Yahweh delivered them. + +Jethro rejoiced for all the goodness which Yahweh had done to Israel, in that he had delivered them out of the hand of the Egyptians. + +Jethro said, “Blessed be Yahweh, who has delivered you out of the hand of the Egyptians, and out of the hand of Pharaoh; who has delivered the people from under the hand of the Egyptians. + +Now I know that Yahweh is greater than all gods because of the way that they treated people arrogantly.” + +Jethro, Mosesfather-in-law, took a burnt offering and sacrifices for God. Aaron came with all the elders of Israel, to eat bread with Mosesfather-in-law before God. + +

+

On the next day, Moses sat to judge the people, and the people stood around Moses from the morning to the evening. + +When Mosesfather-in-law saw all that he did to the people, he said, “What is this thing that you do for the people? Why do you sit alone, and all the people stand around you from morning to evening?” + +

+

Moses said to his father-in-law, “Because the people come to me to inquire of God. + +When they have a matter, they come to me, and I judge between a man and his neighbor, and I make them know the statutes of God, and his laws.” + +Mosesfather-in-law said to him, “The thing that you do is not good. + +You will surely wear away, both you, and this people that is with you; for the thing is too heavy for you. You are not able to perform it yourself alone. + +Listen now to my voice. I will give you counsel, and God be with you. You represent the people before God, and bring the causes to God. + +You shall teach them the statutes and the laws, and shall show them the way in which they must walk, and the work that they must do. + +Moreover you shall provide out of all the people able men which fear God: men of truth, hating unjust gain; and place such over them, to be rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens. + +Let them judge the people at all times. It shall be that every great matter they shall bring to you, but every small matter they shall judge themselves. So shall it be easier for you, and they shall share the load with you. + +If you will do this thing, and God commands you so, then you will be able to endure, and all these people also will go to their place in peace.” + +

+

So Moses listened to the voice of his father-in-law, and did all that he had said. + +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. + +They judged the people at all times. They brought the hard cases to Moses, but every small matter they judged themselves. + +Moses let his father-in-law depart, and he went his way into his own land. + +

+ + +

In the third month after the children of Israel had gone out of the land of Egypt, on that same day they came into the wilderness of Sinai. + +When they had departed from Rephidim, and had come to the wilderness of Sinai, they encamped in the wilderness; and there Israel encamped before the mountain. + +Moses went up to God, and Yahweh called to him out of the mountain, saying, “This is what you shall tell the house of Jacob, and tell the children of Israel: + +You have seen what I did to the Egyptians, and how I bore you on eagleswings, and brought you to myself. + +Now therefore, if you will indeed obey my voice and keep my covenant, then you shall be my own possession from among all peoples; for all the earth is mine; + +and you shall be to me a kingdom of priests and a holy nation.’ These are the words which you shall speak to the children of Israel.” + +

+

Moses came and called for the elders of the people, and set before them all these words which Yahweh commanded him. + +All the people answered together, and said, “All that Yahweh has spoken we will do.” +

+

Moses reported the words of the people to Yahweh. + +Yahweh said to Moses, “Behold, I come to you in a thick cloud, that the people may hear when I speak with you, and may also believe you forever.” Moses told the words of the people to Yahweh. + +Yahweh said to Moses, “Go to the people, and sanctify them today and tomorrow, and let them wash their garments, + +and be ready for the third day; for on the third day Yahweh will come down in the sight of all the people on Mount Sinai. + +You shall set bounds to the people all around, saying, ‘Be careful that you don’t go up onto the mountain, or touch its border. Whoever touches the mountain shall be surely put to death. + +No hand shall touch him, but he shall surely be stoned or shot through; whether it is animal or man, he shall not live.’ When the trumpet sounds long, they shall come up to the mountain.” + +

+

Moses went down from the mountain to the people, and sanctified the people; and they washed their clothes. + +He said to the people, “Be ready by the third day. Don’t have sexual relations with a woman.” + +

+

On the third day, when it was morning, there were thunders and lightnings, and a thick cloud on the mountain, and the sound of an exceedingly loud trumpet; and all the people who were in the camp trembled. + +Moses led the people out of the camp to meet God; and they stood at the lower part of the mountain. + +All of Mount Sinai smoked, because Yahweh descended on it in fire; and its smoke ascended like the smoke of a furnace, and the whole mountain quaked greatly. + +When the sound of the trumpet grew louder and louder, Moses spoke, and God answered him by a voice. + +Yahweh came down on Mount Sinai, to the top of the mountain. Yahweh called Moses to the top of the mountain, and Moses went up. + +

+

Yahweh said to Moses, “Go down, warn the people, lest they break through to Yahweh to gaze, and many of them perish. + +Let the priests also, who come near to Yahweh, sanctify themselves, lest Yahweh break out on them.” + +

+

Moses said to Yahweh, “The people can’t come up to Mount Sinai, for you warned us, saying, ‘Set bounds around the mountain, and sanctify it.’” + +

+

Yahweh said to him, “Go down! You shall bring Aaron up with you, but don’t let the priests and the people break through to come up to Yahweh, lest he break out against them.” + +

+

So Moses went down to the people, and told them. + +

+ + +

God20:1 +After “God”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker. spoke all these words, saying, + +I am Yahweh your God, who brought you out of the land of Egypt, out of the house of bondage. + +

+

You shall have no other gods before me. + +

+

You shall not make for yourselves an idol, nor any image of anything that is in the heavens above, or that is on the earth beneath, or that is in the water under the earth: + +you shall not bow yourself down to them, nor serve them, for I, Yahweh your God, am a jealous God, visiting the iniquity of the fathers on the children, on the third and on the fourth generation of those who hate me, + +and showing loving kindness to thousands of those who love me and keep my commandments. + +

+

You shall not misuse the name of Yahweh your God,20:7 +or, You shall not take the name of Yahweh your God in vain for Yahweh will not hold him guiltless who misuses his name. + +

+

Remember the Sabbath day, to keep it holy. + +You shall labor six days, and do all your work, + +but the seventh day is a Sabbath to Yahweh your God. You shall not do any work in it, you, nor your son, nor your daughter, your male servant, nor your female servant, nor your livestock, nor your stranger who is within your gates; + +for in six days Yahweh made heaven and earth, the sea, and all that is in them, and rested the seventh day; therefore Yahweh blessed the Sabbath day, and made it holy. + +

+

Honor your father and your mother, that your days may be long in the land which Yahweh your God gives you. + +

+

You shall not murder. + +

+

You shall not commit adultery. + +

+

You shall not steal. + +

+

You shall not give false testimony against your neighbor. + +

+

You shall not covet your neighbor’s house. You shall not covet your neighbor’s wife, nor his male servant, nor his female servant, nor his ox, nor his donkey, nor anything that is your neighbor’s.” + +

+

All the people perceived the thunderings, the lightnings, the sound of the trumpet, and the mountain smoking. When the people saw it, they trembled, and stayed at a distance. + +They said to Moses, “Speak with us yourself, and we will listen; but don’t let God speak with us, lest we die.” + +

+

Moses said to the people, “Don’t be afraid, for God has come to test you, and that his fear may be before you, that you won’t sin.” + +The people stayed at a distance, and Moses came near to the thick darkness where God was. + +

+

Yahweh said to Moses, “This is what you shall tell the children of Israel: ‘You yourselves have seen that I have talked with you from heaven. + +You shall most certainly not make gods of silver or gods of gold for yourselves to be alongside me. + +You shall make an altar of earth for me, and shall sacrifice on it your burnt offerings and your peace offerings, your sheep and your cattle. In every place where I record my name I will come to you and I will bless you. + +If you make me an altar of stone, you shall not build it of cut stones; for if you lift up your tool on it, you have polluted it. + +You shall not go up by steps to my altar, that your nakedness may not be exposed to it.’ + +

+ + +

Now these are the ordinances which you shall set before them: + +

+

If you buy a Hebrew servant, he shall serve six years, and in the seventh he shall go out free without paying anything. + +If he comes in by himself, he shall go out by himself. If he is married, then his wife shall go out with him. + +If his master gives him a wife and she bears him sons or daughters, the wife and her children shall be her master’s, and he shall go out by himself. + +But if the servant shall plainly say, ‘I love my master, my wife, and my children. I will not go out free;’ + +then his master shall bring him to God, and shall bring him to the door or to the doorpost, and his master shall bore his ear through with an awl, and he shall serve him forever. + +

+

If a man sells his daughter to be a female servant, she shall not go out as the male servants do. + +If she doesn’t please her master, who has married her to himself, then he shall let her be redeemed. He shall have no right to sell her to a foreign people, since he has dealt deceitfully with her. + +If he marries her to his son, he shall deal with her as a daughter. + +If he takes another wife to himself, he shall not diminish her food, her clothing, and her marital rights. + +If he doesn’t do these three things for her, she may go free without paying any money. + +

+

“One who strikes a man so that he dies shall surely be put to death, + +but not if it is unintentional, but God allows it to happen; then I will appoint you a place where he shall flee. + +If a man schemes and comes presumptuously on his neighbor to kill him, you shall take him from my altar, that he may die. + +

+

“Anyone who attacks his father or his mother shall be surely put to death. + +

+

“Anyone who kidnaps someone and sells him, or if he is found in his hand, he shall surely be put to death. + +

+

“Anyone who curses his father or his mother shall surely be put to death. + +

+

If men quarrel and one strikes the other with a stone, or with his fist, and he doesn’t die, but is confined to bed; + +if he rises again and walks around with his staff, then he who struck him shall be cleared; only he shall pay for the loss of his time, and shall provide for his healing until he is thoroughly healed. + +

+

If a man strikes his servant or his maid with a rod, and he dies under his hand, the man shall surely be punished. + +Notwithstanding, if his servant gets up after a day or two, he shall not be punished, for the servant is his property. + +

+

If men fight and hurt a pregnant woman so that she gives birth prematurely, and yet no harm follows, he shall be surely fined as much as the woman’s husband demands and the judges allow. + +But if any harm follows, then you must take life for life, + +eye for eye, tooth for tooth, hand for hand, foot for foot, + +burning for burning, wound for wound, and bruise for bruise. + +

+

If a man strikes his servant’s eye, or his maid’s eye, and destroys it, he shall let him go free for his eye’s sake. + +If he strikes out his male servant’s tooth, or his female servant’s tooth, he shall let the servant go free for his tooth’s sake. + +

+

If a bull gores a man or a woman to death, the bull shall surely be stoned, and its meat shall not be eaten; but the owner of the bull shall not be held responsible. + +But if the bull had a habit of goring in the past, and this has been testified to its owner, and he has not kept it in, but it has killed a man or a woman, the bull shall be stoned, and its owner shall also be put to death. + +If a ransom is imposed on him, then he shall give for the redemption of his life whatever is imposed. + +Whether it has gored a son or has gored a daughter, according to this judgment it shall be done to him. + +If the bull gores a male servant or a female servant, thirty shekels21:32 +A shekel is about 10 grams or about 0.35 ounces, so 30 shekels is about 300 grams or about 10.6 ounces. of silver shall be given to their master, and the ox shall be stoned. + +

+

If a man opens a pit, or if a man digs a pit and doesn’t cover it, and a bull or a donkey falls into it, + +the owner of the pit shall make it good. He shall give money to its owner, and the dead animal shall be his. + +

+

If one man’s bull injures another’s, so that it dies, then they shall sell the live bull, and divide its price; and they shall also divide the dead animal. + +Or if it is known that the bull was in the habit of goring in the past, and its owner has not kept it in, he shall surely pay bull for bull, and the dead animal shall be his own. + +

+ + +

“If a man steals an ox or a sheep, and kills it or sells it, he shall pay five oxen for an ox, and four sheep for a sheep. + +If the thief is found breaking in, and is struck so that he dies, there shall be no guilt of bloodshed for him. + +If the sun has risen on him, he is guilty of bloodshed. He shall make restitution. If he has nothing, then he shall be sold for his theft. + +If the stolen property is found in his hand alive, whether it is ox, donkey, or sheep, he shall pay double. + +

+

If a man causes a field or vineyard to be eaten by letting his animal loose, and it grazes in another man’s field, he shall make restitution from the best of his own field, and from the best of his own vineyard. + +

+

If fire breaks out, and catches in thorns so that the shocks of grain, or the standing grain, or the field are consumed; he who kindled the fire shall surely make restitution. + +

+

“If a man delivers to his neighbor money or stuff to keep, and it is stolen out of the man’s house, if the thief is found, he shall pay double. + +If the thief isn’t found, then the master of the house shall come near to God, to find out whether or not he has put his hand on his neighbor’s goods. + +For every matter of trespass, whether it is for ox, for donkey, for sheep, for clothing, or for any kind of lost thing, about which one says, ‘This is mine,’ the cause of both parties shall come before God. He whom God condemns shall pay double to his neighbor. + +

+

If a man delivers to his neighbor a donkey, an ox, a sheep, or any animal to keep, and it dies or is injured, or driven away, no man seeing it; + +the oath of Yahweh shall be between them both, he has not put his hand on his neighbor’s goods; and its owner shall accept it, and he shall not make restitution. + +But if it is stolen from him, the one who stole shall make restitution to its owner. + +If it is torn in pieces, let him bring it for evidence. He shall not make good that which was torn. + +

+

If a man borrows anything of his neighbor’s, and it is injured, or dies, its owner not being with it, he shall surely make restitution. + +If its owner is with it, he shall not make it good. If it is a leased thing, it came for its lease. + +

+

“If a man entices a virgin who isn’t pledged to be married, and lies with her, he shall surely pay a dowry for her to be his wife. + +If her father utterly refuses to give her to him, he shall pay money according to the dowry of virgins. + +

+

You shall not allow a sorceress to live. + +

+

“Whoever has sex with an animal shall surely be put to death. + +

+

He who sacrifices to any god, except to Yahweh only, shall be utterly destroyed. + +

+

You shall not wrong an alien or oppress him, for you were aliens in the land of Egypt. + +

+

You shall not take advantage of any widow or fatherless child. + +If you take advantage of them at all, and they cry at all to me, I will surely hear their cry; + +and my wrath will grow hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless. + +

+

“If you lend money to any of my people with you who is poor, you shall not be to him as a creditor. You shall not charge him interest. + +If you take your neighbor’s garment as collateral, you shall restore it to him before the sun goes down, + +for that is his only covering, it is his garment for his skin. What would he sleep in? It will happen, when he cries to me, that I will hear, for I am gracious. + +

+

You shall not blaspheme God, nor curse a ruler of your people. + +

+

You shall not delay to offer from your harvest and from the outflow of your presses. +

+

You shall give the firstborn of your sons to me. + +You shall do likewise with your cattle and with your sheep. It shall be with its mother seven days, then on the eighth day you shall give it to me. + +

+

“You shall be holy men to me, therefore you shall not eat any meat that is torn by animals in the field. You shall cast it to the dogs. + +

+ + +

You shall not spread a false report. Don’t join your hand with the wicked to be a malicious witness. + +

+

You shall not follow a crowd to do evil. You shall not testify in court to side with a multitude to pervert justice. + +You shall not favor a poor man in his cause. + +

+

If you meet your enemy’s ox or his donkey going astray, you shall surely bring it back to him again. + +If you see the donkey of him who hates you fallen down under his burden, don’t leave him. You shall surely help him with it. + +

+

You shall not deny justice to your poor people in their lawsuits. + +

+

Keep far from a false charge, and don’t kill the innocent and righteous; for I will not justify the wicked. + +

+

You shall take no bribe, for a bribe blinds those who have sight and perverts the words of the righteous. + +

+

You shall not oppress an alien, for you know the heart of an alien, since you were aliens in the land of Egypt. + +

+

For six years you shall sow your land, and shall gather in its increase, + +but the seventh year you shall let it rest and lie fallow, that the poor of your people may eat; and what they leave the animal of the field shall eat. In the same way, you shall deal with your vineyard and with your olive grove. + +

+

Six days you shall do your work, and on the seventh day you shall rest, that your ox and your donkey may have rest, and the son of your servant, and the alien may be refreshed. + +

+

Be careful to do all things that I have said to you; and don’t invoke the name of other gods or even let them be heard out of your mouth. + +

+

You shall observe a feast to me three times a year. + +You shall observe the feast of unleavened bread. Seven days you shall eat unleavened bread, as I commanded you, at the time appointed in the month Abib (for in it you came out of Egypt), and no one shall appear before me empty. + +And the feast of harvest, the first fruits of your labors, which you sow in the field; and the feast of ingathering, at the end of the year, when you gather in your labors out of the field. + +Three times in the year all your males shall appear before the Lord Yahweh. + +

+

You shall not offer the blood of my sacrifice with leavened bread. The fat of my feast shall not remain all night until the morning. + +

+

You shall bring the first of the first fruits of your ground into the house of Yahweh your God. +

+

You shall not boil a young goat in its mother’s milk. + +

+

Behold, I send an angel before you, to keep you by the way, and to bring you into the place which I have prepared. + +Pay attention to him, and listen to his voice. Don’t provoke him, for he will not pardon your disobedience, for my name is in him. + +But if you indeed listen to his voice, and do all that I speak, then I will be an enemy to your enemies, and an adversary to your adversaries. + +For my angel shall go before you, and bring you in to the Amorite, the Hittite, the Perizzite, the Canaanite, the Hivite, and the Jebusite; and I will cut them off. + +You shall not bow down to their gods, nor serve them, nor follow their practices, but you shall utterly overthrow them and demolish their pillars. + +You shall serve Yahweh your God, and he will bless your bread and your water, and I will take sickness away from among you. + +No one will miscarry or be barren in your land. I will fulfill the number of your days. + +I will send my terror before you, and will confuse all the people to whom you come, and I will make all your enemies turn their backs to you. + +I will send the hornet before you, which will drive out the Hivite, the Canaanite, and the Hittite, from before you. + +I will not drive them out from before you in one year, lest the land become desolate, and the animals of the field multiply against you. + +Little by little I will drive them out from before you, until you have increased and inherit the land. + +I will set your border from the Red Sea even to the sea of the Philistines, and from the wilderness to the River; for I will deliver the inhabitants of the land into your hand, and you shall drive them out before you. + +You shall make no covenant with them, nor with their gods. + +They shall not dwell in your land, lest they make you sin against me, for if you serve their gods, it will surely be a snare to you.” + +

+ + +

He said to Moses, “Come up to Yahweh, you, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel; and worship from a distance. + +Moses alone shall come near to Yahweh, but they shall not come near. The people shall not go up with him.” + +

+

Moses came and told the people all Yahweh’s words, and all the ordinances; and all the people answered with one voice, and said, “All the words which Yahweh has spoken will we do.” + +

+

Moses wrote all Yahweh’s words, then rose up early in the morning and built an altar at the base of the mountain, with twelve pillars for the twelve tribes of Israel. + +He sent young men of the children of Israel, who offered burnt offerings and sacrificed peace offerings of cattle to Yahweh. + +Moses took half of the blood and put it in basins, and half of the blood he sprinkled on the altar. + +He took the book of the covenant and read it in the hearing of the people, and they said, “We will do all that Yahweh has said, and be obedient.” + +

+

Moses took the blood, and sprinkled it on the people, and said, “Look, this is the blood of the covenant, which Yahweh has made with you concerning all these words.” + +

+

Then Moses, Aaron, Nadab, Abihu, and seventy of the elders of Israel went up. + +They saw the God of Israel. Under his feet was like a paved work of sapphire24:10 +or, lapis lazuli stone, like the skies for clearness. + +He didn’t lay his hand on the nobles of the children of Israel. They saw God, and ate and drank. + +

+

Yahweh said to Moses, “Come up to me on the mountain, and stay here, and I will give you the stone tablets with the law and the commands that I have written, that you may teach them.” + +

+

Moses rose up with Joshua, his servant, and Moses went up onto God’s Mountain. + +He said to the elders, “Wait here for us, until we come again to you. Behold, Aaron and Hur are with you. Whoever is involved in a dispute can go to them.” + +

+

Moses went up on the mountain, and the cloud covered the mountain. + +Yahweh’s glory settled on Mount Sinai, and the cloud covered it six days. The seventh day he called to Moses out of the middle of the cloud. + +The appearance of Yahweh’s glory was like devouring fire on the top of the mountain in the eyes of the children of Israel. + +Moses entered into the middle of the cloud, and went up on the mountain; and Moses was on the mountain forty days and forty nights. + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, that they take an offering for me. From everyone whose heart makes him willing you shall take my offering. + +This is the offering which you shall take from them: gold, silver, bronze, + +blue, purple, scarlet, fine linen, goats’ hair, + +rams’ skins dyed red, sea cow hides,25:5 +or, fine leather acacia wood, + +oil for the light, spices for the anointing oil and for the sweet incense, + +onyx stones, and stones to be set for the ephod and for the breastplate. + +Let them make me a sanctuary, that I may dwell among them. + +According to all that I show you, the pattern of the tabernacle, and the pattern of all of its furniture, even so you shall make it. + +

+

They shall make an ark of acacia wood. Its length shall be two and a half cubits,25:10 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. its width a cubit and a half, and a cubit and a half its height. + +You shall overlay it with pure gold. You shall overlay it inside and outside, and you shall make a gold molding around it. + +You shall cast four rings of gold for it, and put them in its four feet. Two rings shall be on the one side of it, and two rings on the other side of it. + +You shall make poles of acacia wood, and overlay them with gold. + +You shall put the poles into the rings on the sides of the ark to carry the ark. + +The poles shall be in the rings of the ark. They shall not be taken from it. + +You shall put the covenant which I shall give you into the ark. + +You shall make a mercy seat of pure gold. Two and a half cubits shall be its length, and a cubit and a half its width. + +You shall make two cherubim of hammered gold. You shall make them at the two ends of the mercy seat. + +Make one cherub at the one end, and one cherub at the other end. You shall make the cherubim on its two ends of one piece with the mercy seat. + +The cherubim shall spread out their wings upward, covering the mercy seat with their wings, with their faces toward one another. The faces of the cherubim shall be toward the mercy seat. + +You shall put the mercy seat on top of the ark, and in the ark you shall put the covenant that I will give you. + +There I will meet with you, and I will tell you from above the mercy seat, from between the two cherubim which are on the ark of the covenant, all that I command you for the children of Israel. + +

+

You shall make a table of acacia wood. Its length shall be two cubits, and its width a cubit, and its height one and a half cubits. + +You shall overlay it with pure gold, and make a gold molding around it. + +You shall make a rim of a hand width around it. You shall make a golden molding on its rim around it. + +You shall make four rings of gold for it, and put the rings in the four corners that are on its four feet. + +The rings shall be close to the rim, for places for the poles to carry the table. + +You shall make the poles of acacia wood, and overlay them with gold, that the table may be carried with them. + +You shall make its dishes, its spoons, its ladles, and its bowls with which to pour out offerings. You shall make them of pure gold. + +You shall set bread of the presence on the table before me always. + +

+

You shall make a lamp stand of pure gold. The lamp stand shall be made of hammered work. Its base, its shaft, its cups, its buds, and its flowers shall be of one piece with it. + +There shall be six branches going out of its sides: three branches of the lamp stand out of its one side, and three branches of the lamp stand out of its other side; + +three cups made like almond blossoms in one branch, a bud and a flower; and three cups made like almond blossoms in the other branch, a bud and a flower, so for the six branches going out of the lamp stand; + +and in the lamp stand four cups made like almond blossoms, its buds and its flowers; + +and a bud under two branches of one piece with it, and a bud under two branches of one piece with it, and a bud under two branches of one piece with it, for the six branches going out of the lamp stand. + +Their buds and their branches shall be of one piece with it, all of it one beaten work of pure gold. + +You shall make its lamps seven, and they shall light its lamps to give light to the space in front of it. + +Its snuffers and its snuff dishes shall be of pure gold. + +It shall be made of a talent25:39 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of pure gold, with all these accessories. + +See that you make them after their pattern, which has been shown to you on the mountain. + +

+ + +

“Moreover you shall make the tabernacle with ten curtains of fine twined linen, and blue, and purple, and scarlet, with cherubim. You shall make them with the work of a skillful workman. + +The length of each curtain shall be twenty-eight cubits,26:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and the width of each curtain four cubits: all the curtains shall have one measure. + +Five curtains shall be coupled together to one another, and the other five curtains shall be coupled to one another. + +You shall make loops of blue on the edge of the one curtain from the edge in the coupling, and you shall do likewise on the edge of the curtain that is outermost in the second coupling. + +You shall make fifty loops in the one curtain, and you shall make fifty loops in the edge of the curtain that is in the second coupling. The loops shall be opposite one another. + +You shall make fifty clasps of gold, and couple the curtains to one another with the clasps. The tabernacle shall be a unit. + +

+

You shall make curtains of goats’ hair for a covering over the tabernacle. You shall make eleven curtains. + +The length of each curtain shall be thirty cubits, and the width of each curtain four cubits: the eleven curtains shall have one measure. + +You shall couple five curtains by themselves, and six curtains by themselves, and shall double over the sixth curtain in the forefront of the tent. + +You shall make fifty loops on the edge of the one curtain that is outermost in the coupling, and fifty loops on the edge of the curtain which is outermost in the second coupling. + +You shall make fifty clasps of bronze, and put the clasps into the loops, and couple the tent together, that it may be one. + +The overhanging part that remains of the curtains of the tentthe half curtain that remains—shall hang over the back of the tabernacle. + +The cubit on the one side and the cubit on the other side, of that which remains in the length of the curtains of the tent, shall hang over the sides of the tabernacle on this side and on that side, to cover it. + +You shall make a covering for the tent of rams’ skins dyed red, and a covering of sea cow hides above. + +

+

You shall make the boards for the tabernacle of acacia wood, standing upright. + +Ten cubits shall be the length of a board, and one and a half cubits the width of each board. + +There shall be two tenons in each board, joined to one another: thus you shall make for all the boards of the tabernacle. + +You shall make twenty boards for the tabernacle, for the south side southward. + +You shall make forty sockets of silver under the twenty boards; two sockets under one board for its two tenons, and two sockets under another board for its two tenons. + +For the second side of the tabernacle, on the north side, twenty boards, + +and their forty sockets of silver; two sockets under one board, and two sockets under another board. + +For the far side of the tabernacle westward you shall make six boards. + +You shall make two boards for the corners of the tabernacle in the far side. + +They shall be double beneath, and in the same way they shall be whole to its top to one ring: thus shall it be for them both; they shall be for the two corners. + +There shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board. + +

+

You shall make bars of acacia wood: five for the boards of the one side of the tabernacle, + +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 far side westward. + +The middle bar in the middle of the boards shall pass through from end to end. + +You shall overlay the boards with gold, and make their rings of gold for places for the bars. You shall overlay the bars with gold. + +You shall set up the tabernacle according to the way that it was shown to you on the mountain. + +

+

You shall make a veil of blue, and purple, and scarlet, and fine twined linen, with cherubim. It shall be the work of a skillful workman. + +You shall hang it on four pillars of acacia overlaid with gold; their hooks shall be of gold, on four sockets of silver. + +You shall hang up the veil under the clasps, and shall bring the ark of the covenant in there within the veil. The veil shall separate the holy place from the most holy for you. + +You shall put the mercy seat on the ark of the covenant in the most holy place. + +You shall set the table outside the veil, and the lamp stand opposite the table on the side of the tabernacle toward the south. You shall put the table on the north side. + +

+

You shall make a screen for the door of the Tent, of blue, and purple, and scarlet, and fine twined linen, the work of the embroiderer. + +You shall make for the screen five pillars of acacia, and overlay them with gold. Their hooks shall be of gold. You shall cast five sockets of bronze for them. + +

+ + +

You shall make the altar of acacia wood, five cubits27:1 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. long, and five cubits wide. The altar shall be square. Its height shall be three cubits.27:1 +The altar was to be about 2.3×2.3×1.4 meters or about 7½×7½×4½ feet. + +You shall make its horns on its four corners. Its horns shall be of one piece with it. You shall overlay it with bronze. + +You shall make its pots to take away its ashes; and its shovels, its basins, its meat hooks, and its fire pans. You shall make all its vessels of bronze. + +You shall make a grating for it of network of bronze. On the net you shall make four bronze rings in its four corners. + +You shall put it under the ledge around the altar beneath, that the net may reach halfway up the altar. + +You shall make poles for the altar, poles of acacia wood, and overlay them with bronze. + +Its poles shall be put into the rings, and the poles shall be on the two sides of the altar when carrying it. + +You shall make it hollow with planks. They shall make it as it has been shown you on the mountain. + +

+

You shall make the court of the tabernacle: for the south side southward there shall be hangings for the court of fine twined linen one hundred cubits long for one side. + +Its pillars shall be twenty, and their sockets twenty, of bronze. The hooks of the pillars and their fillets shall be of silver. + +Likewise for the length of the north side, there shall be hangings one hundred cubits long, and its pillars twenty, and their sockets twenty, of bronze; the hooks of the pillars, and their fillets, of silver. + +For the width of the court on the west side shall be hangings of fifty cubits; their pillars ten, and their sockets ten. + +The width of the court on the east side eastward shall be fifty cubits. + +The hangings for the one side of the gate shall be fifteen cubits; their pillars three, and their sockets three. + +For the other side shall be hangings of fifteen cubits; their pillars three, and their sockets three. + +For the gate of the court shall be a screen of twenty cubits, of blue, and purple, and scarlet, and fine twined linen, the work of the embroiderer; their pillars four, and their sockets four. + +All the pillars of the court around shall be filleted with silver; their hooks of silver, and their sockets of bronze. + +The length of the court shall be one hundred cubits, and the width fifty throughout, and the height five cubits, of fine twined linen, and their sockets of bronze. + +All the instruments of the tabernacle in all its service, and all its pins, and all the pins of the court, shall be of bronze. + +

+

You shall command the children of Israel, that they bring to you pure olive oil beaten for the light, to cause a lamp to burn continually. + +In the Tent of Meeting, outside the veil which is before the covenant, Aaron and his sons shall keep it in order from evening to morning before Yahweh: it shall be a statute forever throughout their generations on the behalf of the children of Israel. + +

+ + +

Bring Aaron your brother, and his sons with him, near to you from among the children of Israel, that he may minister to me in the priest’s office: Aaron, with Nadab, Abihu, Eleazar, and Ithamar, Aaron’s sons. + +You shall make holy garments for Aaron your brother, for glory and for beauty. + +You shall speak to all who are wise-hearted, whom I have filled with the spirit of wisdom, that they make Aaron’s garments to sanctify him, that he may minister to me in the priest’s office. + +These are the garments which they shall make: a breastplate, an ephod, a robe, a fitted tunic, a turban, and a sash. They shall make holy garments for Aaron your brother and his sons, that he may minister to me in the priest’s office. + +They shall use the gold, and the blue, and the purple, and the scarlet, and the fine linen. + +

+

They shall make the ephod of gold, blue, purple, scarlet, and fine twined linen, the work of the skillful workman. + +It shall have two shoulder straps joined to the two ends of it, that it may be joined together. + +The skillfully woven band, which is on it, shall be like its work and of the same piece; of gold, blue, purple, scarlet, and fine twined linen. + +You shall take two onyx stones, and engrave on them the names of the children of Israel. + +Six of their names on the one stone, and the names of the six that remain on the other stone, in the order of their birth. + +With the work of an engraver in stone, like the engravings of a signet, you shall engrave the two stones, according to the names of the children of Israel. You shall make them to be enclosed in settings of gold. + +You shall put the two stones on the shoulder straps of the ephod, to be stones of memorial for the children of Israel. Aaron shall bear their names before Yahweh on his two shoulders for a memorial. + +You shall make settings of gold, + +and two chains of pure gold; you shall make them like cords of braided work. You shall put the braided chains on the settings. + +

+

You shall make a breastplate of judgment, the work of the skillful workman; like the work of the ephod you shall make it; of gold, of blue, and purple, and scarlet, and fine twined linen, you shall make it. + +It shall be square and folded double; a span28:16 +A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) shall be its length, and a span its width. + +You shall set in it settings of stones, four rows of stones: a row of ruby, topaz, and beryl shall be the first row; + +and the second row a turquoise, a sapphire,28:18 +or, lapis lazuli + and an emerald; + +and the third row a jacinth, an agate, and an amethyst; + +and the fourth row a chrysolite, an onyx, and a jasper. They shall be enclosed in gold in their settings. + +The stones shall be according to the names of the children of Israel, twelve, according to their names; like the engravings of a signet, everyone according to his name, they shall be for the twelve tribes. + +You shall make on the breastplate chains like cords, of braided work of pure gold. + +You shall make on the breastplate two rings of gold, and shall put the two rings on the two ends of the breastplate. + +You shall put the two braided chains of gold in the two rings at the ends of the breastplate. + +The other two ends of the two braided chains you shall put on the two settings, and put them on the shoulder straps of the ephod in its forepart. + +You shall make two rings of gold, and you shall put them on the two ends of the breastplate, on its edge, which is toward the side of the ephod inward. + +You shall make two rings of gold, and shall put them on the two shoulder straps of the ephod underneath, in its forepart, close by its coupling, above the skillfully woven band of the ephod. + +They shall bind the breastplate by its rings to the rings of the ephod with a lace of blue, that it may be on the skillfully woven band of the ephod, and that the breastplate may not swing out from the ephod. + +Aaron shall bear the names of the children of Israel in the breastplate of judgment on his heart, when he goes in to the holy place, for a memorial before Yahweh continually. + +You shall put in the breastplate of judgment the Urim and the Thummim; and they shall be on Aaron’s heart, when he goes in before Yahweh. Aaron shall bear the judgment of the children of Israel on his heart before Yahweh continually. + +

+

You shall make the robe of the ephod all of blue. + +It shall have a hole for the head in the middle of it. It shall have a binding of woven work around its hole, as it were the hole of a coat of mail, that it not be torn. + +On its hem you shall make pomegranates of blue, and of purple, and of scarlet, all around its hem; with bells of gold between and around them: + +a golden bell and a pomegranate, a golden bell and a pomegranate, around the hem of the robe. + +It shall be on Aaron to minister: and its sound shall be heard when he goes in to the holy place before Yahweh, and when he comes out, that he not die. + +

+

You shall make a plate of pure gold, and engrave on it, like the engravings of a signet, ‘HOLY TO YAHWEH.’ + +You shall put it on a lace of blue, and it shall be on the sash. It shall be on the front of the sash. + +It shall be on Aaron’s forehead, and Aaron shall bear the iniquity of the holy things, which the children of Israel shall make holy in all their holy gifts; and it shall be always on his forehead, that they may be accepted before Yahweh. + +You shall weave the tunic with fine linen. You shall make a turban of fine linen. You shall make a sash, the work of the embroiderer. + +

+

You shall make tunics for Aaron’s sons. You shall make sashes for them. You shall make headbands for them, for glory and for beauty. + +You shall put them on Aaron your brother, and on his sons with him, and shall anoint them, and consecrate them, and sanctify them, that they may minister to me in the priest’s office. + +You shall make them linen pants to cover their naked flesh. They shall reach from the waist even to the thighs. + +They shall be on Aaron and on his sons, when they go in to the Tent of Meeting, or when they come near to the altar to minister in the holy place, that they don’t bear iniquity, and die. This shall be a statute forever to him and to his offspring after him. + +

+ + +

This is the thing that you shall do to them to make them holy, to minister to me in the priest’s office: take one young bull and two rams without defect, + +unleavened bread, unleavened cakes mixed with oil, and unleavened wafers anointed with oil. You shall make them of fine wheat flour. + +You shall put them into one basket, and bring them in the basket, with the bull and the two rams. + +You shall bring Aaron and his sons to the door of the Tent of Meeting, and shall wash them with water. + +You shall take the garments, and put on Aaron the tunic, the robe of the ephod, the ephod, and the breastplate, and clothe him with the skillfully woven band of the ephod. + +You shall set the turban on his head, and put the holy crown on the turban. + +Then you shall take the anointing oil, and pour it on his head, and anoint him. + +You shall bring his sons, and put tunics on them. + +You shall clothe them with belts, Aaron and his sons, and bind headbands on them. They shall have the priesthood by a perpetual statute. You shall consecrate Aaron and his sons. + +

+

You shall bring the bull before the Tent of Meeting; and Aaron and his sons shall lay their hands on the head of the bull. + +You shall kill the bull before Yahweh at the door of the Tent of Meeting. + +You shall take of the blood of the bull, and put it on the horns of the altar with your finger; and you shall pour out all the blood at the base of the altar. + +You shall take all the fat that covers the innards, the cover of the liver, the two kidneys, and the fat that is on them, and burn them on the altar. + +But the meat of the bull, and its skin, and its dung, you shall burn with fire outside of the camp. It is a sin offering. + +

+

You shall also take the one ram, and Aaron and his sons shall lay their hands on the head of the ram. + +You shall kill the ram, and you shall take its blood, and sprinkle it around on the altar. + +You shall cut the ram into its pieces, and wash its innards, and its legs, and put them with its pieces, and with its head. + +You shall burn the whole ram on the altar: it is a burnt offering to Yahweh; it is a pleasant aroma, an offering made by fire to Yahweh. + +

+

You shall take the other ram, and Aaron and his sons shall lay their hands on the head of the ram. + +Then you shall kill the ram, and take some of its blood, and put it on the tip of the right ear of Aaron, and on the tip of the right ear of his sons, and on the thumb of their right hand, and on the big toe of their right foot; and sprinkle the blood around on the altar. + +You shall take of the blood that is on the altar, and of the anointing oil, and sprinkle it on Aaron, and on his garments, and on his sons, and on the garments of his sons with him: and he shall be made holy, and his garments, and his sons, and his sons’ garments with him. + +Also you shall take some of the ram’s fat, the fat tail, the fat that covers the innards, the cover of the liver, the two kidneys, the fat that is on them, and the right thigh (for it is a ram of consecration), + +and one loaf of bread, one cake of oiled bread, and one wafer out of the basket of unleavened bread that is before Yahweh. + +You shall put all of this in Aaron’s hands, and in his sonshands, and shall wave them for a wave offering before Yahweh. + +You shall take them from their hands, and burn them on the altar on the burnt offering, for a pleasant aroma before Yahweh: it is an offering made by fire to Yahweh. + +

+

You shall take the breast of Aaron’s ram of consecration, and wave it for a wave offering before Yahweh. It shall be your portion. + +You shall sanctify the breast of the wave offering and the thigh of the wave offering, which is waved, and which is raised up, of the ram of consecration, even of that which is for Aaron, and of that which is for his sons. + +It shall be for Aaron and his sons as their portion forever from the children of Israel; for it is a wave offering. It shall be a wave offering from the children of Israel of the sacrifices of their peace offerings, even their wave offering to Yahweh. + +

+

The holy garments of Aaron shall be for his sons after him, to be anointed in them, and to be consecrated in them. + +Seven days shall the son who is priest in his place put them on, when he comes into the Tent of Meeting to minister in the holy place. + +

+

You shall take the ram of consecration and boil its meat in a holy place. + +Aaron and his sons shall eat the meat of the ram, and the bread that is in the basket, at the door of the Tent of Meeting. + +They shall eat those things with which atonement was made, to consecrate and sanctify them; but a stranger shall not eat of it, because they are holy. + +If anything of the meat of the consecration, or of the bread, remains to the morning, then you shall burn the remainder with fire. It shall not be eaten, because it is holy. + +

+

You shall do so to Aaron and to his sons, according to all that I have commanded you. You shall consecrate them seven days. + +Every day you shall offer the bull of sin offering for atonement. You shall cleanse the altar when you make atonement for it. You shall anoint it, to sanctify it. + +Seven days you shall make atonement for the altar, and sanctify it; and the altar shall be most holy. Whatever touches the altar shall be holy. + +

+

Now this is that which you shall offer on the altar: two lambs a year old day by day continually. + +The one lamb you shall offer in the morning; and the other lamb you shall offer at evening; + +and with the one lamb a tenth part of an ephah29:40 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour mixed with the fourth part of a hin29:40 +A hin is about 6.5 liters or 1.7 gallons, so a fourth of a hin is about 1.6 liters. of beaten oil, and the fourth part of a hin of wine for a drink offering. + +The other lamb you shall offer at evening, and shall do to it according to the meal offering of the morning and according to its drink offering, for a pleasant aroma, an offering made by fire to Yahweh. + +It shall be a continual burnt offering throughout your generations at the door of the Tent of Meeting before Yahweh, where I will meet with you, to speak there to you. + +There I will meet with the children of Israel; and the place shall be sanctified by my glory. + +I will sanctify the Tent of Meeting and the altar. I will also sanctify Aaron and his sons to minister to me in the priest’s office. + +I will dwell among the children of Israel, and will be their God. + +They shall know that I am Yahweh their God, who brought them out of the land of Egypt, that I might dwell among them: I am Yahweh their God. + +

+ + +

You shall make an altar to burn incense on. You shall make it of acacia wood. + +Its length shall be a cubit,30:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and its width a cubit. It shall be square, and its height shall be two cubits. Its horns shall be of one piece with it. + +You shall overlay it with pure gold, its top, its sides around it, and its horns; and you shall make a gold molding around it. + +You shall make two golden rings for it under its molding; on its two ribs, on its two sides you shall make them; and they shall be for places for poles with which to bear it. + +You shall make the poles of acacia wood, and overlay them with gold. + +You shall put it before the veil that is by the ark of the covenant, before the mercy seat that is over the covenant, where I will meet with you. + +Aaron shall burn incense of sweet spices on it every morning. When he tends the lamps, he shall burn it. + +When Aaron lights the lamps at evening, he shall burn it, a perpetual incense before Yahweh throughout your generations. + +You shall offer no strange incense on it, nor burnt offering, nor meal offering; and you shall pour no drink offering on it. + +Aaron shall make atonement on its horns once in the year; with the blood of the sin offering of atonement once in the year he shall make atonement for it throughout your generations. It is most holy to Yahweh.” + +

+

Yahweh spoke to Moses, saying, + +When you take a census of the children of Israel, according to those who are counted among them, then each man shall give a ransom for his soul to Yahweh when you count them, that there be no plague among them when you count them. + +They shall give this, everyone who passes over to those who are counted, half a shekel according to the shekel30:13 +A shekel is about 10 grams or about 0.35 ounces. of the sanctuary (the shekel is twenty gerahs30:13 +a gerah is about 0.5 grams or about 7.7 grains); half a shekel for an offering to Yahweh. + +Everyone who passes over to those who are counted, from twenty years old and upward, shall give the offering to Yahweh. + +The rich shall not give more, and the poor shall not give less, than the half shekel,30:15 +A shekel is about 10 grams or about 0.35 ounces. when they give the offering of Yahweh, to make atonement for your souls. + +You shall take the atonement money from the children of Israel, and shall appoint it for the service of the Tent of Meeting; that it may be a memorial for the children of Israel before Yahweh, to make atonement for your souls.” + +

+

Yahweh spoke to Moses, saying, + +You shall also make a basin of bronze, and its base of bronze, in which to wash. You shall put it between the Tent of Meeting and the altar, and you shall put water in it. + +Aaron and his sons shall wash their hands and their feet in it. + +When they go into the Tent of Meeting, they shall wash with water, that they don’t die; or when they come near to the altar to minister, to burn an offering made by fire to Yahweh. + +So they shall wash their hands and their feet, that they not die. This shall be a statute forever to them, even to him and to his descendants throughout their generations.” + +

+

Moreover Yahweh spoke to Moses, saying, + +“Also take fine spices: of liquid myrrh, five hundred shekels;30:23 +A shekel is about 10 grams or about 0.35 ounces, so 500 shekels is about 5 kilograms or about 11 pounds. and of fragrant cinnamon half as much, even two hundred and fifty; and of fragrant cane, two hundred and fifty; + +and of cassia five hundred, according to the shekel of the sanctuary; and a hin30:24 +A hin is about 6.5 liters or 1.7 gallons. of olive oil. + +You shall make it into a holy anointing oil, a perfume compounded after the art of the perfumer: it shall be a holy anointing oil. + +You shall use it to anoint the Tent of Meeting, the ark of the covenant, + +the table and all its articles, the lamp stand and its accessories, the altar of incense, + +the altar of burnt offering with all its utensils, and the basin with its base. + +You shall sanctify them, that they may be most holy. Whatever touches them shall be holy. + +You shall anoint Aaron and his sons, and sanctify them, that they may minister to me in the priest’s office. + +You shall speak to the children of Israel, saying, ‘This shall be a holy anointing oil to me throughout your generations. + +It shall not be poured on man’s flesh, and do not make any like it, according to its composition. It is holy. It shall be holy to you. + +Whoever compounds any like it, or whoever puts any of it on a stranger, he shall be cut off from his people.’” + +

+

Yahweh said to Moses, “Take to yourself sweet spices, gum resin, onycha, and galbanum: sweet spices with pure frankincense. There shall be an equal weight of each. + +You shall make incense of it, a perfume after the art of the perfumer, seasoned with salt, pure and holy. + +You shall beat some of it very small, and put some of it before the covenant in the Tent of Meeting, where I will meet with you. It shall be to you most holy. + +You shall not make this incense, according to its composition, for yourselves: it shall be to you holy for Yahweh. + +Whoever shall make any like that, to smell of it, he shall be cut off from his people.” + +

+ + +

Yahweh spoke to Moses, saying, + +Behold, I have called by name Bezalel the son of Uri, the son of Hur, of the tribe of Judah. + +I have filled him with the Spirit of God, in wisdom, and in understanding, and in knowledge, and in all kinds of workmanship, + +to devise skillful works, to work in gold, and in silver, and in bronze, + +and in cutting of stones for setting, and in carving of wood, to work in all kinds of workmanship. + +Behold, I myself have appointed with him Oholiab, the son of Ahisamach, of the tribe of Dan; and in the heart of all who are wise-hearted I have put wisdom, that they may make all that I have commanded you: + +the Tent of Meeting, the ark of the covenant, the mercy seat that is on it, all the furniture of the Tent, + +the table and its vessels, the pure lamp stand with all its vessels, the altar of incense, + +the altar of burnt offering with all its vessels, the basin and its base, + +the finely worked garments—the holy garments for Aaron the priest, the garments of his sons to minister in the priest’s office— + +the anointing oil, and the incense of sweet spices for the holy place: according to all that I have commanded you they shall do.” + +

+

Yahweh spoke to Moses, saying, + +Speak also to the children of Israel, saying, ‘Most certainly you shall keep my Sabbaths; for it is a sign between me and you throughout your generations, that you may know that I am Yahweh who sanctifies you. + +You shall keep the Sabbath therefore, for it is holy to you. Everyone who profanes it shall surely be put to death; for whoever does any work therein, that soul shall be cut off from among his people. + +Six days shall work be done, but on the seventh day is a Sabbath of solemn rest, holy to Yahweh. Whoever does any work on the Sabbath day shall surely be put to death. + +Therefore the children of Israel shall keep the Sabbath, to observe the Sabbath throughout their generations, for a perpetual covenant. + +It is a sign between me and the children of Israel forever; for in six days Yahweh made heaven and earth, and on the seventh day he rested, and was refreshed.’” + +

+

When he finished speaking with him on Mount Sinai, he gave Moses the two tablets of the covenant, stone tablets, written with God’s finger. + +

+ + +

When the people saw that Moses delayed coming down from the mountain, the people gathered themselves together to Aaron, and said to him, “Come, make us gods, which shall go before us; for as for this Moses, the man who brought us up out of the land of Egypt, we don’t know what has become of him.” + +

+

Aaron said to them, “Take off the golden rings, which are in the ears of your wives, of your sons, and of your daughters, and bring them to me.” + +

+

All the people took off the golden rings which were in their ears, and brought them to Aaron. + +He received what they handed him, fashioned it with an engraving tool, and made it a molded calf. Then they said, “These are your gods, Israel, which brought you up out of the land of Egypt.” + +

+

When Aaron saw this, he built an altar before it; and Aaron made a proclamation, and said, “Tomorrow shall be a feast to Yahweh.” + +

+

They rose up early on the next day, and offered burnt offerings, and brought peace offerings; and the people sat down to eat and to drink, and rose up to play. + +

+

Yahweh spoke to Moses, “Go, get down; for your people, whom you brought up out of the land of Egypt, have corrupted themselves! + +They have turned away quickly out of the way which I commanded them. They have made themselves a molded calf, and have worshiped it, and have sacrificed to it, and said, ‘These are your gods, Israel, which brought you up out of the land of Egypt.’” + +

+

Yahweh said to Moses, “I have seen these people, and behold, they are a stiff-necked people. + +Now therefore leave me alone, that my wrath may burn hot against them, and that I may consume them; and I will make of you a great nation.” + +

+

Moses begged Yahweh his God, and said, “Yahweh, why does your wrath burn hot against your people, that you have brought out of the land of Egypt with great power and with a mighty hand? + +Why should the Egyptians talk, saying, ‘He brought them out for evil, to kill them in the mountains, and to consume them from the surface of the earth’? Turn from your fierce wrath, and turn away from this evil against your people. + +Remember Abraham, Isaac, and Israel, your servants, to whom you swore by your own self, and said to them, ‘I will multiply your offspring32:13 +or, seed as the stars of the sky, and all this land that I have spoken of I will give to your offspring, and they shall inherit it forever.’” + +

+

So Yahweh turned away from the evil which he said he would do to his people. + +

+

Moses turned, and went down from the mountain, with the two tablets of the covenant in his hand; tablets that were written on both their sides. They were written on one side and on the other. + +The tablets were the work of God, and the writing was the writing of God, engraved on the tablets. + +

+

When Joshua heard the noise of the people as they shouted, he said to Moses, “There is the noise of war in the camp.” + +

+

He said, “It isn’t the voice of those who shout for victory. It is not the voice of those who cry for being overcome; but the noise of those who sing that I hear.” + +As soon as he came near to the camp, he saw the calf and the dancing. Then Moses’ anger grew hot, and he threw the tablets out of his hands, and broke them beneath the mountain. + +He took the calf which they had made, and burned it with fire, ground it to powder, and scattered it on the water, and made the children of Israel drink it. + +

+

Moses said to Aaron, “What did these people do to you, that you have brought a great sin on them?” + +

+

Aaron said, “Don’t let the anger of my lord grow hot. You know the people, that they are set on evil. + +For they said to me, ‘Make us gods, which shall go before us. As for this Moses, the man who brought us up out of the land of Egypt, we don’t know what has become of him.’ + +I said to them, ‘Whoever has any gold, let them take it off.’ So they gave it to me; and I threw it into the fire, and out came this calf.” + +

+

When Moses saw that the people were out of control, (for Aaron had let them lose control, causing derision among their enemies), + +then Moses stood in the gate of the camp, and said, “Whoever is on Yahweh’s side, come to me!” +

+

All the sons of Levi gathered themselves together to him. + +He said to them, “Yahweh, the God of Israel, says, ‘Every man put his sword on his thigh, and go back and forth from gate to gate throughout the camp, and every man kill his brother, and every man his companion, and every man his neighbor.’” + +The sons of Levi did according to the word of Moses. About three thousand men fell of the people that day. + +Moses said, “Consecrate yourselves today to Yahweh, for every man was against his son and against his brother, that he may give you a blessing today.” + +

+

On the next day, Moses said to the people, “You have sinned a great sin. Now I will go up to Yahweh. Perhaps I shall make atonement for your sin.” + +

+

Moses returned to Yahweh, and said, “Oh, this people have sinned a great sin, and have made themselves gods of gold. + +Yet now, if you will, forgive their sinand if not, please blot me out of your book which you have written.” + +

+

Yahweh said to Moses, “Whoever has sinned against me, I will blot him out of my book. + +Now go, lead the people to the place of which I have spoken to you. Behold, my angel shall go before you. Nevertheless, in the day when I punish, I will punish them for their sin.” + +Yahweh struck the people, because of what they did with the calf, which Aaron made. + +

+ + +

Yahweh spoke to Moses, “Depart, go up from here, you and the people that you have brought up out of the land of Egypt, to the land of which I swore to Abraham, to Isaac, and to Jacob, saying, ‘I will give it to your offspring.’ + +I will send an angel before you; and I will drive out the Canaanite, the Amorite, and the Hittite, and the Perizzite, the Hivite, and the Jebusite. + +Go to a land flowing with milk and honey; but I will not go up among you, for you are a stiff-necked people, lest I consume you on the way.” + +

+

When the people heard this evil news, they mourned; and no one put on his jewelry. + +

+

Yahweh had said to Moses, “Tell the children of Israel, ‘You are a stiff-necked people. If I were to go up among you for one moment, I would consume you. Therefore now take off your jewelry from you, that I may know what to do to you.’” + +

+

The children of Israel stripped themselves of their jewelry from Mount Horeb onward. + +

+

Now Moses used to take the tent and pitch it outside the camp, far away from the camp, and he called itThe Tent of Meeting.” Everyone who sought Yahweh went out to the Tent of Meeting, which was outside the camp. + +When Moses went out to the Tent, all the people rose up, and stood, everyone at their tent door, and watched Moses, until he had gone into the Tent. + +When Moses entered into the Tent, the pillar of cloud descended, stood at the door of the Tent, and Yahweh spoke with Moses. + +All the people saw the pillar of cloud stand at the door of the Tent, and all the people rose up and worshiped, everyone at their tent door. + +Yahweh spoke to Moses face to face, as a man speaks to his friend. He turned again into the camp, but his servant Joshua, the son of Nun, a young man, didn’t depart from the Tent. + +

+

Moses said to Yahweh, “Behold, you tell me, ‘Bring up this people;’ and you haven’t let me know whom you will send with me. Yet you have said, ‘I know you by name, and you have also found favor in my sight.’ + +Now therefore, if I have found favor in your sight, please show me your way, now, that I may know you, so that I may find favor in your sight; and consider that this nation is your people.” + +

+

He said, “My presence will go with you, and I will give you rest.” + +

+

Moses said to him, “If your presence doesn’t go with me, don’t carry us up from here. + +For how would people know that I have found favor in your sight, I and your people? Isn’t it that you go with us, so that we are separated, I and your people, from all the people who are on the surface of the earth?” + +

+

Yahweh said to Moses, “I will do this thing also that you have spoken; for you have found favor in my sight, and I know you by name.” + +

+

Moses said, “Please show me your glory.” + +

+

He said, “I will make all my goodness pass before you, and will proclaim Yahweh’s name before you. I will be gracious to whom I will be gracious, and will show mercy on whom I will show mercy.” + +He said, “You cannot see my face, for man may not see me and live.” + +Yahweh also said, “Behold, there is a place by me, and you shall stand on the rock. + +It will happen, while my glory passes by, that I will put you in a cleft of the rock, and will cover you with my hand until I have passed by; + +then I will take away my hand, and you will see my back; but my face shall not be seen.” + +

+ + +

Yahweh said to Moses, “Chisel two stone tablets like the first. I will write on the tablets the words that were on the first tablets, which you broke. + +Be ready by the morning, and come up in the morning to Mount Sinai, and present yourself there to me on the top of the mountain. + +No one shall come up with you or be seen anywhere on the mountain. Do not let the flocks or herds graze in front of that mountain.” + +

+

He chiseled two tablets of stone like the first; then Moses rose up early in the morning, and went up to Mount Sinai, as Yahweh had commanded him, and took in his hand two stone tablets. + +Yahweh descended in the cloud, and stood with him there, and proclaimed Yahweh’s name. + +Yahweh passed by before him, and proclaimed, “Yahweh! Yahweh, a merciful and gracious God, slow to anger, and abundant in loving kindness and truth, + +keeping loving kindness for thousands, forgiving iniquity and disobedience and sin; and who will by no means clear the guilty, visiting the iniquity of the fathers on the children, and on the children’s children, on the third and on the fourth generation.” + +

+

Moses hurried and bowed his head toward the earth, and worshiped. + +He said, “If now I have found favor in your sight, Lord, please let the Lord go among us, even though this is a stiff-necked people; pardon our iniquity and our sin, and take us for your inheritance.” + +

+

He said, “Behold, I make a covenant: before all your people I will do marvels, such as have not been worked in all the earth, nor in any nation; and all the people among whom you are shall see the work of Yahweh; for it is an awesome thing that I do with you. + +Observe that which I command you today. Behold, I will drive out before you the Amorite, the Canaanite, the Hittite, the Perizzite, the Hivite, and the Jebusite. + +Be careful, lest you make a covenant with the inhabitants of the land where you are going, lest it be for a snare among you; + +but you shall break down their altars, and dash in pieces their pillars, and you shall cut down their Asherah poles; + +for you shall worship no other god; for Yahweh, whose name is Jealous, is a jealous God. + +

+

“Don’t make a covenant with the inhabitants of the land, lest they play the prostitute after their gods, and sacrifice to their gods, and one call you and you eat of his sacrifice; + +and you take of their daughters to your sons, and their daughters play the prostitute after their gods, and make your sons play the prostitute after their gods. + +

+

You shall make no cast idols for yourselves. + +

+

You shall keep the feast of unleavened bread. Seven days you shall eat unleavened bread, as I commanded you, at the time appointed in the month Abib; for in the month Abib you came out of Egypt. + +

+

All that opens the womb is mine; and all your livestock that is male, the firstborn of cow and sheep. + +You shall redeem the firstborn of a donkey with a lamb. If you will not redeem it, then you shall break its neck. You shall redeem all the firstborn of your sons. No one shall appear before me empty. + +

+

Six days you shall work, but on the seventh day you shall rest: in plowing time and in harvest you shall rest. + +

+

You shall observe the feast of weeks with the first fruits of wheat harvest, and the feast of harvest at the year’s end. + +Three times in the year all your males shall appear before the Lord Yahweh, the God of Israel. + +For I will drive out nations before you and enlarge your borders; neither shall any man desire your land when you go up to appear before Yahweh, your God, three times in the year. + +

+

You shall not offer the blood of my sacrifice with leavened bread. The sacrifice of the feast of the Passover shall not be left to the morning. + +

+

You shall bring the first of the first fruits of your ground to the house of Yahweh your God. +

+

You shall not boil a young goat in its mother’s milk.” + +

+

Yahweh said to Moses, “Write these words; for in accordance with these words I have made a covenant with you and with Israel.” + +

+

He was there with Yahweh forty days and forty nights; he neither ate bread, nor drank water. He wrote on the tablets the words of the covenant, the ten commandments. + +

+

When Moses came down from Mount Sinai with the two tablets of the covenant in Moseshand, when he came down from the mountain, Moses didn’t know that the skin of his face shone by reason of his speaking with him. + +When Aaron and all the children of Israel saw Moses, behold, the skin of his face shone; and they were afraid to come near him. + +Moses called to them, and Aaron and all the rulers of the congregation returned to him; and Moses spoke to them. + +Afterward all the children of Israel came near, and he gave them all the commandments that Yahweh had spoken with him on Mount Sinai. + +When Moses was done speaking with them, he put a veil on his face. + +But when Moses went in before Yahweh to speak with him, he took the veil off, until he came out; and he came out, and spoke to the children of Israel that which he was commanded. + +The children of Israel saw Mosesface, that the skin of Mosesface shone; so Moses put the veil on his face again, until he went in to speak with him. + +

+ + +

Moses assembled all the congregation of the children of Israel, and said to them, “These are the words which Yahweh has commanded, that you should do them. + +Six days shall work be done, but on the seventh day there shall be a holy day for you, a Sabbath of solemn rest to Yahweh: whoever does any work in it shall be put to death. + +You shall kindle no fire throughout your habitations on the Sabbath day.’” + +

+

Moses spoke to all the congregation of the children of Israel, saying, “This is the thing which Yahweh commanded, saying, + +Take from among you an offering to Yahweh. Whoever is of a willing heart, let him bring it as Yahweh’s offering: gold, silver, bronze, + +blue, purple, scarlet, fine linen, goats’ hair, + +rams’ skins dyed red, sea cow hides, acacia wood, + +oil for the light, spices for the anointing oil and for the sweet incense, + +onyx stones, and stones to be set for the ephod and for the breastplate. + +

+

“‘Let every wise-hearted man among you come, and make all that Yahweh has commanded: + +the tabernacle, its outer covering, its roof, its clasps, its boards, its bars, its pillars, and its sockets; + +the ark, and its poles, the mercy seat, the veil of the screen; + +the table with its poles and all its vessels, and the show bread; + +the lamp stand also for the light, with its vessels, its lamps, and the oil for the light; + +and the altar of incense with its poles, the anointing oil, the sweet incense, the screen for the door, at the door of the tabernacle; + +the altar of burnt offering, with its grating of bronze, its poles, and all its vessels, the basin and its base; + +the hangings of the court, its pillars, their sockets, and the screen for the gate of the court; + +the pins of the tabernacle, the pins of the court, and their cords; + +the finely worked garments for ministering in the holy placethe holy garments for Aaron the priest, and the garments of his sonsto minister in the priest’s office.’” + +

+

All the congregation of the children of Israel departed from the presence of Moses. + +They came, everyone whose heart stirred him up, and everyone whom his spirit made willing, and brought Yahweh’s offering for the work of the Tent of Meeting, and for all of its service, and for the holy garments. + +They came, both men and women, as many as were willing-hearted, and brought brooches, earrings, signet rings, and armlets, all jewels of gold; even every man who offered an offering of gold to Yahweh. + +Everyone with whom was found blue, purple, scarlet, fine linen, goats’ hair, rams’ skins dyed red, and sea cow hides, brought them. + +Everyone who offered an offering of silver and bronze brought Yahweh’s offering; and everyone with whom was found acacia wood for any work of the service, brought it. + +All the women who were wise-hearted spun with their hands, and brought that which they had spun: the blue, the purple, the scarlet, and the fine linen. + +All the women whose heart stirred them up in wisdom spun the goats’ hair. + +The rulers brought the onyx stones and the stones to be set for the ephod and for the breastplate; + +with the spice and the oil for the light, for the anointing oil, and for the sweet incense. + +The children of Israel brought a free will offering to Yahweh; every man and woman whose heart made them willing to bring for all the work, which Yahweh had commanded to be made by Moses. + +

+

Moses said to the children of Israel, “Behold, Yahweh has called by name Bezalel the son of Uri, the son of Hur, of the tribe of Judah. + +He has filled him with the Spirit of God, in wisdom, in understanding, in knowledge, and in all kinds of workmanship; + +and to make skillful works, to work in gold, in silver, in bronze, + +in cutting of stones for setting, and in carving of wood, to work in all kinds of skillful workmanship. + +He has put in his heart that he may teach, both he and Oholiab, the son of Ahisamach, of the tribe of Dan. + +He has filled them with wisdom of heart to work all kinds of workmanship, of the engraver, of the skillful workman, and of the embroiderer, in blue, in purple, in scarlet, and in fine linen, and of the weaver, even of those who do any workmanship, and of those who make skillful works. + +

+ + +

Bezalel and Oholiab shall work with every wise-hearted man, in whom Yahweh has put wisdom and understanding to know how to do all the work for the service of the sanctuary, according to all that Yahweh has commanded.” + +

+

Moses called Bezalel and Oholiab, and every wise-hearted man, in whose heart Yahweh had put wisdom, even everyone whose heart stirred him up to come to the work to do it. + +They received from Moses all the offering which the children of Israel had brought for the work of the service of the sanctuary, with which to make it. They kept bringing free will offerings to him every morning. + +All the wise men, who performed all the work of the sanctuary, each came from his work which he did. + +They spoke to Moses, saying, “The people have brought much more than enough for the service of the work which Yahweh commanded to make.” + +

+

Moses gave a commandment, and they caused it to be proclaimed throughout the camp, saying, “Let neither man nor woman make anything else for the offering for the sanctuary.” So the people were restrained from bringing. + +For the stuff they had was sufficient to do all the work, and too much. + +

+

All the wise-hearted men among those who did the work made the tabernacle with ten curtains of fine twined linen, blue, purple, and scarlet. They made them with cherubim, the work of a skillful workman. + +The length of each curtain was twenty-eight cubits,36:9 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and the width of each curtain four cubits. All the curtains had one measure. + +He coupled five curtains to one another, and the other five curtains he coupled to one another. + +He made loops of blue on the edge of the one curtain from the edge in the coupling. Likewise he made in the edge of the curtain that was outermost in the second coupling. + +He made fifty loops in the one curtain, and he made fifty loops in the edge of the curtain that was in the second coupling. The loops were opposite to one another. + +He made fifty clasps of gold, and coupled the curtains to one another with the clasps: so the tabernacle was a unit. + +

+

He made curtains of goats’ hair for a covering over the tabernacle. He made them eleven curtains. + +The length of each curtain was thirty cubits, and four cubits the width of each curtain. The eleven curtains had one measure. + +He coupled five curtains by themselves, and six curtains by themselves. + +He made fifty loops on the edge of the curtain that was outermost in the coupling, and he made fifty loops on the edge of the curtain which was outermost in the second coupling. + +He made fifty clasps of bronze to couple the tent together, that it might be a unit. + +He made a covering for the tent of rams’ skins dyed red, and a covering of sea cow hides above. + +

+

He made the boards for the tabernacle of acacia wood, standing up. + +Ten cubits was the length of a board, and a cubit and a half the width of each board. + +Each board had two tenons, joined to one another. He made all the boards of the tabernacle this way. + +He made the boards for the tabernacle, twenty boards for the south side southward. + +He made forty sockets of silver under the twenty boards: two sockets under one board for its two tenons, and two sockets under another board for its two tenons. + +For the second side of the tabernacle, on the north side, he made twenty boards + +and their forty sockets of silver: two sockets under one board, and two sockets under another board. + +For the far part of the tabernacle westward he made six boards. + +He made two boards for the corners of the tabernacle in the far part. + +They were double beneath, and in the same way they were all the way to its top to one ring. He did this to both of them in the two corners. + +There were eight boards and their sockets of silver, sixteen sockets—under every board two sockets. + +

+

He made bars of acacia wood: five for the boards of the one side of the tabernacle, + +and five bars for the boards of the other side of the tabernacle, and five bars for the boards of the tabernacle for the hinder part westward. + +He made the middle bar to pass through in the middle of the boards from the one end to the other. + +He overlaid the boards with gold, and made their rings of gold as places for the bars, and overlaid the bars with gold. + +

+

He made the veil of blue, purple, scarlet, and fine twined linen, with cherubim. He made it the work of a skillful workman. + +He made four pillars of acacia for it, and overlaid them with gold. Their hooks were of gold. He cast four sockets of silver for them. + +He made a screen for the door of the tent, of blue, purple, scarlet, and fine twined linen, the work of an embroiderer; + +and the five pillars of it with their hooks. He overlaid their capitals and their fillets with gold, and their five sockets were of bronze. + +

+ + +

Bezalel made the ark of acacia wood. Its length was two and a half cubits,37:1 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and its width a cubit and a half, and a cubit and a half its height. + +He overlaid it with pure gold inside and outside, and made a molding of gold for it around it. + +He cast four rings of gold for it in its four feettwo rings on its one side, and two rings on its other side. + +He made poles of acacia wood and overlaid them with gold. + +He put the poles into the rings on the sides of the ark, to bear the ark. + +He made a mercy seat of pure gold. Its length was two and a half cubits, and a cubit and a half its width. + +He made two cherubim of gold. He made them of beaten work, at the two ends of the mercy seat: + +one cherub at the one end, and one cherub at the other end. He made the cherubim of one piece with the mercy seat at its two ends. + +The cherubim spread out their wings above, covering the mercy seat with their wings, with their faces toward one another. The faces of the cherubim were toward the mercy seat. + +

+

He made the table of acacia wood. Its length was two cubits, and its width was a cubit, and its height was a cubit and a half. + +He overlaid it with pure gold, and made a gold molding around it. + +He made a border of a hand’s width around it, and made a golden molding on its border around it. + +He cast four rings of gold for it, and put the rings in the four corners that were on its four feet. + +The rings were close by the border, the places for the poles to carry the table. + +He made the poles of acacia wood, and overlaid them with gold, to carry the table. + +He made the vessels which were on the table, its dishes, its spoons, its bowls, and its pitchers with which to pour out, of pure gold. + +

+

He made the lamp stand of pure gold. He made the lamp stand of beaten work. Its base, its shaft, its cups, its buds, and its flowers were of one piece with it. + +There were six branches going out of its sides: three branches of the lamp stand out of its one side, and three branches of the lamp stand out of its other side: + +three cups made like almond blossoms in one branch, a bud and a flower, and three cups made like almond blossoms in the other branch, a bud and a flower; so for the six branches going out of the lamp stand. + +In the lamp stand were four cups made like almond blossoms, its buds and its flowers; + +and a bud under two branches of one piece with it, and a bud under two branches of one piece with it, and a bud under two branches of one piece with it, for the six branches going out of it. + +Their buds and their branches were of one piece with it. The whole thing was one beaten work of pure gold. + +He made its seven lamps, and its snuffers, and its snuff dishes, of pure gold. + +He made it of a talent37:24 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of pure gold, with all its vessels. + +

+

He made the altar of incense of acacia wood. It was square: its length was a cubit, and its width a cubit. Its height was two cubits. Its horns were of one piece with it. + +He overlaid it with pure gold: its top, its sides around it, and its horns. He made a gold molding around it. + +He made two golden rings for it under its molding crown, on its two ribs, on its two sides, for places for poles with which to carry it. + +He made the poles of acacia wood, and overlaid them with gold. + +He made the holy anointing oil and the pure incense of sweet spices, after the art of the perfumer. + +

+ + +

He made the altar of burnt offering of acacia wood. It was square. Its length was five cubits,38:1 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. its width was five cubits, and its height was three cubits. + +He made its horns on its four corners. Its horns were of one piece with it, and he overlaid it with bronze. + +He made all the vessels of the altar: the pots, the shovels, the basins, the forks, and the fire pans. He made all its vessels of bronze. + +He made for the altar a grating of a network of bronze, under the ledge around it beneath, reaching halfway up. + +He cast four rings for the four corners of bronze grating, to be places for the poles. + +He made the poles of acacia wood, and overlaid them with bronze. + +He put the poles into the rings on the sides of the altar, with which to carry it. He made it hollow with planks. + +

+

He made the basin of bronze, and its base of bronze, out of the mirrors of the ministering women who ministered at the door of the Tent of Meeting. + +

+

He made the court: for the south side southward the hangings of the court were of fine twined linen, one hundred cubits; + +their pillars were twenty, and their sockets twenty, of bronze; the hooks of the pillars and their fillets were of silver. + +For the north side one hundred cubits, their pillars twenty, and their sockets twenty, of bronze; the hooks of the pillars, and their fillets, of silver. + +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. + +For the east side eastward fifty cubits, + +the hangings for the one side were fifteen cubits; their pillars three, and their sockets three; + +and so for the other side: on this hand and that hand by the gate of the court were hangings of fifteen cubits; their pillars three, and their sockets three. + +All the hangings around the court were of fine twined linen. + +The sockets for the pillars were of bronze. The hooks of the pillars and their fillets were of silver. Their capitals were overlaid with silver. All the pillars of the court had silver bands. + +The screen for the gate of the court was the work of the embroiderer, of blue, purple, scarlet, and fine twined linen. Twenty cubits was the length, and the height along the width was five cubits, like the hangings of the court. + +Their pillars were four, and their sockets four, of bronze; their hooks of silver, and the overlaying of their capitals, and their fillets, of silver. + +All the pins of the tabernacle, and around the court, were of bronze. + +

+

These are the amounts of materials used for the tabernacle, even the Tabernacle of the Testimony, as they were counted, according to the commandment of Moses, for the service of the Levites, by the hand of Ithamar, the son of Aaron the priest. + +Bezalel the son of Uri, the son of Hur, of the tribe of Judah, made all that Yahweh commanded Moses. + +With him was Oholiab, the son of Ahisamach, of the tribe of Dan, an engraver, and a skillful workman, and an embroiderer in blue, in purple, in scarlet, and in fine linen. + +

+

All the gold that was used for the work in all the work of the sanctuary, even the gold of the offering, was twenty-nine talents38:24 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces. and seven hundred thirty shekels, according to the shekel38:24 +A shekel is about 10 grams or about 0.32 Troy ounces. of the sanctuary. + +The silver of those who were counted of the congregation was one hundred talents38:25 +A talent is about 30 kilograms or 66 pounds and one thousand seven hundred seventy-five shekels,38:25 +A shekel is about 10 grams or about 0.35 ounces. according to the shekel of the sanctuary: + +a beka38:26 +a beka is about 5 grams or about 0.175 ounces a head, that is, half a shekel, according to the shekel38:26 +A shekel is about 10 grams or about 0.35 ounces. of the sanctuary, for everyone who passed over to those who were counted, from twenty years old and upward, for six hundred three thousand five hundred fifty men. + +The one hundred talents38:27 +A talent is about 30 kilograms or 66 pounds. of silver were for casting the sockets of the sanctuary and the sockets of the veil: one hundred sockets for the one hundred talents, one talent per socket. + +From the one thousand seven hundred seventy-five shekels38:28 +A shekel is about 10 grams or about 0.35 ounces, so 1775 shekels is about 17.75 kilograms or about 39 pounds. he made hooks for the pillars, overlaid their capitals, and made fillets for them. + +The bronze of the offering was seventy talents38:29 +A talent is about 30 kilograms or 66 pounds and two thousand four hundred shekels.38:29 +70 talents + 2400 shekels is about 2124 kilograms, or 2.124 metric tons. + +With this he made the sockets to the door of the Tent of Meeting, the bronze altar, the bronze grating for it, all the vessels of the altar, + +the sockets around the court, the sockets of the gate of the court, all the pins of the tabernacle, and all the pins around the court. + +

+ + +

Of the blue, purple, and scarlet, they made finely worked garments for ministering in the holy place, and made the holy garments for Aaron, as Yahweh commanded Moses. + +

+

He made the ephod of gold, blue, purple, scarlet, and fine twined linen. + +They beat the gold into thin plates, and cut it into wires, to work it in with the blue, the purple, the scarlet, and the fine linen, the work of the skillful workman. + +They made shoulder straps for it, joined together. It was joined together at the two ends. + +The skillfully woven band that was on it, with which to fasten it on, was of the same piece, like its work: of gold, of blue, purple, scarlet, and fine twined linen, as Yahweh commanded Moses. + +

+

They worked the onyx stones, enclosed in settings of gold, engraved with the engravings of a signet, according to the names of the children of Israel. + +He put them on the shoulder straps of the ephod, to be stones of memorial for the children of Israel, as Yahweh commanded Moses. + +

+

He made the breastplate, the work of a skillful workman, like the work of the ephod: of gold, of blue, purple, scarlet, and fine twined linen. + +It was square. They made the breastplate double. Its length was a span,39:9 +A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) and its width a span, being double. + +They set in it four rows of stones. A row of ruby, topaz, and beryl was the first row; + +and the second row, a turquoise, a sapphire,39:11 +or, lapis lazuli + and an emerald; + +and the third row, a jacinth, an agate, and an amethyst; + +and the fourth row, a chrysolite, an onyx, and a jasper. They were enclosed in gold settings. + +The stones were according to the names of the children of Israel, twelve, according to their names; like the engravings of a signet, everyone according to his name, for the twelve tribes. + +They made on the breastplate chains like cords, of braided work of pure gold. + +They made two settings of gold, and two gold rings, and put the two rings on the two ends of the breastplate. + +They put the two braided chains of gold in the two rings at the ends of the breastplate. + +The other two ends of the two braided chains they put on the two settings, and put them on the shoulder straps of the ephod, in its front. + +They made two rings of gold, and put them on the two ends of the breastplate, on its edge, which was toward the side of the ephod inward. + +They made two more rings of gold, and put them on the two shoulder straps of the ephod underneath, in its front, close by its coupling, above the skillfully woven band of the ephod. + +They bound the breastplate by its rings to the rings of the ephod with a lace of blue, that it might be on the skillfully woven band of the ephod, and that the breastplate might not come loose from the ephod, as Yahweh commanded Moses. + +

+

He made the robe of the ephod of woven work, all of blue. + +The opening of the robe in the middle of it was like the opening of a coat of mail, with a binding around its opening, that it should not be torn. + +They made on the skirts of the robe pomegranates of blue, purple, scarlet, and twined linen. + +They made bells of pure gold, and put the bells between the pomegranates around the skirts of the robe, between the pomegranates; + +a bell and a pomegranate, a bell and a pomegranate, around the skirts of the robe, to minister in, as Yahweh commanded Moses. + +

+

They made the tunics of fine linen of woven work for Aaron and for his sons, + +the turban of fine linen, the linen headbands of fine linen, the linen trousers of fine twined linen, + +the sash of fine twined linen, blue, purple, and scarlet, the work of the embroiderer, as Yahweh commanded Moses. + +

+

They made the plate of the holy crown of pure gold, and wrote on it an inscription, like the engravings of a signet: “HOLY TO YAHWEH”. + +They tied to it a lace of blue, to fasten it on the turban above, as Yahweh commanded Moses. + +

+

Thus all the work of the tabernacle of the Tent of Meeting was finished. The children of Israel did according to all that Yahweh commanded Moses; so they did. + +They brought the tabernacle to Moses: the tent, with all its furniture, its clasps, its boards, its bars, its pillars, its sockets, + +the covering of rams’ skins dyed red, the covering of sea cow hides, the veil of the screen, + +the ark of the covenant with its poles, the mercy seat, + +the table, all its vessels, the show bread, + +the pure lamp stand, its lamps, even the lamps to be set in order, all its vessels, the oil for the light, + +the golden altar, the anointing oil, the sweet incense, the screen for the door of the Tent, + +the bronze altar, its grating of bronze, its poles, all of its vessels, the basin and its base, + +the hangings of the court, its pillars, its sockets, the screen for the gate of the court, its cords, its pins, and all the instruments of the service of the tabernacle, for the Tent of Meeting, + +the finely worked garments for ministering in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest’s office. + +According to all that Yahweh commanded Moses, so the children of Israel did all the work. + +Moses saw all the work, and behold, they had done it as Yahweh had commanded. They had done so; and Moses blessed them. + +

+ + +

Yahweh spoke to Moses, saying, + +On the first day of the first month you shall raise up the tabernacle of the Tent of Meeting. + +You shall put the ark of the covenant in it, and you shall screen the ark with the veil. + +You shall bring in the table, and set in order the things that are on it. You shall bring in the lamp stand, and light its lamps. + +You shall set the golden altar for incense before the ark of the covenant, and put the screen of the door to the tabernacle. + +

+

You shall set the altar of burnt offering before the door of the tabernacle of the Tent of Meeting. + +You shall set the basin between the Tent of Meeting and the altar, and shall put water therein. + +You shall set up the court around it, and hang up the screen of the gate of the court. + +

+

You shall take the anointing oil, and anoint the tabernacle and all that is in it, and shall make it holy, and all its furniture, and it will be holy. + +You shall anoint the altar of burnt offering, with all its vessels, and sanctify the altar, and the altar will be most holy. + +You shall anoint the basin and its base, and sanctify it. + +

+

You shall bring Aaron and his sons to the door of the Tent of Meeting, and shall wash them with water. + +You shall put on Aaron the holy garments; and you shall anoint him, and sanctify him, that he may minister to me in the priest’s office. + +You shall bring his sons, and put tunics on them. + +You shall anoint them, as you anointed their father, that they may minister to me in the priest’s office. Their anointing shall be to them for an everlasting priesthood throughout their generations.” + +Moses did so. According to all that Yahweh commanded him, so he did. + +

+

In the first month in the second year, on the first day of the month, the tabernacle was raised up. + +Moses raised up the tabernacle, and laid its sockets, and set up its boards, and put in its bars, and raised up its pillars. + +He spread the covering over the tent, and put the roof of the tabernacle above on it, as Yahweh commanded Moses. + +He took and put the covenant into the ark, and set the poles on the ark, and put the mercy seat above on the ark. + +He brought the ark into the tabernacle, and set up the veil of the screen, and screened the ark of the covenant, as Yahweh commanded Moses. + +He put the table in the Tent of Meeting, on the north side of the tabernacle, outside of the veil. + +He set the bread in order on it before Yahweh, as Yahweh commanded Moses. + +He put the lamp stand in the Tent of Meeting, opposite the table, on the south side of the tabernacle. + +He lit the lamps before Yahweh, as Yahweh commanded Moses. + +He put the golden altar in the Tent of Meeting before the veil; + +and he burned incense of sweet spices on it, as Yahweh commanded Moses. + +He put up the screen of the door to the tabernacle. + +He set the altar of burnt offering at the door of the tabernacle of the Tent of Meeting, and offered on it the burnt offering and the meal offering, as Yahweh commanded Moses. + +He set the basin between the Tent of Meeting and the altar, and put water therein, with which to wash. + +Moses, Aaron, and his sons washed their hands and their feet there. + +When they went into the Tent of Meeting, and when they came near to the altar, they washed, as Yahweh commanded Moses. + +He raised up the court around the tabernacle and the altar, and set up the screen of the gate of the court. So Moses finished the work. + +

+

Then the cloud covered the Tent of Meeting, and Yahweh’s glory filled the tabernacle. + +Moses wasn’t able to enter into the Tent of Meeting, because the cloud stayed on it, and Yahweh’s glory filled the tabernacle. + +When the cloud was taken up from over the tabernacle, the children of Israel went onward, throughout all their journeys; + +but if the cloud wasn’t taken up, then they didn’t travel until the day that it was taken up. + +For the cloud of Yahweh was on the tabernacle by day, and there was fire in the cloud by night, in the sight of all the house of Israel, throughout all their journeys. + +

+
+World English Bible (WEB) +Leviticus +The Third Book of Mosis, Commonly Called Leviticus +Leviticus +Lev +

The Third Book of Moses, +

+

Commonly Called +

+

Leviticus +

+ + +

Yahweh1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. called to Moses, and spoke to him from the Tent of Meeting, saying, + +Speak to the children of Israel, and tell them, ‘When anyone of you offers an offering to Yahweh, you shall offer your offering of the livestock, from the herd and from the flock. + +

+

“‘If his offering is a burnt offering from the herd, he shall offer a male without defect. He shall offer it at the door of the Tent of Meeting, that he may be accepted before Yahweh. + +He shall lay his hand on the head of the burnt offering, and it shall be accepted for him to make atonement for him. + +He shall kill the bull before Yahweh. Aaron’s sons, the priests, shall present the blood and sprinkle the blood around on the altar that is at the door of the Tent of Meeting. + +He shall skin the burnt offering and cut it into pieces. + +The sons of Aaron the priest shall put fire on the altar, and lay wood in order on the fire; + +and Aaron’s sons, the priests, shall lay the pieces, the head, and the fat in order on the wood that is on the fire which is on the altar; + +but he shall wash its innards and its legs with water. The priest shall burn all of it on the altar, for a burnt offering, an offering made by fire, of a pleasant aroma to Yahweh. + +

+

“‘If his offering is from the flock, from the sheep or from the goats, for a burnt offering, he shall offer a male without defect. + +He shall kill it on the north side of the altar before Yahweh. Aaron’s sons, the priests, shall sprinkle its blood around on the altar. + +He shall cut it into its pieces, with its head and its fat. The priest shall lay them in order on the wood that is on the fire which is on the altar, + +but the innards and the legs he shall wash with water. The priest shall offer the whole, and burn it on the altar. It is a burnt offering, an offering made by fire, of a pleasant aroma to Yahweh. + +

+

“‘If his offering to Yahweh is a burnt offering of birds, then he shall offer his offering from turtledoves or of young pigeons. + +The priest shall bring it to the altar, and wring off its head, and burn it on the altar; and its blood shall be drained out on the side of the altar; + +and he shall take away its crop and its feathers, and cast it beside the altar on the east part, in the place of the ashes. + +He shall tear it by its wings, but shall not divide it apart. The priest shall burn it on the altar, on the wood that is on the fire. It is a burnt offering, an offering made by fire, of a pleasant aroma to Yahweh. + +

+ + +

“‘When anyone offers an offering of a meal offering to Yahweh, his offering shall be of fine flour. He shall pour oil on it, and put frankincense on it. + +He shall bring it to Aaron’s sons, the priests. He shall take his handful of its fine flour, and of its oil, with all its frankincense, and the priest shall burn its memorial on the altar, an offering made by fire, of a pleasant aroma to Yahweh. + +That which is left of the meal offering shall be Aaron’s and his sons’. It is a most holy part of the offerings of Yahweh made by fire. + +

+

“‘When you offer an offering of a meal offering baked in the oven, it shall be unleavened cakes of fine flour mixed with oil, or unleavened wafers anointed with oil. + +If your offering is a meal offering made on a griddle, it shall be of unleavened fine flour, mixed with oil. + +You shall cut it in pieces, and pour oil on it. It is a meal offering. + +If your offering is a meal offering of the pan, it shall be made of fine flour with oil. + +You shall bring the meal offering that is made of these things to Yahweh. It shall be presented to the priest, and he shall bring it to the altar. + +The priest shall take from the meal offering its memorial, and shall burn it on the altar, an offering made by fire, of a pleasant aroma to Yahweh. + +That which is left of the meal offering shall be Aaron’s and his sons’. It is a most holy part of the offerings of Yahweh made by fire. + +

+

“‘No meal offering which you shall offer to Yahweh shall be made with yeast; for you shall burn no yeast, nor any honey, as an offering made by fire to Yahweh. + +As an offering of first fruits you shall offer them to Yahweh, but they shall not rise up as a pleasant aroma on the altar. + +Every offering of your meal offering you shall season with salt. You shall not allow the salt of the covenant of your God2:13 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). to be lacking from your meal offering. With all your offerings you shall offer salt. + +

+

“‘If you offer a meal offering of first fruits to Yahweh, you shall offer for the meal offering of your first fruits fresh heads of grain parched with fire and crushed. + +You shall put oil on it and lay frankincense on it. It is a meal offering. + +The priest shall burn as its memorial part of its crushed grain and part of its oil, along with all its frankincense. It is an offering made by fire to Yahweh. + +

+ + +

“‘If his offering is a sacrifice of peace offerings, if he offers it from the herd, whether male or female, he shall offer it without defect before Yahweh. + +He shall lay his hand on the head of his offering, and kill it at the door of the Tent of Meeting. Aaron’s sons, the priests, shall sprinkle the blood around on the altar. + +He shall offer of the sacrifice of peace offerings an offering made by fire to Yahweh. The fat that covers the innards, and all the fat that is on the innards, + +and the two kidneys, and the fat that is on them, which is by the loins, and the cover on the liver, with the kidneys, he shall take away. + +Aaron’s sons shall burn it on the altar on the burnt offering, which is on the wood that is on the fire: it is an offering made by fire, of a pleasant aroma to Yahweh. + +

+

“‘If his offering for a sacrifice of peace offerings to Yahweh is from the flock, either male or female, he shall offer it without defect. + +If he offers a lamb for his offering, then he shall offer it before Yahweh; + +and he shall lay his hand on the head of his offering, and kill it before the Tent of Meeting. Aaron’s sons shall sprinkle its blood around on the altar. + +He shall offer from the sacrifice of peace offerings an offering made by fire to Yahweh; its fat, the entire tail fat, he shall take away close to the backbone; and the fat that covers the entrails, and all the fat that is on the entrails, + +and the two kidneys, and the fat that is on them, which is by the loins, and the cover on the liver, with the kidneys, he shall take away. + +The priest shall burn it on the altar: it is the food of the offering made by fire to Yahweh. + +

+

“‘If his offering is a goat, then he shall offer it before Yahweh. + +He shall lay his hand on its head, and kill it before the Tent of Meeting; and the sons of Aaron shall sprinkle its blood around on the altar. + +He shall offer from it as his offering, an offering made by fire to Yahweh; the fat that covers the innards, and all the fat that is on the innards, + +and the two kidneys, and the fat that is on them, which is by the loins, and the cover on the liver, with the kidneys, he shall take away. + +The priest shall burn them on the altar: it is the food of the offering made by fire, for a pleasant aroma; all the fat is Yahweh’s. + +

+

“‘It shall be a perpetual statute throughout your generations in all your dwellings, that you shall eat neither fat nor blood.’” + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, saying, ‘If anyone sins unintentionally, in any of the things which Yahweh has commanded not to be done, and does any one of them, + +if the anointed priest sins so as to bring guilt on the people, then let him offer for his sin which he has sinned a young bull without defect to Yahweh for a sin offering. + +He shall bring the bull to the door of the Tent of Meeting before Yahweh; and he shall lay his hand on the head of the bull, and kill the bull before Yahweh. + +The anointed priest shall take some of the blood of the bull, and bring it to the Tent of Meeting. + +The priest shall dip his finger in the blood, and sprinkle some of the blood seven times before Yahweh, before the veil of the sanctuary. + +The priest shall put some of the blood on the horns of the altar of sweet incense before Yahweh, which is in the Tent of Meeting; and he shall pour out the rest of the blood of the bull at the base of the altar of burnt offering, which is at the door of the Tent of Meeting. + +He shall take all the fat of the bull of the sin offering from it: the fat that covers the innards, and all the fat that is on the innards, + +and the two kidneys, and the fat that is on them, which is by the loins, and the cover on the liver, with the kidneys, he shall remove, + +as it is removed from the bull of the sacrifice of peace offerings. The priest shall burn them on the altar of burnt offering. + +He shall carry the bull’s skin, all its meat, with its head, and with its legs, its innards, and its dung + +all the rest of the bulloutside of the camp to a clean place where the ashes are poured out, and burn it on wood with fire. It shall be burned where the ashes are poured out. + +

+

“‘If the whole congregation of Israel sins, and the thing is hidden from the eyes of the assembly, and they have done any of the things which Yahweh has commanded not to be done, and are guilty; + +when the sin in which they have sinned is known, then the assembly shall offer a young bull for a sin offering, and bring it before the Tent of Meeting. + +The elders of the congregation shall lay their hands on the head of the bull before Yahweh; and the bull shall be killed before Yahweh. + +The anointed priest shall bring some of the blood of the bull to the Tent of Meeting. + +The priest shall dip his finger in the blood and sprinkle it seven times before Yahweh, before the veil. + +He shall put some of the blood on the horns of the altar which is before Yahweh, that is in the Tent of Meeting; and the rest of the blood he shall pour out at the base of the altar of burnt offering, which is at the door of the Tent of Meeting. + +All its fat he shall take from it, and burn it on the altar. + +He shall do this with the bull; as he did with the bull of the sin offering, so he shall do with this; and the priest shall make atonement for them, and they shall be forgiven. + +He shall carry the bull outside the camp, and burn it as he burned the first bull. It is the sin offering for the assembly. + +

+

“‘When a ruler sins, and unwittingly does any one of all the things which Yahweh his God has commanded not to be done, and is guilty, + +if his sin in which he has sinned is made known to him, he shall bring as his offering a goat, a male without defect. + +He shall lay his hand on the head of the goat, and kill it in the place where they kill the burnt offering before Yahweh. It is a sin offering. + +The priest shall take some of the blood of the sin offering with his finger, and put it on the horns of the altar of burnt offering. He shall pour out the rest of its blood at the base of the altar of burnt offering. + +All its fat he shall burn on the altar, like the fat of the sacrifice of peace offerings; and the priest shall make atonement for him concerning his sin, and he will be forgiven. + +

+

“‘If anyone of the common people sins unwittingly, in doing any of the things which Yahweh has commanded not to be done, and is guilty, + +if his sin which he has sinned is made known to him, then he shall bring for his offering a goat, a female without defect, for his sin which he has sinned. + +He shall lay his hand on the head of the sin offering, and kill the sin offering in the place of burnt offering. + +The priest shall take some of its blood with his finger, and put it on the horns of the altar of burnt offering; and the rest of its blood he shall pour out at the base of the altar. + +All its fat he shall take away, like the fat is taken away from the sacrifice of peace offerings; and the priest shall burn it on the altar for a pleasant aroma to Yahweh; and the priest shall make atonement for him, and he will be forgiven. + +

+

“‘If he brings a lamb as his offering for a sin offering, he shall bring a female without defect. + +He shall lay his hand on the head of the sin offering, and kill it for a sin offering in the place where they kill the burnt offering. + +The priest shall take some of the blood of the sin offering with his finger, and put it on the horns of the altar of burnt offering; and all the rest of its blood he shall pour out at the base of the altar. + +He shall remove all its fat, like the fat of the lamb is removed from the sacrifice of peace offerings. The priest shall burn them on the altar, on the offerings of Yahweh made by fire. The priest shall make atonement for him concerning his sin that he has sinned, and he will be forgiven. + +

+ + +

“‘If anyone sins, in that he hears a public adjuration to testify, he being a witness, whether he has seen or known, if he doesn’t report it, then he shall bear his iniquity. + +

+

“‘Or if anyone touches any unclean thing, whether it is the carcass of an unclean animal, or the carcass of unclean livestock, or the carcass of unclean creeping things, and it is hidden from him, and he is unclean, then he shall be guilty. + +

+

“‘Or if he touches the uncleanness of man, whatever his uncleanness is with which he is unclean, and it is hidden from him; when he knows of it, then he shall be guilty. + +

+

“‘Or if anyone swears rashly with his lips to do evil or to do goodwhatever it is that a man might utter rashly with an oath, and it is hidden from himwhen he knows of it, then he will be guilty of one of these. + +It shall be, when he is guilty of one of these, he shall confess that in which he has sinned; + +and he shall bring his trespass offering to Yahweh for his sin which he has sinned: a female from the flock, a lamb or a goat, for a sin offering; and the priest shall make atonement for him concerning his sin. + +

+

“‘If he can’t afford a lamb, then he shall bring his trespass offering for that in which he has sinned, two turtledoves, or two young pigeons, to Yahweh; one for a sin offering, and the other for a burnt offering. + +He shall bring them to the priest, who shall first offer the one which is for the sin offering. He shall wring off its head from its neck, but shall not sever it completely. + +He shall sprinkle some of the blood of the sin offering on the side of the altar; and the rest of the blood shall be drained out at the base of the altar. It is a sin offering. + +He shall offer the second for a burnt offering, according to the ordinance; and the priest shall make atonement for him concerning his sin which he has sinned, and he shall be forgiven. + +

+

“‘But if he can’t afford two turtledoves or two young pigeons, then he shall bring as his offering for that in which he has sinned, one tenth of an ephah5:11 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour for a sin offering. He shall put no oil on it, and he shall not put any frankincense on it, for it is a sin offering. + +He shall bring it to the priest, and the priest shall take his handful of it as the memorial portion, and burn it on the altar, on the offerings of Yahweh made by fire. It is a sin offering. + +The priest shall make atonement for him concerning his sin that he has sinned in any of these things, and he will be forgiven; and the rest shall be the priest’s, as the meal offering.’” + +

+

Yahweh spoke to Moses, saying, + +If anyone commits a trespass, and sins unwittingly regarding Yahweh’s holy things, then he shall bring his trespass offering to Yahweh: a ram without defect from the flock, according to your estimation in silver by shekels, according to the shekel5:15 +A shekel is about 10 grams or about 0.35 ounces. of the sanctuary, for a trespass offering. + +He shall make restitution for that which he has done wrong regarding the holy thing, and shall add a fifth part to it, and give it to the priest; and the priest shall make atonement for him with the ram of the trespass offering, and he will be forgiven. + +

+

If anyone sins, doing any of the things which Yahweh has commanded not to be done, though he didn’t know it, he is still guilty, and shall bear his iniquity. + +He shall bring a ram without defect from of the flock, according to your estimation, for a trespass offering, to the priest; and the priest shall make atonement for him concerning the thing in which he sinned and didn’t know it, and he will be forgiven. + +It is a trespass offering. He is certainly guilty before Yahweh.” + +

+ + +

Yahweh spoke to Moses, saying, + +If anyone sins, and commits a trespass against Yahweh, and deals falsely with his neighbor in a matter of deposit, or of bargain, or of robbery, or has oppressed his neighbor, + +or has found that which was lost, and lied about it, and swearing to a lie—in any of these things that a man sins in his actions— + +then it shall be, if he has sinned, and is guilty, he shall restore that which he took by robbery, or the thing which he has gotten by oppression, or the deposit which was committed to him, or the lost thing which he found, + +or any thing about which he has sworn falsely: he shall restore it in full, and shall add a fifth part more to it. He shall return it to him to whom it belongs in the day of his being found guilty. + +He shall bring his trespass offering to Yahweh: a ram without defect from the flock, according to your estimation, for a trespass offering, to the priest. + +The priest shall make atonement for him before Yahweh, and he will be forgiven concerning whatever he does to become guilty.” + +

+

Yahweh spoke to Moses, saying, + +“Command Aaron and his sons, saying, ‘This is the law of the burnt offering: the burnt offering shall be on the hearth on the altar all night until the morning; and the fire of the altar shall be kept burning on it. + +The priest shall put on his linen garment, and he shall put on his linen trousers upon his body; and he shall remove the ashes from where the fire has consumed the burnt offering on the altar, and he shall put them beside the altar. + +He shall take off his garments, and put on other garments, and carry the ashes outside the camp to a clean place. + +The fire on the altar shall be kept burning on it, it shall not go out; and the priest shall burn wood on it every morning. He shall lay the burnt offering in order upon it, and shall burn on it the fat of the peace offerings. + +Fire shall be kept burning on the altar continually; it shall not go out. + +

+

“‘This is the law of the meal offering: the sons of Aaron shall offer it before Yahweh, before the altar. + +He shall take from there his handful of the fine flour of the meal offering, and of its oil, and all the frankincense which is on the meal offering, and shall burn it on the altar for a pleasant aroma, as its memorial portion, to Yahweh. + +That which is left of it Aaron and his sons shall eat. It shall be eaten without yeast in a holy place. They shall eat it in the court of the Tent of Meeting. + +It shall not be baked with yeast. I have given it as their portion of my offerings made by fire. It is most holy, as are the sin offering and the trespass offering. + +Every male among the children of Aaron shall eat of it, as their portion forever throughout your generations, from the offerings of Yahweh made by fire. Whoever touches them shall be holy.’” + +

+

Yahweh spoke to Moses, saying, + +This is the offering of Aaron and of his sons, which they shall offer to Yahweh in the day when he is anointed: one tenth of an ephah6:20 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour for a meal offering perpetually, half of it in the morning, and half of it in the evening. + +It shall be made with oil in a griddle. When it is soaked, you shall bring it in. You shall offer the meal offering in baked pieces for a pleasant aroma to Yahweh. + +The anointed priest that will be in his place from among his sons shall offer it. By a statute forever, it shall be wholly burned to Yahweh. + +Every meal offering of a priest shall be wholly burned. It shall not be eaten.” + +

+

Yahweh spoke to Moses, saying, + +“Speak to Aaron and to his sons, saying, ‘This is the law of the sin offering: in the place where the burnt offering is killed, the sin offering shall be killed before Yahweh. It is most holy. + +The priest who offers it for sin shall eat it. It shall be eaten in a holy place, in the court of the Tent of Meeting. + +Whatever shall touch its flesh shall be holy. When there is any of its blood sprinkled on a garment, you shall wash that on which it was sprinkled in a holy place. + +But the earthen vessel in which it is boiled shall be broken; and if it is boiled in a bronze vessel, it shall be scoured, and rinsed in water. + +Every male among the priests shall eat of it. It is most holy. + +No sin offering, of which any of the blood is brought into the Tent of Meeting to make atonement in the Holy Place, shall be eaten. It shall be burned with fire. + +

+ + +

“‘This is the law of the trespass offering: It is most holy. + +In the place where they kill the burnt offering, he shall kill the trespass offering; and its blood he shall sprinkle around on the altar. + +He shall offer all of its fat: the fat tail, and the fat that covers the innards, + +and he shall take away the two kidneys, and the fat that is on them, which is by the loins, and the cover on the liver, with the kidneys; + +and the priest shall burn them on the altar for an offering made by fire to Yahweh: it is a trespass offering. + +Every male among the priests may eat of it. It shall be eaten in a holy place. It is most holy. + +

+

“‘As is the sin offering, so is the trespass offering; there is one law for them. The priest who makes atonement with them shall have it. + +The priest who offers any man’s burnt offering shall have for himself the skin of the burnt offering which he has offered. + +Every meal offering that is baked in the oven, and all that is prepared in the pan and on the griddle, shall be the priest’s who offers it. + +Every meal offering, mixed with oil or dry, belongs to all the sons of Aaron, one as well as another. + +

+

“‘This is the law of the sacrifice of peace offerings, which one shall offer to Yahweh: + +If he offers it for a thanksgiving, then he shall offer with the sacrifice of thanksgiving unleavened cakes mixed with oil, and unleavened wafers anointed with oil, and cakes mixed with oil. + +He shall offer his offering with the sacrifice of his peace offerings for thanksgiving with cakes of leavened bread. + +Of it he shall offer one out of each offering for a heave offering to Yahweh. It shall be the priest’s who sprinkles the blood of the peace offerings. + +The flesh of the sacrifice of his peace offerings for thanksgiving shall be eaten on the day of his offering. He shall not leave any of it until the morning. + +

+

“‘But if the sacrifice of his offering is a vow, or a free will offering, it shall be eaten on the day that he offers his sacrifice. On the next day what remains of it shall be eaten, + +but what remains of the meat of the sacrifice on the third day shall be burned with fire. + +If any of the meat of the sacrifice of his peace offerings is eaten on the third day, it will not be accepted, and it shall not be credited to him who offers it. It will be an abomination, and the soul who eats any of it will bear his iniquity. + +

+

“‘The meat that touches any unclean thing shall not be eaten. It shall be burned with fire. As for the meat, everyone who is clean may eat it; + +but the soul who eats of the meat of the sacrifice of peace offerings that belongs to Yahweh, having his uncleanness on him, that soul shall be cut off from his people. + +When anyone touches any unclean thing, the uncleanness of man, or an unclean animal, or any unclean abomination, and eats some of the meat of the sacrifice of peace offerings which belong to Yahweh, that soul shall be cut off from his people.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, saying, ‘You shall eat no fat, of bull, or sheep, or goat. + +The fat of that which dies of itself, and the fat of that which is torn of animals, may be used for any other service, but you shall in no way eat of it. + +For whoever eats the fat of the animal which men offer as an offering made by fire to Yahweh, even the soul who eats it shall be cut off from his people. + +You shall not eat any blood, whether it is of bird or of animal, in any of your dwellings. + +Whoever it is who eats any blood, that soul shall be cut off from his people.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, saying, ‘He who offers the sacrifice of his peace offerings to Yahweh shall bring his offering to Yahweh out of the sacrifice of his peace offerings. + +With his own hands he shall bring the offerings of Yahweh made by fire. He shall bring the fat with the breast, that the breast may be waved for a wave offering before Yahweh. + +The priest shall burn the fat on the altar, but the breast shall be Aaron’s and his sons’. + +The right thigh you shall give to the priest for a heave offering out of the sacrifices of your peace offerings. + +He among the sons of Aaron who offers the blood of the peace offerings, and the fat, shall have the right thigh for a portion. + +For the waved breast and the heaved thigh I have taken from the children of Israel out of the sacrifices of their peace offerings, and have given them to Aaron the priest and to his sons as their portion forever from the children of Israel.’” + +

+

This is the consecrated portion of Aaron, and the consecrated portion of his sons, out of the offerings of Yahweh made by fire, in the day when he presented them to minister to Yahweh in the priest’s office; + +which Yahweh commanded to be given them of the children of Israel, in the day that he anointed them. It is their portion forever throughout their generations. + +This is the law of the burnt offering, the meal offering, the sin offering, the trespass offering, the consecration, and the sacrifice of peace offerings + +which Yahweh commanded Moses in Mount Sinai in the day that he commanded the children of Israel to offer their offerings to Yahweh, in the wilderness of Sinai. + +

+ + +

Yahweh spoke to Moses, saying, + +Take Aaron and his sons with him, and the garments, and the anointing oil, and the bull of the sin offering, and the two rams, and the basket of unleavened bread; + +and assemble all the congregation at the door of the Tent of Meeting.” + +

+

Moses did as Yahweh commanded him; and the congregation was assembled at the door of the Tent of Meeting. + +Moses said to the congregation, “This is the thing which Yahweh has commanded to be done.” + +Moses brought Aaron and his sons, and washed them with water. + +He put the tunic on him, tied the sash on him, clothed him with the robe, put the ephod on him, and he tied the skillfully woven band of the ephod on him and fastened it to him with it. + +He placed the breastplate on him. He put the Urim and Thummim in the breastplate. + +He set the turban on his head. He set the golden plate, the holy crown, on the front of the turban, as Yahweh commanded Moses. + +Moses took the anointing oil, and anointed the tabernacle and all that was in it, and sanctified them. + +He sprinkled it on the altar seven times, and anointed the altar and all its vessels, and the basin and its base, to sanctify them. + +He poured some of the anointing oil on Aaron’s head, and anointed him, to sanctify him. + +Moses brought Aaron’s sons, and clothed them with tunics, and tied sashes on them, and put headbands on them, as Yahweh commanded Moses. + +

+

He brought the bull of the sin offering, and Aaron and his sons laid their hands on the head of the bull of the sin offering. + +He killed it; and Moses took the blood, and put it around on the horns of the altar with his finger, and purified the altar, and poured out the blood at the base of the altar, and sanctified it, to make atonement for it. + +He took all the fat that was on the innards, and the cover of the liver, and the two kidneys, and their fat; and Moses burned it on the altar. + +But the bull, and its skin, and its meat, and its dung, he burned with fire outside the camp, as Yahweh commanded Moses. + +He presented the ram of the burnt offering. Aaron and his sons laid their hands on the head of the ram. + +He killed it; and Moses sprinkled the blood around on the altar. + +He cut the ram into its pieces; and Moses burned the head, and the pieces, and the fat. + +He washed the innards and the legs with water; and Moses burned the whole ram on the altar. It was a burnt offering for a pleasant aroma. It was an offering made by fire to Yahweh, as Yahweh commanded Moses. + +He presented the other ram, the ram of consecration. Aaron and his sons laid their hands on the head of the ram. + +He killed it; and Moses took some of its blood, and put it on the tip of Aaron’s right ear, and on the thumb of his right hand, and on the great toe of his right foot. + +He brought Aaron’s sons; and Moses put some of the blood on the tip of their right ear, and on the thumb of their right hand, and on the great toe of their right foot; and Moses sprinkled the blood around on the altar. + +He took the fat, the fat tail, all the fat that was on the innards, the cover of the liver, the two kidneys and their fat, and the right thigh; + +and out of the basket of unleavened bread that was before Yahweh, he took one unleavened cake, one cake of oiled bread, and one wafer, and placed them on the fat and on the right thigh. + +He put all these in Aaron’s hands and in his sonshands, and waved them for a wave offering before Yahweh. + +Moses took them from their hands, and burned them on the altar on the burnt offering. They were a consecration offering for a pleasant aroma. It was an offering made by fire to Yahweh. + +Moses took the breast, and waved it for a wave offering before Yahweh. It was Mosesportion of the ram of consecration, as Yahweh commanded Moses. + +Moses took some of the anointing oil, and some of the blood which was on the altar, and sprinkled it on Aaron, on his garments, and on his sons, and on his sons’ garments with him, and sanctified Aaron, his garments, and his sons, and his sons’ garments with him. + +

+

Moses said to Aaron and to his sons, “Boil the meat at the door of the Tent of Meeting, and there eat it and the bread that is in the basket of consecration, as I commanded, saying, ‘Aaron and his sons shall eat it.’ + +What remains of the meat and of the bread you shall burn with fire. + +You shall not go out from the door of the Tent of Meeting for seven days, until the days of your consecration are fulfilled: for he shall consecrate you seven days. + +What has been done today, so Yahweh has commanded to do, to make atonement for you. + +You shall stay at the door of the Tent of Meeting day and night seven days, and keep Yahweh’s command, that you don’t die: for so I am commanded.” + +Aaron and his sons did all the things which Yahweh commanded by Moses. + +

+ + +

On the eighth day, Moses called Aaron and his sons, and the elders of Israel; + +and he said to Aaron, “Take a calf from the herd for a sin offering, and a ram for a burnt offering, without defect, and offer them before Yahweh. + +You shall speak to the children of Israel, saying, ‘Take a male goat for a sin offering; and a calf and a lamb, both a year old, without defect, for a burnt offering; + +and a bull and a ram for peace offerings, to sacrifice before Yahweh; and a meal offering mixed with oil: for today Yahweh appears to you.’” + +

+

They brought what Moses commanded before the Tent of Meeting. All the congregation came near and stood before Yahweh. + +Moses said, “This is the thing which Yahweh commanded that you should do; and Yahweh’s glory shall appear to you.” + +Moses said to Aaron, “Draw near to the altar, and offer your sin offering, and your burnt offering, and make atonement for yourself, and for the people; and offer the offering of the people, and make atonement for them, as Yahweh commanded.” + +

+

So Aaron came near to the altar, and killed the calf of the sin offering, which was for himself. + +The sons of Aaron presented the blood to him; and he dipped his finger in the blood, and put it on the horns of the altar, and poured out the blood at the base of the altar; + +but the fat, and the kidneys, and the cover from the liver of the sin offering, he burned upon the altar, as Yahweh commanded Moses. + +The meat and the skin he burned with fire outside the camp. + +He killed the burnt offering; and Aaron’s sons delivered the blood to him, and he sprinkled it around on the altar. + +They delivered the burnt offering to him, piece by piece, and the head. He burned them upon the altar. + +He washed the innards and the legs, and burned them on the burnt offering on the altar. + +He presented the people’s offering, and took the goat of the sin offering which was for the people, and killed it, and offered it for sin, like the first. + +He presented the burnt offering, and offered it according to the ordinance. + +He presented the meal offering, and filled his hand from there, and burned it upon the altar, in addition to the burnt offering of the morning. + +He also killed the bull and the ram, the sacrifice of peace offerings, which was for the people. Aaron’s sons delivered to him the blood, which he sprinkled around on the altar; + +and the fat of the bull and of the ram, the fat tail, and that which covers the innards, and the kidneys, and the cover of the liver; + +and they put the fat upon the breasts, and he burned the fat on the altar. + +Aaron waved the breasts and the right thigh for a wave offering before Yahweh, as Moses commanded. + +Aaron lifted up his hands toward the people, and blessed them; and he came down from offering the sin offering, and the burnt offering, and the peace offerings. + +

+

Moses and Aaron went into the Tent of Meeting, and came out, and blessed the people; and Yahweh’s glory appeared to all the people. + +Fire came out from before Yahweh, and consumed the burnt offering and the fat upon the altar. When all the people saw it, they shouted, and fell on their faces. + +

+ + +

Nadab and Abihu, the sons of Aaron, each took his censer, and put fire in it, and laid incense on it, and offered strange fire before Yahweh, which he had not commanded them. + +Fire came out from before Yahweh, and devoured them, and they died before Yahweh. + +

+

Then Moses said to Aaron, “This is what Yahweh spoke of, saying, +

+I will show myself holy to those who come near me, + +and before all the people I will be glorified.’” + +

Aaron held his peace. + +Moses called Mishael and Elzaphan, the sons of Uzziel the uncle of Aaron, and said to them, “Draw near, carry your brothers from before the sanctuary out of the camp.” + +So they came near, and carried them in their tunics out of the camp, as Moses had said. + +

+

Moses said to Aaron, and to Eleazar and to Ithamar, his sons, “Don’t let the hair of your heads go loose, and don’t tear your clothes, so that you don’t die, and so that he will not be angry with all the congregation; but let your brothers, the whole house of Israel, bewail the burning which Yahweh has kindled. + +You shall not go out from the door of the Tent of Meeting, lest you die; for the anointing oil of Yahweh is on you.” They did according to the word of Moses. + +Then Yahweh said to Aaron, + +You and your sons are not to drink wine or strong drink whenever you go into the Tent of Meeting, or you will die. This shall be a statute forever throughout your generations. + +You are to make a distinction between the holy and the common, and between the unclean and the clean. + +You are to teach the children of Israel all the statutes which Yahweh has spoken to them by Moses.” + +

+

Moses spoke to Aaron, and to Eleazar and to Ithamar, his sons who were left, “Take the meal offering that remains of the offerings of Yahweh made by fire, and eat it without yeast beside the altar; for it is most holy; + +and you shall eat it in a holy place, because it is your portion, and your sonsportion, of the offerings of Yahweh made by fire; for so I am commanded. + +The waved breast and the heaved thigh you shall eat in a clean place, you, and your sons, and your daughters with you: for they are given as your portion, and your sonsportion, out of the sacrifices of the peace offerings of the children of Israel. + +They shall bring the heaved thigh and the waved breast with the offerings made by fire of the fat, to wave it for a wave offering before Yahweh. It shall be yours, and your sonswith you, as a portion forever, as Yahweh has commanded.” + +

+

Moses diligently inquired about the goat of the sin offering, and, behold,10:16 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. it was burned. He was angry with Eleazar and with Ithamar, the sons of Aaron who were left, saying, + +Why haven’t you eaten the sin offering in the place of the sanctuary, since it is most holy, and he has given it to you to bear the iniquity of the congregation, to make atonement for them before Yahweh? + +Behold, its blood was not brought into the inner part of the sanctuary. You certainly should have eaten it in the sanctuary, as I commanded.” + +

+

Aaron spoke to Moses, “Behold, today they have offered their sin offering and their burnt offering before Yahweh; and such things as these have happened to me. If I had eaten the sin offering today, would it have been pleasing in Yahweh’s sight?” + +

+

When Moses heard that, it was pleasing in his sight. + +

+ + +

Yahweh spoke to Moses and to Aaron, saying to them, + +Speak to the children of Israel, saying, ‘These are the living things which you may eat among all the animals that are on the earth. + +Whatever parts the hoof, and is cloven-footed, and chews the cud among the animals, that you may eat. + +

+

“‘Nevertheless these you shall not eat of those that chew the cud, or of those who part the hoof: the camel, because it chews the cud but doesn’t have a parted hoof, is unclean to you. + +The hyrax,11:5 +or rock badger, or cony because it chews the cud but doesn’t have a parted hoof, is unclean to you. + +The hare, because it chews the cud but doesn’t have a parted hoof, is unclean to you. + +The pig, because it has a split hoof, and is cloven-footed, but doesn’t chew the cud, is unclean to you. + +You shall not eat their meat. You shall not touch their carcasses. They are unclean to you. + +

+

“‘You may eat of all these that are in the waters: whatever has fins and scales in the waters, in the seas, and in the rivers, that you may eat. + +All that don’t have fins and scales in the seas and rivers, all that move in the waters, and all the living creatures that are in the waters, they are an abomination to you, + +and you shall detest them. You shall not eat of their meat, and you shall detest their carcasses. + +Whatever has no fins nor scales in the waters is an abomination to you. + +

+

“‘You shall detest these among the birds; they shall not be eaten because they are an abomination: the eagle, the vulture, the black vulture, + +the red kite, any kind of black kite, + +any kind of raven, + +the horned owl, the screech owl, the gull, any kind of hawk, + +the little owl, the cormorant, the great owl, + +the white owl, the desert owl, the osprey, + +the stork, any kind of heron, the hoopoe, and the bat. + +

+

“‘All flying insects that walk on all fours are an abomination to you. + +Yet you may eat these: of all winged creeping things that go on all fours, which have long, jointed legs for hopping on the earth. + +Even of these you may eat: any kind of locust, any kind of katydid, any kind of cricket, and any kind of grasshopper. + +But all winged creeping things which have four feet are an abomination to you. + +

+

“‘By these you will become unclean: whoever touches their carcass shall be unclean until the evening. + +Whoever carries any part of their carcass shall wash his clothes, and be unclean until the evening. + +

+

“‘Every animal which has a split hoof that isn’t completely divided, or doesn’t chew the cud, is unclean to you. Everyone who touches them shall be unclean. + +Whatever goes on its paws, among all animals that go on all fours, they are unclean to you. Whoever touches their carcass shall be unclean until the evening. + +He who carries their carcass shall wash his clothes, and be unclean until the evening. They are unclean to you. + +

+

“‘These are they which are unclean to you among the creeping things that creep on the earth: the weasel, the rat, any kind of great lizard, + +the gecko, and the monitor lizard, the wall lizard, the skink, and the chameleon. + +These are they which are unclean to you among all that creep. Whoever touches them when they are dead shall be unclean until the evening. + +Anything they fall on when they are dead shall be unclean; whether it is any vessel of wood, or clothing, or skin, or sack, whatever vessel it is, with which any work is done, it must be put into water, and it shall be unclean until the evening. Then it will be clean. + +Every earthen vessel into which any of them falls and all that is in it shall be unclean. You shall break it. + +All food which may be eaten which is soaked in water shall be unclean. All drink that may be drunk in every such vessel shall be unclean. + +Everything whereupon part of their carcass falls shall be unclean; whether oven, or range for pots, it shall be broken in pieces. They are unclean, and shall be unclean to you. + +Nevertheless a spring or a cistern in which water is gathered shall be clean, but that which touches their carcass shall be unclean. + +If part of their carcass falls on any sowing seed which is to be sown, it is clean. + +But if water is put on the seed, and part of their carcass falls on it, it is unclean to you. + +

+

“‘If any animal of which you may eat dies, he who touches its carcass shall be unclean until the evening. + +He who eats of its carcass shall wash his clothes, and be unclean until the evening. He also who carries its carcass shall wash his clothes, and be unclean until the evening. + +

+

“‘Every creeping thing that creeps on the earth is an abomination. It shall not be eaten. + +Whatever goes on its belly, and whatever goes on all fours, or whatever has many feet, even all creeping things that creep on the earth, them you shall not eat; for they are an abomination. + +You shall not make yourselves abominable with any creeping thing that creeps. You shall not make yourselves unclean with them, that you should be defiled by them. + +For I am Yahweh your God. Sanctify yourselves therefore, and be holy; for I am holy. You shall not defile yourselves with any kind of creeping thing that moves on the earth. + +For I am Yahweh who brought you up out of the land of Egypt, to be your God. You shall therefore be holy, for I am holy. + +

+

“‘This is the law of the animal, and of the bird, and of every living creature that moves in the waters, and of every creature that creeps on the earth, + +to make a distinction between the unclean and the clean, and between the living thing that may be eaten and the living thing that may not be eaten.’” + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, saying, ‘If a woman conceives, and bears a male child, then she shall be unclean seven days; as in the days of her monthly period she shall be unclean. + +In the eighth day the flesh of his foreskin shall be circumcised. + +She shall continue in the blood of purification thirty-three days. She shall not touch any holy thing, nor come into the sanctuary, until the days of her purifying are completed. + +But if she bears a female child, then she shall be unclean two weeks, as in her period; and she shall continue in the blood of purification sixty-six days. + +

+

“‘When the days of her purification are completed for a son or for a daughter, she shall bring to the priest at the door of the Tent of Meeting, a year old lamb for a burnt offering, and a young pigeon or a turtledove, for a sin offering. + +He shall offer it before Yahweh, and make atonement for her; then she shall be cleansed from the fountain of her blood. +

+

“‘This is the law for her who bears, whether a male or a female. + +If she cannot afford a lamb, then she shall take two turtledoves or two young pigeons: the one for a burnt offering, and the other for a sin offering. The priest shall make atonement for her, and she shall be clean.’” + +

+ + +

Yahweh spoke to Moses and to Aaron, saying, + +When a man shall have a swelling in his body’s skin, or a scab, or a bright spot, and it becomes in the skin of his body the plague of leprosy, then he shall be brought to Aaron the priest or to one of his sons, the priests. + +The priest shall examine the plague in the skin of the body. If the hair in the plague has turned white, and the appearance of the plague is deeper than the body’s skin, it is the plague of leprosy; so the priest shall examine him and pronounce him unclean. + +If the bright spot is white in the skin of his body, and its appearance isn’t deeper than the skin, and its hair hasn’t turned white, then the priest shall isolate the infected person for seven days. + +The priest shall examine him on the seventh day. Behold, if in his eyes the plague is arrested and the plague hasn’t spread in the skin, then the priest shall isolate him for seven more days. + +The priest shall examine him again on the seventh day. Behold, if the plague has faded and the plague hasn’t spread in the skin, then the priest shall pronounce him clean. It is a scab. He shall wash his clothes, and be clean. + +But if the scab spreads on the skin after he has shown himself to the priest for his cleansing, he shall show himself to the priest again. + +The priest shall examine him; and behold, if the scab has spread on the skin, then the priest shall pronounce him unclean. It is leprosy. + +

+

When the plague of leprosy is in a man, then he shall be brought to the priest; + +and the priest shall examine him. Behold, if there is a white swelling in the skin, and it has turned the hair white, and there is raw flesh in the swelling, + +it is a chronic leprosy in the skin of his body, and the priest shall pronounce him unclean. He shall not isolate him, for he is already unclean. + +

+

“If the leprosy breaks out all over the skin, and the leprosy covers all the skin of the infected person from his head even to his feet, as far as it appears to the priest, + +then the priest shall examine him. Behold, if the leprosy has covered all his flesh, he shall pronounce him clean of the plague. It has all turned white: he is clean. + +But whenever raw flesh appears in him, he shall be unclean. + +The priest shall examine the raw flesh, and pronounce him unclean: the raw flesh is unclean. It is leprosy. + +Or if the raw flesh turns again, and is changed to white, then he shall come to the priest. + +The priest shall examine him. Behold, if the plague has turned white, then the priest shall pronounce him clean of the plague. He is clean. + +

+

When the body has a boil on its skin, and it has healed, + +and in the place of the boil there is a white swelling, or a bright spot, reddish-white, then it shall be shown to the priest. + +The priest shall examine it. Behold, if its appearance is deeper than the skin, and its hair has turned white, then the priest shall pronounce him unclean. It is the plague of leprosy. It has broken out in the boil. + +But if the priest examines it, and behold, there are no white hairs in it, and it isn’t deeper than the skin, but is dim, then the priest shall isolate him seven days. + +If it spreads in the skin, then the priest shall pronounce him unclean. It is a plague. + +But if the bright spot stays in its place, and hasn’t spread, it is the scar from the boil; and the priest shall pronounce him clean. + +

+

Or when the body has a burn from fire on its skin, and the raw flesh of the burn becomes a bright spot, reddish-white, or white, + +then the priest shall examine it; and behold, if the hair in the bright spot has turned white, and its appearance is deeper than the skin, it is leprosy. It has broken out in the burning, and the priest shall pronounce him unclean. It is the plague of leprosy. + +But if the priest examines it, and behold, there is no white hair in the bright spot, and it isn’t deeper than the skin, but has faded, then the priest shall isolate him seven days. + +The priest shall examine him on the seventh day. If it has spread in the skin, then the priest shall pronounce him unclean. It is the plague of leprosy. + +If the bright spot stays in its place, and hasn’t spread in the skin, but is faded, it is the swelling from the burn, and the priest shall pronounce him clean, for it is the scar from the burn. + +

+

When a man or woman has a plague on the head or on the beard, + +then the priest shall examine the plague; and behold, if its appearance is deeper than the skin, and the hair in it is yellow and thin, then the priest shall pronounce him unclean. It is an itch. It is leprosy of the head or of the beard. + +If the priest examines the plague of itching, and behold, its appearance isn’t deeper than the skin, and there is no black hair in it, then the priest shall isolate the person infected with itching seven days. + +On the seventh day the priest shall examine the plague; and behold, if the itch hasn’t spread, and there is no yellow hair in it, and the appearance of the itch isn’t deeper than the skin, + +then he shall be shaved, but he shall not shave the itch. Then the priest shall isolate the one who has the itch seven more days. + +On the seventh day, the priest shall examine the itch; and behold, if the itch hasn’t spread in the skin, and its appearance isn’t deeper than the skin, then the priest shall pronounce him clean. He shall wash his clothes and be clean. + +But if the itch spreads in the skin after his cleansing, + +then the priest shall examine him; and behold, if the itch has spread in the skin, the priest shall not look for the yellow hair; he is unclean. + +But if in his eyes the itch is arrested and black hair has grown in it, then the itch is healed. He is clean. The priest shall pronounce him clean. + +

+

When a man or a woman has bright spots in the skin of the body, even white bright spots, + +then the priest shall examine them. Behold, if the bright spots on the skin of their body are a dull white, it is a harmless rash. It has broken out in the skin. He is clean. + +

+

If a man’s hair has fallen from his head, he is bald. He is clean. + +If his hair has fallen off from the front part of his head, his forehead is bald. He is clean. + +But if a reddish-white plague is in the bald head or the bald forehead, it is leprosy breaking out in his bald head or his bald forehead. + +Then the priest shall examine him. Behold, if the swelling of the plague is reddish-white in his bald head, or in his bald forehead, like the appearance of leprosy in the skin of the body, + +he is a leprous man. He is unclean. The priest shall surely pronounce him unclean. His plague is on his head. + +

+

The leper in whom the plague is shall wear torn clothes, and the hair of his head shall hang loose. He shall cover his upper lip, and shall cry, ‘Unclean! Unclean!’ + +All the days in which the plague is in him he shall be unclean. He is unclean. He shall dwell alone. His dwelling shall be outside of the camp. + +

+

The garment also that the plague of leprosy is in, whether it is a woolen garment, or a linen garment; + +whether it is in warp or woof;13:48 +warp and woof are the vertical and horizontal threads in woven cloth of linen or of wool; whether in leather, or in anything made of leather; + +if the plague is greenish or reddish in the garment, or in the leather, or in the warp, or in the woof, or in anything made of leather; it is the plague of leprosy, and shall be shown to the priest. + +The priest shall examine the plague, and isolate the plague seven days. + +He shall examine the plague on the seventh day. If the plague has spread in the garment, either in the warp, or in the woof, or in the skin, whatever use the skin is used for, the plague is a destructive mildew. It is unclean. + +He shall burn the garment, whether the warp or the woof, in wool or in linen, or anything of leather, in which the plague is, for it is a destructive mildew. It shall be burned in the fire. + +

+

If the priest examines it, and behold, the plague hasn’t spread in the garment, either in the warp, or in the woof, or in anything of skin; + +then the priest shall command that they wash the thing that the plague is in, and he shall isolate it seven more days. + +Then the priest shall examine it, after the plague is washed; and behold, if the plague hasn’t changed its color, and the plague hasn’t spread, it is unclean; you shall burn it in the fire. It is a mildewed spot, whether the bareness is inside or outside. + +If the priest looks, and behold, the plague has faded after it is washed, then he shall tear it out of the garment, or out of the skin, or out of the warp, or out of the woof; + +and if it appears again in the garment, either in the warp, or in the woof, or in anything of skin, it is spreading. You shall burn what the plague is in with fire. + +The garment, either the warp, or the woof, or whatever thing of skin it is, which you shall wash, if the plague has departed from them, then it shall be washed the second time, and it will be clean.” + +

+

This is the law of the plague of mildew in a garment of wool or linen, either in the warp, or the woof, or in anything of skin, to pronounce it clean, or to pronounce it unclean. + +

+ + +

Yahweh spoke to Moses, saying, + +

+

This shall be the law of the leper in the day of his cleansing: He shall be brought to the priest, + +and the priest shall go out of the camp. The priest shall examine him. Behold, if the plague of leprosy is healed in the leper, + +then the priest shall command them to take for him who is to be cleansed two living clean birds, cedar wood, scarlet, and hyssop. + +The priest shall command them to kill one of the birds in an earthen vessel over running water. + +As for the living bird, he shall take it, the cedar wood, 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. + +He shall sprinkle on him who is to be cleansed from the leprosy seven times, and shall pronounce him clean, and shall let the living bird go into the open field. + +

+

He who is to be cleansed shall wash his clothes, and shave off all his hair, and bathe himself in water; and he shall be clean. After that he shall come into the camp, but shall dwell outside his tent seven days. + +It shall be on the seventh day, that he shall shave all his hair off his head and his beard and his eyebrows. He shall shave off all his hair. He shall wash his clothes, and he shall bathe his body in water. Then he shall be clean. + +

+

On the eighth day he shall take two male lambs without defect, one ewe lamb a year old without defect, three tenths of an ephah14:10 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour for a meal offering, mixed with oil, and one log14:10 +a log is a liquid measure of about 300 ml or 10 ounces of oil. + +The priest who cleanses him shall set the man who is to be cleansed, and those things, before Yahweh, at the door of the Tent of Meeting. + +

+

The priest shall take one of the male lambs, and offer him for a trespass offering, with the log of oil, and wave them for a wave offering before Yahweh. + +He shall kill the male lamb in the place where they kill the sin offering and the burnt offering, in the place of the sanctuary; for as the sin offering is the priest’s, so is the trespass offering. It is most holy. + +The priest shall take some of the blood of the trespass offering, and the priest shall put it on the tip of the right ear of him who is to be cleansed, and on the thumb of his right hand, and on the big toe of his right foot. + +The priest shall take some of the log of oil, and pour it into the palm of his own left hand. + +The priest shall dip his right finger in the oil that is in his left hand, and shall sprinkle some of the oil with his finger seven times before Yahweh. + +The priest shall put some of the rest of the oil that is in his hand on the tip of the right ear of him who is to be cleansed, and on the thumb of his right hand, and on the big toe of his right foot, upon the blood of the trespass offering. + +The rest of the oil that is in the priest’s hand he shall put on the head of him who is to be cleansed, and the priest shall make atonement for him before Yahweh. + +

+

The priest shall offer the sin offering, and make atonement for him who is to be cleansed because of his uncleanness. Afterward he shall kill the burnt offering; + +then the priest shall offer the burnt offering and the meal offering on the altar. The priest shall make atonement for him, and he shall be clean. + +

+

If he is poor, and can’t afford so much, then he shall take one male lamb for a trespass offering to be waved, to make atonement for him, and one tenth of an ephah14:21 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour mixed with oil for a meal offering, and a log14:21 +a log is a liquid measure of about 300 ml or 10 ounces of oil; + +and two turtledoves, or two young pigeons, such as he is able to afford; and the one shall be a sin offering, and the other a burnt offering. + +

+

On the eighth day he shall bring them for his cleansing to the priest, to the door of the Tent of Meeting, before Yahweh. + +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 Yahweh. + +He shall kill the lamb of the trespass offering. The priest shall take some of the blood of the trespass offering and put it on the tip of the right ear of him who is to be cleansed, and on the thumb of his right hand, and on the big toe of his right foot. + +The priest shall pour some of the oil into the palm of his own left hand; + +and the priest shall sprinkle with his right finger some of the oil that is in his left hand seven times before Yahweh. + +Then the priest shall put some of the oil that is in his hand on the tip of the right ear of him who is to be cleansed, and on the thumb of his right hand, and on the big toe of his right foot, on the place of the blood of the trespass offering. + +The rest of the oil that is in the priest’s hand he shall put on the head of him who is to be cleansed, to make atonement for him before Yahweh. + +He shall offer one of the turtledoves, or of the young pigeons, which ever he is able to afford, + +of the kind he is able to afford, the one for a sin offering, and the other for a burnt offering, with the meal offering. The priest shall make atonement for him who is to be cleansed before Yahweh.” + +

+

This is the law for him in whom is the plague of leprosy, who is not able to afford the sacrifice for his cleansing. + +

+

Yahweh spoke to Moses and to Aaron, saying, + +When you have come into the land of Canaan, which I give to you for a possession, and I put a spreading mildew in a house in the land of your possession, + +then he who owns the house shall come and tell the priest, saying, ‘There seems to me to be some sort of plague in the house.’ + +The priest shall command that they empty the house, before the priest goes in to examine the plague, that all that is in the house not be made unclean. Afterward the priest shall go in to inspect the house. + +He shall examine the plague; and behold, if the plague is in the walls of the house with hollow streaks, greenish or reddish, and it appears to be deeper than the wall, + +then the priest shall go out of the house to the door of the house, and shut up the house seven days. + +The priest shall come again on the seventh day, and look. If the plague has spread in the walls of the house, + +then the priest shall command that they take out the stones in which is the plague, and cast them into an unclean place outside of the city. + +He shall cause the inside of the house to be scraped all over. They shall pour out the mortar that they scraped off outside of the city into an unclean place. + +They shall take other stones, and put them in the place of those stones; and he shall take other mortar, and shall plaster the house. + +

+

“If the plague comes again, and breaks out in the house after he has taken out the stones, and after he has scraped the house, and after it was plastered, + +then the priest shall come in and look; and behold, if the plague has spread in the house, it is a destructive mildew in the house. It is unclean. + +He shall break down the house, its stones, and its timber, and all the house’s mortar. He shall carry them out of the city into an unclean place. + +

+

“Moreover he who goes into the house while it is shut up shall be unclean until the evening. + +He who lies down in the house shall wash his clothes; and he who eats in the house shall wash his clothes. + +

+

If the priest shall come in, and examine it, and behold, the plague hasn’t spread in the house, after the house was plastered, then the priest shall pronounce the house clean, because the plague is healed. + +To cleanse the house he shall take two birds, cedar wood, scarlet, and hyssop. + +He shall kill one of the birds in an earthen vessel over running water. + +He shall take the cedar wood, the hyssop, 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. + +He shall cleanse the house with the blood of the bird, and with the running water, with the living bird, with the cedar wood, with the hyssop, and with the scarlet; + +but he shall let the living bird go out of the city into the open field. So shall he make atonement for the house; and it shall be clean.” + +

+

This is the law for any plague of leprosy, and for an itch, + +and for the destructive mildew of a garment, and for a house, + +and for a swelling, and for a scab, and for a bright spot; + +to teach when it is unclean, and when it is clean. +

+

This is the law of leprosy. + +

+ + +

Yahweh spoke to Moses and to Aaron, saying, + +Speak to the children of Israel, and tell them, ‘When any man has a discharge from his body, because of his discharge he is unclean. + +This shall be his uncleanness in his discharge: whether his body runs with his discharge, or his body has stopped from his discharge, it is his uncleanness. + +

+

“‘Every bed on which he who has the discharge lies shall be unclean; and everything he sits on shall be unclean. + +Whoever touches his bed shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +He who sits on anything on which the man who has the discharge sat shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +

+

“‘He who touches the body of him who has the discharge shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +

+

“‘If he who has the discharge spits on him who is clean, then he shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +

+

“‘Whatever saddle he who has the discharge rides on shall be unclean. + +Whoever touches anything that was under him shall be unclean until the evening. He who carries those things shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +

+

“‘Whomever he who has the discharge touches, without having rinsed his hands in water, he shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +

+

“‘The earthen vessel, which he who has the discharge touches, shall be broken; and every vessel of wood shall be rinsed in water. + +

+

“‘When he who has a discharge is cleansed of his discharge, then he shall count to himself seven days for his cleansing, and wash his clothes; and he shall bathe his flesh in running water, and shall be clean. + +

+

“‘On the eighth day he shall take two turtledoves, or two young pigeons, and come before Yahweh to the door of the Tent of Meeting, and give them to the priest. + +The priest shall offer them, the one for a sin offering, and the other for a burnt offering. The priest shall make atonement for him before Yahweh for his discharge. + +

+

“‘If any man has an emission of semen, then he shall bathe all his flesh in water, and be unclean until the evening. + +Every garment and every skin which the semen is on shall be washed with water, and be unclean until the evening. + +If a man lies with a woman and there is an emission of semen, they shall both bathe themselves in water, and be unclean until the evening. + +

+

“‘If a woman has a discharge, and her discharge in her flesh is blood, she shall be in her impurity seven days. Whoever touches her shall be unclean until the evening. + +

+

“‘Everything that she lies on in her impurity shall be unclean. Everything also that she sits on shall be unclean. + +Whoever touches her bed shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +Whoever touches anything that she sits on shall wash his clothes, and bathe himself in water, and be unclean until the evening. + +If it is on the bed, or on anything she sits on, when he touches it, he shall be unclean until the evening. + +

+

“‘If any man lies with her, and her monthly flow is on him, he shall be unclean seven days; and every bed he lies on shall be unclean. + +

+

“‘If a woman has a discharge of her blood many days not in the time of her period, or if she has a discharge beyond the time of her period, all the days of the discharge of her uncleanness shall be as in the days of her period. She is unclean. + +Every bed she lies on all the days of her discharge shall be to her as the bed of her period. Everything she sits on shall be unclean, as the uncleanness of her period. + +Whoever touches these things shall be unclean, and shall wash his clothes and bathe himself in water, and be unclean until the evening. + +

+

“‘But if she is cleansed of her discharge, then she shall count to herself seven days, and after that she shall be clean. + +On the eighth day she shall take two turtledoves, or two young pigeons, and bring them to the priest, to the door of the Tent of Meeting. + +The priest shall offer the one for a sin offering, and the other for a burnt offering; and the priest shall make atonement for her before Yahweh for the uncleanness of her discharge. + +

+

“‘Thus you shall separate the children of Israel from their uncleanness, so they will not die in their uncleanness when they defile my tabernacle that is among them.’” + +

+

This is the law of him who has a discharge, and of him who has an emission of semen, so that he is unclean by it; + +and of her who has her period, and of a man or woman who has a discharge, and of him who lies with her who is unclean. + +

+ + +

Yahweh spoke to Moses after the death of the two sons of Aaron, when they came near before Yahweh, and died; + +and Yahweh said to Moses, “Tell Aaron your brother not to come at just any time into the Most Holy Place within the veil, before the mercy seat which is on the ark; lest he die; for I will appear in the cloud on the mercy seat. + +

+

“Aaron shall come into the sanctuary with a young bull for a sin offering, and a ram for a burnt offering. + +He shall put on the holy linen tunic. He shall have the linen trousers on his body, and shall put on the linen sash, and he shall be clothed with the linen turban. They are the holy garments. He shall bathe his body in water, and put them on. + +He shall take from the congregation of the children of Israel two male goats for a sin offering, and one ram for a burnt offering. + +

+

“Aaron shall offer the bull of the sin offering, which is for himself, and make atonement for himself and for his house. + +He shall take the two goats, and set them before Yahweh at the door of the Tent of Meeting. + +Aaron shall cast lots for the two goats: one lot for Yahweh, and the other lot for the scapegoat. + +Aaron shall present the goat on which the lot fell for Yahweh, and offer him for a sin offering. + +But the goat on which the lot fell for the scapegoat shall be presented alive before Yahweh, to make atonement for him, to send him away as the scapegoat into the wilderness. + +

+

“Aaron shall present the bull of the sin offering, which is for himself, and shall make atonement for himself and for his house, and shall kill the bull of the sin offering which is for himself. + +He shall take a censer full of coals of fire from off the altar before Yahweh, and two handfuls of sweet incense beaten small, and bring it within the veil. + +He shall put the incense on the fire before Yahweh, that the cloud of the incense may cover the mercy seat that is on the covenant, so that he will not die. + +He shall take some of the blood of the bull, and sprinkle it with his finger on the mercy seat on the east; and before the mercy seat he shall sprinkle some of the blood with his finger seven times. + +

+

Then he shall kill the goat of the sin offering that is for the people, and bring his blood within the veil, and do with his blood as he did with the blood of the bull, and sprinkle it on the mercy seat and before the mercy seat. + +He shall make atonement for the Holy Place, because of the uncleanness of the children of Israel, and because of their transgressions, even all their sins; and so he shall do for the Tent of Meeting that dwells with them in the middle of their uncleanness. + +No one shall be in the Tent of Meeting when he enters to make atonement in the Holy Place, until he comes out, and has made atonement for himself and for his household, and for all the assembly of Israel. + +

+

He shall go out to the altar that is before Yahweh and make atonement for it, and shall take some of the bull’s blood, and some of the goat’s blood, and put it around on the horns of the altar. + +He shall sprinkle some of the blood on it with his finger seven times, and cleanse it, and make it holy from the uncleanness of the children of Israel. + +

+

When he has finished atoning for the Holy Place, the Tent of Meeting, and the altar, he shall present the live goat. + +Aaron shall lay both his hands on the head of the live goat, and confess over him all the iniquities of the children of Israel, and all their transgressions, even all their sins; and he shall put them on the head of the goat, and shall send him away into the wilderness by the hand of a man who is ready. + +The goat shall carry all their iniquities on himself to a solitary land, and he shall release the goat in the wilderness. + +

+

“Aaron shall come into the Tent of Meeting, and shall take off the linen garments which he put on when he went into the Holy Place, and shall leave them there. + +Then he shall bathe himself in water in a holy place, put on his garments, and come out and offer his burnt offering and the burnt offering of the people, and make atonement for himself and for the people. + +The fat of the sin offering he shall burn on the altar. + +

+

He who lets the goat go as the scapegoat shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp. + +The bull for the sin offering, and the goat for the sin offering, whose blood was brought in to make atonement in the Holy Place, shall be carried outside the camp; and they shall burn their skins, their flesh, and their dung with fire. + +He who burns them shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp. + +

+

It shall be a statute to you forever: in the seventh month, on the tenth day of the month, you shall afflict your souls, and shall do no kind of work, whether native-born or a stranger who lives as a foreigner among you; + +for on this day shall atonement be made for you, to cleanse you. You shall be clean from all your sins before Yahweh. + +It is a Sabbath of solemn rest to you, and you shall afflict your souls. It is a statute forever. + +The priest, who is anointed and who is consecrated to be priest in his father’s place, shall make the atonement, and shall put on the linen garments, even the holy garments. + +Then he shall make atonement for the Holy Sanctuary; and he shall make atonement for the Tent of Meeting and for the altar; and he shall make atonement for the priests and for all the people of the assembly. + +

+

This shall be an everlasting statute for you, to make atonement for the children of Israel once in the year because of all their sins.” +

+

It was done as Yahweh commanded Moses. + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to Aaron, and to his sons, and to all the children of Israel, and say to them, ‘This is the thing which Yahweh has commanded: + +Whatever man there is of the house of Israel who kills a bull, or lamb, or goat in the camp, or who kills it outside the camp, + +and hasn’t brought it to the door of the Tent of Meeting to offer it as an offering to Yahweh before Yahweh’s tabernacle: blood shall be imputed to that man. He has shed blood. That man shall be cut off from among his people. + +This is to the end that the children of Israel may bring their sacrifices, which they sacrifice in the open field, that they may bring them to Yahweh, to the door of the Tent of Meeting, to the priest, and sacrifice them for sacrifices of peace offerings to Yahweh. + +The priest shall sprinkle the blood on Yahweh’s altar at the door of the Tent of Meeting, and burn the fat for a pleasant aroma to Yahweh. + +They shall no more sacrifice their sacrifices to the goat idols, after which they play the prostitute. This shall be a statute forever to them throughout their generations.’ + +

+

You shall say to them, ‘Any man there is of the house of Israel, or of the strangers who live as foreigners among them, who offers a burnt offering or sacrifice, + +and doesn’t bring it to the door of the Tent of Meeting to sacrifice it to Yahweh, that man shall be cut off from his people. + +

+

“‘Any man of the house of Israel, or of the strangers who live as foreigners among them, who eats any kind of blood, I will set my face against that soul who eats blood, and will cut him off from among his people. + +For the life of the flesh is in the blood. I have given it to you on the altar to make atonement for your souls; for it is the blood that makes atonement by reason of the life. + +Therefore I have said to the children of Israel, “No person among you may eat blood, nor may any stranger who lives as a foreigner among you eat blood.” + +

+

“‘Whatever man there is of the children of Israel, or of the strangers who live as foreigners among them, who takes in hunting any animal or bird that may be eaten, he shall pour out its blood, and cover it with dust. + +For as to the life of all flesh, its blood is with its life. Therefore I said to the children of Israel, “You shall not eat the blood of any kind of flesh; for the life of all flesh is its blood. Whoever eats it shall be cut off.” + +

+

“‘Every person that eats what dies of itself, or that which is torn by animals, whether he is native-born or a foreigner, shall wash his clothes, and bathe himself in water, and be unclean until the evening. Then he shall be clean. + +But if he doesn’t wash them, or bathe his flesh, then he shall bear his iniquity.’” + +

+ + +

Yahweh said to Moses, + +Speak to the children of Israel, and say to them, ‘I am Yahweh your God. + +You shall not do as they do in the land of Egypt, where you lived. You shall not do as they do in the land of Canaan, where I am bringing you. You shall not follow their statutes. + +You shall do my ordinances. You shall keep my statutes and walk in them. I am Yahweh your God. + +You shall therefore keep my statutes and my ordinances, which if a man does, he shall live in them. I am Yahweh. + +

+

“‘None of you shall approach any close relatives, to uncover their nakedness: I am Yahweh. + +

+

“‘You shall not uncover the nakedness of your father, nor the nakedness of your mother: she is your mother. You shall not uncover her nakedness. + +

+

“‘You shall not uncover the nakedness of your father’s wife. It is your father’s nakedness. + +

+

“‘You shall not uncover the nakedness of your sister, the daughter of your father, or the daughter of your mother, whether born at home or born abroad. + +

+

“‘You shall not uncover the nakedness of your son’s daughter, or of your daughter’s daughter, even their nakedness; for theirs is your own nakedness. + +

+

“‘You shall not uncover the nakedness of your father’s wife’s daughter, conceived by your father, since she is your sister. + +

+

“‘You shall not uncover the nakedness of your father’s sister. She is your father’s near kinswoman. + +

+

“‘You shall not uncover the nakedness of your mother’s sister, for she is your mother’s near kinswoman. + +

+

“‘You shall not uncover the nakedness of your father’s brother. You shall not approach his wife. She is your aunt. + +

+

“‘You shall not uncover the nakedness of your daughter-in-law. She is your son’s wife. You shall not uncover her nakedness. + +

+

“‘You shall not uncover the nakedness of your brother’s wife. It is your brother’s nakedness. + +

+

“‘You shall not uncover the nakedness of a woman and her daughter. You shall not take her son’s daughter, or her daughter’s daughter, to uncover her nakedness. They are near kinswomen. It is wickedness. + +

+

“‘You shall not take a wife in addition to her sister, to be a rival, to uncover her nakedness, while her sister is still alive. + +

+

“‘You shall not approach a woman to uncover her nakedness, as long as she is impure by her uncleanness. + +

+

“‘You shall not lie carnally with your neighbor’s wife, and defile yourself with her. + +

+

“‘You shall not give any of your children as a sacrifice to Molech. You shall not profane the name of your God. I am Yahweh. + +

+

“‘You shall not lie with a man as with a woman. That is detestable. + +

+

“‘You shall not lie with any animal to defile yourself with it. No woman may give herself to an animal, to lie down with it: it is a perversion. + +

+

“‘Don’t defile yourselves in any of these things; for in all these the nations which I am casting out before you were defiled. + +The land was defiled. Therefore I punished its iniquity, and the land vomited out her inhabitants. + +You therefore shall keep my statutes and my ordinances, and shall not do any of these abominations; neither the native-born, nor the stranger who lives as a foreigner among you + +(for the men of the land that were before you had done all these abominations, and the land became defiled), + +that the land not vomit you out also, when you defile it, as it vomited out the nation that was before you. + +

+

“‘For whoever shall do any of these abominations, even the souls that do them shall be cut off from among their people. + +Therefore you shall keep my requirements, that you do not practice any of these abominable customs which were practiced before you, and that you do not defile yourselves with them. I am Yahweh your God.’” + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to all the congregation of the children of Israel, and tell them, ‘You shall be holy; for I, Yahweh your God, am holy. + +

+

“‘Each one of you shall respect his mother and his father. You shall keep my Sabbaths. I am Yahweh your God. + +

+

“‘Don’t turn to idols, nor make molten gods for yourselves. I am Yahweh your God. + +

+

“‘When you offer a sacrifice of peace offerings to Yahweh, you shall offer it so that you may be accepted. + +It shall be eaten the same day you offer it, and on the next day. If anything remains until the third day, it shall be burned with fire. + +If it is eaten at all on the third day, it is an abomination. It will not be accepted; + +but everyone who eats it shall bear his iniquity, because he has profaned the holy thing of Yahweh, and that soul shall be cut off from his people. + +

+

“‘When you reap the harvest of your land, you shall not wholly reap the corners of your field, neither shall you gather the gleanings of your harvest. + +You shall not glean your vineyard, neither shall you gather the fallen grapes of your vineyard. You shall leave them for the poor and for the foreigner. I am Yahweh your God. + +

+

“‘You shall not steal. +

+

“‘You shall not lie. +

+

“‘You shall not deceive one another. + +

+

“‘You shall not swear by my name falsely, and profane the name of your God. I am Yahweh. + +

+

“‘You shall not oppress your neighbor, nor rob him. +

+

“‘The wages of a hired servant shall not remain with you all night until the morning. + +

+

“‘You shall not curse the deaf, nor put a stumbling block before the blind; but you shall fear your God. I am Yahweh. + +

+

“‘You shall do no injustice in judgment. You shall not be partial to the poor, nor show favoritism to the great; but you shall judge your neighbor in righteousness. + +

+

“‘You shall not go around as a slanderer among your people. +

+

“‘You shall not endanger the life19:16 +literally, “blood” of your neighbor. I am Yahweh. + +

+

“‘You shall not hate your brother in your heart. You shall surely rebuke your neighbor, and not bear sin because of him. + +

+

“‘You shall not take vengeance, nor bear any grudge against the children of your people; but you shall love your neighbor as yourself. I am Yahweh. + +

+

“‘You shall keep my statutes. +

+

“‘You shall not cross-breed different kinds of animals. +

+

“‘You shall not sow your field with two kinds of seed; +

+

“‘Don’t wear a garment made of two kinds of material. + +

+

“‘If a man lies carnally with a woman who is a slave girl, pledged to be married to another man, and not ransomed or given her freedom; they shall be punished. They shall not be put to death, because she was not free. + +He shall bring his trespass offering to Yahweh, to the door of the Tent of Meeting, even a ram for a trespass offering. + +The priest shall make atonement for him with the ram of the trespass offering before Yahweh for his sin which he has committed; and the sin which he has committed shall be forgiven him. + +

+

“‘When you come into the land, and have planted all kinds of trees for food, then you shall count their fruit as forbidden.19:23 +literally, “uncircumcised” For three years it shall be forbidden to you. It shall not be eaten. + +But in the fourth year all its fruit shall be holy, for giving praise to Yahweh. + +In the fifth year you shall eat its fruit, that it may yield its increase to you. I am Yahweh your God. + +

+

“‘You shall not eat any meat with the blood still in it. You shall not use enchantments, nor practice sorcery. + +

+

“‘You shall not cut the hair on the sides of your head or clip off the edge of your beard. + +

+

“‘You shall not make any cuttings in your flesh for the dead, nor tattoo any marks on you. I am Yahweh. + +

+

“‘Don’t profane your daughter, to make her a prostitute; lest the land fall to prostitution, and the land become full of wickedness. + +

+

“‘You shall keep my Sabbaths, and reverence my sanctuary; I am Yahweh. + +

+

“‘Don’t turn to those who are mediums, nor to the wizards. Don’t seek them out, to be defiled by them. I am Yahweh your God. + +

+

“‘You shall rise up before the gray head and honor the face of the elderly; and you shall fear your God. I am Yahweh. + +

+

“‘If a stranger lives as a foreigner with you in your land, you shall not do him wrong. + +The stranger who lives as a foreigner with you shall be to you as the native-born among you, and you shall love him as yourself; for you lived as foreigners in the land of Egypt. I am Yahweh your God. + +

+

“‘You shall do no unrighteousness in judgment, in measures of length, of weight, or of quantity. + +You shall have just balances, just weights, a just ephah,19:36 +1 ephah is about 22 liters or about 2/3 of a bushel and a just hin.19:36 +A hin is about 6.5 liters or 1.7 gallons. I am Yahweh your God, who brought you out of the land of Egypt. + +

+

“‘You shall observe all my statutes and all my ordinances, and do them. I am Yahweh.’” + +

+ + +

Yahweh spoke to Moses, saying, + +“Moreover, you shall tell the children of Israel, ‘Anyone of the children of Israel, or of the strangers who live as foreigners in Israel, who gives any of his offspring20:2 +or, seed to Molech shall surely be put to death. The people of the land shall stone that person with stones. + +I also will set my face against that person, and will cut him off from among his people, because he has given of his offspring to Molech, to defile my sanctuary, and to profane my holy name. + +If the people of the land all hide their eyes from that person when he gives of his offspring to Molech, and don’t put him to death, + +then I will set my face against that man and against his family, and will cut him off, and all who play the prostitute after him to play the prostitute with Molech, from among their people. + +

+

“‘The person that turns to those who are mediums and wizards, to play the prostitute after them, I will even set my face against that person, and will cut him off from among his people. + +

+

“‘Sanctify yourselves therefore, and be holy; for I am Yahweh your God. + +You shall keep my statutes, and do them. I am Yahweh who sanctifies you. + +

+

“‘For everyone who curses his father or his mother shall surely be put to death. He has cursed his father or his mother. His blood shall be upon himself. + +

+

“‘The man who commits adultery with another man’s wife, even he who commits adultery with his neighbor’s wife, the adulterer and the adulteress shall surely be put to death. + +

+

“‘The man who lies with his father’s wife has uncovered his father’s nakedness. Both of them shall surely be put to death. Their blood shall be upon themselves. + +

+

“‘If a man lies with his daughter-in-law, both of them shall surely be put to death. They have committed a perversion. Their blood shall be upon themselves. + +

+

“‘If a man lies with a male, as with a woman, both of them have committed an abomination. They shall surely be put to death. Their blood shall be upon themselves. + +

+

“‘If a man takes a wife and her mother, it is wickedness. They shall be burned with fire, both he and they, that there may be no wickedness among you. + +

+

“‘If a man lies with an animal, he shall surely be put to death; and you shall kill the animal. + +

+

“‘If a woman approaches any animal and lies with it, you shall kill the woman and the animal. They shall surely be put to death. Their blood shall be upon them. + +

+

“‘If a man takes his sister—his father’s daughter, or his mother’s daughterand sees her nakedness, and she sees his nakedness, it is a shameful thing. They shall be cut off in the sight of the children of their people. He has uncovered his sister’s nakedness. He shall bear his iniquity. + +

+

“‘If a man lies with a woman having her monthly period, and uncovers her nakedness, he has made her fountain naked, and she has uncovered the fountain of her blood. Both of them shall be cut off from among their people. + +

+

“‘You shall not uncover the nakedness of your mother’s sister, nor of your father’s sister, for he has made his close relative naked. They shall bear their iniquity. + +If a man lies with his uncle’s wife, he has uncovered his uncle’s nakedness. They shall bear their sin. They shall die childless. + +

+

“‘If a man takes his brother’s wife, it is an impurity. He has uncovered his brother’s nakedness. They shall be childless. + +

+

“‘You shall therefore keep all my statutes and all my ordinances, and do them, that the land where I am bringing you to dwell may not vomit you out. + +You shall not walk in the customs of the nation which I am casting out before you; for they did all these things, and therefore I abhorred them. + +But I have said to you, “You shall inherit their land, and I will give it to you to possess it, a land flowing with milk and honey.” I am Yahweh your God, who has separated you from the peoples. + +

+

“‘You shall therefore make a distinction between the clean animal and the unclean, and between the unclean fowl and the clean. You shall not make yourselves abominable by animal, or by bird, or by anything with which the ground teems, which I have separated from you as unclean for you. + +You shall be holy to me, for I, Yahweh, am holy, and have set you apart from the peoples, that you should be mine. + +

+

“‘A man or a woman that is a medium or is a wizard shall surely be put to death. They shall be stoned with stones. Their blood shall be upon themselves.’” + +

+ + +

Yahweh said to Moses, “Speak to the priests, the sons of Aaron, and say to them, ‘A priest shall not defile himself for the dead among his people, + +except for his relatives that are near to him: for his mother, for his father, for his son, for his daughter, for his brother, + +and for his virgin sister who is near to him, who has had no husband; for her he may defile himself. + +He shall not defile himself, being a chief man among his people, to profane himself. + +

+

“‘They shall not shave their heads or shave off the corners of their beards or make any cuttings in their flesh. + +They shall be holy to their God, and not profane the name of their God, for they offer the offerings of Yahweh made by fire, the bread of their God. Therefore they shall be holy. + +

+

“‘They shall not marry a woman who is a prostitute, or profane. A priest shall not marry a woman divorced from her husband; for he is holy to his God. + +Therefore you shall sanctify him, for he offers the bread of your God. He shall be holy to you, for I Yahweh, who sanctify you, am holy. + +

+

“‘The daughter of any priest, if she profanes herself by playing the prostitute, she profanes her father. She shall be burned with fire. + +

+

“‘He who is the high priest among his brothers, upon whose head the anointing oil is poured, and who is consecrated to put on the garments, shall not let the hair of his head hang loose, or tear his clothes. + +He must not go in to any dead body, or defile himself for his father or for his mother. + +He shall not 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 Yahweh. + +

+

“‘He shall take a wife in her virginity. + +He shall not marry a widow, or one divorced, or a woman who has been defiled, or a prostitute. He shall take a virgin of his own people as a wife. + +He shall not profane his offspring among his people, for I am Yahweh who sanctifies him.’” + +

+

Yahweh spoke to Moses, saying, + +Say to Aaron, ‘None of your offspring throughout their generations who has a defect may approach to offer the bread of his God. + +For whatever man he is that has a defect, he shall not draw near: a blind man, or a lame, or he who has a flat nose, or any deformity, + +or a man who has an injured foot, or an injured hand, + +or hunchbacked, or a dwarf, or one who has a defect in his eye, or an itching disease, or scabs, or who has damaged testicles. + +No man of the offspring of Aaron the priest who has a defect shall come near to offer the offerings of Yahweh made by fire. Since he has a defect, he shall not come near to offer the bread of his God. + +He shall eat the bread of his God, both of the most holy, and of the holy. + +He shall not come near to the veil, nor come near to the altar, because he has a defect; that he may not profane my sanctuaries, for I am Yahweh who sanctifies them.’” + +

+

So Moses spoke to Aaron, and to his sons, and to all the children of Israel. + +

+ + +

Yahweh spoke to Moses, saying, + +Tell Aaron and his sons to separate themselves from the holy things of the children of Israel, which they make holy to me, and that they not profane my holy name. I am Yahweh. + +

+

Tell them, ‘If anyone of all your offspring throughout your generations approaches the holy things which the children of Israel make holy to Yahweh, having his uncleanness on him, that soul shall be cut off from before me. I am Yahweh. + +

+

“‘Whoever of the offspring of Aaron is a leper or has a discharge shall not eat of the holy things until he is clean. Whoever touches anything that is unclean by the dead, or a man who has a seminal emission, + +or whoever touches any creeping thing by which he may be made unclean, or a man from whom he may become unclean, whatever uncleanness he has— + +the person that touches any such shall be unclean until the evening, and shall not eat of the holy things unless he bathes his body in water. + +When the sun is down, he shall be clean; and afterward he shall eat of the holy things, because it is his bread. + +He shall not eat that which dies of itself or is torn by animals, defiling himself by it. I am Yahweh. + +

+

“‘They shall therefore follow my commandment, lest they bear sin for it and die in it, if they profane it. I am Yahweh who sanctifies them. + +

+

“‘No stranger shall eat of the holy thing: a foreigner living with the priests, or a hired servant, shall not eat of the holy thing. + +But if a priest buys a slave, purchased by his money, he shall eat of it; and those who are born in his house shall eat of his bread. + +If a priest’s daughter is married to an outsider, she shall not eat of the heave offering of the holy things. + +But if a priest’s daughter is a widow, or divorced, and has no child, and has returned to her father’s house as in her youth, she may eat of her father’s bread; but no stranger shall eat any of it. + +

+

“‘If a man eats something holy unwittingly, then he shall add the fifth part of its value to it, and shall give the holy thing to the priest. + +The priests shall not profane the holy things of the children of Israel, which they offer to Yahweh, + +and so cause them to bear the iniquity that brings guilt when they eat their holy things; for I am Yahweh who sanctifies them.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to Aaron, and to his sons, and to all the children of Israel, and say to them, ‘Whoever is of the house of Israel, or of the foreigners in Israel, who offers his offering, whether it is any of their vows or any of their free will offerings, which they offer to Yahweh for a burnt offering: + +that you may be accepted, you shall offer a male without defect, of the bulls, of the sheep, or of the goats. + +But you shall not offer whatever has a defect, for it shall not be acceptable for you. + +Whoever offers a sacrifice of peace offerings to Yahweh to accomplish a vow, or for a free will offering of the herd or of the flock, it shall be perfect to be accepted. It shall have no defect. + +You shall not offer what is blind, is injured, is maimed, has a wart, is festering, or has a running sore to Yahweh, nor make an offering by fire of them on the altar to Yahweh. + +Either a bull or a lamb that has any deformity or lacking in his parts, that you may offer for a free will offering; but for a vow it shall not be accepted. + +You must not offer to Yahweh that which has its testicles bruised, crushed, broken, or cut. You must not do this in your land. + +You must not offer any of these as the bread of your God from the hand of a foreigner, because their corruption is in them. There is a defect in them. They shall not be accepted for you.’” + +

+

Yahweh spoke to Moses, saying, + +When a bull, a sheep, or a goat is born, it shall remain seven days with its mother. From the eighth day on it shall be accepted for the offering of an offering made by fire to Yahweh. + +Whether it is a cow or ewe, you shall not kill it and its young both in one day. + +

+

When you sacrifice a sacrifice of thanksgiving to Yahweh, you shall sacrifice it so that you may be accepted. + +It shall be eaten on the same day; you shall leave none of it until the morning. I am Yahweh. + +

+

Therefore you shall keep my commandments, and do them. I am Yahweh. + +You shall not profane my holy name, but I will be made holy among the children of Israel. I am Yahweh who makes you holy, + +who brought you out of the land of Egypt, to be your God. I am Yahweh.” + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them, ‘The set feasts of Yahweh, which you shall proclaim to be holy convocations, even these are my set feasts. + +

+

“‘Six days shall work be done, but on the seventh day is a Sabbath of solemn rest, a holy convocation; you shall do no kind of work. It is a Sabbath to Yahweh in all your dwellings. + +

+

“‘These are the set feasts of Yahweh, even holy convocations, which you shall proclaim in their appointed season. + +In the first month, on the fourteenth day of the month in the evening, is Yahweh’s Passover. + +On the fifteenth day of the same month is the feast of unleavened bread to Yahweh. Seven days you shall eat unleavened bread. + +In the first day you shall have a holy convocation. You shall do no regular work. + +But you shall offer an offering made by fire to Yahweh seven days. In the seventh day is a holy convocation. You shall do no regular work.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them, ‘When you have come into the land which I give to you, and shall reap its harvest, then you shall bring the sheaf of the first fruits of your harvest to the priest. + +He shall wave the sheaf before Yahweh, to be accepted for you. On the next day after the Sabbath the priest shall wave it. + +On the day when you wave the sheaf, you shall offer a male lamb without defect a year old for a burnt offering to Yahweh. + +The meal offering with it shall be two tenths of an ephah23:13 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour mixed with oil, an offering made by fire to Yahweh for a pleasant aroma; and the drink offering with it shall be of wine, the fourth part of a hin.23:13 +A hin is about 6.5 liters or 1.7 gallons. + +You must not eat bread, or roasted grain, or fresh grain, until this same day, until you have brought the offering of your God. This is a statute forever throughout your generations in all your dwellings. + +

+

“‘You shall count from the next day after the Sabbath, from the day that you brought the sheaf of the wave offering: seven Sabbaths shall be completed. + +The next day after the seventh Sabbath you shall count fifty days; and you shall offer a new meal offering to Yahweh. + +You shall bring out of your habitations two loaves of bread for a wave offering made of two tenths of an ephah23:17 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour. They shall be baked with yeast, for first fruits to Yahweh. + +You shall present with the bread seven lambs without defect a year old, one young bull, and two rams. They shall be a burnt offering to Yahweh, with their meal offering and their drink offerings, even an offering made by fire, of a sweet aroma to Yahweh. + +You shall offer one male goat for a sin offering, and two male lambs a year old for a sacrifice of peace offerings. + +The priest shall wave them with the bread of the first fruits for a wave offering before Yahweh, with the two lambs. They shall be holy to Yahweh for the priest. + +You shall make proclamation on the same day that there shall be a holy convocation to you. You shall do no regular work. This is a statute forever in all your dwellings throughout your generations. + +

+

“‘When you reap the harvest of your land, you must not wholly reap into the corners of your field. You must not gather the gleanings of your harvest. You must leave them for the poor and for the foreigner. I am Yahweh your God.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, saying, ‘In the seventh month, on the first day of the month, there shall be a solemn rest for you, a memorial of blowing of trumpets, a holy convocation. + +You shall do no regular work. You shall offer an offering made by fire to Yahweh.’” + +

+

Yahweh spoke to Moses, saying, + +“However on the tenth day of this seventh month is the day of atonement. It shall be a holy convocation to you. You shall afflict yourselves and you shall offer an offering made by fire to Yahweh. + +You shall do no kind of work in that same day, for it is a day of atonement, to make atonement for you before Yahweh your God. + +For whoever it is who shall not deny himself in that same day shall be cut off from his people. + +Whoever does any kind of work in that same day, I will destroy that person from among his people. + +You shall do no kind of work: it is a statute forever throughout your generations in all your dwellings. + +It shall be a Sabbath of solemn rest for you, and you shall deny yourselves. In the ninth day of the month at evening, from evening to evening, you shall keep your Sabbath.” + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and say, ‘On the fifteenth day of this seventh month is the feast of booths23:34 +or, feast of tents, or Succoth for seven days to Yahweh. + +On the first day shall be a holy convocation. You shall do no regular work. + +Seven days you shall offer an offering made by fire to Yahweh. On the eighth day shall be a holy convocation to you. You shall offer an offering made by fire to Yahweh. It is a solemn assembly; you shall do no regular work. + +

+

“‘These are the appointed feasts of Yahweh which you shall proclaim to be holy convocations, to offer an offering made by fire to Yahweh, a burnt offering, a meal offering, a sacrifice, and drink offerings, each on its own day— + +in addition to the Sabbaths of Yahweh, and in addition to your gifts, and in addition to all your vows, and in addition to all your free will offerings, which you give to Yahweh. + +

+

“‘So on the fifteenth day of the seventh month, when you have gathered in the fruits of the land, you shall keep the feast of Yahweh seven days. On the first day shall be a solemn rest, and on the eighth day shall be a solemn rest. + +You shall take on the first day the fruit of majestic trees, branches of palm trees, and boughs of thick trees, and willows of the brook; and you shall rejoice before Yahweh your God seven days. + +You shall keep it as a feast to Yahweh seven days in the year. It is a statute forever throughout your generations. You shall keep it in the seventh month. + +You shall dwell in temporary shelters23:42 +or, booths for seven days. All who are native-born in Israel shall dwell in temporary shelters,23:42 +or, booths + +that your generations may know that I made the children of Israel to dwell in temporary shelters23:43 +or, booths when I brought them out of the land of Egypt. I am Yahweh your God.’” + +

+

So Moses declared to the children of Israel the appointed feasts of Yahweh. + +

+ + +

Yahweh spoke to Moses, saying, + +Command the children of Israel, that they bring to you pure olive oil beaten for the light, to cause a lamp to burn continually. + +Outside of the veil of the Testimony, in the Tent of Meeting, Aaron shall keep it in order from evening to morning before Yahweh continually. It shall be a statute forever throughout your generations. + +He shall keep in order the lamps on the pure gold lamp stand before Yahweh continually. + +

+

You shall take fine flour, and bake twelve cakes of it: two tenths of an ephah24:5 +1 ephah is about 22 liters or about 2/3 of a bushel shall be in one cake. + +You shall set them in two rows, six on a row, on the pure gold table before Yahweh. + +You shall put pure frankincense on each row, that it may be to the bread for a memorial, even an offering made by fire to Yahweh. + +Every Sabbath day he shall set it in order before Yahweh continually. It is an everlasting covenant on the behalf of the children of Israel. + +It shall be for Aaron and his sons. They shall eat it in a holy place; for it is most holy to him of the offerings of Yahweh made by fire by a perpetual statute.” + +

+

The son of an Israelite woman, whose father was an Egyptian, went out among the children of Israel; and the son of the Israelite woman and a man of Israel strove together in the camp. + +The son of the Israelite woman blasphemed the Name, and cursed; and they brought him to Moses. His mother’s name was Shelomith, the daughter of Dibri, of the tribe of Dan. + +They put him in custody until Yahweh’s will should be declared to them. + +Yahweh spoke to Moses, saying, + +Bring him who cursed out of the camp; and let all who heard him lay their hands on his head, and let all the congregation stone him. + +You shall speak to the children of Israel, saying, ‘Whoever curses his God shall bear his sin. + +He who blasphemes Yahweh’s name, he shall surely be put to death. All the congregation shall certainly stone him. The foreigner as well as the native-born shall be put to death when he blasphemes the Name. + +

+

“‘He who strikes any man mortally shall surely be put to death. + +He who strikes an animal mortally shall make it good, life for life. + +If anyone injures his neighbor, it shall be done to him as he has done: + +fracture for fracture, eye for eye, tooth for tooth. It shall be done to him as he has injured someone. + +He who kills an animal shall make it good; and he who kills a man shall be put to death. + +You shall have one kind of law for the foreigner as well as the native-born; for I am Yahweh your God.’” + +

+

Moses spoke to the children of Israel; and they brought him who had cursed out of the camp, and stoned him with stones. The children of Israel did as Yahweh commanded Moses. + +

+ + +

Yahweh said to Moses on Mount Sinai, + +Speak to the children of Israel, and tell them, ‘When you come into the land which I give you, then the land shall keep a Sabbath to Yahweh. + +You shall sow your field six years, and you shall prune your vineyard six years, and gather in its fruits; + +but in the seventh year there shall be a Sabbath of solemn rest for the land, a Sabbath to Yahweh. You shall not sow your field or prune your vineyard. + +What grows of itself in your harvest you shall not reap, and you shall not gather the grapes of your undressed vine. It shall be a year of solemn rest for the land. + +The Sabbath of the land shall be for food for you; for yourself, for your servant, for your maid, for your hired servant, and for your stranger, who lives as a foreigner with you. + +For your livestock also, and for the animals that are in your land, shall all its increase be for food. + +

+

“‘You shall count off seven Sabbaths of years, seven times seven years; and there shall be to you the days of seven Sabbaths of years, even forty-nine years. + +Then you shall sound the loud trumpet on the tenth day of the seventh month. On the Day of Atonement you shall sound the trumpet throughout all your land. + +You shall make the fiftieth year holy, and proclaim liberty throughout the land to all its inhabitants. It shall be a jubilee to you; and each of you shall return to his own property, and each of you shall return to his family. + +That fiftieth year shall be a jubilee to you. In it you shall not sow, neither reap that which grows of itself, nor gather from the undressed vines. + +For it is a jubilee; it shall be holy to you. You shall eat of its increase out of the field. + +

+

“‘In this Year of Jubilee each of you shall return to his property. + +

+

“‘If you sell anything to your neighbor, or buy from your neighbor, you shall not wrong one another. + +According to the number of years after the Jubilee you shall buy from your neighbor. According to the number of years of the crops he shall sell to you. + +According to the length of the years you shall increase its price, and according to the shortness of the years you shall diminish its price; for he is selling the number of the crops to you. + +You shall not wrong one another, but you shall fear your God; for I am Yahweh your God. + +

+

“‘Therefore you shall do my statutes, and keep my ordinances and do them; and you shall dwell in the land in safety. + +The land shall yield its fruit, and you shall eat your fill, and dwell therein in safety. + +If you said, “What shall we eat the seventh year? Behold, we shall not sow, nor gather in our increase;” + +then I will command my blessing on you in the sixth year, and it shall bear fruit for the three years. + +You shall sow the eighth year, and eat of the fruits from the old store until the ninth year. Until its fruits come in, you shall eat the old store. + +

+

“‘The land shall not be sold in perpetuity, for the land is mine; for you are strangers and live as foreigners with me. + +In all the land of your possession you shall grant a redemption for the land. + +

+

“‘If your brother becomes poor, and sells some of his possessions, then his kinsman who is next to him shall come, and redeem that which his brother has sold. + +If a man has no one to redeem it, and he becomes prosperous and finds sufficient means to redeem it, + +then let him reckon the years since its sale, and restore the surplus to the man to whom he sold it; and he shall return to his property. + +But if he isn’t able to get it back for himself, then what he has sold shall remain in the hand of him who has bought it until the Year of Jubilee. In the Jubilee it shall be released, and he shall return to his property. + +

+

“‘If a man sells a dwelling house in a walled city, then he may redeem it within a whole year after it has been sold. For a full year he shall have the right of redemption. + +If it isn’t redeemed within the space of a full year, then the house that is in the walled city shall be made sure in perpetuity to him who bought it, throughout his generations. It shall not be released in the Jubilee. + +But the houses of the villages which have no wall around them shall be accounted for with the fields of the country: they may be redeemed, and they shall be released in the Jubilee. + +

+

“‘Nevertheless, in the cities of the Levites, the Levites may redeem the houses in the cities of their possession at any time. + +The Levites may redeem the house that was sold, and the city of his possession, and it shall be released in the Jubilee; for the houses of the cities of the Levites are their possession among the children of Israel. + +But the field of the pasture lands of their cities may not be sold, for it is their perpetual possession. + +

+

“‘If your brother has become poor, and his hand can’t support himself among you, then you shall uphold him. He shall live with you like an alien and a temporary resident. + +Take no interest from him or profit; but fear your God, that your brother may live among you. + +You shall not lend him your money at interest, nor give him your food for profit. + +I am Yahweh your God, who brought you out of the land of Egypt, to give you the land of Canaan, and to be your God. + +

+

“‘If your brother has grown poor among you, and sells himself to you, you shall not make him to serve as a slave. + +As a hired servant, and as a temporary resident, he shall be with you; he shall serve with you until the Year of Jubilee. + +Then he shall go out from you, he and his children with him, and shall return to his own family, and to the possession of his fathers. + +For they are my servants, whom I brought out of the land of Egypt. They shall not be sold as slaves. + +You shall not rule over him with harshness, but shall fear your God. + +

+

“‘As for your male and your female slaves, whom you may have from the nations that are around you, from them you may buy male and female slaves. + +Moreover, of the children of the aliens who live among you, of them you may buy, and of their families who are with you, which they have conceived in your land; and they will be your property. + +You may make them an inheritance for your children after you, to hold for a possession. Of them you may take your slaves forever, but over your brothers the children of Israel you shall not rule, one over another, with harshness. + +

+

“‘If an alien or temporary resident with you becomes rich, and your brother beside him has grown poor, and sells himself to the stranger or foreigner living among you, or to a member of the stranger’s family, + +after he is sold he may be redeemed. One of his brothers may redeem him; + +or his uncle, or his uncle’s son, may redeem him, or any who is a close relative to him of his family may redeem him; or if he has grown rich, he may redeem himself. + +He shall reckon with him who bought him from the year that he sold himself to him to the Year of Jubilee. The price of his sale shall be according to the number of years; he shall be with him according to the time of a hired servant. + +If there are yet many years, according to them he shall give back the price of his redemption out of the money that he was bought for. + +If there remain but a few years to the year of jubilee, then he shall reckon with him; according to his years of service he shall give back the price of his redemption. + +As a servant hired year by year shall he be with him. He shall not rule with harshness over him in your sight. + +If he isn’t redeemed by these means, then he shall be released in the Year of Jubilee: he and his children with him. + +For to me the children of Israel are servants; they are my servants whom I brought out of the land of Egypt. I am Yahweh your God. + +

+ + +

“‘You shall make for yourselves no idols, and you shall not raise up a carved image or a pillar, and you shall not place any figured stone in your land, to bow down to it; for I am Yahweh your God. + +

+

“‘You shall keep my Sabbaths, and have reverence for my sanctuary. I am Yahweh. + +

+

“‘If you walk in my statutes and keep my commandments, and do them, + +then I will give you your rains in their season, and the land shall yield its increase, and the trees of the field shall yield their fruit. + +Your threshing shall continue until the vintage, and the vintage shall continue until the sowing time. You shall eat your bread to the full, and dwell in your land safely. + +

+

“‘I will give peace in the land, and you shall lie down, and no one will make you afraid. I will remove evil animals out of the land, neither shall the sword go through your land. + +You shall chase your enemies, and they shall fall before you by the sword. + +Five of you shall chase a hundred, and a hundred of you shall chase ten thousand; and your enemies shall fall before you by the sword. + +

+

“‘I will have respect for you, make you fruitful, multiply you, and will establish my covenant with you. + +You shall eat old supplies long kept, and you shall move out the old because of the new. + +I will set my tent among you, and my soul won’t abhor you. + +I will walk among you, and will be your God, and you will be my people. + +I am Yahweh your God, who brought you out of the land of Egypt, that you should not be their slaves. I have broken the bars of your yoke, and made you walk upright. + +

+

“‘But if you will not listen to me, and will not do all these commandments, + +and if you shall reject my statutes, and if your soul abhors my ordinances, so that you will not do all my commandments, but break my covenant, + +I also will do this to you: I will appoint terror over you, even consumption and fever, that shall consume the eyes, and make the soul to pine away. You will sow your seed in vain, for your enemies will eat it. + +I will set my face against you, and you will be struck before your enemies. Those who hate you will rule over you; and you will flee when no one pursues you. + +

+

“‘If you in spite of these things will not listen to me, then I will chastise you seven times more for your sins. + +I will break the pride of your power, and I will make your sky like iron, and your soil like bronze. + +Your strength will be spent in vain; for your land won’t yield its increase, neither will the trees of the land yield their fruit. + +

+

“‘If you walk contrary to me, and won’t listen to me, then I will bring seven times more plagues on you according to your sins. + +I will send the wild animals among you, which will rob you of your children, destroy your livestock, and make you few in number. Your roads will become desolate. + +

+

“‘If by these things you won’t be turned back to me, but will walk contrary to me, + +then I will also walk contrary to you; and I will strike you, even I, seven times for your sins. + +I will bring a sword upon you that will execute the vengeance of the covenant. You will be gathered together within your cities, and I will send the pestilence among you. You will be delivered into the hand of the enemy. + +When I break your staff of bread, ten women shall bake your bread in one oven, and they shall deliver your bread again by weight. You shall eat, and not be satisfied. + +

+

“‘If you in spite of this won’t listen to me, but walk contrary to me, + +then I will walk contrary to you in wrath. I will also chastise you seven times for your sins. + +You will eat the flesh of your sons, and you will eat the flesh of your daughters. + +I will destroy your high places, and cut down your incense altars, and cast your dead bodies upon the bodies of your idols; and my soul will abhor you. + +I will lay your cities waste, and will bring your sanctuaries to desolation. I will not take delight in the sweet fragrance of your offerings. + +I will bring the land into desolation, and your enemies who dwell in it will be astonished at it. + +I will scatter you among the nations, and I will draw out the sword after you. Your land will be a desolation, and your cities shall be a waste. + +Then the land will enjoy its Sabbaths as long as it lies desolate and you are in your enemies’ land. Even then the land will rest and enjoy its Sabbaths. + +As long as it lies desolate it shall have rest, even the rest which it didn’t have in your Sabbaths when you lived on it. + +

+

“‘As for those of you who are left, I will send a faintness into their hearts in the lands of their enemies. The sound of a driven leaf will put them to flight; and they shall flee, as one flees from the sword. They will fall when no one pursues. + +They will stumble over one another, as it were before the sword, when no one pursues. You will have no power to stand before your enemies. + +You will perish among the nations. The land of your enemies will eat you up. + +Those of you who are left will pine away in their iniquity in your enemies’ lands; and also in the iniquities of their fathers they shall pine away with them. + +

+

“‘If they confess their iniquity and the iniquity of their fathers, in their trespass which they trespassed against me; and also that because they walked contrary to me, + +I also walked contrary to them, and brought them into the land of their enemies; if then their uncircumcised heart is humbled, and they then accept the punishment of their iniquity, + +then I will remember my covenant with Jacob, my covenant with Isaac, and also my covenant with Abraham; and I will remember the land. + +The land also will be left by them, and will enjoy its Sabbaths while it lies desolate without them; and they will accept the punishment of their iniquity because they rejected my ordinances, and their soul abhorred my statutes. + +Yet for all that, when they are in the land of their enemies, I will not reject them, neither will I abhor them, to destroy them utterly and to break my covenant with them; for I am Yahweh their God. + +But I will for their sake remember the covenant of their ancestors, whom I brought out of the land of Egypt in the sight of the nations, that I might be their God. I am Yahweh.’” + +

+

These are the statutes, ordinances, and laws, which Yahweh made between him and the children of Israel in Mount Sinai by Moses. + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and say to them, ‘When a man consecrates a person to Yahweh in a vow, according to your valuation, + +your valuation of a male from twenty years old to sixty years old shall be fifty shekels of silver, according to the shekel27:3 +A shekel is about 10 grams or about 0.35 ounces. of the sanctuary. + +If she is a female, then your valuation shall be thirty shekels. + +If the person is from five years old to twenty years old, then your valuation shall be for a male twenty shekels, and for a female ten shekels. + +If the person is from a month old to five years old, then your valuation shall be for a male five shekels of silver, and for a female your valuation shall be three shekels of silver. + +If the person is from sixty years old and upward; if he is a male, then your valuation shall be fifteen shekels, and for a female ten shekels. + +But if he is poorer than your valuation, then he shall be set before the priest, and the priest shall assign a value to him. The priest shall assign a value according to his ability to pay. + +

+

“‘If it is an animal of which men offer an offering to Yahweh, all that any man gives of such to Yahweh becomes holy. + +He shall not alter it, nor exchange it, a good for a bad, or a bad for a good. If he shall at all exchange animal for animal, then both it and that for which it is exchanged shall be holy. + +If it is any unclean animal, of which they do not offer as an offering to Yahweh, then he shall set the animal before the priest; + +and the priest shall evaluate it, whether it is good or bad. As the priest evaluates it, so it shall be. + +But if he will indeed redeem it, then he shall add the fifth part of it to its valuation. + +

+

“‘When a man dedicates his house to be holy to Yahweh, then the priest shall evaluate it, whether it is good or bad. As the priest evaluates it, so it shall stand. + +If he who dedicates it will redeem his house, then he shall add the fifth part of the money of your valuation to it, and it shall be his. + +

+

“‘If a man dedicates to Yahweh part of the field of his possession, then your valuation shall be according to the seed for it. The sowing of a homer27:16 +1 homer is about 220 liters or 6 bushels of barley shall be valued at fifty shekels27:16 +A shekel is about 10 grams or about 0.35 ounces. of silver. + +If he dedicates his field from the Year of Jubilee, according to your valuation it shall stand. + +But if he dedicates his field after the Jubilee, then the priest shall reckon to him the money according to the years that remain to the Year of Jubilee; and an abatement shall be made from your valuation. + +If he who dedicated the field will indeed redeem it, then he shall add the fifth part of the money of your valuation to it, and it shall remain his. + +If he will not redeem the field, or if he has sold the field to another man, it shall not be redeemed any more; + +but the field, when it goes out in the Jubilee, shall be holy to Yahweh, as a devoted field. It shall be owned by the priests. + +

+

“‘If he dedicates a field to Yahweh which he has bought, which is not of the field of his possession, + +then the priest shall reckon to him the worth of your valuation up to the Year of Jubilee; and he shall give your valuation on that day, as a holy thing to Yahweh. + +In the Year of Jubilee the field shall return to him from whom it was bought, even to him to whom the possession of the land belongs. + +All your valuations shall be according to the shekel of the sanctuary: twenty gerahs27:25 +A gerah is about 0.5 grams or about 7.7 grains. to the shekel.27:25 +A shekel is about 10 grams or about 0.35 ounces. + +

+

“‘However the firstborn among animals, which belongs to Yahweh as a firstborn, no man may dedicate, whether an ox or a sheep. It is Yahweh’s. + +If it is an unclean animal, then he shall buy it back according to your valuation, and shall add to it the fifth part of it; or if it isn’t redeemed, then it shall be sold according to your valuation. + +

+

“‘Notwithstanding, no devoted thing that a man devotes to Yahweh of all that he has, whether of man or animal, or of the field of his possession, shall be sold or redeemed. Everything that is permanently devoted is most holy to Yahweh. + +

+

“‘No one devoted to destruction, who shall be devoted from among men, shall be ransomed. He shall surely be put to death. + +

+

“‘All the tithe of the land, whether of the seed of the land or of the fruit of the trees, is Yahweh’s. It is holy to Yahweh. + +If a man redeems anything of his tithe, he shall add a fifth part to it. + +All the tithe of the herds or the flocks, whatever passes under the rod, the tenth shall be holy to Yahweh. + +He shall not examine whether it is good or bad, neither shall he exchange it. If he exchanges it at all, then both it and that for which it is exchanged shall be holy. It shall not be redeemed.’” + +

+

These are the commandments which Yahweh commanded Moses for the children of Israel on Mount Sinai. + +

+
+World English Bible (WEB) +Numbers +The Fourth Book of Moses, Commonly Called Numbers +Numbers +Num +

The Fourth Book of Moses, +

+

Commonly Called +

+

Numbers +

+ + +

Yahweh1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. spoke to Moses in the wilderness of Sinai, in the Tent of Meeting, on the first day of the second month, in the second year after they had come out of the land of Egypt, saying, + +Take a census of all the congregation of the children of Israel, by their families, by their fathers’ houses, according to the number of the names, every male, one by one, + +from twenty years old and upward, all who are able to go out to war in Israel. You and Aaron shall count them by their divisions. + +With you there shall be a man of every tribe, each one head of his fathers’ house. + +These are the names of the men who shall stand with you: +

+

Of Reuben: Elizur the son of Shedeur. + +

+

Of Simeon: Shelumiel the son of Zurishaddai. + +

+

Of Judah: Nahshon the son of Amminadab. + +

+

Of Issachar: Nethanel the son of Zuar. + +

+

Of Zebulun: Eliab the son of Helon. + +

+

Of the children of Joseph: of Ephraim: Elishama the son of Ammihud; of Manasseh: Gamaliel the son of Pedahzur. + +

+

Of Benjamin: Abidan the son of Gideoni. + +

+

Of Dan: Ahiezer the son of Ammishaddai. + +

+

Of Asher: Pagiel the son of Ochran. + +

+

Of Gad: Eliasaph the son of Deuel. + +

+

Of Naphtali: Ahira the son of Enan.” + +

+

These are those who were called of the congregation, the princes1:16 +or, chiefs, or, leaders of the tribes of their fathers; they were the heads of the thousands of Israel. + +Moses and Aaron took these men who are mentioned by name. + +They assembled all the congregation together on the first day of the second month; and they declared their ancestry by their families, by their fathershouses, according to the number of the names, from twenty years old and upward, one by one. + +As Yahweh commanded Moses, so he counted them in the wilderness of Sinai. + +

+

The children of Reuben, Israel’s firstborn, their generations, by their families, by their fathers’ houses, according to the number of the names, one by one, every male from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Reuben, were forty-six thousand five hundred. + +

+

Of the children of Simeon, their generations, by their families, by their fathers’ houses, those who were counted of it, according to the number of the names, one by one, every male from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Simeon, were fifty-nine thousand three hundred. + +

+

Of the children of Gad, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Gad, were forty-five thousand six hundred fifty. + +

+

Of the children of Judah, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Judah, were seventy-four thousand six hundred. + +

+

Of the children of Issachar, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Issachar, were fifty-four thousand four hundred. + +

+

Of the children of Zebulun, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Zebulun, were fifty-seven thousand four hundred. + +

+

Of the children of Joseph: of the children of Ephraim, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Ephraim, were forty thousand five hundred. + +

+

Of the children of Manasseh, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Manasseh, were thirty-two thousand two hundred. + +

+

Of the children of Benjamin, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Benjamin, were thirty-five thousand four hundred. + +

+

Of the children of Dan, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Dan, were sixty-two thousand seven hundred. + +

+

Of the children of Asher, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Asher, were forty-one thousand five hundred. + +

+

Of the children of Naphtali, their generations, by their families, by their fathers’ houses, according to the number of the names, from twenty years old and upward, all who were able to go out to war: + +those who were counted of them, of the tribe of Naphtali, were fifty-three thousand four hundred. + +

+

These are those who were counted, whom Moses and Aaron counted, and the twelve men who were princes of Israel, each one for his fathers’ house. + +So all those who were counted of the children of Israel by their fathers’ houses, from twenty years old and upward, all who were able to go out to war in Israel— + +all those who were counted were six hundred three thousand five hundred fifty. + +But the Levites after the tribe of their fathers were not counted among them. + +For Yahweh spoke to Moses, saying, + +“Only the tribe of Levi you shall not count, neither shall you take a census of them among the children of Israel; + +but appoint the Levites over the Tabernacle of the Testimony, and over all its furnishings, and over all that belongs to it. They shall carry the tabernacle and all its furnishings; and they shall take care of it, and shall encamp around it. + +When the tabernacle is to move, the Levites shall take it down; and when the tabernacle is to be set up, the Levites shall set it up. The stranger who comes near shall be put to death. + +The children of Israel shall pitch their tents, every man by his own camp, and every man by his own standard, according to their divisions. + +But the Levites shall encamp around the Tabernacle of the Testimony, that there may be no wrath on the congregation of the children of Israel. The Levites shall be responsible for the Tabernacle of the Testimony.” + +

+

Thus the children of Israel did. According to all that Yahweh commanded Moses, so they did. + +

+ + +

Yahweh spoke to Moses and to Aaron, saying, + +The children of Israel shall encamp every man by his own standard, with the banners of their fathers’ houses. They shall encamp around the Tent of Meeting at a distance from it. + +

+

Those who encamp on the east side toward the sunrise shall be of the standard of the camp of Judah, according to their divisions. The prince of the children of Judah shall be Nahshon the son of Amminadab. + +His division, and those who were counted of them, were seventy-four thousand six hundred. + +

+

Those who encamp next to him shall be the tribe of Issachar. The prince of the children of Issachar shall be Nethanel the son of Zuar. + +His division, and those who were counted of it, were fifty-four thousand four hundred. + +

+

The tribe of Zebulun: the prince of the children of Zebulun shall be Eliab the son of Helon. + +His division, and those who were counted of it, were fifty-seven thousand four hundred. + +

+

All who were counted of the camp of Judah were one hundred eighty-six thousand four hundred, according to their divisions. They shall set out first. + +

+

On the south side shall be the standard of the camp of Reuben according to their divisions. The prince of the children of Reuben shall be Elizur the son of Shedeur. + +His division, and those who were counted of it, were forty-six thousand five hundred. + +

+

Those who encamp next to him shall be the tribe of Simeon. The prince of the children of Simeon shall be Shelumiel the son of Zurishaddai. + +His division, and those who were counted of them, were fifty-nine thousand three hundred. + +

+

The tribe of Gad: the prince of the children of Gad shall be Eliasaph the son of Reuel. + +His division, and those who were counted of them, were forty-five thousand six hundred fifty. + +

+

All who were counted of the camp of Reuben were one hundred fifty-one thousand four hundred fifty, according to their armies. They shall set out second. + +

+

Then the Tent of Meeting shall set out, with the camp of the Levites in the middle of the camps. As they encamp, so shall they set out, every man in his place, by their standards. + +

+

On the west side shall be the standard of the camp of Ephraim according to their divisions. The prince of the children of Ephraim shall be Elishama the son of Ammihud. + +His division, and those who were counted of them, were forty thousand five hundred. + +

+

Next to him shall be the tribe of Manasseh. The prince of the children of Manasseh shall be Gamaliel the son of Pedahzur. + +His division, and those who were counted of them, were thirty-two thousand two hundred. + +

+

The tribe of Benjamin: the prince of the children of Benjamin shall be Abidan the son of Gideoni. + +His army, and those who were counted of them, were thirty-five thousand four hundred. + +

+

All who were counted of the camp of Ephraim were one hundred eight thousand one hundred, according to their divisions. They shall set out third. + +

+

On the north side shall be the standard of the camp of Dan according to their divisions. The prince of the children of Dan shall be Ahiezer the son of Ammishaddai. + +His division, and those who were counted of them, were sixty-two thousand seven hundred. + +

+

Those who encamp next to him shall be the tribe of Asher. The prince of the children of Asher shall be Pagiel the son of Ochran. + +His division, and those who were counted of them, were forty-one thousand five hundred. + +

+

The tribe of Naphtali: the prince of the children of Naphtali shall be Ahira the son of Enan. + +His division, and those who were counted of them, were fifty-three thousand four hundred. + +

+

All who were counted of the camp of Dan were one hundred fifty-seven thousand six hundred. They shall set out last by their standards.” + +

+

These are those who were counted of the children of Israel by their fathers’ houses. All who were counted of the camps according to their armies were six hundred three thousand five hundred fifty. + +But the Levites were not counted among the children of Israel, as Yahweh commanded Moses. + +

+

Thus the children of Israel did. According to all that Yahweh commanded Moses, so they encamped by their standards, and so they set out, everyone by their families, according to their fathers’ houses. + +

+ + +

Now this is the history of the generations of Aaron and Moses in the day that Yahweh spoke with Moses in Mount Sinai. + +These are the names of the sons of Aaron: Nadab the firstborn, and Abihu, Eleazar, and Ithamar. + +

+

These are the names of the sons of Aaron, the priests who were anointed, whom he consecrated to minister in the priest’s office. + +Nadab and Abihu died before Yahweh when they offered strange fire before Yahweh in the wilderness of Sinai, and they had no children. Eleazar and Ithamar ministered in the priest’s office in the presence of Aaron their father. + +

+

Yahweh spoke to Moses, saying, + +Bring the tribe of Levi near, and set them before Aaron the priest, that they may minister to him. + +They shall keep his requirements, and the requirements of the whole congregation before the Tent of Meeting, to do the service of the tabernacle. + +They shall keep all the furnishings of the Tent of Meeting, and the obligations of the children of Israel, to do the service of the tabernacle. + +You shall give the Levites to Aaron and to his sons. They are wholly given to him on the behalf of the children of Israel. + +You shall appoint Aaron and his sons, and they shall keep their priesthood, but the stranger who comes near shall be put to death.” + +

+

Yahweh spoke to Moses, saying, + +Behold,3:12 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I have taken the Levites from among the children of Israel instead of all the firstborn who open the womb among the children of Israel; and the Levites shall be mine, + +for all the firstborn are mine. On the day that I struck down all the firstborn in the land of Egypt I made holy to me all the firstborn in Israel, both man and animal. They shall be mine. I am Yahweh.” + +

+

Yahweh spoke to Moses in the wilderness of Sinai, saying, + +“Count the children of Levi by their fathers’ houses, by their families. You shall count every male from a month old and upward.” + +

+

Moses counted them according to Yahweh’s word, as he was commanded. + +

+

These were the sons of Levi by their names: Gershon, Kohath, and Merari. + +

+

These are the names of the sons of Gershon by their families: Libni and Shimei. + +

+

The sons of Kohath by their families: Amram, Izhar, Hebron, and Uzziel. + +

+

The sons of Merari by their families: Mahli and Mushi. +

+

These are the families of the Levites according to their fathers’ houses. + +

+

Of Gershon was the family of the Libnites, and the family of the Shimeites. These are the families of the Gershonites. + +

+

Those who were counted of them, according to the number of all the males from a month old and upward, even those who were counted of them were seven thousand five hundred. + +

+

The families of the Gershonites shall encamp behind the tabernacle westward. + +

+

Eliasaph the son of Lael shall be the prince of the fathers’ house of the Gershonites. + +The duty of the sons of Gershon in the Tent of Meeting shall be the tabernacle, the tent, its covering, the screen for the door of the Tent of Meeting, + +the hangings of the court, the screen for the door of the court which is by the tabernacle and around the altar, and its cords for all of its service. + +

+

Of Kohath was the family of the Amramites, the family of the Izharites, the family of the Hebronites, and the family of the Uzzielites. These are the families of the Kohathites. + +According to the number of all the males from a month old and upward, there were eight thousand six hundred keeping the requirements of the sanctuary. + +

+

The families of the sons of Kohath shall encamp on the south side of the tabernacle. + +The prince of the fathers’ house of the families of the Kohathites shall be Elizaphan the son of Uzziel. + +Their duty shall be the ark, the table, the lamp stand, the altars, the vessels of the sanctuary with which they minister, the screen, and all its service. + +Eleazar the son of Aaron the priest shall be prince of the princes of the Levites, with the oversight of those who keep the requirements of the sanctuary. + +

+

Of Merari was the family of the Mahlites and the family of the Mushites. These are the families of Merari. + +Those who were counted of them, according to the number of all the males from a month old and upward, were six thousand two hundred.3:34 ++ 22,000 is the sum rounded to 2 significant digits. The sum of the Gershonites, Kohathites, and Merarites given above is 22,300, but the traditional Hebrew text has the number rounded to 2 significant digits, not 3 significant digits. + +

+

The prince of the fathers’ house of the families of Merari was Zuriel the son of Abihail. They shall encamp on the north side of the tabernacle. + +The appointed duty of the sons of Merari shall be the tabernacle’s boards, its bars, its pillars, its sockets, all its instruments, all its service, + +the pillars of the court around it, their sockets, their pins, and their cords. + +

+

Those who encamp before the tabernacle eastward, in front of the Tent of Meeting toward the sunrise, shall be Moses, with Aaron and his sons, keeping the requirements of the sanctuary for the duty of the children of Israel. The outsider who comes near shall be put to death. + +All who were counted of the Levites, whom Moses and Aaron counted at the commandment of Yahweh, by their families, all the males from a month old and upward, were twenty-two thousand. + +

+

Yahweh said to Moses, “Count all the firstborn males of the children of Israel from a month old and upward, and take the number of their names. + +You shall take the Levites for meI am Yahwehinstead of all the firstborn among the children of Israel; and the livestock of the Levites instead of all the firstborn among the livestock of the children of Israel.” + +

+

Moses counted, as Yahweh commanded him, all the firstborn among the children of Israel. + +All the firstborn males according to the number of names from a month old and upward, of those who were counted of them, were twenty-two thousand two hundred seventy-three. + +

+

Yahweh spoke to Moses, saying, + +Take the Levites instead of all the firstborn among the children of Israel, and the livestock of the Levites instead of their livestock; and the Levites shall be mine. I am Yahweh. + +For the redemption of the two hundred seventy-three of the firstborn of the children of Israel who exceed the number of the Levites, + +you shall take five shekels apiece for each one; according to the shekel3:47 +A shekel is about 10 grams or about 0.35 ounces. of the sanctuary you shall take them (the shekel is twenty gerahs3:47 +A gerah is about 0.5 grams or about 7.7 grains.); + +and you shall give the money, with which their remainder is redeemed, to Aaron and to his sons.” + +

+

Moses took the redemption money from those who exceeded the number of those who were redeemed by the Levites; + +from the firstborn of the children of Israel he took the money, one thousand three hundred sixty-five shekels,3:50 +A shekel is about 10 grams or about 0.35 ounces, so 1365 shekels is about 13.65 kilograms or about 30 pounds. according to the shekel of the sanctuary; + +and Moses gave the redemption money to Aaron and to his sons, according to Yahweh’s word, as Yahweh commanded Moses. + +

+ + +

Yahweh spoke to Moses and to Aaron, saying, + +Take a census of the sons of Kohath from among the sons of Levi, by their families, by their fathers’ houses, + +from thirty years old and upward even until fifty years old, all who enter into the service to do the work in the Tent of Meeting. + +

+

This is the service of the sons of Kohath in the Tent of Meeting, regarding the most holy things. + +When the camp moves forward, Aaron shall go in with his sons; and they shall take down the veil of the screen, cover the ark of the Testimony with it, + +put a covering of sealskin on it, spread a blue cloth over it, and put in its poles. + +

+

On the table of show bread they shall spread a blue cloth, and put on it the dishes, the spoons, the bowls, and the cups with which to pour out; and the continual bread shall be on it. + +They shall spread on them a scarlet cloth, and cover it with a covering of sealskin, and shall put in its poles. + +

+

They shall take a blue cloth and cover the lamp stand of the light, its lamps, its snuffers, its snuff dishes, and all its oil vessels, with which they minister to it. + +They shall put it and all its vessels within a covering of sealskin, and shall put it on the frame. + +

+

On the golden altar they shall spread a blue cloth, and cover it with a covering of sealskin, and shall put in its poles. + +

+

They shall take all the vessels of ministry with which they minister in the sanctuary, and put them in a blue cloth, cover them with a covering of sealskin, and shall put them on the frame. + +

+

They shall take away the ashes from the altar, and spread a purple cloth on it. + +They shall put on it all its vessels with which they minister about it, the fire pans, the meat hooks, the shovels, and the basinsall the vessels of the altar; and they shall spread on it a covering of sealskin, and put in its poles. + +

+

When Aaron and his sons have finished covering the sanctuary and all the furniture of the sanctuary, as the camp moves forward; after that, the sons of Kohath shall come to carry it; but they shall not touch the sanctuary, lest they die. The sons of Kohath shall carry these things belonging to the Tent of Meeting. + +

+

The duty of Eleazar the son of Aaron the priest shall be the oil for the light, the sweet incense, the continual meal offering, and the anointing oil, the requirements of all the tabernacle, and of all that is in it, the sanctuary, and its furnishings.” + +

+

Yahweh spoke to Moses and to Aaron, saying, + +“Don’t cut off the tribe of the families of the Kohathites from among the Levites; + +but do this to them, that they may live, and not die, when they approach the most holy things: Aaron and his sons shall go in and appoint everyone to his service and to his burden; + +but they shall not go in to see the sanctuary even for a moment, lest they die.” + +

+

Yahweh spoke to Moses, saying, + +Take a census of the sons of Gershon also, by their fathers’ houses, by their families; + +you shall count them from thirty years old and upward until fifty years old: all who enter in to wait on the service, to do the work in the Tent of Meeting. + +

+

This is the service of the families of the Gershonites, in serving and in bearing burdens: + +they shall carry the curtains of the tabernacle and the Tent of Meeting, its covering, the covering of sealskin that is on it, the screen for the door of the Tent of Meeting, + +the hangings of the court, the screen for the door of the gate of the court which is by the tabernacle and around the altar, their cords, and all the instruments of their service, and whatever shall be done with them. They shall serve in there. + +At the commandment of Aaron and his sons shall be all the service of the sons of the Gershonites, in all their burden and in all their service; and you shall appoint their duty to them in all their responsibilities. + +This is the service of the families of the sons of the Gershonites in the Tent of Meeting. Their duty shall be under the hand of Ithamar the son of Aaron the priest. + +

+

As for the sons of Merari, you shall count them by their families, by their fathers’ houses; + +you shall count them from thirty years old and upward even to fifty years oldeveryone who enters on the service, to do the work of the Tent of Meeting. + +This is the duty of their burden, according to all their service in the Tent of Meeting: the tabernacle’s boards, its bars, its pillars, its sockets, + +the pillars of the court around it, their sockets, their pins, their cords, with all their instruments, and with all their service. You shall appoint the instruments of the duty of their burden to them by name. + +This is the service of the families of the sons of Merari, according to all their service in the Tent of Meeting, under the hand of Ithamar the son of Aaron the priest.” + +

+

Moses and Aaron and the princes of the congregation counted the sons of the Kohathites by their families, and by their fathers’ houses, + +from thirty years old and upward even to fifty years old, everyone who entered into the service for work in the Tent of Meeting. + +Those who were counted of them by their families were two thousand seven hundred fifty. + +These are those who were counted of the families of the Kohathites, all who served in the Tent of Meeting, whom Moses and Aaron counted according to the commandment of Yahweh by Moses. + +

+

Those who were counted of the sons of Gershon, by their families, and by their fathers’ houses, + +from thirty years old and upward even to fifty years oldeveryone who entered into the service for work in the Tent of Meeting, + +even those who were counted of them, by their families, by their fathers’ houses, were two thousand six hundred thirty. + +These are those who were counted of the families of the sons of Gershon, all who served in the Tent of Meeting, whom Moses and Aaron counted according to the commandment of Yahweh. + +

+

Those who were counted of the families of the sons of Merari, by their families, by their fathers’ houses, + +from thirty years old and upward even to fifty years oldeveryone who entered into the service for work in the Tent of Meeting, + +even those who were counted of them by their families, were three thousand two hundred. + +These are those who were counted of the families of the sons of Merari, whom Moses and Aaron counted according to the commandment of Yahweh by Moses. + +

+

All those who were counted of the Levites whom Moses and Aaron and the princes of Israel counted, by their families and by their fathers’ houses, + +from thirty years old and upward even to fifty years old, everyone who entered in to do the work of service and the work of bearing burdens in the Tent of Meeting, + +even those who were counted of them, were eight thousand five hundred eighty. + +According to the commandment of Yahweh they were counted by Moses, everyone according to his service and according to his burden. Thus they were counted by him, as Yahweh commanded Moses. + +

+ + +

Yahweh spoke to Moses, saying, + +Command the children of Israel that they put out of the camp every leper, everyone who has a discharge, and whoever is unclean by a corpse. + +You shall put both male and female outside of the camp so that they don’t defile their camp, in the midst of which I dwell.” + +

+

The children of Israel did so, and put them outside of the camp; as Yahweh spoke to Moses, so the children of Israel did. + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel: ‘When a man or woman commits any sin that men commit, so as to trespass against Yahweh, and that soul is guilty, + +then he shall confess his sin which he has done; and he shall make restitution for his guilt in full, add to it the fifth part of it, and give it to him in respect of whom he has been guilty. + +But if the man has no kinsman to whom restitution may be made for the guilt, the restitution for guilt which is made to Yahweh shall be the priest’s, in addition to the ram of the atonement, by which atonement shall be made for him. + +Every heave offering of all the holy things of the children of Israel, which they present to the priest, shall be his. + +Every man’s holy things shall be his; whatever any man gives the priest, it shall be his.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them: ‘If any man’s wife goes astray and is unfaithful to him, + +and a man lies with her carnally, and it is hidden from the eyes of her husband and this is kept concealed, and she is defiled, there is no witness against her, and she isn’t taken in the act; + +and the spirit of jealousy comes on him, and he is jealous of his wife and she is defiled; or if the spirit of jealousy comes on him, and he is jealous of his wife and she isn’t defiled; + +then the man shall bring his wife to the priest, and shall bring her offering for her: one tenth of an ephah5:15 +1 ephah is about 22 liters or about 2/3 of a bushel of barley meal. He shall pour no oil on it, nor put frankincense on it, for it is a meal offering of jealousy, a meal offering of memorial, bringing iniquity to memory. + +The priest shall bring her near, and set her before Yahweh. + +The priest shall take holy water in an earthen vessel; and the priest shall take some of the dust that is on the floor of the tabernacle and put it into the water. + +The priest shall set the woman before Yahweh, and let the hair of the woman’s head go loose, and put the meal offering of memorial in her hands, which is the meal offering of jealousy. The priest shall have in his hand the water of bitterness that brings a curse. + +The priest shall cause her to take an oath and shall tell the woman, “If no man has lain with you, and if you haven’t gone aside to uncleanness, being under your husband’s authority, be free from this water of bitterness that brings a curse. + +But if you have gone astray, being under your husband’s authority, and if you are defiled, and some man has lain with you besides your husband—” + +then the priest shall cause the woman to swear with the oath of cursing, and the priest shall tell the woman, “May Yahweh make you a curse and an oath among your people, when Yahweh allows your thigh to fall away, and your body to swell; + +and this water that brings a curse will go into your bowels, and make your body swell, and your thigh fall away.” The woman shall say, “Amen, Amen.” + +

+

“‘The priest shall write these curses in a book, and he shall wipe them into the water of bitterness. + +He shall make the woman drink the water of bitterness that causes the curse; and the water that causes the curse shall enter into her and become bitter. + +The priest shall take the meal offering of jealousy out of the woman’s hand, and shall wave the meal offering before Yahweh, and bring it to the altar. + +The priest shall take a handful of the meal offering, as its memorial portion, and burn it on the altar, and afterward shall make the woman drink the water. + +When he has made her drink the water, then it shall happen, if she is defiled and has committed a trespass against her husband, that the water that causes the curse will enter into her and become bitter, and her body will swell, and her thigh will fall away; and the woman will be a curse among her people. + +If the woman isn’t defiled, but is clean; then she shall be free, and shall conceive offspring.5:28 +or, seed + +

+

“‘This is the law of jealousy, when a wife, being under her husband, goes astray, and is defiled, + +or when the spirit of jealousy comes on a man, and he is jealous of his wife; then he shall set the woman before Yahweh, and the priest shall execute on her all this law. + +The man shall be free from iniquity, and that woman shall bear her iniquity.’” + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them: ‘When either man or woman shall make a special vow, the vow of a Nazirite, to separate himself to Yahweh, + +he shall separate himself from wine and strong drink. He shall drink no vinegar of wine, or vinegar of fermented drink, neither shall he drink any juice of grapes, nor eat fresh grapes or dried. + +All the days of his separation he shall eat nothing that is made of the grapevine, from the seeds even to the skins. + +

+

“‘All the days of his vow of separation no razor shall come on his head, until the days are fulfilled in which he separates himself to Yahweh. He shall be holy. He shall let the locks of the hair of his head grow long. + +

+

“‘All the days that he separates himself to Yahweh he shall not go near a dead body. + +He shall not make himself unclean for his father, or for his mother, for his brother, or for his sister, when they die, because his separation to God6:7 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). is on his head. + +All the days of his separation he is holy to Yahweh. + +

+

“‘If any man dies very suddenly beside him, and he defiles the head of his separation, then he shall shave his head in the day of his cleansing. On the seventh day he shall shave it. + +On the eighth day he shall bring two turtledoves or two young pigeons to the priest, to the door of the Tent of Meeting. + +The priest shall offer one for a sin offering, and the other for a burnt offering, and make atonement for him, because he sinned by reason of the dead, and shall make his head holy that same day. + +He shall separate to Yahweh the days of his separation, and shall bring a male lamb a year old for a trespass offering; but the former days shall be void, because his separation was defiled. + +

+

“‘This is the law of the Nazirite: when the days of his separation are fulfilled, he shall be brought to the door of the Tent of Meeting, + +and he shall offer his offering to Yahweh: one male lamb a year old without defect for a burnt offering, one ewe lamb a year old without defect for a sin offering, one ram without defect for peace offerings, + +a basket of unleavened bread, cakes of fine flour mixed with oil, and unleavened wafers anointed with oil with their meal offering and their drink offerings. + +The priest shall present them before Yahweh, and shall offer his sin offering and his burnt offering. + +He shall offer the ram for a sacrifice of peace offerings to Yahweh, with the basket of unleavened bread. The priest shall offer also its meal offering and its drink offering. + +The Nazirite shall shave the head of his separation at the door of the Tent of Meeting, take the hair of the head of his separation, and put it on the fire which is under the sacrifice of peace offerings. + +The priest shall take the boiled shoulder of the ram, one unleavened cake out of the basket, and one unleavened wafer, and shall put them on the hands of the Nazirite after he has shaved the head of his separation; + +and the priest shall wave them for a wave offering before Yahweh. They are holy for the priest, together with the breast that is waved and the thigh that is offered. After that the Nazirite may drink wine. + +

+

“‘This is the law of the Nazirite who vows and of his offering to Yahweh for his separation, in addition to that which he is able to afford. According to his vow which he vows, so he must do after the law of his separation.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to Aaron and to his sons, saying, ‘This is how you shall bless the children of Israel.’ You shall tell them, + +

+Yahweh bless you, and keep you. + + +Yahweh make his face to shine on you, + +and be gracious to you. + + +Yahweh lift up his face toward you, + +and give you peace.’ + + +

So they shall put my name on the children of Israel; and I will bless them.” + +

+ + +

On the day that Moses had finished setting up the tabernacle, and had anointed it and sanctified it with all its furniture, and the altar with all its vessels, and had anointed and sanctified them; + +the princes of Israel, the heads of their fathers’ houses, gave offerings. These were the princes of the tribes. These are they who were over those who were counted; + +and they brought their offering before Yahweh, six covered wagons and twelve oxen; a wagon for every two of the princes, and for each one an ox. They presented them before the tabernacle. + +Yahweh spoke to Moses, saying, + +Accept these from them, that they may be used in doing the service of the Tent of Meeting; and you shall give them to the Levites, to every man according to his service.” + +

+

Moses took the wagons and the oxen, and gave them to the Levites. + +He gave two wagons and four oxen to the sons of Gershon, according to their service. + +He gave four wagons and eight oxen to the sons of Merari, according to their service, under the direction of Ithamar the son of Aaron the priest. + +But to the sons of Kohath he gave none, because the service of the sanctuary belonged to them; they carried it on their shoulders. + +

+

The princes gave offerings for the dedication of the altar in the day that it was anointed. The princes gave their offerings before the altar. + +

+

Yahweh said to Moses, “They shall offer their offering, each prince on his day, for the dedication of the altar.” + +

+

He who offered his offering the first day was Nahshon the son of Amminadab, of the tribe of Judah, + +and his offering was: +

+

one silver platter, the weight of which was one hundred thirty shekels,7:13 +A shekel is about 10 grams or about 0.35 ounces. +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Nahshon the son of Amminadab. + +

+

On the second day Nethanel the son of Zuar, prince of Issachar, gave his offering. + +He offered for his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, five male lambs a year old. This was the offering of Nethanel the son of Zuar. + +

+

On the third day Eliab the son of Helon, prince of the children of Zebulun, + +gave his offering: +

+

one silver platter, the weight of which was a hundred and thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Eliab the son of Helon. + +

+

On the fourth day Elizur the son of Shedeur, prince of the children of Reuben, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Elizur the son of Shedeur. + +

+

On the fifth day Shelumiel the son of Zurishaddai, prince of the children of Simeon, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old: this was the offering of Shelumiel the son of Zurishaddai. + +

+

On the sixth day, Eliasaph the son of Deuel, prince of the children of Gad, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Eliasaph the son of Deuel. + +

+

On the seventh day Elishama the son of Ammihud, prince of the children of Ephraim, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Elishama the son of Ammihud. + +

+

On the eighth day Gamaliel the son of Pedahzur, prince of the children of Manasseh, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Gamaliel the son of Pedahzur. + +

+

On the ninth day Abidan the son of Gideoni, prince of the children of Benjamin, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Abidan the son of Gideoni. + +

+

On the tenth day Ahiezer the son of Ammishaddai, prince of the children of Dan, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Ahiezer the son of Ammishaddai. + +

+

On the eleventh day Pagiel the son of Ochran, prince of the children of Asher, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Pagiel the son of Ochran. + +

+

On the twelfth day Ahira the son of Enan, prince of the children of Naphtali, + +gave his offering: +

+

one silver platter, the weight of which was one hundred thirty shekels, +

+

one silver bowl of seventy shekels, according to the shekel of the sanctuary, both of them full of fine flour mixed with oil for a meal offering; + +

+

one golden ladle of ten shekels, full of incense; + +

+

one young bull, +

+

one ram, +

+

one male lamb a year old, for a burnt offering; + +

+

one male goat for a sin offering; + +

+

and for the sacrifice of peace offerings, two head of cattle, five rams, five male goats, and five male lambs a year old. This was the offering of Ahira the son of Enan. + +

+

This was the dedication offering of the altar, on the day when it was anointed, by the princes of Israel: twelve silver platters, twelve silver bowls, twelve golden ladles; + +each silver platter weighing one hundred thirty shekels, and each bowl seventy; all the silver of the vessels two thousand four hundred shekels, according to the shekel of the sanctuary; + +the twelve golden ladles, full of incense, weighing ten shekels apiece, according to the shekel of the sanctuary; all the gold of the ladles weighed one hundred twenty shekels; + +all the cattle for the burnt offering twelve bulls, the rams twelve, the male lambs a year old twelve, and their meal offering; and twelve male goats for a sin offering; + +and all the cattle for the sacrifice of peace offerings: twenty-four bulls, sixty rams, sixty male goats, and sixty male lambs a year old. This was the dedication offering of the altar, after it was anointed. + +

+

When Moses went into the Tent of Meeting to speak with Yahweh, he heard his voice speaking to him from above the mercy seat that was on the ark of the Testimony, from between the two cherubim; and he spoke to him. + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to Aaron, and tell him, ‘When you light the lamps, the seven lamps shall give light in front of the lamp stand.’” + +

+

Aaron did so. He lit its lamps to light the area in front of the lamp stand, as Yahweh commanded Moses. + +This was the workmanship of the lamp stand, beaten work of gold. From its base to its flowers, it was beaten work. He made the lamp stand according to the pattern which Yahweh had shown Moses. + +

+

Yahweh spoke to Moses, saying, + +Take the Levites from among the children of Israel, and cleanse them. + +You shall do this to them to cleanse them: sprinkle the water of cleansing on them, let them shave their whole bodies with a razor, let them wash their clothes, and cleanse themselves. + +Then let them take a young bull and its meal offering, fine flour mixed with oil; and another young bull you shall take for a sin offering. + +You shall present the Levites before the Tent of Meeting. You shall assemble the whole congregation of the children of Israel. + +You shall present the Levites before Yahweh. The children of Israel shall lay their hands on the Levites, + +and Aaron shall offer the Levites before Yahweh for a wave offering on the behalf of the children of Israel, that it may be theirs to do the service of Yahweh. + +

+

The Levites shall lay their hands on the heads of the bulls, and you shall offer the one for a sin offering and the other for a burnt offering to Yahweh, to make atonement for the Levites. + +You shall set the Levites before Aaron and before his sons, and offer them as a wave offering to Yahweh. + +Thus you shall separate the Levites from among the children of Israel, and the Levites shall be mine. + +

+

“After that, the Levites shall go in to do the service of the Tent of Meeting. You shall cleanse them, and offer them as a wave offering. + +For they are wholly given to me from among the children of Israel; instead of all who open the womb, even the firstborn of all the children of Israel, I have taken them to me. + +For all the firstborn among the children of Israel are mine, both man and animal. On the day that I struck all the firstborn in the land of Egypt, I sanctified them for myself. + +I have taken the Levites instead of all the firstborn among the children of Israel. + +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 Tent of Meeting, and to make atonement for the children of Israel, so that there will be no plague among the children of Israel when the children of Israel come near to the sanctuary.” + +

+

Moses, and Aaron, and all the congregation of the children of Israel did so to the Levites. According to all that Yahweh commanded Moses concerning the Levites, so the children of Israel did to them. + +The Levites purified themselves from sin, and they washed their clothes; and Aaron offered them for a wave offering before Yahweh and Aaron made atonement for them to cleanse them. + +After that, the Levites went in to do their service in the Tent of Meeting before Aaron and before his sons: as Yahweh had commanded Moses concerning the Levites, so they did to them. + +

+

Yahweh spoke to Moses, saying, + +This is what is assigned to the Levites: from twenty-five years old and upward they shall go in to wait on the service in the work of the Tent of Meeting; + +and from the age of fifty years they shall retire from doing the work, and shall serve no more, + +but shall assist their brothers in the Tent of Meeting, to perform the duty, and shall perform no service. This is how you shall have the Levites do their duties.” + +

+ + +

Yahweh spoke to Moses in the wilderness of Sinai, in the first month of the second year after they had come out of the land of Egypt, saying, + +“Let the children of Israel keep the Passover in its appointed season. + +On the fourteenth day of this month, at evening, you shall keep it in its appointed season. You shall keep it according to all its statutes and according to all its ordinances.” + +

+

Moses told the children of Israel that they should keep the Passover. + +They kept the Passover in the first month, on the fourteenth day of the month at evening, in the wilderness of Sinai. According to all that Yahweh commanded Moses, so the children of Israel did. + +There were certain men who were unclean because of the dead body of a man, so that they could not keep the Passover on that day, and they came before Moses and Aaron on that day. + +Those men said to him, “We are unclean because of the dead body of a man. Why are we kept back, that we may not offer the offering of Yahweh in its appointed season among the children of Israel?” + +

+

Moses answered them, “Wait, that I may hear what Yahweh will command concerning you.” + +

+

Yahweh spoke to Moses, saying, + +Say to the children of Israel, ‘If any man of you or of your generations is unclean by reason of a dead body, or is on a journey far away, he shall still keep the Passover to Yahweh. + +In the second month, on the fourteenth day at evening they shall keep it; they shall eat it with unleavened bread and bitter herbs. + +They shall leave none of it until the morning, nor break a bone of it. According to all the statute of the Passover they shall keep it. + +But the man who is clean, and is not on a journey, and fails to keep the Passover, that soul shall be cut off from his people. Because he didn’t offer the offering of Yahweh in its appointed season, that man shall bear his sin. + +

+

“‘If a foreigner lives among you and desires to keep the Passover to Yahweh, then he shall do so according to the statute of the Passover, and according to its ordinance. You shall have one statute, both for the foreigner and for him who is born in the land.’” + +

+

On the day that the tabernacle was raised up, the cloud covered the tabernacle, even the Tent of the Testimony. At evening it was over the tabernacle, as it were the appearance of fire, until morning. + +So it was continually. The cloud covered it, and the appearance of fire by night. + +Whenever the cloud was taken up from over the Tent, then after that the children of Israel traveled; and in the place where the cloud remained, there the children of Israel encamped. + +At the commandment of Yahweh, the children of Israel traveled, and at the commandment of Yahweh they encamped. As long as the cloud remained on the tabernacle they remained encamped. + +When the cloud stayed on the tabernacle many days, then the children of Israel kept Yahweh’s command, and didn’t travel. + +Sometimes the cloud was a few days on the tabernacle; then according to the commandment of Yahweh they remained encamped, and according to the commandment of Yahweh they traveled. + +Sometimes the cloud was from evening until morning; and when the cloud was taken up in the morning, they traveled; or by day and by night, when the cloud was taken up, they traveled. + +Whether it was two days, or a month, or a year that the cloud stayed on the tabernacle, remaining on it, the children of Israel remained encamped, and didn’t travel; but when it was taken up, they traveled. + +At the commandment of Yahweh they encamped, and at the commandment of Yahweh they traveled. They kept Yahweh’s command, at the commandment of Yahweh by Moses. + +

+ + +

Yahweh spoke to Moses, saying, + +Make two trumpets of silver. You shall make them of beaten work. You shall use them for the calling of the congregation and for the journeying of the camps. + +When they blow them, all the congregation shall gather themselves to you at the door of the Tent of Meeting. + +If they blow just one, then the princes, the heads of the thousands of Israel, shall gather themselves to you. + +When you blow an alarm, the camps that lie on the east side shall go forward. + +When you blow an alarm the second time, the camps that lie on the south side shall go forward. They shall blow an alarm for their journeys. + +But when the assembly is to be gathered together, you shall blow, but you shall not sound an alarm. + +

+

The sons of Aaron, the priests, shall blow the trumpets. This shall be to you for a statute forever throughout your generations. + +When you go to war in your land against the adversary who oppresses you, then you shall sound an alarm with the trumpets. Then you will be remembered before Yahweh your God, and you will be saved from your enemies. + +

+

Also in the day of your gladness, and in your set feasts, and in the beginnings of your months, you shall blow the trumpets over your burnt offerings, and over the sacrifices of your peace offerings; and they shall be to you for a memorial before your God. I am Yahweh your God.” + +

+

In the second year, in the second month, on the twentieth day of the month, the cloud was taken up from over the tabernacle of the covenant. + +The children of Israel went forward on their journeys out of the wilderness of Sinai; and the cloud stayed in the wilderness of Paran. + +They first went forward according to the commandment of Yahweh by Moses. + +

+

First, the standard of the camp of the children of Judah went forward according to their armies. Nahshon the son of Amminadab was over his army. + +Nethanel the son of Zuar was over the army of the tribe of the children of Issachar. + +Eliab the son of Helon was over the army of the tribe of the children of Zebulun. + +The tabernacle was taken down; and the sons of Gershon and the sons of Merari, who bore the tabernacle, went forward. + +The standard of the camp of Reuben went forward according to their armies. Elizur the son of Shedeur was over his army. + +Shelumiel the son of Zurishaddai was over the army of the tribe of the children of Simeon. + +Eliasaph the son of Deuel was over the army of the tribe of the children of Gad. + +

+

The Kohathites set forward, bearing the sanctuary. The others set up the tabernacle before they arrived. + +

+

The standard of the camp of the children of Ephraim set forward according to their armies. Elishama the son of Ammihud was over his army. + +Gamaliel the son of Pedahzur was over the army of the tribe of the children of Manasseh. + +Abidan the son of Gideoni was over the army of the tribe of the children of Benjamin. + +

+

The standard of the camp of the children of Dan, which was the rear guard of all the camps, set forward according to their armies. Ahiezer the son of Ammishaddai was over his army. + +Pagiel the son of Ochran was over the army of the tribe of the children of Asher. + +Ahira the son of Enan was over the army of the tribe of the children of Naphtali. + +Thus were the travels of the children of Israel according to their armies; and they went forward. + +

+

Moses said to Hobab, the son of Reuel the Midianite, Mosesfather-in-law, “We are journeying to the place of which Yahweh said, ‘I will give it to you.’ Come with us, and we will treat you well; for Yahweh has spoken good concerning Israel.” + +

+

He said to him, “I will not go; but I will depart to my own land, and to my relatives.” + +

+

Moses said, “Don’t leave us, please; because you know how we are to encamp in the wilderness, and you can be our eyes. + +It shall be, if you go with usyes, it shall bethat whatever good Yahweh does to us, we will do the same to you.” + +

+

They set forward from the Mount of Yahweh three daysjourney. The ark of Yahweh’s covenant went before them three daysjourney, to seek out a resting place for them. + +The cloud of Yahweh was over them by day, when they set forward from the camp. + +When the ark went forward, Moses said, “Rise up, Yahweh, and let your enemies be scattered! Let those who hate you flee before you!” + +When it rested, he said, “Return, Yahweh, to the ten thousands of the thousands of Israel.” + +

+ + +

The people were complaining in the ears of Yahweh. When Yahweh heard it, his anger burned; and Yahweh’s fire burned among them, and consumed some of the outskirts of the camp. + +The people cried to Moses; and Moses prayed to Yahweh, and the fire abated. + +The name of that place was called Taberah,11:3 +Taberah means “burning” + because Yahweh’s fire burned among them. + +

+

The mixed multitude that was among them lusted exceedingly; and the children of Israel also wept again, and said, “Who will give us meat to eat? + +We remember the fish, which we ate in Egypt for nothing; the cucumbers, and the melons, and the leeks, and the onions, and the garlic; + +but now we have lost our appetite. There is nothing at all except this manna to look at.” + +The manna was like coriander seed, and it looked like bdellium.11:7 +Bdellium is a resin extracted from certain African trees. + +The people went around, gathered it, and ground it in mills, or beat it in mortars, and boiled it in pots, and made cakes of it. Its taste was like the taste of fresh oil. + +When the dew fell on the camp in the night, the manna fell on it. + +

+

Moses heard the people weeping throughout their families, every man at the door of his tent; and Yahweh’s anger burned greatly; and Moses was displeased. + +Moses said to Yahweh, “Why have you treated your servant so badly? Why haven’t I found favor in your sight, that you lay the burden of all this people on me? + +Have I conceived all this people? Have I brought them out, that you should tell me, ‘Carry them in your bosom, as a nurse carries a nursing infant, to the land which you swore to their fathers’? + +Where could I get meat to give all these people? For they weep before me, saying, ‘Give us meat, that we may eat.’ + +I am not able to bear all this people alone, because it is too heavy for me. + +If you treat me this way, please kill me right now, if I have found favor in your sight; and don’t let me see my wretchedness.” + +

+

Yahweh said to Moses, “Gather to me seventy men of the elders of Israel, whom you know to be the elders of the people and officers over them; and bring them to the Tent of Meeting, that they may stand there with you. + +I will come down and talk with you there. I will take of the Spirit which is on you, and will put it on them; and they shall bear the burden of the people with you, that you don’t bear it yourself alone. + +

+

“Say to the people, ‘Sanctify yourselves in preparation for tomorrow, and you will eat meat; for you have wept in the ears of Yahweh, saying, “Who will give us meat to eat? For it was well with us in Egypt.” Therefore Yahweh will give you meat, and you will eat. + +You will not eat just one day, or two days, or five days, or ten days, or twenty days, + +but a whole month, until it comes out at your nostrils, and it is loathsome to you; because you have rejected Yahweh who is among you, and have wept before him, saying, “Why did we come out of Egypt?”’” + +

+

Moses said, “The people, among whom I am, are six hundred thousand men on foot; and you have said, ‘I will give them meat, that they may eat a whole month.’ + +Shall flocks and herds be slaughtered for them, to be sufficient for them? Shall all the fish of the sea be gathered together for them, to be sufficient for them?” + +

+

Yahweh said to Moses, “Has Yahweh’s hand grown short? Now you will see whether my word will happen to you or not.” + +

+

Moses went out, and told the people Yahweh’s words; and he gathered seventy men of the elders of the people, and set them around the Tent. + +Yahweh came down in the cloud, and spoke to him, and took of the Spirit that was on him, and put it on the seventy elders. When the Spirit rested on them, they prophesied, but they did so no more. + +But two men remained in the camp. The name of one was Eldad, and the name of the other Medad; and the Spirit rested on them. They were of those who were written, but had not gone out to the Tent; and they prophesied in the camp. + +A young man ran, and told Moses, and said, “Eldad and Medad are prophesying in the camp!” + +

+

Joshua the son of Nun, the servant of Moses, one of his chosen men, answered, “My lord Moses, forbid them!” + +

+

Moses said to him, “Are you jealous for my sake? I wish that all Yahweh’s people were prophets, that Yahweh would put his Spirit on them!” + +

+

Moses went into the camp, he and the elders of Israel. + +A wind from Yahweh went out and brought quails from the sea, and let them fall by the camp, about a day’s journey on this side, and a day’s journey on the other side, around the camp, and about two cubits11:31 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. above the surface of the earth. + +The people rose up all that day, and all of that night, and all the next day, and gathered the quails. He who gathered least gathered ten homers;11:32 +1 homer is about 220 liters or 6 bushels and they spread them all out for themselves around the camp. + +While the meat was still between their teeth, before it was chewed, Yahweh’s anger burned against the people, and Yahweh struck the people with a very great plague. + +The name of that place was called Kibroth Hattaavah,11:34 +Kibroth Hattaavah means “graves of lust” because there they buried the people who lusted. + +

+

From Kibroth Hattaavah the people traveled to Hazeroth; and they stayed at Hazeroth. + +

+ + +

Miriam and Aaron spoke against Moses because of the Cushite woman whom he had married; for he had married a Cushite woman. + +They said, “Has Yahweh indeed spoken only with Moses? Hasn’t he spoken also with us?” And Yahweh heard it. + +

+

Now the man Moses was very humble, more than all the men who were on the surface of the earth. + +Yahweh spoke suddenly to Moses, to Aaron, and to Miriam, “You three come out to the Tent of Meeting!” +

+

The three of them came out. + +Yahweh came down in a pillar of cloud, and stood at the door of the Tent, and called Aaron and Miriam; and they both came forward. + +He said, “Now hear my words. If there is a prophet among you, I, Yahweh, will make myself known to him in a vision. I will speak with him in a dream. + +My servant Moses is not so. He is faithful in all my house. + +With him, I will speak mouth to mouth, even plainly, and not in riddles; and he shall see Yahweh’s form. Why then were you not afraid to speak against my servant, against Moses?” + +Yahweh’s anger burned against them; and he departed. + +

+

The cloud departed from over the Tent; and behold, Miriam was leprous, as white as snow. Aaron looked at Miriam, and behold, she was leprous. + +

+

Aaron said to Moses, “Oh, my lord, please don’t count this sin against us, in which we have done foolishly, and in which we have sinned. + +Let her not, I pray, be as one dead, of whom the flesh is half consumed when he comes out of his mother’s womb.” + +

+

Moses cried to Yahweh, saying, “Heal her, God, I beg you!” + +

+

Yahweh said to Moses, “If her father had but spit in her face, shouldn’t she be ashamed seven days? Let her be shut up outside of the camp seven days, and after that she shall be brought in again.” + +

+

Miriam was shut up outside of the camp seven days, and the people didn’t travel until Miriam was brought in again. + +Afterward the people traveled from Hazeroth, and encamped in the wilderness of Paran. + +

+ + +

Yahweh spoke to Moses, saying, + +Send men, that they may spy out the land of Canaan, which I give to the children of Israel. Of every tribe of their fathers, you shall send a man, every one a prince among them.” + +

+

Moses sent them from the wilderness of Paran according to the commandment of Yahweh. All of them were men who were heads of the children of Israel. + +These were their names: +

+

Of the tribe of Reuben, Shammua the son of Zaccur. + +

+

Of the tribe of Simeon, Shaphat the son of Hori. + +

+

Of the tribe of Judah, Caleb the son of Jephunneh. + +

+

Of the tribe of Issachar, Igal the son of Joseph. + +

+

Of the tribe of Ephraim, Hoshea the son of Nun. + +

+

Of the tribe of Benjamin, Palti the son of Raphu. + +

+

Of the tribe of Zebulun, Gaddiel the son of Sodi. + +

+

Of the tribe of Joseph, of the tribe of Manasseh, Gaddi the son of Susi. + +

+

Of the tribe of Dan, Ammiel the son of Gemalli. + +

+

Of the tribe of Asher, Sethur the son of Michael. + +

+

Of the tribe of Naphtali, Nahbi the son of Vophsi. + +

+

Of the tribe of Gad, Geuel the son of Machi. + +

+

These are the names of the men who Moses sent to spy out the land. Moses called Hoshea the son of Nun Joshua. + +Moses sent them to spy out the land of Canaan, and said to them, “Go up this way by the South, and go up into the hill country. + +See the land, what it is; and the people who dwell therein, whether they are strong or weak, whether they are few or many; + +and what the land is that they dwell in, whether it is good or bad; and what cities they are that they dwell in, whether in camps, or in strongholds; + +and what the land is, whether it is fertile or poor, whether there is wood therein, or not. Be courageous, and bring some of the fruit of the land.” Now the time was the time of the first-ripe grapes. + +

+

So they went up, and spied out the land from the wilderness of Zin to Rehob, to the entrance of Hamath. + +They went up by the South, and came to Hebron; and Ahiman, Sheshai, and Talmai, the children of Anak, were there. (Now Hebron was built seven years before Zoan in Egypt.) + +They came to the valley of Eshcol, and cut down from there a branch with one cluster of grapes, and they bore it on a staff between two. They also brought some of the pomegranates and figs. + +That place was called the valley of Eshcol, because of the cluster which the children of Israel cut down from there. + +They returned from spying out the land at the end of forty days. + +They went and came to Moses, to Aaron, and to all the congregation of the children of Israel, to the wilderness of Paran, to Kadesh; and brought back word to them and to all the congregation. They showed them the fruit of the land. + +They told him, and said, “We came to the land where you sent us. Surely it flows with milk and honey, and this is its fruit. + +However, the people who dwell in the land are strong, and the cities are fortified and very large. Moreover, we saw the children of Anak there. + +Amalek dwells in the land of the South. The Hittite, the Jebusite, and the Amorite dwell in the hill country. The Canaanite dwells by the sea, and along the side of the Jordan.” + +

+

Caleb stilled the people before Moses, and said, “Let’s go up at once, and possess it; for we are well able to overcome it!” + +

+

But the men who went up with him said, “We aren’t able to go up against the people; for they are stronger than we.” + +They brought up an evil report of the land which they had spied out to the children of Israel, saying, “The land, through which we have gone to spy it out, is a land that eats up its inhabitants; and all the people who we saw in it are men of great stature. + +There we saw the Nephilim,13:33 +or, giants the sons of Anak, who come from the Nephilim.13:33 +or, giants We were in our own sight as grasshoppers, and so we were in their sight.” + +

+ + +

All the congregation lifted up their voice, and cried; and the people wept that night. + +All the children of Israel murmured against Moses and against Aaron. The whole congregation said to them, “We wish that we had died in the land of Egypt, or that we had died in this wilderness! + +Why does Yahweh bring us to this land, to fall by the sword? Our wives and our little ones will be captured or killed! Wouldn’t it be better for us to return into Egypt?” + +They said to one another, “Let’s choose a leader, and let’s return into Egypt.” + +

+

Then Moses and Aaron fell on their faces before all the assembly of the congregation of the children of Israel. + +

+

Joshua the son of Nun and Caleb the son of Jephunneh, who were of those who spied out the land, tore their clothes. + +They spoke to all the congregation of the children of Israel, saying, “The land, which we passed through to spy it out, is an exceedingly good land. + +If Yahweh delights in us, then he will bring us into this land, and give it to us: a land which flows with milk and honey. + +Only don’t rebel against Yahweh, neither fear the people of the land; for they are bread for us. Their defense is removed from over them, and Yahweh is with us. Don’t fear them.” + +

+

But all the congregation threatened to stone them with stones. +

+

Yahweh’s glory appeared in the Tent of Meeting to all the children of Israel. + +Yahweh said to Moses, “How long will this people despise me? How long will they not believe in me, for all the signs which I have worked among them? + +I will strike them with the pestilence, and disinherit them, and will make of you a nation greater and mightier than they.” + +

+

Moses said to Yahweh, “Then the Egyptians will hear it; for you brought up this people in your might from among them. + +They will tell it to the inhabitants of this land. They have heard that you Yahweh are among this people; for you Yahweh are seen face to face, and your cloud stands over them, and you go before them, in a pillar of cloud by day, and in a pillar of fire by night. + +Now if you killed this people as one man, then the nations which have heard the fame of you will speak, saying, + +Because Yahweh was not able to bring this people into the land which he swore to them, therefore he has slain them in the wilderness.’ + +Now please let the power of the Lord14:17 +The word translated “Lord” is “Adonai.” be great, according as you have spoken, saying, + +Yahweh is slow to anger, and abundant in loving kindness, forgiving iniquity and disobedience; and he will by no means clear the guilty, visiting the iniquity of the fathers on the children, on the third and on the fourth generation.’ + +Please pardon the iniquity of this people according to the greatness of your loving kindness, and just as you have forgiven this people, from Egypt even until now.” + +

+

Yahweh said, “I have pardoned according to your word; + +but in very deed—as I live, and as all the earth shall be filled with Yahweh’s glory— + +because all those men who have seen my glory and my signs, which I worked in Egypt and in the wilderness, yet have tempted me these ten times, and have not listened to my voice; + +surely they shall not see the land which I swore to their fathers, neither shall any of those who despised me see it. + +But my servant Caleb, because he had another spirit with him, and has followed me fully, him I will bring into the land into which he went. His offspring shall possess it. + +Since the Amalekite and the Canaanite dwell in the valley, tomorrow turn and go into the wilderness by the way to the Red Sea.” + +Yahweh spoke to Moses and to Aaron, saying, + +How long shall I bear with this evil congregation that complain against me? I have heard the complaints of the children of Israel, which they complain against me. + +Tell them, ‘As I live, says Yahweh, surely as you have spoken in my ears, so I will do to you. + +Your dead bodies shall fall in this wilderness; and all who were counted of you, according to your whole number, from twenty years old and upward, who have complained against me, + +surely you shall not come into the land concerning which I swore that I would make you dwell therein, except Caleb the son of Jephunneh, and Joshua the son of Nun. + +But I will bring in your little ones that you said should be captured or killed, and they shall know the land which you have rejected. + +But as for you, your dead bodies shall fall in this wilderness. + +Your children shall be wanderers in the wilderness forty years, and shall bear your prostitution, until your dead bodies are consumed in the wilderness. + +After the number of the days in which you spied out the land, even forty days, for every day a year, you will bear your iniquities, even forty years, and you will know my alienation.’ + +I, Yahweh, have spoken. I will surely do this to all this evil congregation who are gathered together against me. In this wilderness they shall be consumed, and there they shall die.” + +

+

The men whom Moses sent to spy out the land, who returned and made all the congregation to murmur against him by bringing up an evil report against the land, + +even those men who brought up an evil report of the land, died by the plague before Yahweh. + +But Joshua the son of Nun and Caleb the son of Jephunneh remained alive of those men who went to spy out the land. + +

+

Moses told these words to all the children of Israel, and the people mourned greatly. + +They rose up early in the morning and went up to the top of the mountain, saying, “Behold, we are here, and will go up to the place which Yahweh has promised; for we have sinned.” + +

+

Moses said, “Why now do you disobey the commandment of Yahweh, since it shall not prosper? + +Don’t go up, for Yahweh isn’t among you; that way you won’t be struck down before your enemies. + +For there the Amalekite and the Canaanite are before you, and you will fall by the sword because you turned back from following Yahweh; therefore Yahweh will not be with you.” + +

+

But they presumed to go up to the top of the mountain. Nevertheless, the ark of Yahweh’s covenant and Moses didn’t depart out of the camp. + +Then the Amalekites came down, and the Canaanites who lived in that mountain, and struck them and beat them down even to Hormah. + +

+ + +

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them, ‘When you have come into the land of your habitations, which I give to you, + +and will make an offering by fire to Yahweha burnt offering, or a sacrifice, to accomplish a vow, or as a free will offering, or in your set feasts, to make a pleasant aroma to Yahweh, of the herd, or of the flock— + +then he who offers his offering shall offer to Yahweh a meal offering of one tenth of an ephah15:4 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour mixed with one fourth of a hin15:4 +A hin is about 6.5 liters or 1.7 gallons. of oil. + +You shall prepare wine for the drink offering, one fourth of a hin, with the burnt offering or for the sacrifice, for each lamb. + +

+

“‘For a ram, you shall prepare for a meal offering two tenths of an ephah15:6 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour mixed with the third part of a hin of oil; + +and for the drink offering you shall offer the third part of a hin of wine, of a pleasant aroma to Yahweh. + +When you prepare a bull for a burnt offering or for a sacrifice, to accomplish a vow, or for peace offerings to Yahweh, + +then he shall offer with the bull a meal offering of three tenths of an ephah15:9 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour mixed with half a hin of oil; + +and you shall offer for the drink offering half a hin of wine, for an offering made by fire, of a pleasant aroma to Yahweh. + +Thus it shall be done for each bull, for each ram, for each of the male lambs, or of the young goats. + +According to the number that you shall prepare, so you shall do to everyone according to their number. + +

+

“‘All who are native-born shall do these things in this way, in offering an offering made by fire, of a pleasant aroma to Yahweh. + +If a stranger lives as a foreigner with you, or whoever may be among you throughout your generations, and will offer an offering made by fire, of a pleasant aroma to Yahweh, as you do, so he shall do. + +For the assembly, there shall be one statute for you and for the stranger who lives as a foreigner, a statute forever throughout your generations. As you are, so the foreigner shall be before Yahweh. + +One law and one ordinance shall be for you and for the stranger who lives as a foreigner with you.’” + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them, ‘When you come into the land where I bring you, + +then it shall be that when you eat of the bread of the land, you shall offer up a wave offering to Yahweh. + +Of the first of your dough you shall offer up a cake for a wave offering. As the wave offering of the threshing floor, so you shall heave it. + +Of the first of your dough, you shall give to Yahweh a wave offering throughout your generations. + +

+

“‘When you err, and don’t observe all these commandments which Yahweh has spoken to Moses— + +even all that Yahweh has commanded you by Moses, from the day that Yahweh gave commandment and onward throughout your generations— + +then it shall be, if it was done unwittingly, without the knowledge of the congregation, that all the congregation shall offer one young bull for a burnt offering, for a pleasant aroma to Yahweh, with its meal offering and its drink offering, according to the ordinance, and one male goat for a sin offering. + +The priest shall make atonement for all the congregation of the children of Israel, and they shall be forgiven; for it was an error, and they have brought their offering, an offering made by fire to Yahweh, and their sin offering before Yahweh, for their error. + +All the congregation of the children of Israel shall be forgiven, as well as the stranger who lives as a foreigner among them; for with regard to all the people, it was done unwittingly. + +

+

“‘If a person sins unwittingly, then he shall offer a female goat a year old for a sin offering. + +The priest shall make atonement for the soul who errs when he sins unwittingly before Yahweh. He shall make atonement for him; and he shall be forgiven. + +You shall have one law for him who does anything unwittingly, for him who is native-born among the children of Israel, and for the stranger who lives as a foreigner among them. + +

+

“‘But the soul who does anything with a high hand, whether he is native-born or a foreigner, blasphemes Yahweh. That soul shall be cut off from among his people. + +Because he has despised Yahweh’s word, and has broken his commandment, that soul shall be utterly cut off. His iniquity shall be on him.’” + +

+

While the children of Israel were in the wilderness, they found a man gathering sticks on the Sabbath day. + +Those who found him gathering sticks brought him to Moses and Aaron, and to all the congregation. + +They put him in custody, because it had not been declared what should be done to him. + +

+

Yahweh said to Moses, “The man shall surely be put to death. All the congregation shall stone him with stones outside of the camp.” + +All the congregation brought him outside of the camp, and stoned him to death with stones, as Yahweh commanded Moses. + +

+

Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them that they should make themselves fringes15:38 +or, tassels (Hebrew צִיצִ֛ת) on the borders of their garments throughout their generations, and that they put on the fringe15:38 +or, tassel of each border a cord of blue. + +It shall be to you for a fringe,15:39 +or, tassel that you may see it, and remember all Yahweh’s commandments, and do them; and that you don’t follow your own heart and your own eyes, after which you used to play the prostitute; + +so that you may remember and do all my commandments, and be holy to your God. + +I am Yahweh your God, who brought you out of the land of Egypt, to be your God: I am Yahweh your God.” + +

+ + +

Now Korah, the son of Izhar, the son of Kohath, the son of Levi, with Dathan and Abiram, the sons of Eliab, and On, the son of Peleth, sons of Reuben, took some men. + +They rose up before Moses, with some of the children of Israel, two hundred fifty princes of the congregation, called to the assembly, men of renown. + +They assembled themselves together against Moses and against Aaron, and said to them, “You take too much on yourself, since all the congregation are holy, everyone of them, and Yahweh is among them! Why do you lift yourselves up above Yahweh’s assembly?” + +

+

When Moses heard it, he fell on his face. + +He said to Korah and to all his company, “In the morning, Yahweh will show who are his, and who is holy, and will cause him to come near to him. Even him whom he shall choose, he will cause to come near to him. + +Do this: have Korah and all his company take censers, + +put fire in them, and put incense on them before Yahweh tomorrow. It shall be that the man whom Yahweh chooses, he shall be holy. You have gone too far, you sons of Levi!” + +

+

Moses said to Korah, “Hear now, you sons of Levi! + +Is it a small thing to you that the God of Israel has separated you from the congregation of Israel, to bring you near to himself, to do the service of Yahweh’s tabernacle, and to stand before the congregation to minister to them; + +and that he has brought you near, and all your brothers the sons of Levi with you? Do you seek the priesthood also? + +Therefore you and all your company have gathered together against Yahweh! What is Aaron that you complain against him?” + +

+

Moses sent to call Dathan and Abiram, the sons of Eliab; and they said, “We won’t come up! + +Is it a small thing that you have brought us up out of a land flowing with milk and honey, to kill us in the wilderness, but you must also make yourself a prince over us? + +Moreover you haven’t brought us into a land flowing with milk and honey, nor given us inheritance of fields and vineyards. Will you put out the eyes of these men? We won’t come up.” + +

+

Moses was very angry, and said to Yahweh, “Don’t respect their offering. I have not taken one donkey from them, neither have I hurt one of them.” + +

+

Moses said to Korah, “You and all your company go before Yahweh, you, and they, and Aaron, tomorrow. + +Each man take his censer and put incense on it, and each man bring before Yahweh his censer, two hundred fifty censers; you also, and Aaron, each with his censer.” + +

+

They each took his censer, and put fire in it, and laid incense on it, and stood at the door of the Tent of Meeting with Moses and Aaron. + +Korah assembled all the congregation opposite them to the door of the Tent of Meeting. +

+

Yahweh’s glory appeared to all the congregation. + +Yahweh spoke to Moses and to Aaron, saying, + +“Separate yourselves from among this congregation, that I may consume them in a moment!” + +

+

They fell on their faces, and said, “God, the God of the spirits of all flesh, shall one man sin, and will you be angry with all the congregation?” + +

+

Yahweh spoke to Moses, saying, + +Speak to the congregation, saying, ‘Get away from around the tent of Korah, Dathan, and Abiram!’” + +

+

Moses rose up and went to Dathan and Abiram; and the elders of Israel followed him. + +He spoke to the congregation, saying, “Depart, please, from the tents of these wicked men, and touch nothing of theirs, lest you be consumed in all their sins!” + +

+

So they went away from the tent of Korah, Dathan, and Abiram, on every side. Dathan and Abiram came out, and stood at the door of their tents with their wives, their sons, and their little ones. + +

+

Moses said, “Hereby you shall know that Yahweh has sent me to do all these works; for they are not from my own mind. + +If these men die the common death of all men, or if they experience what all men experience, then Yahweh hasn’t sent me. + +But if Yahweh makes a new thing, and the ground opens its mouth, and swallows them up with all that belong to them, and they go down alive into Sheol,16:30 +Sheol is the place of the dead. then you shall understand that these men have despised Yahweh.” + +

+

As he finished speaking all these words, the ground that was under them split apart. + +The earth opened its mouth and swallowed them up with their households, all of Korah’s men, and all their goods. + +So they, and all that belonged to them went down alive into Sheol.16:33 +Sheol is the place of the dead. The earth closed on them, and they perished from among the assembly. + +All Israel that were around them fled at their cry; for they said, “Lest the earth swallow us up!” + +Fire came out from Yahweh, and devoured the two hundred fifty men who offered the incense. + +

+

Yahweh spoke to Moses, saying, + +“Speak to Eleazar the son of Aaron the priest, that he take up the censers out of the burning, and scatter the fire away from the camp; for they are holy, + +even the censers of those who sinned against their own lives. Let them be beaten into plates for a covering of the altar, for they offered them before Yahweh. Therefore they are holy. They shall be a sign to the children of Israel.” + +

+

Eleazar the priest took the bronze censers which those who were burned had offered; and they beat them out for a covering of the altar, + +to be a memorial to the children of Israel, to the end that no stranger who isn’t of the offspring of Aaron, would come near to burn incense before Yahweh, that he not be as Korah and as his company; as Yahweh spoke to him by Moses. + +

+

But on the next day all the congregation of the children of Israel complained against Moses and against Aaron, saying, “You have killed Yahweh’s people!” + +

+

When the congregation was assembled against Moses and against Aaron, they looked toward the Tent of Meeting. Behold, the cloud covered it, and Yahweh’s glory appeared. + +Moses and Aaron came to the front of the Tent of Meeting. + +Yahweh spoke to Moses, saying, + +“Get away from among this congregation, that I may consume them in a moment!” They fell on their faces. + +

+

Moses said to Aaron, “Take your censer, put fire from the altar in it, lay incense on it, carry it quickly to the congregation, and make atonement for them; for wrath has gone out from Yahweh! The plague has begun.” + +

+

Aaron did as Moses said, and ran into the middle of the assembly. The plague had already begun among the people. He put on the incense, and made atonement for the people. + +He stood between the dead and the living; and the plague was stayed. + +Now those who died by the plague were fourteen thousand seven hundred, in addition to those who died about the matter of Korah. + +Aaron returned to Moses to the door of the Tent of Meeting, and the plague was stopped. + +

+ + +

Yahweh spoke to Moses, saying, + +“Speak to the children of Israel, and take rods from them, one for each fathers’ house, of all their princes according to their fathers’ houses, twelve rods. Write each man’s name on his rod. + +You shall write Aaron’s name on Levi’s rod. There shall be one rod for each head of their fathers’ houses. + +You shall lay them up in the Tent of Meeting before the covenant, where I meet with you. + +It shall happen that the rod of the man whom I shall choose shall bud. I will make the murmurings of the children of Israel, which they murmur against you, cease from me.” + +

+

Moses spoke to the children of Israel; and all their princes gave him rods, for each prince one, according to their fathers’ houses, a total of twelve rods. Aaron’s rod was among their rods. + +Moses laid up the rods before Yahweh in the Tent of the Testimony. + +

+

On the next day, Moses went into the Tent of the Testimony; and behold, Aaron’s rod for the house of Levi had sprouted, budded, produced blossoms, and bore ripe almonds. + +Moses brought out all the rods from before Yahweh to all the children of Israel. They looked, and each man took his rod. + +

+

Yahweh said to Moses, “Put back the rod of Aaron before the covenant, to be kept for a token against the children of rebellion; that you may make an end of their complaining against me, that they not die.” + +Moses did so. As Yahweh commanded him, so he did. + +

+

The children of Israel spoke to Moses, saying, “Behold, we perish! We are undone! We are all undone! + +Everyone who keeps approaching Yahweh’s tabernacle, dies! Will we all perish?” + +

+ + +

Yahweh said to Aaron, “You and your sons and your fathers’ house with you shall bear the iniquity of the sanctuary; and you and your sons with you shall bear the iniquity of your priesthood. + +Bring your brothers also, the tribe of Levi, the tribe of your father, near with you, that they may be joined to you, and minister to you; but you and your sons with you shall be before the Tent of the Testimony. + +They shall keep your commands and the duty of the whole Tent; only they shall not come near to the vessels of the sanctuary and to the altar, that they not die, neither they nor you. + +They shall be joined to you and keep the responsibility of the Tent of Meeting, for all the service of the Tent. A stranger shall not come near to you. + +

+

You shall perform the duty of the sanctuary and the duty of the altar, that there be no more wrath on the children of Israel. + +Behold, I myself have taken your brothers the Levites from among the children of Israel. They are a gift to you, dedicated to Yahweh, to do the service of the Tent of Meeting. + +You and your sons with you shall keep your priesthood for everything of the altar, and for that within the veil. You shall serve. I give you the service of the priesthood as a gift. The stranger who comes near shall be put to death.” + +

+

Yahweh spoke to Aaron, “Behold, I myself have given you the command of my wave offerings, even all the holy things of the children of Israel. I have given them to you by reason of the anointing, and to your sons, as a portion forever. + +This shall be yours of the most holy things from the fire: every offering of theirs, even every meal offering of theirs, and every sin offering of theirs, and every trespass offering of theirs, which they shall give to me, shall be most holy for you and for your sons. + +You shall eat of it like the most holy things. Every male shall eat of it. It shall be holy to you. + +

+

This is yours, too: the wave offering of their gift, even all the wave offerings of the children of Israel. I have given them to you, and to your sons and to your daughters with you, as a portion forever. Everyone who is clean in your house shall eat of it. + +

+

I have given to you all the best of the oil, all the best of the vintage, and of the grain, the first fruits of them which they give to Yahweh. + +The first-ripe fruits of all that is in their land, which they bring to Yahweh, shall be yours. Everyone who is clean in your house shall eat of it. + +

+

Everything devoted in Israel shall be yours. + +Everything that opens the womb, of all flesh which they offer to Yahweh, both of man and animal, shall be yours. Nevertheless, you shall surely redeem the firstborn of man, and you shall redeem the firstborn of unclean animals. + +You shall redeem those who are to be redeemed of them from a month old, according to your estimation, for five shekels of money, according to the shekel18:16 +A shekel is about 10 grams or about 0.35 ounces. of the sanctuary, which weighs twenty gerahs.18:16 +A gerah is about 0.5 grams or about 7.7 grains. + +

+

But you shall not redeem the firstborn of a cow, or the firstborn of a sheep, or the firstborn of a goat. They are holy. You shall sprinkle their blood on the altar, and shall burn their fat for an offering made by fire, for a pleasant aroma to Yahweh. + +Their meat shall be yours, as the wave offering breast and as the right thigh, it shall be yours. + +All the wave offerings of the holy things which the children of Israel offer to Yahweh, I have given you and your sons and your daughters with you, as a portion forever. It is a covenant of salt forever before Yahweh to you and to your offspring with you.” + +

+

Yahweh said to Aaron, “You shall have no inheritance in their land, neither shall you have any portion among them. I am your portion and your inheritance among the children of Israel. + +

+

To the children of Levi, behold, I have given all the tithe in Israel for an inheritance, in return for their service which they serve, even the service of the Tent of Meeting. + +Henceforth the children of Israel shall not come near the Tent of Meeting, lest they bear sin, and die. + +But the Levites shall do the service of the Tent of Meeting, and they shall bear their iniquity. It shall be a statute forever throughout your generations. Among the children of Israel, they shall have no inheritance. + +For the tithe of the children of Israel, which they offer as a wave offering to Yahweh, I have given to the Levites for an inheritance. Therefore I have said to them, ‘Among the children of Israel they shall have no inheritance.’” + +

+

Yahweh spoke to Moses, saying, + +Moreover you shall speak to the Levites, and tell them, ‘When you take of the children of Israel the tithe which I have given you from them for your inheritance, then you shall offer up a wave offering of it for Yahweh, a tithe of the tithe. + +Your wave offering shall be credited to you, as though it were the grain of the threshing floor, and as the fullness of the wine press. + +Thus you also shall offer a wave offering to Yahweh of all your tithes, which you receive of the children of Israel; and of it you shall give Yahweh’s wave offering to Aaron the priest. + +Out of all your gifts, you shall offer every wave offering to Yahweh, of all its best parts, even the holy part of it.’ + +

+

“Therefore you shall tell them, ‘When you heave its best from it, then it shall be credited to the Levites as the increase of the threshing floor, and as the increase of the wine press. + +You may eat it anywhere, you and your households, for it is your reward in return for your service in the Tent of Meeting. + +You shall bear no sin by reason of it, when you have heaved from it its best. You shall not profane the holy things of the children of Israel, that you not die.’” + +

+ + +

Yahweh spoke to Moses and to Aaron, saying, + +This is the statute of the law which Yahweh has commanded. Tell the children of Israel to bring you a red heifer without spot, in which is no defect, and which was never yoked. + +You shall give her to Eleazar the priest, and he shall bring her outside of the camp, and one shall kill her before his face. + +Eleazar the priest shall take some of her blood with his finger, and sprinkle her blood toward the front of the Tent of Meeting seven times. + +One shall burn the heifer in his sight; her skin, and her meat, and her blood, with her dung, shall he burn. + +The priest shall take cedar wood, hyssop, and scarlet, and cast it into the middle of the burning of the heifer. + +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 evening. + +He who burns her shall wash his clothes in water, and bathe his flesh in water, and shall be unclean until the evening. + +

+

A man who is clean shall gather up the ashes of the heifer, and lay them up outside of the camp in a clean place; and it shall be kept for the congregation of the children of Israel for use in water for cleansing impurity. It is a sin offering. + +He who gathers the ashes of the heifer shall wash his clothes, and be unclean until the evening. It shall be to the children of Israel, and to the stranger who lives as a foreigner among them, for a statute forever. + +

+

He who touches the dead body of any man shall be unclean seven days. + +He shall purify himself with water on the third day, and on the seventh day he shall be clean; but if he doesn’t purify himself the third day, then the seventh day he shall not be clean. + +Whoever touches a dead person, the body of a man who has died, and doesn’t purify himself, defiles Yahweh’s tabernacle; and that soul shall be cut off from Israel; because the water for impurity was not sprinkled on him, he shall be unclean. His uncleanness is yet on him. + +

+

This is the law when a man dies in a tent: everyone who comes into the tent, and everyone who is in the tent, shall be unclean seven days. + +Every open vessel, which has no covering bound on it, is unclean. + +

+

Whoever in the open field touches one who is slain with a sword, or a dead body, or a bone of a man, or a grave, shall be unclean seven days. + +

+

For the unclean, they shall take of the ashes of the burning of the sin offering; and running water shall be poured on them in a vessel. + +A clean person shall take hyssop, dip it in the water, and sprinkle it on the tent, on all the vessels, on the persons who were there, and on him who touched the bone, or the slain, or the dead, or the grave. + +The clean person shall sprinkle on the unclean on the third day, and on the seventh day. On the seventh day, he shall purify him. He shall wash his clothes and bathe himself in water, and shall be clean at evening. + +But the man who shall be unclean, and shall not purify himself, that soul shall be cut off from among the assembly, because he has defiled the sanctuary of Yahweh. The water for impurity has not been sprinkled on him. He is unclean. + +It shall be a perpetual statute to them. He who sprinkles the water for impurity shall wash his clothes, and he who touches the water for impurity shall be unclean until evening. + +

+

Whatever the unclean person touches shall be unclean; and the soul that touches it shall be unclean until evening.” + +

+ + +

The children of Israel, even the whole congregation, came into the wilderness of Zin in the first month. The people stayed in Kadesh. Miriam died there, and was buried there. + +There was no water for the congregation; and they assembled themselves together against Moses and against Aaron. + +The people quarreled with Moses, and spoke, saying, “We wish that we had died when our brothers died before Yahweh! + +Why have you brought Yahweh’s assembly into this wilderness, that we should die there, we and our animals? + +Why have you made us to come up out of Egypt, to bring us in to 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.” + +

+

Moses and Aaron went from the presence of the assembly to the door of the Tent of Meeting, and fell on their faces. Yahweh’s glory appeared to them. + +Yahweh spoke to Moses, saying, + +Take the rod, and assemble the congregation, you, and Aaron your brother, and speak to the rock before their eyes, that it pour out its water. You shall bring water to them out of the rock; so you shall give the congregation and their livestock drink.” + +

+

Moses took the rod from before Yahweh, as he commanded him. + +Moses and Aaron gathered the assembly together before the rock, and he said to them, “Hear now, you rebels! Shall we bring water out of this rock for you?” + +Moses lifted up his hand, and struck the rock with his rod twice, and water came out abundantly. The congregation and their livestock drank. + +

+

Yahweh said to Moses and Aaron, “Because you didn’t believe in me, to sanctify me in the eyes of the children of Israel, therefore you shall not bring this assembly into the land which I have given them.” + +

+

These are the waters of Meribah;20:13 +“Meribah” means “quarreling”. because the children of Israel strove with Yahweh, and he was sanctified in them. + +

+

Moses sent messengers from Kadesh to the king of Edom, saying: +

+

Your brother Israel says: You know all the travail that has happened to us; + +how our fathers went down into Egypt, and we lived in Egypt a long time. The Egyptians mistreated us and our fathers. + +When we cried to Yahweh, he heard our voice, sent an angel, and brought us out of Egypt. Behold, we are in Kadesh, a city in the edge of your border. + +

+

Please let us pass through your land. We will not pass through field or through vineyard, neither will we drink from the water of the wells. We will go along the king’s highway. We will not turn away to the right hand nor to the left, until we have passed your border.” + +

+

Edom said to him, “You shall not pass through me, lest I come out with the sword against you.” + +

+

The children of Israel said to him, “We will go up by the highway; and if we drink your water, I and my livestock, then I will give its price. Only let me, without doing anything else, pass through on my feet.” + +

+

He said, “You shall not pass through.” Edom came out against him with many people, and with a strong hand. + +Thus Edom refused to give Israel passage through his border, so Israel turned away from him. + +

+

They traveled from Kadesh, and the children of Israel, even the whole congregation, came to Mount Hor. + +Yahweh spoke to Moses and Aaron in Mount Hor, by the border of the land of Edom, saying, + +“Aaron shall be gathered to his people; for he shall not enter into the land which I have given to the children of Israel, because you rebelled against my word at the waters of Meribah. + +Take Aaron and Eleazar his son, and bring them up to Mount Hor; + +and strip Aaron of his garments, and put them on Eleazar his son. Aaron shall be gathered, and shall die there.” + +

+

Moses did as Yahweh commanded. They went up onto Mount Hor in the sight of all the congregation. + +Moses stripped Aaron of his garments, and put them on Eleazar his son. Aaron died there on the top of the mountain, and Moses and Eleazar came down from the mountain. + +When all the congregation saw that Aaron was dead, they wept for Aaron thirty days, even all the house of Israel. + +

+ + +

The Canaanite, the king of Arad, who lived in the South, heard that Israel came by the way of Atharim. He fought against Israel, and took some of them captive. + +Israel vowed a vow to Yahweh, and said, “If you will indeed deliver this people into my hand, then I will utterly destroy their cities.” + +Yahweh listened to the voice of Israel, and delivered up the Canaanites; and they utterly destroyed them and their cities. The name of the place was called Hormah.21:3 +“Hormah” means “destruction”. + +

+

They traveled from Mount Hor by the way to the Red Sea, to go around the land of Edom. The soul of the people was very discouraged because of the journey. + +The people spoke against God and against Moses: “Why have you brought us up out of Egypt to die in the wilderness? For there is no bread, there is no water, and our soul loathes this disgusting food!” + +

+

Yahweh sent venomous snakes among the people, and they bit the people. Many people of Israel died. + +The people came to Moses, and said, “We have sinned, because we have spoken against Yahweh and against you. Pray to Yahweh, that he take away the serpents from us.” Moses prayed for the people. + +

+

Yahweh said to Moses, “Make a venomous snake, and set it on a pole. It shall happen that everyone who is bitten, when he sees it, shall live.” + +Moses made a serpent of bronze, and set it on the pole. If a serpent had bitten any man, when he looked at the serpent of bronze, he lived. + +

+

The children of Israel traveled, and encamped in Oboth. + +They traveled from Oboth, and encamped at Iyeabarim, in the wilderness which is before Moab, toward the sunrise. + +From there they traveled, and encamped in the valley of Zered. + +From there they traveled, and encamped on the other side of the Arnon, which is in the wilderness that comes out of the border of the Amorites; for the Arnon is the border of Moab, between Moab and the Amorites. + +Therefore it is said in +The Book of the Wars of Yahweh, “Vaheb in Suphah, the valleys of the Arnon, + +the slope of the valleys that incline toward the dwelling of Ar, leans on the border of Moab.” + +

+

From there they traveled to Beer; that is the well of which Yahweh said to Moses, “Gather the people together, and I will give them water.” + +

+

Then Israel sang this song: +

+Spring up, well! Sing to it, + + +the well, which the princes dug, + +which the nobles of the people dug, + +with the scepter, and with their poles.” + +

From the wilderness they traveled to Mattanah; + +and from Mattanah to Nahaliel; and from Nahaliel to Bamoth; + +and from Bamoth to the valley that is in the field of Moab, to the top of Pisgah, which looks down on the desert. + +Israel sent messengers to Sihon king of the Amorites, saying, + +Let me pass through your land. We will not turn away into field or vineyard. We will not drink of the water of the wells. We will go by the king’s highway, until we have passed your border.” + +

+

Sihon would not allow Israel to pass through his border, but Sihon gathered all his people together, and went out against Israel into the wilderness, and came to Jahaz. He fought against Israel. + +Israel struck him with the edge of the sword, and possessed his land from the Arnon to the Jabbok, even to the children of Ammon; for the border of the children of Ammon was fortified. + +Israel took all these cities. Israel lived in all the cities of the Amorites, in Heshbon, and in all its villages. + +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 to the Arnon. + +Therefore those who speak in proverbs say, +

+Come to Heshbon. + +Let the city of Sihon be built and established; + + +for a fire has gone out of Heshbon, + +a flame from the city of Sihon. + +It has devoured Ar of Moab, + +The lords of the high places of the Arnon. + + +Woe to you, Moab! + +You are undone, people of Chemosh! + +He has given his sons as fugitives, + +and his daughters into captivity, + +to Sihon king of the Amorites. + + +We have shot at them. + +Heshbon has perished even to Dibon. + +We have laid waste even to Nophah, + +Which reaches to Medeba.” + + +

Thus Israel lived in the land of the Amorites. + +Moses sent to spy out Jazer. They took its villages, and drove out the Amorites who were there. + +They turned and went up by the way of Bashan. Og the king of Bashan went out against them, he and all his people, to battle at Edrei. + +

+

Yahweh said to Moses, “Don’t fear him, for I have delivered him into your hand, with all his people, and his land. You shall do to him as you did to Sihon king of the Amorites, who lived at Heshbon.” + +

+

So they struck him, with his sons and all his people, until there were no survivors; and they possessed his land. + +

+ + +

The children of Israel traveled, and encamped in the plains of Moab beyond the Jordan at Jericho. + +Balak the son of Zippor saw all that Israel had done to the Amorites. + +Moab was very afraid of the people, because they were many. Moab was distressed because of the children of Israel. + +Moab said to the elders of Midian, “Now this multitude will lick up all that is around us, as the ox licks up the grass of the field.” +

+

Balak the son of Zippor was king of Moab at that time. + +He sent messengers to Balaam the son of Beor, to Pethor, which is by the River, to the land of the children of his people, to call him, saying, “Behold, there is a people who came out of Egypt. Behold, they cover the surface of the earth, and they are staying opposite me. + +Please come now therefore, and curse this people for me; for they are too mighty for me. Perhaps I shall prevail, that we may strike them, and that I may drive them out of the land; for I know that he whom you bless is blessed, and he whom you curse is cursed.” + +

+

The elders of Moab and the elders of Midian departed with the rewards of divination in their hand. They came to Balaam, and spoke to him the words of Balak. + +

+

He said to them, “Lodge here this night, and I will bring you word again, as Yahweh shall speak to me.” The princes of Moab stayed with Balaam. + +

+

God came to Balaam, and said, “Who are these men with you?” + +

+

Balaam said to God, “Balak the son of Zippor, king of Moab, has said to me, + +Behold, the people that has come out of Egypt covers the surface of the earth. Now, come curse them for me. Perhaps I shall be able to fight against them, and shall drive them out.’” + +

+

God said to Balaam, “You shall not go with them. You shall not curse the people, for they are blessed.” + +

+

Balaam rose up in the morning, and said to the princes of Balak, “Go to your land; for Yahweh refuses to permit me to go with you.” + +

+

The princes of Moab rose up, and they went to Balak, and said, “Balaam refuses to come with us.” + +

+

Balak again sent princes, more, and more honorable than they. + +They came to Balaam, and said to him, “Balak the son of Zippor says, ‘Please let nothing hinder you from coming to me, + +for I will promote you to very great honor, and whatever you say to me I will do. Please come therefore, and curse this people for me.’” + +

+

Balaam answered the servants of Balak, “If Balak would give me his house full of silver and gold, I can’t go beyond the word of Yahweh my God, to do less or more. + +Now therefore please stay here tonight as well, that I may know what else Yahweh will speak to me.” + +

+

God came to Balaam at night, and said to him, “If the men have come to call you, rise up, go with them; but only the word which I speak to you, that you shall do.” + +

+

Balaam rose up in the morning, and saddled his donkey, and went with the princes of Moab. + +God’s anger burned because he went; and Yahweh’s angel placed himself in the way as an adversary against him. Now he was riding on his donkey, and his two servants were with him. + +The donkey saw Yahweh’s angel standing in the way, with his sword drawn in his hand; and the donkey turned out of the path, and went into the field. Balaam struck the donkey, to turn her into the path. + +Then Yahweh’s angel stood in a narrow path between the vineyards, a wall being on this side, and a wall on that side. + +The donkey saw Yahweh’s angel, and she thrust herself to the wall, and crushed Balaam’s foot against the wall. He struck her again. + +

+

Yahweh’s angel went further, and stood in a narrow place, where there was no way to turn either to the right hand or to the left. + +The donkey saw Yahweh’s angel, and she lay down under Balaam. Balaam’s anger burned, and he struck the donkey with his staff. + +

+

Yahweh opened the mouth of the donkey, and she said to Balaam, “What have I done to you, that you have struck me these three times?” + +

+

Balaam said to the donkey, “Because you have mocked me, I wish there were a sword in my hand, for now I would have killed you.” + +

+

The donkey said to Balaam, “Am I not your donkey, on which you have ridden all your life long until today? Was I ever in the habit of doing so to you?” +

+

He said, “No.” + +

+

Then Yahweh opened the eyes of Balaam, and he saw Yahweh’s angel standing in the way, with his sword drawn in his hand; and he bowed his head, and fell on his face. + +Yahweh’s angel said to him, “Why have you struck your donkey these three times? Behold, I have come out as an adversary, because your way is perverse before me. + +The donkey saw me, and turned away before me these three times. Unless she had turned away from me, surely now I would have killed you, and saved her alive.” + +

+

Balaam said to Yahweh’s angel, “I have sinned; for I didn’t know that you stood in the way against me. Now therefore, if it displeases you, I will go back again.” + +

+

Yahweh’s angel said to Balaam, “Go with the men; but you shall only speak the word that I shall speak to you.” +

+

So Balaam went with the princes of Balak. + +When Balak heard that Balaam had come, he went out to meet him to the City of Moab, which is on the border of the Arnon, which is in the utmost part of the border. + +Balak said to Balaam, “Didn’t I earnestly send for you to summon you? Why didn’t you come to me? Am I not able indeed to promote you to honor?” + +

+

Balaam said to Balak, “Behold, I have come to you. Have I now any power at all to speak anything? I will speak the word that God puts in my mouth.” + +

+

Balaam went with Balak, and they came to Kiriath Huzoth. + +Balak sacrificed cattle and sheep, and sent to Balaam, and to the princes who were with him. + +In the morning, Balak took Balaam, and brought him up into the high places of Baal; and he saw from there part of the people. + +

+ + +

Balaam said to Balak, “Build here seven altars for me, and prepare here seven bulls and seven rams for me.” + +

+

Balak did as Balaam had spoken; and Balak and Balaam offered on every altar a bull and a ram. + +Balaam said to Balak, “Stand by your burnt offering, and I will go. Perhaps Yahweh will come to meet me. Whatever he shows me I will tell you.” +

+

He went to a bare height. + +God met Balaam, and he said to him, “I have prepared the seven altars, and I have offered up a bull and a ram on every altar.” + +

+

Yahweh put a word in Balaam’s mouth, and said, “Return to Balak, and thus you shall speak.” + +

+

He returned to him, and behold, he was standing by his burnt offering, he, and all the princes of Moab. + +He took up his parable, and said, +

+From Aram has Balak brought me, + +the king of Moab from the mountains of the East. + +Come, curse Jacob for me. + +Come, defy Israel. + + +How shall I curse whom God has not cursed? + +How shall I defy whom Yahweh has not defied? + + +For from the top of the rocks I see him. + +From the hills I see him. + +Behold, it is a people that dwells alone, + +and shall not be listed among the nations. + + +Who can count the dust of Jacob, + +or count the fourth part of Israel? + +Let me die the death of the righteous! + +Let my last end be like his!” + + +

Balak said to Balaam, “What have you done to me? I took you to curse my enemies, and behold, you have blessed them altogether.” + +

+

He answered and said, “Must I not take heed to speak that which Yahweh puts in my mouth?” + +

+

Balak said to him, “Please come with me to another place, where you may see them. You shall see just part of them, and shall not see them all. Curse them from there for me.” + +

+

He took him into the field of Zophim, to the top of Pisgah, and built seven altars, and offered up a bull and a ram on every altar. + +He said to Balak, “Stand here by your burnt offering, while I meet God over there.” + +

+

Yahweh met Balaam, and put a word in his mouth, and said, “Return to Balak, and say this.” + +

+

He came to him, and behold, he was standing by his burnt offering, and the princes of Moab with him. Balak said to him, “What has Yahweh spoken?” + +

+

He took up his parable, and said, +

+Rise up, Balak, and hear! + +Listen to me, you son of Zippor. + + +God is not a man, that he should lie, + +nor a son of man, that he should repent. + +Has he said, and he won’t do it? + +Or has he spoken, and he won’t make it good? + + +Behold, I have received a command to bless. + +He has blessed, and I can’t reverse it. + + +He has not seen iniquity in Jacob. + +Neither has he seen perverseness in Israel. + +Yahweh his God is with him. + +The shout of a king is among them. + + +God brings them out of Egypt. + +He has as it were the strength of the wild ox. + + +Surely there is no enchantment with Jacob; + +neither is there any divination with Israel. + +Now it shall be said of Jacob and of Israel, + +What has God done!’ + + +Behold, a people rises up as a lioness. + +As a lion he lifts himself up. + +He shall not lie down until he eats of the prey, + +and drinks the blood of the slain.” + + +

Balak said to Balaam, “Neither curse them at all, nor bless them at all.” + +

+

But Balaam answered Balak, “Didn’t I tell you, saying, ‘All that Yahweh speaks, that I must do’?” + +

+

Balak said to Balaam, “Come now, I will take you to another place; perhaps it will please God that you may curse them for me from there.” + +

+

Balak took Balaam to the top of Peor, that looks down on the desert. + +Balaam said to Balak, “Build seven altars for me here, and prepare seven bulls and seven rams for me here.” + +

+

Balak did as Balaam had said, and offered up a bull and a ram on every altar. + +

+ + +

When Balaam saw that it pleased Yahweh to bless Israel, he didn’t go, as at the other times, to use divination, but he set his face toward the wilderness. + +Balaam lifted up his eyes, and he saw Israel dwelling according to their tribes; and the Spirit of God came on him. + +He took up his parable, and said, +

+Balaam the son of Beor says, + +the man whose eyes are open says; + + +he says, who hears the words of God, + +who sees the vision of the Almighty, + +falling down, and having his eyes open: + + +How goodly are your tents, Jacob, + +and your dwellings, Israel! + + +As valleys they are spread out, + +as gardens by the riverside, + +as aloes which Yahweh has planted, + +as cedar trees beside the waters. + + +Water shall flow from his buckets. + +His seed shall be in many waters. + +His king shall be higher than Agag. + +His kingdom shall be exalted. + + +God brings him out of Egypt. + +He has as it were the strength of the wild ox. + +He shall consume the nations his adversaries, + +shall break their bones in pieces, + +and pierce them with his arrows. + + +He couched, he lay down as a lion, + +as a lioness; + +who shall rouse him up? + +Everyone who blesses you is blessed. + +Everyone who curses you is cursed.” + + +

Balak’s anger burned against Balaam, and he struck his hands together. Balak said to Balaam, “I called you to curse my enemies, and, behold, you have altogether blessed them these three times. + +Therefore, flee to your place, now! I thought to promote you to great honor; but, behold, Yahweh has kept you back from honor.” + +

+

Balaam said to Balak, “Didn’t I also tell your messengers whom you sent to me, saying, + +‘If Balak would give me his house full of silver and gold, I can’t go beyond Yahweh’s word, to do either good or bad from my own mind. I will say what Yahweh says’? + +Now, behold, I go to my people. Come, I will inform you what this people shall do to your people in the latter days.” + +

+

He took up his parable, and said, +

+Balaam the son of Beor says, + +the man whose eyes are open says; + + +he says, who hears the words of God, + +knows the knowledge of the Most High, + +and who sees the vision of the Almighty, + +falling down, and having his eyes open: + + +I see him, but not now. + +I see him, but not near. + +A star will come out of Jacob. + +A scepter will rise out of Israel, + +and shall strike through the corners of Moab, + +and crush all the sons of Sheth. + + +Edom shall be a possession. + +Seir, his enemy, also shall be a possession, + +while Israel does valiantly. + + +Out of Jacob shall one have dominion, + +and shall destroy the remnant from the city.” + + +

He looked at Amalek, and took up his parable, and said, +

+Amalek was the first of the nations, + +but his latter end shall come to destruction.” + + +

He looked at the Kenite, and took up his parable, and said, +

+Your dwelling place is strong. + +Your nest is set in the rock. + + +Nevertheless Kain shall be wasted, + +until Asshur carries you away captive.” + + +

He took up his parable, and said, +

+“Alas, who shall live when God does this? + + +But ships shall come from the coast of Kittim. + +They shall afflict Asshur, and shall afflict Eber. + +He also shall come to destruction.” + + +

Balaam rose up, and went and returned to his place; and Balak also went his way. + +

+ + +

Israel stayed in Shittim; and the people began to play the prostitute with the daughters of Moab; + +for they called the people to the sacrifices of their gods. The people ate and bowed down to their gods. + +Israel joined himself to Baal Peor, and Yahweh’s anger burned against Israel. + +Yahweh said to Moses, “Take all the chiefs of the people, and hang them up to Yahweh before the sun, that the fierce anger of Yahweh may turn away from Israel.” + +

+

Moses said to the judges of Israel, “Everyone kill his men who have joined themselves to Baal Peor.” + +

+

Behold, one of the children of Israel came and brought to his brothers a Midianite woman in the sight of Moses, and in the sight of all the congregation of the children of Israel, while they were weeping at the door of the Tent of Meeting. + +When Phinehas, the son of Eleazar, the son of Aaron the priest, saw it, he rose up from the middle of the congregation, and took a spear in his hand. + +He went after the man of Israel into the pavilion, and thrust both of them through, the man of Israel, and the woman through her body. So the plague was stopped among the children of Israel. + +Those who died by the plague were twenty-four thousand. + +

+

Yahweh spoke to Moses, saying, + +Phinehas, the son of Eleazar, the son of Aaron the priest, has turned my wrath away from the children of Israel, in that he was jealous with my jealousy among them, so that I didn’t consume the children of Israel in my jealousy. + +Therefore say, ‘Behold, I give to him my covenant of peace. + +It shall be to him, and to his offspring after him, the covenant of an everlasting priesthood, because he was jealous for his God, and made atonement for the children of Israel.’” + +

+

Now the name of the man of Israel that was slain, who was slain with the Midianite woman, was Zimri, the son of Salu, a prince of a fathers’ house among the Simeonites. + +The name of the Midianite woman who was slain was Cozbi, the daughter of Zur. He was head of the people of a fathers’ house in Midian. + +

+

Yahweh spoke to Moses, saying, + +Harass the Midianites, and strike them; + +for they harassed you with their wiles, wherein they have deceived you in the matter of Peor, and in the incident regarding Cozbi, the daughter of the prince of Midian, their sister, who was slain on the day of the plague in the matter of Peor.” + +

+ + +

After the plague, Yahweh spoke to Moses and to Eleazar the son of Aaron the priest, saying, + +Take a census of all the congregation of the children of Israel, from twenty years old and upward, by their fathers’ houses, all who are able to go out to war in Israel.” + +Moses and Eleazar the priest spoke with them in the plains of Moab by the Jordan at Jericho, saying, + +Take a census, from twenty years old and upward, as Yahweh commanded Moses and the children of Israel.” +

+

These are those who came out of the land of Egypt. + +Reuben, the firstborn of Israel; the sons of Reuben: of Hanoch, the family of the Hanochites; of Pallu, the family of the Palluites; + +of Hezron, the family of the Hezronites; of Carmi, the family of the Carmites. + +These are the families of the Reubenites; and those who were counted of them were forty-three thousand seven hundred thirty. + +The son of Pallu: Eliab. + +The sons of Eliab: Nemuel, Dathan, and Abiram. These are that Dathan and Abiram who were called by the congregation, who rebelled against Moses and against Aaron in the company of Korah when they rebelled against Yahweh; + +and the earth opened its mouth, and swallowed them up together with Korah when that company died; at the time the fire devoured two hundred fifty men, and they became a sign. + +Notwithstanding, the sons of Korah didn’t die. + +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; + +of Zerah, the family of the Zerahites; of Shaul, the family of the Shaulites. + +These are the families of the Simeonites, twenty-two thousand two hundred. + +The sons 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; + +of Ozni, the family of the Oznites; of Eri, the family of the Erites; + +of Arod, the family of the Arodites; of Areli, the family of the Arelites. + +These are the families of the sons of Gad according to those who were counted of them, forty thousand and five hundred. + +The sons of Judah: Er and Onan. Er and Onan died in the land of Canaan. + +The sons of Judah after their families were: of Shelah, the family of the Shelanites; of Perez, the family of the Perezites; of Zerah, the family of the Zerahites. + +The sons of Perez were: of Hezron, the family of the Hezronites; of Hamul, the family of the Hamulites. + +These are the families of Judah according to those who were counted of them, seventy-six thousand five hundred. + +The sons of Issachar after their families: of Tola, the family of the Tolaites; of Puvah, the family of the Punites; + +of Jashub, the family of the Jashubites; of Shimron, the family of the Shimronites. + +These are the families of Issachar according to those who were counted of them, sixty-four thousand three hundred. + +The sons of Zebulun after their families: of Sered, the family of the Seredites; of Elon, the family of the Elonites; of Jahleel, the family of the Jahleelites. + +These are the families of the Zebulunites according to those who were counted of them, sixty thousand five hundred. + +The sons of Joseph after their families: Manasseh and Ephraim. + +The sons of Manasseh: of Machir, the family of the Machirites; and Machir became the father of Gilead; of Gilead, the family of the Gileadites. + +These are the sons of Gilead: of Iezer, the family of the Iezerites; of Helek, the family of the Helekites; + +and Asriel, the family of the Asrielites; and Shechem, the family of the Shechemites; + +and Shemida, the family of the Shemidaites; and Hepher, the family of the Hepherites. + +Zelophehad the son of Hepher had no sons, but daughters: and the names of the daughters of Zelophehad were Mahlah, Noah, Hoglah, Milcah, and Tirzah. + +These are the families of Manasseh. Those who were counted of them were fifty-two thousand seven hundred. + +These are the sons of Ephraim after their families: of Shuthelah, the family of the Shuthelahites; of Becher, the family of the Becherites; of Tahan, the family of the Tahanites. + +These are the sons of Shuthelah: of Eran, the family of the Eranites. + +These are the families of the sons of Ephraim according to those who were counted of them, thirty-two thousand five hundred. These are the sons of Joseph after their families. + +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; + +of Shephupham, the family of the Shuphamites; of Hupham, the family of the Huphamites. + +The sons of Bela were Ard and Naaman: the family of the Ardites; and of Naaman, the family of the Naamites. + +These are the sons of Benjamin after their families; and those who were counted of them were forty-five thousand six hundred. + +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. + +All the families of the Shuhamites, according to those who were counted of them, were sixty-four thousand four hundred. + +The sons of Asher after their families: of Imnah, the family of the Imnites; of Ishvi, the family of the Ishvites; of Beriah, the family of the Berites. + +Of the sons of Beriah: of Heber, the family of the Heberites; of Malchiel, the family of the Malchielites. + +The name of the daughter of Asher was Serah. + +These are the families of the sons of Asher according to those who were counted of them, fifty-three thousand four hundred. + +The sons of Naphtali after their families: of Jahzeel, the family of the Jahzeelites; of Guni, the family of the Gunites; + +of Jezer, the family of the Jezerites; of Shillem, the family of the Shillemites. + +These are the families of Naphtali according to their families; and those who were counted of them were forty-five thousand four hundred. + +These are those who were counted of the children of Israel, six hundred one thousand seven hundred thirty. + +

+

Yahweh spoke to Moses, saying, + +To these the land shall be divided for an inheritance according to the number of names. + +To the more you shall give the more inheritance, and to the fewer you shall give the less inheritance. To everyone according to those who were counted of him shall his inheritance be given. + +Notwithstanding, the land shall be divided by lot. According to the names of the tribes of their fathers they shall inherit. + +According to the lot shall their inheritance be divided between the more and the fewer.” + +

+

These are those who were counted 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. + +These are the families of Levi: the family of the Libnites, the family of the Hebronites, the family of the Mahlites, the family of the Mushites, and the family of the Korahites. Kohath became the father of Amram. + +The name of Amram’s wife was Jochebed, the daughter of Levi, who was born to Levi in Egypt. She bore to Amram Aaron and Moses, and Miriam their sister. + +To Aaron were born Nadab and Abihu, Eleazar and Ithamar. + +Nadab and Abihu died when they offered strange fire before Yahweh. + +Those who were counted of them were twenty-three thousand, every male from a month old and upward; for they were not counted among the children of Israel, because there was no inheritance given them among the children of Israel. + +These are those who were counted by Moses and Eleazar the priest, who counted the children of Israel in the plains of Moab by the Jordan at Jericho. + +But among these there was not a man of them who were counted by Moses and Aaron the priest, who counted the children of Israel in the wilderness of Sinai. + +For Yahweh had said of them, “They shall surely die in the wilderness.” There was not a man left of them, except Caleb the son of Jephunneh, and Joshua the son of Nun. + +

+ + +

Then 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 came near. These are the names of his daughters: Mahlah, Noah, Hoglah, Milcah, and Tirzah. + +They stood before Moses, before Eleazar the priest, and before the princes and all the congregation, at the door of the Tent of Meeting, saying, + +Our father died in the wilderness. He was not among the company of those who gathered themselves together against Yahweh in the company of Korah, but he died in his own sin. He had no sons. + +Why should the name of our father be taken away from among his family, because he had no son? Give to us a possession among the brothers of our father.” + +

+

Moses brought their cause before Yahweh. + +Yahweh spoke to Moses, saying, + +The daughters of Zelophehad speak right. You shall surely give them a possession of an inheritance among their father’s brothers. You shall cause the inheritance of their father to pass to them. + +You shall speak to the children of Israel, saying, ‘If a man dies, and has no son, then you shall cause his inheritance to pass to his daughter. + +If he has no daughter, then you shall give his inheritance to his brothers. + +If he has no brothers, then you shall give his inheritance to his father’s brothers. + +If his father has no brothers, then you shall give his inheritance to his kinsman who is next to him of his family, and he shall possess it. This shall be a statute and ordinance for the children of Israel, as Yahweh commanded Moses.’” + +

+

Yahweh said to Moses, “Go up into this mountain of Abarim, and see the land which I have given to the children of Israel. + +When you have seen it, you also shall be gathered to your people, as Aaron your brother was gathered; + +because in the strife of the congregation, you rebelled against my word in the wilderness of Zin, to honor me as holy at the waters before their eyes.” (These are the waters of Meribah of Kadesh in the wilderness of Zin.) + +

+

Moses spoke to Yahweh, saying, + +Let Yahweh, the God of the spirits of all flesh, appoint a man over the congregation, + +who may go out before them, and who may come in before them, and who may lead them out, and who may bring them in, that the congregation of Yahweh may not be as sheep which have no shepherd.” + +

+

Yahweh said to Moses, “Take Joshua the son of Nun, a man in whom is the Spirit, and lay your hand on him. + +Set him before Eleazar the priest, and before all the congregation; and commission him in their sight. + +You shall give authority to him, that all the congregation of the children of Israel may obey. + +He shall stand before Eleazar the priest, who shall inquire for him by the judgment of the Urim before Yahweh. At his word they shall go out, and at his word they shall come in, both he and all the children of Israel with him, even all the congregation.” + +

+

Moses did as Yahweh commanded him. He took Joshua, and set him before Eleazar the priest and before all the congregation. + +He laid his hands on him and commissioned him, as Yahweh spoke by Moses. + +

+ + +

Yahweh spoke to Moses, saying, + +Command the children of Israel, and tell them, ‘See that you present my offering, my food for my offerings made by fire, as a pleasant aroma to me, in their due season.’ + +You shall tell them, ‘This is the offering made by fire which you shall offer to Yahweh: male lambs a year old without defect, two day by day, for a continual burnt offering. + +You shall offer the one lamb in the morning, and you shall offer the other lamb at evening, + +with one tenth of an ephah28:5 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour for a meal offering, mixed with the fourth part of a hin28:5 +A hin is about 6.5 liters or 1.7 gallons. of beaten oil. + +It is a continual burnt offering which was ordained in Mount Sinai for a pleasant aroma, an offering made by fire to Yahweh. + +Its drink offering shall be the fourth part of a hin28:7 +One hin is about 6.5 liters, so 1/4 hin is about 1.6 liters or 1.7 quarts. for each lamb. You shall pour out a drink offering of strong drink to Yahweh in the holy place. + +The other lamb you shall offer at evening. As the meal offering of the morning, and as its drink offering, you shall offer it, an offering made by fire, for a pleasant aroma to Yahweh. + +

+

“‘On the Sabbath day, you shall offer two male lambs a year old without defect, and two tenths of an ephah28:9 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour for a meal offering mixed with oil, and its drink offering: + +this is the burnt offering of every Sabbath, in addition to the continual burnt offering and its drink offering. + +

+

“‘In the beginnings of your months, you shall offer a burnt offering to Yahweh: two young bulls, one ram, seven male lambs a year old without defect, + +and three tenths of an ephah28:12 +1 ephah is about 22 liters or about 2/3 of a bushel of fine flour for a meal offering mixed with oil, for each bull; and two tenth parts of fine flour for a meal offering mixed with oil, for the one ram; + +and one tenth part of fine flour mixed with oil for a meal offering to every lamb, as a burnt offering of a pleasant aroma, an offering made by fire to Yahweh. + +Their drink offerings shall be half a hin of wine for a bull, the third part of a hin for the ram, and the fourth part of a hin for a lamb. This is the burnt offering of every month throughout the months of the year. + +Also, one male goat for a sin offering to Yahweh shall be offered in addition to the continual burnt offering and its drink offering. + +

+

“‘In the first month, on the fourteenth day of the month, is Yahweh’s Passover. + +On the fifteenth day of this month shall be a feast. Unleavened bread shall be eaten for seven days. + +In the first day shall be a holy convocation. You shall do no regular work, + +but you shall offer an offering made by fire, a burnt offering to Yahweh: two young bulls, one ram, and seven male lambs a year old. They shall be without defect, + +with their meal offering, fine flour mixed with oil. You shall offer three tenths for a bull, and two tenths for the ram. + +You shall offer one tenth for every lamb of the seven lambs; + +and one male goat for a sin offering, to make atonement for you. + +You shall offer these in addition to the burnt offering of the morning, which is for a continual burnt offering. + +In this way you shall offer daily, for seven days, the food of the offering made by fire, of a pleasant aroma to Yahweh. It shall be offered in addition to the continual burnt offering and its drink offering. + +On the seventh day you shall have a holy convocation. You shall do no regular work. + +

+

“‘Also in the day of the first fruits, when you offer a new meal offering to Yahweh in your feast of weeks, you shall have a holy convocation. You shall do no regular work; + +but you shall offer a burnt offering for a pleasant aroma to Yahweh: two young bulls, one ram, seven male lambs a year old; + +and their meal offering, fine flour mixed with oil, three tenths for each bull, two tenths for the one ram, + +one tenth for every lamb of the seven lambs; + +and one male goat, to make atonement for you. + +Besides the continual burnt offering and its meal offering, you shall offer them and their drink offerings. See that they are without defect. + +

+ + +

“‘In the seventh month, on the first day of the month, you shall have a holy convocation; you shall do no regular work. It is a day of blowing of trumpets to you. + +You shall offer a burnt offering for a pleasant aroma to Yahweh: one young bull, one ram, seven male lambs a year old without defect; + +and their meal offering, fine flour mixed with oil: three tenths for the bull, two tenths for the ram, + +and one tenth for every lamb of the seven lambs; + +and one male goat for a sin offering, to make atonement for you; + +in addition to the burnt offering of the new moon with its meal offering, and the continual burnt offering with its meal offering, and their drink offerings, according to their ordinance, for a pleasant aroma, an offering made by fire to Yahweh. + +

+

“‘On the tenth day of this seventh month you shall have a holy convocation. You shall afflict your souls. You shall do no kind of work; + +but you shall offer a burnt offering to Yahweh for a pleasant aroma: one young bull, one ram, seven male lambs a year old, all without defect; + +and their meal offering, fine flour mixed with oil: three tenths for the bull, two tenths for the one ram, + +one tenth for every lamb of the seven lambs; + +one male goat for a sin offering, in addition to the sin offering of atonement, and the continual burnt offering, and its meal offering, and their drink offerings. + +

+

“‘On the fifteenth day of the seventh month you shall have a holy convocation. You shall do no regular work. You shall keep a feast to Yahweh seven days. + +You shall offer a burnt offering, an offering made by fire, of a pleasant aroma to Yahweh: thirteen young bulls, two rams, fourteen male lambs a year old, all without defect; + +and their meal offering, fine flour mixed with oil: three tenths for every bull of the thirteen bulls, two tenths for each ram of the two rams, + +and one tenth for every lamb of the fourteen lambs; + +and one male goat for a sin offering, in addition to the continual burnt offering, its meal offering, and its drink offering. + +

+

“‘On the second day you shall offer twelve young bulls, two rams, and fourteen male lambs a year old without defect; + +and their meal offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number, after the ordinance; + +and one male goat for a sin offering, in addition to the continual burnt offering, with its meal offering and their drink offerings. + +

+

“‘On the third day: eleven bulls, two rams, fourteen male lambs a year old without defect; + +and their meal offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number, after the ordinance; + +and one male goat for a sin offering, in addition to the continual burnt offering, and its meal offering, and its drink offering. + +

+

“‘On the fourth day ten bulls, two rams, fourteen male lambs a year old without defect; + +their meal offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number, after the ordinance; + +and one male goat for a sin offering; in addition to the continual burnt offering, its meal offering, and its drink offering. + +

+

“‘On the fifth day: nine bulls, two rams, fourteen male lambs a year old without defect; + +and their meal offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number, after the ordinance, + +and one male goat for a sin offering, in addition to the continual burnt offering, and its meal offering, and its drink offering. + +

+

“‘On the sixth day: eight bulls, two rams, fourteen male lambs a year old without defect; + +and their meal offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number, after the ordinance, + +and one male goat for a sin offering; in addition to the continual burnt offering, its meal offering, and the drink offerings of it. + +

+

“‘On the seventh day: seven bulls, two rams, fourteen male lambs a year old without defect; + +and their meal offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number, after the ordinance, + +and one male goat for a sin offering; in addition to the continual burnt offering, its meal offering, and its drink offering. + +

+

“‘On the eighth day you shall have a solemn assembly. You shall do no regular work; + +but you shall offer a burnt offering, an offering made by fire, a pleasant aroma to Yahweh: one bull, one ram, seven male lambs a year old without defect; + +their meal offering and their drink offerings for the bull, for the ram, and for the lambs, shall be according to their number, after the ordinance, + +and one male goat for a sin offering, in addition to the continual burnt offering, with its meal offering, and its drink offering. + +

+

“‘You shall offer these to Yahweh in your set feastsin addition to your vows and your free will offeringsfor your burnt offerings, your meal offerings, your drink offerings, and your peace offerings.’” + +

+

Moses told the children of Israel according to all that Yahweh commanded Moses. + +

+ + +

Moses spoke to the heads of the tribes of the children of Israel, saying, “This is the thing which Yahweh has commanded. + +When a man vows a vow to Yahweh, or swears an oath to bind his soul with a bond, he shall not break his word. He shall do according to all that proceeds out of his mouth. + +

+

Also, when a woman vows a vow to Yahweh and binds herself by a pledge, being in her father’s house, in her youth, + +and her father hears her vow and her pledge with which she has bound her soul, and her father says nothing to her, then all her vows shall stand, and every pledge with which she has bound her soul shall stand. + +But if her father forbids her in the day that he hears, none of her vows or of her pledges with which she has bound her soul, shall stand. Yahweh will forgive her, because her father has forbidden her. + +

+

If she has a husband, while her vows are on her, or the rash utterance of her lips with which she has bound her soul, + +and her husband hears it, and says nothing to her in the day that he hears it; then her vows shall stand, and her pledges with which she has bound her soul shall stand. + +But if her husband forbids her in the day that he hears it, then he makes void her vow which is on her and the rash utterance of her lips, with which she has bound her soul. Yahweh will forgive her. + +

+

But the vow of a widow, or of her who is divorced, everything with which she has bound her soul shall stand against her. + +

+

“If she vowed in her husband’s house or bound her soul by a bond with an oath, + +and her husband heard it, and held his peace at her and didn’t disallow her, then all her vows shall stand, and every pledge with which she bound her soul shall stand. + +But if her husband made them null and void in the day that he heard them, then whatever proceeded out of her lips concerning her vows, or concerning the bond of her soul, shall not stand. Her husband has made them void. Yahweh will forgive her. + +Every vow, and every binding oath to afflict the soul, her husband may establish it, or her husband may make it void. + +But if her husband says nothing to her from day to day, then he establishes all her vows or all her pledges which are on her. He has established them, because he said nothing to her in the day that he heard them. + +But if he makes them null and void after he has heard them, then he shall bear her iniquity.” + +

+

These are the statutes which Yahweh commanded Moses, between a man and his wife, between a father and his daughter, being in her youth, in her father’s house. + +

+ + +

Yahweh spoke to Moses, saying, + +Avenge the children of Israel on the Midianites. Afterward you shall be gathered to your people.” + +

+

Moses spoke to the people, saying, “Arm men from among you for war, that they may go against Midian, to execute Yahweh’s vengeance on Midian. + +You shall send one thousand out of every tribe, throughout all the tribes of Israel, to the war.” + +So there were delivered, out of the thousands of Israel, a thousand from every tribe, twelve thousand armed for war. + +Moses sent them, one thousand of every tribe, to the war with Phinehas the son of Eleazar the priest, to the war, with the vessels of the sanctuary and the trumpets for the alarm in his hand. + +They fought against Midian, as Yahweh commanded Moses. They killed every male. + +They killed the kings of Midian with the rest of their slain: Evi, Rekem, Zur, Hur, and Reba, the five kings of Midian. They also killed Balaam the son of Beor with the sword. + +The children of Israel took the women of Midian captive with their little ones; and all their livestock, all their flocks, and all their goods, they took as plunder. + +All their cities in the places in which they lived, and all their encampments, they burned with fire. + +They took all the captives, and all the plunder, both of man and of animal. + +They brought the captives with the prey and the plunder, to Moses, and to Eleazar the priest, and to the congregation of the children of Israel, to the camp at the plains of Moab, which are by the Jordan at Jericho. + +Moses and Eleazar the priest, with all the princes of the congregation, went out to meet them outside of the camp. + +Moses was angry with the officers of the army, the captains of thousands and the captains of hundreds, who came from the service of the war. + +Moses said to them, “Have you saved all the women alive? + +Behold, these caused the children of Israel, through the counsel of Balaam, to commit trespass against Yahweh in the matter of Peor, and so the plague was among the congregation of Yahweh. + +Now therefore kill every male among the little ones, and kill every woman who has known man by lying with him. + +But all the girls, who have not known man by lying with him, keep alive for yourselves. + +

+

Encamp outside of the camp for seven days. Whoever has killed any person, and whoever has touched any slain, purify yourselves on the third day and on the seventh day, you and your captives. + +You shall purify every garment, and all that is made of skin, and all work of goats’ hair, and all things made of wood.” + +

+

Eleazar the priest said to the men of war who went to the battle, “This is the statute of the law which Yahweh has commanded Moses. + +However the gold, and the silver, the bronze, the iron, the tin, and the lead, + +everything that may withstand the fire, you shall make to go through the fire, and it shall be clean; nevertheless it shall be purified with the water for impurity. All that doesn’t withstand the fire you shall make to go through the water. + +You shall wash your clothes on the seventh day, and you shall be clean. Afterward you shall come into the camp.” + +

+

Yahweh spoke to Moses, saying, + +Count the plunder that was taken, both of man and of animal, you, and Eleazar the priest, and the heads of the fathers’ households of the congregation; + +and divide the plunder into two parts: between the men skilled in war, who went out to battle, and all the congregation. + +Levy a tribute to Yahweh of the men of war who went out to battle: one soul of five hundred; of the persons, of the cattle, of the donkeys, and of the flocks. + +Take it from their half, and give it to Eleazar the priest, for Yahweh’s wave offering. + +Of the children of Israel’s half, you shall take one drawn out of every fifty, of the persons, of the cattle, of the donkeys, and of the flocks, of all the livestock, and give them to the Levites, who perform the duty of Yahweh’s tabernacle.” + +

+

Moses and Eleazar the priest did as Yahweh commanded Moses. + +

+

Now the plunder, over and above the booty which the men of war took, was six hundred seventy-five thousand sheep, + +seventy-two thousand head of cattle, + +sixty-one thousand donkeys, + +and thirty-two thousand persons in all, of the women who had not known man by lying with him. + +The half, which was the portion of those who went out to war, was in number three hundred thirty-seven thousand five hundred sheep; + +and Yahweh’s tribute of the sheep was six hundred seventy-five. + +The cattle were thirty-six thousand, of which Yahweh’s tribute was seventy-two. + +The donkeys were thirty thousand five hundred, of which Yahweh’s tribute was sixty-one. + +The persons were sixteen thousand, of whom Yahweh’s tribute was thirty-two persons. + +Moses gave the tribute, which was Yahweh’s wave offering, to Eleazar the priest, as Yahweh commanded Moses. + +Of the children of Israel’s half, which Moses divided off from the men who fought + +(now the congregation’s half was three hundred thirty-seven thousand five hundred sheep, + +thirty-six thousand head of cattle, + +thirty thousand five hundred donkeys, + +and sixteen thousand persons), + +even of the children of Israel’s half, Moses took one drawn out of every fifty, both of man and of animal, and gave them to the Levites, who performed the duty of Yahweh’s tabernacle, as Yahweh commanded Moses. + +

+

The officers who were over the thousands of the army, the captains of thousands, and the captains of hundreds, came near to Moses. + +They said to Moses, “Your servants have taken the sum of the men of war who are under our command, and there lacks not one man of us. + +We have brought Yahweh’s offering, what every man found: gold ornaments, armlets, bracelets, signet rings, earrings, and necklaces, to make atonement for our souls before Yahweh.” + +

+

Moses and Eleazar the priest took their gold, even all worked jewels. + +All the gold of the wave offering that they offered up to Yahweh, of the captains of thousands, and of the captains of hundreds, was sixteen thousand seven hundred fifty shekels.31:52 +A shekel is about 10 grams or about 0.35 ounces, so 16,750 shekels is about 167.5 kilograms or about 368.5 pounds. + +The men of war had taken booty, every man for himself. + +Moses and Eleazar the priest took the gold of the captains of thousands and of hundreds, and brought it into the Tent of Meeting for a memorial for the children of Israel before Yahweh. + +

+ + +

Now the children of Reuben and the children of Gad had a very great multitude of livestock. They saw the land of Jazer, and the land of Gilead. Behold, the place was a place for livestock. + +Then the children of Gad and the children of Reuben came and spoke to Moses, and to Eleazar the priest, and to the princes of the congregation, saying, + +Ataroth, Dibon, Jazer, Nimrah, Heshbon, Elealeh, Sebam, Nebo, and Beon, + +the land which Yahweh struck before the congregation of Israel, is a land for livestock; and your servants have livestock.” + +They said, “If we have found favor in your sight, let this land be given to your servants for a possession. Don’t bring us over the Jordan.” + +

+

Moses said to the children of Gad, and to the children of Reuben, “Shall your brothers go to war while you sit here? + +Why do you discourage the heart of the children of Israel from going over into the land which Yahweh has given them? + +Your fathers did so when I sent them from Kadesh Barnea to see the land. + +For when they went up to 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 Yahweh had given them. + +Yahweh’s anger burned in that day, and he swore, saying, + +Surely none of the men who came up out of Egypt, from twenty years old and upward, shall see the land which I swore to Abraham, to Isaac, and to Jacob; because they have not wholly followed me, + +except Caleb the son of Jephunneh the Kenizzite, and Joshua the son of Nun, because they have followed Yahweh completely.’ + +Yahweh’s anger burned against Israel, and he made them wander back and forth in the wilderness forty years, until all the generation who had done evil in Yahweh’s sight was consumed. + +

+

Behold, you have risen up in your fathers’ place, an increase of sinful men, to increase the fierce anger of Yahweh toward Israel. + +For if you turn away from after him, he will yet again leave them in the wilderness; and you will destroy all these people.” + +

+

They came near to him, and said, “We will build sheepfolds here for our livestock, and cities for our little ones; + +but we ourselves will be ready armed to go before the children of Israel, until we have brought them to their place. Our little ones shall dwell in the fortified cities because of the inhabitants of the land. + +We will not return to our houses until the children of Israel have all received their inheritance. + +For we will not inherit with them on the other side of the Jordan and beyond, because our inheritance has come to us on this side of the Jordan eastward.” + +

+

Moses said to them: “If you will do this thing, if you will arm yourselves to go before Yahweh to the war, + +and every one of your armed men will pass over the Jordan before Yahweh until he has driven out his enemies from before him, + +and the land is subdued before Yahweh; then afterward you shall return, and be clear of obligation to Yahweh and to Israel. Then this land shall be your possession before Yahweh. + +

+

But if you will not do so, behold, you have sinned against Yahweh; and be sure your sin will find you out. + +Build cities for your little ones, and folds for your sheep; and do that which has proceeded out of your mouth.” + +

+

The children of Gad and the children of Reuben spoke to Moses, saying, “Your servants will do as my lord commands. + +Our little ones, our wives, our flocks, and all our livestock shall be there in the cities of Gilead; + +but your servants will pass over, every man who is armed for war, before Yahweh to battle, as my lord says.” + +

+

So Moses commanded concerning them to Eleazar the priest, and to Joshua the son of Nun, and to the heads of the fathers’ households of the tribes of the children of Israel. + +Moses said to them, “If the children of Gad and the children of Reuben will pass with you over the Jordan, every man who is armed to battle before Yahweh, and the land is subdued before you, then you shall give them the land of Gilead for a possession; + +but if they will not pass over with you armed, they shall have possessions among you in the land of Canaan.” + +

+

The children of Gad and the children of Reuben answered, saying, “As Yahweh has said to your servants, so will we do. + +We will pass over armed before Yahweh into the land of Canaan, and the possession of our inheritance shall remain with us beyond the Jordan.” + +

+

Moses gave to them, even to the children of Gad, and to the children of Reuben, and to the half-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, according to its cities and borders, even the cities of the surrounding land. + +The children of Gad built Dibon, Ataroth, Aroer, + +Atroth-shophan, Jazer, Jogbehah, + +Beth Nimrah, and Beth Haran: fortified cities and folds for sheep. + +The children of Reuben built Heshbon, Elealeh, Kiriathaim, + +Nebo, and Baal Meon, (their names being changed), and Sibmah. They gave other names to the cities which they built. + +The children of Machir the son of Manasseh went to Gilead, took it, and dispossessed the Amorites who were therein. + +Moses gave Gilead to Machir the son of Manasseh; and he lived therein. + +Jair the son of Manasseh went and took its villages, and called them Havvoth Jair. + +Nobah went and took Kenath and its villages, and called it Nobah, after his own name. + +

+ + +

These are the journeys of the children of Israel, when they went out of the land of Egypt by their armies under the hand of Moses and Aaron. + +Moses wrote the starting points of their journeys by the commandment of Yahweh. These are their journeys according to their starting points. + +They traveled from Rameses in the first month, on the fifteenth day of the first month; on the next day after the Passover, the children of Israel went out with a high hand in the sight of all the Egyptians, + +while the Egyptians were burying all their firstborn, whom Yahweh had struck among them. Yahweh also executed judgments on their gods. + +The children of Israel traveled from Rameses, and encamped in Succoth. + +They traveled from Succoth, and encamped in Etham, which is in the edge of the wilderness. + +They traveled from Etham, and turned back to Pihahiroth, which is before Baal Zephon, and they encamped before Migdol. + +They traveled from before Hahiroth, and crossed through the middle of the sea into the wilderness. They went three daysjourney in the wilderness of Etham, and encamped in Marah. + +They traveled from Marah, and came to Elim. In Elim, there were twelve springs of water and seventy palm trees, and they encamped there. + +They traveled from Elim, and encamped by the Red Sea. + +They traveled from the Red Sea, and encamped in the wilderness of Sin. + +They traveled from the wilderness of Sin, and encamped in Dophkah. + +They traveled from Dophkah, and encamped in Alush. + +They traveled from Alush, and encamped in Rephidim, where there was no water for the people to drink. + +They traveled from Rephidim, and encamped in the wilderness of Sinai. + +They traveled from the wilderness of Sinai, and encamped in Kibroth Hattaavah. + +They traveled from Kibroth Hattaavah, and encamped in Hazeroth. + +They traveled from Hazeroth, and encamped in Rithmah. + +They traveled from Rithmah, and encamped in Rimmon Perez. + +They traveled from Rimmon Perez, and encamped in Libnah. + +They traveled from Libnah, and encamped in Rissah. + +They traveled from Rissah, and encamped in Kehelathah. + +They traveled from Kehelathah, and encamped in Mount Shepher. + +They traveled from Mount Shepher, and encamped in Haradah. + +They traveled from Haradah, and encamped in Makheloth. + +They traveled from Makheloth, and encamped in Tahath. + +They traveled from Tahath, and encamped in Terah. + +They traveled from Terah, and encamped in Mithkah. + +They traveled from Mithkah, and encamped in Hashmonah. + +They traveled from Hashmonah, and encamped in Moseroth. + +They traveled from Moseroth, and encamped in Bene Jaakan. + +They traveled from Bene Jaakan, and encamped in Hor Haggidgad. + +They traveled from Hor Haggidgad, and encamped in Jotbathah. + +They traveled from Jotbathah, and encamped in Abronah. + +They traveled from Abronah, and encamped in Ezion Geber. + +They traveled from Ezion Geber, and encamped at Kadesh in the wilderness of Zin. + +They traveled from Kadesh, and encamped in Mount Hor, in the edge of the land of Edom. + +Aaron the priest went up into Mount Hor at the commandment of Yahweh and died there, in the fortieth year after the children of Israel had come out of the land of Egypt, in the fifth month, on the first day of the month. + +Aaron was one hundred twenty-three years old when he died in Mount Hor. + +The Canaanite king of Arad, who lived in the South in the land of Canaan, heard of the coming of the children of Israel. + +They traveled from Mount Hor, and encamped in Zalmonah. + +They traveled from Zalmonah, and encamped in Punon. + +They traveled from Punon, and encamped in Oboth. + +They traveled from Oboth, and encamped in Iye Abarim, in the border of Moab. + +They traveled from Iyim, and encamped in Dibon Gad. + +They traveled from Dibon Gad, and encamped in Almon Diblathaim. + +They traveled from Almon Diblathaim, and encamped in the mountains of Abarim, before Nebo. + +They traveled from the mountains of Abarim, and encamped in the plains of Moab by the Jordan at Jericho. + +They encamped by the Jordan, from Beth Jeshimoth even to Abel Shittim in the plains of Moab. + +Yahweh spoke to Moses in the plains of Moab by the Jordan at Jericho, saying, + +Speak to the children of Israel, and tell them, “When you pass over the Jordan into the land of Canaan, + +then you shall drive out all the inhabitants of the land from before you, destroy all their stone idols, destroy all their molten images, and demolish all their high places. + +You shall take possession of the land, and dwell therein; for I have given the land to you to possess it. + +You shall inherit the land by lot according to your families; to the larger groups you shall give a larger inheritance, and to the smaller you shall give a smaller inheritance. Wherever the lot falls to any man, that shall be his. You shall inherit according to the tribes of your fathers. + +

+

But if you do not drive out the inhabitants of the land from before you, then those you let remain of them will be like pricks in your eyes and thorns in your sides. They will harass you in the land in which you dwell. + +It shall happen that as I thought to do to them, so I will do to you.” + +

+ + +

Yahweh spoke to Moses, saying, + +Command the children of Israel, and tell them, ‘When you come into the land of Canaan (this is the land that shall fall to you for an inheritance, even the land of Canaan according to its borders), + +then your south quarter shall be from the wilderness of Zin along by the side of Edom, and your south border shall be from the end of the Salt Sea eastward. + +Your border shall turn about southward of the ascent of Akrabbim, and pass along to Zin; and it shall pass southward of Kadesh Barnea; and it shall go from there to Hazar Addar, and pass along to Azmon. + +The border shall turn about from Azmon to the brook of Egypt, and it shall end at the sea. + +

+

“‘For the western border, you shall have the great sea and its border. This shall be your west border. + +

+

“‘This shall be your north border: from the great sea you shall mark out for yourselves Mount Hor. + +From Mount Hor you shall mark out to the entrance of Hamath; and the border shall pass by Zedad. + +Then the border shall go to Ziphron, and it shall end at Hazar Enan. This shall be your north border. + +

+

“‘You shall mark out your east border from Hazar Enan to Shepham. + +The border shall go down from Shepham to Riblah, on the east side of Ain. The border shall go down, and shall reach to the side of the sea of Chinnereth eastward. + +The border shall go down to the Jordan, and end at the Salt Sea. This shall be your land according to its borders around it.’” + +

+

Moses commanded the children of Israel, saying, “This is the land which you shall inherit by lot, which Yahweh has commanded to give to the nine tribes, and to the half-tribe; + +for the tribe of the children of Reuben according to their fathers’ houses, the tribe of the children of Gad according to their fathers’ houses, and the half-tribe of Manasseh have received their inheritance. + +The two tribes and the half-tribe have received their inheritance beyond the Jordan at Jericho eastward, toward the sunrise.” + +

+

Yahweh spoke to Moses, saying, + +“These are the names of the men who shall divide the land to you for inheritance: Eleazar the priest, and Joshua the son of Nun. + +You shall take one prince of every tribe, to divide the land for inheritance. + +These are the names of the men: Of the tribe of Judah, Caleb the son of Jephunneh. + +Of the tribe of the children of Simeon, Shemuel the son of Ammihud. + +Of the tribe of Benjamin, Elidad the son of Chislon. + +Of the tribe of the children of Dan a prince, Bukki the son of Jogli. + +Of the children of Joseph: of the tribe of the children of Manasseh a prince, Hanniel the son of Ephod. + +Of the tribe of the children of Ephraim a prince, Kemuel the son of Shiphtan. + +Of the tribe of the children of Zebulun a prince, Elizaphan the son of Parnach. + +Of the tribe of the children of Issachar a prince, Paltiel the son of Azzan. + +Of the tribe of the children of Asher a prince, Ahihud the son of Shelomi. + +Of the tribe of the children of Naphtali a prince, Pedahel the son of Ammihud.” + +These are they whom Yahweh commanded to divide the inheritance to the children of Israel in the land of Canaan. + +

+ + +

Yahweh spoke to Moses in the plains of Moab by the Jordan at Jericho, saying, + +Command the children of Israel to give to the Levites cities to dwell in out of their inheritance. You shall give pasture lands for the cities around them to the Levites. + +They shall have the cities to dwell in. Their pasture lands shall be for their livestock, and for their possessions, and for all their animals. + +

+

The pasture lands of the cities, which you shall give to the Levites, shall be from the wall of the city and outward one thousand cubits35:4 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. around it. + +You shall measure outside of the city for the east side two thousand cubits, and for the south side two thousand cubits, and for the west side two thousand cubits, and for the north side two thousand cubits, the city being in the middle. This shall be the pasture lands of their cities. + +

+

The cities which you shall give to the Levites, they shall be the six cities of refuge, which you shall give for the man slayer to flee to. Besides them you shall give forty-two cities. + +All the cities which you shall give to the Levites shall be forty-eight cities together with their pasture lands. + +Concerning the cities which you shall give of the possession of the children of Israel, from the many you shall take many, and from the few you shall take few. Everyone according to his inheritance which he inherits shall give some of his cities to the Levites.” + +Yahweh spoke to Moses, saying, + +Speak to the children of Israel, and tell them, ‘When you pass over the Jordan into the land of Canaan, + +then you shall appoint for yourselves cities to be cities of refuge for you, that the man slayer who kills any person unwittingly may flee there. + +The cities shall be for your refuge from the avenger, that the man slayer not die until he stands before the congregation for judgment. + +The cities which you shall give shall be for you six cities of refuge. + +You shall give three cities beyond the Jordan, and you shall give three cities in the land of Canaan. They shall be cities of refuge. + +These six cities shall be refuge for the children of Israel, for the stranger, and for the foreigner living among them, that everyone who kills any person unwittingly may flee there. + +

+

“‘But if he struck him with an instrument of iron, so that he died, he is a murderer. The murderer shall surely be put to death. + +If he struck him with a stone in the hand, by which a man may die, and he died, he is a murderer. The murderer shall surely be put to death. + +Or if he struck him with a weapon of wood in the hand, by which a man may die, and he died, he is a murderer. The murderer shall surely be put to death. + +The avenger of blood shall himself put the murderer to death. When he meets him, he shall put him to death. + +If he shoved him out of hatred, or hurled something at him while lying in wait, so that he died, + +or in hostility struck him with his hand, so that he died, he who struck him shall surely be put to death. He is a murderer. The avenger of blood shall put the murderer to death when he meets him. + +

+

“‘But if he shoved him suddenly without hostility, or hurled on him anything without lying in wait, + +or with any stone, by which a man may die, not seeing him, and cast it on him so that he died, and he was not his enemy and not seeking his harm, + +then the congregation shall judge between the striker and the avenger of blood according to these ordinances. + +The congregation shall deliver the man slayer out of the hand of the avenger of blood, and the congregation shall restore him to his city of refuge, where he had fled. He shall dwell therein until the death of the high priest, who was anointed with the holy oil. + +

+

“‘But if the man slayer shall at any time go beyond the border of his city of refuge where he flees, + +and the avenger of blood finds him outside of the border of his city of refuge, and the avenger of blood kills the man slayer, he shall not be guilty of blood, + +because he should have remained in his city of refuge until the death of the high priest. But after the death of the high priest, the man slayer shall return into the land of his possession. + +

+

“‘These things shall be for a statute and ordinance to you throughout your generations in all your dwellings. + +

+

“‘Whoever kills any person, the murderer shall be slain based on the testimony of witnesses; but one witness shall not testify alone against any person so that he dies. + +

+

“‘Moreover you shall take no ransom for the life of a murderer who is guilty of death. He shall surely be put to death. + +

+

“‘You shall take no ransom for him who has fled to his city of refuge, that he may come again to dwell in the land before the death of the priest. + +

+

“‘So you shall not pollute the land where you live; for blood pollutes the land. No atonement can be made for the land for the blood that is shed in it, but by the blood of him who shed it. + +You shall not defile the land which you inhabit, where I dwell; for I, Yahweh, dwell among the children of Israel.’” + +

+ + +

The heads of the fathers’ households of the family of the children of Gilead, the son of Machir, the son of Manasseh, of the families of the sons of Joseph, came near and spoke before Moses and before the princes, the heads of the fathers’ households of the children of Israel. + +They said, “Yahweh commanded my lord to give the land for inheritance by lot to the children of Israel. My lord was commanded by Yahweh to give the inheritance of Zelophehad our brother to his daughters. + +If they are married to any of the sons of the other tribes of the children of Israel, then their inheritance will be taken away from the inheritance of our fathers, and will be added to the inheritance of the tribe to which they shall belong. So it will be taken away from the lot of our inheritance. + +When the jubilee of the children of Israel comes, then their inheritance will be added to the inheritance of the tribe to which they shall belong. So their inheritance will be taken away from the inheritance of the tribe of our fathers.” + +

+

Moses commanded the children of Israel according to Yahweh’s word, saying, “The tribe of the sons of Joseph speak what is right. + +This is the thing which Yahweh commands concerning the daughters of Zelophehad, saying, ‘Let them be married to whom they think best, only they shall marry into the family of the tribe of their father. + +So shall no inheritance of the children of Israel move from tribe to tribe; for the children of Israel shall all keep the inheritance of the tribe of his fathers. + +Every daughter who possesses an inheritance in any tribe of the children of Israel shall be wife to one of the family of the tribe of her father, that the children of Israel may each possess the inheritance of his fathers. + +So shall no inheritance move from one tribe to another tribe; for the tribes of the children of Israel shall each keep his own inheritance.’” + +

+

The daughters of Zelophehad did as Yahweh commanded Moses: + +for Mahlah, Tirzah, Hoglah, Milcah, and Noah, the daughters of Zelophehad, were married to their father’s brotherssons. + +They were married into the families of the sons of Manasseh the son of Joseph. Their inheritance remained in the tribe of the family of their father. + +

+

These are the commandments and the ordinances which Yahweh commanded by Moses to the children of Israel in the plains of Moab by the Jordan at Jericho. + +

+
+1World English Bible (WEB) +Deuteronomy +The Fifth Book of Moses, Commonly Called Deuteronomy +Deuteronomy +Deu +

The Fifth Book of Moses, +

+

Commonly Called +

+

Deuteronomy +

+ + +

These are the words which Moses spoke to all Israel beyond the Jordan in the wilderness, in the Arabah opposite Suf, between Paran, Tophel, Laban, Hazeroth, and Dizahab. + +It is eleven daysjourney from Horeb by the way of Mount Seir to Kadesh Barnea. + +In the fortieth year, in the eleventh month, on the first day of the month, Moses spoke to the children of Israel according to all that Yahweh1:3 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. had given him in commandment to them, + +after he had struck Sihon the king of the Amorites who lived in Heshbon, and Og the king of Bashan who lived in Ashtaroth, at Edrei. + +Beyond the Jordan, in the land of Moab, Moses began to declare this law, saying, + +Yahweh our God1:6 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). spoke to us in Horeb, saying, ‘You have lived long enough at this mountain. + +Turn, and take your journey, and go to the hill country of the Amorites and to all the places near there: in the Arabah, in the hill country, in the lowland, in the South, by the seashore, in the land of the Canaanites, and in Lebanon as far as the great river, the river Euphrates. + +Behold,1:8 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I have set the land before you. Go in and possess the land which Yahweh swore to your fathers—to Abraham, to Isaac, and to Jacobto give to them and to their offspring1:8 +or, seed after them.’” + +

+

I spoke to you at that time, saying, “I am not able to bear you myself alone. + +Yahweh your God has multiplied you, and behold, you are today as the stars of the sky for multitude. + +May Yahweh, the God of your fathers, make you a thousand times as many as you are and bless you, as he has promised you! + +How can I myself alone bear your problems, your burdens, and your strife? + +Take wise men of understanding who are respected among your tribes, and I will make them heads over you.” + +

+

You answered me, and said, “The thing which you have spoken is good to do.” + +So I took the heads of your tribes, wise and respected men, and made them heads over you, captains of thousands, captains of hundreds, captains of fifties, captains of tens, and officers, according to your tribes. + +I commanded your judges at that time, saying, “Hear cases between your brothers and judge righteously between a man and his brother, and the foreigner who is living with him. + +You shall not show partiality in judgment; you shall hear the small and the great alike. You shall not be afraid of the face of man, for the judgment is God’s. The case that is too hard for you, you shall bring to me, and I will hear it.” + +I commanded you at that time all the things which you should do. + +We traveled from Horeb and went through all that great and terrible wilderness which you saw, by the way to the hill country of the Amorites, as Yahweh our God commanded us; and we came to Kadesh Barnea. + +I said to you, “You have come to the hill country of the Amorites, which Yahweh our God gives to us. + +Behold, Yahweh your God has set the land before you. Go up, take possession, as Yahweh the God of your fathers has spoken to you. Don’t be afraid, neither be dismayed.” + +

+

You came near to me, everyone of you, and said, “Let’s send men before us, that they may search the land for us, and bring back to us word of the way by which we must go up, and the cities to which we shall come.” + +

+

The thing pleased me well. I took twelve of your men, one man for every tribe. + +They turned and went up into the hill country, and came to the valley of Eshcol, and spied it out. + +They took some of the fruit of the land in their hands and brought it down to us, and brought us word again, and said, “It is a good land which Yahweh our God gives to us.” + +

+

Yet you wouldn’t go up, but rebelled against the commandment of Yahweh your God. + +You murmured in your tents, and said, “Because Yahweh hated us, he has brought us out of the land of Egypt, to deliver us into the hand of the Amorites to destroy us. + +Where are we going up? Our brothers have made our heart melt, saying, ‘The people are greater and taller than we. The cities are great and fortified up to the sky. Moreover we have seen the sons of the Anakim there!’” + +

+

Then I said to you, “Don’t be terrified. Don’t be afraid of them. + +Yahweh your God, who goes before you, he will fight for you, according to all that he did for you in Egypt before your eyes, + +and in the wilderness where you have seen how that Yahweh your God carried you, as a man carries his son, in all the way that you went, until you came to this place.” + +

+

Yet in this thing you didn’t believe Yahweh your God, + +who went before you on the way, to seek out a place for you to pitch your tents in: in fire by night, to show you by what way you should go, and in the cloud by day. + +Yahweh heard the voice of your words and was angry, and swore, saying, + +Surely not one of these men of this evil generation shall see the good land which I swore to give to your fathers, + +except Caleb the son of Jephunneh. He shall see it. I will give the land that he has trodden on to him and to his children, because he has wholly followed Yahweh.” + +

+

Also Yahweh was angry with me for your sakes, saying, “You also shall not go in there. + +Joshua the son of Nun, who stands before you, shall go in there. Encourage him, for he shall cause Israel to inherit it. + +Moreover your little ones, whom you said would be captured or killed, your children, who today have no knowledge of good or evil, shall go in there. I will give it to them, and they shall possess it. + +But as for you, turn, and take your journey into the wilderness by the way to the Red Sea.” + +

+

Then you answered and said to me, “We have sinned against Yahweh. We will go up and fight, according to all that Yahweh our God commanded us.” Every man of you put on his weapons of war, and presumed to go up into the hill country. + +

+

Yahweh said to me, “Tell them, ‘Don’t go up and don’t fight; for I am not among you, lest you be struck before your enemies.’” + +

+

So I spoke to you, and you didn’t listen; but you rebelled against the commandment of Yahweh, and were presumptuous, and went up into the hill country. + +The Amorites, who lived in that hill country, came out against you and chased you as bees do, and beat you down in Seir, even to Hormah. + +You returned and wept before Yahweh, but Yahweh didn’t listen to your voice, nor turn his ear to you. + +So you stayed in Kadesh many days, according to the days that you remained. + +

+ + +

Then we turned, and took our journey into the wilderness by the way to the Red Sea, as Yahweh spoke to me; and we encircled Mount Seir many days. + +

+

Yahweh spoke to me, saying, + +You have encircled this mountain long enough. Turn northward. + +Command the people, saying, ‘You are to pass through the border of your brothers, the children of Esau, who dwell in Seir; and they will be afraid of you. Therefore be careful. + +Don’t contend with them; for I will not give you any of their land, no, not so much as for the sole of the foot to tread on, because I have given Mount Seir to Esau for a possession. + +You shall purchase food from them for money, that you may eat. You shall also buy water from them for money, that you may drink.’” + +

+

For Yahweh your God has blessed you in all the work of your hands. He has known your walking through this great wilderness. These forty years, Yahweh your God has been with you. You have lacked nothing. + +

+

So we passed by from our brothers, the children of Esau, who dwell in Seir, from the way of the Arabah from Elath and from Ezion Geber. We turned and passed by the way of the wilderness of Moab. + +

+

Yahweh said to me, “Don’t bother Moab, neither contend with them in battle; for I will not give you any of his land for a possession, because I have given Ar to the children of Lot for a possession.” + +

+

(The Emim lived there before, a great and numerous people, and tall as the Anakim. + +These also are considered to be Rephaim, as the Anakim; but the Moabites call them Emim. + +The Horites also lived in Seir in the past, but the children of Esau succeeded them. They destroyed them from before them, and lived in their place, as Israel did to the land of his possession, which Yahweh gave to them.) + +

+

Now rise up and cross over the brook Zered.” We went over the brook Zered. + +

+

The days in which we came from Kadesh Barnea until we had come over the brook Zered were thirty-eight years, until all the generation of the men of war were consumed from the middle of the camp, as Yahweh swore to them. + +Moreover Yahweh’s hand was against them, to destroy them from the middle of the camp, until they were consumed. + +So, when all the men of war were consumed and dead from among the people, + +Yahweh spoke to me, saying, + +You are to pass over Ar, the border of Moab, today. + +When you come near the border of the children of Ammon, don’t bother them, nor contend with them; for I will not give you any of the land of the children of Ammon for a possession, because I have given it to the children of Lot for a possession.” + +

+

(That also is considered a land of Rephaim. Rephaim lived there in the past, but the Ammonites call them Zamzummim, + +a great people, many, and tall, as the Anakim; but Yahweh destroyed them from before Israel, and they succeeded them, and lived in their place, + +as he did for the children of Esau who dwell in Seir, when he destroyed the Horites from before them; and they succeeded them, and lived in their place even to this day. + +Then the Avvim, who lived in villages as far as Gaza: the Caphtorim, who came out of Caphtor, destroyed them and lived in their place.) + +

+

Rise up, take your journey, and pass over the valley of the Arnon. Behold, I have given into your hand Sihon the Amorite, king of Heshbon, and his land; begin to possess it, and contend with him in battle. + +Today I will begin to put the dread of you and the fear of you on the peoples who are under the whole sky, who shall hear the report of you, and shall tremble and be in anguish because of you.” + +

+

I sent messengers out of the wilderness of Kedemoth to Sihon king of Heshbon with words of peace, saying, + +Let me pass through your land. I will go along by the highway. I will turn neither to the right hand nor to the left. + +You shall sell me food for money, that I may eat; and give me water for money, that I may drink. Just let me pass through on my feet, + +as the children of Esau who dwell in Seir, and the Moabites who dwell in Ar, did to me, until I pass over the Jordan into the land which Yahweh our God gives us.” + +But Sihon king of Heshbon would not let us pass by him, for Yahweh your God hardened his spirit and made his heart obstinate, that he might deliver him into your hand, as it is today. + +

+

Yahweh said to me, “Behold, I have begun to deliver up Sihon and his land before you. Begin to possess, that you may inherit his land.” + +Then Sihon came out against us, he and all his people, to battle at Jahaz. + +Yahweh our God delivered him up before us; and we struck him, his sons, and all his people. + +We took all his cities at that time, and utterly destroyed every inhabited city, with the women and the little ones. We left no one remaining. + +Only the livestock we took for plunder for ourselves, with the plunder of the cities which we had taken. + +From Aroer, which is on the edge of the valley of the Arnon, and the city that is in the valley, even to Gilead, there was not a city too high for us. Yahweh our God delivered up all before us. + +Only to the land of the children of Ammon you didn’t come near: all the banks of the river Jabbok, and the cities of the hill country, and wherever Yahweh our God forbade us. + +

+ + +

Then we turned, and went up the way to Bashan. Og the king of Bashan came out against us, he and all his people, to battle at Edrei. + +Yahweh said to me, “Don’t fear him; for I have delivered him, with all his people and his land, into your hand. You shall do to him as you did to Sihon king of the Amorites, who lived at Heshbon.” + +

+

So Yahweh our God also delivered into our hand Og, the king of Bashan, and all his people. We struck him until no one was left to him remaining. + +We took all his cities at that time. There was not a city which we didn’t take from them: sixty cities, all the region of Argob, the kingdom of Og in Bashan. + +All these were cities fortified with high walls, gates, and bars, in addition to a great many villages without walls. + +We utterly destroyed them, as we did to Sihon king of Heshbon, utterly destroying every inhabited city, with the women and the little ones. + +But all the livestock, and the plunder of the cities, we took for plunder for ourselves. + +We took the land at that time out of the hand of the two kings of the Amorites who were beyond the Jordan, from the valley of the Arnon to Mount Hermon. + +(The Sidonians call Hermon Sirion, and the Amorites call it Senir.) + +We took all the cities of the plain, and all Gilead, and all Bashan, to Salecah and Edrei, cities of the kingdom of Og in Bashan. + +(For only Og king of Bashan remained of the remnant of the Rephaim. Behold, his bedstead was a bedstead of iron. Isn’t it in Rabbah of the children of Ammon? Nine cubits3:11 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. was its length, and four cubits its width, after the cubit of a man.) + +This land we took in possession at that time: from Aroer, which is by the valley of the Arnon, and half the hill country of Gilead with its cities, I gave to the Reubenites and to the Gadites; + +and the rest of Gilead, and all Bashan, the kingdom of Og, I gave to the half-tribe of Manassehall the region of Argob, even all Bashan. (The same is called the land of Rephaim. + +Jair the son of Manasseh took all the region of Argob, to the border of the Geshurites and the Maacathites, and called them, even Bashan, after his own name, Havvoth Jair, to this day.) + +I gave Gilead to Machir. + +To the Reubenites and to the Gadites I gave from Gilead even to the valley of the Arnon, the middle of the valley, and its border, even to the river Jabbok, which is the border of the children of Ammon; + +the Arabah also, and the Jordan and its border, from Chinnereth even to the sea of the Arabah, the Salt Sea, under the slopes of Pisgah eastward. + +

+

I commanded you at that time, saying, “Yahweh your God has given you this land to possess it. All of you men of valor shall pass over armed before your brothers, the children of Israel. + +But your wives, and your little ones, and your livestock, (I know that you have much livestock), shall live in your cities which I have given you, + +until Yahweh gives rest to your brothers, as to you, and they also possess the land which Yahweh your God gives them beyond the Jordan. Then you shall each return to his own possession, which I have given you.” + +

+

I commanded Joshua at that time, saying, “Your eyes have seen all that Yahweh your God has done to these two kings. So shall Yahweh do to all the kingdoms where you go over. + +You shall not fear them; for Yahweh your God himself fights for you.” + +

+

I begged Yahweh at that time, saying, + +Lord3:24 +The word translated “Lord” is “Adonai.” Yahweh, you have begun to show your servant your greatness, and your strong hand. For what god is there in heaven or in earth that can do works like yours, and mighty acts like yours? + +Please let me go over and see the good land that is beyond the Jordan, that fine mountain, and Lebanon.” + +

+

But Yahweh was angry with me because of you, and didn’t listen to me. Yahweh said to me, “That is enough! Speak no more to me of this matter. + +Go up to the top of Pisgah, and lift up your eyes westward, and northward, and southward, and eastward, and see with your eyes; for you shall not go over this Jordan. + +But commission 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 you shall see.” + +So we stayed in the valley near Beth Peor. + +

+ + +

Now, Israel, listen to the statutes and to the ordinances which I teach you, to do them, that you may live and go in and possess the land which Yahweh, the God of your fathers, gives you. + +You shall not add to the word which I command you, neither shall you take away from it, that you may keep the commandments of Yahweh your God which I command you. + +Your eyes have seen what Yahweh did because of Baal Peor; for Yahweh your God has destroyed all the men who followed Baal Peor from among you. + +But you who were faithful to Yahweh your God are all alive today. + +Behold, I have taught you statutes and ordinances, even as Yahweh my God commanded me, that you should do so in the middle of the land where you go in to possess it. + +Keep therefore and do them; for this is your wisdom and your understanding in the sight of the peoples who shall hear all these statutes and say, “Surely this great nation is a wise and understanding people.” + +For what great nation is there that has a god so near to them as Yahweh our God is whenever we call on him? + +What great nation is there that has statutes and ordinances so righteous as all this law which I set before you today? + +

+

Only be careful, and keep your soul diligently, lest you forget the things which your eyes saw, and lest they depart from your heart all the days of your life; but make them known to your children and your children’s children— + +the day that you stood before Yahweh your God in Horeb, when Yahweh said to me, “Assemble the people to me, and I will make them hear my words, that they may learn to fear me all the days that they live on the earth, and that they may teach their children.” + +You came near and stood under the mountain. The mountain burned with fire to the heart of the sky, with darkness, cloud, and thick darkness. + +Yahweh spoke to you out of the middle of the fire: you heard the voice of words, but you saw no form; you only heard a voice. + +He declared to you his covenant, which he commanded you to perform, even the ten commandments. He wrote them on two stone tablets. + +Yahweh commanded me at that time to teach you statutes and ordinances, that you might do them in the land where you go over to possess it. + +Be very careful, for you saw no kind of form on the day that Yahweh spoke to you in Horeb out of the middle of the fire, + +lest you corrupt yourselves, and make yourself a carved image in the form of any figure, the likeness of male or female, + +the likeness of any animal that is on the earth, the likeness of any winged bird that flies in the sky, + +the likeness of anything that creeps on the ground, the likeness of any fish that is in the water under the earth; + +and lest you lift up your eyes to the sky, and when you see the sun and the moon and the stars, even all the army of the sky, you are drawn away and worship them, and serve them, which Yahweh your God has allotted to all the peoples under the whole sky. + +But Yahweh has taken you, and brought you out of the iron furnace, out of Egypt, to be to him a people of inheritance, as it is today. + +Furthermore Yahweh was angry with me for your sakes, and swore that I should not go over the Jordan, and that I should not go in to that good land which Yahweh your God gives you for an inheritance; + +but I must die in this land. I must not go over the Jordan, but you shall go over and possess that good land. + +Be careful, lest you forget the covenant of Yahweh your God, which he made with you, and make yourselves a carved image in the form of anything which Yahweh your God has forbidden you. + +For Yahweh your God is a devouring fire, a jealous God. + +When you father children and children’s children, and you have been long in the land, and then corrupt yourselves, and make a carved image in the form of anything, and do that which is evil in Yahweh your God’s sight to provoke him to anger, + +I call heaven and earth to witness against you today, that you will soon utterly perish from off the land which you go over the Jordan to possess it. You will not prolong your days on it, but will utterly be destroyed. + +Yahweh will scatter you among the peoples, and you will be left few in number among the nations where Yahweh will lead you away. + +There you will serve gods, the work of men’s hands, wood and stone, which neither see, nor hear, nor eat, nor smell. + +But from there you shall seek Yahweh your God, and you will find him when you search after him with all your heart and with all your soul. + +When you are in oppression, and all these things have come on you, in the latter days you shall return to Yahweh your God and listen to his voice. + +For Yahweh your God is a merciful God. He will not fail you nor destroy you, nor forget the covenant of your fathers which he swore to them. + +For ask now of the days that are past, which were before you, since the day that God created man on the earth, and from the one end of the sky to the other, whether there has been anything as great as this thing is, or has been heard like it? + +Did a people ever hear the voice of God speaking out of the middle of the fire, as you have heard, and live? + +Or has God tried to go and take a nation for himself from among another nation, by trials, by signs, by wonders, by war, by a mighty hand, by an outstretched arm, and by great terrors, according to all that Yahweh your God did for you in Egypt before your eyes? + +It was shown to you so that you might know that Yahweh is God. There is no one else besides him. + +Out of heaven he made you to hear his voice, that he might instruct you. On earth he made you to see his great fire; and you heard his words out of the middle of the fire. + +Because he loved your fathers, therefore he chose their offspring after them, and brought you out with his presence, with his great power, out of Egypt; + +to drive out nations from before you greater and mightier than you, to bring you in, to give you their land for an inheritance, as it is today. + +Know therefore today, and take it to heart, that Yahweh himself is God in heaven above and on the earth beneath. There is no one else. + +You shall keep his statutes and his commandments which I command you today, that it may go well with you and with your children after you, and that you may prolong your days in the land which Yahweh your God gives you for all time. + +

+

Then Moses set apart three cities beyond the Jordan toward the sunrise, + +that the man slayer might flee there, who kills his neighbor unintentionally and didn’t hate him in time past, and that fleeing to one of these cities he might live: + +Bezer in the wilderness, in the plain country, for the Reubenites; and Ramoth in Gilead for the Gadites; and Golan in Bashan for the Manassites. + +

+

This is the law which Moses set before the children of Israel. + +These are the testimonies, and the statutes, and the ordinances which Moses spoke to the children of Israel when they came out of Egypt, + +beyond the Jordan, in the valley opposite Beth Peor, in the land of Sihon king of the Amorites, who lived at Heshbon, whom Moses and the children of Israel struck when they came out of Egypt. + +They took possession of his land and the land of Og king of Bashan, the two kings of the Amorites, who were beyond the Jordan toward the sunrise; + +from Aroer, which is on the edge of the valley of the Arnon, even to Mount Siyon (also called Hermon), + +and all the Arabah beyond the Jordan eastward, even to the sea of the Arabah, under the slopes of Pisgah. + +

+ + +

Moses called to all Israel, and said to them, “Hear, Israel, the statutes and the ordinances which I speak in your ears today, that you may learn them, and observe to do them.” + +Yahweh our God made a covenant with us in Horeb. + +Yahweh didn’t make this covenant with our fathers, but with us, even us, who are all of us here alive today. + +Yahweh spoke with you face to face on the mountain out of the middle of the fire, + +(I stood between Yahweh and you at that time, to show you Yahweh’s word; for you were afraid because of the fire, and didn’t go up onto the mountain) saying, + +

+

I am Yahweh your God, who brought you out of the land of Egypt, out of the house of bondage. + +

+

You shall have no other gods before me. + +

+

You shall not make a carved image for yourselfany likeness of what is in heaven above, or what is on the earth beneath, or that is in the water under the earth. + +You shall not bow yourself down to them, nor serve them, for I, Yahweh your God, am a jealous God, visiting the iniquity of the fathers on the children and on the third and on the fourth generation of those who hate me + +and showing loving kindness to thousands of those who love me and keep my commandments. + +

+

You shall not misuse the name of Yahweh your God;5:11 +or, You shall not take the name of Yahweh your God in vain; for Yahweh will not hold him guiltless who misuses his name. + +

+

Observe the Sabbath day, to keep it holy, as Yahweh your God commanded you. + +You shall labor six days, and do all your work; + +but the seventh day is a Sabbath to Yahweh your God, in which you shall not do any workneither you, nor your son, nor your daughter, nor your male servant, nor your female servant, nor your ox, nor your donkey, nor any of your livestock, nor your stranger who is within your gates; that your male servant and your female servant may rest as well as you. + +You shall remember that you were a servant in the land of Egypt, and Yahweh your God brought you out of there by a mighty hand and by an outstretched arm. Therefore Yahweh your God commanded you to keep the Sabbath day. + +

+

Honor your father and your mother, as Yahweh your God commanded you, that your days may be long and that it may go well with you in the land which Yahweh your God gives you. + +

+

You shall not murder. + +

+

You shall not commit adultery. + +

+

You shall not steal. + +

+

You shall not give false testimony against your neighbor. + +

+

You shall not covet your neighbor’s wife. Neither shall you desire your neighbor’s house, his field, or his male servant, or his female servant, his ox, or his donkey, or anything that is your neighbor’s.” + +

+

Yahweh spoke these words to all your assembly on the mountain out of the middle of the fire, of the cloud, and of the thick darkness, with a great voice. He added no more. He wrote them on two stone tablets, and gave them to me. + +When you heard the voice out of the middle of the darkness, while the mountain was burning with fire, you came near to me, even all the heads of your tribes, and your elders; + +and you said, “Behold, Yahweh our God has shown us his glory and his greatness, and we have heard his voice out of the middle of the fire. We have seen today that God does speak with man, and he lives. + +Now therefore, why should we die? For this great fire will consume us. If we hear Yahweh our God’s voice any more, then we shall die. + +For who is there of all flesh who has heard the voice of the living God speaking out of the middle of the fire, as we have, and lived? + +Go near, and hear all that Yahweh our God shall say, and tell us all that Yahweh our God tells you; and we will hear it, and do it.” + +

+

Yahweh heard the voice of your words when you spoke to me; and Yahweh said to me, “I have heard the voice of the words of this people which they have spoken to you. They have well said all that they have spoken. + +Oh that there were such a 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 forever! + +

+

Go tell them, ‘Return to your tents.’ + +But as for you, stand here by me, and I will tell you all the commandments, and the statutes, and the ordinances, which you shall teach them, that they may do them in the land which I give them to possess.” + +

+

You shall observe to do therefore as Yahweh your God has commanded you. You shall not turn away to the right hand or to the left. + +You shall walk in all the way which Yahweh your God has commanded you, that you may live and that it may be well with you, and that you may prolong your days in the land which you shall possess. + +

+ + +

Now these are the commandments, the statutes, and the ordinances, which Yahweh your God commanded to teach you, that you might do them in the land that you go over to possess; + +that you might fear Yahweh your God, to keep all his statutes and his commandments, which I command youyou, your son, and your son’s son, all the days of your life; and that your days may be prolonged. + +Hear therefore, Israel, and observe to do it, that it may be well with you, and that you may increase mightily, as Yahweh, the God of your fathers, has promised to you, in a land flowing with milk and honey. + +

+

Hear, Israel: Yahweh is our God. Yahweh is one. + +You shall love Yahweh your God with all your heart, with all your soul, and with all your might. + +These words, which I command you today, shall be on your heart; + +and you shall teach them diligently to your children, and shall talk of them when you sit in your house, and when you walk by the way, and when you lie down, and when you rise up. + +You shall bind them for a sign on your hand, and they shall be for frontlets between your eyes. + +You shall write them on the door posts of your house and on your gates. + +

+

It shall be, when Yahweh your God brings you into the land which he swore to your fathers, to Abraham, to Isaac, and to Jacob, to give you, great and goodly cities which you didn’t build, + +and houses full of all good things which you didn’t fill, and cisterns dug out which you didn’t dig, vineyards and olive trees which you didn’t plant, and you shall eat and be full; + +then beware lest you forget Yahweh, who brought you out of the land of Egypt, out of the house of bondage. + +You shall fear Yahweh your God; and you shall serve him, and shall swear by his name. + +You shall not go after other gods, of the gods of the peoples who are around you, + +for Yahweh your God among you is a jealous God, lest the anger of Yahweh your God be kindled against you, and he destroy you from off the face of the earth. + +You shall not tempt Yahweh your God, as you tempted him in Massah. + +You shall diligently keep the commandments of Yahweh your God, and his testimonies, and his statutes, which he has commanded you. + +You shall do that which is right and good in Yahweh’s sight, that it may be well with you and that you may go in and possess the good land which Yahweh swore to your fathers, + +to thrust out all your enemies from before you, as Yahweh has spoken. + +

+

When your son asks you in time to come, saying, “What do the testimonies, the statutes, and the ordinances, which Yahweh our God has commanded you mean?” + +then you shall tell your son, “We were Pharaoh’s slaves in Egypt. Yahweh brought us out of Egypt with a mighty hand; + +and Yahweh showed great and awesome signs and wonders on Egypt, on Pharaoh, and on all his house, before our eyes; + +and he brought us out from there, that he might bring us in, to give us the land which he swore to our fathers. + +Yahweh commanded us to do all these statutes, to fear Yahweh our God, for our good always, that he might preserve us alive, as we are today. + +It shall be righteousness to us, if we observe to do all these commandments before Yahweh our God, as he has commanded us.” + +

+ + +

When Yahweh your God brings you into the land where you go to possess it, and casts out many nations before youthe Hittite, the Girgashite, the Amorite, the Canaanite, the Perizzite, the Hivite, and the Jebusiteseven nations greater and mightier than you; + +and when Yahweh your God delivers them up before you, and you strike them, then you shall utterly destroy them. You shall make no covenant with them, nor show mercy to them. + +You shall not make marriages with them. You shall not give your daughter to his son, nor shall you take his daughter for your son. + +For that would turn away your sons from following me, that they may serve other gods. So Yahweh’s anger would be kindled against you, and he would destroy you quickly. + +But you shall deal with them like this: you shall break down their altars, dash their pillars in pieces, cut down their Asherah poles, and burn their engraved images with fire. + +For you are a holy people to Yahweh your God. Yahweh your God has chosen you to be a people for his own possession, above all peoples who are on the face of the earth. + +Yahweh didn’t set his love on you nor choose you, because you were more in number than any people; for you were the fewest of all peoples; + +but because Yahweh loves you, and because he desires to keep the oath which he swore to your fathers, Yahweh has brought you out with a mighty hand and redeemed you out of the house of bondage, from the hand of Pharaoh king of Egypt. + +Know therefore that Yahweh your God himself is God, the faithful God, who keeps covenant and loving kindness to a thousand generations with those who love him and keep his commandments, + +and repays those who hate him to their face, to destroy them. He will not be slack to him who hates him. He will repay him to his face. + +You shall therefore keep the commandments, the statutes, and the ordinances which I command you today, to do them. + +It shall happen, because you listen to these ordinances and keep and do them, that Yahweh your God will keep with you the covenant and the loving kindness which he swore to your fathers. + +He will love you, bless you, and multiply you. He will also bless the fruit of your body and the fruit of your ground, your grain and your new wine and your oil, the increase of your livestock and the young of your flock, in the land which he swore to your fathers to give you. + +You will be blessed above all peoples. There won’t be male or female barren among you, or among your livestock. + +Yahweh will take away from you all sickness; and he will put none of the evil diseases of Egypt, which you know, on you, but will lay them on all those who hate you. + +You shall consume all the peoples whom Yahweh your God shall deliver to you. Your eye shall not pity them. You shall not serve their gods; for that would be a snare to you. + +If you shall say in your heart, “These nations are more than I; how can I dispossess them?” + +you shall not be afraid of them. You shall remember well what Yahweh your God did to Pharaoh and to all Egypt: + +the great trials which your eyes saw, the signs, the wonders, the mighty hand, and the outstretched arm, by which Yahweh your God brought you out. So shall Yahweh your God do to all the peoples of whom you are afraid. + +Moreover Yahweh your God will send the hornet among them, until those who are left, and hide themselves, perish from before you. + +You shall not be scared of them; for Yahweh your God is among you, a great and awesome God. + +Yahweh your God will cast out those nations before you little by little. You may not consume them at once, lest the animals of the field increase on you. + +But Yahweh your God will deliver them up before you, and will confuse them with a great confusion, until they are destroyed. + +He will deliver their kings into your hand, and you shall make their name perish from under the sky. No one will be able to stand before you until you have destroyed them. + +You shall burn the engraved images of their gods with fire. You shall not covet the silver or the gold that is on them, nor take it for yourself, lest you be snared in it; for it is an abomination to Yahweh your God. + +You shall not bring an abomination into your house and become a devoted thing like it. You shall utterly detest it. You shall utterly abhor it; for it is a devoted thing. + +

+ + +

You shall observe to do all the commandments which I command you today, that you may live, and multiply, and go in and possess the land which Yahweh swore to your fathers. + +You shall remember all the way which Yahweh your God has led you these forty years in the wilderness, that he might humble you, to test you, to know what was in your heart, whether you would keep his commandments or not. + +He humbled you, allowed you to be hungry, and fed you with manna, which you didn’t know, neither did your fathers know, that he might teach you that man does not live by bread only, but man lives by every word that proceeds out of Yahweh’s mouth. + +Your clothing didn’t grow old on you, neither did your foot swell, these forty years. + +You shall consider in your heart that as a man disciplines his son, so Yahweh your God disciplines you. + +You shall keep the commandments of Yahweh your God, to walk in his ways, and to fear him. + +For Yahweh your God brings you into a good land, a land of brooks of water, of springs, and underground water flowing into valleys and hills; + +a land of wheat, barley, vines, fig trees, and pomegranates; a land of olive trees and honey; + +a land in which you shall eat bread without scarcity, you shall not lack anything in it; a land whose stones are iron, and out of whose hills you may dig copper. + +You shall eat and be full, and you shall bless Yahweh your God for the good land which he has given you. + +

+

Beware lest you forget Yahweh your God, in not keeping his commandments, his ordinances, and his statutes, which I command you today; + +lest, when you have eaten and are full, and have built fine houses and lived in them; + +and when your herds and your flocks multiply, and your silver and your gold is multiplied, and all that you have is multiplied; + +then your heart might be lifted up, and you forget Yahweh your God, who brought you out of the land of Egypt, out of the house of bondage; + +who led you through the great and terrible wilderness, with venomous snakes and scorpions, and thirsty ground where there was no water; who poured water for you out of the rock of flint; + +who fed you in the wilderness with manna, which your fathers didn’t know, that he might humble you, and that he might prove you, to do you good at your latter end; + +and lest you say in your heart, “My power and the might of my hand has gotten me this wealth.” + +But you shall remember Yahweh your God, for it is he who gives you power to get wealth, that he may establish his covenant which he swore to your fathers, as it is today. + +

+

It shall be, if you shall forget Yahweh your God, and walk after other gods, and serve them and worship them, I testify against you today that you shall surely perish. + +As the nations that Yahweh makes to perish before you, so you shall perish, because you wouldn’t listen to Yahweh your God’s voice. + +

+ + +

Hear, Israel! You are to pass over the Jordan today, to go in to dispossess nations greater and mightier than yourself, cities great and fortified up to the sky, + +a people great and tall, the sons of the Anakim, whom you know, and of whom you have heard say, “Who can stand before the sons of Anak?” + +Know therefore today that Yahweh your God is he who goes over before you as a devouring fire. He will destroy them and he will bring them down before you. So you shall drive them out and make them perish quickly, as Yahweh has spoken to you. + +

+

Don’t say in your heart, after Yahweh your God has thrust them out from before you, “For my righteousness Yahweh has brought me in to possess this land;” because Yahweh drives them out before you because of the wickedness of these nations. + +Not for your righteousness or for the uprightness of your heart do you go in to possess their land; but for the wickedness of these nations Yahweh your God does drive them out from before you, and that he may establish the word which Yahweh swore to your fathers, to Abraham, to Isaac, and to Jacob. + +Know therefore that Yahweh your God doesn’t give you this good land to possess for your righteousness, for you are a stiff-necked people. + +Remember, and don’t forget, how you provoked Yahweh your God to wrath in the wilderness. From the day that you left the land of Egypt until you came to this place, you have been rebellious against Yahweh. + +Also in Horeb you provoked Yahweh to wrath, and Yahweh was angry with you to destroy you. + +When I had gone up onto the mountain to receive the stone tablets, even the tablets of the covenant which Yahweh made with you, then I stayed on the mountain forty days and forty nights. I neither ate bread nor drank water. + +Yahweh delivered to me the two stone tablets written with God’s finger. On them were all the words which Yahweh spoke with you on the mountain out of the middle of the fire in the day of the assembly. + +

+

It came to pass at the end of forty days and forty nights that Yahweh gave me the two stone tablets, even the tablets of the covenant. + +Yahweh said to me, “Arise, get down quickly from here; for your people whom you have brought out of Egypt have corrupted themselves. They have quickly turned away from the way which I commanded them. They have made a molten image for themselves!” + +

+

Furthermore Yahweh spoke to me, saying, “I have seen these people, and behold, they are a stiff-necked people. + +Leave me alone, that I may destroy them, and blot out their name from under the sky; and I will make of you a nation mightier and greater than they.” + +

+

So I turned and came down from the mountain, and the mountain was burning with fire. The two tablets of the covenant were in my two hands. + +I looked, and behold, you had sinned against Yahweh your God. You had made yourselves a molded calf. You had quickly turned away from the way which Yahweh had commanded you. + +I took hold of the two tablets, and threw them out of my two hands, and broke them before your eyes. + +I fell down before Yahweh, as at the first, forty days and forty nights. I neither ate bread nor drank water, because of all your sin which you sinned, in doing that which was evil in Yahweh’s sight, to provoke him to anger. + +For I was afraid of the anger and hot displeasure with which Yahweh was angry against you to destroy you. But Yahweh listened to me that time also. + +Yahweh was angry enough with Aaron to destroy him. I prayed for Aaron also at the same time. + +I took your sin, the calf which you had made, and burned it with fire, and crushed it, grinding it very small, until it was as fine as dust. I threw its dust into the brook that descended out of the mountain. + +At Taberah, at Massah, and at Kibroth Hattaavah you provoked Yahweh to wrath. + +When Yahweh sent you from Kadesh Barnea, saying, “Go up and possess the land which I have given you,” you rebelled against the commandment of Yahweh your God, and you didn’t believe him or listen to his voice. + +You have been rebellious against Yahweh from the day that I knew you. + +So I fell down before Yahweh the forty days and forty nights that I fell down, because Yahweh had said he would destroy you. + +I prayed to Yahweh, and said, “Lord Yahweh, don’t destroy your people and your inheritance that you have redeemed through your greatness, that you have brought out of Egypt with a mighty hand. + +Remember your servants, Abraham, Isaac, and Jacob. Don’t look at the stubbornness of this people, nor at their wickedness, nor at their sin, + +lest the land you brought us out from say, ‘Because Yahweh was not able to bring them into the land which he promised to them, and because he hated them, he has brought them out to kill them in the wilderness.’ + +Yet they are your people and your inheritance, which you brought out by your great power and by your outstretched arm.” + +

+ + +

At that time Yahweh said to me, “Cut two stone tablets like the first, and come up to me onto the mountain, and make an ark of wood. + +I will write on the tablets the words that were on the first tablets which you broke, and you shall put them in the ark.” + +So I made an ark of acacia wood, and cut two stone tablets like the first, and went up onto the mountain, having the two tablets in my hand. + +He wrote on the tablets, according to the first writing, the ten commandments, which Yahweh spoke to you on the mountain out of the middle of the fire in the day of the assembly; and Yahweh gave them to me. + +I turned and came down from the mountain, and put the tablets in the ark which I had made; and there they are as Yahweh commanded me. + +

+

(The children of Israel traveled from Beeroth Bene Jaakan to Moserah. There Aaron died, and there he was buried; and Eleazar his son ministered in the priest’s office in his place. + +From there they traveled to Gudgodah; and from Gudgodah to Jotbathah, a land of brooks of water. + +At that time Yahweh set apart the tribe of Levi to bear the ark of Yahweh’s covenant, to stand before Yahweh to minister to him, and to bless in his name, to this day. + +Therefore Levi has no portion nor inheritance with his brothers; Yahweh is his inheritance, according as Yahweh your God spoke to him.) + +

+

I stayed on the mountain, as at the first time, forty days and forty nights; and Yahweh listened to me that time also. Yahweh would not destroy you. + +Yahweh said to me, “Arise, take your journey before the people; and they shall go in and possess the land which I swore to their fathers to give to them.” + +

+

Now, Israel, what does Yahweh your God require of you, but to fear Yahweh your God, to walk in all his ways, to love him, and to serve Yahweh your God with all your heart and with all your soul, + +to keep Yahweh’s commandments and statutes, which I command you today for your good? + +Behold, to Yahweh your God belongs heaven, the heaven of heavens, and the earth, with all that is therein. + +Only Yahweh had a delight in your fathers to love them, and he chose their offspring after them, even you above all peoples, as it is today. + +Circumcise therefore the foreskin of your heart, and be no more stiff-necked. + +For Yahweh your God, he is God of gods and Lord of lords, the great God, the mighty, and the awesome, who doesn’t respect persons or take bribes. + +He executes justice for the fatherless and widow and loves the foreigner in giving him food and clothing. + +Therefore love the foreigner, for you were foreigners in the land of Egypt. + +You shall fear Yahweh your God. You shall serve him. You shall cling to him, and you shall swear by his name. + +He is your praise, and he is your God, who has done for you these great and awesome things which your eyes have seen. + +Your fathers went down into Egypt with seventy persons; and now Yahweh your God has made you as the stars of the sky for multitude. + +

+ + +

Therefore you shall love Yahweh your God, and keep his instructions, his statutes, his ordinances, and his commandments, always. + +Know this dayfor I don’t speak with your children who have not known, and who have not seen the chastisement of Yahweh your God, his greatness, his mighty hand, his outstretched arm, + +his signs, and his works, which he did in the middle of Egypt to Pharaoh the king of Egypt, and to all his land; + +and what he did to the army of Egypt, to their horses, and to their chariots; how he made the water of the Red Sea to overflow them as they pursued you, and how Yahweh has destroyed them to this day; + +and what he did to you in the wilderness until you came to this place; + +and what he did to Dathan and Abiram, the sons of Eliab, the son of Reubenhow the earth opened its mouth and swallowed them up, with their households, their tents, and every living thing that followed them, in the middle of all Israel; + +but your eyes have seen all of Yahweh’s great work which he did. + +

+

Therefore you shall keep the entire commandment which I command you today, that you may be strong, and go in and possess the land that you go over to possess; + +and that you may prolong your days in the land which Yahweh swore to your fathers to give to them and to their offspring, a land flowing with milk and honey. + +For the land, where you go in to possess isn’t like the land of Egypt that you came out of, where you sowed your seed and watered it with your foot, as a garden of herbs; + +but the land that you go over to possess is a land of hills and valleys which drinks water from the rain of the sky, + +a land which Yahweh your God cares for. Yahweh your God’s eyes are always on it, from the beginning of the year even to the end of the year. + +It shall happen, if you shall listen diligently to my commandments which I command you today, to love Yahweh your God, and to serve him with all your heart and with all your soul, + +that I will give the rain for your land in its season, the early rain and the latter rain, that you may gather in your grain, your new wine, and your oil. + +I will give grass in your fields for your livestock, and you shall eat and be full. + +Be careful, lest your heart be deceived, and you turn away to serve other gods and worship them; + +and Yahweh’s anger be kindled against you, and he shut up the sky so that there is no rain, and the land doesn’t yield its fruit; and you perish quickly from off the good land which Yahweh gives you. + +Therefore you shall lay up these words of mine in your heart and in your soul. You shall bind them for a sign on your hand, and they shall be for frontlets between your eyes. + +You shall teach them to your children, talking of them when you sit in your house, when you walk by the way, when you lie down, and when you rise up. + +You shall write them on the door posts of your house and on your gates; + +that your days and your children’s days may be multiplied in the land which Yahweh swore to your fathers to give them, as the days of the heavens above the earth. + +For if you shall diligently keep all these commandments which I command youto do them, to love Yahweh your God, to walk in all his ways, and to cling to him— + +then Yahweh will drive out all these nations from before you, and you shall dispossess nations greater and mightier than yourselves. + +Every place on which the sole of your foot treads shall be yours: from the wilderness and Lebanon, from the river, the river Euphrates, even to the western sea shall be your border. + +No man will be able to stand before you. Yahweh your God will lay the fear of you and the dread of you on all the land that you tread on, as he has spoken to you. + +Behold, I set before you today a blessing and a curse: + +the blessing, if you listen to the commandments of Yahweh your God, which I command you today; + +and the curse, if you do not listen to the commandments of Yahweh your God, but turn away out of the way which I command you today, to go after other gods which you have not known. + +It shall happen, when Yahweh your God brings you into the land that you go to possess, that you shall set the blessing on Mount Gerizim, and the curse on Mount Ebal. + +Aren’t they beyond the Jordan, behind the way of the going down of the sun, in the land of the Canaanites who dwell in the Arabah near Gilgal, beside the oaks of Moreh? + +For you are to pass over the Jordan to go in to possess the land which Yahweh your God gives you, and you shall possess it and dwell in it. + +You shall observe to do all the statutes and the ordinances which I set before you today. + +

+ + +

These are the statutes and the ordinances which you shall observe to do in the land which Yahweh, the God of your fathers, has given you to possess all the days that you live on the earth. + +You shall surely destroy all the places in which the nations that you shall dispossess served their gods: on the high mountains, and on the hills, and under every green tree. + +You shall break down their altars, dash their pillars in pieces, and burn their Asherah poles with fire. You shall cut down the engraved images of their gods. You shall destroy their name out of that place. + +You shall not do so to Yahweh your God. + +But to the place which Yahweh your God shall choose out of all your tribes, to put his name there, you shall seek his habitation, and you shall come there. + +You shall bring your burnt offerings, your sacrifices, your tithes, the wave offering of your hand, your vows, your free will offerings, and the firstborn of your herd and of your flock there. + +There you shall eat before Yahweh your God, and you shall rejoice in all that you put your hand to, you and your households, in which Yahweh your God has blessed you. + +You shall not do all the things that we do here today, every man whatever is right in his own eyes; + +for you haven’t yet come to the rest and to the inheritance which Yahweh your God gives you. + +But when you go over the Jordan and dwell in the land which Yahweh your God causes you to inherit, and he gives you rest from all your enemies around you, so that you dwell in safety, + +then it shall happen that to the place which Yahweh your God shall choose, to cause his name to dwell there, there you shall bring all that I command you: your burnt offerings, your sacrifices, your tithes, the wave offering of your hand, and all your choice vows which you vow to Yahweh. + +You shall rejoice before Yahweh your Godyou, and your sons, your daughters, your male servants, your female servants, and the Levite who is within your gates, because he has no portion nor inheritance with you. + +Be careful that you don’t offer your burnt offerings in every place that you see; + +but in the place which Yahweh chooses in one of your tribes, there you shall offer your burnt offerings, and there you shall do all that I command you. + +

+

Yet you may kill and eat meat within all your gates, after all the desire of your soul, according to Yahweh your God’s blessing which he has given you. The unclean and the clean may eat of it, as of the gazelle and the deer. + +Only you shall not eat the blood. You shall pour it out on the earth like water. + +You may not eat within your gates the tithe of your grain, or of your new wine, or of your oil, or the firstborn of your herd or of your flock, nor any of your vows which you vow, nor your free will offerings, nor the wave offering of your hand; + +but you shall eat them before Yahweh your God in the place which Yahweh your God shall choose: you, your son, your daughter, your male servant, your female servant, and the Levite who is within your gates. You shall rejoice before Yahweh your God in all that you put your hand to. + +Be careful that you don’t forsake the Levite as long as you live in your land. + +

+

When Yahweh your God enlarges your border, as he has promised you, and you say, “I want to eat meat,” because your soul desires to eat meat, you may eat meat, after all the desire of your soul. + +If the place which Yahweh your God shall choose to put his name is too far from you, then you shall kill of your herd and of your flock, which Yahweh has given you, as I have commanded you; and you may eat within your gates, after all the desire of your soul. + +Even as the gazelle and as the deer is eaten, so you shall eat of it. The unclean and the clean may eat of it alike. + +Only be sure that you don’t eat the blood; for the blood is the life. You shall not eat the life with the meat. + +You shall not eat it. You shall pour it out on the earth like water. + +You shall not eat it, that it may go well with you and with your children after you, when you do that which is right in Yahweh’s eyes. + +Only your holy things which you have, and your vows, you shall take and go to the place which Yahweh shall choose. + +You shall offer your burnt offerings, the meat and the blood, on Yahweh your God’s altar. The blood of your sacrifices shall be poured out on Yahweh your God’s altar, and you shall eat the meat. + +Observe and hear all these words which I command you, that it may go well with you and with your children after you forever, when you do that which is good and right in Yahweh your God’s eyes. + +

+

When Yahweh your God cuts off the nations from before you where you go in to dispossess them, and you dispossess them and dwell in their land, + +be careful that you are not ensnared to follow them after they are destroyed from before you, and that you not inquire after their gods, saying, “How do these nations serve their gods? I will do likewise.” + +You shall not do so to Yahweh your God; for every abomination to Yahweh, which he hates, they have done to their gods; for they even burn their sons and their daughters in the fire to their gods. + +Whatever thing I command you, that you shall observe to do. You shall not add to it, nor take away from it. + +

+ + +

If a prophet or a dreamer of dreams arises among you, and he gives you a sign or a wonder, + +and the sign or the wonder comes to pass, of which he spoke to you, saying, “Let’s go after other gods” (which you have not known) “and let’s serve them,” + +you shall not listen to the words of that prophet, or to that dreamer of dreams; for Yahweh your God is testing you, to know whether you love Yahweh your God with all your heart and with all your soul. + +You shall walk after Yahweh your God, fear him, keep his commandments, and obey his voice. You shall serve him, and cling to him. + +That prophet, or that dreamer of dreams, shall be put to death, because he has spoken rebellion against Yahweh your God, who brought you out of the land of Egypt and redeemed you out of the house of bondage, to draw you aside out of the way which Yahweh your God commanded you to walk in. So you shall remove the evil from among you. + +

+

If your brother, the son of your mother, or your son, or your daughter, or the wife of your bosom, or your friend who is as your own soul, entices you secretly, saying, “Let’s go and serve other gods”—which you have not known, you, nor your fathers; + +of the gods of the peoples who are around you, near to you, or far off from you, from the one end of the earth even to the other end of the earth— + +you shall not consent to him nor listen to him; neither shall your eye pity him, neither shall you spare, neither shall you conceal him; + +but you shall surely kill him. Your hand shall be first on him to put him to death, and afterwards the hands of all the people. + +You shall stone him to death with stones, because he has sought to draw you away from Yahweh your God, who brought you out of the land of Egypt, out of the house of bondage. + +All Israel shall hear, and fear, and shall not do any more wickedness like this among you. + +

+

If you hear about one of your cities, which Yahweh your God gives you to dwell there, that + +certain wicked fellows have gone out from among you and have drawn away the inhabitants of their city, saying, “Let’s go and serve other gods,” which you have not known, + +then you shall inquire, investigate, and ask diligently. Behold, if it is true, and the thing certain, that such abomination was done among you, + +you shall surely strike the inhabitants of that city with the edge of the sword, destroying it utterly, with all that is therein and its livestock, with the edge of the sword. + +You shall gather all its plunder into the middle of its street, and shall burn with fire the city, with all of its plunder, to Yahweh your God. It shall be a heap forever. It shall not be built again. + +Nothing of the devoted thing shall cling to your hand, that Yahweh may turn from the fierceness of his anger and show you mercy, and have compassion on you and multiply you, as he has sworn to your fathers, + +when you listen to Yahweh your God’s voice, to keep all his commandments which I command you today, to do that which is right in Yahweh your God’s eyes. + +

+ + +

You are the children of Yahweh your God. You shall not cut yourselves, nor make any baldness between your eyes for the dead. + +For you are a holy people to Yahweh your God, and Yahweh has chosen you to be a people for his own possession, above all peoples who are on the face of the earth. + +

+

You shall not eat any abominable thing. + +These are the animals which you may eat: the ox, the sheep, the goat, + +the deer, the gazelle, the roebuck, the wild goat, the ibex, the antelope, and the chamois. + +Every animal that parts the hoof, and has the hoof split in two and chews the cud, among the animals, you may eat. + +Nevertheless these you shall not eat of them that chew the cud, or of those who have the hoof split: the camel, the hare, and the rabbit. Because they chew the cud but don’t part the hoof, they are unclean to you. + +The pig, because it has a split hoof but doesn’t chew the cud, is unclean to you. You shall not eat their meat. You shall not touch their carcasses. + +These you may eat of all that are in the waters: you may eat whatever has fins and scales. + +You shall not eat whatever doesn’t have fins and scales. It is unclean to you. + +Of all clean birds you may eat. + +But these are they of which you shall not eat: the eagle, the vulture, the osprey, + +the red kite, the falcon, the kite of any kind, + +every raven of any kind, + +the ostrich, the owl, the seagull, the hawk of any kind, + +the little owl, the great owl, the horned owl, + +the pelican, the vulture, the cormorant, + +the stork, the heron after its kind, the hoopoe, and the bat. + +All winged creeping things are unclean to you. They shall not be eaten. + +Of all clean birds you may eat. + +

+

You shall not eat of anything that dies of itself. You may give it to the foreigner living among you who is within your gates, that he may eat it; or you may sell it to a foreigner; for you are a holy people to Yahweh your God. +

+

You shall not boil a young goat in its mother’s milk. + +

+

You shall surely tithe all the increase of your seed, that which comes out of the field year by year. + +You shall eat before Yahweh your God, in the place which he chooses to cause his name to dwell, the tithe of your grain, of your new wine, and of your oil, and the firstborn of your herd and of your flock; that you may learn to fear Yahweh your God always. + +If the way is too long for you, so that you are not able to carry it because the place which Yahweh your God shall choose to set his name there is too far from you, when Yahweh your God blesses you, + +then you shall turn it into money, bind up the money in your hand, and shall go to the place which Yahweh your God shall choose. + +You shall trade the money for whatever your soul desires: for cattle, or for sheep, or for wine, or for strong drink, or for whatever your soul asks of you. You shall eat there before Yahweh your God, and you shall rejoice, you and your household. + +You shall not forsake the Levite who is within your gates, for he has no portion nor inheritance with you. + +At the end of every three years you shall bring all the tithe of your increase in the same year, and shall store it within your gates. + +The Levite, because he has no portion nor inheritance with you, as well as the foreigner living among you, the fatherless, and the widow who are within your gates shall come, and shall eat and be satisfied; that Yahweh your God may bless you in all the work of your hand which you do. + +

+ + +

At the end of every seven years, you shall cancel debts. + +This is the way it shall be done: every creditor shall release that which he has lent to his neighbor. He shall not require payment from his neighbor and his brother, because Yahweh’s release has been proclaimed. + +Of a foreigner you may require it; but whatever of yours is with your brother, your hand shall release. + +However there will be no poor with you (for Yahweh will surely bless you in the land which Yahweh your God gives you for an inheritance to possess) + +if only you diligently listen to Yahweh your God’s voice, to observe to do all this commandment which I command you today. + +For Yahweh your God will bless you, as he promised you. You will lend to many nations, but you will not borrow. You will rule over many nations, but they will not rule over you. + +If a poor man, one of your brothers, is with you within any of your gates in your land which Yahweh your God gives you, you shall not harden your heart, nor shut your hand from your poor brother; + +but you shall surely open your hand to him, and shall surely lend him sufficient for his need, which he lacks. + +Beware that there not be a wicked thought in your heart, saying, “The seventh year, the year of release, is at hand,” and your eye be evil against your poor brother and you give him nothing; and he cry to Yahweh against you, and it be sin to you. + +You shall surely give, and your heart shall not be grieved when you give to him, because it is for this thing Yahweh your God will bless you in all your work and in all that you put your hand to. + +For the poor will never cease out of the land. Therefore I command you to surely open your hand to your brother, to your needy, and to your poor, in your land. + +If your brother, a Hebrew man, or a Hebrew woman, is sold to you and serves you six years, then in the seventh year you shall let him go free from you. + +When you let him go free from you, you shall not let him go empty. + +You shall furnish him liberally out of your flock, out of your threshing floor, and out of your wine press. As Yahweh your God has blessed you, you shall give to him. + +You shall remember that you were a slave in the land of Egypt, and Yahweh your God redeemed you. Therefore I command you this thing today. + +It shall be, if he tells you, “I will not go out from you,” because he loves you and your house, because he is well with you, + +then you shall take an awl, and thrust it through his ear to the door, and he shall be your servant forever. Also to your female servant you shall do likewise. + +It shall not seem hard to you when you let him go free from you, for he has been double the value of a hired hand as he served you six years. Yahweh your God will bless you in all that you do. + +You shall dedicate all the firstborn males that are born of your herd and of your flock to Yahweh your God. You shall do no work with the firstborn of your herd, nor shear the firstborn of your flock. + +You shall eat it before Yahweh your God year by year in the place which Yahweh shall choose, you and your household. + +If it has any defectis lame or blind, or has any defect whatever, you shall not sacrifice it to Yahweh your God. + +You shall eat it within your gates. The unclean and the clean shall eat it alike, as the gazelle and as the deer. + +Only you shall not eat its blood. You shall pour it out on the ground like water. + +

+ + +

Observe the month of Abib, and keep the Passover to Yahweh your God; for in the month of Abib Yahweh your God brought you out of Egypt by night. + +You shall sacrifice the Passover to Yahweh your God, of the flock and the herd, in the place which Yahweh shall choose to cause his name to dwell there. + +You shall eat no leavened bread with it. You shall eat unleavened bread with it seven days, even the bread of affliction (for you came out of the land of Egypt in haste) that you may remember the day when you came out of the land of Egypt all the days of your life. + +No yeast shall be seen with you in all your borders seven days; neither shall any of the meat, which you sacrifice the first day at evening, remain all night until the morning. + +You may not sacrifice the Passover within any of your gates which Yahweh your God gives you; + +but at the place which Yahweh your God shall choose to cause his name to dwell in, there you shall sacrifice the Passover at evening, at the going down of the sun, at the season that you came out of Egypt. + +You shall roast and eat it in the place which Yahweh your God chooses. In the morning you shall return to your tents. + +Six days you shall eat unleavened bread. On the seventh day shall be a solemn assembly to Yahweh your God. You shall do no work. + +

+

You shall count for yourselves seven weeks. From the time you begin to put the sickle to the standing grain you shall begin to count seven weeks. + +You shall keep the feast of weeks to Yahweh your God with a tribute of a free will offering of your hand, which you shall give according to how Yahweh your God blesses you. + +You shall rejoice before Yahweh your God: you, your son, your daughter, your male servant, your female servant, the Levite who is within your gates, the foreigner, the fatherless, and the widow who are among you, in the place which Yahweh your God shall choose to cause his name to dwell there. + +You shall remember that you were a slave in Egypt. You shall observe and do these statutes. + +

+

You shall keep the feast of booths seven days, after you have gathered in from your threshing floor and from your wine press. + +You shall rejoice in your feast, you, your son, your daughter, your male servant, your female servant, the Levite, the foreigner, the fatherless, and the widow who are within your gates. + +You shall keep a feast to Yahweh your God seven days in the place which Yahweh chooses, because Yahweh your God will bless you in all your increase and in all the work of your hands, and you shall be altogether joyful. + +Three times in a year all of your males shall appear before Yahweh your God in the place which he chooses: in the feast of unleavened bread, in the feast of weeks, and in the feast of booths. They shall not appear before Yahweh empty. + +Every man shall give as he is able, according to Yahweh your God’s blessing which he has given you. + +You shall make judges and officers in all your gates, which Yahweh your God gives you, according to your tribes; and they shall judge the people with righteous judgment. + +You shall not pervert justice. You shall not show partiality. You shall not take a bribe, for a bribe blinds the eyes of the wise and perverts the words of the righteous. + +You shall follow that which is altogether just, that you may live and inherit the land which Yahweh your God gives you. + +You shall not plant for yourselves an Asherah of any kind of tree beside Yahweh your God’s altar, which you shall make for yourselves. + +Neither shall you set yourself up a sacred stone which Yahweh your God hates. + +

+ + +

You shall not sacrifice to Yahweh your God an ox or a sheep in which is a defect or anything evil; for that is an abomination to Yahweh your God. + +

+

If there is found among you, within any of your gates which Yahweh your God gives you, a man or woman who does that which is evil in Yahweh your God’s sight in transgressing his covenant, + +and has gone and served other gods and worshiped them, or the sun, or the moon, or any of the stars of the sky, which I have not commanded, + +and you are told, and you have heard of it, then you shall inquire diligently. Behold, if it is true, and the thing certain, that such abomination is done in Israel, + +then you shall bring out that man or that woman who has done this evil thing to your gates, even that same man or woman; and you shall stone them to death with stones. + +At the mouth of two witnesses, or three witnesses, he who is to die shall be put to death. At the mouth of one witness he shall not be put to death. + +The hands of the witnesses shall be first on him to put him to death, and afterward the hands of all the people. So you shall remove the evil from among you. + +

+

If there arises a matter too hard for you in judgment, between blood and blood, between plea and plea, and between stroke and stroke, being matters of controversy within your gates, then you shall arise, and go up to the place which Yahweh your God chooses. + +You shall come to the priests who are Levites and to the judge who shall be in those days. You shall inquire, and they shall give you the verdict. + +You shall do according to the decisions of the verdict which they shall give you from that place which Yahweh chooses. You shall observe to do according to all that they shall teach you. + +According to the decisions of the law which they shall teach you, and according to the judgment which they shall tell you, you shall do. You shall not turn away from the sentence which they announce to you, to the right hand, nor to the left. + +The man who does presumptuously in not listening to the priest who stands to minister there before Yahweh your God, or to the judge, even that man shall die. You shall put away the evil from Israel. + +All the people shall hear and fear, and do no more presumptuously. + +

+

When you have come to the land which Yahweh your God gives you, and possess it and dwell in it, and say, “I will set a king over me, like all the nations that are around me,” + +you shall surely set him whom Yahweh your God chooses as king over yourselves. You shall set as king over you one from among your brothers. You may not put a foreigner over you, who is not your brother. + +Only he shall not multiply horses to himself, nor cause the people to return to Egypt, to the end that he may multiply horses; because Yahweh has said to you, “You shall not go back that way again.” + +He shall not multiply wives to himself, that his heart not turn away. He shall not greatly multiply to himself silver and gold. + +

+

It shall be, when he sits on the throne of his kingdom, that he shall write himself a copy of this law in a book, out of that which is before the Levitical priests. + +It shall be with him, and he shall read from it all the days of his life, that he may learn to fear Yahweh his God, to keep all the words of this law and these statutes, to do them; + +that his heart not be lifted up above his brothers, and that he not turn away 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 middle of Israel. + +

+ + +

The priests and the Levitesall the tribe of Levishall have no portion nor inheritance with Israel. They shall eat the offerings of Yahweh made by fire and his portion. + +They shall have no inheritance among their brothers. Yahweh is their inheritance, as he has spoken to them. + +This shall be the priestsdue from the people, from those who offer a sacrifice, whether it be ox or sheep, that they shall give to the priest: the shoulder, the two cheeks, and the inner parts. + +You shall give him the first fruits of your grain, of your new wine, and of your oil, and the first of the fleece of your sheep. + +For Yahweh your God has chosen him out of all your tribes to stand to minister in Yahweh’s name, him and his sons forever. + +

+

If a Levite comes from any of your gates out of all Israel where he lives, and comes with all the desire of his soul to the place which Yahweh shall choose, + +then he shall minister in the name of Yahweh his God, as all his brothers the Levites do, who stand there before Yahweh. + +They shall have like portions to eat, in addition to that which comes from the sale of his family possessions. + +

+

When you have come into the land which Yahweh your God gives you, you shall not learn to imitate the abominations of those nations. + +There shall not be found with you anyone who makes his son or his daughter to pass through the fire, one who uses divination, one who tells fortunes, or an enchanter, or a sorcerer, + +or a charmer, or someone who consults with a familiar spirit, or a wizard, or a necromancer. + +For whoever does these things is an abomination to Yahweh. Because of these abominations, Yahweh your God drives them out from before you. + +You shall be blameless with Yahweh your God. + +For these nations that you shall dispossess listen to those who practice sorcery and to diviners; but as for you, Yahweh your God has not allowed you so to do. + +Yahweh your God will raise up to you a prophet from among you, of your brothers, like me. You shall listen to him. + +This is according to all that you desired of Yahweh your God in Horeb in the day of the assembly, saying, “Let me not hear again Yahweh my God’s voice, neither let me see this great fire any more, that I not die.” + +

+

Yahweh said to me, “They have well said that which they have spoken. + +I will raise them up a prophet from among their brothers, like you. I will put my words in his mouth, and he shall speak to them all that I shall command him. + +It shall happen, that whoever will not listen to my words which he shall speak in my name, I will require it of him. + +But the prophet who speaks a word presumptuously in my name, which I have not commanded him to speak, or who speaks in the name of other gods, that same prophet shall die.” + +

+

You may say in your heart, “How shall we know the word which Yahweh has not spoken?” + +When a prophet speaks in Yahweh’s name, if the thing doesn’t follow, nor happen, that is the thing which Yahweh has not spoken. The prophet has spoken it presumptuously. You shall not be afraid of him. + +

+ + +

When Yahweh your God cuts off the nations whose land Yahweh your God gives you, and you succeed them and dwell in their cities and in their houses, + +you shall set apart three cities for yourselves in the middle of your land, which Yahweh your God gives you to possess. + +You shall prepare the way, and divide the borders of your land which Yahweh your God causes you to inherit into three parts, that every man slayer may flee there. + +This is the case of the man slayer who shall flee there and live: Whoever kills his neighbor unintentionally, and didn’t hate him in time past— + +as when a man goes into the forest with his neighbor to chop wood and his hand swings the ax to cut down the tree, and the head slips from the handle and hits his neighbor so that he dieshe shall flee to one of these cities and live. + +Otherwise, the avenger of blood might pursue the man slayer while hot anger is in his heart and overtake him, because the way is long, and strike him mortally, even though he was not worthy of death, because he didn’t hate him in time past. + +Therefore I command you to set apart three cities for yourselves. + +If Yahweh your God enlarges your border, as he has sworn to your fathers, and gives you all the land which he promised to give to your fathers; + +and if you keep all this commandment to do it, which I command you today, to love Yahweh your God, and to walk ever in his ways, then you shall add three cities more for yourselves, in addition to these three. + +This is so that innocent blood will not be shed in the middle of your land which Yahweh your God gives you for an inheritance, leaving blood guilt on you. + +But if any man hates his neighbor, lies in wait for him, rises up against him, strikes him mortally so that he dies, and he flees into one of these cities; + +then the elders of his city shall send and bring him there, and deliver him into the hand of the avenger of blood, that he may die. + +Your eye shall not pity him, but you shall purge the innocent blood from Israel that it may go well with you. + +

+

You shall not remove your neighbor’s landmark, which they of old time have set, in your inheritance which you shall inherit, in the land that Yahweh your God gives you to possess. + +

+

One witness shall not rise up against a man for any iniquity, or for any sin that he sins. At the mouth of two witnesses, or at the mouth of three witnesses, shall a matter be established. + +If an unrighteous witness rises up against any man to testify against him of wrongdoing, + +then both the men, between whom the controversy is, shall stand before Yahweh, before the priests and the judges who shall be in those days; + +and the judges shall make diligent inquisition; and behold, if the witness is a false witness, and has testified falsely against his brother, + +then you shall do to him as he had thought to do to his brother. So you shall remove the evil from among you. + +Those who remain shall hear, and fear, and will never again commit any such evil among you. + +Your eyes shall not pity: life for life, eye for eye, tooth for tooth, hand for hand, foot for foot. + +

+ + +

When you go out to battle against your enemies, and see horses, chariots, and a people more numerous than you, you shall not be afraid of them; for Yahweh your God, who brought you up out of the land of Egypt, is with you. + +It shall be, when you draw near to the battle, that the priest shall approach and speak to the people, + +and shall tell them, “Hear, Israel, you draw near today to battle against your enemies. Don’t let your heart faint! Don’t be afraid, nor tremble, neither be scared of them; + +for Yahweh your God is he who goes with you, to fight for you against your enemies, to save you.” + +

+

The officers shall speak to the people, saying, “What man is there who has built a new house, and has not dedicated it? Let him go and return to his house, lest he die in the battle, and another man dedicate it. + +What man is there who has planted a vineyard, and has not used its fruit? Let him go and return to his house, lest he die in the battle, and another man use its fruit. + +What man is there who has pledged to be married to a wife, and has not taken her? Let him go and return to his house, lest he die in the battle, and another man take her.” + +The officers shall speak further to the people, and they shall say, “What man is there who is fearful and faint-hearted? Let him go and return to his house, lest his brother’s heart melt as his heart.” + +It shall be, when the officers have finished speaking to the people, that they shall appoint captains of armies at the head of the people. + +

+

When you draw near to a city to fight against it, then proclaim peace to it. + +It shall be, if it gives you answer of peace and opens to you, then it shall be that all the people who are found therein shall become forced laborers to you, and shall serve you. + +If it will make no peace with you, but will make war against you, then you shall besiege it. + +When Yahweh your God delivers it into your hand, you shall strike every male of it with the edge of the sword; + +but the women, the little ones, the livestock, and all that is in the city, even all its plunder, you shall take for plunder for yourself. You may use the plunder of your enemies, which Yahweh your God has given you. + +Thus you shall do to all the cities which are very far off from you, which are not of the cities of these nations. + +But of the cities of these peoples that Yahweh your God gives you for an inheritance, you shall save alive nothing that breathes; + +but you shall utterly destroy them: the Hittite, the Amorite, the Canaanite, the Perizzite, the Hivite, and the Jebusite, as Yahweh your God has commanded you; + +that they not teach you to follow all their abominations, which they have done for their gods; so would you sin against Yahweh your God. + +When you shall besiege a city a long time, in making war against it to take it, you shall not destroy its trees by wielding an ax against them; for you may eat of them. You shall not cut them down, for is the tree of the field man, that it should be besieged by you? + +Only the trees that you know are not trees for food, you shall destroy and cut them down. You shall build bulwarks against the city that makes war with you, until it falls. + +

+ + +

If someone is found slain in the land which Yahweh your God gives you to possess, lying in the field, and it isn’t known who has struck him, + +then your elders and your judges shall come out, and they shall measure to the cities which are around him who is slain. + +It shall be that the elders of the city which is nearest to the slain man shall take a heifer of the herd, which hasn’t been worked with and which has not drawn in the yoke. + +The elders of that city shall bring the heifer down to a valley with running water, which is neither plowed nor sown, and shall break the heifer’s neck there in the valley. + +The priests the sons of Levi shall come near, for them Yahweh your God has chosen to minister to him, and to bless in Yahweh’s name; and according to their word shall every controversy and every assault be decided. + +All the elders of that city which is nearest to the slain man shall wash their hands over the heifer whose neck was broken in the valley. + +They shall answer and say, “Our hands have not shed this blood, neither have our eyes seen it. + +Forgive, Yahweh, your people Israel, whom you have redeemed, and don’t allow innocent blood among your people Israel.” The blood shall be forgiven them. + +So you shall put away the innocent blood from among you, when you shall do that which is right in Yahweh’s eyes. + +

+

When you go out to battle against your enemies, and Yahweh your God delivers them into your hands and you carry them away captive, + +and see among the captives a beautiful woman, and you are attracted to her, and desire to take her as your wife, + +then you shall bring her home to your house. She shall shave her head and trim her nails. + +She shall take off the clothing of her captivity, and shall remain in your house, and bewail her father and her mother a full month. After that you shall go in to her and be her husband, and she shall be your wife. + +It shall be, if you have no delight in her, then you shall let her go where she desires; but you shall not sell her at all for money. You shall not deal with her as a slave, because you have humbled her. + +

+

If a man has two wives, the one beloved and the other hated, and they have borne him children, both the beloved and the hated, and if the firstborn son is hers who was hated, + +then it shall be, in the day that he causes his sons to inherit that which he has, that he may not give the son of the beloved the rights of the firstborn before the son of the hated, who is the firstborn; + +but he shall acknowledge the firstborn, the son of the hated, by giving him a double portion of all that he has; for he is the beginning of his strength. The right of the firstborn is his. + +

+

If a man has a stubborn and rebellious son who will not obey the voice of his father or the voice of his mother, and though they chasten him, will not listen to them, + +then his father and his mother shall take hold of him and bring him out to the elders of his city and to the gate of his place. + +They shall tell 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.” + +All the men of his city shall stone him to death with stones. So you shall remove the evil from among you. All Israel shall hear, and fear. + +

+

If a man has committed a sin worthy of death, and he is put to death, and you hang him on a tree, + +his body shall not remain all night on the tree, but you shall surely bury him the same day; for he who is hanged is accursed of God. Don’t defile your land which Yahweh your God gives you for an inheritance. + +

+ + +

You shall not see your brother’s ox or his sheep go astray and hide yourself from them. You shall surely bring them again to your brother. + +If your brother isn’t near to you, or if you don’t know him, then you shall bring it home to your house, and it shall be with you until your brother comes looking for it, and you shall restore it to him. + +So you shall do with his donkey. So you shall do with his garment. So you shall do with every lost thing of your brother’s, which he has lost and you have found. You may not hide yourself. + +You shall not see your brother’s donkey or his ox fallen down by the way, and hide yourself from them. You shall surely help him to lift them up again. + +

+

A woman shall not wear men’s clothing, neither shall a man put on women’s clothing; for whoever does these things is an abomination to Yahweh your God. + +

+

If you come across a bird’s nest on the way, in any tree or on the ground, with young ones or eggs, and the hen sitting on the young, or on the eggs, you shall not take the hen with the young. + +You shall surely let the hen go, but the young you may take for yourself, that it may be well with you, and that you may prolong your days. + +

+

When you build a new house, then you shall make a railing around your roof, so that you don’t bring blood on your house if anyone falls from there. + +

+

You shall not sow your vineyard with two kinds of seed, lest all the fruit be defiled, the seed which you have sown, and the increase of the vineyard. + +You shall not plow with an ox and a donkey together. + +You shall not wear clothes of wool and linen woven together. + +

+

You shall make yourselves fringes22:12 +or, tassels on the four corners of your cloak with which you cover yourself. + +

+

If any man takes a wife, and goes in to her, hates her, + +accuses her of shameful things, gives her a bad name, and says, “I took this woman, and when I came near to her, I didn’t find in her the tokens of virginity;” + +then the young lady’s father and mother shall take and bring the tokens of the young lady’s virginity to the elders of the city in the gate. + +The young lady’s father shall tell the elders, “I gave my daughter to this man as his wife, and he hates her. + +Behold, he has accused her of shameful things, saying, ‘I didn’t find in your daughter the tokens of virginity;’ and yet these are the tokens of my daughter’s virginity.” They shall spread the cloth before the elders of the city. + +The elders of that city shall take the man and chastise him. + +They shall fine him one hundred shekels of silver,22:19 +A shekel is about 10 grams or about 0.35 ounces, so 100 shekels is about a kilogram or 2.2 pounds. and give them to the father of the young lady, because he has given a bad name to a virgin of Israel. She shall be his wife. He may not put her away all his days. + +

+

But if this thing is true, that the tokens of virginity were not found in the young lady, + +then they shall bring out the young lady to the door of her father’s house, and the men of her city shall stone her to death with stones, because she has done folly in Israel, to play the prostitute in her father’s house. So you shall remove the evil from among you. + +

+

If a man is found lying with a woman married to a husband, then they shall both die, the man who lay with the woman and the woman. So you shall remove the evil from Israel. + +If there is a young lady who is a virgin pledged to be married to a husband, and a man finds her in the city, and lies with her, + +then you shall bring them both out to the gate of that city, and you shall stone them to death with stones; the lady, because she didn’t cry, being in the city; and the man, because he has humbled his neighbor’s wife. So you shall remove the evil from among you. + +But if the man finds the lady who is pledged to be married in the field, and the man forces her and lies with her, then only the man who lay with her shall die; + +but to the lady you shall do nothing. There is in the lady no sin worthy of death; for as when a man rises against his neighbor and kills him, even so is this matter; + +for he found her in the field, the pledged to be married lady cried, and there was no one to save her. + +If a man finds a lady who is a virgin, who is not pledged to be married, grabs her and lies with her, and they are found, + +then the man who lay with her shall give to the lady’s father fifty shekels22:29 +A shekel is about 10 grams or about 0.35 ounces. of silver. She shall be his wife, because he has humbled her. He may not put her away all his days. + +A man shall not take his father’s wife, and shall not uncover his father’s skirt. + +

+ + +

He who is emasculated by crushing or cutting shall not enter into Yahweh’s assembly. + +A person born of a forbidden union shall not enter into Yahweh’s assembly; even to the tenth generation shall no one of his enter into Yahweh’s assembly. + +An Ammonite or a Moabite shall not enter into Yahweh’s assembly; even to the tenth generation shall no one belonging to them enter into Yahweh’s assembly forever, + +because they didn’t meet you with bread and with water on the way when you came out of Egypt, and because they hired against you Balaam the son of Beor from Pethor of Mesopotamia, to curse you. + +Nevertheless Yahweh your God wouldn’t listen to Balaam, but Yahweh your God turned the curse into a blessing to you, because Yahweh your God loved you. + +You shall not seek their peace nor their prosperity all your days forever. + +You shall not abhor an Edomite, for he is your brother. You shall not abhor an Egyptian, because you lived as a foreigner in his land. + +The children of the third generation who are born to them may enter into Yahweh’s assembly. + +

+

When you go out and camp against your enemies, then you shall keep yourselves from every evil thing. + +If there is among you any man who is not clean by reason of that which happens to him by night, then shall he go outside of the camp. He shall not come within the camp; + +but it shall be, when evening comes, he shall bathe himself in water. When the sun is down, he shall come within the camp. + +You shall have a place also outside of the camp where you go relieve yourself. + +You shall have a trowel among your weapons. It shall be, when you relieve yourself, you shall dig with it, and shall turn back and cover your excrement; + +for Yahweh your God walks in the middle of your camp, to deliver you, and to give up your enemies before you. Therefore your camp shall be holy, that he may not see an unclean thing in you, and turn away from you. + +

+

You shall not deliver to his master a servant who has escaped from his master to you. + +He shall dwell with you, among you, in the place which he shall choose within one of your gates, where it pleases him best. You shall not oppress him. + +

+

There shall be no prostitute of the daughters of Israel, neither shall there be a sodomite of the sons of Israel. + +You shall not bring the hire of a prostitute, or the wages of a male prostitute,23:18 +literally, dog into the house of Yahweh your God for any vow; for both of these are an abomination to Yahweh your God. + +

+

You shall not lend on interest to your brother: interest of money, interest of food, interest of anything that is lent on interest. + +You may charge a foreigner interest; but you shall not charge your brother interest, that Yahweh your God may bless you in all that you put your hand to, in the land where you go in to possess it. + +

+

When you vow a vow to Yahweh your God, you shall not be slack to pay it, for Yahweh your God will surely require it of you; and it would be sin in you. + +But if you refrain from making a vow, it shall be no sin in you. + +You shall observe and do that which has gone out of your lips. Whatever you have vowed to Yahweh your God as a free will offering, which you have promised with your mouth, you must do. + +When you come into your neighbor’s vineyard, then you may eat your fill of grapes at your own pleasure; but you shall not put any in your container. + +When you come into your neighbor’s standing grain, then you may pluck the ears with your hand; but you shall not use a sickle on your neighbor’s standing grain. + +

+ + +

When a man takes a wife and marries her, then it shall be, if she finds no favor in his eyes because he has found some unseemly thing in her, that he shall write her a certificate of divorce, put it in her hand, and send her out of his house. + +When she has departed out of his house, she may go and be another man’s wife. + +If the latter husband hates her, and writes her a certificate of divorce, puts it in her hand, and sends her out of his house; or if the latter husband dies, who took her to be his wife; + +her former husband, who sent her away, may not take her again to be his wife after she is defiled; for that would be an abomination to Yahweh. You shall not cause the land to sin, which Yahweh your God gives you for an inheritance. + +When a man takes a new wife, he shall not go out in the army, neither shall he be assigned any business. He shall be free at home one year, and shall cheer his wife whom he has taken. + +

+

No man shall take the mill or the upper millstone as a pledge, for he takes a life in pledge. + +

+

If a man is found stealing any of his brothers of the children of Israel, and he deals with him as a slave, or sells him, then that thief shall die. So you shall remove the evil from among you. + +

+

Be careful in the plague of leprosy, that you observe diligently and do according to all that the Levitical priests teach you. As I commanded them, so you shall observe to do. + +Remember what Yahweh your God did to Miriam, by the way as you came out of Egypt. + +

+

When you lend your neighbor any kind of loan, you shall not go into his house to get his pledge. + +You shall stand outside, and the man to whom you lend shall bring the pledge outside to you. + +If he is a poor man, you shall not sleep with his pledge. + +You shall surely restore to him the pledge when the sun goes down, that he may sleep in his garment and bless you. It shall be righteousness to you before Yahweh your God. + +

+

You shall not oppress a hired servant who is poor and needy, whether he is one of your brothers or one of the foreigners who are in your land within your gates. + +In his day you shall give him his wages, neither shall the sun go down on it, for he is poor and sets his heart on it, lest he cry against you to Yahweh, and it be sin to you. + +

+

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. + +

+

You shall not deprive the foreigner or the fatherless of justice, nor take a widow’s clothing in pledge; + +but you shall remember that you were a slave in Egypt, and Yahweh your God redeemed you there. Therefore I command you to do this thing. + +

+

When you reap your harvest in your field, and have forgotten a sheaf in the field, you shall not go again to get it. It shall be for the foreigner, for the fatherless, and for the widow, that Yahweh your God may bless you in all the work of your hands. + +When you beat your olive tree, you shall not go over the boughs again. It shall be for the foreigner, for the fatherless, and for the widow. + +

+

When you harvest your vineyard, you shall not glean it after yourselves. It shall be for the foreigner, for the fatherless, and for the widow. + +You shall remember that you were a slave in the land of Egypt. Therefore I command you to do this thing. + +

+ + +

If there is a controversy between men, and they come to judgment and the judges judge them, then they shall justify the righteous and condemn the wicked. + +It shall be, if the wicked man is worthy to be beaten, that the judge shall cause him to lie down and to be beaten before his face, according to his wickedness, by number. + +He may sentence him to no more than forty stripes. He shall not give more, lest if he should give more and beat him more than that many stripes, then your brother will be degraded in your sight. + +

+

You shall not muzzle the ox when he treads out the grain. + +

+

If brothers dwell together, and one of them dies and has no son, the wife of the dead shall not be married outside to a stranger. Her husband’s brother shall go in to her, and take her as his wife, and perform the duty of a husband’s brother to her. + +It shall be that the firstborn whom she bears shall succeed in the name of his brother who is dead, that his name not be blotted out of Israel. + +

+

If the man doesn’t want to take his brother’s wife, then his brother’s wife shall go up to the gate to the elders, and say, “My husband’s brother refuses to raise up to his brother a name in Israel. He will not perform the duty of a husband’s brother to me.” + +Then the elders of his city shall call him, and speak to him. If he stands and says, “I don’t want to take her,” + +then his brother’s wife shall come to him in the presence of the elders, and loose his sandal from off his foot, and spit in his face. She shall answer and say, “So shall it be done to the man who does not build up his brother’s house.” + +His name shall be called in Israel, “The house of him who had his sandal removed.” + +

+

When men strive against each other, and the wife of one draws near to deliver her husband out of the hand of him who strikes him, and puts out her hand, and grabs him by his private parts, + +then you shall cut off her hand. Your eye shall have no pity. + +

+

You shall not have in your bag diverse weights, one heavy and one light. + +You shall not have in your house diverse measures, one large and one small. + +You shall have a perfect and just weight. You shall have a perfect and just measure, that your days may be long in the land which Yahweh your God gives you. + +For all who do such things, all who do unrighteously, are an abomination to Yahweh your God. + +

+

Remember what Amalek did to you by the way as you came out of Egypt, + +how he met you by the way, and struck the rearmost of you, all who were feeble behind you, when you were faint and weary; and he didn’t fear God. + +Therefore it shall be, when Yahweh your God has given you rest from all your enemies all around, in the land which Yahweh your God gives you for an inheritance to possess it, that you shall blot out the memory of Amalek from under the sky. You shall not forget. + +

+ + +

It shall be, when you have come in to the land which Yahweh your God gives you for an inheritance, possess it, and dwell in it, + +that you shall take some of the first of all the fruit of the ground, which you shall bring in from your land that Yahweh your God gives you. You shall put it in a basket, and shall go to the place which Yahweh your God shall choose to cause his name to dwell there. + +You shall come to the priest who shall be in those days, and tell him, “I profess today to Yahweh your God, that I have come to the land which Yahweh swore to our fathers to give us.” + +The priest shall take the basket out of your hand, and set it down before Yahweh your God’s altar. + +You shall answer and say before Yahweh your God, “My father26:5 +or, forefather was a Syrian ready to perish. He went down into Egypt, and lived there, few in number. There he became a great, mighty, and populous nation. + +The Egyptians mistreated us, afflicted us, and imposed hard labor on us. + +Then we cried to Yahweh, the God of our fathers. Yahweh heard our voice, and saw our affliction, our toil, and our oppression. + +Yahweh brought us out of Egypt with a mighty hand, with an outstretched arm, with great terror, with signs, and with wonders; + +and he has brought us into this place, and has given us this land, a land flowing with milk and honey. + +Now, behold, I have brought the first of the fruit of the ground, which you, Yahweh, have given me.” You shall set it down before Yahweh your God, and worship before Yahweh your God. + +You shall rejoice in all the good which Yahweh your God has given to you, and to your house, you, and the Levite, and the foreigner who is among you. + +

+

When you have finished tithing all the tithe of your increase in the third year, which is the year of tithing, then you shall give it to the Levite, to the foreigner, to the fatherless, and to the widow, that they may eat within your gates and be filled. + +You shall say before Yahweh your God, “I have put away the holy things out of my house, and also have given them to the Levite, to the foreigner, to the fatherless, and to the widow, according to all your commandment which you have commanded me. I have not transgressed any of your commandments, neither have I forgotten them. + +I have not eaten of it in my mourning, neither have I removed any of it while I was unclean, nor given of it for the dead. I have listened to Yahweh my God’s voice. I have done according to all that you have commanded me. + +Look down from your holy habitation, from heaven, and bless your people Israel, and the ground which you have given us, as you swore to our fathers, a land flowing with milk and honey.” + +

+

Today Yahweh your God commands you to do these statutes and ordinances. You shall therefore keep and do them with all your heart and with all your soul. + +You have declared today that Yahweh is your God, and that you would walk in his ways, keep his statutes, his commandments, and his ordinances, and listen to his voice. + +Yahweh has declared today that you are a people for his own possession, as he has promised you, and that you should keep all his commandments. + +He will make you high above all nations that he has made, in praise, in name, and in honor, and that you may be a holy people to Yahweh your God, as he has spoken. + +

+ + +

Moses and the elders of Israel commanded the people, saying, “Keep all the commandment which I command you today. + +It shall be on the day when you shall pass over the Jordan to the land which Yahweh your God gives you, that you shall set yourself up great stones, and coat them with plaster. + +You shall write on them all the words of this law, when you have passed over, that you may go in to the land which Yahweh your God gives you, a land flowing with milk and honey, as Yahweh, the God of your fathers, has promised you. + +It shall be, when you have crossed over the Jordan, that you shall set up these stones, which I command you today, on Mount Ebal, and you shall coat them with plaster. + +There you shall build an altar to Yahweh your God, an altar of stones. You shall not use any iron tool on them. + +You shall build Yahweh your God’s altar of uncut stones. You shall offer burnt offerings on it to Yahweh your God. + +You shall sacrifice peace offerings, and shall eat there. You shall rejoice before Yahweh your God. + +You shall write on the stones all the words of this law very plainly.” + +

+

Moses and the Levitical priests spoke to all Israel, saying, “Be silent and listen, Israel! Today you have become the people of Yahweh your God. + +You shall therefore obey Yahweh your God’s voice, and do his commandments and his statutes, which I command you today.” + +

+

Moses commanded the people the same day, saying, + +These shall stand on Mount Gerizim to bless the people, when you have crossed over the Jordan: Simeon, Levi, Judah, Issachar, Joseph, and Benjamin. + +These shall stand on Mount Ebal for the curse: Reuben, Gad, Asher, Zebulun, Dan, and Naphtali. + +With a loud voice, the Levites shall say to all the men of Israel, + +‘Cursed is the man who makes an engraved or molten image, an abomination to Yahweh, the work of the hands of the craftsman, and sets it up in secret.’ +

+

All the people shall answer and say, ‘Amen.’ + +

+

‘Cursed is he who dishonors his father or his mother.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who removes his neighbor’s landmark.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who leads the blind astray on the road.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who withholds justice from the foreigner, fatherless, and widow.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who lies with27:20 +i.e., has sexual relations with his father’s wife, because he dishonors his father’s bed.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who lies with any kind of animal.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who lies with his sister, his father’s daughter or his mother’s daughter.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who lies with his mother-in-law.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who secretly kills his neighbor.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who takes a bribe to kill an innocent person.’ +

+

All the people shall say, ‘Amen.’ + +

+

‘Cursed is he who doesn’t uphold the words of this law by doing them.’ +

+

All the people shall say, ‘Amen.’” + +

+ + +

It shall happen, if you shall listen diligently to Yahweh your God’s voice, to observe to do all his commandments which I command you today, that Yahweh your God will set you high above all the nations of the earth. + +All these blessings will come upon you, and overtake you, if you listen to Yahweh your God’s voice. + +You shall be blessed in the city, and you shall be blessed in the field. + +You shall be blessed in the fruit of your body, the fruit of your ground, the fruit of your animals, the increase of your livestock, and the young of your flock. + +Your basket and your kneading trough shall be blessed. + +You shall be blessed when you come in, and you shall be blessed when you go out. + +Yahweh will cause your enemies who rise up against you to be struck before you. They will come out against you one way, and will flee before you seven ways. + +Yahweh will command the blessing on you in your barns, and in all that you put your hand to. He will bless you in the land which Yahweh your God gives you. + +Yahweh will establish you for a holy people to himself, as he has sworn to you, if you shall keep the commandments of Yahweh your God, and walk in his ways. + +All the peoples of the earth shall see that you are called by Yahweh’s name, and they will be afraid of you. + +Yahweh will grant you abundant prosperity in the fruit of your body, in the fruit of your livestock, and in the fruit of your ground, in the land which Yahweh swore to your fathers to give you. + +Yahweh will open to you his good treasure in the sky, to give the rain of your land in its season, and to bless all the work of your hand. You will lend to many nations, and you will not borrow. + +Yahweh will make you the head, and not the tail. You will be above only, and you will not be beneath, if you listen to the commandments of Yahweh your God which I command you today, to observe and to do, + +and shall not turn away from any of the words which I command you today, to the right hand or to the left, to go after other gods to serve them. + +

+

But it shall come to pass, if you will not listen to Yahweh your God’s voice, to observe to do all his commandments and his statutes which I command you today, that all these curses will come on you and overtake you. + +You will be cursed in the city, and you will be cursed in the field. + +Your basket and your kneading trough will be cursed. + +The fruit of your body, the fruit of your ground, the increase of your livestock, and the young of your flock will be cursed. + +You will be cursed when you come in, and you will be cursed when you go out. + +Yahweh will send on you cursing, confusion, and rebuke in all that you put your hand to do, until you are destroyed and until you perish quickly, because of the evil of your doings, by which you have forsaken me. + +Yahweh will make the pestilence cling to you, until he has consumed you from off the land where you go in to possess it. + +Yahweh will strike you with consumption, with fever, with inflammation, with fiery heat, with the sword, with blight, and with mildew. They will pursue you until you perish. + +Your sky that is over your head will be bronze, and the earth that is under you will be iron. + +Yahweh will make the rain of your land powder and dust. It will come down on you from the sky, until you are destroyed. + +Yahweh will cause you to be struck before your enemies. You will go out one way against them, and will flee seven ways before them. You will be tossed back and forth among all the kingdoms of the earth. + +Your dead bodies will be food to all birds of the sky, and to the animals of the earth; and there will be no one to frighten them away. + +Yahweh will strike you with the boils of Egypt, with the tumors, with the scurvy, and with the itch, of which you can not be healed. + +Yahweh will strike you with madness, with blindness, and with astonishment of heart. + +You will grope at noonday, as the blind gropes in darkness, and you shall not prosper in your ways. You will only be oppressed and robbed always, and there will be no one to save you. + +You will betroth a wife, and another man shall lie with her. You will build a house, and you won’t dwell in it. You will plant a vineyard, and not use its fruit. + +Your ox will be slain before your eyes, and you will not eat any of it. Your donkey will be violently taken away from before your face, and will not be restored to you. Your sheep will be given to your enemies, and you will have no one to save you. + +Your sons and your daughters will be given to another people. Your eyes will look and fail with longing for them all day long. There will be no power in your hand. + +A nation which you don’t know will eat the fruit of your ground and all of your work. You will only be oppressed and crushed always, + +so that the sights that you see with your eyes will drive you mad. + +Yahweh will strike you in the knees and in the legs with a sore boil, of which you cannot be healed, from the sole of your foot to the crown of your head. + +Yahweh will bring you, and your king whom you will set over yourselves, to a nation that you have not known, you nor your fathers. There you will serve other gods of wood and stone. + +You will become an astonishment, a proverb, and a byword among all the peoples where Yahweh will lead you away. + +You will carry much seed out into the field, and will gather little in, for the locust will consume it. + +You will plant vineyards and dress them, but you will neither drink of the wine, nor harvest, because worms will eat them. + +You will have olive trees throughout all your borders, but you won’t anoint yourself with the oil, for your olives will drop off. + +You will father sons and daughters, but they will not be yours, for they will go into captivity. + +Locusts will consume all of your trees and the fruit of your ground. + +The foreigner who is among you will mount up above you higher and higher, and you will come down lower and lower. + +He will lend to you, and you won’t lend to him. He will be the head, and you will be the tail. + +

+

All these curses will come on you, and will pursue you and overtake you, until you are destroyed, because you didn’t listen to Yahweh your God’s voice, to keep his commandments and his statutes which he commanded you. + +They will be for a sign and for a wonder to you and to your offspring forever. + +Because you didn’t serve Yahweh your God with joyfulness and with gladness of heart, by reason of the abundance of all things; + +therefore you will serve your enemies whom Yahweh sends against you, in hunger, in thirst, in nakedness, and in lack of all things. He will put an iron yoke on your neck until he has destroyed you. + +Yahweh will bring a nation against you from far away, from the end of the earth, as the eagle flies: a nation whose language you will not understand, + +a nation of fierce facial expressions, that doesn’t respect the elderly, nor show favor to the young. + +They will eat the fruit of your livestock and the fruit of your ground, until you are destroyed. They also won’t leave you grain, new wine, oil, the increase of your livestock, or the young of your flock, until they have caused you to perish. + +They will besiege you in all your gates until your high and fortified walls in which you trusted come down throughout all your land. They will besiege you in all your gates throughout all your land which Yahweh your God has given you. + +You will eat the fruit of your own body, the flesh of your sons and of your daughters, whom Yahweh your God has given you, in the siege and in the distress with which your enemies will distress you. + +The man who is tender among you, and very delicate, his eye will be evil toward his brother, toward the wife whom he loves, and toward the remnant of his children whom he has remaining, + +so that he will not give to any of them of the flesh of his children whom he will eat, because he has nothing left to him, in the siege and in the distress with which your enemy will distress you in all your gates. + +The tender and delicate woman among you, who would not venture to set the sole of her foot on the ground for delicateness and tenderness, her eye will be evil toward the husband that she loves, toward her son, toward her daughter, + +toward her young one who comes out from between her feet, and toward her children whom she bears; for she will eat them secretly for lack of all things in the siege and in the distress with which your enemy will distress you in your gates. + +If you will not observe to do all the words of this law that are written in this book, that you may fear this glorious and fearful name, YAHWEH your God, + +then Yahweh will make your plagues and the plagues of your offspring fearful, even great plagues, and of long duration, and severe sicknesses, and of long duration. + +He will bring on you again all the diseases of Egypt, which you were afraid of; and they will cling to you. + +Also every sickness and every plague which is not written in the book of this law, Yahweh will bring them on you until you are destroyed. + +You will be left few in number, even though you were as the stars of the sky for multitude, because you didn’t listen to Yahweh your God’s voice. + +It will happen that as Yahweh rejoiced over you to do you good, and to multiply you, so Yahweh will rejoice over you to cause you to perish and to destroy you. You will be plucked from the land that you are going in to possess. + +Yahweh will scatter you among all peoples, from one end of the earth to the other end of the earth. There you will serve other gods which you have not known, you nor your fathers, even wood and stone. + +Among these nations you will find no ease, and there will be no rest for the sole of your foot; but Yahweh will give you there a trembling heart, failing of eyes, and pining of soul. + +Your life will hang in doubt before you. You will be afraid night and day, and will have no assurance of your life. + +In the morning you will say, “I wish it were evening!” and at evening you will say, “I wish it were morning!” for the fear of your heart which you will fear, and for the sights which your eyes will see. + +Yahweh will bring you into Egypt again with ships, by the way of which I told you that you would never see it again. There you will offer yourselves to your enemies for male and female slaves, and nobody will buy you. + +

+ + +

These are the words of the covenant which Yahweh commanded Moses to make with the children of Israel in the land of Moab, in addition to the covenant which he made with them in Horeb. + +Moses called to all Israel, and said to them: +

+

Your eyes have seen all that Yahweh did in the land of Egypt to Pharaoh, and to all his servants, and to all his land; + +the great trials which your eyes saw, the signs, and those great wonders. + +But Yahweh has not given you a heart to know, eyes to see, and ears to hear, to this day. + +I have led you forty years in the wilderness. Your clothes have not grown old on you, and your sandals have not grown old on your feet. + +You have not eaten bread, neither have you drunk wine or strong drink, that you may know that I am Yahweh your God. + +When you came to this place, Sihon the king of Heshbon and Og the king of Bashan came out against us to battle, and we struck them. + +We took their land, and gave it for an inheritance to the Reubenites, and to the Gadites, and to the half-tribe of the Manassites. + +Therefore keep the words of this covenant and do them, that you may prosper in all that you do. + +All of you stand today in the presence of Yahweh your God: your heads, your tribes, your elders, and your officers, even all the men of Israel, + +your little ones, your wives, and the foreigners who are in the middle of your camps, from the one who cuts your wood to the one who draws your water, + +that you may enter into the covenant of Yahweh your God, and into his oath, which Yahweh your God makes with you today, + +that he may establish you today as his people, and that he may be your God, as he spoke to you and as he swore to your fathers, to Abraham, to Isaac, and to Jacob. + +Neither do I make this covenant and this oath with you only, + +but with those who stand here with us today before Yahweh our God, and also with those who are not here with us today + +(for you know how we lived in the land of Egypt, and how we came through the middle of the nations through which you passed; + +and you have seen their abominations and their idols of wood, stone, silver, and gold, which were among them); + +lest there should be among you man, woman, family, or tribe whose heart turns away today from Yahweh our God, to go to serve the gods of those nations; lest there should be among you a root that produces bitter poison; + +and it happen, when he hears the words of this curse, that he bless himself in his heart, saying, “I shall have peace, though I walk in the stubbornness of my heart,” to destroy the moist with the dry. + +Yahweh will not pardon him, but then Yahweh’s anger and his jealousy will smoke against that man, and all the curse that is written in this book will fall on him, and Yahweh will blot out his name from under the sky. + +Yahweh will set him apart for evil out of all the tribes of Israel, according to all the curses of the covenant written in this book of the law. + +

+

The generation to comeyour children who will rise up after you, and the foreigner who will come from a far land—will say, when they see the plagues of that land, and the sicknesses with which Yahweh has made it sick, + +that all of its land is sulfur, salt, and burning, that it is not sown, doesn’t produce, nor does any grass grow in it, like the overthrow of Sodom, Gomorrah, Admah, and Zeboiim, which Yahweh overthrew in his anger, and in his wrath. + +Even all the nations will say, “Why has Yahweh done this to this land? What does the heat of this great anger mean?” + +

+

Then men will say, “Because they abandoned the covenant of Yahweh, the God of their fathers, which he made with them when he brought them out of the land of Egypt, + +and went and served other gods and worshiped them, gods that they didn’t know and that he had not given to them. + +Therefore Yahweh’s anger burned against this land, to bring on it all the curses that are written in this book. + +Yahweh rooted them out of their land in anger, in wrath, and in great indignation, and thrust them into another land, as it is today.” + +

+

The secret things belong to Yahweh our God; but the things that are revealed belong to us and to our children forever, that we may do all the words of this law. + +

+ + +

It shall happen, when all these things have come on you, the blessing and the curse, which I have set before you, and you shall call them to mind among all the nations where Yahweh your God has driven you, + +and return to Yahweh your God and obey his voice according to all that I command you today, you and your children, with all your heart and with all your soul, + +that then Yahweh your God will release you from captivity, have compassion on you, and will return and gather you from all the peoples where Yahweh your God has scattered you. + +If your outcasts are in the uttermost parts of the heavens, from there Yahweh your God will gather you, and from there he will bring you back. + +Yahweh your God will bring you into the land which your fathers possessed, and you will possess it. He will do you good, and increase your numbers more than your fathers. + +Yahweh your God will circumcise your heart, and the heart of your offspring, to love Yahweh your God with all your heart and with all your soul, that you may live. + +Yahweh your God will put all these curses on your enemies and on those who hate you, who persecuted you. + +You shall return and obey Yahweh’s voice, and do all his commandments which I command you today. + +Yahweh your God will make you prosperous in all the work of your hand, in the fruit of your body, in the fruit of your livestock, and in the fruit of your ground, for good; for Yahweh will again rejoice over you for good, as he rejoiced over your fathers, + +if you will obey Yahweh your God’s voice, to keep his commandments and his statutes which are written in this book of the law, if you turn to Yahweh your God with all your heart and with all your soul. + +

+

For this commandment which I command you today is not too hard for you or too distant. + +It is not in heaven, that you should say, “Who will go up for us to heaven, bring it to us, and proclaim it to us, that we may do it?” + +Neither is it beyond the sea, that you should say, “Who will go over the sea for us, bring it to us, and proclaim it to us, that we may do it?” + +But the word is very near to you, in your mouth and in your heart, that you may do it. + +Behold, I have set before you today life and prosperity, and death and evil. + +For I command you today to love Yahweh your God, to walk in his ways and to keep his commandments, his statutes, and his ordinances, that you may live and multiply, and that Yahweh your God may bless you in the land where you go in to possess it. + +But if your heart turns away, and you will not hear, but are drawn away and worship other gods, and serve them, + +I declare to you today that you will surely perish. You will not prolong your days in the land where you pass over the Jordan to go in to possess it. + +I call heaven and earth to witness against you today that I have set before you life and death, the blessing and the curse. Therefore choose life, that you may live, you and your descendants, + +to love Yahweh your God, to obey his voice, and to cling to him; for he is your life, and the length of your days, that you may dwell in the land which Yahweh swore to your fathers, to Abraham, to Isaac, and to Jacob, to give them. + +

+ + +

Moses went and spoke these words to all Israel. + +He said to them, “I am one hundred twenty years old today. I can no more go out and come in. Yahweh has said to me, ‘You shall not go over this Jordan.’ + +Yahweh your God himself will go over before you. He will destroy these nations from before you, and you shall dispossess them. Joshua will go over before you, as Yahweh has spoken. + +Yahweh will do to them as he did to Sihon and to Og, the kings of the Amorites, and to their land, when he destroyed them. + +Yahweh will deliver them up before you, and you shall do to them according to all the commandment which I have commanded you. + +Be strong and courageous. Don’t be afraid or scared of them, for Yahweh your God himself is who goes with you. He will not fail you nor forsake you.” + +

+

Moses called to Joshua, and said to him in the sight of all Israel, “Be strong and courageous, for you shall go with this people into the land which Yahweh has sworn to their fathers to give them; and you shall cause them to inherit it. + +Yahweh himself is who goes before you. He will be with you. He will not fail you nor forsake you. Don’t be afraid. Don’t be discouraged.” + +

+

Moses wrote this law and delivered it to the priests the sons of Levi, who bore the ark of Yahweh’s covenant, and to all the elders of Israel. + +Moses commanded them, saying, “At the end of every seven years, in the set time of the year of release, in the feast of booths, + +when all Israel has come to appear before Yahweh your God in the place which he will choose, you shall read this law before all Israel in their hearing. + +Assemble the people, the men and the women and the little ones, and the foreigners who are within your gates, that they may hear, learn, fear Yahweh your God, and observe to do all the words of this law, + +and that their children, who have not known, may hear and learn to fear Yahweh your God, as long as you live in the land where you go over the Jordan to possess it.” + +

+

Yahweh said to Moses, “Behold, your days approach that you must die. Call Joshua, and present yourselves in the Tent of Meeting, that I may commission him.” +

+

Moses and Joshua went, and presented themselves in the Tent of Meeting. + +

+

Yahweh appeared in the Tent in a pillar of cloud, and the pillar of cloud stood over the Tent’s door. + +Yahweh said to Moses, “Behold, you shall sleep with your fathers. This people will rise up and play the prostitute after the strange gods of the land where they go to be among them, and will forsake me and break my covenant which I have made with them. + +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 come on them; so that they will say in that day, ‘Haven’t these evils come on us because our God is not among us?’ + +I will surely hide my face in that day for all the evil which they have done, in that they have turned to other gods. + +

+

Now therefore write this song for yourselves, and teach it to the children of Israel. Put it in their mouths, that this song may be a witness for me against the children of Israel. + +For when I have brought them into the land which I swore to their fathers, flowing with milk and honey, and they have eaten and filled themselves, and grown fat, then they will turn to other gods, and serve them, and despise me, and break my covenant. + +It will happen, when many evils and troubles have come on them, that this song will testify before them as a witness; for it will not be forgotten out of the mouths of their descendants; for I know their ways and what they are doing today, before I have brought them into the land which I promised them.” + +

+

So Moses wrote this song the same day, and taught it to the children of Israel. + +

+

He commissioned Joshua the son of Nun, and said, “Be strong and courageous; for you shall bring the children of Israel into the land which I swore to them. I will be with you.” + +

+

When Moses had finished writing the words of this law in a book, until they were finished, + +Moses commanded the Levites, who bore the ark of Yahweh’s covenant, saying, + +Take this book of the law, and put it by the side of the ark of Yahweh your God’s covenant, that it may be there for a witness against you. + +For I know your rebellion and your stiff neck. Behold, while I am yet alive with you today, you have been rebellious against Yahweh. How much more after my death? + +Assemble to 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 witness against them. + +For I know that after my death you will utterly corrupt yourselves, and turn away from the way which I have commanded you; and evil will happen to you in the latter days, because you will do that which is evil in Yahweh’s sight, to provoke him to anger through the work of your hands.” + +

+

Moses spoke in the ears of all the assembly of Israel the words of this song, until they were finished. + +

+ + +Give ear, you heavens, and I will speak. + +Let the earth hear the words of my mouth. + + +My doctrine will drop as the rain. + +My speech will condense as the dew, + +as the misty rain on the tender grass, + +as the showers on the herb. + + +For I will proclaim Yahweh’s name. + +Ascribe greatness to our God! + + +The Rock: his work is perfect, + +for all his ways are just. + +A God of faithfulness who does no wrong, + +just and right is he. + + +They have dealt corruptly with him. + +They are not his children, because of their defect. + +They are a perverse and crooked generation. + + +Is this the way you repay Yahweh, + +foolish and unwise people? + +Isn’t he your father who has bought you? + +He has made you and established you. + + +Remember the days of old. + +Consider the years of many generations. + +Ask your father, and he will show you; + +your elders, and they will tell you. + + +When the Most High gave to the nations their inheritance, + +when he separated the children of men, + +he set the bounds of the peoples + +according to the number of the children of Israel. + + +For Yahweh’s portion is his people. + +Jacob is the lot of his inheritance. + + +He found him in a desert land, + +in the waste howling wilderness. + +He surrounded him. + +He cared for him. + +He kept him as the apple of his eye. + + +As an eagle that stirs up her nest, + +that flutters over her young, + +he spread abroad his wings, + +he took them, + +he bore them on his feathers. + + +Yahweh alone led him. + +There was no foreign god with him. + + +He made him ride on the high places of the earth. + +He ate the increase of the field. + +He caused him to suck honey out of the rock, + +oil out of the flinty rock; + + +butter from the herd, and milk from the flock, + +with fat of lambs, + +rams of the breed of Bashan, and goats, + +with the finest of the wheat. + +From the blood of the grape, you drank wine. + + +But Jeshurun grew fat, and kicked. + +You have grown fat. + +You have grown thick. + +You have become sleek. + +Then he abandoned God who made him, + +and rejected the Rock of his salvation. + + +They moved him to jealousy with strange gods. + +They provoked him to anger with abominations. + + +They sacrificed to demons, not God, + +to gods that they didn’t know, + +to new gods that came up recently, + +which your fathers didn’t dread. + + +Of the Rock who became your father, you are unmindful, + +and have forgotten God who gave you birth. + + +Yahweh saw and abhorred, + +because of the provocation of his sons and his daughters. + + +He said, “I will hide my face from them. + +I will see what their end will be; + +for they are a very perverse generation, + +children in whom is no faithfulness. + + +They have moved me to jealousy with that which is not God. + +They have provoked me to anger with their vanities. + +I will move them to jealousy with those who are not a people. + +I will provoke them to anger with a foolish nation. + + +For a fire is kindled in my anger, + +that burns to the lowest Sheol,32:22 +Sheol is the place of the dead. + +devours the earth with its increase, + +and sets the foundations of the mountains on fire. + + + +I will heap evils on them. + +I will spend my arrows on them. + + +They shall be wasted with hunger, + +and devoured with burning heat + +and bitter destruction. + +I will send the teeth of animals on them, + +with the venom of vipers that glide in the dust. + + +Outside the sword will bereave, + +and in the rooms, + +terror on both young man and virgin, + +the nursing infant with the gray-haired man. + + +I said that I would scatter them afar. + +I would make their memory to cease from among men; + + +were it not that I feared the provocation of the enemy, + +lest their adversaries should judge wrongly, + +lest they should say, ‘Our hand is exalted; + +Yahweh has not done all this.’” + + + +For they are a nation void of counsel. + +There is no understanding in them. + + +Oh that they were wise, that they understood this, + +that they would consider their latter end! + + +How could one chase a thousand, + +and two put ten thousand to flight, + +unless their Rock had sold them, + +and Yahweh had delivered them up? + + +For their rock is not as our Rock, + +even our enemies themselves concede. + + +For their vine is of the vine of Sodom, + +of the fields of Gomorrah. + +Their grapes are poison grapes. + +Their clusters are bitter. + + +Their wine is the poison of serpents, + +the cruel venom of asps. + + + +“Isn’t this laid up in store with me, + +sealed up among my treasures? + + +Vengeance is mine, and recompense, + +at the time when their foot slides, + +for the day of their calamity is at hand. + +Their doom rushes at them.” + + + +For Yahweh will judge his people, + +and have compassion on his servants, + +when he sees that their power is gone, + +that there is no one remaining, shut up or left at large. + + +He will say, “Where are their gods, + +the rock in which they took refuge, + + +which ate the fat of their sacrifices, + +and drank the wine of their drink offering? + +Let them rise up and help you! + +Let them be your protection. + + + +See now that I myself am he. + +There is no god with me. + +I kill and I make alive. + +I wound and I heal. + +There is no one who can deliver out of my hand. + + +For I lift up my hand to heaven and declare, + +as I live forever, + + +if I sharpen my glittering sword, + +my hand grasps it in judgment; + +I will take vengeance on my adversaries, + +and will repay those who hate me. + + +I will make my arrows drunk with blood. + +My sword shall devour flesh with the blood of the slain and the captives, + +from the head of the leaders of the enemy.” + + + +Rejoice, you nations, with his people, + +for he will avenge the blood of his servants. + +He will take vengeance on his adversaries, + +and will make atonement for his land and for his people.32:43 +For this verse, LXX reads: Rejoice, you heavens, with him, and let all the angels of God worship him; rejoice you Gentiles, with his people, and let all the sons of God strengthen themselves in him; for he will avenge the blood of his sons, and he will give vengeance, and recompense justice to his enemies, and will reward them that hate him; and the Lord shall purge the land of his people. + + +

Moses came and spoke all the words of this song in the ears of the people, he and Joshua the son of Nun. + +Moses finished reciting all these words to all Israel. + +He said to them, “Set your heart to all the words which I testify to you today, which you shall command your children to observe to do, all the words of this law. + +For it is no vain thing for you, because it is your life, and through this thing you shall prolong your days in the land, where you go over the Jordan to possess it.” + +

+

Yahweh spoke to Moses that same day, saying, + +Go up into this mountain of Abarim, to Mount Nebo, which is in the land of Moab, that is across from Jericho; and see the land of Canaan, which I give to the children of Israel for a possession. + +Die on the mountain where you go up, and be gathered to your people, as Aaron your brother died on Mount Hor, and was gathered to his people; + +because you trespassed against me among the children of Israel at the waters of Meribah of Kadesh, in the wilderness of Zin; because you didn’t uphold my holiness among the children of Israel. + +For you shall see the land from a distance; but you shall not go there into the land which I give the children of Israel.” + +

+ + +

This is the blessing with which Moses the man of God blessed the children of Israel before his death. + +He said, +

+Yahweh came from Sinai, + +and rose from Seir to them. + +He shone from Mount Paran. + +He came from the ten thousands of holy ones. + +At his right hand was a fiery law for them.33:2 +another manuscript reads “He came with myriads of holy ones from the south, from his mountain slopes.” + + +Yes, he loves the people. + +All his saints are in your hand. + +They sat down at your feet. + +Each receives your words. + + +Moses commanded us a law, + +an inheritance for the assembly of Jacob. + + +He was king in Jeshurun, + +when the heads of the people were gathered, + +all the tribes of Israel together. + + + +Let Reuben live, and not die; + +Nor let his men be few.” + + +

This is for Judah. He said, +

+Hear, Yahweh, the voice of Judah. + +Bring him in to his people. + +With his hands he contended for himself. + +You shall be a help against his adversaries.” + + +

About Levi he said, +

+Your Thummim and your Urim are with your godly one, + +whom you proved at Massah, + +with whom you contended at the waters of Meribah. + + +He said of his father, and of his mother, ‘I have not seen him.’ + +He didn’t acknowledge his brothers, + +nor did he know his own children; + +for they have observed your word, + +and keep your covenant. + + +They shall teach Jacob your ordinances, + +and Israel your law. + +They shall put incense before you, + +and whole burnt offering on your altar. + + +Yahweh, bless his skills. + +Accept the work of his hands. + +Strike through the hips of those who rise up against him, + +of those who hate him, that they not rise again.” + + +

About Benjamin he said, +

+The beloved of Yahweh will dwell in safety by him. + +He covers him all day long. + +He dwells between his shoulders.” + + +

About Joseph he said, +

+His land is blessed by Yahweh, + +for the precious things of the heavens, for the dew, + +for the deep that couches beneath, + + +for the precious things of the fruits of the sun, + +for the precious things that the moon can yield, + + +for the best things of the ancient mountains, + +for the precious things of the everlasting hills, + + +for the precious things of the earth and its fullness, + +the good will of him who lived in the bush.33:16 +i.e., the burning bush of Exodus 3:3-4. + +Let this come on the head of Joseph, + +on the crown of the head of him who was separated from his brothers. + + +Majesty belongs to the firstborn of his herd. + +His horns are the horns of the wild ox. + +With them he will push all the peoples to the ends of the earth. + +They are the ten thousands of Ephraim. + +They are the thousands of Manasseh.” + + +

About Zebulun he said, +

+Rejoice, Zebulun, in your going out; + +and Issachar, in your tents. + + +They will call the peoples to the mountain. + +There they will offer sacrifices of righteousness, + +for they will draw out the abundance of the seas, + +the hidden treasures of the sand.” + + +

About Gad he said, +

+He who enlarges Gad is blessed. + +He dwells as a lioness, + +and tears the arm and the crown of the head. + + +He provided the first part for himself, + +for the lawgiver’s portion was reserved for him. + +He came with the heads of the people. + +He executed the righteousness of Yahweh, + +His ordinances with Israel.” + + +

About Dan he said, +

+Dan is a lion’s cub + +that leaps out of Bashan.” + + +

About Naphtali he said, +

+Naphtali, satisfied with favor, + +full of Yahweh’s blessing, + +Possess the west and the south.” + + +

About Asher he said, +

+“Asher is blessed with children. + +Let him be acceptable to his brothers. + +Let him dip his foot in oil. + + +Your bars will be iron and bronze. + +As your days, so your strength will be. + + + +“There is no one like God, Jeshurun, + +who rides on the heavens for your help, + +in his excellency on the skies. + + +The eternal God is your dwelling place. + +Underneath are the everlasting arms. + +He thrust out the enemy from before you, + +and said, ‘Destroy!’ + + +Israel dwells in safety, + +the fountain of Jacob alone, + +In a land of grain and new wine. + +Yes, his heavens drop down dew. + + +You are happy, Israel! + +Who is like you, a people saved by Yahweh, + +the shield of your help, + +the sword of your excellency? + +Your enemies will submit themselves to you. + +You will tread on their high places.” + + + + +

Moses went up from the plains of Moab to Mount Nebo, to the top of Pisgah, that is opposite Jericho. Yahweh showed him all the land of Gilead to Dan, + +and all Naphtali, and the land of Ephraim and Manasseh, and all the land of Judah, to the Western Sea, + +and the south,34:3 +or, Negev and the Plain of the valley of Jericho the city of palm trees, to Zoar. + +Yahweh said to him, “This is the land which I swore to Abraham, to Isaac, and to Jacob, saying, ‘I will give it to your offspring.’ I have caused you to see it with your eyes, but you shall not go over there.” + +

+

So Moses the servant of Yahweh died there in the land of Moab, according to Yahweh’s word. + +He buried him in the valley in the land of Moab opposite Beth Peor, but no man knows where his tomb is to this day. + +Moses was one hundred twenty years old when he died. His eye was not dim, nor his strength gone. + +The children of Israel wept for Moses in the plains of Moab thirty days, until the days of weeping in the mourning for Moses were ended. + +Joshua the son of Nun was full of the spirit of wisdom, for Moses had laid his hands on him. The children of Israel listened to him, and did as Yahweh commanded Moses. + +Since then, there has not arisen a prophet in Israel like Moses, whom Yahweh knew face to face, + +in all the signs and the wonders which Yahweh sent him to do in the land of Egypt, to Pharaoh, and to all his servants, and to all his land, + +and in all the mighty hand, and in all the awesome deeds, which Moses did in the sight of all Israel. + +

+
+World English Bible (WEB) +Joshua +The Book of Joshua +Joshua +Jos +

The Book of +

+

Joshua +

+ + +

Now after the death of Moses the servant of Yahweh,1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. Yahweh spoke to Joshua the son of Nun, Mosesservant, saying, + +Moses my servant is dead. Now therefore arise, go across this Jordan, you and all these people, to the land which I am giving to them, even to the children of Israel. + +I have given you every place that the sole of your foot will tread on, as I told Moses. + +From the wilderness and this Lebanon even to the great river, the river Euphrates, all the land of the Hittites, and to the great sea toward the going down of the sun, shall be your border. + +No man will be able to stand before you all the days of your life. As I was with Moses, so I will be with you. I will not fail you nor forsake you. + +

+

Be strong and courageous; for you shall cause this people to inherit the land which I swore to their fathers to give them. + +Only be strong and very courageous. Be careful to observe to do according to all the law which Moses my servant commanded you. Don’t turn from it to the right hand or to the left, that you may have good success wherever you go. + +This book of the law shall not depart from your mouth, but you shall meditate on it day and night, that you may observe to do according to all that is written in it; for then you shall make your way prosperous, and then you shall have good success. + +Haven’t I commanded you? Be strong and courageous. Don’t be afraid. Don’t be dismayed, for Yahweh your God1:9 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). is with you wherever you go.” + +

+

Then Joshua commanded the officers of the people, saying, + +Pass through the middle of the camp, and command the people, saying, ‘Prepare food; for within three days you are to pass over this Jordan, to go in to possess the land which Yahweh your God gives you to possess.’” + +

+

Joshua spoke to the Reubenites, and to the Gadites, and to the half-tribe of Manasseh, saying, + +Remember the word which Moses the servant of Yahweh commanded you, saying, ‘Yahweh your God gives you rest, and will give you this land. + +Your wives, your little ones, and your livestock shall live in the land which Moses gave you beyond the Jordan; but you shall pass over before your brothers armed, all the mighty men of valor, and shall help them + +until Yahweh has given your brothers rest, as he has given you, and they have also possessed the land which Yahweh your God gives them. Then you shall return to the land of your possession and possess it, which Moses the servant of Yahweh gave you beyond the Jordan toward the sunrise.’” + +

+

They answered Joshua, saying, “All that you have commanded us we will do, and wherever you send us we will go. + +Just as we listened to Moses in all things, so will we listen to you. Only may Yahweh your God be with you, as he was with Moses. + +Whoever rebels against your commandment, and doesn’t listen to your words in all that you command him shall himself be put to death. Only be strong and courageous.” + +

+ + +

Joshua the son of Nun secretly sent two men out of Shittim as spies, saying, “Go, view the land, including Jericho.” They went and came into the house of a prostitute whose name was Rahab, and slept there. + +

+

The king of Jericho was told, “Behold,2:2 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. men of the children of Israel came in here tonight to spy out the land.” + +

+

Jericho’s king sent to Rahab, saying, “Bring out the men who have come to you, who have entered into your house; for they have come to spy out all the land.” + +

+

The woman took the two men and hid them. Then she said, “Yes, the men came to me, but I didn’t know where they came from. + +About the time of the shutting of the gate, when it was dark, the men went out. Where the men went, I don’t know. Pursue them quickly. You may catch up with them.” + +But she had brought them up to the roof, and hidden them under the stalks of flax which she had laid in order on the roof. + +The men pursued them along the way to the fords of the Jordan River. As soon as those who pursued them had gone out, they shut the gate. + +Before they had lain down, she came up to them on the roof. + +She said to the men, “I know that Yahweh has given you the land, and that the fear of you has fallen upon us, and that all the inhabitants of the land melt away before you. + +For we have heard how Yahweh dried up the water of the Red Sea before you, when you came out of Egypt; and what you did to the two kings of the Amorites, who were beyond the Jordan, to Sihon and to Og, whom you utterly destroyed. + +As soon as we had heard it, our hearts melted, and there wasn’t any more spirit in any man, because of you: for Yahweh your God, he is God in heaven above, and on earth beneath. + +Now therefore, please swear to me by Yahweh, since I have dealt kindly with you, that you also will deal kindly with my father’s house, and give me a true sign; + +and that you will save alive my father, my mother, my brothers, and my sisters, and all that they have, and will deliver our lives from death.” + +

+

The men said to her, “Our life for yours, if you don’t talk about this business of ours; and it shall be, when Yahweh gives us the land, that we will deal kindly and truly with you.” + +

+

Then she let them down by a cord through the window; for her house was on the side of the wall, and she lived on the wall. + +She said to them, “Go to the mountain, lest the pursuers find you. Hide yourselves there three days, until the pursuers have returned. Afterward, you may go your way.” + +

+

The men said to her, “We will be guiltless of this your oath which you’ve made us to swear. + +Behold, when we come into the land, tie this line of scarlet thread in the window which you used to let us down. Gather to yourself into the house your father, your mother, your brothers, and all your father’s household. + +It shall be that whoever goes out of the doors of your house into the street, his blood will be on his head, and we will be guiltless. Whoever is with you in the house, his blood shall be on our head, if any hand is on him. + +But if you talk about this business of ours, then we shall be guiltless of your oath which you’ve made us to swear.” + +

+

She said, “Let it be as you have said.” She sent them away, and they departed. Then she tied the scarlet line in the window. + +

+

They went and came to the mountain, and stayed there three days, until the pursuers had returned. The pursuers sought them all along the way, but didn’t find them. + +Then the two men returned, descended from the mountain, crossed the river, and came to Joshua the son of Nun. They told him all that had happened to them. + +They said to Joshua, “Truly Yahweh has delivered all the land into our hands. Moreover, all the inhabitants of the land melt away before us.” + +

+ + +

Joshua got up early in the morning; and they moved from Shittim and came to the Jordan, he and all the children of Israel. They camped there before they crossed over. + +After three days, the officers went through the middle of the camp; + +and they commanded the people, saying, “When you see the ark of Yahweh your God’s covenant, and the Levitical priests bearing it, then leave your place and follow it. + +Yet there shall be a space between you and it of about two thousand cubits3:4 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 2,000 cubits is about 920 meters. by measure—don’t come closer to itthat you may know the way by which you must go; for you have not passed this way before.” + +

+

Joshua said to the people, “Sanctify yourselves; for tomorrow Yahweh will do wonders among you.” + +

+

Joshua spoke to the priests, saying, “Take up the ark of the covenant, and cross over before the people.” They took up the ark of the covenant, and went before the people. + +

+

Yahweh said to Joshua, “Today I will begin to magnify you in the sight of all Israel, that they may know that as I was with Moses, so I will be with you. + +You shall command the priests who bear the ark of the covenant, saying, ‘When you come to the brink of the waters of the Jordan, you shall stand still in the Jordan.’” + +

+

Joshua said to the children of Israel, “Come here, and hear the words of Yahweh your God.” + +Joshua said, “By this you shall know that the living God is among you, and that he will without fail drive the Canaanite, the Hittite, the Hivite, the Perizzite, the Girgashite, the Amorite, and the Jebusite out from before you. + +Behold, the ark of the covenant of the Lord3:11 +The word translated “Lord” is “Adonai.” of all the earth passes over before you into the Jordan. + +Now therefore take twelve men out of the tribes of Israel, for every tribe a man. + +It shall be that when the soles of the feet of the priests who bear the ark of Yahweh, the Lord of all the earth, rest in the waters of the Jordan, that the waters of the Jordan will be cut off. The waters that come down from above shall stand in one heap.” + +

+

When the people moved from their tents to pass over the Jordan, the priests who bore the ark of the covenant being before the people, + +and when those who bore the ark had come to the Jordan, and the feet of the priests who bore the ark had dipped in the edge of the water (for the Jordan overflows all its banks all the time of harvest), + +the waters which came down from above stood, and rose up in one heap a great way off, at Adam, the city that is beside Zarethan; and those that went down toward the sea of the Arabah, even the Salt Sea, were wholly cut off. Then the people passed over near Jericho. + +The priests who bore the ark of Yahweh’s covenant stood firm on dry ground in the middle of the Jordan; and all Israel crossed over on dry ground, until all the nation had passed completely over the Jordan. + +

+ + +

When all the nation had completely crossed over the Jordan, Yahweh spoke to Joshua, saying, + +Take twelve men out of the people, a man out of every tribe, + +and command them, saying, ‘Take from out of the middle of the Jordan, out of the place where the priestsfeet stood firm, twelve stones, carry them over with you, and lay them down in the place where you’ll camp tonight.’” + +

+

Then Joshua called the twelve men whom he had prepared of the children of Israel, a man out of every tribe. + +Joshua said to them, “Cross before the ark of Yahweh your God into the middle of the Jordan, and each of you pick up a stone and put it on your shoulder, according to the number of the tribes of the children of Israel; + +that this may be a sign among you, that when your children ask in the future, saying, ‘What do you mean by these stones?’ + +then you shall tell them, ‘Because the waters of the Jordan were cut off before the ark of Yahweh’s covenant. When it crossed over the Jordan, the waters of the Jordan were cut off. These stones shall be for a memorial to the children of Israel forever.’” + +

+

The children of Israel did as Joshua commanded, and took up twelve stones out of the middle of the Jordan, as Yahweh spoke to Joshua, according to the number of the tribes of the children of Israel. They carried them over with them to the place where they camped, and laid them down there. + +Joshua set up twelve stones in the middle of the Jordan, in the place where the feet of the priests who bore the ark of the covenant stood; and they are there to this day. + +For the priests who bore the ark stood in the middle of the Jordan until everything was finished that Yahweh commanded Joshua to speak to the people, according to all that Moses commanded Joshua; and the people hurried and passed over. + +When all the people had completely crossed over, Yahweh’s ark crossed over with the priests in the presence of the people. + +

+

The children of Reuben, and the children of Gad, and the half-tribe of Manasseh crossed over armed before the children of Israel, as Moses spoke to them. + +About forty thousand men, ready and armed for war, passed over before Yahweh to battle, to the plains of Jericho. + +On that day, Yahweh magnified Joshua in the sight of all Israel; and they feared him, as they feared Moses, all the days of his life. + +

+

Yahweh spoke to Joshua, saying, + +Command the priests who bear the ark of the covenant, that they come up out of the Jordan.” + +

+

Joshua therefore commanded the priests, saying, “Come up out of the Jordan!” + +When the priests who bore the ark of Yahweh’s covenant had come up out of the middle of the Jordan, and the soles of the priestsfeet had been lifted up to the dry ground, the waters of the Jordan returned to their place, and went over all its banks, as before. + +The people came up out of the Jordan on the tenth day of the first month, and encamped in Gilgal, on the east border of Jericho. + +

+

Joshua set up those twelve stones, which they took out of the Jordan, in Gilgal. + +He spoke to the children of Israel, saying, “When your children ask their fathers in time to come, saying, ‘What do these stones mean?’ + +Then you shall let your children know, saying, ‘Israel came over this Jordan on dry land. + +For Yahweh your God dried up the waters of the Jordan from before you until you had crossed over, as Yahweh your God did to the Red Sea, which he dried up from before us, until we had crossed over, + +that all the peoples of the earth may know that Yahweh’s hand is mighty, and that you may fear Yahweh your God forever.’” + +

+ + +

When all the kings of the Amorites, who were beyond the Jordan westward, and all the kings of the Canaanites, who were by the sea, heard how Yahweh had dried up the waters of the Jordan from before the children of Israel until we had crossed over, their heart melted, and there was no more spirit in them, because of the children of Israel. + +At that time, Yahweh said to Joshua, “Make flint knives, and circumcise again the sons of Israel the second time.” + +Joshua made himself flint knives, and circumcised the sons of Israel at the hill of the foreskins. + +This is the reason Joshua circumcised them: all the people who came out of Egypt, who were males, even all the men of war, died in the wilderness along the way, after they came out of Egypt. + +For all the people who came out were circumcised; but all the people who were born in the wilderness along the way as they came out of Egypt had not been circumcised. + +For the children of Israel walked forty years in the wilderness until all the nation, even the men of war who came out of Egypt, were consumed, because they didn’t listen to Yahweh’s voice. Yahweh swore to them that he wouldn’t let them see the land which Yahweh swore to their fathers that he would give us, a land flowing with milk and honey. + +Their children, whom he raised up in their place, were circumcised by Joshua, for they were uncircumcised, because they had not circumcised them on the way. + +When they were done circumcising the whole nation, they stayed in their places in the camp until they were healed. + +

+

Yahweh said to Joshua, “Today I have rolled away the reproach of Egypt from you.” Therefore the name of that place was called Gilgal5:9 +“Gilgal” sounds like the Hebrew for “roll.” to this day. + +The children of Israel encamped in Gilgal. They kept the Passover on the fourteenth day of the month at evening in the plains of Jericho. + +They ate unleavened cakes and parched grain of the produce of the land on the next day after the Passover, in the same day. + +The manna ceased on the next day, after they had eaten of the produce of the land. The children of Israel didn’t have manna any more, but they ate of the fruit of the land of Canaan that year. + +

+

When Joshua was by Jericho, he lifted up his eyes and looked, and behold, a man stood in front of him with his sword drawn in his hand. Joshua went to him and said to him, “Are you for us, or for our enemies?” + +

+

He said, “No; but I have come now as commander of Yahweh’s army.” +

+

Joshua fell on his face to the earth, and worshiped, and asked him, “What does my lord say to his servant?” + +

+

The prince of Yahweh’s army said to Joshua, “Take off your sandals, for the place on which you stand is holy.” Joshua did so. + +

+ + +

Now Jericho was tightly shut up because of the children of Israel. No one went out, and no one came in. + +Yahweh said to Joshua, “Behold, I have given Jericho into your hand, with its king and the mighty men of valor. + +All of your men of war shall march around the city, going around the city once. You shall do this six days. + +Seven priests shall bear seven trumpets of ramshorns before the ark. On the seventh day, you shall march around the city seven times, and the priests shall blow the trumpets. + +It shall be that when they make a long blast with the ram’s horn, and when you hear the sound of the trumpet, all the people shall shout with a great shout; then the city wall will fall down flat, and the people shall go up, every man straight in front of him.” + +

+

Joshua the son of Nun called the priests, and said to them, “Take up the ark of the covenant, and let seven priests bear seven trumpets of ramshorns before Yahweh’s ark.” + +

+

They said to the people, “Advance! March around the city, and let the armed men pass on before Yahweh’s ark.” + +

+

It was so, that when Joshua had spoken to the people, the seven priests bearing the seven trumpets of ramshorns before Yahweh advanced and blew the trumpets, and the ark of Yahweh’s covenant followed them. + +The armed men went before the priests who blew the trumpets, and the ark went after them. The trumpets sounded as they went. + +

+

Joshua commanded the people, saying, “You shall not shout nor let your voice be heard, neither shall any word proceed out of your mouth until the day I tell you to shout. Then you shall shout.” + +So he caused Yahweh’s ark to go around the city, circling it once. Then they came into the camp, and stayed in the camp. + +Joshua rose early in the morning, and the priests took up Yahweh’s ark. + +The seven priests bearing the seven trumpets of ramshorns in front of Yahweh’s ark went on continually, and blew the trumpets. The armed men went in front of them. The rear guard came after Yahweh’s ark. The trumpets sounded as they went. + +The second day they marched around the city once, and returned into the camp. They did this six days. + +

+

On the seventh day, they rose early at the dawning of the day, and marched around the city in the same way seven times. On this day only they marched around the city seven times. + +At the seventh time, when the priests blew the trumpets, Joshua said to the people, “Shout, for Yahweh has given you the city! + +The city shall be devoted, even it and all that is in it, to Yahweh. Only Rahab the prostitute shall live, she and all who are with her in the house, because she hid the messengers that we sent. + +But as for you, only keep yourselves from what is devoted to destruction, lest when you have devoted it, you take of the devoted thing; so you would make the camp of Israel accursed and trouble it. + +But all the silver, gold, and vessels of bronze and iron are holy to Yahweh. They shall come into Yahweh’s treasury.” + +

+

So the people shouted and the priests blew the trumpets. When the people heard the sound of the trumpet, the people shouted with a great shout, and the wall fell down flat, so that the people went up into the city, every man straight in front of him, and they took the city. + +They utterly destroyed all that was in the city, both man and woman, both young and old, and ox, sheep, and donkey, with the edge of the sword. + +Joshua said to the two men who had spied out the land, “Go into the prostitute’s house, and bring the woman and all that she has out from there, as you swore to her.” + +The young men who were spies went in, and brought out Rahab with her father, her mother, her brothers, and all that she had. They also brought out all of her relatives, and they set them outside of the camp of Israel. + +They burned the city with fire, and all that was in it. Only they put the silver, the gold, and the vessels of bronze and of iron into the treasury of Yahweh’s house. + +But Rahab the prostitute, her father’s household, and all that she had, Joshua saved alive. She lives in the middle of Israel to this day, because she hid the messengers whom Joshua sent to spy out Jericho. + +

+

Joshua commanded them with an oath at that time, saying, “Cursed is the man before Yahweh who rises up and builds this city Jericho. With the loss of his firstborn he will lay its foundation, and with the loss of his youngest son he will set up its gates.” + +So Yahweh was with Joshua; and his fame was in all the land. + +

+ + +

But the children of Israel committed a trespass in the devoted things; for Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, took some of the devoted things. Therefore Yahweh’s anger burned against the children of Israel. + +Joshua sent men from Jericho to Ai, which is beside Beth Aven, on the east side of Bethel, and spoke to them, saying, “Go up and spy out the land.” +

+

The men went up and spied out Ai. + +They returned to Joshua, and said to him, “Don’t let all the people go up, but let about two or three thousand men go up and strike Ai. Don’t make all the people to toil there, for there are only a few of them.” + +So about three thousand men of the people went up there, and they fled before the men of Ai. + +The men of Ai struck about thirty-six men of them. They chased them from before the gate even to Shebarim, and struck them at the descent. The hearts of the people melted, and became like water. + +Joshua tore his clothes, and fell to the earth on his face before Yahweh’s ark until the evening, he and the elders of Israel; and they put dust on their heads. + +Joshua said, “Alas, Lord Yahweh, why have you brought this people over the Jordan at all, to deliver us into the hand of the Amorites, to cause us to perish? I wish that we had been content and lived beyond the Jordan! + +Oh, Lord, what shall I say, after Israel has turned their backs before their enemies? + +For the Canaanites and all the inhabitants of the land will hear of it, and will surround us, and cut off our name from the earth. What will you do for your great name?” + +

+

Yahweh said to Joshua, “Get up! Why have you fallen on your face like that? + +Israel has sinned. Yes, they have even transgressed my covenant which I commanded them. Yes, they have even taken some of the devoted things, and have also stolen, and also deceived. They have even put it among their own stuff. + +Therefore the children of Israel can’t stand before their enemies. They turn their backs before their enemies, because they have become devoted for destruction. I will not be with you any more, unless you destroy the devoted things from among you. + +Get up! Sanctify the people, and say, ‘Sanctify yourselves for tomorrow, for Yahweh, the God of Israel, says, “There is a devoted thing among you, Israel. You cannot stand before your enemies until you take away the devoted thing from among you.” + +In the morning therefore you shall be brought near by your tribes. It shall be that the tribe which Yahweh selects shall come near by families. The family which Yahweh selects shall come near by households. The household which Yahweh selects shall come near man by man. + +It shall be, that he who is taken with the devoted thing shall be burned with fire, he and all that he has, because he has transgressed Yahweh’s covenant, and because he has done a disgraceful thing in Israel.’” + +

+

So Joshua rose up early in the morning and brought Israel near by their tribes. The tribe of Judah was selected. + +He brought near the family of Judah, and he selected the family of the Zerahites. He brought near the family of the Zerahites man by man, and Zabdi was selected. + +He brought near 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 selected. + +Joshua said to Achan, “My son, please give glory to Yahweh, the God of Israel, and make confession to him. Tell me now what you have done! Don’t hide it from me!” + +

+

Achan answered Joshua, and said, “I have truly sinned against Yahweh, the God of Israel, and this is what I have done. + +When I saw among the plunder a beautiful Babylonian robe, two hundred shekels7:21 +A shekel is about 10 grams or about 0.35 ounces. of silver, and a wedge of gold weighing fifty shekels, then I coveted them and took them. Behold, they are hidden in the ground in the middle of my tent, with the silver under it.” + +

+

So Joshua sent messengers, and they ran to the tent. Behold, it was hidden in his tent, with the silver under it. + +They took them from the middle of the tent, and brought them to Joshua and to all the children of Israel. They laid them down before Yahweh. + +Joshua, and all Israel with him, took Achan the son of Zerah, the silver, the robe, the wedge of gold, his sons, his daughters, his cattle, his donkeys, his sheep, his tent, and all that he had; and they brought them up to the valley of Achor. + +Joshua said, “Why have you troubled us? Yahweh will trouble you today.” All Israel stoned him with stones, and they burned them with fire and stoned them with stones. + +They raised over him a great heap of stones that remains to this day. Yahweh turned from the fierceness of his anger. Therefore the name of that place was calledThe valley of Achorto this day. + +

+ + +

Yahweh said to Joshua, “Don’t be afraid, and don’t be dismayed. Take all the warriors with you, and arise, go up to Ai. Behold, I have given into your hand the king of Ai, with his people, his city, and his land. + +You shall do to Ai and her king as you did to Jericho and her king, except you shall take its goods and its livestock for yourselves. Set an ambush for the city behind it.” + +

+

So Joshua arose, with all the warriors, to go up to Ai. Joshua chose thirty thousand men, the mighty men of valor, and sent them out by night. + +He commanded them, saying, “Behold, you shall lie in ambush against the city, behind the city. Don’t go very far from the city, but all of you be ready. + +I and all the people who are with me will approach the city. It shall happen, when they come out against us, as at the first, that we will flee before them. + +They will come out after us until we have drawn them away from the city; for they will say, ‘They flee before us, like the first time.’ So we will flee before them, + +and you shall rise up from the ambush, and take possession of the city; for Yahweh your God will deliver it into your hand. + +It shall be, when you have seized the city, that you shall set the city on fire. You shall do this according to Yahweh’s word. Behold, I have commanded you.” + +

+

Joshua sent them out; and they went to set up the ambush, and stayed between Bethel and Ai on the west side of Ai; but Joshua stayed among the people that night. + +Joshua rose up early in the morning, mustered the people, and went up, he and the elders of Israel, before the people to Ai. + +All the people, even the men of war who were with him, went up and came near, and came before the city and encamped on the north side of Ai. Now there was a valley between him and Ai. + +He took about five thousand men, and set them in ambush between Bethel and Ai, on the west side of the city. + +So they set the people, even all the army who was on the north of the city, and their ambush on the west of the city; and Joshua went that night into the middle of the valley. + +When the king of Ai saw it, they hurried and rose up early, and the men of the city went out against Israel to battle, he and all his people, at the time appointed, before the Arabah; but he didn’t know that there was an ambush against him behind the city. + +Joshua and all Israel made as if they were beaten before them, and fled by the way of the wilderness. + +All the people who were in the city were called together to pursue after them. They pursued Joshua, and were drawn away from the city. + +There was not a man left in Ai or Bethel who didn’t go out after Israel. They left the city open, and pursued Israel. + +

+

Yahweh said to Joshua, “Stretch out the javelin that is in your hand toward Ai, for I will give it into your hand.” +

+

Joshua stretched out the javelin that was in his hand toward the city. + +The ambush arose quickly out of their place, and they ran as soon as he had stretched out his hand and entered into the city and took it. They hurried and set the city on fire. + +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. The people who fled to the wilderness turned back on the pursuers. + +When Joshua and all Israel saw that the ambush had taken the city, and that the smoke of the city ascended, then they turned back and killed the men of Ai. + +The others came out of the city against them, so they were in the middle of Israel, some on this side, and some on that side. They struck them, so that they let none of them remain or escape. + +They captured the king of Ai alive, and brought him to Joshua. + +

+

When Israel had finished killing all the inhabitants of Ai in the field, in the wilderness in which they pursued them, and they had all fallen by the edge of the sword until they were consumed, all Israel returned to Ai and struck it with the edge of the sword. + +All that fell that day, both of men and women, were twelve thousand, even all the people of Ai. + +For Joshua didn’t draw back his hand, with which he stretched out the javelin, until he had utterly destroyed all the inhabitants of Ai. + +Israel took for themselves only the livestock and the goods of that city, according to Yahweh’s word which he commanded Joshua. + +So Joshua burned Ai and made it a heap forever, even a desolation, to this day. + +He hanged the king of Ai on a tree until the evening. At sundown, Joshua commanded, and they took his body down from the tree and threw it at the entrance of the gate of the city, and raised a great heap of stones on it that remains to this day. + +

+

Then Joshua built an altar to Yahweh, the God of Israel, on Mount Ebal, + +as Moses the servant of Yahweh commanded the children of Israel, as it is written in the book of the law of Moses: an altar of uncut stones, on which no one had lifted up any iron. They offered burnt offerings on it to Yahweh and sacrificed peace offerings. + +He wrote there on the stones a copy of Moseslaw, which he wrote in the presence of the children of Israel. + +All Israel, with their elders, officers, and judges, stood on both sides of the ark before the Levitical priests, who carried the ark of Yahweh’s covenant, the foreigner as well as the native; half of them in front of Mount Gerizim, and half of them in front of Mount Ebal, as Moses the servant of Yahweh had commanded at the first, that they should bless the people of Israel. + +Afterward he read all the words of the law, the blessing and the curse, according to all that is written in the book of the law. + +There was not a word of all that Moses commanded which Joshua didn’t read before all the assembly of Israel, with the women, the little ones, and the foreigners who were among them. + +

+ + +

When all the kings who were beyond the Jordan, in the hill country, and in the lowland, and on all the shore of the great sea in front of Lebanon, the Hittite, the Amorite, the Canaanite, the Perizzite, the Hivite, and the Jebusite, heard of it + +they gathered themselves together to fight with Joshua and with Israel, with one accord. + +But when the inhabitants of Gibeon heard what Joshua had done to Jericho and to Ai, + +they also resorted to a ruse, and went and made as if they had been ambassadors, and took old sacks on their donkeys, and old, torn-up and bound up wineskins, + +and old and patched sandals on their feet, and wore old garments. All the bread of their food supply was dry and moldy. + +They went to Joshua at the camp at Gilgal, and said to him and to the men of Israel, “We have come from a far country. Now therefore make a covenant with us.” + +

+

The men of Israel said to the Hivites, “What if you live among us? How could we make a covenant with you?” + +

+

They said to Joshua, “We are your servants.” +

+

Joshua said to them, “Who are you? Where do you come from?” + +

+

They said to him, “Your servants have come from a very far country because of the name of Yahweh your God; for we have heard of his fame, all that he did in Egypt, + +and all that he did to the two kings of the Amorites who were beyond the Jordan, to Sihon king of Heshbon and to Og king of Bashan, who was at Ashtaroth. + +Our elders and all the inhabitants of our country spoke to us, saying, ‘Take supplies in your hand for the journey, and go to meet them. Tell them, “We are your servants. Now make a covenant with us.”’ + +This our bread we took hot for our supplies out of our houses on the day we went out to go to you; but now, behold, it is dry, and has become moldy. + +These wineskins, which we filled, were new; and behold, they are torn. These our garments and our sandals have become old because of the very long journey.” + +

+

The men sampled their provisions, and didn’t ask counsel from Yahweh’s mouth. + +Joshua made peace with them, and made a covenant with them, to let them live. The princes of the congregation swore to them. + +At the end of three days after they had made a covenant with them, they heard that they were their neighbors, and that they lived among them. + +The children of Israel traveled and came to their cities on the third day. Now their cities were Gibeon, Chephirah, Beeroth, and Kiriath Jearim. + +The children of Israel didn’t strike them, because the princes of the congregation had sworn to them by Yahweh, the God of Israel. All the congregation murmured against the princes. + +But all the princes said to all the congregation, “We have sworn to them by Yahweh, the God of Israel. Now therefore we may not touch them. + +We will do this to them, and let them live; lest wrath be on us, because of the oath which we swore to them.” + +The princes said to them, “Let them live.” So they became wood cutters and drawers of water for all the congregation, as the princes had spoken to them. + +

+

Joshua called for them, and he spoke to them, saying, “Why have you deceived us, saying, ‘We are very far from you,’ when you live among us? + +Now therefore you are cursed, and some of you will never fail to be slaves, both wood cutters and drawers of water for the house of my God.” + +

+

They answered Joshua, and said, “Because your servants were certainly told how Yahweh your 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 very afraid for our lives because of you, and have done this thing. + +Now, behold, we are in your hand. Do to us as it seems good and right to you to do.” + +

+

He did so to them, and delivered them out of the hand of the children of Israel, so that they didn’t kill them. + +That day Joshua made them wood cutters and drawers of water for the congregation and for Yahweh’s altar to this day, in the place which he should choose. + +

+ + +

Now when Adoni-Zedek king of Jerusalem 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, + +they were very afraid, because Gibeon was a great city, as one of the royal cities, and because it was greater than Ai, and all its men were mighty. + +Therefore Adoni-Zedek king of Jerusalem sent to Hoham king of Hebron, Piram king of Jarmuth, Japhia king of Lachish, and Debir king of Eglon, saying, + +Come up to me and help me. Let’s strike Gibeon; for they have made peace with Joshua and with the children of Israel.” + +Therefore the five kings of the Amorites, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, and the king of Eglon, gathered themselves together and went up, they and all their armies, and encamped against Gibeon, and made war against it. + +The men of Gibeon sent to Joshua at the camp at Gilgal, saying, “Don’t abandon your servants! Come up to us quickly and save us! Help us; for all the kings of the Amorites that dwell in the hill country have gathered together against us.” + +

+

So Joshua went up from Gilgal, he and the whole army with him, including all the mighty men of valor. + +Yahweh said to Joshua, “Don’t fear them, for I have delivered them into your hands. Not a man of them will stand before you.” + +

+

Joshua therefore came to them suddenly. He marched from Gilgal all night. + +Yahweh confused them before Israel. He killed them with a great slaughter at Gibeon, and chased them by the way of the ascent of Beth Horon, and struck them to Azekah and to Makkedah. + +As they fled from before Israel, while they were at the descent of Beth Horon, Yahweh hurled down great stones from the sky on them to Azekah, and they died. There were more who died from the hailstones than those whom the children of Israel killed with the sword. + +

+

Then Joshua spoke to Yahweh in the day when Yahweh delivered up the Amorites before the children of Israel. He said in the sight of Israel, “Sun, stand still on Gibeon! You, moon, stop in the valley of Aijalon!” + +

+

The sun stood still, and the moon stayed, until the nation had avenged themselves of their enemies. Isn’t this written in the book of Jashar? The sun stayed in the middle of the sky, and didn’t hurry to go down about a whole day. + +There was no day like that before it or after it, that Yahweh listened to the voice of a man; for Yahweh fought for Israel. + +

+

Joshua returned, and all Israel with him, to the camp to Gilgal. + +These five kings fled, and hid themselves in the cave at Makkedah. + +Joshua was told, saying, “The five kings have been found, hidden in the cave at Makkedah.” + +

+

Joshua said, “Roll large stones to cover the cave’s entrance, and set men by it to guard them; + +but don’t stay there. Pursue your enemies, and attack them from the rear. Don’t allow them to enter into their cities; for Yahweh your God has delivered them into your hand.” + +

+

When Joshua and the children of Israel had finished killing them with a very great slaughter until they were consumed, and the remnant which remained of them had entered into the fortified cities, + +all the people returned to the camp to Joshua at Makkedah in peace. None moved his tongue against any of the children of Israel. + +Then Joshua said, “Open the cave entrance, and bring those five kings out of the cave to me.” + +

+

They did so, and brought those five kings out of the cave to him: the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, and the king of Eglon. + +When they brought those kings out to Joshua, Joshua called for all the men of Israel, and said to the chiefs of the men of war who went with him, “Come near. Put your feet on the necks of these kings.” +

+

They came near, and put their feet on their necks. + +

+

Joshua said to them, “Don’t be afraid, nor be dismayed. Be strong and courageous, for Yahweh will do this to all your enemies against whom you fight.” + +

+

Afterward Joshua struck them, put them to death, and hanged them on five trees. They were hanging on the trees until the evening. + +At the time of the going down of the sun, Joshua commanded, and they took them down off the trees, and threw them into the cave in which they had hidden themselves, and laid great stones on the mouth of the cave, which remain to this very day. + +

+

Joshua took Makkedah on that day, and struck it with the edge of the sword, with its king. He utterly destroyed it and all the souls who were in it. He left no one remaining. He did to the king of Makkedah as he had done to the king of Jericho. + +

+

Joshua passed from Makkedah, and all Israel with him, to Libnah, and fought against Libnah. + +Yahweh delivered it also, with its king, into the hand of Israel. He struck it with the edge of the sword, and all the souls who were in it. He left no one remaining in it. He did to its king as he had done to the king of Jericho. + +

+

Joshua passed from Libnah, and all Israel with him, to Lachish, and encamped against it, and fought against it. + +Yahweh delivered Lachish into the hand of Israel. He took it on the second day, and struck it with the edge of the sword, with all the souls who were in it, according to all that he had done to Libnah. + +Then Horam king of Gezer came up to help Lachish; and Joshua struck him and his people, until he had left him no one remaining. + +

+

Joshua passed from Lachish, and all Israel with him, to Eglon; and they encamped against it and fought against it. + +They took it on that day, and struck it with the edge of the sword. He utterly destroyed all the souls who were in it that day, according to all that he had done to Lachish. + +

+

Joshua went up from Eglon, and all Israel with him, to Hebron; and they fought against it. + +They took it, and struck it with the edge of the sword, with its king and all its cities, and all the souls who were in it. He left no one remaining, according to all that he had done to Eglon; but he utterly destroyed it, and all the souls who were in it. + +

+

Joshua returned, and all Israel with him, to Debir, and fought against it. + +He took it, with its king and all its cities. They struck them with the edge of the sword, and utterly destroyed all the souls who were in it. He left no one remaining. As he had done to Hebron, so he did to Debir, and to its king; as he had done also to Libnah, and to its king. + +So Joshua struck all the land, the hill country, the South, the lowland, the slopes, and all their kings. He left no one remaining, but he utterly destroyed all that breathed, as Yahweh, the God of Israel, commanded. + +Joshua struck them from Kadesh Barnea even to Gaza, and all the country of Goshen, even to Gibeon. + +Joshua took all these kings and their land at one time because Yahweh, the God of Israel, fought for Israel. + +Joshua returned, and all Israel with him, to the camp to Gilgal. + +

+ + +

When Jabin king of Hazor heard of it, he sent to Jobab king of Madon, to the king of Shimron, to the king of Achshaph, + +and to the kings who were on the north, in the hill country, in the Arabah south of Chinneroth, in the lowland, and in the heights of Dor on the west, + +to the Canaanite on the east and on the west, the Amorite, the Hittite, the Perizzite, the Jebusite in the hill country, and the Hivite under Hermon in the land of Mizpah. + +They went out, they and all their armies with them, many people, even as the sand that is on the seashore in multitude, with very many horses and chariots. + +All these kings met together; and they came and encamped together at the waters of Merom, to fight with Israel. + +

+

Yahweh said to Joshua, “Don’t be afraid because of them; for tomorrow at this time, I will deliver them up all slain before Israel. You shall hamstring their horses and burn their chariots with fire.” + +

+

So Joshua came suddenly, with all the warriors, against them by the waters of Merom, and attacked them. + +Yahweh delivered them into the hand of Israel, and they struck them, and chased them to great Sidon, and to Misrephoth Maim, and to the valley of Mizpah eastward. They struck them until they left them no one remaining. + +Joshua did to them as Yahweh told him. He hamstrung their horses and burned their chariots with fire. + +Joshua turned back at that time, and took Hazor, and struck its king with the sword; for Hazor used to be the head of all those kingdoms. + +They struck all the souls who were in it with the edge of the sword, utterly destroying them. There was no one left who breathed. He burned Hazor with fire. + +Joshua captured all the cities of those kings, with their kings, and he struck them with the edge of the sword, and utterly destroyed them, as Moses the servant of Yahweh commanded. + +But as for the cities that stood on their mounds, Israel burned none of them, except Hazor only. Joshua burned that. + +The children of Israel took all the plunder of these cities, with the livestock, as plunder for themselves; but every man they struck with the edge of the sword, until they had destroyed them. They didn’t leave any who breathed. + +

+

As Yahweh commanded Moses his servant, so Moses commanded Joshua. Joshua did so. He left nothing undone of all that Yahweh commanded Moses. + +So Joshua captured all that land, the hill country, all the South, all the land of Goshen, the lowland, the Arabah, the hill country of Israel, and the lowland of the same, + +from Mount Halak, that goes up to Seir, even to Baal Gad in the valley of Lebanon under Mount Hermon. He took all their kings, struck them, and put them to death. + +Joshua made war a long time with all those kings. + +There was not a city that made peace with the children of Israel, except the Hivites, the inhabitants of Gibeon. They took all in battle. + +For it was of Yahweh to harden their hearts, to come against Israel in battle, that he might utterly destroy them, that they might have no favor, but that he might destroy them, as Yahweh commanded Moses. + +Joshua came at that time, and cut off the Anakim from the hill country, from Hebron, from Debir, from Anab, and from all the hill country of Judah, and from all the hill country of Israel. Joshua utterly destroyed them with their cities. + +There were none of the Anakim left in the land of the children of Israel. Only in Gaza, in Gath, and in Ashdod, did some remain. + +So Joshua took the whole land, according to all that Yahweh spoke to Moses; and Joshua gave it for an inheritance to Israel according to their divisions by their tribes. Then the land had rest from war. + +

+ + +

Now these are the kings of the land, whom the children of Israel struck, and possessed their land beyond the Jordan toward the sunrise, from the valley of the Arnon to Mount Hermon, and all the Arabah eastward: + +Sihon king of the Amorites, who lived in Heshbon, and ruled from Aroer, which is on the edge of the valley of the Arnon, and the middle of the valley, and half Gilead, even to the river Jabbok, the border of the children of Ammon; + +and the Arabah to the sea of Chinneroth, eastward, and to the sea of the Arabah, even the Salt Sea, eastward, the way to Beth Jeshimoth; and on the south, under the slopes of Pisgah: + +and the border of Og king of Bashan, of the remnant of the Rephaim, who lived at Ashtaroth and at Edrei, + +and ruled in Mount Hermon, and in Salecah, and in all Bashan, to the border of the Geshurites and the Maacathites, and half Gilead, the border of Sihon king of Heshbon. + +Moses the servant of Yahweh and the children of Israel struck them. Moses the servant of Yahweh gave it for a possession to the Reubenites, and the Gadites, and the half-tribe of Manasseh. + +

+

These are the kings of the land whom Joshua and the children of Israel struck beyond the Jordan westward, from Baal Gad in the valley of Lebanon even to Mount Halak, that goes up to Seir. Joshua gave it to the tribes of Israel for a possession according to their divisions; + +in the hill country, and in the lowland, and in the Arabah, and in the slopes, and in the wilderness, and in the South; the Hittite, the Amorite, and the Canaanite, the Perizzite, the Hivite, and the Jebusite: + +

+

the king of Jericho, one; +

+

the king of Ai, which is beside Bethel, one; + +

+

the king of Jerusalem, one; +

+

the king of Hebron, one; + +

+

the king of Jarmuth, one; +

+

the king of Lachish, one; + +

+

the king of Eglon, one; +

+

the king of Gezer, one; + +

+

the king of Debir, one; +

+

the king of Geder, one; + +

+

the king of Hormah, one; +

+

the king of Arad, one; + +

+

the king of Libnah, one; +

+

the king of Adullam, one; + +

+

the king of Makkedah, one; +

+

the king of Bethel, one; + +

+

the king of Tappuah, one; +

+

the king of Hepher, one; + +

+

the king of Aphek, one; +

+

the king of Lassharon, one; + +

+

the king of Madon, one; +

+

the king of Hazor, one; + +

+

the king of Shimron Meron, one; +

+

the king of Achshaph, one; + +

+

the king of Taanach, one; +

+

the king of Megiddo, one; + +

+

the king of Kedesh, one; +

+

the king of Jokneam in Carmel, one; + +

+

the king of Dor in the height of Dor, one; +

+

the king of Goiim in Gilgal, one; + +

+

the king of Tirzah, one: +

+

all the kings thirty-one. + +

+ + +

Now Joshua was old and well advanced in years. Yahweh said to him, “You are old and advanced in years, and there remains yet very much land to be possessed. + +

+

This is the land that still remains: all the regions of the Philistines, and all the Geshurites; + +from the Shihor, which is before Egypt, even to the border of Ekron northward, which is counted as Canaanite; the five lords of the Philistines; the Gazites, and the Ashdodites, the Ashkelonites, the Gittites, and the Ekronites; also the Avvim, + +on the south; all the land of the Canaanites, and Mearah that belongs to the Sidonians, to Aphek, to the border of the Amorites; + +and the land of the Gebalites, and all Lebanon, toward the sunrise, from Baal Gad under Mount Hermon to the entrance of Hamath; + +all the inhabitants of the hill country from Lebanon to Misrephoth Maim, even all the Sidonians. I will drive them out from before the children of Israel. Just allocate it to Israel for an inheritance, as I have commanded you. + +Now therefore divide this land for an inheritance to the nine tribes and the half-tribe of Manasseh.” + +With him the Reubenites and the Gadites received their inheritance, which Moses gave them, beyond the Jordan eastward, even as Moses the servant of Yahweh gave them: + +from Aroer, that is on the edge of the valley of the Arnon, and the city that is in the middle of the valley, and all the plain of Medeba to Dibon; + +and all the cities of Sihon king of the Amorites, who reigned in Heshbon, to the border of the children of Ammon; + +and Gilead, and the border of the Geshurites and Maacathites, and all Mount Hermon, and all Bashan to Salecah; + +all the kingdom of Og in Bashan, who reigned in Ashtaroth and in Edrei (who was left of the remnant of the Rephaim); for Moses attacked these, and drove them out. + +Nevertheless the children of Israel didn’t drive out the Geshurites, nor the Maacathites: but Geshur and Maacath live within Israel to this day. + +Only he gave no inheritance to the tribe of Levi. The offerings of Yahweh, the God of Israel, made by fire are his inheritance, as he spoke to him. + +Moses gave to the tribe of the children of Reuben according to their families. + +Their border was from Aroer, that is on the edge of the valley of the Arnon, and the city that is in the middle of the valley, and all the plain by Medeba; + +Heshbon, and all its cities that are in the plain; Dibon, Bamoth Baal, Beth Baal Meon, + +Jahaz, Kedemoth, Mephaath, + +Kiriathaim, Sibmah, Zereth Shahar in the mount of the valley, + +Beth Peor, the slopes of Pisgah, Beth Jeshimoth, + +all the cities of the plain, and all the kingdom of Sihon king of the Amorites, who reigned in Heshbon, whom Moses struck with the chiefs of Midian, Evi, Rekem, Zur, Hur, and Reba, the princes of Sihon, who lived in the land. + +The children of Israel also killed Balaam the son of Beor, the soothsayer, with the sword, among the rest of their slain. + +

+

The border of the children of Reuben was the bank of the Jordan. This was the inheritance of the children of Reuben according to their families, the cities and its villages. + +

+

Moses gave to the tribe of Gad, to the children of Gad, according to their families. + +Their border was Jazer, and all the cities of Gilead, and half the land of the children of Ammon, to Aroer that is near Rabbah; + +and from Heshbon to Ramath Mizpeh, and Betonim; and from Mahanaim to the border of Debir; + +and in the valley, Beth Haram, Beth Nimrah, Succoth, and Zaphon, the rest of the kingdom of Sihon king of Heshbon, the Jordan’s bank, to the uttermost part of the sea of Chinnereth beyond the Jordan eastward. + +This is the inheritance of the children of Gad according to their families, the cities and its villages. + +

+

Moses gave an inheritance to the half-tribe of Manasseh. It was for the half-tribe of the children of Manasseh according to their families. + +Their border was from Mahanaim, all Bashan, all the kingdom of Og king of Bashan, and all the villages of Jair, which are in Bashan, sixty cities. + +Half Gilead, Ashtaroth, and Edrei, the cities of the kingdom of Og in Bashan, were for the children of Machir the son of Manasseh, even for the half of the children of Machir according to their families. + +

+

These are the inheritances which Moses distributed in the plains of Moab, beyond the Jordan at Jericho, eastward. + +But Moses gave no inheritance to the tribe of Levi. Yahweh, the God of Israel, is their inheritance, as he spoke to them. + +

+ + +

These are the inheritances which the children of Israel took in the land of Canaan, which Eleazar the priest, Joshua the son of Nun, and the heads of the fathers’ houses of the tribes of the children of Israel, distributed to them, + +by the lot of their inheritance, as Yahweh commanded by Moses, for the nine tribes, and for the half-tribe. + +For Moses had given the inheritance of the two tribes and the half-tribe beyond the Jordan; but to the Levites he gave no inheritance among them. + +For the children of Joseph were two tribes, Manasseh and Ephraim. They gave no portion to the Levites in the land, except cities to dwell in, with their pasture lands for their livestock and for their property. + +The children of Israel did as Yahweh commanded Moses, and they divided the land. + +

+

Then the children of Judah came near to Joshua in Gilgal. Caleb the son of Jephunneh the Kenizzite said to him, “You know the thing that Yahweh spoke to Moses the man of God concerning me and concerning you in Kadesh Barnea. + +I was forty years old when Moses the servant of Yahweh sent me from Kadesh Barnea to spy out the land. I brought him word again as it was in my heart. + +Nevertheless, my brothers who went up with me made the heart of the people melt; but I wholly followed Yahweh my God. + +Moses swore on that day, saying, ‘Surely the land where you walked shall be an inheritance to you and to your children forever, because you have wholly followed Yahweh my God.’ + +

+

Now, behold, Yahweh has kept me alive, as he spoke, these forty-five years, from the time that Yahweh spoke this word to Moses, while Israel walked in the wilderness. Now, behold, I am eighty-five years old, today. + +As yet I am as strong today as I was in the day that Moses sent me. As my strength was then, even so is my strength now for war, to go out and to come in. + +Now therefore give me this hill country, of which Yahweh spoke in that day; for you heard in that day how the Anakim were there, and great and fortified cities. It may be that Yahweh will be with me, and I shall drive them out, as Yahweh said.” + +

+

Joshua blessed him; and he gave Hebron to Caleb the son of Jephunneh for an inheritance. + +Therefore Hebron became the inheritance of Caleb the son of Jephunneh the Kenizzite to this day, because he followed Yahweh, the God of Israel wholeheartedly. + +Now the name of Hebron before was Kiriath Arba, after the greatest man among the Anakim. Then the land had rest from war. + +

+ + +

The lot for the tribe of the children of Judah according to their families was to the border of Edom, even to the wilderness of Zin southward, at the uttermost part of the south. + +Their south border was from the uttermost part of the Salt Sea, from the bay that looks southward; + +and it went out southward of the ascent of Akrabbim, and passed along to Zin, and went up by the south of Kadesh Barnea, and passed along by Hezron, went up to Addar, and turned toward Karka; + +and it passed along to Azmon, went out at the brook of Egypt; and the border ended at the sea. This shall be your south border. + +The east border was the Salt Sea, even to the end of the Jordan. The border of the north quarter was from the bay of the sea at the end of the Jordan. + +The border went up to Beth Hoglah, and passed along by the north of Beth Arabah; and the border went up to the stone of Bohan the son of Reuben. + +The border went up to Debir from the valley of Achor, and so northward, looking toward Gilgal, that faces the ascent of Adummim, which is on the south side of the river. The border passed along to the waters of En Shemesh, and ended at En Rogel. + +The border went up by the valley of the son of Hinnom to the side of the Jebusite (also called Jerusalem) southward; and the border went up to the top of the mountain that lies before the valley of Hinnom westward, which is at the farthest part of the valley of Rephaim northward. + +The border extended from the top of the mountain to the spring of the waters of Nephtoah, and went out to the cities of Mount Ephron; and the border extended to Baalah (also called Kiriath Jearim); + +and the border turned about from Baalah westward to Mount Seir, and passed along to the side of Mount Jearim (also called Chesalon) on the north, and went down to Beth Shemesh, and passed along by Timnah; + +and the border went out to the side of Ekron northward; and the border extended to Shikkeron, and passed along to Mount Baalah, and went out at Jabneel; and the goings out of the border were at the sea. + +The west border was to the shore of the great sea. This is the border of the children of Judah according to their families. + +

+

He gave to Caleb the son of Jephunneh a portion among the children of Judah, according to the commandment of Yahweh to Joshua, even Kiriath Arba, named after the father of Anak (also called Hebron). + +Caleb drove out the three sons of Anak: Sheshai, and Ahiman, and Talmai, the children of Anak. + +He went up against the inhabitants of Debir: now the name of Debir before was Kiriath Sepher. + +Caleb said, “He who strikes Kiriath Sepher, and takes it, to him I will give Achsah my daughter as wife.” + +Othniel the son of Kenaz, the brother of Caleb, took it: and he gave him Achsah his daughter as wife. + +When she came, she had him ask her father for a field. She got off her donkey, and Caleb said, “What do you want?” + +

+

She said, “Give me a blessing. Because you have set me in the land of the South, give me also springs of water.” +

+

So he gave her the upper springs and the lower springs. + +

+

This is the inheritance of the tribe of the children of Judah according to their families. + +The farthest cities of the tribe of the children of Judah toward the border of Edom in the South were Kabzeel, Eder, Jagur, + +Kinah, Dimonah, Adadah, + +Kedesh, Hazor, Ithnan, + +Ziph, Telem, Bealoth, + +Hazor Hadattah, Kerioth Hezron (also called Hazor), + +Amam, Shema, Moladah, + +Hazar Gaddah, Heshmon, Beth Pelet, + +Hazar Shual, Beersheba, Biziothiah, + +Baalah, Iim, Ezem, + +Eltolad, Chesil, Hormah, + +Ziklag, Madmannah, Sansannah, + +Lebaoth, Shilhim, Ain, and Rimmon. All the cities are twenty-nine, with their villages. + +

+

In the lowland, Eshtaol, Zorah, Ashnah, + +Zanoah, En Gannim, Tappuah, Enam, + +Jarmuth, Adullam, Socoh, Azekah, + +Shaaraim, Adithaim and Gederah (or Gederothaim); fourteen cities with their villages. + +

+

Zenan, Hadashah, Migdal Gad, + +Dilean, Mizpah, Joktheel, + +Lachish, Bozkath, Eglon, + +Cabbon, Lahmam, Chitlish, + +Gederoth, Beth Dagon, Naamah, and Makkedah; sixteen cities with their villages. + +

+

Libnah, Ether, Ashan, + +Iphtah, Ashnah, Nezib, + +Keilah, Achzib, and Mareshah; nine cities with their villages. + +

+

Ekron, with its towns and its villages; + +from Ekron even to the sea, all that were by the side of Ashdod, with their villages. + +Ashdod, its towns and its villages; Gaza, its towns and its villages; to the brook of Egypt, and the great sea with its coastline. + +

+

In the hill country, Shamir, Jattir, Socoh, + +Dannah, Kiriath Sannah (which is Debir), + +Anab, Eshtemoh, Anim, + +Goshen, Holon, and Giloh; eleven cities with their villages. + +

+

Arab, Dumah, Eshan, + +Janim, Beth Tappuah, Aphekah, + +Humtah, Kiriath Arba (also called Hebron), and Zior; nine cities with their villages. + +

+

Maon, Carmel, Ziph, Jutah, + +Jezreel, Jokdeam, Zanoah, + +Kain, Gibeah, and Timnah; ten cities with their villages. + +

+

Halhul, Beth Zur, Gedor, + +Maarath, Beth Anoth, and Eltekon; six cities with their villages. + +Kiriath Baal (also called Kiriath Jearim), and Rabbah; two cities with their villages. + +

+

In the wilderness, Beth Arabah, Middin, Secacah, + +Nibshan, the City of Salt, and En Gedi; six cities with their villages. + +

+

As for the Jebusites, the inhabitants of Jerusalem, the children of Judah couldn’t drive them out; but the Jebusites live with the children of Judah at Jerusalem to this day. + +

+ + +

The lot came out for the children of Joseph from the Jordan at Jericho, at the waters of Jericho on the east, even the wilderness, going up from Jericho through the hill country to Bethel. + +It went out from Bethel to Luz, and passed along to the border of the Archites to Ataroth; + +and it went down westward to the border of the Japhletites, to the border of Beth Horon the lower, and on to Gezer; and ended at the sea. + +

+

The children of Joseph, Manasseh and Ephraim, took their inheritance. + +This was the border of the children of Ephraim according to their families. The border of their inheritance eastward was Ataroth Addar, to Beth Horon the upper. + +The border went out westward at Michmethath on the north. The border turned about eastward to Taanath Shiloh, and passed along it on the east of Janoah. + +It went down from Janoah to Ataroth, to Naarah, reached to Jericho, and went out at the Jordan. + +From Tappuah the border went along westward to the brook of Kanah; and ended at the sea. This is the inheritance of the tribe of the children of Ephraim according to their families; + +together with the cities which were set apart for the children of Ephraim in the middle of the inheritance of the children of Manasseh, all the cities with their villages. + +They didn’t drive out the Canaanites who lived in Gezer; but the Canaanites dwell in the territory of Ephraim to this day, and have become servants to do forced labor. + +

+ + +

This was the lot for the tribe of Manasseh, for he was the firstborn of Joseph. As for Machir the firstborn of Manasseh, the father of Gilead, because he was a man of war, therefore he had Gilead and Bashan. + +So this was for the rest of the children of Manasseh according to their families: for the children of Abiezer, for the children of Helek, for the children of Asriel, for the children of Shechem, for the children of Hepher, and for the children of Shemida. These were the male children of Manasseh the son of Joseph according to their families. + +But Zelophehad, the son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, had no sons, but daughters. These are the names of his daughters: Mahlah, Noah, Hoglah, Milcah, and Tirzah. + +They came to Eleazar the priest, and to Joshua the son of Nun, and to the princes, saying, “Yahweh commanded Moses to give us an inheritance among our brothers.” Therefore according to the commandment of Yahweh he gave them an inheritance among the brothers of their father. + +Ten parts fell to Manasseh, in addition to the land of Gilead and Bashan, which is beyond the Jordan; + +because the daughters of Manasseh had an inheritance among his sons. The land of Gilead belonged to the rest of the sons of Manasseh. + +The border of Manasseh was from Asher to Michmethath, which is before Shechem. The border went along to the right hand, to the inhabitants of En Tappuah. + +The land of Tappuah belonged to Manasseh; but Tappuah on the border of Manasseh belonged to the children of Ephraim. + +The border went down to the brook of Kanah, southward of the brook. These cities belonged to Ephraim among the cities of Manasseh. The border of Manasseh was on the north side of the brook, and ended at the sea. + +Southward it was Ephraim’s, and northward it was Manasseh’s, and the sea was his border. They reached to Asher on the north, and to Issachar on the east. + +Manasseh had three heights in Issachar, in Asher Beth Shean and its towns, and Ibleam and its towns, and the inhabitants of Dor and its towns, and the inhabitants of Endor and its towns, and the inhabitants of Taanach and its towns, and the inhabitants of Megiddo and its towns. + +Yet the children of Manasseh couldn’t drive out the inhabitants of those cities; but the Canaanites would dwell in that land. + +

+

When the children of Israel had grown strong, they put the Canaanites to forced labor, and didn’t utterly drive them out. + +The children of Joseph spoke to Joshua, saying, “Why have you given me just one lot and one part for an inheritance, since we are a numerous people, because Yahweh has blessed us so far?” + +

+

Joshua said to them, “If you are a numerous people, go up to the forest, and clear land for yourself there in the land of the Perizzites and of the Rephaim, since the hill country of Ephraim is too narrow for you.” + +

+

The children of Joseph said, “The hill country is not enough for us. All the Canaanites who dwell in the land of the valley have chariots of iron, both those who are in Beth Shean and its towns, and those who are in the valley of Jezreel.” + +

+

Joshua spoke to the house of Joseph, that is, to Ephraim and to Manasseh, saying, “You are a numerous people, and have great power. You shall not have one lot only; + +but the hill country shall be yours. Although it is a forest, you shall cut it down, and it’s farthest extent shall be yours; for you shall drive out the Canaanites, though they have chariots of iron, and though they are strong.” + +

+ + +

The whole congregation of the children of Israel assembled themselves together at Shiloh, and set up the Tent of Meeting there. The land was subdued before them. + +Seven tribes remained among the children of Israel, which had not yet divided their inheritance. + +Joshua said to the children of Israel, “How long will you neglect to go in to possess the land, which Yahweh, the God of your fathers, has given you? + +Appoint for yourselves three men from each tribe. I will send them, and they shall arise, walk through the land, and describe it according to their inheritance; then they shall come to me. + +They shall divide it into seven portions. Judah shall live in his borders on the south, and the house of Joseph shall live in their borders on the north. + +You shall survey the land into seven parts, and bring the description here to me; and I will cast lots for you here before Yahweh our God. + +However, the Levites have no portion among you; for the priesthood of Yahweh is their inheritance. Gad, Reuben, and the half-tribe of Manasseh have received their inheritance east of the Jordan, which Moses the servant of Yahweh gave them.” + +

+

The men arose and went. Joshua commanded those who went to survey the land, saying, “Go walk through the land, survey it, and come again to me. I will cast lots for you here before Yahweh in Shiloh.” + +

+

The men went and passed through the land, and surveyed it by cities into seven portions in a book. They came to Joshua to the camp at Shiloh. + +Joshua cast lots for them in Shiloh before Yahweh. There Joshua divided the land to the children of Israel according to their divisions. + +

+

The lot of the tribe of the children of Benjamin came up according to their families. The border of their lot went out between the children of Judah and the children of Joseph. + +Their border on the north quarter was from the Jordan. The border went up to the side of Jericho on the north, and went up through the hill country westward. It ended at the wilderness of Beth Aven. + +The border passed along from there to Luz, to the side of Luz (also called Bethel), southward. The border went down to Ataroth Addar, by the mountain that lies on the south of Beth Horon the lower. + +The border extended, and turned around on the west quarter southward, from the mountain that lies before Beth Horon southward; and ended at Kiriath Baal (also called Kiriath Jearim), a city of the children of Judah. This was the west quarter. + +The south quarter was from the farthest part of Kiriath Jearim. The border went out westward, and went out to the spring of the waters of Nephtoah. + +The border went down to the farthest part of the mountain that lies before the valley of the son of Hinnom, which is in the valley of Rephaim northward. It went down to the valley of Hinnom, to the side of the Jebusite southward, and went down to En Rogel. + +It extended northward, went out at En Shemesh, and went out to Geliloth, which is opposite the ascent of Adummim. It went down to the stone of Bohan the son of Reuben. + +It passed along to the side opposite the Arabah northward, and went down to the Arabah. + +The border passed along to the side of Beth Hoglah northward; and the border ended at the north bay of the Salt Sea, at the south end of the Jordan. This was the south border. + +The Jordan was its border on the east quarter. This was the inheritance of the children of Benjamin, by the borders around it, according to their families. + +Now the cities of the tribe of the children of Benjamin according to their families were Jericho, Beth Hoglah, Emek Keziz, + +Beth Arabah, Zemaraim, Bethel, + +Avvim, Parah, Ophrah, + +Chephar Ammoni, Ophni, and Geba; twelve cities with their villages. + +Gibeon, Ramah, Beeroth, + +Mizpeh, Chephirah, Mozah, + +Rekem, Irpeel, Taralah, + +Zelah, Eleph, the Jebusite (also called Jerusalem), Gibeath, and Kiriath; fourteen cities with their villages. This is the inheritance of the children of Benjamin according to their families. + +

+ + +

The second lot came out for Simeon, even for the tribe of the children of Simeon according to their families. Their inheritance was in the middle of the inheritance of the children of Judah. + +They had for their inheritance Beersheba (or Sheba), Moladah, + +Hazar Shual, Balah, Ezem, + +Eltolad, Bethul, Hormah, + +Ziklag, Beth Marcaboth, Hazar Susah, + +Beth Lebaoth, and Sharuhen; thirteen cities with their villages; + +Ain, Rimmon, Ether, and Ashan; four cities with their villages; + +and all the villages that were around these cities to Baalath Beer, Ramah of the South. This is the inheritance of the tribe of the children of Simeon according to their families. + +Out of the part of the children of Judah was the inheritance of the children of Simeon; for the portion of the children of Judah was too much for them. Therefore the children of Simeon had inheritance in the middle of their inheritance. + +

+

The third lot came up for the children of Zebulun according to their families. The border of their inheritance was to Sarid. + +Their border went up westward, even to Maralah, and reached to Dabbesheth. It reached to the brook that is before Jokneam. + +It turned from Sarid eastward toward the sunrise to the border of Chisloth Tabor. It went out to Daberath, and went up to Japhia. + +From there it passed along eastward to Gath Hepher, to Ethkazin; and it went out at Rimmon which stretches to Neah. + +The border turned around it on the north to Hannathon; and it ended at the valley of Iphtah El; + +Kattath, Nahalal, Shimron, Idalah, and Bethlehem: twelve cities with their villages. + +This is the inheritance of the children of Zebulun according to their families, these cities with their villages. + +

+

The fourth lot came out for Issachar, even for the children of Issachar according to their families. + +Their border was to Jezreel, Chesulloth, Shunem, + +Hapharaim, Shion, Anaharath, + +Rabbith, Kishion, Ebez, + +Remeth, Engannim, En Haddah, and Beth Pazzez. + +The border reached to Tabor, Shahazumah, and Beth Shemesh. Their border ended at the Jordan: sixteen cities with their villages. + +This is the inheritance of the tribe of the children of Issachar according to their families, the cities with their villages. + +

+

The fifth lot came out for the tribe of the children of Asher according to their families. + +Their border was Helkath, Hali, Beten, Achshaph, + +Allammelech, Amad, Mishal. It reached to Carmel westward, and to Shihorlibnath. + +It turned toward the sunrise to Beth Dagon, and reached to Zebulun, and to the valley of Iphtah El northward to Beth Emek and Neiel. It went out to Cabul on the left hand, + +and Ebron, Rehob, Hammon, and Kanah, even to great Sidon. + +The border turned to Ramah, to the fortified city of Tyre; and the border turned to Hosah. It ended at the sea by the region of Achzib; + +Ummah also, and Aphek, and Rehob: twenty-two cities with their villages. + +This is the inheritance of the tribe of the children of Asher according to their families, these cities with their villages. + +

+

The sixth lot came out for the children of Naphtali, even for the children of Naphtali according to their families. + +Their border was from Heleph, from the oak in Zaanannim, Adami-nekeb, and Jabneel, to Lakkum. It ended at the Jordan. + +The border turned westward to Aznoth Tabor, and went out from there to Hukkok. It reached to Zebulun on the south, and reached to Asher on the west, and to Judah at the Jordan toward the sunrise. + +The fortified cities were Ziddim, Zer, Hammath, Rakkath, Chinnereth, + +Adamah, Ramah, Hazor, + +Kedesh, Edrei, En Hazor, + +Iron, Migdal El, Horem, Beth Anath, and Beth Shemesh; nineteen cities with their villages. + +This is the inheritance of the tribe of the children of Naphtali according to their families, the cities with their villages. + +

+

The seventh lot came out for the tribe of the children of Dan according to their families. + +The border of their inheritance was Zorah, Eshtaol, Irshemesh, + +Shaalabbin, Aijalon, Ithlah, + +Elon, Timnah, Ekron, + +Eltekeh, Gibbethon, Baalath, + +Jehud, Bene Berak, Gath Rimmon, + +Me Jarkon, and Rakkon, with the border opposite Joppa. + +The border of the children of Dan went out beyond them; for the children of Dan went up and fought against Leshem, and took it, and struck it with the edge of the sword, and possessed it, and lived therein, and called Leshem, Dan, after the name of Dan their forefather. + +This is the inheritance of the tribe of the children of Dan according to their families, these cities with their villages. + +

+

So they finished distributing the land for inheritance by its borders. The children of Israel gave an inheritance to Joshua the son of Nun among them. + +According to Yahweh’s commandment, they gave him the city which he asked, even Timnathserah in the hill country of Ephraim; and he built the city, and lived there. + +These are the inheritances, which Eleazar the priest, Joshua the son of Nun, and the heads of the fathers’ houses of the tribes of the children of Israel, distributed for inheritance by lot in Shiloh before Yahweh, at the door of the Tent of Meeting. So they finished dividing the land. + +

+ + +

Yahweh spoke to Joshua, saying, + +Speak to the children of Israel, saying, ‘Assign the cities of refuge, of which I spoke to you by Moses, + +that the man slayer who kills any person accidentally or unintentionally may flee there. They shall be to you for a refuge from the avenger of blood. + +He shall flee to one of those cities, and shall stand at the entrance of the gate of the city, and declare his case in the ears of the elders of that city. They shall take him into the city with them, and give him a place, that he may live among them. + +If the avenger of blood pursues him, then they shall not deliver up the man slayer into his hand; because he struck his neighbor unintentionally, and didn’t hate him before. + +He shall dwell in that city until he stands before the congregation for judgment, until the death of the high priest that shall be in those days. Then the man slayer shall return, and come to his own city, and to his own house, to the city he fled from.’” + +

+

They set apart Kedesh in Galilee in the hill country of Naphtali, Shechem in the hill country of Ephraim, and Kiriath Arba (also called Hebron) in the hill country of Judah. + +Beyond the Jordan at Jericho eastward, they assigned Bezer in the wilderness in the plain out of the tribe of Reuben, Ramoth in Gilead out of the tribe of Gad, and Golan in Bashan out of the tribe of Manasseh. + +These were the appointed cities for all the children of Israel, and for the alien who lives among them, that whoever kills any person unintentionally might flee there, and not die by the hand of the avenger of blood, until he stands trial before the congregation. + +

+ + +

Then the heads of fathers’ houses of the Levites came near to Eleazar the priest, and to Joshua the son of Nun, and to the heads of fathers’ houses of the tribes of the children of Israel. + +They spoke to them at Shiloh in the land of Canaan, saying, “Yahweh commanded through Moses to give us cities to dwell in, with their pasture lands for our livestock.” + +

+

The children of Israel gave to the Levites out of their inheritance, according to the commandment of Yahweh, these cities with their pasture lands. + +The lot came out for the families of the Kohathites. The children of Aaron the priest, who were of the Levites, had thirteen cities by lot out of the tribe of Judah, out of the tribe of the Simeonites, and out of the tribe of Benjamin. + +The rest of the children of Kohath had ten cities by lot out of the families of the tribe of Ephraim, out of the tribe of Dan, and out of the half-tribe of Manasseh. + +The children of Gershon had thirteen cities by lot out of the families of the tribe of Issachar, out of the tribe of Asher, out of the tribe of Naphtali, and out of the half-tribe of Manasseh in Bashan. + +The children of Merari according to their families had twelve cities out of the tribe of Reuben, out of the tribe of Gad, and out of the tribe of Zebulun. + +The children of Israel gave these cities with their pasture lands by lot to the Levites, as Yahweh commanded by Moses. + +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 mentioned by name: + +and they were for the children of Aaron, of the families of the Kohathites, who were of the children of Levi; for theirs was the first lot. + +They gave them Kiriath Arba, named after the father of Anak (also called Hebron), in the hill country of Judah, with its pasture lands around it. + +But they gave the fields of the city and its villages to Caleb the son of Jephunneh for his possession. + +To the children of Aaron the priest they gave Hebron with its pasture lands, the city of refuge for the man slayer, Libnah with its pasture lands, + +Jattir with its pasture lands, Eshtemoa with its pasture lands, + +Holon with its pasture lands, Debir with its pasture lands, + +Ain with its pasture lands, Juttah with its pasture lands, and Beth Shemesh with its pasture lands: nine cities out of those two tribes. + +Out of the tribe of Benjamin, Gibeon with its pasture lands, Geba with its pasture lands, + +Anathoth with its pasture lands, and Almon with its pasture lands: four cities. + +All the cities of the children of Aaron, the priests, were thirteen cities with their pasture lands. + +

+

The families of the children of Kohath, the Levites, even the rest of the children of Kohath, had the cities of their lot out of the tribe of Ephraim. + +They gave them Shechem with its pasture lands in the hill country of Ephraim, the city of refuge for the man slayer, and Gezer with its pasture lands, + +Kibzaim with its pasture lands, and Beth Horon with its pasture lands: four cities. + +Out of the tribe of Dan, Elteke with its pasture lands, Gibbethon with its pasture lands, + +Aijalon with its pasture lands, Gath Rimmon with its pasture lands: four cities. + +Out of the half-tribe of Manasseh, Taanach with its pasture lands, and Gath Rimmon with its pasture lands: two cities. + +All the cities of the families of the rest of the children of Kohath were ten with their pasture lands. + +

+

They gave to the children of Gershon, of the families of the Levites, out of the half-tribe of Manasseh Golan in Bashan with its pasture lands, the city of refuge for the man slayer, and Be Eshterah with its pasture lands: two cities. + +Out of the tribe of Issachar, Kishion with its pasture lands, Daberath with its pasture lands, + +Jarmuth with its pasture lands, En Gannim with its pasture lands: four cities. + +Out of the tribe of Asher, Mishal with its pasture lands, Abdon with its pasture lands, + +Helkath with its pasture lands, and Rehob with its pasture lands: four cities. + +Out of the tribe of Naphtali, Kedesh in Galilee with its pasture lands, the city of refuge for the man slayer, Hammothdor with its pasture lands, and Kartan with its pasture lands: three cities. + +All the cities of the Gershonites according to their families were thirteen cities with their pasture lands. + +

+

To the families of the children of Merari, the rest of the Levites, out of the tribe of Zebulun, Jokneam with its pasture lands, Kartah with its pasture lands, + +Dimnah with its pasture lands, and Nahalal with its pasture lands: four cities. + +Out of the tribe of Reuben, Bezer with its pasture lands, Jahaz with its pasture lands, + +Kedemoth with its pasture lands, and Mephaath with its pasture lands: four cities. + +Out of the tribe of Gad, Ramoth in Gilead with its pasture lands, the city of refuge for the man slayer, and Mahanaim with its pasture lands, + +Heshbon with its pasture lands, Jazer with its pasture lands: four cities in all. + +All these were the cities of the children of Merari according to their families, even the rest of the families of the Levites. Their lot was twelve cities. + +

+

All the cities of the Levites among the possessions of the children of Israel were forty-eight cities with their pasture lands. + +Each of these cities included their pasture lands around them. It was this way with all these cities. + +

+

So Yahweh gave to Israel all the land which he swore to give to their fathers. They possessed it, and lived in it. + +Yahweh gave them rest all around, according to all that he swore to their fathers. Not a man of all their enemies stood before them. Yahweh delivered all their enemies into their hand. + +Nothing failed of any good thing which Yahweh had spoken to the house of Israel. All came to pass. + +

+ + +

Then Joshua called the Reubenites, the Gadites, and the half-tribe of Manasseh, + +and said to them, “You have kept all that Moses the servant of Yahweh commanded you, and have listened to my voice in all that I commanded you. + +You have not left your brothers these many days to this day, but have performed the duty of the commandment of Yahweh your God. + +Now Yahweh your God has given rest to your brothers, as he spoke to them. Therefore now return and go to your tents, to the land of your possession, which Moses the servant of Yahweh gave you beyond the Jordan. + +Only take diligent heed to do the commandment and the law which Moses the servant of Yahweh commanded you, to love Yahweh your God, to walk in all his ways, to keep his commandments, to hold fast to him, and to serve him with all your heart and with all your soul.” + +

+

So Joshua blessed them, and sent them away; and they went to their tents. + +Now to the one half-tribe of Manasseh Moses had given inheritance in Bashan; but Joshua gave to the other half among their brothers beyond the Jordan westward. Moreover when Joshua sent them away to their tents, he blessed them, + +and spoke to them, saying, “Return with much wealth to your tents, with very much livestock, with silver, with gold, with bronze, with iron, and with very much clothing. Divide the plunder of your enemies with your brothers.” + +

+

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 to the land of Gilead, to the land of their possession, which they owned, according to the commandment of Yahweh by Moses. + +When they came to the region near the Jordan, that is in the land of Canaan, the children of Reuben and the children of Gad and the half-tribe of Manasseh built an altar there by the Jordan, a great altar to look at. + +The children of Israel heard this, “Behold, the children of Reuben and the children of Gad and the half-tribe of Manasseh have built an altar along the border of the land of Canaan, in the region around the Jordan, on the side that belongs to the children of Israel.” + +When the children of Israel heard of it, the whole congregation of the children of Israel gathered themselves together at Shiloh, to go up against them to war. + +The children of Israel sent to 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. + +With him were ten princes, one prince of a fathers’ house for each of the tribes of Israel; and they were each head of their fathers’ houses among the thousands of Israel. + +They came to the children of Reuben, and to the children of Gad, and to the half-tribe of Manasseh, to the land of Gilead, and they spoke with them, saying, + +The whole congregation of Yahweh says, ‘What trespass is this that you have committed against the God of Israel, to turn away today from following Yahweh, in that you have built yourselves an altar, to rebel today against Yahweh? + +Is the iniquity of Peor too little for us, from which we have not cleansed ourselves to this day, although there came a plague on the congregation of Yahweh, + +that you must turn away today from following Yahweh? It will be, since you rebel today against Yahweh, that tomorrow he will be angry with the whole congregation of Israel. + +However, if the land of your possession is unclean, then pass over to the land of the possession of Yahweh, in which Yahweh’s tabernacle dwells, and take possession among us; but don’t rebel against Yahweh, nor rebel against us, in building an altar other than Yahweh our God’s altar. + +Didn’t Achan the son of Zerah commit a trespass in the devoted thing, and wrath fell on all the congregation of Israel? That man didn’t perish alone in his iniquity.’” + +

+

Then the children of Reuben and the children of Gad and the half-tribe of Manasseh answered, and spoke to the heads of the thousands of Israel, + +The Mighty One, God, Yahweh, the Mighty One, God, Yahweh, he knows; and Israel shall know: if it was in rebellion, or if in trespass against Yahweh (don’t save us today), + +that we have built us an altar to turn away from following Yahweh; or if to offer burnt offering or meal offering, or if to offer sacrifices of peace offerings, let Yahweh himself require it. + +

+

If we have not out of concern done this, and for a reason, saying, ‘In time to come your children might speak to our children, saying, “What have you to do with Yahweh, the God of Israel? + +For Yahweh has made the Jordan a border between us and you, you children of Reuben and children of Gad. You have no portion in Yahweh.”’ So your children might make our children cease from fearing Yahweh. + +

+

Therefore we said, ‘Let’s now prepare to build ourselves an altar, not for burnt offering, nor for sacrifice; + +but it will be a witness between us and you, and between our generations after us, that we may perform the service of Yahweh before him with our burnt offerings, with our sacrifices, and with our peace offerings;’ that your children may not tell our children in time to come, ‘You have no portion in Yahweh.’ + +

+

Therefore we said, ‘It shall be, when they tell us or our generations this in time to come, that we shall say, “Behold the pattern of Yahweh’s altar, which our fathers made, not for burnt offering, nor for sacrifice; but it is a witness between us and you.”’ + +

+

Far be it from us that we should rebel against Yahweh, and turn away today from following Yahweh, to build an altar for burnt offering, for meal offering, or for sacrifice, besides Yahweh our God’s altar that is before his tabernacle!” + +

+

When Phinehas the priest, and the princes of the congregation, even the heads of the thousands of Israel that were with him, heard the words that the children of Reuben and the children of Gad and the children of Manasseh spoke, it pleased them well. + +Phinehas the son of Eleazar the priest said to the children of Reuben, to the children of Gad, and to the children of Manasseh, “Today we know that Yahweh is among us, because you have not committed this trespass against Yahweh. Now you have delivered the children of Israel out of Yahweh’s hand.” + +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, to the land of Canaan, to the children of Israel, and brought them word again. + +The thing pleased the children of Israel; and the children of Israel blessed God, and spoke no more of going up against them to war, to destroy the land in which the children of Reuben and the children of Gad lived. + +The children of Reuben and the children of Gad named the altarA Witness Between Us that Yahweh is God.” + +

+ + +

After many days, when Yahweh had given rest to Israel from their enemies all around, and Joshua was old and well advanced in years, + +Joshua called for all Israel, for their elders and for their heads, and for their judges and for their officers, and said to them, “I am old and well advanced in years. + +You have seen all that Yahweh your God has done to all these nations because of you; for it is Yahweh your God who has fought for you. + +Behold, I have allotted to you these nations that remain, to be an inheritance for your tribes, from the Jordan, with all the nations that I have cut off, even to the great sea toward the going down of the sun. + +Yahweh your God will thrust them out from before you, and drive them from out of your sight. You shall possess their land, as Yahweh your God spoke to you. + +

+

Therefore be very courageous to keep and to do all that is written in the book of the law of Moses, that you not turn away from it to the right hand or to the left; + +that you not come 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 down yourselves to them; + +but hold fast to Yahweh your God, as you have done to this day. + +

+

For Yahweh has driven great and strong nations out from before you. But as for you, no man has stood before you to this day. + +One man of you shall chase a thousand; for it is Yahweh your God who fights for you, as he spoke to you. + +Take good heed therefore to yourselves, that you love Yahweh your God. + +

+

But if you do at all go back, and hold fast to the remnant of these nations, even these who remain among you, and make marriages with them, and go in to them, and they to you; + +know for a certainty that Yahweh your God will no longer drive these nations from out of your sight; but they shall be a snare and a trap to you, a scourge in your sides, and thorns in your eyes, until you perish from off this good land which Yahweh your God has given you. + +

+

Behold, today I am going the way of all the earth. You know in all your hearts and in all your souls that not one thing has failed of all the good things which Yahweh your God spoke concerning you. All have happened to you. Not one thing has failed of it. + +It shall happen that as all the good things have come on you of which Yahweh your God spoke to you, so Yahweh will bring on you all the evil things, until he has destroyed you from off this good land which Yahweh your God has given you, + +when you disobey the covenant of Yahweh your God, which he commanded you, and go and serve other gods, and bow down yourselves to them. Then Yahweh’s anger will be kindled against you, and you will perish quickly from off the good land which he has given to you.” + +

+ + +

Joshua gathered all the tribes of Israel to Shechem, and called for the elders of Israel, for their heads, for their judges, and for their officers; and they presented themselves before God. + +Joshua said to all the people, “Yahweh, the God of Israel, says, ‘Your fathers lived of old time beyond the River, even Terah, the father of Abraham, and the father of Nahor. They served other gods. + +I took your father Abraham from beyond the River, and led him throughout all the land of Canaan, and multiplied his offspring,24:3 +or, seed and gave him Isaac. + +I gave to Isaac Jacob and Esau: and I gave to Esau Mount Seir, to possess it. Jacob and his children went down into Egypt. + +

+

“‘I sent Moses and Aaron, and I plagued Egypt, according to that which I did among them: and afterward I brought you out. + +I brought your fathers out of Egypt: and you came to the sea. The Egyptians pursued your fathers with chariots and with horsemen to the Red Sea. + +When they cried out to Yahweh, he put darkness between you and the Egyptians, and brought the sea on them, and covered them; and your eyes saw what I did in Egypt. You lived in the wilderness many days. + +

+

“‘I brought you into the land of the Amorites, that lived beyond the Jordan. They fought with you, and I gave them into your hand. You possessed their land, and I destroyed them from before you. + +Then Balak the son of Zippor, king of Moab, arose and fought against Israel. He sent and called Balaam the son of Beor to curse you, + +but I would not listen to Balaam; therefore he blessed you still. So I delivered you out of his hand. + +

+

“‘You went over the Jordan, and came to Jericho. The men of Jericho fought against you, the Amorite, the Perizzite, the Canaanite, the Hittite, the Girgashite, the Hivite, and the Jebusite; and I delivered them into your hand. + +I sent the hornet before you, which drove them out from before you, even the two kings of the Amorites; not with your sword, nor with your bow. + +I gave you a land on which you had not labored, and cities which you didn’t build, and you live in them. You eat of vineyards and olive groves which you didn’t plant.’ + +

+

Now therefore fear Yahweh, and serve him in sincerity and in truth. Put away the gods which your fathers served beyond the River, in Egypt; and serve Yahweh. + +If it seems evil to you to serve Yahweh, choose today whom you will serve; whether the gods which your fathers served that were beyond the River, or the gods of the Amorites, in whose land you dwell; but as for me and my house, we will serve Yahweh.” + +

+

The people answered, “Far be it from us that we should forsake Yahweh, to serve other gods; + +for it is Yahweh our God who brought us and our fathers up out of the land of Egypt, from the house of bondage, and who did those great signs in our sight, and preserved us in all the way in which we went, and among all the peoples through the middle of whom we passed. + +Yahweh drove out from before us all the peoples, even the Amorites who lived in the land. Therefore we also will serve Yahweh; for he is our God.” + +

+

Joshua said to the people, “You can’t serve Yahweh, for he is a holy God. He is a jealous God. He will not forgive your disobedience nor your sins. + +If you forsake Yahweh, and serve foreign gods, then he will turn and do you evil, and consume you, after he has done you good.” + +

+

The people said to Joshua, “No, but we will serve Yahweh.” + +Joshua said to the people, “You are witnesses against yourselves that you have chosen Yahweh yourselves, to serve him.” +

+

They said, “We are witnesses.” + +

+

Now therefore put away the foreign gods which are among you, and incline your heart to Yahweh, the God of Israel.” + +

+

The people said to Joshua, “We will serve Yahweh our God, and we will listen to his voice.” + +

+

So Joshua made a covenant with the people that day, and made for them a statute and an ordinance in Shechem. + +Joshua wrote these words in the book of the law of God; and he took a great stone, and set it up there under the oak that was by the sanctuary of Yahweh. + +Joshua said to all the people, “Behold, this stone shall be a witness against us, for it has heard all Yahweh’s words which he spoke to us. It shall be therefore a witness against you, lest you deny your God.” + +So Joshua sent the people away, each to his own inheritance. + +

+

After these things, Joshua the son of Nun, the servant of Yahweh, died, being one hundred ten years old. + +They buried him in the border of his inheritance in Timnathserah, which is in the hill country of Ephraim, on the north of the mountain of Gaash. + +Israel served Yahweh all the days of Joshua, and all the days of the elders who outlived Joshua, and had known all the work of Yahweh, that he had worked for Israel. + +They buried the bones of Joseph, which the children of Israel brought up out of Egypt, in Shechem, in the parcel of ground which Jacob bought from the sons of Hamor the father of Shechem for a hundred pieces of silver.24:32 +Hebrew: kesitahs. A kesitah was a kind of silver coin. They became the inheritance of the children of Joseph. + +Eleazar the son of Aaron died. They buried him in the hill of Phinehas his son, which was given him in the hill country of Ephraim. + +

+
+World English Bible (WEB) +Judges +The Book of Judges +Judges +Jdg +

The Book of +

+

Judges +

+ + +

After the death of Joshua, the children of Israel asked of Yahweh,1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. saying, “Who should go up for us first against the Canaanites, to fight against them?” + +

+

Yahweh said, “Judah shall go up. Behold,1:2 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I have delivered the land into his hand.” + +

+

Judah said to Simeon his brother, “Come up with me into my lot, that we may fight against the Canaanites; and I likewise will go with you into your lot.” So Simeon went with him. + +Judah went up, and Yahweh delivered the Canaanites and the Perizzites into their hand. They struck ten thousand men in Bezek. + +They found Adoni-Bezek in Bezek, and they fought against him. They struck the Canaanites and the Perizzites. + +But Adoni-Bezek fled. They pursued him, caught him, and cut off his thumbs and his big toes. + +Adoni-Bezek said, “Seventy kings, having their thumbs and their big toes cut off, scavenged under my table. As I have done, so God1:7 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). has done to me.” They brought him to Jerusalem, and he died there. + +The children of Judah fought against Jerusalem, took it, struck it with the edge of the sword, and set the city on fire. + +

+

After that, the children of Judah went down to fight against the Canaanites who lived in the hill country, and in the South, and in the lowland. + +Judah went against the Canaanites who lived in Hebron. (The name of Hebron before that was Kiriath Arba.) They struck Sheshai, Ahiman, and Talmai. + +

+

From there he went against the inhabitants of Debir. (The name of Debir before that was Kiriath Sepher.) + +Caleb said, “I will give Achsah my daughter as wife to the man who strikes Kiriath Sepher, and takes it.” + +Othniel the son of Kenaz, Caleb’s younger brother, took it, so he gave him Achsah his daughter as his wife. + +

+

When she came, she got him to ask her father for a field. She got off her donkey; and Caleb said to her, “What would you like?” + +

+

She said to him, “Give me a blessing; because you have set me in the land of the South, give me also springs of water.” Then Caleb gave her the upper springs and the lower springs. + +The children of the Kenite, Moses’ brother-in-law, went up out of the city of palm trees with the children of Judah into the wilderness of Judah, which is in the south of Arad; and they went and lived with the people. + +Judah went with Simeon his brother, and they struck the Canaanites who inhabited Zephath, and utterly destroyed it. The name of the city was called Hormah. + +Also Judah took Gaza with its border, and Ashkelon with its border, and Ekron with its border. + +Yahweh was with Judah, and drove out the inhabitants of the hill country; for he could not drive out the inhabitants of the valley, because they had chariots of iron. + +They gave Hebron to Caleb, as Moses had said, and he drove the three sons of Anak out of there. + +The children of Benjamin didn’t drive out the Jebusites who inhabited Jerusalem, but the Jebusites dwell with the children of Benjamin in Jerusalem to this day. + +

+

The house of Joseph also went up against Bethel, and Yahweh was with them. + +The house of Joseph sent to spy out Bethel. (The name of the city before that was Luz.) + +The watchers saw a man come out of the city, and they said to him, “Please show us the entrance into the city, and we will deal kindly with you.” + +He showed them the entrance into the city, and they struck the city with the edge of the sword; but they let the man and all his family go. + +The man went into the land of the Hittites, built a city, and called its name Luz, which is its name to this day. + +

+

Manasseh didn’t drive out the inhabitants of Beth Shean and its towns, nor Taanach and its towns, nor the inhabitants of Dor and its towns, nor the inhabitants of Ibleam and its towns, nor the inhabitants of Megiddo and its towns; but the Canaanites would dwell in that land. + +When Israel had grown strong, they put the Canaanites to forced labor, and didn’t utterly drive them out. + +Ephraim didn’t drive out the Canaanites who lived in Gezer, but the Canaanites lived in Gezer among them. + +Zebulun didn’t drive out the inhabitants of Kitron, nor the inhabitants of Nahalol; but the Canaanites lived among them, and became subject to forced labor. + +Asher didn’t drive out the inhabitants of Acco, nor the inhabitants of Sidon, nor of Ahlab, nor of Achzib, nor of Helbah, nor of Aphik, nor of Rehob; + +but the Asherites lived among the Canaanites, the inhabitants of the land, for they didn’t drive them out. + +Naphtali didn’t drive out the inhabitants of Beth Shemesh, nor the inhabitants of Beth Anath; but he lived among the Canaanites, the inhabitants of the land. Nevertheless the inhabitants of Beth Shemesh and of Beth Anath became subject to forced labor. + +The Amorites forced the children of Dan into the hill country, for they would not allow them to come down to the valley; + +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 subject to forced labor. + +The border of the Amorites was from the ascent of Akrabbim, from the rock, and upward. + +

+ + +

Yahweh’s angel came up from Gilgal to Bochim. He said, “I brought you out of Egypt, and have brought you to the land which I swore to give your fathers. I said, ‘I will never break my covenant with you. + +You shall make no covenant with the inhabitants of this land. You shall break down their altars.’ But you have not listened to my voice. Why have you done this? + +Therefore I also said, ‘I will not drive them out from before you; but they shall be in your sides, and their gods will be a snare to you.’” + +

+

When Yahweh’s angel spoke these words to all the children of Israel, the people lifted up their voice and wept. + +They called the name of that place Bochim,2:5 +“Bochim” means “weepers”. and they sacrificed there to Yahweh. + +Now when Joshua had sent the people away, the children of Israel each went to his inheritance to possess the land. + +The people served Yahweh all the days of Joshua, and all the days of the elders who outlived Joshua, who had seen all the great work of Yahweh that he had worked for Israel. + +Joshua the son of Nun, the servant of Yahweh, died, being one hundred ten years old. + +They buried him in the border of his inheritance in Timnath Heres, in the hill country of Ephraim, on the north of the mountain of Gaash. + +After all that generation were gathered to their fathers, another generation arose after them who didn’t know Yahweh, nor the work which he had done for Israel. + +The children of Israel did that which was evil in Yahweh’s sight, and served the Baals. + +They abandoned Yahweh, the God of their fathers, who brought them out of the land of Egypt, and followed other gods, of the gods of the peoples who were around them, and bowed themselves down to them; and they provoked Yahweh to anger. + +They abandoned Yahweh, and served Baal and the Ashtaroth. + +Yahweh’s anger burned against Israel, and he delivered them into the hands of raiders who plundered them. He sold them into the hands of their enemies all around, so that they could no longer stand before their enemies. + +Wherever they went out, Yahweh’s hand was against them for evil, as Yahweh had spoken, and as Yahweh had sworn to them; and they were very distressed. + +Yahweh raised up judges, who saved them out of the hand of those who plundered them. + +Yet they didn’t listen to their judges; for they prostituted themselves to other gods, and bowed themselves down to them. They quickly turned away from the way in which their fathers walked, obeying Yahweh’s commandments. They didn’t do so. + +When Yahweh raised up judges for them, then Yahweh was with the judge, and saved them out of the hand of their enemies all the days of the judge; for it grieved Yahweh because of their groaning by reason of those who oppressed them and troubled them. + +But when the judge was dead, they turned back, and dealt more corruptly than their fathers in following other gods to serve them and to bow down to them. They didn’t cease what they were doing, or give up their stubborn ways. + +Yahweh’s anger burned against Israel; and he said, “Because this nation transgressed my covenant which I commanded their fathers, and has not listened to my voice, + +I also will no longer drive out any of the nations that Joshua left when he died from before them; + +that by them I may test Israel, to see if they will keep Yahweh’s way to walk therein, as their fathers kept it, or not.” + +So Yahweh left those nations, without driving them out hastily. He didn’t deliver them into Joshua’s hand. + +

+ + +

Now these are the nations which Yahweh left, to test Israel by them, even as many as had not known all the wars of Canaan; + +only that the generations of the children of Israel might know, to teach them war, at least those who knew nothing of it before: + +the five lords of the Philistines, all the Canaanites, the Sidonians, and the Hivites who lived on Mount Lebanon, from Mount Baal Hermon to the entrance of Hamath. + +They were left to test Israel by them, to know whether they would listen to Yahweh’s commandments, which he commanded their fathers by Moses. + +The children of Israel lived among the Canaanites, the Hittites, the Amorites, the Perizzites, the Hivites, and the Jebusites. + +They took their daughters to be their wives, and gave their own daughters to their sons and served their gods. + +The children of Israel did that which was evil in Yahweh’s sight, and forgot Yahweh their God, and served the Baals and the Asheroth. + +Therefore Yahweh’s anger burned against Israel, and he sold them into the hand of Cushan Rishathaim king of Mesopotamia; and the children of Israel served Cushan Rishathaim eight years. + +When the children of Israel cried to Yahweh, Yahweh raised up a savior to the children of Israel, who saved them, even Othniel the son of Kenaz, Caleb’s younger brother. + +Yahweh’s Spirit came on him, and he judged Israel; and he went out to war, and Yahweh delivered Cushan Rishathaim king of Mesopotamia into his hand. His hand prevailed against Cushan Rishathaim. + +The land had rest forty years, then Othniel the son of Kenaz died. + +

+

The children of Israel again did that which was evil in Yahweh’s sight, and Yahweh strengthened Eglon the king of Moab against Israel, because they had done that which was evil in Yahweh’s sight. + +He gathered the children of Ammon and Amalek to himself; and he went and struck Israel, and they possessed the city of palm trees. + +The children of Israel served Eglon the king of Moab eighteen years. + +But when the children of Israel cried to Yahweh, Yahweh raised up a savior for them: Ehud the son of Gera, the Benjamite, a left-handed man. The children of Israel sent tribute by him to Eglon the king of Moab. + +Ehud made himself a sword which had two edges, a cubit3:16 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. in length; and he wore it under his clothing on his right thigh. + +He offered the tribute to Eglon king of Moab. Now Eglon was a very fat man. + +When Ehud had finished offering the tribute, he sent away the people who carried the tribute. + +But he himself turned back from the stone idols that were by Gilgal, and said, “I have a secret message for you, O king.” +

+

The king said, “Keep silence!” All who stood by him left him. + +

+

Ehud came to him; and he was sitting by himself alone in the cool upper room. Ehud said, “I have a message from God to you.” He arose out of his seat. + +Ehud put out his left hand, and took the sword from his right thigh, and thrust it into his body. + +The handle also went in after the blade; and the fat closed on the blade, for he didn’t draw the sword out of his body; and it came out behind. + +Then Ehud went out onto the porch, and shut the doors of the upper room on him, and locked them. + +

+

After he had gone, his servants came and saw that the doors of the upper room were locked. They said, “Surely he is covering his feet3:24 +or, “relieving himself”. in the upper room.” + +They waited until they were ashamed; and behold, he didn’t open the doors of the upper room. Therefore they took the key and opened them, and behold, their lord had fallen down dead on the floor. + +

+

Ehud escaped while they waited, passed beyond the stone idols, and escaped to Seirah. + +When he had come, he blew a trumpet in the hill country of Ephraim; and the children of Israel went down with him from the hill country, and he led them. + +

+

He said to them, “Follow me; for Yahweh has delivered your enemies the Moabites into your hand.” They followed him, and took the fords of the Jordan against the Moabites, and didn’t allow any man to pass over. + +They struck at that time about ten thousand men of Moab, every strong man and every man of valor. No man escaped. + +So Moab was subdued that day under the hand of Israel. Then the land had rest eighty years. + +

+

After him was Shamgar the son of Anath, who struck six hundred men of the Philistines with an ox goad. He also saved Israel. + +

+ + +

The children of Israel again did that which was evil in Yahweh’s sight, when Ehud was dead. + +Yahweh sold them into the hand of Jabin king of Canaan, who reigned in Hazor; the captain of whose army was Sisera, who lived in Harosheth of the Gentiles. + +The children of Israel cried to Yahweh, for he had nine hundred chariots of iron; and he mightily oppressed the children of Israel for twenty years. + +Now Deborah, a prophetess, the wife of Lappidoth, judged Israel at that time. + +She lived under Deborah’s palm tree between Ramah and Bethel in the hill country of Ephraim; and the children of Israel came up to her for judgment. + +She sent and called Barak the son of Abinoam out of Kedesh Naphtali, and said to him, “Hasn’t Yahweh, the God of Israel, commanded, ‘Go and lead the way to Mount Tabor, and take with you ten thousand men of the children of Naphtali and of the children of Zebulun? + +I will draw to you, to the river Kishon, Sisera, the captain of Jabin’s army, with his chariots and his multitude; and I will deliver him into your hand.’” + +

+

Barak said to her, “If you will go with me, then I will go; but if you will not go with me, I will not go.” + +

+

She said, “I will surely go with you. Nevertheless, the journey that you take won’t be for your honor; for Yahweh will sell Sisera into a woman’s hand.” Deborah arose, and went with Barak to Kedesh. + +

+

Barak called Zebulun and Naphtali together to Kedesh. Ten thousand men followed him; and Deborah went up with him. + +Now Heber the Kenite had separated himself from the Kenites, even from the children of Hobab, Moses’ brother-in-law, and had pitched his tent as far as the oak in Zaanannim, which is by Kedesh. + +They told Sisera that Barak the son of Abinoam had gone up to Mount Tabor. + +Sisera gathered together all his chariots, even nine hundred chariots of iron, and all the people who were with him, from Harosheth of the Gentiles, to the river Kishon. + +

+

Deborah said to Barak, “Go; for this is the day in which Yahweh has delivered Sisera into your hand. Hasn’t Yahweh gone out before you?” So Barak went down from Mount Tabor, and ten thousand men after him. + +Yahweh confused Sisera, all his chariots, and all his army, with the edge of the sword before Barak. Sisera abandoned his chariot and fled away on his feet. + +But Barak pursued the chariots and the army to Harosheth of the Gentiles; and all the army of Sisera fell by the edge of the sword. There was not a man left. + +

+

However 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. + +Jael went out to meet Sisera, and said to him, “Turn in, my lord, turn in to me; don’t be afraid.” He came in to her into the tent, and she covered him with a rug. + +

+

He said to her, “Please give me a little water to drink; for I am thirsty.” +

+

She opened a container of milk, and gave him a drink, and covered him. + +

+

He said to her, “Stand in the door of the tent, and if any man comes and inquires of you, and says, ‘Is there any man here?’ you shall say, ‘No.’” + +

+

Then Jael, Heber’s wife, took a tent peg, and took a hammer in her hand, and went softly to him, and struck the pin into his temples, and it pierced through into the ground, for he was in a deep sleep; so he fainted and died. + +Behold, as Barak pursued Sisera, Jael came out to meet him, and said to him, “Come, and I will show you the man whom you seek.” He came to her; and behold, Sisera lay dead, and the tent peg was in his temples. + +So God subdued Jabin the king of Canaan before the children of Israel on that day. + +The hand of the children of Israel prevailed more and more against Jabin the king of Canaan, until they had destroyed Jabin king of Canaan. + +

+ + +

Then Deborah and Barak the son of Abinoam sang on that day, saying, + +

+Because the leaders took the lead in Israel, + +because the people offered themselves willingly, + +be blessed, Yahweh! + + + +Hear, you kings! + +Give ear, you princes! + +I, even I, will sing to Yahweh. + +I will sing praise to Yahweh, the God of Israel. + + + +Yahweh, when you went out of Seir, + +when you marched out of the field of Edom, + +the earth trembled, the sky also dropped. + +Yes, the clouds dropped water. + + +The mountains quaked at Yahweh’s presence, + +even Sinai at the presence of Yahweh, the God of Israel. + + + +In the days of Shamgar the son of Anath, + +in the days of Jael, the highways were unoccupied. + +The travelers walked through byways. + + +The rulers ceased in Israel. + +They ceased until I, Deborah, arose; + +Until I arose a mother in Israel. + + +They chose new gods. + +Then war was in the gates. + +Was there a shield or spear seen among forty thousand in Israel? + + +My heart is toward the governors of Israel, + +who offered themselves willingly among the people. + +Bless Yahweh! + + + +Speak, you who ride on white donkeys, + +you who sit on rich carpets, + +and you who walk by the way. + + +Far from the noise of archers, in the places of drawing water, + +there they will rehearse Yahweh’s righteous acts, + +the righteous acts of his rule in Israel. + + +Then Yahweh’s people went down to the gates. + + +Awake, awake, Deborah! + +Awake, awake, utter a song! + +Arise, Barak, and lead away your captives, you son of Abinoam.’ + + + +Then a remnant of the nobles and the people came down. + +Yahweh came down for me against the mighty. + + +Those whose root is in Amalek came out of Ephraim, + +after you, Benjamin, among your peoples. + +Governors come down out of Machir. + +Those who handle the marshal’s staff came out of Zebulun. + + +The princes of Issachar were with Deborah. + +As was Issachar, so was Barak. + +They rushed into the valley at his feet. + +By the watercourses of Reuben, + +there were great resolves of heart. + + +Why did you sit among the sheepfolds? + +To hear the whistling for the flocks? + +At the watercourses of Reuben, + +there were great searchings of heart. + + +Gilead lived beyond the Jordan. + +Why did Dan remain in ships? + +Asher sat still at the haven of the sea, + +and lived by his creeks. + + +Zebulun was a people that jeopardized their lives to the death; + +Naphtali also, on the high places of the field. + + + +The kings came and fought, + +then the kings of Canaan fought at Taanach by the waters of Megiddo. + +They took no plunder of silver. + + +From the sky the stars fought. + +From their courses, they fought against Sisera. + + +The river Kishon swept them away, + +that ancient river, the river Kishon. + +My soul, march on with strength. + + +Then the horse hoofs stamped because of the prancing, + +the prancing of their strong ones. + + +‘Curse Meroz,’ said Yahweh’s angel. + +‘Curse bitterly its inhabitants, + +because they didn’t come to help Yahweh, + +to help Yahweh against the mighty.’ + + + +Jael shall be blessed above women, + +the wife of Heber the Kenite; + +blessed shall she be above women in the tent. + + +He asked for water. + +She gave him milk. + +She brought him butter in a lordly dish. + + +She put her hand to the tent peg, + +and her right hand to the workmen’s hammer. + +With the hammer she struck Sisera. + +She struck through his head. + +Yes, she pierced and struck through his temples. + + +At her feet he bowed, he fell, he lay. + +At her feet he bowed, he fell. + +Where he bowed, there he fell down dead. + + + +Through the window she looked out, and cried: + +Sisera’s mother looked through the lattice. + +Why is his chariot so long in coming? + +Why do the wheels of his chariots wait?’ + + +Her wise ladies answered her, + +Yes, she returned answer to herself, + + +Have they not found, have they not divided the plunder? + +A lady, two ladies to every man; + +to Sisera a plunder of dyed garments, + +a plunder of dyed garments embroidered, + +of dyed garments embroidered on both sides, on the necks of the plunder?’ + + + +So let all your enemies perish, Yahweh, + +but let those who love him be as the sun when it rises in its strength.” + + +

Then the land had rest forty years. + +

+ + +

The children of Israel did that which was evil in Yahweh’s sight, so Yahweh delivered them into the hand of Midian seven years. + +The hand of Midian prevailed against Israel; and because of Midian the children of Israel made themselves the dens which are in the mountains, the caves, and the strongholds. + +So it was, when Israel had sown, that the Midianites, the Amalekites, and the children of the east came up against them. + +They encamped against them, and destroyed the increase of the earth, until you come to Gaza. They left no sustenance in Israel, and no sheep, ox, or donkey. + +For they came up with their livestock and their tents. They came in as locusts for multitude. Both they and their camels were without number; and they came into the land to destroy it. + +Israel was brought very low because of Midian; and the children of Israel cried to Yahweh. + +

+

When the children of Israel cried to Yahweh because of Midian, + +Yahweh sent a prophet to the children of Israel; and he said to them, “Yahweh, the God of Israel, says, ‘I brought you up from Egypt, and brought you out of the house of bondage. + +I delivered you out of the hand of the Egyptians and out of the hand of all who oppressed you, and drove them out from before you, and gave you their land. + +I said to you, “I am Yahweh your God. You shall not fear the gods of the Amorites, in whose land you dwell.” But you have not listened to my voice.’” + +

+

Yahweh’s angel came and sat under the oak which was in Ophrah, that belonged to Joash the Abiezrite. His son Gideon was beating out wheat in the wine press, to hide it from the Midianites. + +Yahweh’s angel appeared to him, and said to him, “Yahweh is with you, you mighty man of valor!” + +

+

Gideon said to him, “Oh, my lord, if Yahweh is with us, why then has all this happened to us? Where are all his wondrous works which our fathers told us of, saying, ‘Didn’t Yahweh bring us up from Egypt?’ But now Yahweh has cast us off, and delivered us into the hand of Midian.” + +

+

Yahweh looked at him, and said, “Go in this your might, and save Israel from the hand of Midian. Haven’t I sent you?” + +

+

He said to him, “O Lord,6:15 +The word translated “Lord” is “Adonai.” how shall I save Israel? Behold, my family is the poorest in Manasseh, and I am the least in my father’s house.” + +

+

Yahweh said to him, “Surely I will be with you, and you shall strike the Midianites as one man.” + +

+

He said to him, “If now I have found favor in your sight, then show me a sign that it is you who talk with me. + +Please don’t go away until I come to you, and bring out my present, and lay it before you.” +

+

He said, “I will wait until you come back.” + +

+

Gideon went in and prepared a young goat and unleavened cakes of an ephah6:19 +1 ephah is about 22 liters or about 2/3 of a bushel of meal. He put the meat in a basket and he put the broth in a pot, and brought it out to him under the oak, and presented it. + +

+

The angel of God said to him, “Take the meat and the unleavened cakes, and lay them on this rock, and pour out the broth.” +

+

He did so. + +Then Yahweh’s angel stretched out the end of the staff that was in his hand, and touched the meat and the unleavened cakes; and fire went up out of the rock and consumed the meat and the unleavened cakes. Then Yahweh’s angel departed out of his sight. + +

+

Gideon saw that he was Yahweh’s angel; and Gideon said, “Alas, Lord Yahweh! Because I have seen Yahweh’s angel face to face!” + +

+

Yahweh said to him, “Peace be to you! Don’t be afraid. You shall not die.” + +

+

Then Gideon built an altar there to Yahweh, and called itYahweh is Peace.”6:24 +or, Yahweh Shalom To this day it is still in Ophrah of the Abiezrites. + +

+

That same night, Yahweh said to him, “Take your father’s bull, even the second bull seven years old, and throw down the altar of Baal that your father has, and cut down the Asherah that is by it. + +Then build an altar to Yahweh your God on the top of this stronghold, in an orderly way, and take the second bull, and offer a burnt offering with the wood of the Asherah which you shall cut down.” + +

+

Then Gideon took ten men of his servants, and did as Yahweh had spoken to him. Because he feared his father’s household and the men of the city, he could not do it by day, but he did it by night. + +

+

When the men of the city arose early in the morning, behold, the altar of Baal was broken down, and the Asherah was cut down that was by it, and the second bull was offered on the altar that was built. + +They said to one another, “Who has done this thing?” +

+

When they inquired and asked, they said, “Gideon the son of Joash has done this thing.” + +

+

Then the men of the city said to Joash, “Bring out your son, that he may die, because he has broken down the altar of Baal, and because he has cut down the Asherah that was by it.” + +Joash said to all who stood against him, “Will you contend for Baal? Or will you save him? He who will contend for him, let him be put to death by morning! If he is a god, let him contend for himself, because someone has broken down his altar!” + +Therefore on that day he named him Jerub-Baal,6:32 +“Jerub-Baal” means “Let Baal contend”. saying, “Let Baal contend against him, because he has broken down his altar.” + +

+

Then all the Midianites and the Amalekites and the children of the east assembled themselves together; and they passed over, and encamped in the valley of Jezreel. + +But Yahweh’s Spirit came on Gideon, and he blew a trumpet; and Abiezer was gathered together to follow him. + +He sent messengers throughout all Manasseh, and they also were gathered together to follow him. He sent messengers to Asher, to Zebulun, and to Naphtali; and they came up to meet them. + +

+

Gideon said to God, “If you will save Israel by my hand, as you have spoken, + +behold, I will put a fleece of wool on the threshing floor. If there is dew on the fleece only, and it is dry on all the ground, then I’ll know that you will save Israel by my hand, as you have spoken.” + +

+

It was so; for he rose up early on the next day, and pressed the fleece together, and wrung the dew out of the fleece, a bowl full of water. + +

+

Gideon said to God, “Don’t let your anger be kindled against me, and I will speak but this once. Please let me make a trial just this once with the fleece. Let it now be dry only on the fleece, and on all the ground let there be dew.” + +

+

God did so that night; for it was dry on the fleece only, and there was dew on all the ground. + +

+ + +

Then Jerubbaal, who is Gideon, and all the people who were with him, rose up early and encamped beside the spring of Harod. Midian’s camp was on the north side of them, by the hill of Moreh, in the valley. + +Yahweh said to Gideon, “The people who are with you are too many for me to give the Midianites into their hand, lest Israel brag against me, saying, ‘My own hand has saved me.’ + +Now therefore proclaim in the ears of the people, saying, ‘Whoever is fearful and trembling, let him return and depart from Mount Gilead.’” So twenty-two thousand of the people returned, and ten thousand remained. + +

+

Yahweh said to Gideon, “There are still too many people. Bring them down to the water, and I will test them for you there. It shall be, that those whom I tell you, ‘This shall go with you,’ shall go with you; and whoever I tell you, ‘This shall not go with you,’ shall not go.” + +So he brought down the people to the water; and Yahweh said to Gideon, “Everyone who laps of the water with his tongue, like a dog laps, you shall set him by himself; likewise everyone who bows down on his knees to drink.” + +The number of those who lapped, putting their hand to their mouth, was three hundred men; but all the rest of the people bowed down on their knees to drink water. + +Yahweh said to Gideon, “I will save you by the three hundred men who lapped, and deliver the Midianites into your hand. Let all the other people go, each to his own place.” + +

+

So the people took food in their hand, and their trumpets; and he sent all the rest of the men of Israel to their own tents, but retained the three hundred men; and the camp of Midian was beneath him in the valley. + +That same night, Yahweh said to him, “Arise, go down into the camp, for I have delivered it into your hand. + +But if you are afraid to go down, go with Purah your servant down to the camp. + +You will hear what they say; and afterward your hands will be strengthened to go down into the camp.” Then went he down with Purah his servant to the outermost part of the armed men who were in the camp. + +

+

The Midianites and the Amalekites and all the children of the east lay along in the valley like locusts for multitude; and their camels were without number, as the sand which is on the seashore for multitude. + +

+

When Gideon had come, behold, there was a man telling a dream to his fellow. He said, “Behold, I dreamed a dream; and behold, a cake of barley bread tumbled into the camp of Midian, came to the tent, and struck it so that it fell, and turned it upside down, so that the tent lay flat.” + +

+

His fellow answered, “This is nothing other than the sword of Gideon the son of Joash, a man of Israel. God has delivered Midian into his hand, with all the army.” + +

+

It was so, when Gideon heard the telling of the dream and its interpretation, that he worshiped. Then he returned into the camp of Israel and said, “Arise, for Yahweh has delivered the army of Midian into your hand!” + +

+

He divided the three hundred men into three companies, and he put into the hands of all of them trumpets and empty pitchers, with torches within the pitchers. + +

+

He said to them, “Watch me, and do likewise. Behold, when I come to the outermost part of the camp, it shall be that, as I do, so you shall do. + +When I blow the trumpet, I and all who are with me, then blow the trumpets also on every side of all the camp, and shout, ‘For Yahweh and for Gideon!’” + +

+

So Gideon and the hundred men who were with him came to the outermost part of the camp in the beginning of the middle watch, when they had but newly set the watch. Then they blew the trumpets and broke in pieces the pitchers that were in their hands. + +The three companies blew the trumpets, broke the pitchers, and held the torches in their left hands and the trumpets in their right hands with which to blow; and they shouted, “The sword of Yahweh and of Gideon!” + +They each stood in his place around the camp, and all the army ran; and they shouted, and put them to flight. + +They blew the three hundred trumpets, and Yahweh set every man’s sword against his fellow and against all the army; and the army fled as far as Beth Shittah toward Zererah, as far as the border of Abel Meholah, by Tabbath. + +The men of Israel were gathered together out of Naphtali, out of Asher, and out of all Manasseh, and pursued Midian. + +Gideon sent messengers throughout all the hill country of Ephraim, saying, “Come down against Midian and take the waters before them as far as Beth Barah, even the Jordan!” So all the men of Ephraim were gathered together and took the waters as far as Beth Barah, even the Jordan. + +They took the two princes of Midian, Oreb and Zeeb. They killed Oreb at Oreb’s rock, and Zeeb they killed at Zeeb’s wine press, as they pursued Midian. Then they brought the heads of Oreb and Zeeb to Gideon beyond the Jordan. + +

+ + +

The men of Ephraim said to him, “Why have you treated us this way, that you didn’t call us when you went to fight with Midian?” They rebuked him sharply. + +He said to them, “What have I now done in comparison with you? Isn’t the gleaning of the grapes of Ephraim better than the vintage of Abiezer? + +God has delivered into your hand the princes of Midian, Oreb and Zeeb! What was I able to do in comparison with you?” Then their anger was abated toward him when he had said that. + +

+

Gideon came to the Jordan and passed over, he and the three hundred men who were with him, faint, yet pursuing. + +He said to the men of Succoth, “Please give loaves of bread to the people who follow me; for they are faint, and I am pursuing after Zebah and Zalmunna, the kings of Midian.” + +

+

The princes of Succoth said, “Are the hands of Zebah and Zalmunna now in your hand, that we should give bread to your army?” + +

+

Gideon said, “Therefore when Yahweh has delivered Zebah and Zalmunna into my hand, then I will tear your flesh with the thorns of the wilderness and with briers.” + +

+

He went up there to Penuel, and spoke to them in the same way; and the men of Penuel answered him as the men of Succoth had answered. + +He spoke also to the men of Penuel, saying, “When I come again in peace, I will break down this tower.” + +

+

Now Zebah and Zalmunna were in Karkor, and their armies with them, about fifteen thousand men, all who were left of all the army of the children of the east; for there fell one hundred twenty thousand men who drew sword. + +Gideon went up by the way of those who lived in tents on the east of Nobah and Jogbehah, and struck the army; for the army felt secure. + +Zebah and Zalmunna fled and he pursued them. He took the two kings of Midian, Zebah and Zalmunna, and confused all the army. + +Gideon the son of Joash returned from the battle from the ascent of Heres. + +He caught a young man of the men of Succoth, and inquired of him; and he described for him the princes of Succoth, and its elders, seventy-seven men. + +He came to the men of Succoth, and said, “See Zebah and Zalmunna, concerning whom you taunted me, saying, ‘Are the hands of Zebah and Zalmunna now in your hand, that we should give bread to your men who are weary?’” + +He took the elders of the city, and thorns of the wilderness and briers, and with them he taught the men of Succoth. + +He broke down the tower of Penuel, and killed the men of the city. + +

+

Then he said to Zebah and Zalmunna, “What kind of men were they whom you killed at Tabor?” +

+

They answered, “They were like you. They all resembled the children of a king.” + +

+

He said, “They were my brothers, the sons of my mother. As Yahweh lives, if you had saved them alive, I would not kill you.” + +

+

He said to Jether his firstborn, “Get up and kill them!” But the youth didn’t draw his sword; for he was afraid, because he was yet a youth. + +

+

Then Zebah and Zalmunna said, “You rise and fall on us; for as the man is, so is his strength.” Gideon arose, and killed Zebah and Zalmunna, and took the crescents that were on their camelsnecks. + +

+

Then the men of Israel said to Gideon, “Rule over us, both you, your son, and your son’s son also; for you have saved us out of the hand of Midian.” + +

+

Gideon said to them, “I will not rule over you, neither shall my son rule over you. Yahweh shall rule over you.” + +Gideon said to them, “I do have a request: that you would each give me the earrings of his plunder.” (For they had golden earrings, because they were Ishmaelites.) + +

+

They answered, “We will willingly give them.” They spread a garment, and every man threw the earrings of his plunder into it. + +The weight of the golden earrings that he requested was one thousand and seven hundred shekels8:26 +A shekel is about 10 grams or about 0.32 Troy ounces, so 1700 shekels is about 17 kilograms or 37.4 pounds. of gold, in addition to the crescents, and the pendants, and the purple clothing that was on the kings of Midian, and in addition to the chains that were about their camelsnecks. + +Gideon made an ephod out of it, and put it in Ophrah, his city. Then all Israel played the prostitute with it there; and it became a snare to Gideon and to his house. + +So Midian was subdued before the children of Israel, and they lifted up their heads no more. The land had rest forty years in the days of Gideon. + +

+

Jerubbaal the son of Joash went and lived in his own house. + +Gideon had seventy sons conceived from his body, for he had many wives. + +His concubine who was in Shechem also bore him a son, and he named him Abimelech. + +Gideon the son of Joash died in a good old age, and was buried in the tomb of Joash his father, in Ophrah of the Abiezrites. + +

+

As soon as Gideon was dead, the children of Israel turned again and played the prostitute following the Baals, and made Baal Berith their god. + +The children of Israel didn’t remember Yahweh their God, who had delivered them out of the hand of all their enemies on every side; + +neither did they show kindness to the house of Jerubbaal, that is, Gideon, according to all the goodness which he had shown to Israel. + +

+ + +

Abimelech the son of Jerubbaal went to Shechem to his mother’s brothers, and spoke with them and with all the family of the house of his mother’s father, saying, + +Please speak in the ears of all the men of Shechem, ‘Is it better for you that all the sons of Jerubbaal, who are seventy persons, rule over you, or that one rule over you?’ Remember also that I am your bone and your flesh.” + +

+

His mother’s brothers spoke of him in the ears of all the men of Shechem all these words. Their hearts inclined to follow Abimelech; for they said, “He is our brother.” + +They gave him seventy pieces of silver out of the house of Baal Berith, with which Abimelech hired vain and reckless fellows who followed him. + +He went to his father’s house at Ophrah, and killed his brothers the sons of Jerubbaal, being seventy persons, on one stone; but Jotham the youngest son of Jerubbaal was left, for he hid himself. + +All the men of Shechem assembled themselves together with all the house of Millo, and went and made Abimelech king by the oak of the pillar that was in Shechem. + +When they told it to Jotham, he went and stood on the top of Mount Gerizim and lifted up his voice, cried out, and said to them, “Listen to me, you men of Shechem, that God may listen to you. + +The trees set out to anoint a king over themselves. They said to the olive tree, ‘Reign over us.’ + +

+

But the olive tree said to them, ‘Should I stop producing my oil, with which they honor God and man by me, and go to wave back and forth over the trees?’ + +

+

The trees said to the fig tree, ‘Come and reign over us.’ + +

+

But the fig tree said to them, ‘Should I leave my sweetness, and my good fruit, and go to wave back and forth over the trees?’ + +

+

The trees said to the vine, ‘Come and reign over us.’ + +

+

The vine said to them, ‘Should I leave my new wine, which cheers God and man, and go to wave back and forth over the trees?’ + +

+

Then all the trees said to the bramble, ‘Come and reign over us.’ + +

+

The bramble said to the trees, ‘If in truth you anoint me king over you, then come and take refuge in my shade; and if not, let fire come out of the bramble, and devour the cedars of Lebanon.’ + +

+

Now therefore, if you have dealt truly and righteously, in that you have made Abimelech king, and if you have dealt well with Jerubbaal and his house, and have done to him according to the deserving of his hands + +(for my father fought for you, risked his life, and delivered you out of the hand of Midian; + +and you have risen up against my father’s house today and have slain his sons, seventy persons, on one stone, and have made Abimelech, the son of his female servant, king over the men of Shechem, because he is your brother); + +if you then have dealt truly and righteously with Jerubbaal and with his house today, then rejoice in Abimelech, and let him also rejoice in you; + +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.” + +

+

Jotham ran away and fled, and went to Beer9:21 +“Beer” is Hebrew for “well”, i.e., a village named for its well. and lived there, for fear of Abimelech his brother. + +

+

Abimelech was prince over Israel three years. + +Then God sent an evil spirit between Abimelech and the men of Shechem; and the men of Shechem dealt treacherously with Abimelech, + +that the violence done to the seventy sons of Jerubbaal might come, and that their blood might be laid on Abimelech their brother who killed them, and on the men of Shechem who strengthened his hands to kill his brothers. + +The men of Shechem set an ambush for him on the tops of the mountains, and they robbed all who came along that way by them; and Abimelech was told about it. + +

+

Gaal the son of Ebed came with his brothers and went over to Shechem; and the men of Shechem put their trust in him. + +They went out into the field, harvested their vineyards, trod the grapes, celebrated, and went into the house of their god and ate and drank, and cursed Abimelech. + +Gaal the son of Ebed said, “Who is Abimelech, and who is Shechem, that we should serve him? Isn’t he the son of Jerubbaal? Isn’t Zebul his officer? Serve the men of Hamor the father of Shechem, but why should we serve him? + +I wish that this people were under my hand! Then I would remove Abimelech.” He said to Abimelech, “Increase your army and come out!” + +

+

When Zebul the ruler of the city heard the words of Gaal the son of Ebed, his anger burned. + +He sent messengers to Abimelech craftily, saying, “Behold, Gaal the son of Ebed and his brothers have come to Shechem; and behold, they incite the city against you. + +Now therefore, go up by night, you and the people who are with you, and lie in wait in the field. + +It shall be that in the morning, as soon as the sun is up, you shall rise early and rush on the city. Behold, when he and the people who are with him come out against you, then may you do to them as you shall find occasion.” + +

+

Abimelech rose up, and all the people who were with him, by night, and they laid wait against Shechem in four companies. + +Gaal the son of Ebed went out, and stood in the entrance of the gate of the city. Abimelech rose up, and the people who were with him, from the ambush. + +

+

When Gaal saw the people, he said to Zebul, “Behold, people are coming down from the tops of the mountains.” +

+

Zebul said to him, “You see the shadows of the mountains as if they were men.” + +

+

Gaal spoke again and said, “Behold, people are coming down by the middle of the land, and one company comes by the way of the oak of Meonenim.” + +

+

Then Zebul said to him, “Now where is your mouth, that you said, ‘Who is Abimelech, that we should serve him?’ Isn’t this the people that you have despised? Please go out now and fight with them.” + +

+

Gaal went out before the men of Shechem, and fought with Abimelech. + +Abimelech chased him, and he fled before him, and many fell wounded, even to the entrance of the gate. + +Abimelech lived at Arumah; and Zebul drove out Gaal and his brothers, that they should not dwell in Shechem. + +On the next day, the people went out into the field; and they told Abimelech. + +He took the people and divided them into three companies, and laid wait in the field; and he looked, and behold, the people came out of the city. So, he rose up against them and struck them. + +Abimelech and the companies that were with him rushed forward and stood in the entrance of the gate of the city; and the two companies rushed on all who were in the field and struck them. + +Abimelech fought against the city all that day; and he took the city and killed the people in it. He beat down the city and sowed it with salt. + +

+

When all the men of the tower of Shechem heard of it, they entered into the stronghold of the house of Elberith. + +Abimelech was told that all the men of the tower of Shechem were gathered together. + +Abimelech went up to Mount Zalmon, he and all the people who were with him; and Abimelech took an ax in his hand, and cut down a bough from the trees, and took it up, and laid it on his shoulder. Then he said to the people who were with him, “What you have seen me do, make haste, and do as I have done!” + +All the people likewise each cut down his bough, followed Abimelech, and put them at the base of the stronghold, and set the stronghold on fire over them, so that all the people of the tower of Shechem died also, about a thousand men and women. + +Then Abimelech went to Thebez and encamped against Thebez, and took it. + +But there was a strong tower within the city, and all the men and women of the city fled there, and shut themselves in, and went up to the roof of the tower. + +Abimelech came to the tower and fought against it, and came near to the door of the tower to burn it with fire. + +A certain woman cast an upper millstone on Abimelech’s head, and broke his skull. + +

+

Then he called hastily to the young man, his armor bearer, and said to him, “Draw your sword and kill me, that men not say of me, ‘A woman killed him.’ His young man thrust him through, and he died.” + +

+

When the men of Israel saw that Abimelech was dead, they each departed to his place. + +Thus God repaid the wickedness of Abimelech, which he did to his father in killing his seventy brothers; + +and God repaid all the wickedness of the men of Shechem on their heads; and the curse of Jotham the son of Jerubbaal came on them. + +

+ + +

After Abimelech, Tola the son of Puah, the son of Dodo, a man of Issachar, arose to save Israel. He lived in Shamir in the hill country of Ephraim. + +He judged Israel twenty-three years, and died, and was buried in Shamir. + +

+

After him Jair, the Gileadite, arose. He judged Israel twenty-two years. + +He had thirty sons who rode on thirty donkey colts. They had thirty cities, which are called Havvoth Jair to this day, which are in the land of Gilead. + +Jair died, and was buried in Kamon. + +

+

The children of Israel again did that which was evil in Yahweh’s sight, and served the Baals, the Ashtaroth, the gods of Syria, the gods of Sidon, the gods of Moab, the gods of the children of Ammon, and the gods of the Philistines. They abandoned Yahweh, and didn’t serve him. + +Yahweh’s anger burned against Israel, and he sold them into the hand of the Philistines and into the hand of the children of Ammon. + +They troubled and oppressed the children of Israel that year. For eighteen years they oppressed all the children of Israel that were beyond the Jordan in the land of the Amorites, which is in Gilead. + +The children of Ammon passed over the Jordan to fight also against Judah, and against Benjamin, and against the house of Ephraim, so that Israel was very distressed. + +The children of Israel cried to Yahweh, saying, “We have sinned against you, even because we have forsaken our God, and have served the Baals.” + +

+

Yahweh said to the children of Israel, “Didn’t I save you from the Egyptians, and from the Amorites, from the children of Ammon, and from the Philistines? + +The Sidonians also, and the Amalekites, and the Maonites, oppressed you; and you cried to me, and I saved you out of their hand. + +Yet you have forsaken me and served other gods. Therefore I will save you no more. + +Go and cry to the gods which you have chosen. Let them save you in the time of your distress!” + +

+

The children of Israel said to Yahweh, “We have sinned! Do to us whatever seems good to you; only deliver us, please, today.” + +They put away the foreign gods from among them and served Yahweh; and his soul was grieved for the misery of Israel. + +

+

Then the children of Ammon were gathered together and encamped in Gilead. The children of Israel assembled themselves together and encamped in Mizpah. + +The people, the princes of Gilead, said to one another, “Who is the man who will begin to fight against the children of Ammon? He shall be head over all the inhabitants of Gilead.” + +

+ + +

Now Jephthah the Gileadite was a mighty man of valor. He was the son of a prostitute. Gilead became the father of Jephthah. + +Gilead’s wife bore him sons. When his wife’s sons grew up, they drove Jephthah out and said to him, “You will not inherit in our father’s house, for you are the son of another woman.” + +Then Jephthah fled from his brothers and lived in the land of Tob. Outlaws joined up with Jephthah, and they went out with him. + +

+

After a while, the children of Ammon made war against Israel. + +When the children of Ammon made war against Israel, the elders of Gilead went to get Jephthah out of the land of Tob. + +They said to Jephthah, “Come and be our chief, that we may fight with the children of Ammon.” + +

+

Jephthah said to the elders of Gilead, “Didn’t you hate me, and drive me out of my father’s house? Why have you come to me now when you are in distress?” + +

+

The elders of Gilead said to Jephthah, “Therefore we have turned again to you now, that you may go with us and fight with the children of Ammon. You will be our head over all the inhabitants of Gilead.” + +

+

Jephthah said to the elders of Gilead, “If you bring me home again to fight with the children of Ammon, and Yahweh delivers them before me, will I be your head?” + +

+

The elders of Gilead said to Jephthah, “Yahweh will be witness between us. Surely we will do what you say.” + +

+

Then Jephthah went with the elders of Gilead, and the people made him head and chief over them. Jephthah spoke all his words before Yahweh in Mizpah. + +

+

Jephthah sent messengers to the king of the children of Ammon, saying, “What do you have to do with me, that you have come to me to fight against my land?” + +

+

The king of the children of Ammon answered the messengers of Jephthah, “Because Israel took away my land when he came up out of Egypt, from the Arnon even to the Jabbok, and to the Jordan. Now therefore restore that territory again peaceably.” + +

+

Jephthah sent messengers again to the king of the children of Ammon; + +and he said to him, “Jephthah says: Israel didn’t take away the land of Moab, nor the land of the children of Ammon; + +but when they came up from Egypt, and Israel went through the wilderness to the Red Sea, and came to Kadesh, + +then Israel sent messengers to the king of Edom, saying, ‘Please let me pass through your land;’ but the king of Edom didn’t listen. In the same way, he sent to the king of Moab, but he refused; so Israel stayed in Kadesh. + +Then they went through the wilderness, and went around the land of Edom, and the land of Moab, and came by the east side of the land of Moab, and they encamped on the other side of the Arnon; but they didn’t come within the border of Moab, for the Arnon was the border of Moab. + +Israel sent messengers to Sihon king of the Amorites, the king of Heshbon; and Israel said to him, ‘Please let us pass through your land to my place.’ + +But Sihon didn’t trust Israel to pass through his border; but Sihon gathered all his people together, and encamped in Jahaz, and fought against Israel. + +Yahweh, the God of Israel, delivered Sihon and all his people into the hand of Israel, and they struck them. So Israel possessed all the land of the Amorites, the inhabitants of that country. + +They possessed all the border of the Amorites, from the Arnon even to the Jabbok, and from the wilderness even to the Jordan. + +So now Yahweh, the God of Israel, has dispossessed the Amorites from before his people Israel, and should you possess them? + +Won’t you possess that which Chemosh your god gives you to possess? So whoever Yahweh our God has dispossessed from before us, them will we possess. + +Now are you anything better than Balak the son of Zippor, king of Moab? Did he ever strive against Israel, or did he ever fight against them? + +Israel lived in Heshbon and its towns, and in Aroer and its towns, and in all the cities that are along the side of the Arnon for three hundred years! Why didn’t you recover them within that time? + +Therefore I have not sinned against you, but you do me wrong to war against me. May Yahweh the Judge be judge today between the children of Israel and the children of Ammon.” + +

+

However, the king of the children of Ammon didn’t listen to the words of Jephthah which he sent him. + +Then Yahweh’s Spirit came on Jephthah, and he passed over Gilead and Manasseh, and passed over Mizpah of Gilead, and from Mizpah of Gilead he passed over to the children of Ammon. + +

+

Jephthah vowed a vow to Yahweh, and said, “If you will indeed deliver the children of Ammon into my hand, + +then it shall be, that whatever comes out of the doors of my house to meet me when I return in peace from the children of Ammon, it shall be Yahweh’s, and I will offer it up for a burnt offering.” + +

+

So Jephthah passed over to the children of Ammon to fight against them; and Yahweh delivered them into his hand. + +He struck them from Aroer until you come to Minnith, even twenty cities, and to Abelcheramim, with a very great slaughter. So the children of Ammon were subdued before the children of Israel. + +

+

Jephthah came to Mizpah to his house; and behold, his daughter came out to meet him with tambourines and with dances. She was his only child. Besides her he had neither son nor daughter. + +When he saw her, he tore his clothes, and said, “Alas, my daughter! You have brought me very low, and you are one of those who trouble me; for I have opened my mouth to Yahweh, and I can’t go back.” + +

+

She said to him, “My father, you have opened your mouth to Yahweh; do to me according to that which has proceeded out of your mouth, because Yahweh has taken vengeance for you on your enemies, even on the children of Ammon.” + +Then she said to her father, “Let this thing be done for me. Leave me alone two months, that I may depart and go down on the mountains, and bewail my virginity, I and my companions.” + +

+

He said, “Go.” He sent her away for two months; and she departed, she and her companions, and mourned her virginity on the mountains. + +At the end of two months, she returned to her father, who did with her according to his vow which he had vowed. She was a virgin. It became a custom in Israel + +that the daughters of Israel went yearly to celebrate the daughter of Jephthah the Gileadite four days in a year. + +

+ + +

The men of Ephraim were gathered together, and passed northward; and they said to Jephthah, “Why did you pass over to fight against the children of Ammon, and didn’t call us to go with you? We will burn your house around you with fire!” + +

+

Jephthah said to them, “I and my people were at great strife with the children of Ammon; and when I called you, you didn’t save me out of their hand. + +When I saw that you didn’t save me, I put my life in my hand, and passed over against the children of Ammon, and Yahweh delivered them into my hand. Why then have you come up to me today, to fight against me?” + +

+

Then Jephthah gathered together all the men of Gilead, and fought with Ephraim. The men of Gilead struck Ephraim, because they said, “You are fugitives of Ephraim, you Gileadites, in the middle of Ephraim, and in the middle of Manasseh.” + +The Gileadites took the fords of the Jordan against the Ephraimites. Whenever a fugitive of Ephraim said, “Let me go over,” the men of Gilead said to him, “Are you an Ephraimite?” If he said, “No;” + +then they said to him, “Now sayShibboleth;’” and he saidSibboleth”; for he couldn’t manage to pronounce it correctly, then they seized him and killed him at the fords of the Jordan. At that time, forty-two thousand of Ephraim fell. + +

+

Jephthah judged Israel six years. Then Jephthah the Gileadite died, and was buried in the cities of Gilead. + +

+

After him Ibzan of Bethlehem judged Israel. + +He had thirty sons. He sent his thirty daughters outside his clan, and he brought in thirty daughters from outside his clan for his sons. He judged Israel seven years. + +Ibzan died, and was buried at Bethlehem. + +

+

After him, Elon the Zebulunite judged Israel; and he judged Israel ten years. + +Elon the Zebulunite died, and was buried in Aijalon in the land of Zebulun. + +

+

After him, Abdon the son of Hillel the Pirathonite judged Israel. + +He had forty sons and thirty sonssons who rode on seventy donkey colts. He judged Israel eight years. + +Abdon the son of Hillel the Pirathonite died, and was buried in Pirathon in the land of Ephraim, in the hill country of the Amalekites. + +

+ + +

The children of Israel again did that which was evil in Yahweh’s sight; and Yahweh delivered them into the hand of the Philistines forty years. + +

+

There was a certain man of Zorah, of the family of the Danites, whose name was Manoah; and his wife was barren, and childless. + +Yahweh’s angel appeared to the woman, and said to her, “See now, you are barren and childless; but you shall conceive and bear a son. + +Now therefore please beware and drink no wine nor strong drink, and don’t eat any unclean thing; + +for, behold, you shall conceive and give birth to a son. No razor shall come on his head, for the child shall be a Nazirite to God from the womb. He shall begin to save Israel out of the hand of the Philistines.” + +

+

Then the woman came and told her husband, saying, “A man of God came to me, and his face was like the face of the angel of God, very awesome. I didn’t ask him where he was from, neither did he tell me his name; + +but he said to me, ‘Behold, you shall conceive and bear a son; and now drink no wine nor strong drink. Don’t eat any unclean thing, for the child shall be a Nazirite to God from the womb to the day of his death.’” + +

+

Then Manoah entreated Yahweh, and said, “Oh, Lord, please let the man of God whom you sent come again to us, and teach us what we should do to the child who shall be born.” + +

+

God listened to the voice of Manoah, and the angel of God came again to the woman as she sat in the field; but Manoah, her husband, wasn’t with her. + +The woman hurried and ran, and told her husband, saying to him, “Behold, the man who came to me that day has appeared to me.” + +

+

Manoah arose and followed his wife, and came to the man, and said to him, “Are you the man who spoke to my wife?” +

+

He said, “I am.” + +

+

Manoah said, “Now let your words happen. What shall the child’s way of life and mission be?” + +

+

Yahweh’s angel said to Manoah, “Of all that I said to the woman let her beware. + +She may not eat of anything that comes of the vine, neither let her drink wine or strong drink, nor eat any unclean thing. Let her observe all that I commanded her.” + +

+

Manoah said to Yahweh’s angel, “Please stay with us, that we may make a young goat ready for you.” + +

+

Yahweh’s angel said to Manoah, “Though you detain me, I won’t eat your bread. If you will prepare a burnt offering, you must offer it to Yahweh.” For Manoah didn’t know that he was Yahweh’s angel. + +

+

Manoah said to Yahweh’s angel, “What is your name, that when your words happen, we may honor you?” + +

+

Yahweh’s angel said to him, “Why do you ask about my name, since it is incomprehensible13:18 +or, wonderful?” + +

+

So Manoah took the young goat with the meal offering, and offered it on the rock to Yahweh. Then the angel did an amazing thing as Manoah and his wife watched. + +For when the flame went up toward the sky from off the altar, Yahweh’s angel ascended in the flame of the altar. Manoah and his wife watched; and they fell on their faces to the ground. + +But Yahweh’s angel didn’t appear to Manoah or to his wife any more. Then Manoah knew that he was Yahweh’s angel. + +Manoah said to his wife, “We shall surely die, because we have seen God.” + +

+

But his wife said to him, “If Yahweh were pleased to kill us, he wouldn’t have received a burnt offering and a meal offering at our hand, and he wouldn’t have shown us all these things, nor would he have told us such things as these at this time.” + +The woman bore a son and named him Samson. The child grew, and Yahweh blessed him. + +Yahweh’s Spirit began to move him in Mahaneh Dan, between Zorah and Eshtaol. + +

+ + +

Samson went down to Timnah, and saw a woman in Timnah of the daughters of the Philistines. + +He came up, and told his father and his mother, saying, “I have seen a woman in Timnah of the daughters of the Philistines. Now therefore get her for me as my wife.” + +

+

Then his father and his mother said to him, “Isn’t there a woman among your brothers’ daughters, or among all my people, that you go to take a wife of the uncircumcised Philistines?” +

+

Samson said to his father, “Get her for me, for she pleases me well.” + +

+

But his father and his mother didn’t know that it was of Yahweh; for he sought an occasion against the Philistines. Now at that time the Philistines ruled over Israel. + +

+

Then Samson went down to Timnah with his father and his mother, and came to the vineyards of Timnah; and behold, a young lion roared at him. + +Yahweh’s Spirit came mightily on him, and he tore him as he would have torn a young goat with his bare hands, but he didn’t tell his father or his mother what he had done. + +He went down and talked with the woman, and she pleased Samson well. + +After a while he returned to take her, and he went over to see the carcass of the lion; and behold, there was a swarm of bees in the body of the lion, and honey. + +He took it into his hands, and went on, eating as he went. He came to his father and mother and gave to them, and they ate, but he didn’t tell them that he had taken the honey out of the lion’s body. + +His father went down to the woman; and Samson made a feast there, for the young men used to do so. + +When they saw him, they brought thirty companions to be with him. + +

+

Samson said to them, “Let me tell you a riddle now. If you can tell me the answer within the seven days of the feast, and find it out, then I will give you thirty linen garments and thirty changes of clothing; + +but if you can’t tell me the answer, then you shall give me thirty linen garments and thirty changes of clothing.” +

+

They said to him, “Tell us your riddle, that we may hear it.” + +

+

He said to them, +

+Out of the eater came out food. + +Out of the strong came out sweetness.” + +

They couldn’t in three days declare the riddle. + +On the seventh day, they said to Samson’s wife, “Entice your husband, that he may declare to us the riddle, lest we burn you and your father’s house with fire. Have you called us to impoverish us? Isn’t that so?” + +

+

Samson’s wife wept before him, and said, “You just hate me, and don’t love me. You’ve told a riddle to the children of my people, and haven’t told it to me.” +

+

He said to her, “Behold, I haven’t told my father or my mother, so why should I tell you?” + +

+

She wept before him the seven days, while their feast lasted; and on the seventh day, he told her, because she pressed him severely; and she told the riddle to the children of her people. + +The men of the city said to him on the seventh day before the sun went down, “What is sweeter than honey? What is stronger than a lion?” +

+

He said to them, +

+If you hadn’t plowed with my heifer, + +you wouldn’t have found out my riddle.” + + +

Yahweh’s Spirit came mightily on him, and he went down to Ashkelon and struck thirty men of them. He took their plunder, then gave the changes of clothing to those who declared the riddle. His anger burned, and he went up to his father’s house. + +But Samson’s wife was given to his companion, who had been his friend. + +

+ + +

But after a while, in the time of wheat harvest, Samson visited his wife with a young goat. He said, “I will go in to my wife’s room.” +

+

But her father wouldn’t allow him to go in. + +Her father said, “I most certainly thought that you utterly hated her; therefore I gave her to your companion. Isn’t her younger sister more beautiful than she? Please, take her instead.” + +

+

Samson said to them, “This time I will be blameless in the case of the Philistines when I harm them.” + +Samson went and caught three hundred foxes, and took torches, and turned tail to tail, and put a torch in the middle between every two tails. + +When he had set the torches on fire, he let them go into the standing grain of the Philistines, and burned up both the shocks and the standing grain, and also the olive groves. + +

+

Then the Philistines said, “Who has done this?” +

+

They said, “Samson, the son-in-law of the Timnite, because he has taken his wife and given her to his companion.” The Philistines came up, and burned her and her father with fire. + +

+

Samson said to them, “If you behave like this, surely I will take revenge on you, and after that I will cease.” + +He struck them hip and thigh with a great slaughter; and he went down and lived in the cave in Etam’s rock. + +Then the Philistines went up, encamped in Judah, and spread themselves in Lehi. + +

+

The men of Judah said, “Why have you come up against us?” +

+

They said, “We have come up to bind Samson, to do to him as he has done to us.” + +

+

Then three thousand men of Judah went down to the cave in Etam’s rock, and said to Samson, “Don’t you know that the Philistines are rulers over us? What then is this that you have done to us?” +

+

He said to them, “As they did to me, so I have done to them.” + +

+

They said to him, “We have come down to bind you, that we may deliver you into the hand of the Philistines.” +

+

Samson said to them, “Swear to me that you will not attack me yourselves.” + +

+

They spoke to him, saying, “No, but we will bind you securely and deliver you into their hands; but surely we will not kill you.” They bound him with two new ropes, and brought him up from the rock. + +

+

When he came to Lehi, the Philistines shouted as they met him. Then Yahweh’s Spirit came mightily on him, and the ropes that were on his arms became as flax that was burned with fire; and his bands dropped from off his hands. + +He found a fresh jawbone of a donkey, put out his hand, took it, and struck a thousand men with it. + +Samson said, “With the jawbone of a donkey, heaps on heaps; with the jawbone of a donkey I have struck a thousand men.” + +When he had finished speaking, he threw the jawbone out of his hand; and that place was called Ramath Lehi.15:17 +“Ramath” means “hill” and “Lehi” means “jawbone”. + +

+

He was very thirsty, and called on Yahweh and said, “You have given this great deliverance by the hand of your servant; and now shall I die of thirst, and fall into the hands of the uncircumcised?” + +

+

But God split the hollow place that is in Lehi, and water came out of it. When he had drunk, his spirit came again, and he revived. Therefore its name was called En Hakkore, which is in Lehi, to this day. + +He judged Israel twenty years in the days of the Philistines. + +

+ + +

Samson went to Gaza, and saw there a prostitute, and went in to her. + +The Gazites were told, “Samson is here!” They surrounded him and laid wait for him all night in the gate of the city, and were quiet all the night, saying, “Wait until morning light; then we will kill him.” + +Samson lay until midnight, then arose at midnight and took hold of the doors of the gate of the city, with the two posts, and plucked them up, bar and all, and put them on his shoulders and carried them up to the top of the mountain that is before Hebron. + +

+

It came to pass afterward that he loved a woman in the valley of Sorek, whose name was Delilah. + +The lords of the Philistines came up to her and said to her, “Entice him, and see in which his great strength lies, and by what means we may prevail against him, that we may bind him to afflict him; and we will each give you eleven hundred pieces of silver.” + +

+

Delilah said to Samson, “Please tell me where your great strength lies, and what you might be bound to afflict you.” + +

+

Samson said to her, “If they bind me with seven green cords that were never dried, then shall I become weak, and be as another man.” + +

+

Then the lords of the Philistines brought up to her seven green cords which had not been dried, and she bound him with them. + +Now she had an ambush waiting in the inner room. She said to him, “The Philistines are on you, Samson!” He broke the cords as a flax thread is broken when it touches the fire. So his strength was not known. + +

+

Delilah said to Samson, “Behold, you have mocked me, and told me lies. Now please tell me how you might be bound.” + +

+

He said to her, “If they only bind me with new ropes with which no work has been done, then I will become weak, and be as another man.” + +

+

So Delilah took new ropes and bound him with them, then said to him, “The Philistines are on you, Samson!” The ambush was waiting in the inner room. He broke them off his arms like a thread. + +

+

Delilah said to Samson, “Until now, you have mocked me and told me lies. Tell me with what you might be bound.” +

+

He said to her, “If you weave the seven locks of my head with the fabric on the loom.” + +

+

She fastened it with the pin, and said to him, “The Philistines are on you, Samson!” He awakened out of his sleep, and plucked away the pin of the beam and the fabric. + +

+

She said to him, “How can you say, ‘I love you,’ when your heart is not with me? You have mocked me these three times, and have not told me where your great strength lies.” + +

+

When she pressed him daily with her words and urged him, his soul was troubled to death. + +He told her all his heart and said to her, “No razor has ever come on my head; for I have been a Nazirite to God from my mother’s womb. If I am shaved, then my strength will go from me and I will become weak, and be like any other man.” + +

+

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 has told me all his heart.” Then the lords of the Philistines came up to her and brought the money in their hand. + +She made him sleep on her knees; and she called for a man and shaved off the seven locks of his head; and she began to afflict him, and his strength went from him. + +She said, “The Philistines are upon you, Samson!” +

+

He awoke out of his sleep, and said, “I will go out as at other times, and shake myself free.” But he didn’t know that Yahweh had departed from him. + +The Philistines laid hold on him and put out his eyes; and they brought him down to Gaza and bound him with fetters of bronze; and he ground at the mill in the prison. + +However, the hair of his head began to grow again after he was shaved. + +

+

The lords of the Philistines gathered together to offer a great sacrifice to Dagon their god, and to rejoice; for they said, “Our god has delivered Samson our enemy into our hand.” + +When the people saw him, they praised their god; for they said, “Our god has delivered our enemy and the destroyer of our country, who has slain many of us, into our hand.” + +

+

When their hearts were merry, they said, “Call for Samson, that he may entertain us.” They called for Samson out of the prison; and he performed before them. They set him between the pillars; + +and Samson said to the boy who held him by the hand, “Allow me to feel the pillars on which the house rests, that I may lean on them.” + +Now the house was full of men and women; and all the lords of the Philistines were there; and there were on the roof about three thousand men and women, who saw while Samson performed. + +Samson called to Yahweh, and said, “Lord Yahweh, remember me, please, and strengthen me, please, only this once, God, that I may be at once avenged of the Philistines for my two eyes.” + +Samson took hold of the two middle pillars on which the house rested and leaned on them, the one with his right hand and the other with his left. + +Samson said, “Let me die with the Philistines!” He bowed himself with all his might; and the house fell on the lords, and on all the people who were in it. So the dead that he killed at his death were more than those who he killed in his life. + +

+

Then his brothers 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 burial site of Manoah his father. He judged Israel twenty years. + +

+ + +

There was a man of the hill country of Ephraim, whose name was Micah. + +He said to his mother, “The eleven hundred pieces of silver that were taken from you, about which you uttered a curse, and also spoke it in my ears—behold, the silver is with me. I took it.” +

+

His mother said, “May Yahweh bless my son!” + +

+

He restored the eleven hundred pieces of silver to his mother, then his mother said, “I most certainly dedicate the silver to Yahweh from my hand for my son, to make a carved image and a molten image. Now therefore I will restore it to you.” + +

+

When he restored the money to his mother, his mother took two hundred pieces of silver, and gave them to a silversmith, who made a carved image and a molten image out of it. It was in the house of Micah. + +

+

The man Micah had a house of gods, and he made an ephod, and teraphim,17:5 +teraphim were household idols that may have been associated with inheritance rights to the household property. and consecrated one of his sons, who became his priest. + +In those days there was no king in Israel. Everyone did that which was right in his own eyes. + +There was a young man out of Bethlehem Judah, of the family of Judah, who was a Levite; and he lived there. + +The man departed out of the city, out of Bethlehem Judah, to live where he could find a place, and he came to the hill country of Ephraim, to the house of Micah, as he traveled. + +Micah said to him, “Where did you come from?” +

+

He said to him, “I am a Levite of Bethlehem Judah, and I am looking for a place to live.” + +

+

Micah said to him, “Dwell with me, and be to me a father and a priest, and I will give you ten pieces of silver per year, a suit of clothing, and your food.” So the Levite went in. + +The Levite was content to dwell with the man; and the young man was to him as one of his sons. + +Micah consecrated the Levite, and the young man became his priest, and was in the house of Micah. + +Then Micah said, “Now I know that Yahweh will do good to me, since I have a Levite as my priest.” + +

+ + +

In those days there was no king in Israel. In those days the tribe of the Danites sought an inheritance to dwell in; for to that day, their inheritance had not fallen to them among the tribes of Israel. + +The children of Dan sent five men of their family from their whole number, men of valor, from Zorah and from Eshtaol, to spy out the land and to search it. They said to them, “Go, explore the land!” +

+

They came to the hill country of Ephraim, to the house of Micah, and lodged there. + +When they were by the house of Micah, they knew the voice of the young man the Levite; so they went over there and said to him, “Who brought you here? What do you do in this place? What do you have here?” + +

+

He said to them, “Thus and thus has Micah dealt with me, and he has hired me, and I have become his priest.” + +

+

They said to him, “Please ask counsel of God, that we may know whether our way which we go shall be prosperous.” + +

+

The priest said to them, “Go in peace. Your way in which you go is before Yahweh.” + +

+

Then the five men departed and came to Laish and saw the people who were there, how they lived in safety, in the way of the Sidonians, quiet and secure; for there was no one in the land possessing authority, that might put them to shame in anything, and they were far from the Sidonians, and had no dealings with anyone else. + +They came to their brothers at Zorah and Eshtaol; and their brothers asked them, “What do you say?” + +

+

They said, “Arise, and let’s go up against them; for we have seen the land, and behold, it is very good. Do you stand still? Don’t be slothful to go and to enter in to possess the land. + +When you go, you will come to an unsuspecting people, and the land is large; for God has given it into your hand, a place where there is no lack of anything that is on the earth.” + +

+

The family of the Danites set out from Zorah and Eshtaol with six hundred men armed with weapons of war. + +They went up and encamped in Kiriath Jearim in Judah. Therefore they call that place Mahaneh Dan to this day. Behold, it is behind Kiriath Jearim. + +They passed from there to the hill country of Ephraim, and came to the house of Micah. + +

+

Then the five men who went to spy out the country of Laish answered and said to their brothers, “Do you know that there is in these houses an ephod, and teraphim,18:14 +teraphim were household idols that may have been associated with inheritance rights to the household property. and a carved image, and a molten image? Now therefore consider what you have to do.” + +They went over there and came to the house of the young Levite man, even to the house of Micah, and asked him how he was doing. + +The six hundred men armed with their weapons of war, who were of the children of Dan, stood by the entrance of the gate. + +The five men who went to spy out the land went up, and came in there, and took the engraved image, the ephod, the teraphim, and the molten image; and the priest stood by the entrance of the gate with the six hundred men armed with weapons of war. + +

+

When these went into Micah’s house, and took the engraved image, the ephod, the teraphim, and the molten image, the priest said to them, “What are you doing?” + +

+

They said to him, “Hold your peace, put your hand on your mouth, and go with us. Be a father and a priest to us. Is it better for you to be priest to the house of one man, or to be priest to a tribe and a family in Israel?” + +

+

The priest’s heart was glad, and he took the ephod, the teraphim, and the engraved image, and went with the people. + +So they turned and departed, and put the little ones, the livestock, and the goods before them. + +When they were a good way from the house of Micah, the men who were in the houses near Micah’s house gathered together and overtook the children of Dan. + +As they called to the children of Dan, they turned their faces, and said to Micah, “What ails you, that you come with such a company?” + +

+

He said, “You have taken away my gods which I made, and the priest, and have gone away! What more do I have? How can you ask me, ‘What ails you?’” + +

+

The children of Dan said to him, “Don’t let your voice be heard among us, lest angry fellows fall on you, and you lose your life, with the lives of your household.” + +

+

The children of Dan went their way; and when Micah saw that they were too strong for him, he turned and went back to his house. + +They took that which Micah had made, and the priest whom he had, and came to Laish, to a people quiet and unsuspecting, and struck them with the edge of the sword; then they burned the city with fire. + +There was no deliverer, because it was far from Sidon, and they had no dealings with anyone else; and it was in the valley that lies by Beth Rehob. They built the city and lived in it. + +They called the name of the city Dan, after the name of Dan their father, who was born to Israel; however the name of the city used to be Laish. + +The children of Dan set up for themselves the engraved image; and Jonathan, the son of Gershom, the son of Moses, and his sons were priests to the tribe of the Danites until the day of the captivity of the land. + +So they set up for themselves Micah’s engraved image which he made, and it remained all the time that God’s house was in Shiloh. + +

+ + +

In those days, when there was no king in Israel, there was a certain Levite living on the farther side of the hill country of Ephraim, who took for himself a concubine out of Bethlehem Judah. + +His concubine played the prostitute against him, and went away from him to her father’s house to Bethlehem Judah, and was there for four months. + +Her husband arose and went after her to speak kindly to her, to bring her again, having his servant with him and a couple of donkeys. She brought him into her father’s house; and when the father of the young lady saw him, he rejoiced to meet him. + +His father-in-law, the young lady’s father, kept him there; and he stayed with him three days. So they ate and drank, and stayed there. + +

+

On the fourth day, they got up early in the morning, and he rose up to depart. The young lady’s father said to his son-in-law, “Strengthen your heart with a morsel of bread, and afterward you shall go your way.” + +So they sat down, ate, and drank, both of them together. Then the young lady’s father said to the man, “Please be pleased to stay all night, and let your heart be merry.” + +The man rose up to depart; but his father-in-law urged him, and he stayed there again. + +He arose early in the morning on the fifth day to depart; and the young lady’s father said, “Please strengthen your heart and stay until the day declines;” and they both ate. + +

+

When the man rose up to depart, he, and his concubine, and his servant, his father-in-law, the young lady’s father, said to him, “Behold, now the day draws toward evening, please stay all night. Behold, the day is ending. Stay here, that your heart may be merry; and tomorrow go on your way early, that you may go home.” + +But the man wouldn’t stay that night, but he rose up and went near Jebus (also called Jerusalem). With him were a couple of saddled donkeys. His concubine also was with him. + +

+

When they were by Jebus, the day was far spent; and the servant said to his master, “Please come and let’s enter into this city of the Jebusites, and stay in it.” + +

+

His master said to him, “We won’t enter into the city of a foreigner that is not of the children of Israel; but we will pass over to Gibeah.” + +He said to his servant, “Come and let’s draw near to one of these places; and we will lodge in Gibeah, or in Ramah.” + +So they passed on and went their way; and the sun went down on them near Gibeah, which belongs to Benjamin. + +They went over there, to go in to stay in Gibeah. He went in, and sat down in the street of the city; for there was no one who took them into his house to stay. + +

+

Behold, an old man came from his work out of the field at evening. Now the man was from the hill country of Ephraim, and he lived in Gibeah; but the men of the place were Benjamites. + +He lifted up his eyes, and saw the wayfaring man in the street of the city; and the old man said, “Where are you going? Where did you come from?” + +

+

He said to him, “We are passing from Bethlehem Judah to the farther side of the hill country of Ephraim. I am from there, and I went to Bethlehem Judah. I am going to Yahweh’s house; and there is no one who has taken me into his house. + +Yet there is both straw and feed for our donkeys; and there is bread and wine also for me, and for your servant, and for the young man who is with your servants. There is no lack of anything.” + +

+

The old man said, “Peace be to you! Just let me supply all your needs, but don’t sleep in the street.” + +So he brought him into his house, and gave the donkeys fodder. Then they washed their feet, and ate and drank. + +As they were making their hearts merry, behold, the men of the city, certain wicked fellows, surrounded the house, beating at the door; and they spoke to the master of the house, the old man, saying, “Bring out the man who came into your house, that we can have sex with him!” + +

+

The man, the master of the house, went out to them, and said to them, “No, my brothers, please don’t act so wickedly; since this man has come into my house, don’t do this folly. + +Behold, here is my virgin daughter and his concubine. I will bring them out now. Humble them, and do with them what seems good to you; but to this man don’t do any such folly.” + +

+

But the men wouldn’t listen to him; so the man grabbed his concubine, and brought her out to them; and they had sex with her, and abused her all night until the morning. When the day began to dawn, they let her go. + +Then the woman came in the dawning of the day, and fell down at the door of the man’s house where her lord was, until it was light. + +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 had fallen down at the door of the house, with her hands on the threshold. + +

+

He said to her, “Get up, and let’s get going!” but no one answered. Then he took her up on the donkey; and the man rose up, and went to his place. + +

+

When he had come into his house, he took a knife and cut up his concubine, and divided her, limb by limb, into twelve pieces, and sent her throughout all the borders of Israel. + +It was so, that all who saw it said, “Such a deed has not been done or seen from the day that the children of Israel came up out of the land of Egypt to this day! Consider it, take counsel, and speak.” + +

+ + +

Then all the children of Israel went out, and the congregation was assembled as one man, from Dan even to Beersheba, with the land of Gilead, to Yahweh at Mizpah. + +The chiefs 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 who drew sword. + +(Now the children of Benjamin heard that the children of Israel had gone up to Mizpah.) The children of Israel said, “Tell us, how did this wickedness happen?” + +

+

The Levite, the husband of the woman who was murdered, answered, “I came into Gibeah that belongs to Benjamin, I and my concubine, to spend the night. + +The men of Gibeah rose against me, and surrounded the house by night. They intended to kill me and they raped my concubine, and she is dead. + +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. + +Behold, you children of Israel, all of you, give here your advice and counsel.” + +

+

All the people arose as one man, saying, “None of us will go to his tent, neither will any of us turn to his house. + +But now this is the thing which we will do to Gibeah: we will go up against it by lot; + +and we will take ten men of one hundred throughout all the tribes of Israel, and one hundred of one thousand, and a thousand out of ten thousand to get food for the people, that they may do, when they come to Gibeah of Benjamin, according to all the folly that the men of Gibeah have done in Israel.” + +So all the men of Israel were gathered against the city, knit together as one man. + +

+

The tribes of Israel sent men through all the tribe of Benjamin, saying, “What wickedness is this that has happened among you? + +Now therefore deliver up the men, the wicked fellows who are in Gibeah, that we may put them to death and put away evil from Israel.” +

+

But Benjamin would not listen to the voice of their brothers, the children of Israel. + +The children of Benjamin gathered themselves together out of the cities to Gibeah, to go out to battle against the children of Israel. + +The children of Benjamin were counted on that day out of the cities twenty-six thousand men who drew the sword, in addition to the inhabitants of Gibeah, who were counted seven hundred chosen men. + +Among all these soldiers there were seven hundred chosen men who were left-handed. Every one of them could sling a stone at a hair and not miss. + +The men of Israel, besides Benjamin, were counted four hundred thousand men who drew sword. All these were men of war. + +

+

The children of Israel arose, went up to Bethel, and asked counsel of God. They asked, “Who shall go up for us first to battle against the children of Benjamin?” +

+

Yahweh said, “Judah first.” + +

+

The children of Israel rose up in the morning and encamped against Gibeah. + +The men of Israel went out to battle against Benjamin; and the men of Israel set the battle in array against them at Gibeah. + +The children of Benjamin came out of Gibeah, and on that day destroyed twenty-two thousand of the Israelite men down to the ground. + +The people, the men of Israel, encouraged themselves, and set the battle again in array in the place where they set themselves in array the first day. + +The children of Israel went up and wept before Yahweh until evening; and they asked of Yahweh, saying, “Shall I again draw near to battle against the children of Benjamin my brother?” +

+

Yahweh said, “Go up against him.” + +

+

The children of Israel came near against the children of Benjamin the second day. + +Benjamin went out 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. + +

+

Then all the children of Israel and all the people went up, and came to Bethel, and wept, and sat there before Yahweh, and fasted that day until evening; then they offered burnt offerings and peace offerings before Yahweh. + +The children of Israel asked Yahweh (for the ark of the covenant of God was there in those days, + +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?” +

+

Yahweh said, “Go up; for tomorrow I will deliver him into your hand.” + +

+

Israel set ambushes all around Gibeah. + +The children of Israel went up against the children of Benjamin on the third day, and set themselves in array against Gibeah, as at other times. + +The children of Benjamin went out against the people, and were drawn away from the city; and they began to strike and kill of the people as at other times, in the highways, of which one goes up to Bethel and the other to Gibeah, in the field, about thirty men of Israel. + +

+

The children of Benjamin said, “They are struck down before us, as at the first.” But the children of Israel said, “Let’s flee, and draw them away from the city to the highways.” + +

+

All the men of Israel rose up out of their place and set themselves in array at Baal Tamar. Then the ambushers of Israel broke out of their place, even out of Maareh Geba. + +Ten thousand chosen men out of all Israel came over against Gibeah, and the battle was severe; but they didn’t know that disaster was close to them. + +Yahweh struck Benjamin before Israel; and the children of Israel destroyed of Benjamin that day twenty-five thousand one hundred men. All these drew the sword. + +So the children of Benjamin saw that they were struck, for the men of Israel yielded to Benjamin because they trusted the ambushers whom they had set against Gibeah. + +The ambushers hurried, and rushed on Gibeah; then the ambushers spread out, and struck all the city with the edge of the sword. + +Now the appointed sign between the men of Israel and the ambushers was that they should make a great cloud of smoke rise up out of the city. + +The men of Israel turned in the battle, and Benjamin began to strike and kill of the men of Israel about thirty persons; for they said, “Surely they are struck down before us, as in the first battle.” + +But when the cloud began to arise up out of the city in a pillar of smoke, the Benjamites looked behind them; and behold, the whole city went up in smoke to the sky. + +The men of Israel turned, and the men of Benjamin were dismayed; for they saw that disaster had come on them. + +Therefore they turned their backs before the men of Israel to the way of the wilderness, but the battle followed hard after them; and those who came out of the cities destroyed them in the middle of it. + +They surrounded the Benjamites, chased them, and trod them down at their resting place, as far as near Gibeah toward the sunrise. + +Eighteen thousand men of Benjamin fell; all these were men of valor. + +They turned and fled toward the wilderness to the rock of Rimmon. They gleaned five thousand men of them in the highways, and followed hard after them to Gidom, and struck two thousand men of them. + +So that all who fell that day of Benjamin were twenty-five thousand men who drew the sword. All these were men of valor. + +But six hundred men turned and fled toward the wilderness to the rock of Rimmon, and stayed in the rock of Rimmon four months. + +The men of Israel turned again on the children of Benjamin, and struck them with the edge of the swordincluding the entire city, the livestock, and all that they found. Moreover they set all the cities which they found on fire. + +

+ + +

Now the men of Israel had sworn in Mizpah, saying, “None of us will give his daughter to Benjamin as a wife.” + +The people came to Bethel and sat there until evening before God, and lifted up their voices, and wept severely. + +They said, “Yahweh, the God of Israel, why has this happened in Israel, that there should be one tribe lacking in Israel today?” + +

+

On the next day, the people rose early and built an altar there, and offered burnt offerings and peace offerings. + +The children of Israel said, “Who is there among all the tribes of Israel who didn’t come up in the assembly to Yahweh?” For they had made a great oath concerning him who didn’t come up to Yahweh to Mizpah, saying, “He shall surely be put to death.” + +The children of Israel grieved for Benjamin their brother, and said, “There is one tribe cut off from Israel today. + +How shall we provide wives for those who remain, since we have sworn by Yahweh that we will not give them of our daughters to wives?” + +They said, “What one is there of the tribes of Israel who didn’t come up to Yahweh to Mizpah?” Behold, no one came from Jabesh Gilead to the camp to the assembly. + +For when the people were counted, behold, there were none of the inhabitants of Jabesh Gilead there. + +The congregation sent twelve thousand of the most valiant men there, and commanded them, saying, “Go and strike the inhabitants of Jabesh Gilead with the edge of the sword, with the women and the little ones. + +This is the thing that you shall do: you shall utterly destroy every male, and every woman who has lain with a man.” + +They found among the inhabitants of Jabesh Gilead four hundred young virgins who had not known man by lying with him; and they brought them to the camp to Shiloh, which is in the land of Canaan. + +

+

The whole congregation sent and spoke to the children of Benjamin who were in the rock of Rimmon, and proclaimed peace to them. + +Benjamin returned at that time; and they gave them the women whom they had saved alive of the women of Jabesh Gilead. There still weren’t enough for them. + +The people grieved for Benjamin, because Yahweh had made a breach in the tribes of Israel. + +Then the elders of the congregation said, “How shall we provide wives for those who remain, since the women are destroyed out of Benjamin?” + +They said, “There must be an inheritance for those who are escaped of Benjamin, that a tribe not be blotted out from Israel. + +However, we may not give them wives of our daughters, for the children of Israel had sworn, saying, ‘Cursed is he who gives a wife to Benjamin.’” + +They said, “Behold, there is a feast of Yahweh from year to year in Shiloh, which is on the north of Bethel, on the east side of the highway that goes up from Bethel to Shechem, and on the south of Lebonah.” + +They commanded the children of Benjamin, saying, “Go and lie in wait in the vineyards, + +and see, and behold, if the daughters of Shiloh come out to dance in the dances, then come out of the vineyards, and each man catch his wife of the daughters of Shiloh, and go to the land of Benjamin. + +It shall be, when their fathers or their brothers come to complain to us, that we will say to them, ‘Grant them graciously to us, because we didn’t take for each man his wife in battle, neither did you give them to them; otherwise you would now be guilty.’” + +

+

The children of Benjamin did so, and took wives for themselves according to their number, of those who danced, whom they carried off. They went and returned to their inheritance, built the cities, and lived in them. + +The children of Israel departed from there at that time, every man to his tribe and to his family, and they each went out from there to his own inheritance. + +In those days there was no king in Israel. Everyone did that which was right in his own eyes. + +

+
+World English Bible (WEB) +Ruth +The Book of Ruth +Ruth +Rut +

The Book of +

+

Ruth +

+ + +

In the days when the judges judged, there was a famine in the land. A certain man of Bethlehem Judah went to live in the country of Moab with his wife and his two sons. + +The name of the man was Elimelech, and the name of his wife Naomi. The names of his two sons were Mahlon and Chilion, Ephrathites of Bethlehem Judah. They came into the country of Moab and lived there. + +Elimelech, Naomi’s husband, died; and she was left with her two sons. + +They took for themselves wives of the women of Moab. The name of the one was Orpah, and the name of the other was Ruth. They lived there about ten years. + +Mahlon and Chilion both died, and the woman was bereaved of her two children and of her husband. + +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 Yahweh1:6 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. had visited his people in giving them bread. + +She went out of the place where she was, and her two daughters-in-law with her. They went on the way to return to the land of Judah. + +Naomi said to her two daughters-in-law, “Go, return each of you to her mother’s house. May Yahweh deal kindly with you, as you have dealt with the dead and with me. + +May Yahweh grant you that you may find rest, each of you in the house of her husband.” +

+

Then she kissed them, and they lifted up their voices, and wept. + +They said to her, “No, but we will return with you to your people.” + +

+

Naomi said, “Go back, my daughters. Why do you want to go with me? Do I still have sons in my womb, that they may be your husbands? + +Go back, my daughters, go your way; for I am too old to have a husband. If I should say, ‘I have hope,’ if I should even have a husband tonight, and should also bear sons, + +would you then wait until they were grown? Would you then refrain from having husbands? No, my daughters, for it grieves me seriously for your sakes, for Yahweh’s hand has gone out against me.” + +

+

They lifted up their voices and wept again; then Orpah kissed her mother-in-law, but Ruth stayed with her. + +She said, “Behold,1:15 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. your sister-in-law has gone back to her people and to her god. Follow your sister-in-law.” + +

+

Ruth said, “Don’t urge me to leave you, and to return from following you, for where you go, I will go; and where you stay, I will stay. Your people will be my people, and your God1:16 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). my God. + +Where you die, I will die, and there I will be buried. May Yahweh do so to me, and more also, if anything but death parts you and me.” + +

+

When Naomi saw that she was determined to go with her, she stopped urging her. + +

+

So they both went until they came to Bethlehem. When they had come to Bethlehem, all the city was excited about them, and they asked, “Is this Naomi?” + +

+

She said to them, “Don’t call me Naomi.1:20 +“Naomi” means “pleasant”. Call me Mara,1:20 +“Mara” means “bitter”. for the Almighty has dealt very bitterly with me. + +I went out full, and Yahweh has brought me home again empty. Why do you call me Naomi, since Yahweh has testified against me, and the Almighty has afflicted me?” + +So Naomi returned, and Ruth the Moabitess, her daughter-in-law, with her, who returned out of the country of Moab. They came to Bethlehem in the beginning of barley harvest. + +

+ + +

Naomi had a relative of her husband’s, a mighty man of wealth, of the family of Elimelech, and his name was Boaz. + +Ruth the Moabitess said to Naomi, “Let me now go to the field, and glean among the ears of grain after him in whose sight I find favor.” +

+

She said to her, “Go, my daughter.” + +She went, and came and gleaned in the field after the reapers; and she happened to come to the portion of the field belonging to Boaz, who was of the family of Elimelech. + +

+

Behold, Boaz came from Bethlehem, and said to the reapers, “May Yahweh be with you.” +

+

They answered him, “May Yahweh bless you.” + +

+

Then Boaz said to his servant who was set over the reapers, “Whose young lady is this?” + +

+

The servant who was set over the reapers answered, “It is the Moabite lady who came back with Naomi out of the country of Moab. + +She said, ‘Please let me glean and gather after the reapers among the sheaves.’ So she came, and has continued even from the morning until now, except that she rested a little in the house.” + +

+

Then Boaz said to Ruth, “Listen, my daughter. Don’t go to glean in another field, and don’t go from here, but stay here close to my maidens. + +Let your eyes be on the field that they reap, and go after them. Haven’t I commanded the young men not to touch you? When you are thirsty, go to the vessels, and drink from that which the young men have drawn.” + +

+

Then she fell on her face and bowed herself to the ground, and said to him, “Why have I found favor in your sight, that you should take knowledge of me, since I am a foreigner?” + +

+

Boaz answered her, “I have been told all about what you have done for your mother-in-law since the death of your husband, and how you have left your father, your mother, and the land of your birth, and have come to a people that you didn’t know before. + +May Yahweh repay your work, and a full reward be given to you from Yahweh, the God of Israel, under whose wings you have come to take refuge.” + +

+

Then she said, “Let me find favor in your sight, my lord, because you have comforted me, and because you have spoken kindly to your servant, though I am not as one of your servants.” + +

+

At meal time Boaz said to her, “Come here, and eat some bread, and dip your morsel in the vinegar.” +

+

She sat beside the reapers, and they passed her parched grain. She ate, was satisfied, and left some of it. + +When she had risen up to glean, Boaz commanded his young men, saying, “Let her glean even among the sheaves, and don’t reproach her. + +Also pull out some for her from the bundles, and leave it. Let her glean, and don’t rebuke her.” + +

+

So she gleaned in the field until evening; and she beat out that which she had gleaned, and it was about an ephah2:17 +1 ephah is about 22 liters or about 2/3 of a bushel of barley. + +She took it up, and went into the city. Then her mother-in-law saw what she had gleaned; and she brought out and gave to her that which she had left after she had enough. + +

+

Her mother-in-law said to her, “Where have you gleaned today? Where have you worked? Blessed be he who noticed you.” +

+

She told her mother-in-law with whom she had worked, “The man’s name with whom I worked today is Boaz.” + +Naomi said to her daughter-in-law, “May he be blessed by Yahweh, who has not abandoned his kindness to the living and to the dead.” Naomi said to her, “The man is a close relative to us, one of our near kinsmen.” + +

+

Ruth the Moabitess said, “Yes, he said to me, ‘You shall stay close to my young men until they have finished all my harvest.’” + +

+

Naomi said to Ruth her daughter-in-law, “It is good, my daughter, that you go out with his maidens, and that they not harm you in any other field.” + +So she stayed close to the maidens of Boaz, to glean to the end of barley harvest and of wheat harvest; and she lived with her mother-in-law. + +

+ + +

Naomi her mother-in-law said to her, “My daughter, shall I not seek rest for you, that it may be well with you? + +Now isn’t Boaz our kinsman, with whose maidens you were? Behold, he will be winnowing barley tonight on the threshing floor. + +Therefore wash yourself, anoint yourself, get dressed, and go down to the threshing floor; but don’t make yourself known to the man until he has finished eating and drinking. + +It shall be, when he lies down, that you shall note the place where he is lying. Then you shall go in, uncover his feet, and lie down. Then he will tell you what to do.” + +

+

She said to her, “All that you say, I will do.” + +She went down to the threshing floor, and did everything that her mother-in-law told her. + +When Boaz had eaten and drunk, and his heart was merry, he went to lie down at the end of the heap of grain. She came softly, uncovered his feet, and lay down. + +At midnight, the man was startled and turned himself; and behold, a woman lay at his feet. + +He said, “Who are you?” +

+

She answered, “I am Ruth your servant. Therefore spread the corner of your garment over your servant; for you are a near kinsman.” + +

+

He said, “You are blessed by Yahweh, my daughter. You have shown more kindness in the latter end than at the beginning, because you didn’t follow young men, whether poor or rich. + +Now, my daughter, don’t be afraid. I will do to you all that you say; for all the city of my people knows that you are a worthy woman. + +Now it is true that I am a near kinsman. However, there is a kinsman nearer than I. + +Stay this night, and in the morning, if he will perform for you the part of a kinsman, good. Let him do the kinsman’s duty. But if he will not do the duty of a kinsman for you, then I will do the duty of a kinsman for you, as Yahweh lives. Lie down until the morning.” + +

+

She lay at his feet until the morning, then she rose up before one could discern another. For he said, “Let it not be known that the woman came to the threshing floor.” + +He said, “Bring the mantle that is on you, and hold it.” She held it; and he measured six measures of barley, and laid it on her; then he went into the city. + +

+

When she came to her mother-in-law, she said, “How did it go, my daughter?” +

+

She told her all that the man had done for her. + +She said, “He gave me these six measures of barley; for he said, ‘Don’t go empty to your mother-in-law.’” + +

+

Then she said, “Wait, my daughter, until you know what will happen; for the man will not rest until he has settled this today.” + +

+ + +

Now Boaz went up to the gate and sat down there. Behold, the near kinsman of whom Boaz spoke came by. Boaz said to him, “Come over here, friend, and sit down!” He came over, and sat down. + +Boaz took ten men of the elders of the city, and said, “Sit down here,” and they sat down. + +He said to the near kinsman, “Naomi, who has come back out of the country of Moab, is selling the parcel of land, which was our brother Elimelech’s. + +I thought I should tell you, saying, ‘Buy it before those who sit here, and before the elders of my people.’ If you will redeem it, redeem it; but if you will not redeem it, then tell me, that I may know. For there is no one to redeem it besides you; and I am after you.” +

+

He said, “I will redeem it.” + +

+

Then Boaz said, “On the day you buy the field from the hand of Naomi, you must buy it also from Ruth the Moabitess, the wife of the dead, to raise up the name of the dead on his inheritance.” + +

+

The near kinsman said, “I can’t redeem it for myself, lest I endanger my own inheritance. Take my right of redemption for yourself; for I can’t redeem it.” + +

+

Now this was the custom in former time in Israel concerning redeeming and concerning exchanging, to confirm all things: a man took off his sandal, and gave it to his neighbor; and this was the way of formalizing transactions in Israel. + +So the near kinsman said to Boaz, “Buy it for yourself,” then he took off his sandal. + +

+

Boaz said to the elders and to all the people, “You are witnesses today, that I have bought all that was Elimelech’s, and all that was Chilion’s and Mahlon’s, from the hand of Naomi. + +Moreover, Ruth the Moabitess, the wife of Mahlon, I have purchased to be my wife, to raise up the name of the dead on his inheritance, that the name of the dead may not be cut off from among his brothers and from the gate of his place. You are witnesses today.” + +

+

All the people who were in the gate, and the elders, said, “We are witnesses. May Yahweh make the woman who has come into your house like Rachel and like Leah, which both built the house of Israel; and treat you worthily in Ephrathah, and be famous in Bethlehem. + +Let your house be like the house of Perez, whom Tamar bore to Judah, of the offspring4:12 +or, seed which Yahweh will give you by this young woman.” + +

+

So Boaz took Ruth and she became his wife; and he went in to her, and Yahweh enabled her to conceive, and she bore a son. + +The women said to Naomi, “Blessed be Yahweh, who has not left you today without a near kinsman. Let his name be famous in Israel. + +He shall be to you a restorer of life and sustain you in your old age; for your daughter-in-law, who loves you, who is better to you than seven sons, has given birth to him.” + +Naomi took the child, laid him in her bosom, and became nurse to him. + +The women, her neighbors, gave him a name, saying, “A son is born to Naomi”. They named him Obed. He is the father of Jesse, the father of David. + +

+

Now this is the history of the generations of Perez: Perez became the father of Hezron, + +and Hezron became the father of Ram, and Ram became the father of Amminadab, + +and Amminadab became the father of Nahshon, and Nahshon became the father of Salmon, + +and Salmon became the father of Boaz, and Boaz became the father of Obed, + +and Obed became the father of Jesse, and Jesse became the father of David. + +

+
+World English Bible (WEB) +1 Samuel +The First Book of Samuel +1 Samuel +1Sa +

The First Book of Samuel +

+ + +

Now there was a certain man of Ramathaim Zophim, of the hill country of Ephraim, and his name was Elkanah, the son of Jeroham, the son of Elihu, the son of Tohu, the son of Zuph, an Ephraimite. + +He had two wives. The name of one was Hannah, and the name of the other Peninnah. Peninnah had children, but Hannah had no children. + +This man went up out of his city from year to year to worship and to sacrifice to Yahweh1:3 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. of Armies in Shiloh. The two sons of Eli, Hophni and Phinehas, priests to Yahweh, were there. + +When the day came that Elkanah sacrificed, he gave portions to Peninnah his wife and to all her sons and her daughters; + +but he gave a double portion to Hannah, for he loved Hannah, but Yahweh had shut up her womb. + +Her rival provoked her severely, to irritate her, because Yahweh had shut up her womb. + +So year by year, when she went up to Yahweh’s house, her rival provoked her. Therefore she wept, and didn’t eat. + +Elkanah her husband said to her, “Hannah, why do you weep? Why don’t you eat? Why is your heart grieved? Am I not better to you than ten sons?” + +

+

So Hannah rose up after they had finished eating and drinking in Shiloh. Now Eli the priest was sitting on his seat by the doorpost of Yahweh’s temple. + +She was in bitterness of soul, and prayed to Yahweh, weeping bitterly. + +She vowed a vow, and said, “Yahweh of Armies, if you will indeed look at the affliction of your servant and remember me, and not forget your servant, but will give to your servant a boy, then I will give him to Yahweh all the days of his life, and no razor shall come on his head.” + +

+

As she continued praying before Yahweh, Eli saw her mouth. + +Now Hannah spoke in her heart. Only her lips moved, but her voice was not heard. Therefore Eli thought she was drunk. + +Eli said to her, “How long will you be drunk? Get rid of your wine!” + +

+

Hannah answered, “No, my lord, I am a woman of a sorrowful spirit. I have not been drinking wine or strong drink, but I poured out my soul before Yahweh. + +Don’t consider your servant a wicked woman; for I have been speaking out of the abundance of my complaint and my provocation.” + +

+

Then Eli answered, “Go in peace; and may the God1:17 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). of Israel grant your petition that you have asked of him.” + +

+

She said, “Let your servant find favor in your sight.” So the woman went her way and ate; and her facial expression wasn’t sad any more. + +

+

They rose up in the morning early and worshiped Yahweh, then returned and came to their house to Ramah. Then Elkanah knew Hannah his wife; and Yahweh remembered her. + +

+

When the time had come, Hannah conceived, and bore a son; and she named him Samuel,1:20 +Samuel sounds like the Hebrew for “heard by God.” saying, “Because I have asked him of Yahweh.” + +

+

The man Elkanah, and all his house, went up to offer to Yahweh the yearly sacrifice and his vow. + +But Hannah didn’t go up, for she said to her husband, “Not until the child is weaned; then I will bring him, that he may appear before Yahweh, and stay there forever.” + +

+

Elkanah her husband said to her, “Do what seems good to you. Wait until you have weaned him; only may Yahweh establish his word.” +

+

So the woman waited and nursed her son until she weaned him. + +When she had weaned him, she took him up with her, with three bulls, and one ephah1:24 +1 ephah is about 22 liters or about 2/3 of a bushel of meal, and a container of wine, and brought him to Yahweh’s house in Shiloh. The child was young. + +They killed the bull, and brought the child to Eli. + +She said, “Oh, my lord, as your soul lives, my lord, I am the woman who stood by you here, praying to Yahweh. + +I prayed for this child, and Yahweh has given me my petition which I asked of him. + +Therefore I have also given him to Yahweh. As long as he lives he is given to Yahweh.” He worshiped Yahweh there. + +

+ + +

Hannah prayed, and said, +

+My heart exults in Yahweh! + +My horn is exalted in Yahweh. + +My mouth is enlarged over my enemies, + +because I rejoice in your salvation. + + +There is no one as holy as Yahweh, + +for there is no one besides you, + +nor is there any rock like our God. + + + +“Don’t keep talking so exceedingly proudly. + +Don’t let arrogance come out of your mouth, + +for Yahweh is a God of knowledge. + +By him actions are weighed. + + + +“The bows of the mighty men are broken. + +Those who stumbled are armed with strength. + + +Those who were full have hired themselves out for bread. + +Those who were hungry are satisfied. + +Yes, the barren has borne seven. + +She who has many children languishes. + + + +Yahweh kills and makes alive. + +He brings down to Sheol2:6 +Sheol is the place of the dead. and brings up. + + +Yahweh makes poor and makes rich. + +He brings low, he also lifts up. + + +He raises up the poor out of the dust. + +He lifts up the needy from the dunghill + +to make them sit with princes + +and inherit the throne of glory. + +For the pillars of the earth are Yahweh’s. + +He has set the world on them. + + +He will keep the feet of his holy ones, + +but the wicked will be put to silence in darkness; + +for no man will prevail by strength. + + +Those who strive with Yahweh shall be broken to pieces. + +He will thunder against them in the sky. + + +Yahweh will judge the ends of the earth. + +He will give strength to his king, + +and exalt the horn of his anointed.” + + +

Elkanah went to Ramah to his house. The child served Yahweh before Eli the priest. + +

+

Now the sons of Eli were wicked men. They didn’t know Yahweh. + +The custom of the priests with the people was that when anyone offered a sacrifice, the priest’s servant came while the meat was boiling, with a fork of three teeth in his hand; + +and he stabbed it into the pan, or kettle, or cauldron, or pot. The priest took all that the fork brought up for himself. They did this to all the Israelites who came there to Shiloh. + +Yes, before they burned the fat, the priest’s servant came, and said to the man who sacrificed, “Give meat to roast for the priest; for he will not accept boiled meat from you, but raw.” + +

+

If the man said to him, “Let the fat be burned first, and then take as much as your soul desires;” then he would say, “No, but you shall give it to me now; and if not, I will take it by force.” + +The sin of the young men was very great before Yahweh; for the men despised Yahweh’s offering. + +But Samuel ministered before Yahweh, being a child, clothed with a linen ephod. + +Moreover his mother made him a little robe, and brought it to him from year to year when she came up with her husband to offer the yearly sacrifice. + +Eli blessed Elkanah and his wife, and said, “May Yahweh give you offspring2:20 +or, seed from this woman for the petition which was asked of Yahweh.” Then they went to their own home. + +Yahweh visited Hannah, and she conceived and bore three sons and two daughters. The child Samuel grew before Yahweh. + +

+

Now Eli was very old; and he heard all that his sons did to all Israel, and how that they slept with the women who served at the door of the Tent of Meeting. + +He said to them, “Why do you do such things? For I hear of your evil dealings from all these people. + +No, my sons; for it is not a good report that I hear! You make Yahweh’s people disobey. + +If one man sins against another, God will judge him; but if a man sins against Yahweh, who will intercede for him?” Notwithstanding, they didn’t listen to the voice of their father, because Yahweh intended to kill them. + +

+

The child Samuel grew on, and increased in favor both with Yahweh and also with men. + +

+

A man of God came to Eli and said to him, “Yahweh says, ‘Did I reveal myself to the house of your father when they were in Egypt in bondage to Pharaoh’s house? + +Didn’t I choose him out of all the tribes of Israel to be my priest, to go up to my altar, to burn incense, to wear an ephod before me? Didn’t I give to the house of your father all the offerings of the children of Israel made by fire? + +Why do you kick at my sacrifice and at my offering, which I have commanded in my habitation, and honor your sons above me, to make yourselves fat with the best of all the offerings of Israel my people?’ + +Therefore Yahweh, the God of Israel, says, ‘I said indeed that your house and the house of your father should walk before me forever.’ But now Yahweh says, ‘Far be it from me; for those who honor me I will honor, and those who despise me will be cursed. + +Behold,2:31 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. the days come that I will cut off your arm and the arm of your father’s house, that there will not be an old man in your house. + +You will see the affliction of my habitation, in all the wealth which I will give Israel. There shall not be an old man in your house forever. + +The man of yours whom I don’t cut off from my altar will consume your eyes2:33 +or, blind your eyes with tears and grieve your heart. All the increase of your house will die in the flower of their age. + +This will be the sign to you that will come on your two sons, on Hophni and Phinehas: in one day they will both die. + +I will raise up a faithful priest for myself who will do according to that which is in my heart and in my mind. I will build him a sure house. He will walk before my anointed forever. + +It will happen that everyone who is left in your house will come and bow down to him for a piece of silver and a loaf of bread, and will say, “Please put me into one of the priests’ offices, that I may eat a morsel of bread.”’” + +

+ + +

The child Samuel ministered to Yahweh before Eli. Yahweh’s word was rare in those days. There were not many visions, then. + +At that time, when Eli was laid down in his place (now his eyes had begun to grow dim, so that he could not see), + +and God’s lamp hadn’t yet gone out, and Samuel had laid down in Yahweh’s temple where God’s ark was, + +Yahweh called Samuel. He said, “Here I am.” + +

+

He ran to Eli and said, “Here I am; for you called me.” +

+

He said, “I didn’t call. Lie down again.” +

+

He went and lay down. + +Yahweh called yet again, “Samuel!” +

+

Samuel arose and went to Eli and said, “Here I am; for you called me.” +

+

He answered, “I didn’t call, my son. Lie down again.” + +Now Samuel didn’t yet know Yahweh, neither was Yahweh’s word yet revealed to him. + +Yahweh called Samuel again the third time. He arose and went to Eli and said, “Here I am; for you called me.” +

+

Eli perceived that Yahweh had called the child. + +Therefore Eli said to Samuel, “Go, lie down. It shall be, if he calls you, that you shall say, ‘Speak, Yahweh; for your servant hears.’” So Samuel went and lay down in his place. + +Yahweh came, and stood, and called as at other times, “Samuel! Samuel!” +

+

Then Samuel said, “Speak; for your servant hears.” + +

+

Yahweh said to Samuel, “Behold, I will do a thing in Israel at which both the ears of everyone who hears it will tingle. + +In that day I will perform against Eli all that I have spoken concerning his house, from the beginning even to the end. + +For I have told him that I will judge his house forever for the iniquity which he knew, because his sons brought a curse on themselves, and he didn’t restrain them. + +Therefore I have sworn to the house of Eli that the iniquity of Eli’s house shall not be removed with sacrifice or offering forever.” + +

+

Samuel lay until the morning, and opened the doors of Yahweh’s house. Samuel was afraid to show Eli the vision. + +Then Eli called Samuel and said, “Samuel, my son!” +

+

He said, “Here I am.” + +

+

He said, “What is the thing that he has spoken to you? Please don’t hide it from me. God do so to you, and more also, if you hide anything from me of all the things that he spoke to you.” + +

+

Samuel told him every bit, and hid nothing from him. +

+

He said, “It is Yahweh. Let him do what seems good to him.” + +

+

Samuel grew, and Yahweh was with him and let none of his words fall to the ground. + +All Israel from Dan even to Beersheba knew that Samuel was established to be a prophet of Yahweh. + +Yahweh appeared again in Shiloh; for Yahweh revealed himself to Samuel in Shiloh by Yahweh’s word. + +

+ + +

The word of Samuel came to all Israel. +

+

Now Israel went out against the Philistines to battle, and encamped beside Ebenezer; and the Philistines encamped in Aphek. + +The Philistines put themselves in array against Israel. When they joined battle, Israel was defeated by the Philistines, who killed about four thousand men of the army in the field. + +When the people had come into the camp, the elders of Israel said, “Why has Yahweh defeated us today before the Philistines? Let’s get the ark of Yahweh’s covenant out of Shiloh and bring it to us, that it may come among us and save us out of the hand of our enemies.” + +

+

So the people sent to Shiloh, and they brought from there the ark of the covenant of Yahweh of Armies, who sits above the cherubim; and the two sons of Eli, Hophni and Phinehas, were there with the ark of the covenant of God. + +When the ark of Yahweh’s covenant came into the camp, all Israel shouted with a great shout, so that the earth resounded. + +When the Philistines heard the noise of the shout, they said, “What does the noise of this great shout in the camp of the Hebrews mean?” They understood that Yahweh’s ark had come into the camp. + +The Philistines were afraid, for they said, “God has come into the camp.” They said, “Woe to us! For there has not been such a thing before. + +Woe to us! Who shall deliver us out of the hand of these mighty gods? These are the gods that struck the Egyptians with all kinds of plagues in the wilderness. + +Be strong and behave like men, O you Philistines, that you not be servants to the Hebrews, as they have been to you. Strengthen yourselves like men, and fight!” + +The Philistines fought, and Israel was defeated, and each man fled to his tent. There was a very great slaughter; for thirty thousand footmen of Israel fell. + +God’s ark was taken; and the two sons of Eli, Hophni and Phinehas, were slain. + +

+

A man of Benjamin ran out of the army and came to Shiloh the same day, with his clothes torn and with dirt on his head. + +When he came, behold, Eli was sitting on his seat by the road watching, for his heart trembled for God’s ark. When the man came into the city and told about it, all the city cried out. + +When Eli heard the noise of the crying, he said, “What does the noise of this tumult mean?” +

+

The man hurried, and came and told Eli. + +Now Eli was ninety-eight years old. His eyes were set, so that he could not see. + +The man said to Eli, “I am he who came out of the army, and I fled today out of the army.” +

+

He said, “How did the matter go, my son?” + +

+

He who brought the news answered, “Israel has fled before the Philistines, and there has been also a great slaughter among the people. Your two sons also, Hophni and Phinehas, are dead, and God’s ark has been captured.” + +

+

When he made mention of God’s ark, Eli fell from off his seat backward by the side of the gate; and his neck broke, and he died, for he was an old man and heavy. He had judged Israel forty years. + +

+

His daughter-in-law, Phinehas’ wife, was with child, near to giving birth. When she heard the news that God’s ark was taken and that her father-in-law and her husband were dead, she bowed herself and gave birth; for her pains came on her. + +About the time of her death the women who stood by her said to her, “Don’t be afraid, for you have given birth to a son.” But she didn’t answer, neither did she regard it. + +She named the child Ichabod,4:21 +“Ichabod” means “no glory”. saying, “The glory has departed from Israel!” because God’s ark was taken, and because of her father-in-law and her husband. + +She said, “The glory has departed from Israel; for God’s ark has been taken.” + +

+ + +

Now the Philistines had taken God’s ark, and they brought it from Ebenezer to Ashdod. + +The Philistines took God’s ark, and brought it into the house of Dagon and set it by Dagon. + +When the people of Ashdod arose early on the next day, behold, Dagon had fallen on his face to the ground before Yahweh’s ark. They took Dagon and set him in his place again. + +When they arose early on the following morning, behold, Dagon had fallen on his face to the ground before Yahweh’s ark; and the head of Dagon and both the palms of his hands were cut off on the threshold. Only Dagon’s torso was intact. + +Therefore neither the priests of Dagon nor any who come into Dagon’s house step on the threshold of Dagon in Ashdod to this day. + +But Yahweh’s hand was heavy on the people of Ashdod, and he destroyed them and struck them with tumors, even Ashdod and its borders. + +

+

When the men of Ashdod saw that it was so, they said, “The ark of the God of Israel shall not stay with us, for his hand is severe on us and on Dagon our god.” + +They sent therefore and gathered together all the lords of the Philistines, and said, “What shall we do with the ark of the God of Israel?” +

+

They answered, “Let the ark of the God of Israel be carried over to Gath.” They carried the ark of the God of Israel there. + +It was so, that after they had carried it there, Yahweh’s hand was against the city with a very great confusion; and he struck the men of the city, both small and great, so that tumors broke out on them. + +So they sent God’s ark to Ekron. +

+

As God’s ark came to Ekron, the Ekronites cried out, saying, “They have brought the ark of the God of Israel here to us, to kill us and our people.” + +They sent therefore and gathered together all the lords of the Philistines, and they said, “Send the ark of the God of Israel away, and let it go again to its own place, that it not kill us and our people.” For there was a deadly panic throughout all the city. The hand of God was very heavy there. + +The men who didn’t die were struck with the tumors; and the cry of the city went up to heaven. + +

+ + +

Yahweh’s ark was in the country of the Philistines seven months. + +The Philistines called for the priests and the diviners, saying, “What shall we do with Yahweh’s ark? Show us how we should send it to its place.” + +

+

They said, “If you send away the ark of the God of Israel, don’t send it empty; but by all means return a trespass offering to him. Then you will be healed, and it will be known to you why his hand is not removed from you.” + +

+

Then they said, “What should the trespass offering be which we shall return to him?” +

+

They said, “Five golden tumors and five golden mice, for the number of the lords of the Philistines; for one plague was on you all, and on your lords. + +Therefore you shall make images of your tumors and images of your mice that mar the land; and you shall give glory to the God of Israel. Perhaps he will release his hand from you, from your gods, and from your land. + +Why then do you harden your hearts as the Egyptians and Pharaoh hardened their hearts? When he had worked wonderfully among them, didn’t they let the people go, and they departed? + +

+

Now therefore take and prepare yourselves a new cart and two milk cows on which there has come no yoke; and tie the cows to the cart, and bring their calves home from them; + +and take Yahweh’s ark and lay it on the cart. Put the jewels of gold, which you return him for a trespass offering, in a box by its side; and send it away, that it may go. + +Behold, if it goes up by the way of its own border to Beth Shemesh, then he has done us this great evil; but if not, then we shall know that it is not his hand that struck us. It was a chance that happened to us.” + +

+

The men did so, and took two milk cows and tied them to the cart, and shut up their calves at home. + +They put Yahweh’s ark on the cart, and the box with the golden mice and the images of their tumors. + +The cows took the straight way by the way to Beth Shemesh. They went along the highway, lowing as they went, and didn’t turn away to the right hand or to the left; and the lords of the Philistines went after them to the border of Beth Shemesh. + +The people of Beth Shemesh were reaping their wheat harvest in the valley; and they lifted up their eyes and saw the ark, and rejoiced to see it. + +The cart came into the field of Joshua of Beth Shemesh, and stood there, where there was a great stone. Then they split the wood of the cart and offered up the cows for a burnt offering to Yahweh. + +The Levites took down Yahweh’s ark and the box that was with it, in which the jewels of gold were, and put them on the great stone; and the men of Beth Shemesh offered burnt offerings and sacrificed sacrifices the same day to Yahweh. + +When the five lords of the Philistines had seen it, they returned to Ekron the same day. + +These are the golden tumors which the Philistines returned for a trespass offering to Yahweh: for Ashdod one, for Gaza one, for Ashkelon one, for Gath one, for Ekron one; + +and the golden mice, according to the number of all the cities of the Philistines belonging to the five lords, both of fortified cities and of country villages, even to the great stone on which they set down Yahweh’s ark. That stone remains to this day in the field of Joshua of Beth Shemesh. + +He struck of the men of Beth Shemesh, because they had looked into Yahweh’s ark, he struck fifty thousand seventy of the men. Then the people mourned, because Yahweh had struck the people with a great slaughter. + +The men of Beth Shemesh said, “Who is able to stand before Yahweh, this holy God? To whom shall he go up from us?” + +

+

They sent messengers to the inhabitants of Kiriath Jearim, saying, “The Philistines have brought back Yahweh’s ark. Come down and bring it up to yourselves.” + +

+ + +

The men of Kiriath Jearim came and took Yahweh’s ark, and brought it into Abinadab’s house on the hill, and consecrated Eleazar his son to keep Yahweh’s ark. + +From the day that the ark stayed in Kiriath Jearim, the time was longfor it was twenty years; and all the house of Israel lamented after Yahweh. + +Samuel spoke to all the house of Israel, saying, “If you are returning to Yahweh with all your heart, then put away the foreign gods and the Ashtaroth from among you, and direct your hearts to Yahweh, and serve him only; and he will deliver you out of the hand of the Philistines.” + +Then the children of Israel removed the Baals and the Ashtaroth, and served Yahweh only. + +Samuel said, “Gather all Israel to Mizpah, and I will pray to Yahweh for you.” + +They gathered together to Mizpah, and drew water, and poured it out before Yahweh, and fasted on that day, and said there, “We have sinned against Yahweh.” Samuel judged the children of Israel in Mizpah. + +

+

When the Philistines heard that the children of Israel were gathered together at Mizpah, the lords of the Philistines went up against Israel. When the children of Israel heard it, they were afraid of the Philistines. + +The children of Israel said to Samuel, “Don’t stop crying to Yahweh our God for us, that he will save us out of the hand of the Philistines.” + +Samuel took a suckling lamb, and offered it for a whole burnt offering to Yahweh. Samuel cried to Yahweh for Israel, and Yahweh answered him. + +As Samuel was offering up the burnt offering, the Philistines came near to battle against Israel; but Yahweh thundered with a great thunder on that day on the Philistines and confused them; and they were struck down before Israel. + +The men of Israel went out of Mizpah and pursued the Philistines, and struck them until they came under Beth Kar. + +

+

Then Samuel took a stone and set it between Mizpah and Shen, and called its name Ebenezer,7:12 +“Ebenezer” means “stone of help”. saying, “Yahweh helped us until now.” + +So the Philistines were subdued, and they stopped coming within the border of Israel. Yahweh’s hand was against the Philistines all the days of Samuel. + +

+

The cities which the Philistines had taken from Israel were restored to Israel, from Ekron even to Gath; and Israel recovered its border out of the hand of the Philistines. There was peace between Israel and the Amorites. + +

+

Samuel judged Israel all the days of his life. + +He went from year to year in a circuit to Bethel, Gilgal, and Mizpah; and he judged Israel in all those places. + +His return was to Ramah, for his house was there, and he judged Israel there; and he built an altar to Yahweh there. + +

+ + +

When Samuel was old, he made his sons judges over Israel. + +Now the name of his firstborn was Joel, and the name of his second, Abijah. They were judges in Beersheba. + +His sons didn’t walk in his ways, but turned away after dishonest gain, took bribes, and perverted justice. + +

+

Then all the elders of Israel gathered themselves together and came to Samuel to Ramah. + +They said to him, “Behold, you are old, and your sons don’t walk in your ways. Now make us a king to judge us like all the nations.” + +But the thing displeased Samuel when they said, “Give us a king to judge us.” +

+

Samuel prayed to Yahweh. + +Yahweh said to Samuel, “Listen to the voice of the people in all that they tell you; for they have not rejected you, but they have rejected me as the king over them. + +According to all the works which they have done since the day that I brought them up out of Egypt even to this day, in that they have forsaken me and served other gods, so they also do to you. + +Now therefore, listen to their voice. However, you shall protest solemnly to them, and shall show them the way of the king who will reign over them.” + +

+

Samuel told all Yahweh’s words to the people who asked him for a king. + +He said, “This will be the way of the king who shall reign over you: he will take your sons and appoint them as his servants, for his chariots and to be his horsemen; and they will run before his chariots. + +He will appoint them to him for captains of thousands and captains of fifties; and he will assign some to plow his ground and to reap his harvest; and to make his instruments of war and the instruments of his chariots. + +He will take your daughters to be perfumers, to be cooks, and to be bakers. + +He will take your fields, your vineyards, and your olive groves, even your best, and give them to his servants. + +He will take one tenth of your seed and of your vineyards, and give it to his officers and to his servants. + +He will take your male servants, your female servants, your best young men, and your donkeys, and assign them to his own work. + +He will take one tenth of your flocks; and you will be his servants. + +You will cry out in that day because of your king whom you will have chosen for yourselves; and Yahweh will not answer you in that day.” + +

+

But the people refused to listen to the voice of Samuel; and they said, “No, but we will have a king over us, + +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.” + +

+

Samuel heard all the words of the people, and he rehearsed them in the ears of Yahweh. + +Yahweh said to Samuel, “Listen to their voice, and make them a king.” +

+

Samuel said to the men of Israel, “Everyone go to your own city.” + +

+ + +

Now there was a man of Benjamin, whose name was Kish the son of Abiel, the son of Zeror, the son of Becorath, the son of Aphiah, the son of a Benjamite, a mighty man of valor. + +He had a son whose name was Saul, an impressive young man; and there was not among the children of Israel a more handsome person than he. From his shoulders and upward he was taller than any of the people. + +

+

The donkeys of Kish, Saul’s father, were lost. Kish said to Saul his son, “Now take one of the servants with you, and arise, go look for the donkeys.” + +He passed through the hill country of Ephraim, and passed through the land of Shalishah, but they didn’t find them. Then they passed through the land of Shaalim, and they weren’t there. Then he passed through the land of the Benjamites, but they didn’t find them. + +

+

When they had come to the land of Zuph, Saul said to his servant who was with him, “Come! Let’s return, lest my father stop caring about the donkeys and be anxious for us.” + +

+

The servant said to him, “Behold now, there is a man of God in this city, and he is a man who is held in honor. All that he says surely happens. Now let’s go there. Perhaps he can tell us which way to go.” + +

+

Then Saul said to his servant, “But behold, if we go, what should we bring the man? For the bread is spent in our sacks, and there is not a present to bring to the man of God. What do we have?” + +

+

The servant answered Saul again and said, “Behold, I have in my hand the fourth part of a shekel9:8 +A shekel is about 10 grams or about 0.35 ounces, so 1/4 shekel would be a small coin of about 2.5 grams. of silver. I will give that to the man of God, to tell us our way.” + +(In earlier times in Israel, when a man went to inquire of God, he said, “Come! Let’s go to the seer;” for he who is now called a prophet was before called a seer.) + +

+

Then Saul said to his servant, “Well said. Come! Let’s go.” So they went to the city where the man of God was. + +As they went up the ascent to the city, they found young maidens going out to draw water, and said to them, “Is the seer here?” + +

+

They answered them and said, “He is. Behold, he is before you. Hurry now, for he has come today into the city; for the people have a sacrifice today in the high place. + +As soon as you have come into the city, you will immediately find him before he goes up to the high place to eat; for the people will not eat until he comes, because he blesses the sacrifice. Afterwards those who are invited eat. Now therefore go up; for at this time you will find him.” + +

+

They went up to the city. As they came within the city, behold, Samuel came out toward them to go up to the high place. + +

+

Now Yahweh had revealed to Samuel a day before Saul came, saying, + +Tomorrow about this time I will send you a man out of the land of Benjamin, and you shall anoint him to be prince over my people Israel. He will save my people out of the hand of the Philistines; for I have looked upon my people, because their cry has come to me.” + +

+

When Samuel saw Saul, Yahweh said to him, “Behold, the man of whom I spoke to you! He will have authority over my people.” + +

+

Then Saul approached Samuel in the gateway, and said, “Please tell me where the seer’s house is.” + +

+

Samuel answered Saul and said, “I am the seer. Go up before me to the high place, for you are to eat with me today. In the morning I will let you go and will tell you all that is in your heart. + +As for your donkeys who were lost three days ago, don’t set your mind on them, for they have been found. For whom does all Israel desire? Is it not you and all your father’s house?” + +

+

Saul answered, “Am I not a Benjamite, of the smallest of the tribes of Israel? And my family the least of all the families of the tribe of Benjamin? Why then do you speak to me like this?” + +

+

Samuel took Saul and his servant and brought them into the guest room, and made them sit in the best place among those who were invited, who were about thirty persons. + +Samuel said to the cook, “Bring the portion which I gave you, of which I said to you, ‘Set it aside.’” + +The cook took up the thigh, and that which was on it, and set it before Saul. Samuel said, “Behold, that which has been reserved! Set it before yourself and eat; because it has been kept for you for the appointed time, for I said, ‘I have invited the people.’” So Saul ate with Samuel that day. + +

+

When they had come down from the high place into the city, he talked with Saul on the housetop. + +They arose early; and about daybreak, Samuel called to Saul on the housetop, saying, “Get up, that I may send you away.” Saul arose, and they both went outside, he and Samuel, together. + +As they were going down at the end of the city, Samuel said to Saul, “Tell the servant to go on ahead of us.” He went ahead, then Samuel said, “But stand still first, that I may cause you to hear God’s message.” + +

+ + +

Then Samuel took the vial of oil and poured it on his head, then kissed him and said, “Hasn’t Yahweh anointed you to be prince over his inheritance? + +When you have departed from me today, then you will find two men by Rachel’s tomb, on the border of Benjamin at Zelzah. They will tell you, ‘The donkeys which you went to look for have been found; and behold, your father has stopped caring about the donkeys and is anxious for you, saying, “What shall I do for my son?”’ + +

+

Then you will go on forward from there, and you will come to the oak of Tabor. Three men will meet you there going up to God to Bethel: one carrying three young goats, and another carrying three loaves of bread, and another carrying a container of wine. + +They will greet you and give you two loaves of bread, which you shall receive from their hand. + +

+

After that you will come to the hill of God, where the garrison of the Philistines is; and it will happen, when you have come there to the city, that you will meet a band of prophets coming down from the high place with a lute, a tambourine, a pipe, and a harp before them; and they will be prophesying. + +Then Yahweh’s Spirit will come mightily on you, then you will prophesy with them and will be turned into another man. + +Let it be, when these signs have come to you, that you do what is appropriate for the occasion; for God is with you. + +

+

Go down ahead of me to Gilgal; and behold, I will come down to you to offer burnt offerings and to sacrifice sacrifices of peace offerings. Wait seven days, until I come to you and show you what you are to do.” + +It was so, that when he had turned his back to go from Samuel, God gave him another heart; and all those signs happened that day. + +When they came there to the hill, behold, a band of prophets met him; and the Spirit of God came mightily on him, and he prophesied among them. + +When all who knew him before saw that, behold, he prophesied with the prophets, then the people said to one another, “What is this that has come to the son of Kish? Is Saul also among the prophets?” + +

+

One from the same place answered, “Who is their father?” Therefore it became a proverb, “Is Saul also among the prophets?” + +When he had finished prophesying, he came to the high place. + +

+

Saul’s uncle said to him and to his servant, “Where did you go?” +

+

He said, “To seek the donkeys. When we saw that they were not found, we came to Samuel.” + +

+

Saul’s uncle said, “Please tell me what Samuel said to you.” + +

+

Saul said to his uncle, “He told us plainly that the donkeys were found.” But concerning the matter of the kingdom, of which Samuel spoke, he didn’t tell him. + +

+

Samuel called the people together to Yahweh to Mizpah; + +and he said to the children of Israel, “Yahweh, the God of Israel, saysI brought Israel up out of Egypt and I delivered you out of the hand of the Egyptians, and out of the hand of all the kingdoms that oppressed you.’ + +But you have today rejected your God, who himself saves you out of all your calamities and your distresses; and you have said to him, ‘No! Set a king over us!’ Now therefore present yourselves before Yahweh by your tribes and by your thousands.” + +

+

So Samuel brought all the tribes of Israel near, and the tribe of Benjamin was chosen. + +He brought the tribe of Benjamin near by their families and the family of the Matrites was chosen. Then Saul the son of Kish was chosen; but when they looked for him, he could not be found. + +Therefore they asked of Yahweh further, “Is there yet a man to come here?” +

+

Yahweh answered, “Behold, he has hidden himself among the baggage.” + +

+

They ran and got him there. When he stood among the people, he was higher than any of the people from his shoulders and upward. + +Samuel said to all the people, “Do you see him whom Yahweh has chosen, that there is no one like him among all the people?” +

+

All the people shouted and said, “Long live the king!” + +

+

Then Samuel told the people the regulations of the kingdom, and wrote it in a book and laid it up before Yahweh. Samuel sent all the people away, every man to his house. + +Saul also went to his house in Gibeah; and the army went with him, whose hearts God had touched. + +But certain worthless fellows said, “How could this man save us?” They despised him, and brought him no tribute. But he held his peace. + +

+ + +

Then Nahash the Ammonite came up and encamped against Jabesh Gilead; and all the men of Jabesh said to Nahash, “Make a covenant with us, and we will serve you.” + +

+

Nahash the Ammonite said to them, “On this condition I will make it with you, that all your right eyes be gouged out. I will make this dishonor all Israel.” + +

+

The elders of Jabesh said to him, “Give us seven days, that we may send messengers to all the borders of Israel; and then, if there is no one to save us, we will come out to you.” + +Then the messengers came to Gibeah of Saul, and spoke these words in the ears of the people, then all the people lifted up their voice and wept. + +

+

Behold, Saul came following the oxen out of the field; and Saul said, “What ails the people that they weep?” They told him the words of the men of Jabesh. + +God’s Spirit came mightily on Saul when he heard those words, and his anger burned hot. + +He took a yoke of oxen and cut them in pieces, then sent them throughout all the borders of Israel by the hand of messengers, saying, “Whoever doesn’t come out after Saul and after Samuel, so shall it be done to his oxen.” The dread of Yahweh fell on the people, and they came out as one man. + +He counted them in Bezek; and the children of Israel were three hundred thousand, and the men of Judah thirty thousand. + +They said to the messengers who came, “Tell the men of Jabesh Gilead, ‘Tomorrow, by the time the sun is hot, you will be rescued.’” The messengers came and told the men of Jabesh; and they were glad. + +Therefore the men of Jabesh said, “Tomorrow we will come out to you, and you shall do with us all that seems good to you.” + +On the next day, Saul put the people in three companies; and they came into the middle of the camp in the morning watch, and struck the Ammonites until the heat of the day. Those who remained were scattered, so that no two of them were left together. + +

+

The people said to Samuel, “Who is he who said, ‘Shall Saul reign over us?’ Bring those men, that we may put them to death!” + +

+

Saul said, “No man shall be put to death today; for today Yahweh has rescued Israel.” + +

+

Then Samuel said to the people, “Come! Let’s go to Gilgal, and renew the kingdom there.” + +All the people went to Gilgal; and there they made Saul king before Yahweh in Gilgal. There they offered sacrifices of peace offerings before Yahweh; and there Saul and all the men of Israel rejoiced greatly. + +

+ + +

Samuel said to all Israel, “Behold, I have listened to your voice in all that you said to me, and have made a king over you. + +Now, behold, the king walks before you. I am old and gray-headed. Behold, my sons are with you. I have walked before you from my youth to this day. + +Here I am. Witness against me before Yahweh and before his anointed. Whose ox have I taken? Whose donkey have I taken? Whom have I defrauded? Whom have I oppressed? Of whose hand have I taken a bribe to make me blind my eyes? I will restore it to you.” + +

+

They said, “You have not defrauded us, nor oppressed us, neither have you taken anything from anyone’s hand.” + +

+

He said to them, “Yahweh is witness against you, and his anointed is witness today, that you have not found anything in my hand.” +

+

They said, “He is witness.” + +Samuel said to the people, “It is Yahweh who appointed Moses and Aaron, and that brought your fathers up out of the land of Egypt. + +Now therefore stand still, that I may plead with you before Yahweh concerning all the righteous acts of Yahweh, which he did to you and to your fathers. + +

+

When Jacob had come into Egypt, and your fathers cried to Yahweh, then Yahweh sent Moses and Aaron, who brought your fathers out of Egypt, and made them to dwell in this place. + +But they forgot Yahweh their God; and he sold them into the hand of Sisera, captain of the army of Hazor, and into the hand of the Philistines, and into the hand of the king of Moab; and they fought against them. + +They cried to Yahweh, and said, ‘We have sinned, because we have forsaken Yahweh and have served the Baals and the Ashtaroth; but now deliver us out of the hand of our enemies, and we will serve you.’ + +Yahweh sent Jerubbaal, Bedan, Jephthah, and Samuel, and delivered you out of the hand of your enemies on every side; and you lived in safety. + +

+

When you saw that Nahash the king of the children of Ammon came against you, you said to me, ‘No, but a king shall reign over us,’ when Yahweh your God was your king. + +Now therefore see the king whom you have chosen and whom you have asked for. Behold, Yahweh has set a king over you. + +If you will fear Yahweh, and serve him, and listen to his voice, and not rebel against the commandment of Yahweh, then both you and also the king who reigns over you are followers of Yahweh your God. + +But if you will not listen to Yahweh’s voice, but rebel against the commandment of Yahweh, then Yahweh’s hand will be against you, as it was against your fathers. + +

+

Now therefore stand still and see this great thing, which Yahweh will do before your eyes. + +Isn’t it wheat harvest today? I will call to Yahweh, that he may send thunder and rain; and you will know and see that your wickedness is great, which you have done in Yahweh’s sight, in asking for a king.” + +

+

So Samuel called to Yahweh, and Yahweh sent thunder and rain that day. Then all the people greatly feared Yahweh and Samuel. + +

+

All the people said to Samuel, “Pray for your servants to Yahweh your God, that we not die; for we have added to all our sins this evil, to ask for a king.” + +

+

Samuel said to the people, “Don’t be afraid. You have indeed done all this evil; yet don’t turn away from following Yahweh, but serve Yahweh with all your heart. + +Don’t turn away to go after vain things which can’t profit or deliver, for they are vain. + +For Yahweh will not forsake his people for his great name’s sake, because it has pleased Yahweh to make you a people for himself. + +Moreover, as for me, far be it from me that I should sin against Yahweh in ceasing to pray for you; but I will instruct you in the good and the right way. + +Only fear Yahweh, and serve him in truth with all your heart; for consider what great things he has done for you. + +But if you keep doing evil, you will be consumed, both you and your king.” + +

+ + +

Saul was thirty years old when he became king, and he reigned over Israel forty-two years.13:1 +The traditional Hebrew text omits “thirty” and “forty-”. The blanks are filled in here from a few manuscripts of the Septuagint. + +

+

Saul chose for himself three thousand men of Israel, of which two thousand were with Saul in Michmash and in the Mount of Bethel, and one thousand were with Jonathan in Gibeah of Benjamin. He sent the rest of the people to their own tents. + +Jonathan struck the garrison of the Philistines that was in Geba, and the Philistines heard of it. Saul blew the trumpet throughout all the land, saying, “Let the Hebrews hear!” + +All Israel heard that Saul had struck the garrison of the Philistines, and also that Israel was considered an abomination to the Philistines. The people were gathered together after Saul to Gilgal. + +The Philistines assembled themselves together to fight with Israel: thirty thousand chariots, six thousand horsemen, and people as the sand which is on the seashore in multitude. They came up and encamped in Michmash, eastward of Beth Aven. + +When the men of Israel saw that they were in trouble (for the people were distressed), then the people hid themselves in caves, in thickets, in rocks, in tombs, and in pits. + +Now some of the Hebrews had gone over the Jordan to the land of Gad and Gilead; but as for Saul, he was yet in Gilgal, and all the people followed him trembling. + +He stayed seven days, according to the time set by Samuel; but Samuel didn’t come to Gilgal, and the people were scattering from him. + +Saul said, “Bring the burnt offering to me here, and the peace offerings.” He offered the burnt offering. + +

+

It came to pass that as soon as he had finished offering the burnt offering, behold, Samuel came; and Saul went out to meet him, that he might greet him. + +Samuel said, “What have you done?” +

+

Saul said, “Because I saw that the people were scattered from me, and that you didn’t come within the days appointed, and that the Philistines assembled themselves together at Michmash, + +therefore I said, ‘Now the Philistines will come down on me to Gilgal, and I haven’t entreated the favor of Yahweh.’ I forced myself therefore, and offered the burnt offering.” + +

+

Samuel said to Saul, “You have done foolishly. You have not kept the commandment of Yahweh your God, which he commanded you; for now Yahweh would have established your kingdom on Israel forever. + +But now your kingdom will not continue. Yahweh has sought for himself a man after his own heart, and Yahweh has appointed him to be prince over his people, because you have not kept that which Yahweh commanded you.” + +

+

Samuel arose, and went from Gilgal to Gibeah of Benjamin. Saul counted the people who were present with him, about six hundred men. + +Saul, and Jonathan his son, and the people who were present with them, stayed in Geba of Benjamin; but the Philistines encamped in Michmash. + +The raiders came out of the camp of the Philistines in three companies: one company turned to the way that leads to Ophrah, to the land of Shual; + +another company turned the way to Beth Horon; and another company turned the way of the border that looks down on the valley of Zeboim toward the wilderness. + +Now there was no blacksmith found throughout all the land of Israel, for the Philistines said, “Lest the Hebrews make themselves swords or spears”; + +but all the Israelites went down to the Philistines, each man to sharpen his own plowshare, mattock, ax, and sickle. + +The price was one payim13:21 +A payim (or pim) was 2/3 shekel of silver, or 0.26 ounces, or 7.6 grams each to sharpen mattocks, plowshares, pitchforks, axes, and goads. + +So it came to pass in the day of battle that neither sword nor spear was found in the hand of any of the people who were with Saul and Jonathan; but Saul and Jonathan his son had them. + +

+

The garrison of the Philistines went out to the pass of Michmash. + +

+ + +

Now it happened on a day that Jonathan the son of Saul said to the young man who bore his armor, “Come! Let’s go over to the Philistinesgarrison that is on the other side.” But he didn’t tell his father. + +Saul stayed in the uttermost part of Gibeah under the pomegranate tree which is in Migron; and the people who were with him were about six hundred men, + +including Ahijah the son of Ahitub, Ichabod’s brother, the son of Phinehas, the son of Eli the priest of Yahweh in Shiloh, wearing an ephod. The people didn’t know that Jonathan was gone. + +

+

Between the passes, by which Jonathan sought to go over to the Philistinesgarrison, there was a rocky crag on the one side and a rocky crag on the other side; and the name of the one was Bozez, and the name of the other Seneh. + +The one crag rose up on the north in front of Michmash, and the other on the south in front of Geba. + +Jonathan said to the young man who bore his armor, “Come! Let’s go over to the garrison of these uncircumcised. It may be that Yahweh will work for us, for there is no restraint on Yahweh to save by many or by few.” + +

+

His armor bearer said to him, “Do all that is in your heart. Go, and behold, I am with you according to your heart.” + +

+

Then Jonathan said, “Behold, we will pass over to the men, and we will reveal ourselves to them. + +If they say this to us, ‘Wait until we come to you!’ then we will stand still in our place and will not go up to them. + +But if they say this, ‘Come up to us!’ then we will go up, for Yahweh has delivered them into our hand. This shall be the sign to us.” + +

+

Both of them revealed themselves to the garrison of the Philistines; and the Philistines said, “Behold, the Hebrews are coming out of the holes where they had hidden themselves!” + +The men of the garrison answered Jonathan and his armor bearer, and said, “Come up to us, and we will show you something!” +

+

Jonathan said to his armor bearer, “Come up after me, for Yahweh has delivered them into the hand of Israel.” + +Jonathan climbed up on his hands and on his feet, and his armor bearer after him, and they fell before Jonathan; and his armor bearer killed them after him. + +That first slaughter, which Jonathan and his armor bearer made, was about twenty men, within as it were half a furrow’s length in an acre of land. + +

+

There was a trembling in the camp, in the field, and among all the people; the garrison and the raiders also trembled; and the earth quaked, so there was an exceedingly great trembling. + +The watchmen of Saul in Gibeah of Benjamin looked; and behold, the multitude melted away and scattered. + +Then Saul said to the people who were with him, “Count now, and see who is missing from us.” When they had counted, behold, Jonathan and his armor bearer were not there. + +

+

Saul said to Ahijah, “Bring God’s ark here.” For God’s ark was with the children of Israel at that time. + +While Saul talked to the priest, the tumult that was in the camp of the Philistines went on and increased; and Saul said to the priest, “Withdraw your hand!” + +

+

Saul and all the people who were with him were gathered together, and came to the battle; and behold, they were all striking each other with their swords in very great confusion. + +Now the Hebrews who were with the Philistines before and who went up with them into the camp from all around, even they also turned to be with the Israelites who were with Saul and Jonathan. + +Likewise all the men of Israel who had hidden themselves in the hill country of Ephraim, when they heard that the Philistines fled, even they also followed hard after them in the battle. + +So Yahweh saved Israel that day; and the battle passed over by Beth Aven. + +

+

The men of Israel were distressed that day; for Saul had adjured the people, saying, “Cursed is the man who eats any food until it is evening, and I am avenged of my enemies.” So none of the people tasted food. + +

+

All the people came into the forest; and there was honey on the ground. + +When the people had come to the forest, behold, honey was dripping, but no one put his hand to his mouth, for the people feared the oath. + +But Jonathan didn’t hear when his father commanded the people with the oath. Therefore he put out the end of the rod that was in his hand and dipped it in the honeycomb, and put his hand to his mouth; and his eyes brightened. + +Then one of the people answered, and said, “Your father directly commanded the people with an oath, saying, ‘Cursed is the man who eats food today.’” So the people were faint. + +

+

Then Jonathan said, “My father has troubled the land. Please look how my eyes have brightened because I tasted a little of this honey. + +How much more, if perhaps the people had eaten freely today of the plunder of their enemies which they found? For now there has been no great slaughter among the Philistines.” + +They struck the Philistines that day from Michmash to Aijalon. The people were very faint; + +and the people pounced on the plunder, and took sheep, cattle, and calves, and killed them on the ground; and the people ate them with the blood. + +Then they told Saul, saying, “Behold, the people are sinning against Yahweh, in that they eat meat with the blood.” +

+

He said, “You have dealt treacherously. Roll a large stone to me today!” + +Saul said, “Disperse yourselves among the people, and tell them, ‘Every man bring me here his ox, and every man his sheep, and kill them here, and eat; and don’t sin against Yahweh in eating meat with the blood.’” All the people brought every man his ox with him that night, and killed them there. + +

+

Saul built an altar to Yahweh. This was the first altar that he built to Yahweh. + +Saul said, “Let’s go down after the Philistines by night, and take plunder among them until the morning light. Let’s not leave a man of them.” +

+

They said, “Do whatever seems good to you.” +

+

Then the priest said, “Let’s draw near here to God.” + +

+

Saul asked counsel of God: “Shall I go down after the Philistines? Will you deliver them into the hand of Israel?” But he didn’t answer him that day. + +Saul said, “Draw near here, all you chiefs of the people, and know and see in whom this sin has been today. + +For as Yahweh lives, who saves Israel, though it is in Jonathan my son, he shall surely die.” But there was not a man among all the people who answered him. + +Then he said to all Israel, “You be on one side, and I and Jonathan my son will be on the other side.” +

+

The people said to Saul, “Do what seems good to you.” + +

+

Therefore Saul said to Yahweh, the God of Israel, “Show the right.” +

+

Jonathan and Saul were chosen, but the people escaped. + +

+

Saul said, “Cast lots between me and Jonathan my son.” +

+

Jonathan was selected. + +

+

Then Saul said to Jonathan, “Tell me what you have done!” +

+

Jonathan told him, and said, “I certainly did taste a little honey with the end of the rod that was in my hand; and behold, I must die.” + +

+

Saul said, “God do so and more also; for you shall surely die, Jonathan.” + +

+

The people said to Saul, “Shall Jonathan die, who has worked this great salvation in Israel? Far from it! As Yahweh lives, there shall not one hair of his head fall to the ground, for he has worked with God today!” So the people rescued Jonathan, so he didn’t die. + +Then Saul went up from following the Philistines; and the Philistines went to their own place. + +

+

Now when Saul had taken the kingdom over Israel, he 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. Wherever he turned himself, he defeated them. + +He did valiantly and struck the Amalekites, and delivered Israel out of the hands of those who plundered them. + +Now the sons of Saul were Jonathan, Ishvi, and Malchishua; and the names of his two daughters were these: the name of the firstborn Merab, and the name of the younger Michal. + +The name of Saul’s wife was Ahinoam the daughter of Ahimaaz. The name of the captain of his army was Abner the son of Ner, Saul’s uncle. + +Kish was the father of Saul, and Ner the father of Abner was the son of Abiel. + +

+

There was severe war against the Philistines all the days of Saul; and when Saul saw any mighty man or any valiant man, he took him into his service. + +

+ + +

Samuel said to Saul, “Yahweh sent me to anoint you to be king over his people, over Israel. Now therefore listen to the voice of Yahweh’s words. + +Yahweh of Armies says, ‘I remember what Amalek did to Israel, how he set himself against him on the way when he came up out of Egypt. + +Now go and strike Amalek, and utterly destroy all that they have, and don’t spare them; but kill both man and woman, infant and nursing baby, ox and sheep, camel and donkey.’” + +

+

Saul summoned the people, and counted them in Telaim, two hundred thousand footmen and ten thousand men of Judah. + +Saul came to the city of Amalek, and set an ambush in the valley. + +Saul said to the Kenites, “Go, depart, go down from among the Amalekites, lest I destroy you with them; for you showed kindness to all the children of Israel when they came up out of Egypt.” So the Kenites departed from among the Amalekites. + +

+

Saul struck the Amalekites, from Havilah as you go to Shur, which is before Egypt. + +He took Agag the king of the Amalekites alive, and utterly destroyed all the people with the edge of the sword. + +But Saul and the people spared Agag and the best of the sheep, of the cattle, of the fat calves, of the lambs, and all that was good, and were not willing to utterly destroy them; but everything that was vile and refuse, that they destroyed utterly. + +

+

Then Yahweh’s word came to Samuel, saying, + +It grieves me that I have set up Saul to be king, for he has turned back from following me, and has not performed my commandments.” Samuel was angry; and he cried to Yahweh all night. + +

+

Samuel rose early to meet Saul in the morning; and Samuel was told, saying, “Saul came to Carmel, and behold, he set up a monument for himself, turned, passed on, and went down to Gilgal.” + +

+

Samuel came to Saul; and Saul said to him, “You are blessed by Yahweh! I have performed the commandment of Yahweh.” + +

+

Samuel said, “Then what does this bleating of the sheep in my ears and the lowing of the cattle which I hear mean?” + +

+

Saul said, “They have brought them from the Amalekites; for the people spared the best of the sheep and of the cattle, to sacrifice to Yahweh your God. We have utterly destroyed the rest.” + +

+

Then Samuel said to Saul, “Stay, and I will tell you what Yahweh said to me last night.” +

+

He said to him, “Say on.” + +

+

Samuel said, “Though you were little in your own sight, weren’t you made the head of the tribes of Israel? Yahweh anointed you king over Israel; + +and Yahweh sent you on a journey, and said, ‘Go, and utterly destroy the sinners the Amalekites, and fight against them until they are consumed.’ + +Why then didn’t you obey Yahweh’s voice, but took the plunder, and did that which was evil in Yahweh’s sight?” + +

+

Saul said to Samuel, “But I have obeyed Yahweh’s voice, and have gone the way which Yahweh sent me, and have brought Agag the king of Amalek, and have utterly destroyed the Amalekites. + +But the people took of the plunder, sheep and cattle, the best of the devoted things, to sacrifice to Yahweh your God in Gilgal.” + +

+

Samuel said, “Has Yahweh as great delight in burnt offerings and sacrifices, as in obeying Yahweh’s voice? Behold, to obey is better than sacrifice, and to listen than the fat of rams. + +For rebellion is as the sin of witchcraft, and stubbornness is as idolatry and teraphim.15:23 +teraphim were household idols that may have been associated with inheritance rights to the household property. Because you have rejected Yahweh’s word, he has also rejected you from being king.” + +

+

Saul said to Samuel, “I have sinned; for I have transgressed the commandment of Yahweh and your words, because I feared the people and obeyed their voice. + +Now therefore, please pardon my sin, and turn again with me, that I may worship Yahweh.” + +

+

Samuel said to Saul, “I will not return with you; for you have rejected Yahweh’s word, and Yahweh has rejected you from being king over Israel.” + +As Samuel turned around to go away, Saul grabbed the skirt of his robe, and it tore. + +Samuel said to him, “Yahweh has torn the kingdom of Israel from you today, and has given it to a neighbor of yours who is better than you. + +Also the Strength of Israel will not lie nor repent; for he is not a man, that he should repent.” + +

+

Then he said, “I have sinned; yet please honor me now before the elders of my people and before Israel, and come back with me, that I may worship Yahweh your God.” + +

+

So Samuel went back with Saul; and Saul worshiped Yahweh. + +Then Samuel said, “Bring Agag the king of the Amalekites here to me!” +

+

Agag came to him cheerfully. Agag said, “Surely the bitterness of death is past.” + +

+

Samuel said, “As your sword has made women childless, so your mother will be childless among women!” Then Samuel cut Agag in pieces before Yahweh in Gilgal. + +

+

Then Samuel went to Ramah; and Saul went up to his house to Gibeah of Saul. + +Samuel came no more to see Saul until the day of his death, but Samuel mourned for Saul. Yahweh grieved that he had made Saul king over Israel. + +

+ + +

Yahweh said to Samuel, “How long will you mourn for Saul, since I have rejected him from being king over Israel? Fill your horn with oil, and go. I will send you to Jesse the Bethlehemite, for I have provided a king for myself among his sons.” + +

+

Samuel said, “How can I go? If Saul hears it, he will kill me.” +

+

Yahweh said, “Take a heifer with you, and say, ‘I have come to sacrifice to Yahweh.’ + +Call Jesse to the sacrifice, and I will show you what you shall do. You shall anoint to me him whom I name to you.” + +

+

Samuel did that which Yahweh spoke, and came to Bethlehem. The elders of the city came to meet him trembling, and said, “Do you come peaceably?” + +

+

He said, “Peaceably; I have come to sacrifice to Yahweh. Sanctify yourselves, and come with me to the sacrifice.” He sanctified Jesse and his sons, and called them to the sacrifice. + +When they had come, he looked at Eliab, and said, “Surely Yahweh’s anointed is before him.” + +

+

But Yahweh said to Samuel, “Don’t look on his face, or on the height of his stature, because I have rejected him; for I don’t see as man sees. For man looks at the outward appearance, but Yahweh looks at the heart.” + +

+

Then Jesse called Abinadab, and made him pass before Samuel. He said, “Yahweh has not chosen this one, either.” + +Then Jesse made Shammah to pass by. He said, “Yahweh has not chosen this one, either.” + +Jesse made seven of his sons to pass before Samuel. Samuel said to Jesse, “Yahweh has not chosen these.” + +Samuel said to Jesse, “Are all your children here?” +

+

He said, “There remains yet the youngest. Behold, he is keeping the sheep.” +

+

Samuel said to Jesse, “Send and get him, for we will not sit down until he comes here.” + +

+

He sent, and brought him in. Now he was ruddy, with a handsome face and good appearance. Yahweh said, “Arise! Anoint him, for this is he.” + +

+

Then Samuel took the horn of oil and anointed him in the middle of his brothers. Then Yahweh’s Spirit came mightily on David from that day forward. So Samuel rose up and went to Ramah. + +Now Yahweh’s Spirit departed from Saul, and an evil spirit from Yahweh troubled him. + +Saul’s servants said to him, “See now, an evil spirit from God troubles you. + +Let our lord now command your servants who are in front of you to seek out a man who is a skillful player on the harp. Then when the evil spirit from God is on you, he will play with his hand, and you will be well.” + +

+

Saul said to his servants, “Provide me now a man who can play well, and bring him to me.” + +

+

Then one of the young men answered and said, “Behold, I have seen a son of Jesse the Bethlehemite who is skillful in playing, a mighty man of valor, a man of war, prudent in speech, and a handsome person; and Yahweh is with him.” + +

+

Therefore Saul sent messengers to Jesse, and said, “Send me David your son, who is with the sheep.” + +

+

Jesse took a donkey loaded with bread, a container of wine, and a young goat, and sent them by David his son to Saul. + +David came to Saul and stood before him. He loved him greatly; and he became his armor bearer. + +Saul sent to Jesse, saying, “Please let David stand before me, for he has found favor in my sight.” + +When the spirit from God was on Saul, David took the harp and played with his hand; so Saul was refreshed and was well, and the evil spirit departed from him. + +

+ + +

Now the Philistines gathered together their armies to battle; and they were gathered together at Socoh, which belongs to Judah, and encamped between Socoh and Azekah in Ephesdammim. + +Saul and the men of Israel were gathered together, and encamped in the valley of Elah, and set the battle in array against the Philistines. + +The Philistines stood on the mountain on the one side, and Israel stood on the mountain on the other side: and there was a valley between them. + +A champion out of the camp of the Philistines named Goliath of Gath, whose height was six cubits and a span17:4 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) Therefore, Goliath was about 9 feet and 9 inches or 2.97 meters tall. went out. + +He had a helmet of bronze on his head, and he wore a coat of mail; and the weight of the coat was five thousand shekels17:5 +A shekel is about 10 grams or about 0.35 ounces, so 5000 shekels is about 50 kilograms or 110 pounds. of bronze. + +He had bronze shin armor on his legs and a bronze javelin between his shoulders. + +The staff of his spear was like a weaver’s beam; and his spear’s head weighed six hundred shekels of iron.17:7 +A shekel is about 10 grams or about 0.35 ounces, so 600 shekels is about 6 kilograms or about 13 pounds. His shield bearer went before him. + +He stood and cried to the armies of Israel, and said to them, “Why have you come out to set your battle in array? Am I not a Philistine, and you servants to Saul? Choose a man for yourselves, and let him come down to me. + +If he is able to fight with me and kill me, then will we be your servants; but if I prevail against him and kill him, then you will be our servants and serve us.” + +The Philistine said, “I defy the armies of Israel today! Give me a man, that we may fight together!” + +

+

When Saul and all Israel heard those words of the Philistine, they were dismayed and greatly afraid. + +Now David was the son of that Ephrathite of Bethlehem Judah, whose name was Jesse; and he had eight sons. The man was an elderly old man in the days of Saul. + +The three oldest sons of Jesse had gone after Saul to the battle; and the names of his three sons who went to the battle were Eliab the firstborn, and next to him Abinadab, and the third Shammah. + +David was the youngest; and the three oldest followed Saul. + +Now David went back and forth from Saul to feed his father’s sheep at Bethlehem. + +

+

The Philistine came near morning and evening, and presented himself forty days. + +

+

Jesse said to David his son, “Now take for your brothers an ephah17:17 +1 ephah is about 22 liters or about 2/3 of a bushel of this parched grain and these ten loaves, and carry them quickly to the camp to your brothers; + +and bring these ten cheeses to the captain of their thousand; and see how your brothers are doing, and bring back news.” + +Now Saul, and they, and all the men of Israel were in the valley of Elah, fighting with the Philistines. + +

+

David rose up early in the morning and left the sheep with a keeper, and took the provisions and went, as Jesse had commanded him. He came to the place of the wagons as the army which was going out to the fight shouted for the battle. + +Israel and the Philistines put the battle in array, army against army. + +David left his baggage in the hand of the keeper of the baggage and ran to the army, and came and greeted his brothers. + +As he talked with them, behold, the champion, the Philistine of Gath, Goliath by name, came up out of the ranks of the Philistines, and said the same words; and David heard them. + +All the men of Israel, when they saw the man, fled from him and were terrified. + +The men of Israel said, “Have you seen this man who has come up? He has surely come up to defy Israel. The king will give great riches to the man who kills him, and will give him his daughter, and will make his father’s house tax-free in Israel.” + +

+

David spoke to the men who stood by him, saying, “What shall be done to the man who kills this Philistine and takes away the reproach from Israel? For who is this uncircumcised Philistine, that he should defy the armies of the living God?” + +

+

The people answered him in this way, saying, “So shall it be done to the man who kills him.” + +

+

Eliab his oldest brother heard when he spoke to the men; and Eliab’s anger burned against David, and he said, “Why have you come down? With whom have you left those few sheep in the wilderness? I know your pride and the evil of your heart; for you have come down that you might see the battle.” + +

+

David said, “What have I now done? Is there not a cause?” + +He turned away from him toward another, and spoke like that again; and the people answered him again the same way. + +When the words were heard which David spoke, they rehearsed them before Saul; and he sent for him. + +David said to Saul, “Let no man’s heart fail because of him. Your servant will go and fight with this Philistine.” + +

+

Saul said to David, “You are not able to go against this Philistine to fight with him; for you are but a youth, and he a man of war from his youth.” + +

+

David said to Saul, “Your servant was keeping his father’s sheep; and when a lion or a bear came and took a lamb out of the flock, + +I went out after him, struck him, and rescued it out of his mouth. When he arose against me, I caught him by his beard, struck him, and killed him. + +Your servant struck both the lion and the bear. This uncircumcised Philistine shall be as one of them, since he has defied the armies of the living God.” + +David said, “Yahweh, who delivered me out of the paw of the lion and out of the paw of the bear, will deliver me out of the hand of this Philistine.” +

+

Saul said to David, “Go! Yahweh will be with you.” + +

+

Saul dressed David with his clothing. He put a helmet of bronze on his head, and he clad him with a coat of mail. + +David strapped his sword on his clothing and he tried to move, for he had not tested it. David said to Saul, “I can’t go with these, for I have not tested them.” Then David took them off. + +

+

He took his staff in his hand, and chose for himself five smooth stones out of the brook, and put them in the pouch of his shepherd’s bag which he had. His sling was in his hand; and he came near to the Philistine. + +The Philistine walked and came near to David; and the man who bore the shield went before him. + +When the Philistine looked around and saw David, he disdained him; for he was but a youth, and ruddy, and had a good looking face. + +The Philistine said to David, “Am I a dog, that you come to me with sticks?” The Philistine cursed David by his gods. + +The Philistine said to David, “Come to me, and I will give your flesh to the birds of the sky and to the animals of the field.” + +

+

Then David said to the Philistine, “You come to me with a sword, with a spear, and with a javelin; but I come to you in the name of Yahweh of Armies, the God of the armies of Israel, whom you have defied. + +Today, Yahweh will deliver you into my hand. I will strike you and take your head from off you. I will give the dead bodies of the army of the Philistines today to the birds of the sky and to the wild animals of the earth, that all the earth may know that there is a God in Israel, + +and that all this assembly may know that Yahweh doesn’t save with sword and spear; for the battle is Yahweh’s, and he will give you into our hand.” + +

+

When the Philistine arose, and walked and came near to meet David, David hurried and ran toward the army to meet the Philistine. + +David put his hand in his bag, took a stone and slung it, and struck the Philistine in his forehead. The stone sank into his forehead, and he fell on his face to the earth. + +So David prevailed over the Philistine with a sling and with a stone, and struck the Philistine and killed him; but there was no sword in David’s hand. + +Then David ran, stood over the Philistine, took his sword, drew it out of its sheath, killed him, and cut off his head with it. +

+

When the Philistines saw that their champion was dead, they fled. + +The men of Israel and of Judah arose and shouted, and pursued the Philistines as far as Gai and to the gates of Ekron. The wounded of the Philistines fell down by the way to Shaaraim, even to Gath and to Ekron. + +The children of Israel returned from chasing after the Philistines, and they plundered their camp. + +David took the head of the Philistine and brought it to Jerusalem, but he put his armor in his tent. + +When Saul saw David go out against the Philistine, he said to Abner, the captain of the army, “Abner, whose son is this youth?” +

+

Abner said, “As your soul lives, O king, I can’t tell.” + +

+

The king said, “Inquire whose son the young man is!” + +

+

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. + +Saul said to him, “Whose son are you, you young man?” +

+

David answered, “I am the son of your servant Jesse the Bethlehemite.” + +

+ + +

When he had finished speaking to Saul, the soul of Jonathan was knit with the soul of David, and Jonathan loved him as his own soul. + +Saul took him that day, and wouldn’t let him go home to his father’s house any more. + +Then Jonathan and David made a covenant, because he loved him as his own soul. + +Jonathan stripped himself of the robe that was on him and gave it to David with his clothing, even including his sword, his bow, and his sash. + +

+

David went out wherever Saul sent him, and behaved himself wisely; and Saul set him over the men of war. It was good in the sight of all the people, and also in the sight of Saul’s servants. + +

+

As they came, when David returned from the slaughter of the Philistine, the women came out of all the cities of Israel, singing and dancing, to meet King Saul with tambourines, with joy, and with instruments of music. + +The women sang to one another as they played, and said, +

+Saul has slain his thousands, + +and David his ten thousands.” + + +

Saul was very angry, and this saying displeased him. He said, “They have credited David with ten thousands, and they have only credited me with thousands. What can he have more but the kingdom?” + +Saul watched David from that day and forward. + +On the next day, an evil spirit from God came mightily on Saul, and he prophesied in the middle of the house. David played with his hand, as he did day by day. Saul had his spear in his hand; + +and Saul threw the spear, for he said, “I will pin David to the wall!” David escaped from his presence twice. + +Saul was afraid of David, because Yahweh was with him, and had departed from Saul. + +Therefore Saul removed him from his presence, and made him his captain over a thousand; and he went out and came in before the people. + +

+

David behaved himself wisely in all his ways; and Yahweh was with him. + +When Saul saw that he behaved himself very wisely, he stood in awe of him. + +But all Israel and Judah loved David; for he went out and came in before them. + +Saul said to David, “Behold, my elder daughter Merab. I will give her to you as wife. Only be valiant for me, and fight Yahweh’s battles.” For Saul said, “Don’t let my hand be on him, but let the hand of the Philistines be on him.” + +

+

David said to 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?” + +

+

But at the time when Merab, Saul’s daughter, should have been given to David, she was given to Adriel the Meholathite as wife. + +

+

Michal, Saul’s daughter, loved David; and they told Saul, and the thing pleased him. + +Saul said, I will give her to him, that she may be a snare to him and that the hand of the Philistines may be against him. Therefore Saul said to David a second time, “You shall today be my son-in-law.” + +

+

Saul commanded his servants, “Talk with David secretly, and say, ‘Behold, the king has delight in you, and all his servants love you. Now therefore be the king’s son-in-law.’” + +

+

Saul’s servants spoke those words in the ears of David. David said, “Does it seem to you a light thing to be the king’s son-in-law, since I am a poor man and little known?” + +

+

The servants of Saul told him, saying, “David spoke like this.” + +

+

Saul said, “Tell David, ‘The king desires no dowry except one hundred foreskins of the Philistines, to be avenged of the king’s enemies.’” Now Saul thought he would make David fall by the hand of the Philistines. + +When his servants told David these words, it pleased David well to be the king’s son-in-law. Before the deadline, + +David arose and went, he and his men, and killed two hundred men of the Philistines. Then David brought their foreskins, and they gave them in full number to the king, that he might be the king’s son-in-law. Then Saul gave him Michal his daughter as wife. + +Saul saw and knew that Yahweh was with David; and Michal, Saul’s daughter, loved him. + +Saul was even more afraid of David; and Saul was David’s enemy continually. + +

+

Then the princes of the Philistines went out; and as often as they went out, David behaved himself more wisely than all the servants of Saul, so that his name was highly esteemed. + +

+ + +

Saul spoke to Jonathan his son and to all his servants, that they should kill David. But Jonathan, Saul’s son, greatly delighted in David. + +Jonathan told David, saying, “Saul my father seeks to kill you. Now therefore, please take care of yourself in the morning, live in a secret place, and hide yourself. + +I will go out and stand beside my father in the field where you are, and I will talk with my father about you; and if I see anything, I will tell you.” + +

+

Jonathan spoke good of David to Saul his father, and said to him, “Don’t let the king sin against his servant, against David; because he has not sinned against you, and because his works have been very good toward you; + +for he put his life in his hand and struck the Philistine, and Yahweh worked a great victory for all Israel. You saw it and rejoiced. Why then will you sin against innocent blood, to kill David without a cause?” + +

+

Saul listened to the voice of Jonathan; and Saul swore, “As Yahweh lives, he shall not be put to death.” + +

+

Jonathan called David, and Jonathan showed him all those things. Then Jonathan brought David to Saul, and he was in his presence as before. + +

+

There was war again. David went out and fought with the Philistines, and killed them with a great slaughter; and they fled before him. + +

+

An evil spirit from Yahweh was on Saul as he sat in his house with his spear in his hand; and David was playing music with his hand. + +Saul sought to pin David to the wall with the spear, but he slipped away out of Saul’s presence; and he stuck the spear into the wall. David fled and escaped that night. + +Saul sent messengers to David’s house to watch him and to kill him in the morning. Michal, David’s wife, told him, saying, “If you don’t save your life tonight, tomorrow you will be killed.” + +So Michal let David down through the window. He went away, fled, and escaped. + +Michal took the teraphim19:13 +teraphim were household idols that may have been associated with inheritance rights to the household property. and laid it in the bed, and put a pillow of goats’ hair at its head and covered it with clothes. + +When Saul sent messengers to take David, she said, “He is sick.” + +

+

Saul sent the messengers to see David, saying, “Bring him up to me in the bed, that I may kill him.” + +When the messengers came in, behold, the teraphim was in the bed, with the pillow of goats’ hair at its head. + +

+

Saul said to Michal, “Why have you deceived me like this and let my enemy go, so that he has escaped?” +

+

Michal answered Saul, “He said to me, ‘Let me go! Why should I kill you?’” + +

+

Now David fled and escaped, and came to Samuel at Ramah, and told him all that Saul had done to him. He and Samuel went and lived in Naioth. + +Saul was told, saying, “Behold, David is at Naioth in Ramah.” + +

+

Saul sent messengers to seize David; and when they saw the company of the prophets prophesying, and Samuel standing as head over them, God’s Spirit came on Saul’s messengers, and they also prophesied. + +When Saul was told, he sent other messengers, and they also prophesied. Saul sent messengers again the third time, and they also prophesied. + +Then he also went to Ramah, and came to the great well that is in Secu: and he asked, “Where are Samuel and David?” +

+

One said, “Behold, they are at Naioth in Ramah.” + +

+

He went there to Naioth in Ramah. Then God’s Spirit came on him also, and he went on, and prophesied, until he came to Naioth in Ramah. + +He also stripped off his clothes. He also prophesied before Samuel and lay down naked all that day and all that night. Therefore they say, “Is Saul also among the prophets?” + +

+ + +

David fled from Naioth in Ramah, and came and said to Jonathan, “What have I done? What is my iniquity? What is my sin before your father, that he seeks my life?” + +

+

He said to him, “Far from it; you will not die. Behold, my father does nothing either great or small, but that he discloses it to me. Why would my father hide this thing from me? It is not so.” + +

+

David swore moreover, and said, “Your father knows well that I have found favor in your eyes; and he says, ‘Don’t let Jonathan know this, lest he be grieved;’ but truly as Yahweh lives, and as your soul lives, there is but a step between me and death.” + +

+

Then Jonathan said to David, “Whatever your soul desires, I will even do it for you.” + +

+

David said to Jonathan, “Behold, tomorrow is the new moon, and I should not fail to dine with the king; but let me go, that I may hide myself in the field to the third day at evening. + +If your father misses me at all, then say, ‘David earnestly asked leave of me that he might run to Bethlehem, his city; for it is the yearly sacrifice there for all the family.’ + +If he says, ‘It is well,’ your servant shall have peace; but if he is angry, then know that evil is determined by him. + +Therefore deal kindly with your servant, for you have brought your servant into a covenant of Yahweh with you; but if there is iniquity in me, kill me yourself, for why should you bring me to your father?” + +

+

Jonathan said, “Far be it from you; for if I should at all know that evil were determined by my father to come on you, then wouldn’t I tell you that?” + +

+

Then David said to Jonathan, “Who will tell me if your father answers you roughly?” + +

+

Jonathan said to David, “Come! Let’s go out into the field.” They both went out into the field. + +Jonathan said to David, “By Yahweh, the God of Israel, when I have sounded out my father about this time tomorrow, or the third day, behold, if there is good toward David, won’t I then send to you and disclose it to you? + +Yahweh do so to Jonathan and more also, should it please my father to do you evil, if I don’t disclose it to you and send you away, that you may go in peace. May Yahweh be with you as he has been with my father. + +You shall not only show me the loving kindness of Yahweh while I still live, that I not die; + +but you shall also not cut off your kindness from my house forever, no, not when Yahweh has cut off every one of the enemies of David from the surface of the earth.” + +So Jonathan made a covenant with David’s house, saying, “Yahweh will require it at the hand of David’s enemies.” + +

+

Jonathan caused David to swear again, for the love that he had for him; for he loved him as he loved his own soul. + +Then Jonathan said to him, “Tomorrow is the new moon, and you will be missed, because your seat will be empty. + +When you have stayed three days, go down quickly and come to the place where you hid yourself when this started, and remain by the stone Ezel. + +I will shoot three arrows on its side, as though I shot at a mark. + +Behold, I will send the boy, saying, ‘Go, find the arrows!’ If I tell the boy, ‘Behold, the arrows are on this side of you. Take them;’ then come, for there is peace to you and no danger, as Yahweh lives. + +But if I say this to the boy, ‘Behold, the arrows are beyond you,’ then go your way, for Yahweh has sent you away. + +Concerning the matter which you and I have spoken of, behold, Yahweh is between you and me forever.” + +

+

So David hid himself in the field. When the new moon had come, the king sat himself down to eat food. + +The king sat on his seat, as at other times, even on the seat by the wall; and Jonathan stood up, and Abner sat by Saul’s side, but David’s place was empty. + +Nevertheless Saul didn’t say anything that day, for he thought, “Something has happened to him. He is not clean. Surely he is not clean.” + +

+

On the next day after the new moon, the second day, David’s place was empty. Saul said to Jonathan his son, “Why didn’t the son of Jesse come to eat, either yesterday, or today?” + +

+

Jonathan answered Saul, “David earnestly asked permission of me to go to Bethlehem. + +He said, ‘Please let me go, for our family has a sacrifice in the city. My brother has commanded me to be there. Now, if I have found favor in your eyes, please let me go away and see my brothers.’ Therefore he has not come to the king’s table.” + +

+

Then Saul’s anger burned against Jonathan, and he said to him, “You son of a perverse rebellious woman, don’t I know that you have chosen the son of Jesse to your own shame, and to the shame of your mother’s nakedness? + +For as long as the son of Jesse lives on the earth, you will not be established, nor will your kingdom. Therefore now send and bring him to me, for he shall surely die!” + +

+

Jonathan answered Saul his father, and said to him, “Why should he be put to death? What has he done?” + +

+

Saul cast his spear at him to strike him. By this Jonathan knew that his father was determined to put David to death. + +So Jonathan arose from the table in fierce anger, and ate no food the second day of the month; for he was grieved for David, because his father had treated him shamefully. + +

+

In the morning, Jonathan went out into the field at the time appointed with David, and a little boy with him. + +He said to his boy, “Run, find now the arrows which I shoot.” As the boy ran, he shot an arrow beyond him. + +When the boy had come to the place of the arrow which Jonathan had shot, Jonathan cried after the boy, and said, “Isn’t the arrow beyond you?” + +Jonathan cried after the boy, “Go fast! Hurry! Don’t delay!” Jonathan’s boy gathered up the arrows, and came to his master. + +But the boy didn’t know anything. Only Jonathan and David knew the matter. + +Jonathan gave his weapons to his boy, and said to him, “Go, carry them to the city.” + +

+

As soon as the boy was gone, David arose out of the south, and fell on his face to the ground, and bowed himself three times. They kissed one another and wept with one another, and David wept the most. + +Jonathan said to David, “Go in peace, because we have both sworn in Yahweh’s name, saying, ‘Yahweh is between me and you, and between my offspring and your offspring, forever.’” He arose and departed; and Jonathan went into the city. + +

+ + +

Then David came to Nob to Ahimelech the priest. Ahimelech came to meet David trembling, and said to him, “Why are you alone, and no man with you?” + +David said to Ahimelech the priest, “The king has commanded me to do something, and has said to me, ‘Let no one know anything about the business about which I send you, and what I have commanded you. I have sent the young men to a certain place.’ + +Now therefore what is under your hand? Please give me five loaves of bread in my hand, or whatever is available.” + +

+

The priest answered David, and said, “I have no common bread, but there is holy bread; if only the young men have kept themselves from women.” + +

+

David answered the priest, and said to him, “Truly, women have been kept from us as usual these three days. When I came out, the vessels of the young men were holy, though it was only a common journey. How much more then today shall their vessels be holy?” + +So the priest gave him holy bread; for there was no bread there but the show bread that was taken from before Yahweh, to be replaced with hot bread in the day when it was taken away. + +

+

Now a certain man of the servants of Saul was there that day, detained before Yahweh; and his name was Doeg the Edomite, the best of the herdsmen who belonged to Saul. + +

+

David said to Ahimelech, “Isn’t there here under your hand spear or sword? For I haven’t brought my sword or my weapons with me, because the king’s business required haste.” + +

+

The priest said, “Behold, the sword of Goliath the Philistine, whom you killed in the valley of Elah, is here wrapped in a cloth behind the ephod. If you would like to take that, take it, for there is no other except that here.” +

+

David said, “There is none like that. Give it to me.” + +

+

David arose and fled that day for fear of Saul, and went to Achish the king of Gath. + +The servants of Achish said to him, “Isn’t this David the king of the land? Didn’t they sing to one another about him in dances, saying, +

+Saul has slain his thousands, + +and David his ten thousands’?” + + +

David laid up these words in his heart, and was very afraid of Achish the king of Gath. + +He changed his behavior before them and pretended to be insane in their hands, and scribbled on the doors of the gate, and let his spittle fall down on his beard. + +Then Achish said to his servants, “Look, you see the man is insane. Why then have you brought him to me? + +Do I lack madmen, that you have brought this fellow to play the madman in my presence? Should this fellow come into my house?” + +

+ + +

David therefore departed from there and escaped to Adullam’s cave. When his brothers and all his father’s house heard it, they went down there to him. + +Everyone who was in distress, everyone who was in debt, and everyone who was discontented gathered themselves to him; and he became captain over them. There were with him about four hundred men. + +David went from there to Mizpeh of Moab; and he said to the king of Moab, “Please let my father and my mother come out to you, until I know what God will do for me.” + +He brought them before the king of Moab; and they lived with him all the time that David was in the stronghold. + +The prophet Gad said to David, “Don’t stay in the stronghold. Depart, and go into the land of Judah.” +

+

Then David departed, and came into the forest of Hereth. + +

+

Saul heard that David was discovered, with the men who were with him. Now Saul was sitting in Gibeah, under the tamarisk tree in Ramah, with his spear in his hand, and all his servants were standing around him. + +Saul said to his servants who stood around him, “Hear now, you Benjamites! Will the son of Jesse give everyone of you fields and vineyards? Will he make you all captains of thousands and captains of hundreds? + +Is that why all of you have conspired against me, and there is no one who discloses to me when my son makes a treaty with the son of Jesse, and there is none of you who is sorry for me, or discloses to me that my son has stirred up my servant against me, to lie in wait, as it is today?” + +

+

Then Doeg the Edomite, who stood by the servants of Saul, answered and said, “I saw the son of Jesse coming to Nob, to Ahimelech the son of Ahitub. + +He inquired of Yahweh for him, gave him food, and gave him the sword of Goliath the Philistine.” + +

+

Then the king sent to call Ahimelech the priest, the son of Ahitub, and all his father’s house, the priests who were in Nob; and they all came to the king. + +Saul said, “Hear now, you son of Ahitub.” +

+

He answered, “Here I am, my lord.” + +

+

Saul said to him, “Why have you conspired against me, you and the son of Jesse, in that you have given him bread, and a sword, and have inquired of God for him, that he should rise against me, to lie in wait, as it is today?” + +

+

Then Ahimelech answered the king, and said, “Who among all your servants is so faithful as David, who is the king’s son-in-law, captain of your body guard, and honored in your house? + +Have I today begun to inquire of God for him? Be it far from me! Don’t let the king impute anything to his servant, nor to all the house of my father; for your servant knew nothing of all this, less or more.” + +

+

The king said, “You shall surely die, Ahimelech, you and all your father’s house.” + +The king said to the guard who stood about him, “Turn and kill the priests of Yahweh, because their hand also is with David, and because they knew that he fled and didn’t disclose it to me.” But the servants of the king wouldn’t put out their hand to fall on the priests of Yahweh. + +

+

The king said to Doeg, “Turn and attack the priests!” +

+

Doeg the Edomite turned, and he attacked the priests, and he killed on that day eighty-five people who wore a linen ephod. + +He struck Nob, the city of the priests, with the edge of the sword—both men and women, children and nursing babies, and cattle, donkeys, and sheep, with the edge of the sword. + +One of the sons of Ahimelech the son of Ahitub, named Abiathar, escaped and fled after David. + +Abiathar told David that Saul had slain Yahweh’s priests. + +

+

David said to Abiathar, “I knew on that day, when Doeg the Edomite was there, that he would surely tell Saul. I am responsible for the death of all the persons of your father’s house. + +Stay with me. Don’t be afraid, for he who seeks my life seeks your life. You will be safe with me.” + +

+ + +

David was told, “Behold, the Philistines are fighting against Keilah, and are robbing the threshing floors.” + +

+

Therefore David inquired of Yahweh, saying, “Shall I go and strike these Philistines?” +

+

Yahweh said to David, “Go strike the Philistines, and save Keilah.” + +

+

David’s men said to him, “Behold, we are afraid here in Judah. How much more then if we go to Keilah against the armies of the Philistines?” + +

+

Then David inquired of Yahweh yet again. Yahweh answered him, and said, “Arise, go down to Keilah; for I will deliver the Philistines into your hand.” + +

+

David and his men went to Keilah and fought with the Philistines, and brought away their livestock, and killed them with a great slaughter. So David saved the inhabitants of Keilah. + +

+

When Abiathar the son of Ahimelech fled to David to Keilah, he came down with an ephod in his hand. + +

+

Saul was told that David had come to Keilah. Saul said, “God has delivered him into my hand, for he is shut in by entering into a town that has gates and bars.” + +Saul summoned all the people to war, to go down to Keilah to besiege David and his men. + +David knew that Saul was devising mischief against him. He said to Abiathar the priest, “Bring the ephod here.” + +Then David said, “O Yahweh, the God of Israel, your servant has surely heard that Saul seeks to come to Keilah to destroy the city for my sake. + +Will the men of Keilah deliver me up into his hand? Will Saul come down, as your servant has heard? Yahweh, the God of Israel, I beg you, tell your servant.” +

+

Yahweh said, “He will come down.” + +

+

Then David said, “Will the men of Keilah deliver me and my men into the hand of Saul?” +

+

Yahweh said, “They will deliver you up.” + +

+

Then David and his men, who were about six hundred, arose and departed out of Keilah and went wherever they could go. Saul was told that David had escaped from Keilah; and he gave up going there. + +David stayed in the wilderness in the strongholds, and remained in the hill country in the wilderness of Ziph. Saul sought him every day, but God didn’t deliver him into his hand. + +David saw that Saul had come out to seek his life. David was in the wilderness of Ziph in the woods. + +

+

Jonathan, Saul’s son, arose and went to David into the woods, and strengthened his hand in God. + +He said to him, “Don’t be afraid, for the hand of Saul my father won’t find you; and you will be king over Israel, and I will be next to you; and Saul my father knows that also.” + +They both made a covenant before Yahweh. Then David stayed in the woods and Jonathan went to his house. + +

+

Then the Ziphites came up to Saul to Gibeah, saying, “Doesn’t David hide himself with us in the strongholds in the woods, in the hill of Hachilah, which is on the south of the desert? + +Now therefore, O king, come down. According to all the desire of your soul to come down; and our part will be to deliver him up into the king’s hand.” + +

+

Saul said, “You are blessed by Yahweh, for you have had compassion on me. + +Please go make yet more sure, and know and see his place where his haunt is, and who has seen him there; for I have been told that he is very cunning. + +See therefore, and take knowledge of all the lurking places where he hides himself; and come again to me with certainty, and I will go with you. It shall happen, if he is in the land, that I will search him out among all the thousands of Judah.” + +

+

They arose, and went to Ziph before Saul; but David and his men were in the wilderness of Maon, in the Arabah on the south of the desert. + +Saul and his men went to seek him. When David was told, he went down to the rock, and stayed in the wilderness of Maon. When Saul heard that, he pursued David in the wilderness of Maon. + +Saul went on this side of the mountain, and David and his men on that side of the mountain; and David hurried to get away for fear of Saul, for Saul and his men surrounded David and his men to take them. + +But a messenger came to Saul, saying, “Hurry and come, for the Philistines have made a raid on the land!” + +So Saul returned from pursuing David, and went against the Philistines. Therefore they called that place Sela Hammahlekoth.23:28 +“Sela Hammahlekoth” means “rock of parting”. + +

+

David went up from there and lived in the strongholds of En Gedi. + +

+ + +

When Saul had returned from following the Philistines, he was told, “Behold, David is in the wilderness of En Gedi.” + +Then Saul took three thousand chosen men out of all Israel, and went to seek David and his men on the rocks of the wild goats. + +He came to the sheep pens by the way, where there was a cave; and Saul went in to relieve himself. Now David and his men were staying in the innermost parts of the cave. + +David’s men said to him, “Behold, the day of which Yahweh said to you, ‘Behold, I will deliver your enemy into your hand, and you shall do to him as it shall seem good to you.’” Then David arose and cut off the skirt of Saul’s robe secretly. + +Afterward, David’s heart struck him because he had cut off Saul’s skirt. + +He said to his men, “Yahweh forbid that I should do this thing to my lord, Yahweh’s anointed, to stretch out my hand against him, since he is Yahweh’s anointed.” + +So David checked his men with these words, and didn’t allow them to rise against Saul. Saul rose up out of the cave, and went on his way. + +David also arose afterward, and went out of the cave and cried after Saul, saying, “My lord the king!” +

+

When Saul looked behind him, David bowed with his face to the earth, and showed respect. + +David said to Saul, “Why do you listen to men’s words, saying, ‘Behold, David seeks to harm you’? + +Behold, today your eyes have seen how Yahweh had delivered you today into my hand in the cave. Some urged me to kill you, but I spared you. I said, ‘I will not stretch out my hand against my lord, for he is Yahweh’s anointed.’ + +Moreover, my father, behold, yes, see the skirt of your robe in my hand; for in that I cut off the skirt of your robe and didn’t kill you, know and see that there is neither evil nor disobedience in my hand. I have not sinned against you, though you hunt for my life to take it. + +May Yahweh judge between me and you, and may Yahweh avenge me of you; but my hand will not be on you. + +As the proverb of the ancients says, ‘Out of the wicked comes wickedness;’ but my hand will not be on you. + +Against whom has the king of Israel come out? Whom do you pursue? A dead dog? A flea? + +May Yahweh therefore be judge, and give sentence between me and you, and see, and plead my cause, and deliver me out of your hand.” + +

+

It came to pass, when David had finished speaking these words to Saul, that Saul said, “Is that your voice, my son David?” Saul lifted up his voice and wept. + +He said to David, “You are more righteous than I; for you have done good to me, whereas I have done evil to you. + +You have declared today how you have dealt well with me, because when Yahweh had delivered me up into your hand, you didn’t kill me. + +For if a man finds his enemy, will he let him go away unharmed? Therefore may Yahweh reward you good for that which you have done to me today. + +Now, behold, I know that you will surely be king, and that the kingdom of Israel will be established in your hand. + +Swear now therefore to me by Yahweh that you will not cut off my offspring after me, and that you will not destroy my name out of my father’s house.” + +

+

David swore to Saul. Saul went home, but David and his men went up to the stronghold. + +

+ + +

Samuel died; and all Israel gathered themselves together and mourned for him, and buried him at his house at Ramah. +

+

Then David arose and went down to the wilderness of Paran. + +There was a man in Maon whose possessions were in Carmel; and the man was very great. He had three thousand sheep and a thousand goats; and he was shearing his sheep in Carmel. + +Now the name of the man was Nabal; and the name of his wife Abigail. This woman was intelligent and had a beautiful face; but the man was surly and evil in his doings. He was of the house of Caleb. + +David heard in the wilderness that Nabal was shearing his sheep. + +David sent ten young men; and David said to the young men, “Go up to Carmel, and go to Nabal, and greet him in my name. + +Tell him, ‘Long life to you! Peace be to you! Peace be to your house! Peace be to all that you have! + +Now I have heard that you have shearers. Your shepherds have now been with us, and we didn’t harm them. Nothing was missing from them all the time they were in Carmel. + +Ask your young men, and they will tell you. Therefore let the young men find favor in your eyes, for we come on a good day. Please give whatever comes to your hand to your servants and to your son David.’” + +

+

When David’s young men came, they spoke to Nabal all those words in the name of David, and waited. + +

+

Nabal answered David’s servants and said, “Who is David? Who is the son of Jesse? There are many servants who break away from their masters these days. + +Shall I then take my bread, my water, and my meat that I have killed for my shearers, and give it to men who I don’t know where they come from?” + +

+

So David’s young men turned on their way and went back, and came and told him all these words. + +

+

David said to his men, “Every man put on his sword!” +

+

Every man put on his sword. David also put on his sword. About four hundred men followed David, and two hundred stayed by the baggage. + +

+

But one of the young men told Abigail, Nabal’s wife, saying, “Behold, David sent messengers out of the wilderness to greet our master; and he insulted them. + +But the men were very good to us, and we were not harmed, and we didn’t miss anything as long as we went with them, when we were in the fields. + +They were a wall to us both by night and by day, all the while we were with them keeping the sheep. + +Now therefore know and consider what you will do; for evil is determined against our master and against all his house, for he is such a worthless fellow that one can’t speak to him.” + +

+

Then Abigail hurried and took two hundred loaves of bread, two containers of wine, five sheep ready dressed, five seahs25:18 +1 seah is about 7 liters or 1.9 gallons or 0.8 pecks of parched grain, one hundred clusters of raisins, and two hundred cakes of figs, and laid them on donkeys. + +She said to her young men, “Go on before me. Behold, I am coming after you.” But she didn’t tell her husband, Nabal. + +As she rode on her donkey, and came down hidden by the mountain, behold, David and his men came down toward her, and she met them. + +

+

Now David had said, “Surely in vain I have kept all that this fellow has in the wilderness, so that nothing was missed of all that pertained to him. He has returned me evil for good. + +God do so to the enemies of David, and more also, if I leave of all that belongs to him by the morning light so much as one who urinates on a wall.”25:22 +or, male. + +

+

When Abigail saw David, she hurried and got off her donkey, and fell before David on her face and bowed herself to the ground. + +She fell at his feet and said, “On me, my lord, on me be the blame! Please let your servant speak in your ears. Hear the words of your servant. + +Please don’t let my lord pay attention to this worthless fellow, Nabal, for as his name is, so is he. Nabal25:25 +“Nabal” means “foolish”. is his name, and folly is with him; but I, your servant, didn’t see my lord’s young men whom you sent. + +Now therefore, my lord, as Yahweh lives and as your soul lives, since Yahweh has withheld you from blood guiltiness and from avenging yourself with your own hand, now therefore let your enemies and those who seek evil to my lord be as Nabal. + +Now this present which your servant has brought to my lord, let it be given to the young men who follow my lord. + +Please forgive the trespass of your servant. For Yahweh will certainly make my lord a sure house, because my lord fights Yahweh’s battles. Evil will not be found in you all your days. + +Though men may rise up to pursue you and to seek your soul, yet the soul of my lord will be bound in the bundle of life with Yahweh your God. He will sling out the souls of your enemies as from a sling’s pocket. + +It will come to pass, when Yahweh has done to my lord according to all the good that he has spoken concerning you, and has appointed you prince over Israel, + +that this shall be no grief to you, nor offense of heart to my lord, either that you have shed blood without cause, or that my lord has avenged himself. When Yahweh has dealt well with my lord, then remember your servant.” + +

+

David said to Abigail, “Blessed is Yahweh, the God of Israel, who sent you today to meet me! + +Blessed is your discretion, and blessed are you, who have kept me today from blood guiltiness, and from avenging myself with my own hand. + +For indeed, as Yahweh the God of Israel lives, who has withheld me from harming you, unless you had hurried and come to meet me, surely there wouldn’t have been left to Nabal by the morning light so much as one who urinates on a wall.”25:34 +or, one male. + +

+

So David received from her hand that which she had brought him. Then he said to her, “Go up in peace to your house. Behold, I have listened to your voice and have granted your request.” + +

+

Abigail came to Nabal; and behold, he held a feast in his house like the feast of a king. Nabal’s heart was merry within him, for he was very drunk. Therefore she told him nothing until the morning light. + +In the morning, when the wine had gone out of Nabal, his wife told him these things; and his heart died within him, and he became as a stone. + +About ten days later, Yahweh struck Nabal, so that he died. + +When David heard that Nabal was dead, he said, “Blessed is Yahweh, who has pleaded the cause of my reproach from the hand of Nabal, and has kept back his servant from evil. Yahweh has returned the evildoing of Nabal on his own head.” +

+

David sent and spoke concerning Abigail, to take her to himself as wife. + +When David’s servants had come to Abigail to Carmel, they spoke to her, saying, “David has sent us to you, to take you to him as wife.” + +

+

She arose and bowed herself with her face to the earth, and said, “Behold, your servant is a servant to wash the feet of the servants of my lord.” + +Abigail hurriedly arose and rode on a donkey with her five maids who followed her; and she went after the messengers of David, and became his wife. + +David also took Ahinoam of Jezreel; and they both became his wives. + +

+

Now Saul had given Michal his daughter, David’s wife, to Palti the son of Laish, who was of Gallim. + +

+ + +

The Ziphites came to Saul to Gibeah, saying, “Doesn’t David hide himself in the hill of Hachilah, which is before the desert?” + +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. + +Saul encamped in the hill of Hachilah, which is before the desert, by the way. But David stayed in the wilderness, and he saw that Saul came after him into the wilderness. + +David therefore sent out spies, and understood that Saul had certainly come. + +Then David arose and came to the place where Saul had encamped; and David saw the place where Saul lay, with Abner the son of Ner, the captain of his army. Saul lay within the place of the wagons, and the people were encamped around him. + +

+

Then David answered and said to Ahimelech the Hittite, and to Abishai the son of Zeruiah, brother of Joab, saying, “Who will go down with me to Saul to the camp?” +

+

Abishai said, “I will go down with you.” + +So David and Abishai came to the people by night; and, behold, Saul lay sleeping within the place of the wagons, with his spear stuck in the ground at his head; and Abner and the people lay around him. + +Then Abishai said to David, “God has delivered up your enemy into your hand today. Now therefore please let me strike him with the spear to the earth at one stroke, and I will not strike him the second time.” + +

+

David said to Abishai, “Don’t destroy him, for who can stretch out his hand against Yahweh’s anointed, and be guiltless?” + +David said, “As Yahweh lives, Yahweh will strike him; or his day shall come to die, or he shall go down into battle and perish. + +Yahweh forbid that I should stretch out my hand against Yahweh’s anointed; but now please take the spear that is at his head and the jar of water, and let’s go.” + +

+

So David took the spear and the jar of water from Saul’s head, and they went away. No man saw it, or knew it, nor did any awake; for they were all asleep, because a deep sleep from Yahweh had fallen on them. + +Then David went over to the other side, and stood on the top of the mountain far away, a great space being between them; + +and David cried to the people, and to Abner the son of Ner, saying, “Don’t you answer, Abner?” +

+

Then Abner answered, “Who are you who calls to the king?” + +

+

David said to Abner, “Aren’t you a man? Who is like you in Israel? Why then have you not kept watch over your lord the king? For one of the people came in to destroy your lord the king. + +This thing isn’t good that you have done. As Yahweh lives, you are worthy to die, because you have not kept watch over your lord, Yahweh’s anointed. Now see where the king’s spear is, and the jar of water that was at his head.” + +

+

Saul recognized David’s voice, and said, “Is this your voice, my son David?” +

+

David said, “It is my voice, my lord, O king.” + +He said, “Why does my lord pursue his servant? For what have I done? What evil is in my hand? + +Now therefore, please let my lord the king hear the words of his servant. If it is so that Yahweh has stirred you up against me, let him accept an offering. But if it is the children of men, they are cursed before Yahweh; for they have driven me out today that I shouldn’t cling to Yahweh’s inheritance, saying, ‘Go, serve other gods!’ + +Now therefore, don’t let my blood fall to the earth away from the presence of Yahweh; for the king of Israel has come out to seek a flea, as when one hunts a partridge in the mountains.” + +

+

Then Saul said, “I have sinned. Return, my son David; for I will no more do you harm, because my life was precious in your eyes today. Behold, I have played the fool, and have erred exceedingly.” + +

+

David answered, “Behold the spear, O king! Let one of the young men come over and get it. + +Yahweh will give to every man his righteousness and his faithfulness; because Yahweh delivered you into my hand today, and I wouldn’t stretch out my hand against Yahweh’s anointed. + +Behold, as your life was respected today in my eyes, so let my life be respected in Yahweh’s eyes, and let him deliver me out of all oppression.” + +

+

Then Saul said to David, “You are blessed, my son David. You will both do mightily, and will surely prevail.” +

+

So David went his way, and Saul returned to his place. + +

+ + +

David said in his heart, “I will now perish one day by the hand of Saul. There is nothing better for me than that I should escape into the land of the Philistines; and Saul will despair of me, to seek me any more in all the borders of Israel. So I will escape out of his hand.” + +David arose and passed over, he and the six hundred men who were with him, to Achish the son of Maoch, king of Gath. + +David lived 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. + +Saul was told that David had fled to Gath, so he stopped looking for him. + +

+

David said to Achish, “If now I have found favor in your eyes, let them give me a place in one of the cities in the country, that I may dwell there. For why should your servant dwell in the royal city with you?” + +Then Achish gave him Ziklag that day: therefore Ziklag belongs to the kings of Judah to this day. + +The number of the days that David lived in the country of the Philistines was a full year and four months. + +

+

David and his men went up and raided the Geshurites, the Girzites, and the Amalekites; for those were the inhabitants of the land who were of old, on the way to Shur, even to the land of Egypt. + +David struck the land, and saved no man or woman alive, and took away the sheep, the cattle, the donkeys, the camels, and the clothing. Then he returned, and came to Achish. + +

+

Achish said, “Against whom have you made a raid today?” +

+

David said, “Against the South of Judah, against the South of the Jerahmeelites, and against the South of the Kenites.” + +David saved neither man nor woman alive to bring them to Gath, saying, “Lest they should tell about us, saying, ‘David did this, and this has been his way all the time he has lived in the country of the Philistines.’” + +

+

Achish believed David, saying, “He has made his people Israel utterly to abhor him. Therefore he will be my servant forever.” + +

+ + +

In those days, the Philistines gathered their armies together for warfare, to fight with Israel. Achish said to David, “Know assuredly that you will go out with me in the army, you and your men.” + +

+

David said to Achish, “Therefore you will know what your servant can do.” +

+

Achish said to David, “Therefore I will make you my bodyguard forever.” + +

+

Now Samuel was dead, and all Israel had mourned for him and buried him in Ramah, even in his own city. Saul had sent away those who had familiar spirits and the wizards out of the land. + +

+

The Philistines gathered themselves together, and came and encamped in Shunem; and Saul gathered all Israel together, and they encamped in Gilboa. + +When Saul saw the army of the Philistines, he was afraid, and his heart trembled greatly. + +When Saul inquired of Yahweh, Yahweh didn’t answer him by dreams, by Urim, or by prophets. + +Then Saul said to his servants, “Seek for me a woman who has a familiar spirit, that I may go to her and inquire of her.” +

+

His servants said to him, “Behold, there is a woman who has a familiar spirit at Endor.” + +

+

Saul disguised himself and put on other clothing, and went, he and two men with him, and they came to the woman by night. Then he said, “Please consult for me by the familiar spirit, and bring me up whomever I shall name to you.” + +

+

The woman said to him, “Behold, you know what Saul has done, how he has cut off those who have familiar spirits and the wizards out of the land. Why then do you lay a snare for my life, to cause me to die?” + +

+

Saul swore to her by Yahweh, saying, “As Yahweh lives, no punishment will happen to you for this thing.” + +

+

Then the woman said, “Whom shall I bring up to you?” +

+

He said, “Bring Samuel up for me.” + +

+

When the woman saw Samuel, she cried with a loud voice; and the woman spoke to Saul, saying, “Why have you deceived me? For you are Saul!” + +

+

The king said to her, “Don’t be afraid! What do you see?” +

+

The woman said to Saul, “I see a god coming up out of the earth.” + +

+

He said to her, “What does he look like?” +

+

She said, “An old man comes up. He is covered with a robe.” Saul perceived that it was Samuel, and he bowed with his face to the ground, and showed respect. + +

+

Samuel said to Saul, “Why have you disturbed me, to bring me up?” +

+

Saul answered, “I am very distressed; for the Philistines make war against me, and God has departed from me, and answers me no more, by prophets, or by dreams. Therefore I have called you, that you may make known to me what I shall do.” + +

+

Samuel said, “Why then do you ask me, since Yahweh has departed from you and has become your adversary? + +Yahweh has done to you as he spoke by me. Yahweh has torn the kingdom out of your hand and given it to your neighbor, even to David. + +Because you didn’t obey Yahweh’s voice, and didn’t execute his fierce wrath on Amalek, therefore Yahweh has done this thing to you today. + +Moreover Yahweh will deliver Israel also with you into the hand of the Philistines; and tomorrow you and your sons will be with me. Yahweh will deliver the army of Israel also into the hand of the Philistines.” + +

+

Then Saul fell immediately his full length on the earth, and was terrified, because of Samuel’s words. There was no strength in him, for he had eaten no bread all day long or all night long. + +

+

The woman came to Saul and saw that he was very troubled, and said to him, “Behold, your servant has listened to your voice, and I have put my life in my hand, and have listened to your words which you spoke to me. + +Now therefore, please listen also to the voice of your servant, and let me set a morsel of bread before you. Eat, that you may have strength when you go on your way.” + +

+

But he refused, and said, “I will not eat.” But his servants, together with the woman, constrained him; and he listened to their voice. So he arose from the earth and sat on the bed. + +The woman had a fattened calf in the house. She hurried and killed it; and she took flour and kneaded it, and baked unleavened bread of it. + +She brought it before Saul and before his servants, and they ate. Then they rose up and went away that night. + +

+ + +

Now the Philistines gathered together all their armies to Aphek; and the Israelites encamped by the spring which is in Jezreel. + +The lords of the Philistines passed on by hundreds and by thousands; and David and his men passed on in the rear with Achish. + +

+

Then the princes of the Philistines said, “What about these Hebrews?” +

+

Achish said to the princes of the Philistines, “Isn’t this David, the servant of Saul the king of Israel, who has been with me these days, or rather these years? I have found no fault in him since he fell away until today.” + +

+

But the princes of the Philistines were angry with him; and the princes of the Philistines said to him, “Make the man return, that he may go back to his place where you have appointed him, and let him not go down with us to battle, lest in the battle he become an adversary to us. For with what should this fellow reconcile himself to his lord? Should it not be with the heads of these men? + +Isn’t this David, of whom people sang to one another in dances, saying, +

+Saul has slain his thousands, + +and David his ten thousands’?” + + +

Then Achish called David and said to him, “As Yahweh lives, you have been upright, and your going out and your coming in with me in the army is good in my sight; for I have not found evil in you since the day of your coming to me to this day. Nevertheless, the lords don’t favor you. + +Therefore now return, and go in peace, that you not displease the lords of the Philistines.” + +

+

David said to Achish, “But what have I done? What have you found in your servant so long as I have been before you to this day, that I may not go and fight against the enemies of my lord the king?” + +

+

Achish answered David, “I know that you are 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.’ + +Therefore now rise up early in the morning with the servants of your lord who have come with you; and as soon as you are up early in the morning and have light, depart.” + +

+

So David rose up early, he and his men, to depart in the morning, to return into the land of the Philistines; and the Philistines went up to Jezreel. + +

+ + +

When David and his men had come to Ziklag on the third day, the Amalekites had made a raid on the South and on Ziklag, and had struck Ziklag and burned it with fire, + +and had taken captive the women and all who were in it, both small and great. They didn’t kill any, but carried them off and went their way. + +When David and his men came to the city, behold, it was burned with fire; and their wives, their sons, and their daughters were taken captive. + +Then David and the people who were with him lifted up their voice and wept until they had no more power to weep. + +David’s two wives were taken captive, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite. + +David was greatly distressed, for the people spoke of stoning him, because the souls of all the people were grieved, every man for his sons and for his daughters; but David strengthened himself in Yahweh his God. + +David said to Abiathar the priest, the son of Ahimelech, “Please bring the ephod here to me.” +

+

Abiathar brought the ephod to David. + +David inquired of Yahweh, saying, “If I pursue after this troop, will I overtake them?” +

+

He answered him, “Pursue, for you will surely overtake them, and will without fail recover all.” + +

+

So David went, he and the six hundred men who were with him, and came to the brook Besor, where those who were left behind stayed. + +But David pursued, he and four hundred men; for two hundred stayed behind, who were so faint that they couldn’t go over the brook Besor. + +They found an Egyptian in the field, and brought him to David, and gave him bread, and he ate; and they gave him water to drink. + +They gave him a piece of a cake of figs and two clusters of raisins. When he had eaten, his spirit came again to him; for he had eaten no bread, and drank no water for three days and three nights. + +David asked him, “To whom do you belong? Where are you from?” +

+

He said, “I am a young man of Egypt, servant to an Amalekite; and my master left me, because three days ago I got sick. + +We made a raid on the South of the Cherethites, and on that which belongs to Judah, and on the South of Caleb; and we burned Ziklag with fire.” + +

+

David said to him, “Will you bring me down to this troop?” +

+

He said, “Swear to me by God that you will not kill me and not deliver me up into the hands of my master, and I will bring you down to this troop.” + +

+

When he had brought him down, behold, they were spread around over all the ground, eating, drinking, and dancing, because of all the great plunder that they had taken out of the land of the Philistines, and out of the land of Judah. + +David struck them from the twilight even to the evening of the next day. Not a man of them escaped from there, except four hundred young men who rode on camels and fled. + +David recovered all that the Amalekites had taken, and David rescued his two wives. + +There was nothing lacking to them, neither small nor great, neither sons nor daughters, neither plunder, nor anything that they had taken. David brought them all back. + +David took all the flocks and the herds, which they drove before those other livestock, and said, “This is David’s plunder.” + +

+

David came to the two hundred men, who were so faint that they could not follow David, whom also they had made to stay at the brook Besor; and they went out to meet David, and to meet the people who were with him. When David came near to the people, he greeted them. + +Then all the wicked men and worthless fellows of those who went with David answered and said, “Because they didn’t go with us, we will not give them anything of the plunder that we have recovered, except to every man his wife and his children, that he may lead them away and depart.” + +

+

Then David said, “Do not do so, my brothers, with that which Yahweh has given to us, who has preserved us, and delivered the troop that came against us into our hand. + +Who will listen to you in this matter? For as his share is who goes down to the battle, so shall his share be who stays with the baggage. They shall share alike.” + +It was so from that day forward that he made it a statute and an ordinance for Israel to this day. + +

+

When David came to Ziklag, he sent some of the plunder to the elders of Judah, even to his friends, saying, “Behold, a present for you from the plunder of Yahweh’s enemies.” + +He sent it to those who were in Bethel, to those who were in Ramoth of the South, to those who were in Jattir, + +to those who were in Aroer, to those who were in Siphmoth, to those who were in Eshtemoa, + +to those who were in Racal, to those who were in the cities of the Jerahmeelites, to those who were in the cities of the Kenites, + +to those who were in Hormah, to those who were in Borashan, to those who were in Athach, + +to those who were in Hebron, and to all the places where David himself and his men used to stay. + +

+ + +

Now the Philistines fought against Israel; and the men of Israel fled from before the Philistines, and fell down slain on Mount Gilboa. + +The Philistines overtook Saul and his sons; and the Philistines killed Jonathan, Abinadab, and Malchishua, the sons of Saul. + +The battle went hard against Saul, and the archers overtook him; and he was greatly distressed by reason of the archers. + +Then Saul said to his armor bearer, “Draw your sword, and thrust me through with it, lest these uncircumcised come and thrust me through and abuse me!” But his armor bearer would not, for he was terrified. Therefore Saul took his sword and fell on it. + +When his armor bearer saw that Saul was dead, he likewise fell on his sword, and died with him. + +So Saul died with his three sons, his armor bearer, and all his men that same day together. + +

+

When the men of Israel who were on the other side of the valley, and those who were beyond the Jordan, saw that the men of Israel fled and that Saul and his sons were dead, they abandoned the cities and fled; and the Philistines came and lived in them. + +On the next day, when the Philistines came to strip the slain, they found Saul and his three sons fallen on Mount Gilboa. + +They cut off his head, stripped off his armor, and sent into the land of the Philistines all around, to carry the news to the house of their idols and to the people. + +They put his armor in the house of the Ashtaroth, and they fastened his body to the wall of Beth Shan. + +When the inhabitants of Jabesh Gilead heard what the Philistines had done to Saul, + +all the valiant men arose, went all night, and took the body of Saul and the bodies of his sons from the wall of Beth Shan; and they came to Jabesh and burned them there. + +They took their bones and buried them under the tamarisk31:13 +or, salt cedar tree in Jabesh, and fasted seven days. + +

+
+World English Bible (WEB) +2 Samuel +The Second Book of Samuel +2 Samuel +2Sa +

The Second Book of Samuel +

+ + +

After the death of Saul, when David had returned from the slaughter of the Amalekites, and David had stayed two days in Ziklag, + +on the third day, behold,1:2 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. a man came out of the camp from Saul, with his clothes torn and earth on his head. When he came to David, he fell to the earth and showed respect. + +

+

David said to him, “Where do you come from?” +

+

He said to him, “I have escaped out of the camp of Israel.” + +

+

David said to him, “How did it go? Please tell me.” +

+

He answered, “The people have fled from the battle, and many of the people also have fallen and are dead. Saul and Jonathan his son are dead also.” + +

+

David said to the young man who told him, “How do you know that Saul and Jonathan his son are dead?” + +

+

The young man who told him said, “As I happened by chance on Mount Gilboa, behold, Saul was leaning on his spear; and behold, the chariots and the horsemen followed close behind him. + +When he looked behind him, he saw me and called to me. I answered, ‘Here I am.’ + +He said to me, ‘Who are you?’ I answered him, ‘I am an Amalekite.’ + +He said to me, ‘Please stand beside me, and kill me, for anguish has taken hold of me because my life lingers in me.’ + +So I stood beside him and killed him, because I was sure that he could not live after he had fallen. I took the crown that was on his head and the bracelet that was on his arm, and have brought them here to my lord.” + +

+

Then David took hold of his clothes and tore them; and all the men who were with him did likewise. + +They mourned, wept, and fasted until evening for Saul and for Jonathan his son, and for the people of Yahweh,1:12 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. and for the house of Israel, because they had fallen by the sword. + +

+

David said to the young man who told him, “Where are you from?” +

+

He answered, “I am the son of a foreigner, an Amalekite.” + +

+

David said to him, “Why were you not afraid to stretch out your hand to destroy Yahweh’s anointed?” + +David called one of the young men and said, “Go near, and cut him down!” He struck him so that he died. + +David said to him, “Your blood be on your head, for your mouth has testified against you, saying, ‘I have slain Yahweh’s anointed.’” + +

+

David lamented with this lamentation over Saul and over Jonathan his son + +(and he commanded them to teach the children of Judah the song of the bow; behold, it is written in the book of Jashar): + +

+Your glory, Israel, was slain on your high places! + +How the mighty have fallen! + + +Don’t tell it in Gath. + +Don’t publish it in the streets of Ashkelon, + +lest the daughters of the Philistines rejoice, + +lest the daughters of the uncircumcised triumph. + + +You mountains of Gilboa, + +let there be no dew or rain on you, and no fields of offerings; + +for there the shield of the mighty was defiled and cast away, + +the shield of Saul was not anointed with oil. + + +From the blood of the slain, + +from the fat of the mighty, + +Jonathan’s bow didn’t turn back. + +Saul’s sword didn’t return empty. + + +Saul and Jonathan were lovely and pleasant in their lives. + +In their death, they were not divided. + +They were swifter than eagles. + +They were stronger than lions. + + +You daughters of Israel, weep over Saul, + +who clothed you delicately in scarlet, + +who put ornaments of gold on your clothing. + + +How the mighty have fallen in the middle of the battle! + +Jonathan was slain on your high places. + + +I am distressed for you, my brother Jonathan. + +You have been very pleasant to me. + +Your love to me was wonderful, + +surpassing the love of women. + + +How the mighty have fallen, + +and the weapons of war have perished!” + + + + +

After this, David inquired of Yahweh, saying, “Shall I go up into any of the cities of Judah?” +

+

Yahweh said to him, “Go up.” +

+

David said, “Where shall I go up?” +

+

He said, “To Hebron.” + +

+

So David went up there with his two wives, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite. + +David brought up his men who were with him, every man with his household. They lived in the cities of Hebron. + +The men of Judah came, and there they anointed David king over the house of Judah. They told David, “The men of Jabesh Gilead were those who buried Saul.” + +David sent messengers to the men of Jabesh Gilead, and said to them, “Blessed are you by Yahweh, that you have shown this kindness to your lord, even to Saul, and have buried him. + +Now may Yahweh show loving kindness and truth to you. I also will reward you for this kindness, because you have done this thing. + +Now therefore let your hands be strong, and be valiant; for Saul your lord is dead, and also the house of Judah have anointed me king over them.” + +

+

Now Abner the son of Ner, captain of Saul’s army, had taken Ishbosheth the son of Saul and brought him over to Mahanaim. + +He made him king over Gilead, over the Ashurites, over Jezreel, over Ephraim, over Benjamin, and over all Israel. + +Ishbosheth, Saul’s son, was forty years old when he began to reign over Israel, and he reigned two years. But the house of Judah followed David. + +The time that David was king in Hebron over the house of Judah was seven years and six months. + +

+

Abner the son of Ner, and the servants of Ishbosheth the son of Saul, went out from Mahanaim to Gibeon. + +Joab the son of Zeruiah and David’s servants went out, and met them 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. + +Abner said to Joab, “Please let the young men arise and compete before us!” +

+

Joab said, “Let them arise!” + +Then they arose and went over by number: twelve for Benjamin and for Ishbosheth the son of Saul, and twelve of David’s servants. + +They each caught his opponent by the head and thrust his sword in his fellow’s side; so they fell down together. Therefore that place in Gibeon was called Helkath Hazzurim.2:16 +“Helkath Hazzurim” means “field of daggers”. + +The battle was very severe that day; and Abner was beaten, and the men of Israel, before David’s servants. + +The three sons of Zeruiah were there: Joab, Abishai, and Asahel. Asahel was as light of foot as a wild gazelle. + +Asahel pursued Abner. He didn’t turn to the right hand or to the left from following Abner. + +

+

Then Abner looked behind him and said, “Is that you, Asahel?” +

+

He answered, “It is.” + +

+

Abner said to him, “Turn away to your right hand or to your left, and grab one of the young men, and take his armor.” But Asahel would not turn away from following him. + +Abner said again to Asahel, “Turn away from following me. Why should I strike you to the ground? How then could I look Joab your brother in the face?” + +However, he refused to turn away. Therefore Abner with the back end of the spear struck him in the body, so that the spear came out behind him; and he fell down there and died in the same place. As many as came to the place where Asahel fell down and died stood still. + +

+

But Joab and Abishai pursued Abner. The sun went down when they had come to the hill of Ammah, that lies before Giah by the way of the wilderness of Gibeon. + +The children of Benjamin gathered themselves together after Abner and became one band, and stood on the top of a hill. + +Then Abner called to Joab, and said, “Shall the sword devour forever? Don’t you know that it will be bitterness in the latter end? How long will it be then, before you ask the people to return from following their brothers?” + +

+

Joab said, “As God2:27 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). lives, if you had not spoken, surely then in the morning the people would have gone away, and not each followed his brother.” + +So Joab blew the trumpet; and all the people stood still and pursued Israel no more, and they fought no more. + +Abner and his men went all that night through the Arabah; and they passed over the Jordan, and went through all Bithron, and came to Mahanaim. + +

+

Joab returned from following Abner; and when he had gathered all the people together, nineteen men of David’s and Asahel were missing. + +But David’s servants had struck Benjamin and Abner’s men so that three hundred sixty men died. + +They took up Asahel and buried him in the tomb of his father, which was in Bethlehem. Joab and his men went all night, and the day broke on them at Hebron. + +

+ + +

Now there was a long war between Saul’s house and David’s house. David grew stronger and stronger, but Saul’s house grew weaker and weaker. + +Sons were born to David in Hebron. His firstborn was Amnon, of Ahinoam the Jezreelitess; + +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; + +and the fourth, Adonijah the son of Haggith; and the fifth, Shephatiah the son of Abital; + +and the sixth, Ithream, of Eglah, David’s wife. These were born to David in Hebron. + +

+

While there was war between Saul’s house and David’s house, Abner made himself strong in Saul’s house. + +Now Saul had a concubine, whose name was Rizpah, the daughter of Aiah; and Ishbosheth said to Abner, “Why have you gone in to my father’s concubine?” + +

+

Then Abner was very angry about Ishbosheth’s words, and said, “Am I a dog’s head that belongs to Judah? Today I show kindness to your father Saul’s house, to his brothers, and to his friends, and have not delivered you into the hand of David; and yet you charge me today with a fault concerning this woman! + +God do so to Abner, and more also, if, as Yahweh has sworn to David, I don’t do even so to him: + +to transfer the kingdom from Saul’s house, and to set up David’s throne over Israel and over Judah, from Dan even to Beersheba.” + +

+

He could not answer Abner another word, because he was afraid of him. + +

+

Abner sent messengers to David on his behalf, saying, “Whose is the land?” and saying, “Make your alliance with me, and behold, my hand will be with you to bring all Israel around to you.” + +

+

David said, “Good. I will make a treaty with you, but one thing I require of you. That is, you will not see my face unless you first bring Michal, Saul’s daughter, when you come to see my face.” + +David sent messengers to Ishbosheth, Saul’s son, saying, “Deliver me my wife Michal, whom I was given to marry for one hundred foreskins of the Philistines.” + +

+

Ishbosheth sent and took her from her husband, Paltiel the son of Laish. + +Her husband went with her, weeping as he went, and followed her to Bahurim. Then Abner said to him, “Go! Return!” and he returned. + +

+

Abner had communication with the elders of Israel, saying, “In times past, you sought for David to be king over you. + +Now then do it! For Yahweh has 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.’” + +

+

Abner also spoke 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 to the whole house of Benjamin. + +So Abner came to David to Hebron, and twenty men with him. David made Abner and the men who were with him a feast. + +Abner said to David, “I will arise and go, and will gather all Israel to my lord the king, that they may make a covenant with you, and that you may reign over all that your soul desires.” David sent Abner away; and he went in peace. + +

+

Behold, David’s servants and Joab came from a raid and brought in a great plunder with them; but Abner was not with David in Hebron, for he had sent him away, and he had gone in peace. + +When Joab and all the army who was with him had come, they told Joab, “Abner the son of Ner came to the king, and he has sent him away, and he has gone in peace.” + +

+

Then Joab came to the king and said, “What have you done? Behold, Abner came to you. Why is it that you have sent him away, and he is already gone? + +You know Abner the son of Ner. He came to deceive you, and to know your going out and your coming in, and to know all that you do.” + +

+

When Joab had come out from David, he sent messengers after Abner, and they brought him back from the well of Sirah; but David didn’t know it. + +When Abner had returned to Hebron, Joab took him aside into the middle of the gate to speak with him quietly, and struck him there in the body, so that he died for the blood of Asahel his brother. + +Afterward, when David heard it, he said, “I and my kingdom are guiltless before Yahweh forever of the blood of Abner the son of Ner. + +Let it fall on the head of Joab and on all his father’s house. Let there not fail from the house of Joab one who has a discharge, or who is a leper, or who leans on a staff, or who falls by the sword, or who lacks bread.” + +So Joab and Abishai his brother killed Abner, because he had killed their brother Asahel at Gibeon in the battle. + +

+

David said to Joab and to all the people who were with him, “Tear your clothes, and clothe yourselves with sackcloth, and mourn in front of Abner.” King David followed the bier. + +They buried Abner in Hebron; and the king lifted up his voice and wept at Abner’s grave; and all the people wept. + +The king lamented for Abner, and said, “Should Abner die as a fool dies? + +Your hands weren’t bound, and your feet weren’t put into fetters. As a man falls before the children of iniquity, so you fell.” +

+

All the people wept again over him. + +All the people came to urge David to eat bread while it was yet day; but David swore, saying, “God do so to me, and more also, if I taste bread or anything else, until the sun goes down.” + +

+

All the people took notice of it, and it pleased them, as whatever the king did pleased all the people. + +So all the people and all Israel understood that day that it was not of the king to kill Abner the son of Ner. + +The king said to his servants, “Don’t you know that a prince and a great man has fallen today in Israel? + +I am weak today, though anointed king. These men, the sons of Zeruiah are too hard for me. May Yahweh reward the evildoer according to his wickedness.” + +

+ + +

When Saul’s son heard that Abner was dead in Hebron, his hands became feeble, and all the Israelites were troubled. + +Saul’s son had two men who were captains of raiding bands. The name of one was Baanah and the name of the other Rechab, the sons of Rimmon the Beerothite, of the children of Benjamin (for Beeroth also is considered a part of Benjamin; + +and the Beerothites fled to Gittaim, and have lived as foreigners there until today). + +

+

Now Jonathan, Saul’s son, had a son who was lame in his feet. He was five years old when the news came about Saul and Jonathan out of Jezreel; and his nurse picked him up and fled. As she hurried to flee, he fell and became lame. His name was Mephibosheth. + +

+

The sons of Rimmon the Beerothite, Rechab and Baanah, went out and came at about the heat of the day to the house of Ishbosheth as he took his rest at noon. + +They came there into the middle of the house as though they would have fetched wheat, and they struck him in the body; and Rechab and Baanah his brother escaped. + +Now when they came into the house as he lay on his bed in his bedroom, they struck him, killed him, beheaded him, and took his head, and went by the way of the Arabah all night. + +They brought the head of Ishbosheth to David to Hebron, and said to the king, “Behold, the head of Ishbosheth, the son of Saul, your enemy, who sought your life! Yahweh has avenged my lord the king today of Saul and of his offspring.4:8 +or, seed” + +

+

David answered Rechab and Baanah his brother, the sons of Rimmon the Beerothite, and said to them, “As Yahweh lives, who has redeemed my soul out of all adversity, + +when someone told me, ‘Behold, Saul is dead,’ thinking that he brought good news, I seized him and killed him in Ziklag, which was the reward I gave him for his news. + +How much more, when wicked men have slain a righteous person in his own house on his bed, should I not now require his blood from your hand, and rid the earth of you?” + +David commanded his young men, and they killed them, cut off their hands and their feet, and hanged them up beside the pool in Hebron. But they took the head of Ishbosheth and buried it in Abner’s grave in Hebron. + +

+ + +

Then all the tribes of Israel came to David at Hebron and spoke, saying, “Behold, we are your bone and your flesh. + +In times past, when Saul was king over us, it was you who led Israel out and in. Yahweh said to you, ‘You will be shepherd of my people Israel, and you will be prince over Israel.’” + +So all the elders of Israel came to the king to Hebron, and King David made a covenant with them in Hebron before Yahweh; and they anointed David king over Israel. + +

+

David was thirty years old when he began to reign, and he reigned forty years. + +In Hebron he reigned over Judah seven years and six months, and in Jerusalem he reigned thirty-three years over all Israel and Judah. + +

+

The king and his men went to Jerusalem against the Jebusites, the inhabitants of the land, who spoke to David, saying, “The blind and the lame will keep you out of here,” thinking, “David can’t come in here.” + +Nevertheless David took the stronghold of Zion. This is David’s city. + +David said on that day, “Whoever strikes the Jebusites, let him go up to the watercourse and strike those lame and blind, who are hated by David’s soul.” Therefore they say, “The blind and the lame can’t come into the house.” + +

+

David lived in the stronghold, and called it David’s city. David built around from Millo and inward. + +David grew greater and greater, for Yahweh, the God of Armies, was with him. + +Hiram king of Tyre sent messengers to David, with cedar trees, carpenters, and masons; and they built David a house. + +David perceived that Yahweh had established him king over Israel, and that he had exalted his kingdom for his people Israel’s sake. + +

+

David took more concubines and wives for himself out of Jerusalem, after he had come from Hebron; and more sons and daughters were born to David. + +These are the names of those who were born to him in Jerusalem: Shammua, Shobab, Nathan, Solomon, + +Ibhar, Elishua, Nepheg, Japhia, + +Elishama, Eliada, and Eliphelet. + +

+

When the Philistines heard that they had anointed David king over Israel, all the Philistines went up to seek David, but David heard about it and went down to the stronghold. + +Now the Philistines had come and spread themselves in the valley of Rephaim. + +David inquired of Yahweh, saying, “Shall I go up against the Philistines? Will you deliver them into my hand?” +

+

Yahweh said to David, “Go up; for I will certainly deliver the Philistines into your hand.” + +

+

David came to Baal Perazim, and David struck them there. Then he said, “Yahweh has broken my enemies before me, like the breach of waters.” Therefore he called the name of that place Baal Perazim.5:20 +“Baal Perazim” means “Lord who breaks out”. + +They left their images there, and David and his men took them away. + +

+

The Philistines came up yet again and spread themselves in the valley of Rephaim. + +When David inquired of Yahweh, he said, “You shall not go up. Circle around behind them, and attack them in front of the mulberry trees. + +When you hear the sound of marching in the tops of the mulberry trees, then stir yourself up; for then Yahweh has gone out before you to strike the army of the Philistines.” + +

+

David did so, as Yahweh commanded him, and struck the Philistines all the way from Geba to Gezer. + +

+ + +

David again gathered together all the chosen men of Israel, thirty thousand. + +David arose and went with all the people who were with him from Baale Judah, to bring up from there God’s ark, which is called by the Name, even the name of Yahweh of Armies who sits above the cherubim. + +They set God’s ark on a new cart, and brought it out of Abinadab’s house that was on the hill; and Uzzah and Ahio, the sons of Abinadab, drove the new cart. + +They brought it out of Abinadab’s house which was in the hill, with God’s ark; and Ahio went before the ark. + +David and all the house of Israel played before Yahweh with all kinds of instruments made of cypress wood, with harps, with stringed instruments, with tambourines, with castanets, and with cymbals. + +

+

When they came to the threshing floor of Nacon, Uzzah reached for God’s ark and took hold of it, for the cattle stumbled. + +Yahweh’s anger burned against Uzzah, and God struck him there for his error; and he died there by God’s ark. + +David was displeased because Yahweh had broken out against Uzzah; and he called that place Perez Uzzah6:8 +“Perez Uzzah” means “outbreak against Uzzah”. to this day. + +David was afraid of Yahweh that day; and he said, “How could Yahweh’s ark come to me?” + +So David would not move Yahweh’s ark to be with him in David’s city; but David carried it aside into Obed-Edom the Gittite’s house. + +Yahweh’s ark remained in Obed-Edom the Gittite’s house three months; and Yahweh blessed Obed-Edom and all his house. + +King David was told, “Yahweh has blessed the house of Obed-Edom, and all that belongs to him, because of God’s ark.” +

+

So David went and brought up God’s ark from the house of Obed-Edom into David’s city with joy. + +When those who bore Yahweh’s ark had gone six paces, he sacrificed an ox and a fattened calf. + +David danced before Yahweh with all his might; and David was clothed in a linen ephod. + +So David and all the house of Israel brought up Yahweh’s ark with shouting and with the sound of the trumpet. + +

+

As Yahweh’s ark came into David’s city, Michal the daughter of Saul looked out through the window and saw King David leaping and dancing before Yahweh; and she despised him in her heart. + +They brought in Yahweh’s ark, and set it in its place in the middle of the tent that David had pitched for it; and David offered burnt offerings and peace offerings before Yahweh. + +When David had finished offering the burnt offering and the peace offerings, he blessed the people in the name of Yahweh of Armies. + +He gave to all the people, even among the whole multitude of Israel, both to men and women, to everyone a portion of bread, dates, and raisins. So all the people departed, each to his own house. + +

+

Then David returned to bless his household. Michal the daughter of Saul came out to meet David, and said, “How glorious the king of Israel was today, who uncovered himself today in the eyes of his servants’ maids, as one of the vain fellows shamelessly uncovers himself!” + +

+

David said to Michal, “It was before Yahweh, who chose me above your father, and above all his house, to appoint me prince over the people of Yahweh, over Israel. Therefore I will celebrate before Yahweh. + +I will be yet more undignified than this, and will be worthless in my own sight. But the maids of whom you have spoken will honor me.” + +

+

Michal the daughter of Saul had no child to the day of her death. + +

+ + +

When the king lived in his house, and Yahweh had given him rest from all his enemies all around, + +the king said to Nathan the prophet, “See now, I dwell in a house of cedar, but God’s ark dwells within curtains.” + +

+

Nathan said to the king, “Go, do all that is in your heart, for Yahweh is with you.” + +

+

That same night, Yahweh’s word came to Nathan, saying, + +Go and tell my servant David, ‘Yahweh says, “Should you build me a house for me to dwell in? + +For I have not lived in a house since the day that I brought the children of Israel up out of Egypt, even to this day, but have moved around in a tent and in a tabernacle. + +In all places in which I have walked with all the children of Israel, did I say a word to anyone from the tribes of Israel whom I commanded to be shepherd of my people Israel, saying, ‘Why have you not built me a house of cedar?’”’ + +Now therefore tell my servant David this: ‘Yahweh of Armies says, “I took you from the sheep pen, from following the sheep, to be prince over my people, over Israel. + +I have been with you wherever you went, and have cut off all your enemies from before you. I will make you a great name, like the name of the great ones who are on the earth. + +I will appoint a place for my people Israel, and will plant them, that they may dwell in their own place and be moved no more. The children of wickedness will not afflict them any more, as at the first, + +and as from the day that I commanded judges to be over my people Israel. I will cause you to rest from all your enemies. Moreover Yahweh tells you that Yahweh will make you a house. + +When your days are fulfilled and you sleep with your fathers, I will set up your offspring after you, who will proceed out of your body, and I will establish his kingdom. + +He will build a house for my name, and I will establish the throne of his kingdom forever. + +I will be his father, and he will be my son. If he commits iniquity, I will chasten him with the rod of men and with the stripes of the children of men; + +but my loving kindness will not depart from him, as I took it from Saul, whom I put away before you. + +Your house and your kingdom will be made sure forever before you. Your throne will be established forever.”’” + +Nathan spoke to David all these words, and according to all this vision. + +

+

Then David the king went in and sat before Yahweh; and he said, “Who am I, Lord7:18 +The word translated “Lord” is “Adonai.” Yahweh, and what is my house, that you have brought me this far? + +This was yet a small thing in your eyes, Lord Yahweh, but you have spoken also of your servant’s house for a great while to come; and this among men, Lord Yahweh! + +What more can David say to you? For you know your servant, Lord Yahweh. + +For your word’s sake, and according to your own heart, you have worked all this greatness, to make your servant know it. + +Therefore you are great, Yahweh God. For there is no one like you, neither is there any God besides you, according to all that we have heard with our ears. + +What one nation on the earth is like your people, even like Israel, whom God went to redeem to himself for a people, and to make himself a name, and to do great things for you, and awesome things for your land, before your people, whom you redeemed to yourself out of Egypt, from the nations and their gods? + +You established for yourself your people Israel to be your people forever; and you, Yahweh, became their God. + +

+

Now, Yahweh God, the word that you have spoken concerning your servant, and concerning his house, confirm it forever, and do as you have spoken. + +Let your name be magnified forever, saying, ‘Yahweh of Armies is God over Israel; and the house of your servant David will be established before you.’ + +For you, Yahweh of Armies, the God of Israel, have revealed to your servant, saying, ‘I will build you a house.’ Therefore your servant has found in his heart to pray this prayer to you. + +

+

Now, O Lord Yahweh, you are God, and your words are truth, and you have promised this good thing to your servant. + +Now therefore, let it please you to bless the house of your servant, that it may continue forever before you; for you, Lord Yahweh, have spoken it. Let the house of your servant be blessed forever with your blessing.” + +

+ + +

After this, David struck the Philistines and subdued them; and David took the bridle of the mother city out of the hand of the Philistines. + +He defeated Moab, and measured them with the line, making them to lie down on the ground; and he measured two lines to put to death, and one full line to keep alive. The Moabites became servants to David, and brought tribute. + +

+

David also struck Hadadezer the son of Rehob, king of Zobah, as he went to recover his dominion at the River. + +David took from him one thousand seven hundred horsemen and twenty thousand footmen. David hamstrung the chariot horses, but reserved enough of them for one hundred chariots. + +When the Syrians of Damascus came to help Hadadezer king of Zobah, David struck twenty two thousand men of the Syrians. + +Then David put garrisons in Syria of Damascus; and the Syrians became servants to David, and brought tribute. Yahweh gave victory to David wherever he went. + +David took the shields of gold that were on the servants of Hadadezer, and brought them to Jerusalem. + +From Betah and from Berothai, cities of Hadadezer, King David took a great quantity of bronze. + +

+

When Toi king of Hamath heard that David had struck all the army of Hadadezer, + +then Toi sent Joram his son to King David to greet him and to bless him, because he had fought against Hadadezer and struck him; for Hadadezer had wars with Toi. Joram brought with him vessels of silver, vessels of gold, and vessels of bronze. + +King David also dedicated these to Yahweh, with the silver and gold that he dedicated of all the nations which he subdued— + +of Syria, of Moab, of the children of Ammon, of the Philistines, of Amalek, and of the plunder of Hadadezer, son of Rehob, king of Zobah. + +

+

David earned a reputation when he returned from striking down eighteen thousand men of the Syrians in the Valley of Salt. + +He put garrisons in Edom. Throughout all Edom, he put garrisons, and all the Edomites became servants to David. Yahweh gave victory to David wherever he went. + +

+

David reigned over all Israel; and David executed justice and righteousness for all his people. + +Joab the son of Zeruiah was over the army, Jehoshaphat the son of Ahilud was recorder, + +Zadok the son of Ahitub and Ahimelech the son of Abiathar were priests, Seraiah was scribe, + +Benaiah the son of Jehoiada was over the Cherethites and the Pelethites; and David’s sons were chief ministers. + +

+ + +

David said, “Is there yet any who is left of Saul’s house, that I may show him kindness for Jonathan’s sake?” + +There was of Saul’s house a servant whose name was Ziba, and they called him to David; and the king said to him, “Are you Ziba?” +

+

He said, “I am your servant.” + +

+

The king said, “Is there not yet any of Saul’s house, that I may show the kindness of God to him?” +

+

Ziba said to the king, “Jonathan still has a son, who is lame in his feet.” + +

+

The king said to him, “Where is he?” +

+

Ziba said to the king, “Behold, he is in the house of Machir the son of Ammiel, in Lo Debar.” + +

+

Then King David sent and brought him out of the house of Machir the son of Ammiel, from Lo Debar. + +Mephibosheth, the son of Jonathan, the son of Saul, came to David, fell on his face, and showed respect. David said, “Mephibosheth?” +

+

He answered, “Behold, your servant!” + +

+

David said to him, “Don’t be afraid, for I will surely show you kindness for Jonathan your father’s sake, and will restore to you all the land of Saul your father. You will eat bread at my table continually.” + +

+

He bowed down, and said, “What is your servant, that you should look at such a dead dog as I am?” + +

+

Then the king called to Ziba, Saul’s servant, and said to him, “All that belonged to Saul and to all his house I have given to your master’s son. + +Till the land for himyou, your sons, and your servants. Bring in the harvest, that your master’s son may have bread to eat; but Mephibosheth your master’s son will always eat bread at my table.” +

+

Now Ziba had fifteen sons and twenty servants. + +Then Ziba said to the king, “According to all that my lord the king commands his servant, so your servant will do.” So Mephibosheth ate at the king’s table like one of the king’s sons. + +Mephibosheth had a young son, whose name was Mica. All who lived in Ziba’s house were servants to Mephibosheth. + +So Mephibosheth lived in Jerusalem, for he ate continually at the king’s table. He was lame in both his feet. + +

+ + +

After this, the king of the children of Ammon died, and Hanun his son reigned in his place. + +David said, “I will show kindness to Hanun the son of Nahash, as his father showed kindness to me.” So David sent by his servants to comfort him concerning his father. David’s servants came into the land of the children of Ammon. + +

+

But the princes of the children of Ammon said to Hanun their lord, “Do you think that David honors your father, in that he has sent comforters to you? Hasn’t David sent his servants to you to search the city, to spy it out, and to overthrow it?” + +

+

So Hanun took David’s servants, shaved off one half of their beards, and cut off their garments in the middle, even to their buttocks, and sent them away. + +When they told David this, he sent to meet them, for the men were greatly ashamed. The king said, “Wait at Jericho until your beards have grown, and then return.” + +

+

When the children of Ammon saw that they had become odious to David, the children of Ammon sent and hired the Syrians of Beth Rehob and the Syrians of Zobah, twenty thousand footmen, and the king of Maacah with one thousand men, and the men of Tob twelve thousand men. + +When David heard of it, he sent Joab and all the army of the mighty men. + +The children of Ammon came out, and put the battle in array at the entrance of the gate. The Syrians of Zobah and of Rehob and the men of Tob and Maacah were by themselves in the field. + +Now when Joab saw that the battle was set against him before and behind, he chose of all the choice men of Israel and put them in array against the Syrians. + +The rest of the people he committed into the hand of Abishai his brother; and he put them in array against the children of Ammon. + +He said, “If the Syrians are too strong for me, then you shall help me; but if the children of Ammon are too strong for you, then I will come and help you. + +Be courageous, and let’s be strong for our people and for the cities of our God; and may Yahweh do what seems good to him.” + +So Joab and the people who were with him came near to the battle against the Syrians, and they fled before him. + +When the children of Ammon saw that the Syrians had fled, they likewise fled before Abishai, and entered into the city. Then Joab returned from the children of Ammon and came to Jerusalem. + +

+

When the Syrians saw that they were defeated by Israel, they gathered themselves together. + +Hadadezer sent and brought out the Syrians who were beyond the River; and they came to Helam, with Shobach the captain of the army of Hadadezer at their head. + +David was told that; and he gathered all Israel together, passed over the Jordan, and came to Helam. The Syrians set themselves in array against David and fought with him. + +The Syrians fled before Israel; and David killed seven hundred charioteers of the Syrians and forty thousand horsemen, and struck Shobach the captain of their army, so that he died there. + +When all the kings who were servants to Hadadezer saw that they were defeated before Israel, they made peace with Israel and served them. So the Syrians were afraid to help the children of Ammon any more. + +

+ + +

At the return of the year, at the time when kings go out, David sent Joab and his servants with him, and all Israel; and they destroyed the children of Ammon and besieged Rabbah. But David stayed at Jerusalem. + +At evening, David arose from his bed and walked on the roof of the king’s house. From the roof, he saw a woman bathing, and the woman was very beautiful to look at. + +David sent and inquired after the woman. One said, “Isn’t this Bathsheba, the daughter of Eliam, Uriah the Hittite’s wife?” + +

+

David sent messengers, and took her; and she came in to him, and he lay with her (for she was purified from her uncleanness); and she returned to her house. + +The woman conceived; and she sent and told David, and said, “I am with child.” + +

+

David sent to Joab, “Send me Uriah the Hittite.” Joab sent Uriah to David. + +When Uriah had come to him, David asked him how Joab did, and how the people fared, and how the war prospered. + +David said to Uriah, “Go down to your house and wash your feet.” Uriah departed out of the king’s house, and a gift from the king was sent after him. + +But Uriah slept at the door of the king’s house with all the servants of his lord, and didn’t go down to his house. + +When they had told David, saying, “Uriah didn’t go down to his house,” David said to Uriah, “Haven’t you come from a journey? Why didn’t you go down to your house?” + +

+

Uriah said to David, “The ark, Israel, and Judah, are staying in tents; and my lord Joab and the servants of my lord are encamped in the open field. Shall I then go into my house to eat and to drink, and to lie with my wife? As you live, and as your soul lives, I will not do this thing!” + +

+

David said to Uriah, “Stay here today also, and tomorrow I will let you depart.” So Uriah stayed in Jerusalem that day and the next day. + +When David had called him, he ate and drank before him; and he made him drunk. At evening, he went out to lie on his bed with the servants of his lord, but didn’t go down to his house. + +In the morning, David wrote a letter to Joab and sent it by the hand of Uriah. + +He wrote in the letter, saying, “Send Uriah to the forefront of the hottest battle, and retreat from him, that he may be struck and die.” + +

+

When Joab kept watch on the city, he assigned Uriah to the place where he knew that valiant men were. + +The men of the city went out and fought with Joab. Some of the people fell, even of David’s servants; and Uriah the Hittite died also. + +Then Joab sent and told David all the things concerning the war; + +and he commanded the messenger, saying, “When you have finished telling all the things concerning the war to the king, + +it shall be that, if the king’s wrath arise, and he asks you, ‘Why did you go so near to the city to fight? Didn’t you know that they would shoot from the wall? + +Who struck Abimelech the son of Jerubbesheth? Didn’t a woman cast an upper millstone on him from the wall, so that he died at Thebez? Why did you go so near the wall?’ then you shall say, ‘Your servant Uriah the Hittite is also dead.’” + +

+

So the messenger went, and came and showed David all that Joab had sent him for. + +The messenger said to David, “The men prevailed against us, and came out to us into the field; and we were on them even to the entrance of the gate. + +The shooters shot at your servants from off the wall; and some of the king’s servants are dead, and your servant Uriah the Hittite is also dead.” + +

+

Then David said to the messenger, “Tell Joab, ‘Don’t let this thing displease you, for the sword devours one as well as another. Make your battle stronger against the city, and overthrow it.’ Encourage him.” + +

+

When Uriah’s wife heard that Uriah her husband was dead, she mourned for her husband. + +When the mourning was past, David sent and took her home to his house, and she became his wife and bore him a son. But the thing that David had done displeased Yahweh. + +

+ + +

Yahweh sent Nathan to David. He came to him, and said to him, “There were two men in one city: the one rich, and the other poor. + +The rich man had very many flocks and herds, + +but the poor man had nothing, except one little ewe lamb, which he had bought and raised. It grew up together with him and with his children. It ate of his own food, drank of his own cup, and lay in his bosom, and was like a daughter to him. + +A traveler came to the rich man, and he didn’t want to take of his own flock and of his own herd to prepare for the wayfaring man who had come to him, but took the poor man’s lamb and prepared it for the man who had come to him.” + +

+

David’s anger burned hot against the man, and he said to Nathan, “As Yahweh lives, the man who has done this deserves to die! + +He must restore the lamb fourfold, because he did this thing and because he had no pity!” + +

+

Nathan said to David, “You are the man! This is what Yahweh, the God of Israel, says: ‘I anointed you king over Israel, and I delivered you out of the hand of Saul. + +I gave you your master’s house and your master’s wives into your bosom, and gave you the house of Israel and of Judah; and if that would have been too little, I would have added to you many more such things. + +Why have you despised Yahweh’s word, to do that which is evil in his sight? You have struck Uriah the Hittite with the sword, have taken his wife to be your wife, and have slain him with the sword of the children of Ammon. + +Now therefore the sword will never depart from your house, because you have despised me and have taken Uriah the Hittite’s wife to be your wife.’ + +

+

This is what Yahweh says: ‘Behold, I will raise up evil against you out of your own house; and I will take your wives before your eyes and give them to your neighbor, and he will lie with your wives in the sight of this sun. + +For you did this secretly, but I will do this thing before all Israel, and before the sun.’” + +

+

David said to Nathan, “I have sinned against Yahweh.” +

+

Nathan said to David, “Yahweh also has put away your sin. You will not die. + +However, because by this deed you have given great occasion to Yahweh’s enemies to blaspheme, the child also who is born to you will surely die.” + +Then Nathan departed to his house. +

+

Yahweh struck the child that Uriah’s wife bore to David, and he was very sick. + +David therefore begged God for the child; and David fasted, and went in and lay all night on the ground. + +The elders of his house arose beside him, to raise him up from the earth; but he would not, and he didn’t eat bread with them. + +On the seventh day, the child died. David’s servants were afraid to tell him that the child was dead, for they said, “Behold, while the child was yet alive, we spoke to him and he didn’t listen to our voice. How will he then harm himself if we tell him that the child is dead?” + +

+

But when David saw that his servants were whispering together, David perceived that the child was dead; and David said to his servants, “Is the child dead?” +

+

They said, “He is dead.” + +

+

Then David arose from the earth, and washed and anointed himself, and changed his clothing; and he came into Yahweh’s house, and worshiped. Then he came to his own house; and when he requested, they set bread before him and he ate. + +Then his servants said to him, “What is this that you have done? You fasted and wept for the child while he was alive, but when the child was dead, you rose up and ate bread.” + +

+

He said, “While the child was yet alive, I fasted and wept; for I said, ‘Who knows whether Yahweh will not be gracious to me, that the child may live?’ + +But now he is dead. Why should I fast? Can I bring him back again? I will go to him, but he will not return to me.” + +

+

David comforted Bathsheba his wife, and went in to her, and lay with her. She bore a son, and he called his name Solomon. Yahweh loved him; + +and he sent by the hand of Nathan the prophet, and he named him Jedidiah,12:25 +“Jedidiah” means “loved by Yahweh”. for Yahweh’s sake. + +

+

Now Joab fought against Rabbah of the children of Ammon, and took the royal city. + +Joab sent messengers to David, and said, “I have fought against Rabbah. Yes, I have taken the city of waters. + +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 by my name.” + +

+

David gathered all the people together and went to Rabbah, and fought against it and took it. + +He took the crown of their king from off his head; and its weight was a talent12:30 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of gold, and in it were precious stones; and it was set on David’s head. He brought a great quantity of plunder out of the city. + +He brought out the people who were in it, and put them to work under saws, under iron picks, under axes of iron, and made them go to the brick kiln; and he did so to all the cities of the children of Ammon. Then David and all the people returned to Jerusalem. + +

+ + +

After this, Absalom the son of David had a beautiful sister, whose name was Tamar; and Amnon the son of David loved her. + +Amnon was so troubled that he became sick because of his sister Tamar, for she was a virgin, and it seemed hard to Amnon to do anything to her. + +But Amnon had a friend whose name was Jonadab the son of Shimeah, David’s brother; and Jonadab was a very subtle man. + +He said to him, “Why, son of the king, are you so sad from day to day? Won’t you tell me?” +

+

Amnon said to him, “I love Tamar, my brother Absalom’s sister.” + +

+

Jonadab said to him, “Lay down on your bed and pretend to be sick. When your father comes to see you, tell him, ‘Please let my sister Tamar come and give me bread to eat, and prepare the food in my sight, that I may see it and eat it from her hand.’” + +

+

So Amnon lay down and faked being sick. When the king came to see him, Amnon said to the king, “Please let my sister Tamar come and make me a couple of cakes in my sight, that I may eat from her hand.” + +

+

Then David sent home to Tamar, saying, “Go now to your brother Amnon’s house, and prepare food for him.” + +So Tamar went to her brother Amnon’s house; and he was lying down. She took dough, kneaded it, made cakes in his sight, and baked the cakes. + +She took the pan and poured them out before him, but he refused to eat. Amnon said, “Have all men leave me.” Then every man went out from him. + +Amnon said to Tamar, “Bring the food into the room, that I may eat from your hand.” Tamar took the cakes which she had made, and brought them into the room to Amnon her brother. + +When she had brought them near to him to eat, he took hold of her and said to her, “Come, lie with me, my sister!” + +

+

She answered him, “No, my brother, do not force me! For no such thing ought to be done in Israel. Don’t you do this folly! + +As for me, where would I carry my shame? And as for you, you will be as one of the fools in Israel. Now therefore, please speak to the king; for he will not withhold me from you.” + +

+

However, he would not listen to her voice; but being stronger than she, he forced her and lay with her. + +Then Amnon hated her with exceedingly great hatred; for the hatred with which he hated her was greater than the love with which he had loved her. Amnon said to her, “Arise, be gone!” + +

+

She said to him, “Not so, because this great wrong in sending me away is worse than the other that you did to me!” +

+

But he would not listen to her. + +Then he called his servant who ministered to him, and said, “Now put this woman out from me, and bolt the door after her.” + +

+

She had a garment of various colors on her, for the king’s daughters who were virgins dressed in such robes. Then his servant brought her out and bolted the door after her. + +Tamar put ashes on her head, and tore her garment of various colors that was on her; and she laid her hand on her head and went her way, crying aloud as she went. + +Absalom her brother said to her, “Has Amnon your brother been with you? But now hold your peace, my sister. He is your brother. Don’t take this thing to heart.” +

+

So Tamar remained desolate in her brother Absalom’s house. + +But when King David heard of all these things, he was very angry. + +Absalom spoke to Amnon neither good nor bad; for Absalom hated Amnon, because he had forced his sister Tamar. + +

+

After two full years, Absalom had sheep shearers in Baal Hazor, which is beside Ephraim; and Absalom invited all the king’s sons. + +Absalom came to the king and said, “See now, your servant has sheep shearers. Please let the king and his servants go with your servant.” + +

+

The king said to Absalom, “No, my son, let’s not all go, lest we be burdensome to you.” He pressed him; however he would not go, but blessed him. + +

+

Then Absalom said, “If not, please let my brother Amnon go with us.” +

+

The king said to him, “Why should he go with you?” + +

+

But Absalom pressed him, and he let Amnon and all the king’s sons go with him. + +Absalom commanded his servants, saying, “Mark now, when Amnon’s heart is merry with wine; and when I tell you, ‘Strike Amnon,’ then kill him. Don’t be afraid. Haven’t I commanded you? Be courageous, and be valiant!” + +

+

The servants of Absalom did to Amnon as Absalom had commanded. Then all the king’s sons arose, and every man got up on his mule and fled. + +

+

While they were on the way, the news came to David, saying, “Absalom has slain all the king’s sons, and there is not one of them left!” + +

+

Then the king arose, and tore his garments, and lay on the earth; and all his servants stood by with their clothes torn. + +Jonadab the son of Shimeah, David’s brother, answered, “Don’t let my lord suppose that they have killed all the young men, the king’s sons, for Amnon only is dead; for by the appointment of Absalom this has been determined from the day that he forced his sister Tamar. + +Now therefore don’t let my lord the king take the thing to his heart, to think that all the king’s sons are dead; for only Amnon is dead.” + +But Absalom fled. The young man who kept the watch lifted up his eyes and looked, and behold, many people were coming by way of the hillside behind him. + +Jonadab said to the king, “Behold, the king’s sons are coming! It is as your servant said.” + +As soon as he had finished speaking, behold, the king’s sons came, and lifted up their voices and wept. The king also and all his servants wept bitterly. + +

+

But Absalom fled and went to Talmai the son of Ammihur, king of Geshur. David mourned for his son every day. + +So Absalom fled and went to Geshur, and was there three years. + +King David longed to go out to Absalom, for he was comforted concerning Amnon, since he was dead. + +

+ + +

Now Joab the son of Zeruiah perceived that the king’s heart was toward Absalom. + +Joab sent to Tekoa and brought a wise woman from there, and said to her, “Please act like a mourner, and put on mourning clothing, please, and don’t anoint yourself with oil; but be as a woman who has mourned a long time for the dead. + +Go in to the king and speak like this to him.” So Joab put the words in her mouth. + +

+

When the woman of Tekoa spoke to the king, she fell on her face to the ground, showed respect, and said, “Help, O king!” + +

+

The king said to her, “What ails you?” +

+

She answered, “Truly I am a widow, and my husband is dead. + +Your servant had two sons; and they both fought together in the field, and there was no one to part them, but the one struck the other and killed him. + +Behold, the whole family has risen against your servant, and they say, ‘Deliver him who struck his brother, that we may kill him for the life of his brother whom he killed, and so destroy the heir also.’ Thus they would quench my coal which is left, and would leave to my husband neither name nor remainder on the surface of the earth.” + +

+

The king said to the woman, “Go to your house, and I will give a command concerning you.” + +

+

The woman of Tekoa said to the king, “My lord, O king, may the iniquity be on me, and on my father’s house; and may the king and his throne be guiltless.” + +

+

The king said, “Whoever says anything to you, bring him to me, and he will not bother you any more.” + +

+

Then she said, “Please let the king remember Yahweh your God, that the avenger of blood destroy not any more, lest they destroy my son.” +

+

He said, “As Yahweh lives, not one hair of your son shall fall to the earth.” + +

+

Then the woman said, “Please let your servant speak a word to my lord the king.” +

+

He said, “Say on.” + +

+

The woman said, “Why then have you devised such a thing against the people of God? For in speaking this word the king is as one who is guilty, in that the king does not bring home again his banished one. + +For we must die, and are like water spilled on the ground, which can’t be gathered up again; neither does God take away life, but devises means, that he who is banished not be an outcast from him. + +Now therefore, seeing that I have come to speak this word to my lord the king, it is because the people have made me afraid. Your servant said, ‘I will now speak to the king; it may be that the king will perform the request of his servant.’ + +For the king will hear, to deliver his servant out of the hand of the man who would destroy me and my son together out of the inheritance of God. + +Then your servant said, ‘Please let the word of my lord the king bring rest; for as an angel of God, so is my lord the king to discern good and bad. May Yahweh, your God, be with you.’” + +

+

Then the king answered the woman, “Please don’t hide anything from me that I ask you.” +

+

The woman said, “Let my lord the king now speak.” + +

+

The king said, “Is the hand of Joab with you in all this?” +

+

The woman answered, “As your soul lives, my lord the king, no one can turn to the right hand or to the left from anything that my lord the king has spoken; for your servant Joab urged me, and he put all these words in the mouth of your servant. + +Your servant Joab has done this thing to change the face of the matter. My lord is wise, according to the wisdom of an angel of God, to know all things that are on the earth.” + +

+

The king said to Joab, “Behold now, I have granted this thing. Go therefore, and bring the young man Absalom back.” + +

+

Joab fell to the ground on his face, showed respect, and blessed the king. Joab said, “Today your servant knows that I have found favor in your sight, my lord, O king, in that the king has performed the request of his servant.” + +

+

So Joab arose and went to Geshur, and brought Absalom to Jerusalem. + +The king said, “Let him return to his own house, but let him not see my face.” So Absalom returned to his own house, and didn’t see the king’s face. + +Now in all Israel there was no one 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 defect in him. + +When he cut the hair of his head (now it was at every year’s end that he cut it; because it was heavy on him, therefore he cut it), he weighed the hair of his head at two hundred shekels,14:26 +A shekel is about 10 grams or about 0.35 ounces, so 200 shekels is about 2 kilograms or about 4.4 pounds. after the king’s weight. + +Three sons were born to Absalom, and one daughter, whose name was Tamar. She was a woman with a beautiful face. + +Absalom lived two full years in Jerusalem, and he didn’t see the king’s face. + +Then Absalom sent for Joab, to send him to the king, but he would not come to him. Then he sent again a second time, but he would not come. + +Therefore he said to his servants, “Behold, Joab’s field is near mine, and he has barley there. Go and set it on fire.” So Absalom’s servants set the field on fire. + +

+

Then Joab arose and came to Absalom to his house, and said to him, “Why have your servants set my field on fire?” + +

+

Absalom answered Joab, “Behold, I sent to you, saying, ‘Come here, that I may send you to the king, to say, “Why have I come from Geshur? It would be better for me to be there still. Now therefore, let me see the king’s face; and if there is iniquity in me, let him kill me.”’” + +

+

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. + +

+ + +

After this, Absalom prepared a chariot and horses for himself, and fifty men to run before him. + +Absalom rose up early, and stood beside the way of the gate. When any man had a suit which should come to the king for judgment, then Absalom called to him, and said, “What city are you from?” +

+

He said, “Your servant is of one of the tribes of Israel.” + +

+

Absalom said to him, “Behold, your matters are good and right; but there is no man deputized by the king to hear you.” + +Absalom said moreover, “Oh that I were made judge in the land, that every man who has any suit or cause might come to me, and I would do him justice!” + +It was so, that when any man came near to bow down to him, he stretched out his hand, took hold of him, and kissed him. + +Absalom did this sort of thing to all Israel who came to the king for judgment. So Absalom stole the hearts of the men of Israel. + +

+

At the end of forty years, Absalom said to the king, “Please let me go and pay my vow, which I have vowed to Yahweh, in Hebron. + +For your servant vowed a vow while I stayed at Geshur in Syria, saying, ‘If Yahweh shall indeed bring me again to Jerusalem, then I will serve Yahweh.’” + +

+

The king said to him, “Go in peace.” +

+

So he arose and went to Hebron. + +But Absalom sent spies throughout all the tribes of Israel, saying, “As soon as you hear the sound of the trumpet, then you shall say, ‘Absalom is king in Hebron!’” + +

+

Two hundred men went with Absalom out of Jerusalem, who were invited, and went in their simplicity; and they didn’t know anything. + +Absalom sent for Ahithophel the Gilonite, David’s counselor, from his city, even from Giloh, while he was offering the sacrifices. The conspiracy was strong, for the people increased continually with Absalom. + +A messenger came to David, saying, “The hearts of the men of Israel are after Absalom.” + +

+

David said to all his servants who were with him at Jerusalem, “Arise! Let’s flee, or else none of us will escape from Absalom. Hurry to depart, lest he overtake us quickly and bring down evil on us, and strike the city with the edge of the sword.” + +

+

The king’s servants said to the king, “Behold, your servants are ready to do whatever my lord the king chooses.” + +

+

The king went out, and all his household after him. The king left ten women, who were concubines, to keep the house. + +The king went out, and all the people after him; and they stayed in Beth Merhak. + +All his servants passed on beside him; and all the Cherethites, and all the Pelethites, and all the Gittites, six hundred men who came after him from Gath, passed on before the king. + +

+

Then the king said to Ittai the Gittite, “Why do you also go with us? Return, and stay with the king; for you are a foreigner and also an exile. Return to your own place. + +Whereas you came but yesterday, should I today make you go up and down with us, since I go where I may? Return, and take back your brothers. Mercy and truth be with you.” + +

+

Ittai answered the king and said, “As Yahweh lives, and as my lord the king lives, surely in what place my lord the king is, whether for death or for life, your servant will be there also.” + +

+

David said to Ittai, “Go and pass over.” Ittai the Gittite passed over, and all his men, and all the little ones who were with him. + +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. + +Behold, Zadok also came, and all the Levites with him, bearing the ark of the covenant of God; and they set down God’s ark; and Abiathar went up until all the people finished passing out of the city. + +The king said to Zadok, “Carry God’s ark back into the city. If I find favor in Yahweh’s eyes, he will bring me again, and show me both it and his habitation; + +but if he says, ‘I have no delight in you,’ behold, here I am. Let him do to me as seems good to him.” + +The king said also to Zadok the priest, “Aren’t you a seer? Return into the city in peace, and your two sons with you, Ahimaaz your son and Jonathan the son of Abiathar. + +Behold, I will stay at the fords of the wilderness until word comes from you to inform me.” + +Zadok therefore and Abiathar carried God’s ark to Jerusalem again; and they stayed there. + +David went up by the ascent of the Mount of Olives, and wept as he went up; and he had his head covered and went barefoot. All the people who were with him each covered his head, and they went up, weeping as they went up. + +

+

Someone told David, saying, “Ahithophel is among the conspirators with Absalom.” +

+

David said, “Yahweh, please turn the counsel of Ahithophel into foolishness.” + +

+

When David had come to the top, where God was worshiped, behold, Hushai the Archite came to meet him with his tunic torn and earth on his head. + +David said to him, “If you pass on with me, then you will be a burden to me; + +but if you return to the city, and tell Absalom, ‘I will be your servant, O king. As I have been your father’s servant in time past, so I will now be your servant; then you will defeat for me the counsel of Ahithophel.’ + +Don’t you have Zadok and Abiathar the priests there with you? Therefore whatever you hear out of the king’s house, tell it to Zadok and Abiathar the priests. + +Behold, they have there with them their two sons, Ahimaaz, Zadok’s son, and Jonathan, Abiathar’s son. Send to me everything that you shall hear by them.” + +

+

So Hushai, David’s friend, came into the city; and Absalom came into Jerusalem. + +

+ + +

When David was a little past the top, behold, Ziba the servant of Mephibosheth met him with a couple of donkeys saddled, and on them two hundred loaves of bread, and one hundred clusters of raisins, and one hundred summer fruits, and a container of wine. + +The king said to Ziba, “What do you mean by these?” +

+

Ziba said, “The donkeys are for the king’s household to ride on; and the bread and summer fruit for the young men to eat; and the wine, that those who are faint in the wilderness may drink.” + +

+

The king said, “Where is your master’s son?” +

+

Ziba said to the king, “Behold, he is staying in Jerusalem; for he said, ‘Today the house of Israel will restore me the kingdom of my father.’” + +

+

Then the king said to Ziba, “Behold, all that belongs to Mephibosheth is yours.” +

+

Ziba said, “I bow down. Let me find favor in your sight, my lord, O king.” + +

+

When King David came to Bahurim, behold, a man of the family of Saul’s house came out, whose name was Shimei, the son of Gera. He came out and cursed as he came. + +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. + +Shimei said when he cursed, “Be gone, be gone, you man of blood, and wicked fellow! + +Yahweh has returned on you all the blood of Saul’s house, in whose place you have reigned! Yahweh has delivered the kingdom into the hand of Absalom your son! Behold, you are caught by your own mischief, because you are a man of blood!” + +

+

Then Abishai the son of Zeruiah said to the king, “Why should this dead dog curse my lord the king? Please let me go over and take off his head.” + +The king said, “What have I to do with you, you sons of Zeruiah? Because he curses, and because Yahweh has said to him, ‘Curse David,’ who then shall say, ‘Why have you done so?’” + +

+

David said to Abishai and to all his servants, “Behold, my son, who came out of my bowels, seeks my life. How much more this Benjamite, now? Leave him alone, and let him curse; for Yahweh has invited him. + +It may be that Yahweh will look on the wrong done to me, and that Yahweh will repay me good for the cursing of me today.” + +So David and his men went by the way; and Shimei went along on the hillside opposite him and cursed as he went, threw stones at him, and threw dust. + +The king and all the people who were with him arrived weary; and he refreshed himself there. + +

+

Absalom and all the people, the men of Israel, came to Jerusalem, and Ahithophel with him. + +When Hushai the Archite, David’s friend, had come to Absalom, Hushai said to Absalom, “Long live the king! Long live the king!” + +

+

Absalom said to Hushai, “Is this your kindness to your friend? Why didn’t you go with your friend?” + +

+

Hushai said to Absalom, “No; but whomever Yahweh and this people and all the men of Israel have chosen, I will be his, and I will stay with him. + +Again, whom should I serve? Shouldn’t I serve in the presence of his son? As I have served in your father’s presence, so I will be in your presence.” + +

+

Then Absalom said to Ahithophel, “Give your counsel what we shall do.” + +

+

Ahithophel said to Absalom, “Go in to your father’s concubines that he has left to keep the house. Then all Israel will hear that you are abhorred by your father. Then the hands of all who are with you will be strong.” + +

+

So they spread a tent for Absalom on the top of the house, and Absalom went in to his father’s concubines in the sight of all Israel. + +

+

The counsel of Ahithophel, which he gave in those days, was as if a man inquired at the inner sanctuary of God. All the counsel of Ahithophel was like this both with David and with Absalom. + +

+ + +

Moreover Ahithophel said to Absalom, “Let me now choose twelve thousand men, and I will arise and pursue after David tonight. + +I will come on him while he is weary and exhausted, and will make him afraid. All the people who are with him will flee. I will strike the king only, + +and I will bring back all the people to you. The man whom you seek is as if all returned. All the people shall be in peace.” + +

+

The saying pleased Absalom well, and all the elders of Israel. + +Then Absalom said, “Now call Hushai the Archite also, and let’s hear likewise what he says.” + +

+

When Hushai had come to Absalom, Absalom spoke to him, saying, “Ahithophel has spoken like this. Shall we do what he says? If not, speak up.” + +

+

Hushai said to Absalom, “The counsel that Ahithophel has given this time is not good.” + +Hushai said moreover, “You know your father and his men, that they are mighty men, and they are fierce in their minds, like a bear robbed of her cubs in the field. Your father is a man of war, and will not lodge with the people. + +Behold, he is now hidden in some pit, or in some other place. It will happen, when some of them have fallen at the first, that whoever hears it will say, ‘There is a slaughter among the people who follow Absalom!’ + +Even he who is valiant, whose heart is as the heart of a lion, will utterly melt; for all Israel knows that your father is a mighty man, and those who are with him are valiant men. + +But I counsel that all Israel be gathered together to you, from Dan even to Beersheba, as the sand that is by the sea for multitude; and that you go to battle in your own person. + +So we will come on him in some place where he will be found, and we will light on him as the dew falls on the ground, then we will not leave so much as one of him and of all the men who are with him. + +Moreover, if he has gone into a city, then all Israel will bring ropes to that city, and we will draw it into the river, until there isn’t one small stone found there.” + +

+

Absalom and all the men of Israel said, “The counsel of Hushai the Archite is better than the counsel of Ahithophel.” For Yahweh had ordained to defeat the good counsel of Ahithophel, to the intent that Yahweh might bring evil on Absalom. + +

+

Then Hushai said to Zadok and to Abiathar the priests, “Ahithophel counseled Absalom and the elders of Israel that way; and I have counseled this way. + +Now therefore send quickly, and tell David, saying, ‘Don’t lodge tonight at the fords of the wilderness, but by all means pass over, lest the king be swallowed up, and all the people who are with him.’” + +

+

Now Jonathan and Ahimaaz were staying by En Rogel; and a female servant used to go and report to them, and they went and told King David; for they couldn’t risk being seen coming into the city. + +But a boy saw them, and told Absalom. Then they both went away quickly and came to the house of a man in Bahurim, who had a well in his court; and they went down there. + +The woman took and spread the covering over the well’s mouth, and spread out crushed grain on it; and nothing was known. + +Absalom’s servants came to the woman to the house; and they said, “Where are Ahimaaz and Jonathan?” +

+

The woman said to them, “They have gone over the brook of water.” +

+

When they had sought and could not find them, they returned to Jerusalem. + +After they had departed, they came up out of the well and went and told King David; and they said to David, “Arise and pass quickly over the water; for thus has Ahithophel counseled against you.” + +

+

Then David arose, and all the people who were with him, and they passed over the Jordan. By the morning light there lacked not one of them who had not gone over the Jordan. + +

+

When Ahithophel saw that his counsel was not followed, he saddled his donkey, arose, and went home to his city, set his house in order, and hanged himself; and he died, and was buried in the tomb of his father. + +

+

Then David came to Mahanaim. Absalom passed over the Jordan, he and all the men of Israel with him. + +Absalom set Amasa over the army instead of Joab. Now Amasa was the son of a man whose name was Ithra the Israelite, who went in to Abigail the daughter of Nahash, sister to Zeruiah, Joab’s mother. + +Israel and Absalom encamped in the land of Gilead. + +

+

When David had come to Mahanaim, 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, + +brought beds, basins, earthen vessels, wheat, barley, meal, parched grain, beans, lentils, roasted grain, + +honey, butter, sheep, and cheese of the herd, for David and for the people who were with him to eat; for they said, “The people are hungry, weary, and thirsty in the wilderness.” + +

+ + +

David counted the people who were with him, and set captains of thousands and captains of hundreds over them. + +David sent the people out, a third part 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. The king said to the people, “I will also surely go out with you myself.” + +

+

But the people said, “You shall not go out, for if we flee away, they will not care for us, neither if half of us die, will they care for us. But you are worth ten thousand of us. Therefore now it is better that you are ready to help us out of the city.” + +

+

The king said to them, “I will do what seems best to you.” +

+

The king stood beside the gate, and all the people went out by hundreds and by thousands. + +The king commanded Joab and Abishai and Ittai, saying, “Deal gently for my sake with the young man Absalom.” All the people heard when the king commanded all the captains concerning Absalom. + +

+

So the people went out into the field against Israel; and the battle was in the forest of Ephraim. + +The people of Israel were struck there before David’s servants, and there was a great slaughter there that day of twenty thousand men. + +For the battle was there spread over the surface of all the country, and the forest devoured more people that day than the sword devoured. + +

+

Absalom happened to meet David’s servants. Absalom was riding on his mule, and the mule went under the thick boughs of a great oak; and his head caught hold of the oak, and he was hanging between the sky and earth; and the mule that was under him went on. + +A certain man saw it, and told Joab, and said, “Behold, I saw Absalom hanging in an oak.” + +

+

Joab said to the man who told him, “Behold, you saw it, and why didn’t you strike him there to the ground? I would have given you ten pieces of silver and a sash.” + +

+

The man said to Joab, “Though I should receive a thousand pieces of silver in my hand, I still wouldn’t stretch out my hand against the king’s son; for in our hearing the king commanded you and Abishai and Ittai, saying, ‘Beware that no one touch the young man Absalom.’ + +Otherwise, if I had dealt falsely against his life (and there is no matter hidden from the king), then you yourself would have set yourself against me.” + +

+

Then Joab said, “I’m not going to wait like this with you.” He took three darts in his hand and thrust them through Absalom’s heart while he was still alive in the middle of the oak. + +Ten young men who bore Joab’s armor surrounded and struck Absalom, and killed him. + +Joab blew the trumpet, and the people returned from pursuing after Israel; for Joab held the people back. + +They took Absalom and cast him into a great pit in the forest, and raised over him a very great heap of stones. Then all Israel fled, each to his own tent. + +

+

Now Absalom in his lifetime had taken and reared up for himself the pillar which is in the king’s valley, for he said, “I have no son to keep my name in memory.” He called the pillar after his own name. It is called Absalom’s monument, to this day. + +

+

Then Ahimaaz the son of Zadok said, “Let me now run and carry the king news, how Yahweh has avenged him of his enemies.” + +

+

Joab said to him, “You must not be the bearer of news today, but you must carry news another day. But today you must carry no news, because the king’s son is dead.” + +

+

Then Joab said to the Cushite, “Go, tell the king what you have seen!” The Cushite bowed himself to Joab, and ran. + +

+

Then Ahimaaz the son of Zadok said yet again to Joab, “But come what may, please let me also run after the Cushite.” +

+

Joab said, “Why do you want to run, my son, since you will have no reward for the news?” + +

+

But come what may,” he said, “I will run.” +

+

He said to him, “Run!” Then Ahimaaz ran by the way of the Plain, and outran the Cushite. + +

+

Now David was sitting between the two gates; and the watchman went up to the roof of the gate to the wall, and lifted up his eyes and looked, and, behold, a man running alone. + +The watchman shouted and told the king. The king said, “If he is alone, there is news in his mouth.” He came closer and closer. + +

+

The watchman saw another man running; and the watchman called to the gatekeeper and said, “Behold, a man running alone!” +

+

The king said, “He also brings news.” + +

+

The watchman said, “I think the running of the first one is like the running of Ahimaaz the son of Zadok.” +

+

The king said, “He is a good man, and comes with good news.” + +

+

Ahimaaz called, and said to the king, “All is well.” He bowed himself before the king with his face to the earth, and said, “Blessed is Yahweh your God, who has delivered up the men who lifted up their hand against my lord the king!” + +

+

The king said, “Is it well with the young man Absalom?” +

+

Ahimaaz answered, “When Joab sent the king’s servant, even me your servant, I saw a great tumult, but I don’t know what it was.” + +

+

The king said, “Come and stand here.” He came and stood still. + +

+

Behold, the Cushite came. The Cushite said, “Good news for my lord the king, for Yahweh has avenged you today of all those who rose up against you.” + +

+

The king said to the Cushite, “Is it well with the young man Absalom?” +

+

The Cushite answered, “May the enemies of my lord the king, and all who rise up against you to do you harm, be as that young man is.” + +

+

The king was much moved, and went up to the room over the gate and wept. As he went, he said, “My son Absalom! My son, my son Absalom! I wish I had died instead of you, Absalom, my son, my son!” + +

+ + +

Joab was told, “Behold, the king weeps and mourns for Absalom.” + +The victory that day was turned into mourning among all the people, for the people heard it said that day, “The king grieves for his son.” + +

+

The people sneaked into the city that day, as people who are ashamed steal away when they flee in battle. + +The king covered his face, and the king cried with a loud voice, “My son Absalom, Absalom, my son, my son!” + +

+

Joab came into the house to the king, and said, “Today you have shamed the faces of all your servants who today have saved your life, and the lives of your sons and of your daughters, and the lives of your wives, and the lives of your concubines; + +in that you love those who hate you and hate those who love you. For you have declared today that princes and servants are nothing to you. For today I perceive that if Absalom had lived and we had all died today, then it would have pleased you well. + +Now therefore arise, go out and speak to comfort your servants; for I swear by Yahweh, if you don’t go out, not a man will stay with you this night. That would be worse to you than all the evil that has happened to you from your youth until now.” + +

+

Then the king arose and sat in the gate. The people were all told, “Behold, the king is sitting in the gate.” All the people came before the king. Now Israel had fled every man to his tent. + +All the people were at strife throughout all the tribes of Israel, saying, “The king delivered us out of the hand of our enemies, and he saved us out of the hand of the Philistines; and now he has fled out of the land from Absalom. + +Absalom, whom we anointed over us, is dead in battle. Now therefore why don’t you speak a word of bringing the king back?” + +

+

King David sent to Zadok and to Abiathar the priests, saying, “Speak to the elders of Judah, saying, ‘Why are you the last to bring the king back to his house, since the speech of all Israel has come to the king, to return him to his house? + +You are my brothers. You are my bone and my flesh. Why then are you the last to bring back the king?’ + +Say to Amasa, ‘Aren’t you my bone and my flesh? God do so to me, and more also, if you aren’t captain of the army before me continually instead of Joab.’” + +He bowed the heart of all the men of Judah, even as one man, so that they sent to the king, saying, “Return, you and all your servants.” + +

+

So the king returned, and came to the Jordan. Judah came to Gilgal, to go to meet the king, to bring the king over the Jordan. + +Shimei the son of Gera, the Benjamite, who was of Bahurim, hurried and came down with the men of Judah to meet King David. + +There were a thousand men of Benjamin with him, and Ziba the servant of Saul’s house, and his fifteen sons and his twenty servants with him; and they went through the Jordan in the presence of the king. + +A ferry boat went to bring over the king’s household, and to do what he thought good. +

+

Shimei the son of Gera fell down before the king when he had come over the Jordan. + +He said to the king, “Don’t let my lord impute iniquity to me, or remember that which your servant did perversely the day that my lord the king went out of Jerusalem, that the king should take it to his heart. + +For your servant knows that I have sinned. Therefore behold, I have come today as the first of all the house of Joseph to go down to meet my lord the king.” + +

+

But Abishai the son of Zeruiah answered, “Shouldn’t Shimei be put to death for this, because he cursed Yahweh’s anointed?” + +

+

David said, “What have I to do with you, you sons of Zeruiah, that you should be adversaries to me today? Shall any man be put to death today in Israel? For don’t I know that I am king over Israel today?” + +The king said to Shimei, “You will not die.” The king swore to him. + +

+

Mephibosheth the son of Saul came down to meet the king; and he had neither groomed his feet, nor trimmed his beard, nor washed his clothes, from the day the king departed until the day he came home in peace. + +When he had come to Jerusalem to meet the king, the king said to him, “Why didn’t you go with me, Mephibosheth?” + +

+

He answered, “My lord, O king, my servant deceived me. For your servant said, ‘I will saddle a donkey for myself, that I may ride on it and go with the king,’ because your servant is lame. + +He has slandered your servant to my lord the king, but my lord the king is as an angel of God. Therefore do what is good in your eyes. + +For all my father’s house were but dead men before my lord the king; yet you set your servant among those who ate at your own table. What right therefore have I yet that I should appeal any more to the king?” + +

+

The king said to him, “Why do you speak any more of your matters? I say, you and Ziba divide the land.” + +

+

Mephibosheth said to the king, “Yes, let him take all, because my lord the king has come in peace to his own house.” + +

+

Barzillai the Gileadite came down from Rogelim; and he went over the Jordan with the king to conduct him over the Jordan. + +Now Barzillai was a very aged man, even eighty years old. He had provided the king with sustenance while he stayed at Mahanaim, for he was a very great man. + +The king said to Barzillai, “Come over with me, and I will sustain you with me in Jerusalem.” + +

+

Barzillai said to the king, “How many are the days of the years of my life, that I should go up with the king to Jerusalem? + +I am eighty years old, today. Can I discern between good and bad? Can your servant taste what I eat or what I drink? Can I hear the voice of singing men and singing women any more? Why then should your servant be a burden to my lord the king? + +Your servant will just go over the Jordan with the king. Why should the king repay me with such a reward? + +Please let your servant turn back again, that I may die in my own city, by the grave of my father and my mother. But behold, your servant Chimham; let him go over with my lord the king; and do to him what shall seem good to you.” + +

+

The king answered, “Chimham shall go over with me, and I will do to him that which shall seem good to you. Whatever you request of me, that I will do for you.” + +

+

All the people went over the Jordan, and the king went over. Then the king kissed Barzillai and blessed him; and he returned to his own place. + +So the king went over to Gilgal, and Chimham went over with him. All the people of Judah brought the king over, and also half the people of Israel. + +Behold, all the men of Israel came to the king, and said to the king, “Why have our brothers the men of Judah stolen you away, and brought the king and his household, over the Jordan, and all David’s men with him?” + +

+

All the men of Judah answered the men of Israel, “Because the king is a close relative to us. Why then are you angry about this matter? Have we eaten at all at the king’s cost? Or has he given us any gift?” + +

+

The men of Israel answered the men of Judah, and said, “We have ten parts in the king, and we have also more claim to David than you. Why then did you despise us, that our advice should not be first had in bringing back our king?” The words of the men of Judah were fiercer than the words of the men of Israel. + +

+ + +

There happened to be there a wicked fellow, whose name was Sheba the son of Bichri, a Benjamite; and he blew the trumpet, and said, “We have no portion in David, neither have we inheritance in the son of Jesse. Every man to his tents, Israel!” + +

+

So all the men of Israel went up from following David, and followed Sheba the son of Bichri; but the men of Judah joined with their king, from the Jordan even to Jerusalem. + +

+

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 custody and provided them with sustenance, but didn’t go in to them. So they were shut up to the day of their death, living in widowhood. + +

+

Then the king said to Amasa, “Call me the men of Judah together within three days, and be here present.” + +

+

So Amasa went to call the men of Judah together, but he stayed longer than the set time which had been appointed to him. + +David said to Abishai, “Now Sheba the son of Bichri will do us more harm than Absalom did. Take your lord’s servants and pursue after him, lest he get himself fortified cities, and escape out of our sight.” + +

+

Joab’s men went out after him with the Cherethites, the Pelethites, and all the mighty men; and they went out of Jerusalem to pursue Sheba the son of Bichri. + +When they were at the great stone which is in Gibeon, Amasa came to meet them. Joab was clothed in his apparel of war that he had put on, and on it was a sash with a sword fastened on his waist in its sheath; and as he went along it fell out. + +Joab said to Amasa, “Is it well with you, my brother?” Joab took Amasa by the beard with his right hand to kiss him. + +But Amasa took no heed to the sword that was in Joab’s hand. So he struck him with it in the body and shed out his bowels to the ground, and didn’t strike him again; and he died. Joab and Abishai his brother pursued Sheba the son of Bichri. + +One of Joab’s young men stood by him, and said, “He who favors Joab, and he who is for David, let him follow Joab!” + +

+

Amasa lay wallowing in his blood in the middle of the highway. When the man saw that all the people stood still, he carried Amasa out of the highway into the field, and cast a garment over him when he saw that everyone who came by him stood still. + +When he was removed out of the highway, all the people went on after Joab to pursue Sheba the son of Bichri. + +He went through all the tribes of Israel to Abel, to Beth Maacah, and all the Berites. They were gathered together, and went also after him. + +They came and besieged him in Abel of Beth Maacah, and they cast up a mound against the city, and it stood against the rampart; and all the people who were with Joab battered the wall to throw it down. + +

+

Then a wise woman cried out of the city, “Hear, hear! Please say to Joab, ‘Come near here, that I may speak with you.’” + +He came near to her; and the woman said, “Are you Joab?” +

+

He answered, “I am.” +

+

Then she said to him, “Hear the words of your servant.” +

+

He answered, “I’m listening.” + +

+

Then she spoke, saying, “They used to say in old times, ‘They shall surely ask counsel at Abel,’ and so they settled a matter. + +I am among those who are peaceable and faithful in Israel. You seek to destroy a city and a mother in Israel. Why will you swallow up Yahweh’s inheritance?” + +

+

Joab answered, “Far be it, far be it from me, that I should swallow up or destroy. + +The matter is not so. But a man of the hill country of Ephraim, Sheba the son of Bichri by name, has lifted up his hand against the king, even against David. Just deliver him, and I will depart from the city.” +

+

The woman said to Joab, “Behold, his head will be thrown to you over the wall.” + +

+

Then the woman went to all the people in her wisdom. They cut off the head of Sheba the son of Bichri, and threw it out to Joab. He blew the trumpet, and they were dispersed from the city, every man to his tent. Then Joab returned to Jerusalem to the king. + +

+

Now Joab was over all the army of Israel, Benaiah the son of Jehoiada was over the Cherethites and over the Pelethites, + +Adoram was over the men subject to forced labor, Jehoshaphat the son of Ahilud was the recorder, + +Sheva was scribe, Zadok and Abiathar were priests, + +and Ira the Jairite was chief minister to David. + +

+ + +

There was a famine in the days of David for three years, year after year; and David sought the face of Yahweh. Yahweh said, “It is for Saul, and for his bloody house, because he put the Gibeonites to death.” + +

+

The king called the Gibeonites and said to 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 to them; and Saul sought to kill them in his zeal for the children of Israel and Judah); + +and David said to the Gibeonites, “What should I do for you? And with what should I make atonement, that you may bless Yahweh’s inheritance?” + +

+

The Gibeonites said to him, “It is no matter of silver or gold between us and Saul or his house; neither is it for us to put any man to death in Israel.” +

+

He said, “I will do for you whatever you say.” + +

+

They said to the king, “The man who consumed us and who plotted against us, that we should be destroyed from remaining in any of the borders of Israel, + +let seven men of his sons be delivered to us, and we will hang them up to Yahweh in Gibeah of Saul, the chosen of Yahweh.” +

+

The king said, “I will give them.” + +

+

But the king spared Mephibosheth the son of Jonathan the son of Saul, because of Yahweh’s oath that was between them, between David and Jonathan the son of Saul. + +But the king took the two sons of Rizpah the daughter of Aiah, whom she bore to Saul, Armoni and Mephibosheth; and the five sons of Merab the daughter of Saul, whom she bore to Adriel the son of Barzillai the Meholathite. + +He delivered them into the hands of the Gibeonites; and they hanged them on the mountain before Yahweh, and all seven of them fell together. They were put to death in the days of harvest, in the first days, at the beginning of barley harvest. + +

+

Rizpah the daughter of Aiah took sackcloth and spread it for herself on the rock, from the beginning of harvest until water poured on them from the sky. She allowed neither the birds of the sky to rest on them by day, nor the animals of the field by night. + +David was told what Rizpah the daughter of Aiah, the concubine of Saul, had done. + +So David went and took the bones of Saul and the bones of Jonathan his son from the men of Jabesh Gilead, who had stolen them from the street of Beth Shan, where the Philistines had hanged them in the day that the Philistines killed Saul in Gilboa; + +and he brought up from there the bones of Saul and the bones of Jonathan his son. They also gathered the bones of those who were hanged. + +They buried the bones of Saul and Jonathan his son in the country of Benjamin in Zela, in the tomb of Kish his father; and they performed all that the king commanded. After that, God answered prayer for the land. + +

+

The Philistines had war again with Israel; and David went down, and his servants with him, and fought against the Philistines. David grew faint; + +and Ishbibenob, who was of the sons of the giant, the weight of whose spear was three hundred shekels of bronze in weight, he being armed with a new sword, thought he would kill David. + +But Abishai the son of Zeruiah helped him, and struck the Philistine and killed him. Then the men of David swore to him, saying, “Don’t go out with us to battle any more, so that you don’t quench the lamp of Israel.” + +

+

After this, there was again war with the Philistines at Gob. Then Sibbecai the Hushathite killed Saph, who was of the sons of the giant. + +There was again war with the Philistines at Gob, and Elhanan the son of Jaare-Oregim the Bethlehemite killed Goliath the Gittite’s brother, the staff of whose spear was like a weaver’s beam. + +There was again war at Gath, where there was a man of great stature, who had six fingers on every hand and six toes on every foot, twenty-four in number, and he also was born to the giant. + +When he defied Israel, Jonathan the son of Shimei, David’s brother, killed him. + +These four were born to the giant in Gath; and they fell by the hand of David and by the hand of his servants. + +

+ + +

David spoke to Yahweh the words of this song in the day that Yahweh delivered him out of the hand of all his enemies, and out of the hand of Saul, + +and he said: +

+Yahweh is my rock, + +my fortress, + +and my deliverer, even mine; + + +God is my rock in whom I take refuge; + +my shield, and the horn of my salvation, + +my high tower, and my refuge. + +My savior, you save me from violence. + + +I call on Yahweh, who is worthy to be praised; + +So shall I be saved from my enemies. + + + +For the waves of death surrounded me. + +The floods of ungodliness made me afraid. + + +The cords of Sheol22:6 +Sheol is the place of the dead. were around me. + +The snares of death caught me. + + +In my distress, I called on Yahweh. + +Yes, I called to my God. + +He heard my voice out of his temple. + +My cry came into his ears. + + +Then the earth shook and trembled. + +The foundations of heaven quaked and were shaken, + +because he was angry. + + +Smoke went up out of his nostrils. + +Consuming fire came out of his mouth. + +Coals were kindled by it. + + +He bowed the heavens also, and came down. + +Thick darkness was under his feet. + + +He rode on a cherub, and flew. + +Yes, he was seen on the wings of the wind. + + +He made darkness a shelter around himself, + +gathering of waters, and thick clouds of the skies. + + +At the brightness before him, + +coals of fire were kindled. + + +Yahweh thundered from heaven. + +The Most High uttered his voice. + + +He sent out arrows and scattered them, + +lightning and confused them. + + +Then the channels of the sea appeared. + +The foundations of the world were laid bare by Yahweh’s rebuke, + +at the blast of the breath of his nostrils. + + + +He sent from on high and he took me. + +He drew me out of many waters. + + +He delivered me from my strong enemy, + +from those who hated me, for they were too mighty for me. + + +They came on me in the day of my calamity, + +but Yahweh was my support. + + +He also brought me out into a large place. + +He delivered me, because he delighted in me. + + + +Yahweh rewarded me according to my righteousness. + +He rewarded me according to the cleanness of my hands. + + +For I have kept Yahweh’s ways, + +and have not wickedly departed from my God. + + +For all his ordinances were before me. + +As for his statutes, I didn’t depart from them. + + +I was also perfect toward him. + +I kept myself from my iniquity. + + +Therefore Yahweh has rewarded me according to my righteousness, + +According to my cleanness in his eyesight. + + + +With the merciful you will show yourself merciful. + +With the perfect man you will show yourself perfect. + + +With the pure you will show yourself pure. + +With the crooked you will show yourself shrewd. + + +You will save the afflicted people, + +but your eyes are on the arrogant, that you may bring them down. + + +For you are my lamp, Yahweh. + +Yahweh will light up my darkness. + + +For by you, I run against a troop. + +By my God, I leap over a wall. + + +As for God, his way is perfect. + +Yahweh’s word is tested. + +He is a shield to all those who take refuge in him. + + + +For who is God, besides Yahweh? + +Who is a rock, besides our God? + + +God is my strong fortress. + +He makes my way perfect. + + +He makes his feet like hinds’ feet, + +and sets me on my high places. + + +He teaches my hands to war, + +so that my arms bend a bow of bronze. + + +You have also given me the shield of your salvation. + +Your gentleness has made me great. + + +You have enlarged my steps under me. + +My feet have not slipped. + + +I have pursued my enemies and destroyed them. + +I didn’t turn again until they were consumed. + + +I have consumed them, + +and struck them through, + +so that they can’t arise. + +Yes, they have fallen under my feet. + + +For you have armed me with strength for the battle. + +You have subdued under me those who rose up against me. + + +You have also made my enemies turn their backs to me, + +that I might cut off those who hate me. + + +They looked, but there was no one to save; + +even to Yahweh, but he didn’t answer them. + + +Then I beat them as small as the dust of the earth. + +I crushed them as the mire of the streets, and spread them abroad. + + + +You also have delivered me from the strivings of my people. + +You have kept me to be the head of the nations. + +A people whom I have not known will serve me. + + +The foreigners will submit themselves to me. + +As soon as they hear of me, they will obey me. + + +The foreigners will fade away, + +and will come trembling out of their close places. + + + +Yahweh lives! + +Blessed be my rock! + +Exalted be God, the rock of my salvation, + + +even the God who executes vengeance for me, + +who brings down peoples under me, + + +who brings me away from my enemies. + +Yes, you lift me up above those who rise up against me. + +You deliver me from the violent man. + + +Therefore I will give thanks to you, Yahweh, among the nations, + +and will sing praises to your name. + + +He gives great deliverance to his king, + +and shows loving kindness to his anointed, + +to David and to his offspring, forever more.” + + + + +

Now these are the last words of David. +

+David the son of Jesse says, + +the man who was raised on high says, + +the anointed of the God of Jacob, + +the sweet psalmist of Israel: + + +Yahweh’s Spirit spoke by me. + +His word was on my tongue. + + +The God of Israel said, + +the Rock of Israel spoke to me, + +One who rules over men righteously, + +who rules in the fear of God, + + +shall be as the light of the morning when the sun rises, + +a morning without clouds, + +when the tender grass springs out of the earth, + +through clear shining after rain.’ + + + +Isn’t my house so with God? + +Yet he has made with me an everlasting covenant, + +ordered in all things, and sure, + +for it is all my salvation and all my desire. + +Won’t he make it grow? + + +But all the ungodly will be as thorns to be thrust away, + +because they can’t be taken with the hand. + + +The man who touches them must be armed with iron and the staff of a spear. + +They will be utterly burned with fire in their place.” + + +

These are the names of the mighty men whom David had: Josheb Basshebeth, a Tahchemonite, chief of the captains; he was called Adino the Eznite, who killed eight hundred at one time. + +After him was Eleazar the son of Dodai the son of an Ahohite, one of the three mighty men with David when they defied the Philistines who were there gathered together to battle, and the men of Israel had gone away. + +He arose and struck the Philistines until his hand was weary, and his hand froze to the sword; and Yahweh worked a great victory that day; and the people returned after him only to take plunder. + +After him was Shammah the son of Agee, a Hararite. The Philistines had gathered together into a troop where there was a plot of ground full of lentils; and the people fled from the Philistines. + +But he stood in the middle of the plot and defended it, and killed the Philistines; and Yahweh worked a great victory. + +

+

Three of the thirty chief men went down, and came to David in the harvest time to the cave of Adullam; and the troop of the Philistines was encamped in the valley of Rephaim. + +David was then in the stronghold; and the garrison of the Philistines was then in Bethlehem. + +David said longingly, “Oh that someone would give me water to drink from the well of Bethlehem, which is by the gate!” + +

+

The three mighty men broke through the army 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 he would not drink of it, but poured it out to Yahweh. + +He said, “Be it far from me, Yahweh, that I should do this! Isn’t this the blood of the men who risked their lives to go?” Therefore he would not drink it. The three mighty men did these things. + +

+

Abishai, the brother of Joab, the son of Zeruiah, was chief of the three. He lifted up his spear against three hundred and killed them, and had a name among the three. + +Wasn’t he most honorable of the three? Therefore he was made their captain. However he wasn’t included as one of the three. + +

+

Benaiah the son of Jehoiada, the son of a valiant man of Kabzeel, who had done mighty deeds, killed the two sons of Ariel of Moab. He also went down and killed a lion in the middle of a pit in a time of snow. + +He killed a huge Egyptian, 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 killed him with his own spear. + +Benaiah the son of Jehoiada did these things, and had a name among the three mighty men. + +He was more honorable than the thirty, but he didn’t attain to the three. David set him over his guard. + +

+

Asahel the brother of Joab was one of the thirty: Elhanan the son of Dodo of Bethlehem, + +Shammah the Harodite, Elika the Harodite, + +Helez the Paltite, Ira the son of Ikkesh the Tekoite, + +Abiezer the Anathothite, Mebunnai the Hushathite, + +Zalmon the Ahohite, Maharai the Netophathite, + +Heleb the son of Baanah the Netophathite, Ittai the son of Ribai of Gibeah of the children of Benjamin, + +Benaiah a Pirathonite, Hiddai of the brooks of Gaash. + +Abialbon the Arbathite, Azmaveth the Barhumite, + +Eliahba the Shaalbonite, the sons of Jashen, Jonathan, + +Shammah the Hararite, Ahiam the son of Sharar the Ararite, + +Eliphelet the son of Ahasbai, the son of the Maacathite, Eliam the son of Ahithophel the Gilonite, + +Hezro the Carmelite, Paarai the Arbite, + +Igal the son of Nathan of Zobah, Bani the Gadite, + +Zelek the Ammonite, Naharai the Beerothite, armor bearers to Joab the son of Zeruiah, + +Ira the Ithrite, Gareb the Ithrite, + +and Uriah the Hittite: thirty-seven in all. + +

+ + +

Again Yahweh’s anger burned against Israel, and he moved David against them, saying, “Go, count Israel and Judah.” + +The king said to Joab the captain of the army, who was with him, “Now go back and forth through all the tribes of Israel, from Dan even to Beersheba, and count the people, that I may know the sum of the people.” + +

+

Joab said to the king, “Now may Yahweh your God add to the people, however many they may be, one hundred times; and may the eyes of my lord the king see it. But why does my lord the king delight in this thing?” + +

+

Notwithstanding, the king’s word prevailed against Joab and against the captains of the army. Joab and the captains of the army went out from the presence of the king to count the people of Israel. + +They passed over the Jordan and encamped in Aroer, on the right side of the city that is in the middle of the valley of Gad, and to Jazer; + +then they came to Gilead and to the land of Tahtim Hodshi; and they came to Dan Jaan and around to Sidon, + +and came to the stronghold of Tyre, and to all the cities of the Hivites and of the Canaanites; and they went out to the south of Judah, at Beersheba. + +So when they had gone back and forth through all the land, they came to Jerusalem at the end of nine months and twenty days. + +Joab gave up the sum of the counting of the people to the king; and there were in Israel eight hundred thousand valiant men who drew the sword, and the men of Judah were five hundred thousand men. + +

+

David’s heart struck him after he had counted the people. David said to Yahweh, “I have sinned greatly in that which I have done. But now, Yahweh, put away, I beg you, the iniquity of your servant; for I have done very foolishly.” + +

+

When David rose up in the morning, Yahweh’s word came to the prophet Gad, David’s seer, saying, + +Go and speak to David, ‘Yahweh says, “I offer you three things. Choose one of them, that I may do it to you.”’” + +

+

So Gad came to David, and told him, saying, “Shall seven years of famine come to you in your land? Or will you flee three months before your foes while they pursue you? Or shall there be three dayspestilence in your land? Now answer, and consider what answer I shall return to him who sent me.” + +

+

David said to Gad, “I am in distress. Let us fall now into Yahweh’s hand, for his mercies are great. Let me not fall into man’s hand.” + +

+

So Yahweh sent a pestilence on Israel from the morning even to the appointed time; and seventy thousand men died of the people from Dan even to Beersheba. + +When the angel stretched out his hand toward Jerusalem to destroy it, Yahweh relented of the disaster, and said to the angel who destroyed the people, “It is enough. Now withdraw your hand.” Yahweh’s angel was by the threshing floor of Araunah the Jebusite. + +

+

David spoke to Yahweh when he saw the angel who struck the people, and said, “Behold, I have sinned, and I have done perversely; but these sheep, what have they done? Please let your hand be against me, and against my father’s house.” + +

+

Gad came that day to David and said to him, “Go up, build an altar to Yahweh on the threshing floor of Araunah the Jebusite.” + +

+

David went up according to the saying of Gad, as Yahweh commanded. + +Araunah looked out, and saw the king and his servants coming on toward him. Then Araunah went out and bowed himself before the king with his face to the ground. + +Araunah said, “Why has my lord the king come to his servant?” +

+

David said, “To buy your threshing floor, to build an altar to Yahweh, that the plague may be stopped from afflicting the people.” + +

+

Araunah said to David, “Let my lord the king take and offer up what seems good to him. Behold, the cattle for the burnt offering, and the threshing sledges and the yokes of the oxen for the wood. + +All this, O king, does Araunah give to the king.” Araunah said to the king, “May Yahweh your God accept you.” + +

+

The king said to Araunah, “No, but I will most certainly buy it from you for a price. I will not offer burnt offerings to Yahweh my God which cost me nothing.” So David bought the threshing floor and the oxen for fifty shekels24:24 +A shekel is about 10 grams or about 0.35 ounces, so 50 shekels is about 0.5 kilograms or 1.1 pounds. of silver. + +David built an altar to Yahweh there, and offered burnt offerings and peace offerings. So Yahweh was entreated for the land, and the plague was removed from Israel. + +

+
+World English Bible (WEB) +1 Kings +The First Book of Kings +1 Kings +1Ki +

The First Book of Kings +

+ + +

Now King David was old and advanced in years; and they covered him with clothes, but he couldn’t keep warm. + +Therefore his servants said to him, “Let a young virgin be sought for my lord the king. Let her stand before the king, and cherish him; and let her lie in your bosom, that my lord the king may keep warm.” + +So they sought for a beautiful young lady throughout all the borders of Israel, and found Abishag the Shunammite, and brought her to the king. + +The young lady was very beautiful; and she cherished the king, and served him; but the king didn’t know her intimately. + +

+

Then Adonijah the son of Haggith exalted himself, saying, “I will be king.” Then he prepared him chariots and horsemen, and fifty men to run before him. + +His father had not displeased him at any time in saying, “Why have you done so?” and he was also a very handsome man; and he was born after Absalom. + +He conferred with Joab the son of Zeruiah and with Abiathar the priest; and they followed Adonijah and helped him. + +But Zadok the priest, Benaiah the son of Jehoiada, Nathan the prophet, Shimei, Rei, and the mighty men who belonged to David, were not with Adonijah. + +

+

Adonijah killed sheep, cattle, and fatlings by the stone of Zoheleth, which is beside En Rogel; and he called all his brothers, the king’s sons, and all the men of Judah, the king’s servants; + +but he didn’t call Nathan the prophet, and Benaiah, and the mighty men, and Solomon his brother. + +

+

Then Nathan spoke to Bathsheba the mother of Solomon, saying, “Haven’t you heard that Adonijah the son of Haggith reigns, and David our lord doesn’t know it? + +Now therefore come, please let me give you counsel, that you may save your own life and your son Solomon’s life. + +Go in to King David, and tell him, ‘Didn’t you, my lord the king, swear to your servant, saying, “Assuredly Solomon your son shall reign after me, and he shall sit on my throne”? Why then does Adonijah reign?’ + +Behold,1:14 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. while you are still talking there with the king, I will also come in after you and confirm your words.” + +

+

Bathsheba went in to the king in his room. The king was very old; and Abishag the Shunammite was serving the king. + +Bathsheba bowed and showed respect to the king. The king said, “What would you like?” + +

+

She said to him, “My lord, you swore by Yahweh1:17 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. + your God1:17 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). to your servant, ‘Assuredly Solomon your son shall reign after me, and he shall sit on my throne.’ + +Now, behold, Adonijah reigns; and you, my lord the king, don’t know it. + +He has slain cattle and fatlings and sheep in abundance, and has called all the sons of the king, Abiathar the priest, and Joab the captain of the army; but he hasn’t called Solomon your servant. + +You, my lord the king, the eyes of all Israel are on you, that you should tell them who will sit on the throne of my lord the king after him. + +Otherwise it will happen, when my lord the king sleeps with his fathers, that I and my son Solomon will be considered criminals.” + +

+

Behold, while she was still talking with the king, Nathan the prophet came in. + +They told the king, saying, “Behold, Nathan the prophet!” +

+

When he had come in before the king, he bowed himself before the king with his face to the ground. + +Nathan said, “My lord, King, have you said, ‘Adonijah shall reign after me, and he shall sit on my throne’? + +For he has gone down today, and has slain cattle, fatlings, and sheep in abundance, and has called all the king’s sons, the captains of the army, and Abiathar the priest. Behold, they are eating and drinking before him, and saying, ‘Long live King Adonijah!’ + +But he hasn’t called me, even me your servant, Zadok the priest, Benaiah the son of Jehoiada, and your servant Solomon. + +Was this thing done by my lord the king, and you haven’t shown to your servants who should sit on the throne of my lord the king after him?” + +

+

Then King David answered, “Call Bathsheba in to me.” She came into the king’s presence and stood before the king. + +The king vowed and said, “As Yahweh lives, who has redeemed my soul out of all adversity, + +most certainly as I swore to you by Yahweh, the God of Israel, saying, ‘Assuredly Solomon your son shall reign after me, and he shall sit on my throne in my place;’ I will most certainly do this today.” + +

+

Then Bathsheba bowed with her face to the earth and showed respect to the king, and said, “Let my lord King David live forever!” + +

+

King David said, “Call to me Zadok the priest, Nathan the prophet, and Benaiah the son of Jehoiada.” They came before the king. + +The king said to them, “Take with you the servants of your lord, and cause Solomon my son to ride on my own mule, and bring him down to Gihon. + +Let Zadok the priest and Nathan the prophet anoint him there king over Israel. Blow the trumpet, and say, ‘Long live King Solomon!’ + +Then come up after him, and he shall come and sit on my throne; for he shall be king in my place. I have appointed him to be prince over Israel and over Judah.” + +

+

Benaiah the son of Jehoiada answered the king, and said, “Amen. May Yahweh, the God of my lord the king, say so. + +As Yahweh has been with my lord the king, even so may he be with Solomon, and make his throne greater than the throne of my lord King David.” + +

+

So Zadok the priest, Nathan the prophet, Benaiah the son of Jehoiada, and the Cherethites and the Pelethites went down and had Solomon ride on King David’s mule, and brought him to Gihon. + +Zadok the priest took the horn of oil from the Tent, and anointed Solomon. They blew the trumpet; and all the people said, “Long live King Solomon!” + +

+

All the people came up after him, and the people piped with pipes, and rejoiced with great joy, so that the earth shook with their sound. + +Adonijah and all the guests who were with him heard it as they had finished eating. When Joab heard the sound of the trumpet, he said, “Why is this noise of the city being in an uproar?” + +

+

While he yet spoke, behold, Jonathan the son of Abiathar the priest came; and Adonijah said, “Come in; for you are a worthy man, and bring good news.” + +

+

Jonathan answered Adonijah, “Most certainly our lord King David has made Solomon king. + +The king has sent with him Zadok the priest, Nathan the prophet, Benaiah the son of Jehoiada, and the Cherethites and the Pelethites; and they have caused him to ride on the king’s mule. + +Zadok the priest and Nathan the prophet have anointed him king in Gihon. They have come up from there rejoicing, so that the city rang again. This is the noise that you have heard. + +Also, Solomon sits on the throne of the kingdom. + +Moreover the king’s servants came to bless our lord King David, saying, ‘May your God make the name of Solomon better than your name, and make his throne greater than your throne;’ and the king bowed himself on the bed. + +Also thus said the king, ‘Blessed be Yahweh, the God of Israel, who has given one to sit on my throne today, my eyes even seeing it.’” + +

+

All the guests of Adonijah were afraid, and rose up, and each man went his way. + +Adonijah was afraid because of Solomon; and he arose, and went, and hung onto the horns of the altar. + +Solomon was told, “Behold, Adonijah fears King Solomon; for, behold, he is hanging onto the horns of the altar, saying, ‘Let King Solomon swear to me first that he will not kill his servant with the sword.’” + +

+

Solomon said, “If he shows himself a worthy man, not a hair of his shall fall to the earth; but if wickedness is found in him, he shall die.” + +

+

So King Solomon sent, and they brought him down from the altar. He came and bowed down to King Solomon; and Solomon said to him, “Go to your house.” + +

+ + +

Now the days of David came near that he should die; and he commanded Solomon his son, saying, + +I am going the way of all the earth. You be strong therefore, and show yourself a man; + +and keep the instruction of Yahweh your God, to walk in his ways, to keep his statutes, his commandments, his ordinances, and his testimonies, according to that which is written in the law of Moses, that you may prosper in all that you do and wherever you turn yourself. + +Then Yahweh may establish his word which he spoke concerning me, saying, ‘If your children are careful of their way, to walk before me in truth with all their heart and with all their soul, there shall not fail you,’ he said, ‘a man on the throne of Israel.’ + +

+

Moreover you know also what Joab the son of Zeruiah did to me, even what he did to the two captains of the armies of Israel, to Abner the son of Ner and to Amasa the son of Jether, whom he killed, and shed the blood of war in peace, and put the blood of war on his sash that was around his waist and in his sandals that were on his feet. + +Do therefore according to your wisdom, and don’t let his gray head go down to Sheol2:6 +Sheol is the place of the dead. in peace. + +But show kindness to the sons of Barzillai the Gileadite, and let them be among those who eat at your table; for so they came to me when I fled from Absalom your brother. + +

+

Behold, there is with you Shimei the son of Gera, the Benjamite of Bahurim, who cursed me with a grievous curse in the day when I went to Mahanaim; but he came down to meet me at the Jordan, and I swore to him by Yahweh, saying, ‘I will not put you to death with the sword.’ + +Now therefore don’t hold him guiltless, for you are a wise man; and you will know what you ought to do to him, and you shall bring his gray head down to Sheol2:9 +Sheol is the place of the dead. with blood.” + +

+

David slept with his fathers, and was buried in David’s city. + +The days that David reigned over Israel were forty years; he reigned seven years in Hebron, and he reigned thirty-three years in Jerusalem. + +Solomon sat on David his father’s throne; and his kingdom was firmly established. + +

+

Then Adonijah the son of Haggith came to Bathsheba the mother of Solomon. She said, “Do you come peaceably?” +

+

He said, “Peaceably. + +He said moreover, I have something to tell you.” +

+

She said, “Say on.” + +

+

He said, “You know that the kingdom was mine, and that all Israel set their faces on me, that I should reign. However, the kingdom is turned around, and has become my brother’s; for it was his from Yahweh. + +Now I ask one petition of you. Don’t deny me.” +

+

She said to him, “Say on.” + +

+

He said, “Please speak to Solomon the king (for he will not tell youno’), that he give me Abishag the Shunammite as wife.” + +

+

Bathsheba said, “All right. I will speak for you to the king.” + +

+

Bathsheba therefore went to King Solomon, to speak to him for Adonijah. The king rose up to meet her and bowed himself to her, and sat down on his throne and caused a throne to be set for the king’s mother; and she sat on his right hand. + +Then she said, “I ask one small petition of you; don’t deny me.” +

+

The king said to her, “Ask on, my mother, for I will not deny you.” + +

+

She said, “Let Abishag the Shunammite be given to Adonijah your brother as wife.” + +

+

King Solomon answered his mother, “Why do you ask Abishag the Shunammite for Adonijah? Ask for him the kingdom also, for he is my elder brother; even for him, and for Abiathar the priest, and for Joab the son of Zeruiah.” + +Then King Solomon swore by Yahweh, saying, “God do so to me, and more also, if Adonijah has not spoken this word against his own life. + +Now therefore as Yahweh lives, who has established me and set me on my father David’s throne, and who has made me a house as he promised, surely Adonijah shall be put to death today.” + +

+

King Solomon sent Benaiah the son of Jehoiada; and he fell on him, so that he died. + +To Abiathar the priest the king said, “Go to Anathoth, to your own fields, for you are worthy of death. But I will not at this time put you to death, because you bore the Lord2:26 +The word translated “Lord” is “Adonai.” Yahweh’s ark before David my father, and because you were afflicted in all in which my father was afflicted.” + +So Solomon thrust Abiathar out from being priest to Yahweh, that he might fulfill Yahweh’s word which he spoke concerning the house of Eli in Shiloh. + +

+

This news came to Joab; for Joab had followed Adonijah, although he didn’t follow Absalom. Joab fled to Yahweh’s Tent, and held onto the horns of the altar. + +King Solomon was told, “Joab has fled to Yahweh’s Tent; and behold, he is by the altar.” Then Solomon sent Benaiah the son of Jehoiada, saying, “Go, fall on him.” + +

+

Benaiah came to Yahweh’s Tent, and said to him, “The king says, ‘Come out!’” +

+

He said, “No; but I will die here.” +

+

Benaiah brought the king word again, saying, “This is what Joab said, and this is how he answered me.” + +

+

The king said to him, “Do as he has said, and fall on him, and bury him, that you may take away the blood, which Joab shed without cause, from me and from my father’s house. + +Yahweh will return his blood on his own head, because he fell on two men more righteous and better than he, and killed them with the sword, and my father David didn’t know it: Abner the son of Ner, captain of the army of Israel, and Amasa the son of Jether, captain of the army of Judah. + +So their blood will return on the head of Joab and on the head of his offspring2:33 +or, seed forever. But for David, for his offspring, for his house, and for his throne, there will be peace forever from Yahweh.” + +

+

Then Benaiah the son of Jehoiada went up and fell on him, and killed him; and he was buried in his own house in the wilderness. + +The king put Benaiah the son of Jehoiada in his place over the army; and the king put Zadok the priest in the place of Abiathar. + +

+

The king sent and called for Shimei, and said to him, “Build yourself a house in Jerusalem, and live there, and don’t go anywhere else. + +For on the day you go out and pass over the brook Kidron, know for certain that you will surely die. Your blood will be on your own head.” + +

+

Shimei said to the king, “What you say is good. As my lord the king has said, so will your servant do.” Shimei lived in Jerusalem many days. + +

+

At the end of three years, two of Shimei’s slaves ran away to Achish, son of Maacah, king of Gath. They told Shimei, saying, “Behold, your slaves are in Gath.” + +

+

Shimei arose, saddled his donkey, and went to Gath to Achish to seek his slaves; and Shimei went and brought his slaves from Gath. + +Solomon was told that Shimei had gone from Jerusalem to Gath, and had come again. + +

+

The king sent and called for Shimei, and said to him, “Didn’t I adjure you by Yahweh and warn you, saying, ‘Know for certain that on the day you go out and walk anywhere else, you shall surely die’? You said to me, ‘The saying that I have heard is good.’ + +Why then have you not kept the oath of Yahweh and the commandment that I have instructed you with?” + +The king said moreover to Shimei, “You know in your heart all the wickedness that you did to David my father. Therefore Yahweh will return your wickedness on your own head. + +But King Solomon will be blessed, and David’s throne will be established before Yahweh forever.” + +So the king commanded Benaiah the son of Jehoiada; and he went out, and fell on him, so that he died. The kingdom was established in the hand of Solomon. + +

+ + +

Solomon made a marriage alliance with Pharaoh king of Egypt. He took Pharaoh’s daughter and brought her into David’s city until he had finished building his own house, Yahweh’s house, and the wall around Jerusalem. + +However, the people sacrificed in the high places, because there was not yet a house built for Yahweh’s name. + +Solomon loved Yahweh, walking in the statutes of David his father, except that he sacrificed and burned incense in the high places. + +The king went to Gibeon to sacrifice there, for that was the great high place. Solomon offered a thousand burnt offerings on that altar. + +In Gibeon, Yahweh appeared to Solomon in a dream by night; and God said, “Ask for what I should give you.” + +

+

Solomon said, “You have shown to your servant David my father great loving kindness, because he walked before you in truth, in righteousness, and in uprightness of heart with you. You have kept for him this great loving kindness, that you have given him a son to sit on his throne, as it is today. + +Now, Yahweh my God, you have made your servant king instead of David my father. I am just a little child. I don’t know how to go out or come in. + +Your servant is among your people which you have chosen, a great people, that can’t be numbered or counted for multitude. + +Give your servant therefore an understanding heart to judge your people, that I may discern between good and evil; for who is able to judge this great people of yours?” + +

+

This request pleased the Lord, that Solomon had asked this thing. + +God said to him, “Because you have asked this thing, and have not asked for yourself long life, nor have you asked for riches for yourself, nor have you asked for the life of your enemies, but have asked for yourself understanding to discern justice, + +behold, I have done according to your word. Behold, I have given you a wise and understanding heart, so that there has been no one like you before you, and after you none will arise like you. + +I have also given you that which you have not asked, both riches and honor, so that there will not be any among the kings like you for all your days. + +If you will walk in my ways, to keep my statutes and my commandments, as your father David walked, then I will lengthen your days.” + +

+

Solomon awoke; and behold, it was a dream. Then he came to Jerusalem and stood before the ark of Yahweh’s covenant, and offered up burnt offerings, offered peace offerings, and made a feast for all his servants. + +

+

Then two women who were prostitutes came to the king, and stood before him. + +The one woman said, “Oh, my lord, I and this woman dwell in one house. I delivered a child with her in the house. + +The third day after I delivered, this woman delivered also. We were together. There was no stranger with us in the house, just us two in the house. + +This woman’s child died in the night, because she lay on it. + +She arose at midnight, and took my son from beside me while your servant slept, and laid it in her bosom, and laid her dead child in my bosom. + +When I rose in the morning to nurse my child, behold, he was dead; but when I had looked at him in the morning, behold, it was not my son whom I bore.” + +

+

The other woman said, “No! But the living one is my son, and the dead one is your son.” +

+

The first one said, “No! But the dead one is your son, and the living one is my son.” They argued like this before the king. + +

+

Then the king said, “One says, ‘This is my son who lives, and your son is the dead one;’ and the other says, ‘No! But your son is the dead one, and my son is the living one.’” + +

+

The king said, “Get me a sword.” So they brought a sword before the king. + +

+

The king said, “Divide the living child in two, and give half to the one, and half to the other.” + +

+

Then the woman whose the living child was spoke to the king, for her heart yearned over her son, and she said, “Oh, my lord, give her the living child, and in no way kill him!” +

+

But the other said, “He shall be neither mine nor yours. Divide him.” + +

+

Then the king answered, “Give the first woman the living child, and definitely do not kill him. She is his mother.” + +

+

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 justice. + +

+ + +

King Solomon was king over all Israel. + +These were the princes whom he had: Azariah the son of Zadok, the priest; + +Elihoreph and Ahijah, the sons of Shisha, scribes; Jehoshaphat the son of Ahilud, the recorder; + +Benaiah the son of Jehoiada was over the army; Zadok and Abiathar were priests; + +Azariah the son of Nathan was over the officers; Zabud the son of Nathan was chief minister, the king’s friend; + +Ahishar was over the household; and Adoniram the son of Abda was over the men subject to forced labor. + +

+

Solomon had twelve officers over all Israel, who provided food for the king and his household. Each man had to make provision for a month in the year. + +These are their names: Ben Hur, in the hill country of Ephraim; + +Ben Deker, in Makaz, in Shaalbim, Beth Shemesh, and Elon Beth Hanan; + +Ben Hesed, in Arubboth (Socoh and all the land of Hepher belonged to him); + +Ben Abinadab, in all the height of Dor (he had Taphath, Solomon’s daughter, as wife); + +Baana the son of Ahilud, in Taanach and Megiddo, and all Beth Shean which is beside Zarethan, beneath Jezreel, from Beth Shean to Abel Meholah, as far as beyond Jokmeam; + +Ben Geber, in Ramoth Gilead (the towns of Jair the son of Manasseh, which are in Gilead, belonged to him; and the region of Argob, which is in Bashan, sixty great cities with walls and bronze bars, belonged to him); + +Ahinadab the son of Iddo, in Mahanaim; + +Ahimaaz, in Naphtali (he also took Basemath the daughter of Solomon as wife); + +Baana the son of Hushai, in Asher and Bealoth; + +Jehoshaphat the son of Paruah, in Issachar; + +Shimei the son of Ela, in Benjamin; + +Geber the son of Uri, in the land of Gilead, the country of Sihon king of the Amorites and of Og king of Bashan; and he was the only officer who was in the land. + +

+

Judah and Israel were numerous as the sand which is by the sea in multitude, eating and drinking and making merry. + +Solomon ruled over all the kingdoms from the River to the land of the Philistines, and to the border of Egypt. They brought tribute and served Solomon all the days of his life. + +Solomon’s provision for one day was thirty cors4:22 +1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels of fine flour, sixty measures of meal, + +ten head of fat cattle, twenty head of cattle out of the pastures, and one hundred sheep, in addition to deer, gazelles, roebucks, and fattened fowl. + +For he had dominion over all on this side of the River, from Tiphsah even to Gaza, over all the kings on this side of the River; and he had peace on all sides around him. + +Judah and Israel lived safely, every man under his vine and under his fig tree, from Dan even to Beersheba, all the days of Solomon. + +Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen. + +Those officers provided food for King Solomon, and for all who came to King Solomon’s table, every man in his month. They let nothing be lacking. + +They also brought barley and straw for the horses and swift steeds to the place where the officers were, each man according to his duty. + +God gave Solomon abundant wisdom, understanding, and breadth of mind like the sand that is on the seashore. + +Solomon’s wisdom excelled the wisdom of all the children of the east and all the wisdom of Egypt. + +For he was wiser than all men—wiser than Ethan the Ezrahite, Heman, Calcol, and Darda, the sons of Mahol; and his fame was in all the nations all around. + +He spoke three thousand proverbs, and his songs numbered one thousand five. + +He spoke of trees, from the cedar that is in Lebanon even to the hyssop that grows out of the wall; he also spoke of animals, of birds, of creeping things, and of fish. + +People of all nations came to hear the wisdom of Solomon, sent by all kings of the earth who had heard of his wisdom. + +

+ + +

Hiram king of Tyre sent his servants to Solomon, for he had heard that they had anointed him king in the place of his father, and Hiram had always loved David. + +Solomon sent to Hiram, saying, + +“You know that David my father could not build a house for the name of Yahweh his God because of the wars which were around him on every side, until Yahweh put his enemies under the soles of his feet. + +But now Yahweh my God has given me rest on every side. There is no enemy and no evil occurrence. + +Behold, I intend to build a house for the name of Yahweh my God, as Yahweh spoke to David my father, saying, ‘Your son, whom I will set on your throne in your place shall build the house for my name.’ + +Now therefore command that cedar trees be cut for me out of Lebanon. My servants will be with your servants; and I will give you wages for your servants according to all that you say. For you know that there is nobody among us who knows how to cut timber like the Sidonians.” + +

+

When Hiram heard the words of Solomon, he rejoiced greatly, and said, “Blessed is Yahweh today, who has given to David a wise son to rule over this great people.” + +Hiram sent to Solomon, saying, “I have heard the message which you have sent to me. I will do all your desire concerning timber of cedar, and concerning cypress timber. + +My servants will bring them down from Lebanon to the sea. I will make them into rafts to go by sea to the place that you specify to me, and will cause them to be broken up there, and you will receive them. You will accomplish my desire, in giving food for my household.” + +

+

So Hiram gave Solomon cedar timber and cypress timber according to all his desire. + +Solomon gave Hiram twenty thousand cors5:11 +20,000 cors would be about 120,000 bushels or about 4.2 megaliters of wheat, which would weigh about 3,270 metric tons. of wheat for food to his household, and twenty cors5:11 +20 cors is about 1,100 gallons or about 4220 liters. of pure oil. Solomon gave this to Hiram year by year. + +Yahweh gave Solomon wisdom, as he promised him. There was peace between Hiram and Solomon, and the two of them made a treaty together. + +

+

King Solomon raised a levy out of all Israel; and the levy was thirty thousand men. + +He sent them to Lebanon, ten thousand a month by courses: for a month they were in Lebanon, and two months at home; and Adoniram was over the men subject to forced labor. + +Solomon had seventy thousand who bore burdens, and eighty thousand who were stone cutters in the mountains, + +besides Solomon’s chief officers who were over the work: three thousand three hundred who ruled over the people who labored in the work. + +The king commanded, and they cut out large stones, costly stones, to lay the foundation of the house with worked stone. + +Solomon’s builders and Hiram’s builders and the Gebalites cut them, and prepared the timber and the stones to build the house. + +

+ + +

In the four hundred and eightieth year after the children of Israel had come out of the land of Egypt, in the fourth year of Solomon’s reign over Israel, in the month Ziv, which is the second month, he began to build Yahweh’s house. + +The house which King Solomon built for Yahweh had a length of sixty cubits,6:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and its width twenty, and its height thirty cubits. + +The porch in front of the temple of the house had a length of twenty cubits, which was along the width of the house. Ten cubits was its width in front of the house. + +He made windows of fixed lattice work for the house. + +Against the wall of the house, he built floors all around, against the walls of the house all around, both of the temple and of the inner sanctuary; and he made side rooms all around. + +The lowest floor was five cubits wide, and the middle was six cubits wide, and the third was seven cubits wide; for on the outside he made offsets in the wall of the house all around, that the beams should not be inserted into the walls of the house. + +The house, when it was under construction, was built of stone prepared at the quarry; and no hammer or ax or any tool of iron was heard in the house while it was under construction. + +The door for the middle side rooms was in the right side of the house. They went up by winding stairs into the middle floor, and out of the middle into the third. + +So he built the house and finished it; and he covered the house with beams and planks of cedar. + +He built the floors all along the house, each five cubits high; and they rested on the house with timbers of cedar. + +

+

Yahweh’s word came to Solomon, saying, + +Concerning this house which you are building, if you will walk in my statutes, and execute my ordinances, and keep all my commandments to walk in them, then I will establish my word with you, which I spoke to David your father. + +I will dwell among the children of Israel, and will not forsake my people Israel.” + +

+

So Solomon built the house and finished it. + +He built the walls of the house within with boards of cedar; from the floor of the house to the walls of the ceiling, he covered them on the inside with wood. He covered the floor of the house with cypress boards. + +He built twenty cubits of the back part of the house with boards of cedar from the floor to the ceiling. He built this within, for an inner sanctuary, even for the most holy place. + +In front of the temple sanctuary was forty cubits long. + +There was cedar on the house within, carved with buds and open flowers. All was cedar. No stone was visible. + +He prepared an inner sanctuary in the middle of the house within, to set the ark of Yahweh’s covenant there. + +Within the inner sanctuary was twenty cubits in length, and twenty cubits in width, and twenty cubits in its height. He overlaid it with pure gold. He covered the altar with cedar. + +So Solomon overlaid the house within with pure gold. He drew chains of gold across before the inner sanctuary, and he overlaid it with gold. + +He overlaid the whole house with gold, until all the house was finished. He also overlaid the whole altar that belonged to the inner sanctuary with gold. + +

+

In the inner sanctuary he made two cherubim6:23 +“Cherubim” is plural of “cherub”, an angelic being. of olive wood, each ten cubits high. + +Five cubits was the length of one wing of the cherub, and five cubits was the length of the other wing of the cherub. From the tip of one wing to the tip of the other was ten cubits. + +The other cherub was ten cubits. Both the cherubim were of one measure and one form. + +One cherub was ten cubits high, and so was the other cherub. + +He set the cherubim within the inner house. The wings of the cherubim were stretched out, 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 middle of the house. + +He overlaid the cherubim with gold. + +

+

He carved all the walls of the house around with carved figures of cherubim, palm trees, and open flowers, inside and outside. + +He overlaid the floor of the house with gold, inside and outside. + +For the entrance of the inner sanctuary, he made doors of olive wood. The lintel and door posts were a fifth part of the wall. + +So he made two doors of olive wood; and he carved on them carvings of cherubim, palm trees, and open flowers, and overlaid them with gold. He spread the gold on the cherubim and on the palm trees. + +He also made the entrance of the temple door posts of olive wood, out of a fourth part of the wall, + +and two doors of cypress wood. The two leaves of the one door were folding, and the two leaves of the other door were folding. + +He carved cherubim, palm trees, and open flowers; and he overlaid them with gold fitted on the engraved work. + +He built the inner court with three courses of cut stone and a course of cedar beams. + +

+

The foundation of Yahweh’s house was laid in the fourth year, in the month Ziv. + +In the eleventh year, in the month Bul, which is the eighth month, the house was finished throughout all its parts and according to all its specifications. So he spent seven years building it. + +

+ + +

Solomon was building his own house thirteen years, and he finished all his house. + +For he built the House of the Forest of Lebanon. Its length was one hundred cubits,7:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. its width fifty cubits, and its height thirty cubits, on four rows of cedar pillars, with cedar beams on the pillars. + +It was covered with cedar above over the forty-five beams that were on the pillars, fifteen in a row. + +There were beams in three rows, and window was facing window in three ranks. + +All the doors and posts were made square with beams; and window was facing window in three ranks. + +He made the hall of pillars. Its length was fifty cubits and its width thirty cubits, with a porch before them, and pillars and a threshold before them. + +He made the porch of the throne where he was to judge, even the porch of judgment; and it was covered with cedar from floor to floor. + +His house where he was to dwell, the other court within the porch, was of the same construction. He made also a house for Pharaoh’s daughter (whom Solomon had taken as wife), like this porch. + +All these were of costly stones, even of stone cut according to measure, sawed with saws, inside and outside, even from the foundation to the coping, and so on the outside to the great court. + +The foundation was of costly stones, even great stones, stones of ten cubits and stones of eight cubits. + +Above were costly stones, even cut stone, according to measure, and cedar wood. + +The great court around had three courses of cut stone with a course of cedar beams, like the inner court of Yahweh’s house and the porch of the house. + +

+

King Solomon sent and brought Hiram out of Tyre. + +He was the son of a widow of the tribe of Naphtali, and his father was a man of Tyre, a worker in bronze; and he was filled with wisdom and understanding and skill to work all works in bronze. He came to King Solomon and performed all his work. + +For he fashioned the two pillars of bronze, eighteen cubits high apiece; and a line of twelve cubits encircled either of them. + +He made two capitals of molten bronze to set on the tops of the pillars. The height of the one capital was five cubits, and the height of the other capital was five cubits. + +There were nets of checker work and wreaths of chain work for the capitals which were on the top of the pillars: seven for the one capital, and seven for the other capital. + +So he made the pillars; and there were two rows of pomegranates around the one network, to cover the capitals that were on the top of the pillars; and he did so for the other capital. + +The capitals that were on the top of the pillars in the porch were of lily work, four cubits. + +There were capitals above also on the two pillars, close by the belly which was beside the network. There were two hundred pomegranates in rows around the other capital. + +He set up the pillars at the porch of the temple. He set up the right pillar and called its name Jachin; and he set up the left pillar and called its name Boaz. + +On the tops of the pillars was lily work. So the work of the pillars was finished. + +

+

He made the molten sea ten cubits from brim to brim, round in shape. Its height was five cubits; and a line of thirty cubits encircled it. + +Under its brim around there were buds which encircled it for ten cubits, encircling the sea. The buds were in two rows, cast when it was cast. + +It stood on 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 on them above, and all their hindquarters were inward. + +It was a hand width thick. Its brim was worked like the brim of a cup, like the flower of a lily. It held two thousand baths. + +

+

He made the ten bases of bronze. The length of one base was four cubits, four cubits its width, and three cubits its height. + +The work of the bases was like this: they had panels; and there were panels between the ledges; + +and on the panels that were between the ledges were lions, oxen, and cherubim; and on the ledges there was a pedestal above; and beneath the lions and oxen were wreaths of hanging work. + +Every base had four bronze wheels and axles of bronze; and its four feet had supports. The supports were cast beneath the basin, with wreaths at the side of each. + +Its opening within the capital and above was a cubit. Its opening was round like the work of a pedestal, a cubit and a half; and also on its opening were engravings, and their panels were square, not round. + +The four wheels were underneath the panels; and the axles of the wheels were in the base. The height of a wheel was a cubit and half a cubit. + +The work of the wheels was like the work of a chariot wheel. Their axles, their rims, their spokes, and their hubs were all of cast metal. + +There were four supports at the four corners of each base. Its supports were of the base itself. + +In the top of the base there was a round band half a cubit high; and on the top of the base its supports and its panels were the same. + +On the plates of its supports and on its panels, he engraved cherubim, lions, and palm trees, each in its space, with wreaths all around. + +He made the ten bases in this way: all of them had one casting, one measure, and one form. + +He made ten basins of bronze. One basin contained forty baths.7:38 +1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters, so 40 baths was about 224 gallons or 840 liters. Every basin measured four cubits. One basin was on every one of the ten bases. + +He set the bases, five on the right side of the house and five on the left side of the house. He set the sea on the right side of the house eastward and toward the south. + +

+

Hiram made the pots, the shovels, and the basins. So Hiram finished doing all the work that he worked for King Solomon in Yahweh’s house: + +the two pillars; the two bowls of the capitals that were on the top of the pillars; the two networks to cover the two bowls of the capitals that were on the top of the pillars; + +the four hundred pomegranates for the two networks; two rows of pomegranates for each network, to cover the two bowls of the capitals that were on the pillars; + +the ten bases; the ten basins on the bases; + +the one sea; the twelve oxen under the sea; + +the pots; the shovels; and the basins. All of these vessels, which Hiram made for King Solomon for Yahweh’s house, were of burnished bronze. + +The king cast them in the plain of the Jordan, in the clay ground between Succoth and Zarethan. + +Solomon left all the vessels unweighed, because there were so many of them. The weight of the bronze could not be determined. + +

+

Solomon made all the vessels that were in Yahweh’s house: the golden altar and the table that the show bread was on, of gold; + +and the lamp stands, five on the right side and five on the left, in front of the inner sanctuary, of pure gold; and the flowers, the lamps, and the tongs, of gold; + +the cups, the snuffers, the basins, the spoons, and the fire pans, of pure gold; and the hinges, both for the doors of the inner house, the most holy place, and for the doors of the house, of the temple, of gold. + +

+

Thus all the work that King Solomon did in Yahweh’s house was finished. Solomon brought in the things which David his father had dedicatedthe silver, the gold, and the vesselsand put them in the treasuries of Yahweh’s house. + +

+ + +

Then Solomon assembled the elders of Israel with all the heads of the tribes, the princes of the fathers’ households of the children of Israel, to King Solomon in Jerusalem, to bring up the ark of Yahweh’s covenant out of David’s city, which is Zion. + +All the men of Israel assembled themselves to King Solomon at the feast in the month Ethanim, which is the seventh month. + +All the elders of Israel came, and the priests picked up the ark. + +They brought up Yahweh’s ark, the Tent of Meeting, and all the holy vessels that were in the Tent. The priests and the Levites brought these up. + +King Solomon and all the congregation of Israel, who were assembled to him, were with him before the ark, sacrificing sheep and cattle that could not be counted or numbered for multitude. + +The priests brought in the ark of Yahweh’s covenant to its place, into the inner sanctuary of the house, to the most holy place, even under the cherubim’s wings. + +For the cherubim spread their wings out over the place of the ark, and the cherubim covered the ark and its poles above. + +The poles were so long that the ends of the poles were seen from the holy place before the inner sanctuary, but they were not seen outside. They are there to this day. + +There was nothing in the ark except the two stone tablets which Moses put there at Horeb, when Yahweh made a covenant with the children of Israel, when they came out of the land of Egypt. + +It came to pass, when the priests had come out of the holy place, that the cloud filled Yahweh’s house, + +so that the priests could not stand to minister by reason of the cloud; for Yahweh’s glory filled Yahweh’s house. + +

+

Then Solomon said, “Yahweh has said that he would dwell in the thick darkness. + +I have surely built you a house of habitation, a place for you to dwell in forever.” + +

+

The king turned his face around and blessed all the assembly of Israel; and all the assembly of Israel stood. + +He said, “Blessed is Yahweh, the God of Israel, who spoke with his mouth to David your father, and has with his hand fulfilled it, saying, + +Since the day that I brought my people Israel out of Egypt, I chose no city out of all the tribes of Israel to build a house, that my name might be there; but I chose David to be over my people Israel.’ + +

+

Now it was in the heart of David my father to build a house for the name of Yahweh, the God of Israel. + +But Yahweh said to David my father, ‘Whereas it was in your heart to build a house for my name, you did well that it was in your heart. + +Nevertheless, you shall not build the house; but your son who shall come out of your body, he shall build the house for my name.’ + +Yahweh has established his word that he spoke; for I have risen up in the place of David my father, and I sit on the throne of Israel, as Yahweh promised, and have built the house for the name of Yahweh, the God of Israel. + +There I have set a place for the ark, in which is Yahweh’s covenant, which he made with our fathers when he brought them out of the land of Egypt.” + +

+

Solomon stood before Yahweh’s altar in the presence of all the assembly of Israel, and spread out his hands toward heaven; + +and he said, “Yahweh, the God of Israel, there is no God like you, in heaven above, or on earth beneath; who keeps covenant and loving kindness with your servants who walk before you with all their heart; + +who has kept with your servant David my father that which you promised him. Yes, you spoke with your mouth, and have fulfilled it with your hand, as it is today. + +Now therefore, may Yahweh, the God of Israel, keep with your servant David my father that which you have promised him, saying, ‘There shall not fail from you a man in my sight to sit on the throne of Israel, if only your children take heed to their way, to walk before me as you have walked before me.’ + +

+

Now therefore, God of Israel, please let your word be verified, which you spoke to your servant David my father. + +But will God in very deed dwell on the earth? Behold, heaven and the heaven of heavens can’t contain you; how much less this house that I have built! + +Yet have respect for the prayer of your servant and for his supplication, Yahweh my God, to listen to the cry and to the prayer which your servant prays before you today; + +that your eyes may be open toward this house night and day, even toward the place of which you have said, ‘My name shall be there;’ to listen to the prayer which your servant prays toward this place. + +Listen to the supplication of your servant, and of your people Israel, when they pray toward this place. Yes, hear in heaven, your dwelling place; and when you hear, forgive. + +

+

If a man sins against his neighbor, and an oath is laid on him to cause him to swear, and he comes and swears before your altar in this house, + +then hear in heaven, and act, and judge your servants, condemning the wicked, to bring his way on his own head, and justifying the righteous, to give him according to his righteousness. + +

+

When your people Israel are struck down before the enemy because they have sinned against you, if they turn again to you and confess your name, and pray and make supplication to you in this house, + +then hear in heaven, and forgive the sin of your people Israel, and bring them again to the land which you gave to their fathers. + +

+

When the sky is shut up and there is no rain because they have sinned against you, if they pray toward this place and confess your name, and turn from their sin when you afflict them, + +then hear in heaven, and forgive the sin of your servants, and of your people Israel, when you teach them the good way in which they should walk; and send rain on your land which you have given to your people for an inheritance. + +

+

If there is famine in the land, if there is pestilence, if there is blight, mildew, locust or caterpillar; if their enemy besieges them in the land of their cities, whatever plague, whatever sickness there is, + +whatever prayer and supplication is made by any man, or by all your people Israel, who shall each know the plague of his own heart, and spread out his hands toward this house, + +then hear in heaven, your dwelling place, and forgive, and act, and give to every man according to all his ways, whose heart you know (for you, even you only, know the hearts of all the children of men); + +that they may fear you all the days that they live in the land which you gave to our fathers. + +

+

Moreover, concerning the foreigner, who is not of your people Israel, when he comes out of a far country for your name’s sake + +(for they shall hear of your great name and of your mighty hand and of your outstretched arm), when he comes and prays toward this house, + +hear in heaven, your dwelling place, and do according to all that the foreigner calls to you for; that all the peoples of the earth may know your name, to fear you, as do your people Israel, and that they may know that this house which I have built is called by your name. + +

+

If your people go out to battle against their enemy, by whatever way you shall send them, and they pray to Yahweh toward the city which you have chosen, and toward the house which I have built for your name, + +then hear in heaven their prayer and their supplication, and maintain their cause. + +If they sin against you (for there is no man who doesn’t sin), and you are angry with them and deliver them to the enemy, so that they carry them away captive to the land of the enemy, far off or near; + +yet if they repent in the land where they are carried captive, and turn again, and make supplication to you in the land of those who carried them captive, saying, ‘We have sinned and have done perversely; we have dealt wickedly,’ + +if they return to you with all their heart and with all their soul in the land of their enemies who carried them captive, and pray to you toward their land which you gave to their fathers, the city which you have chosen and the house which I have built for your name, + +then hear their prayer and their supplication in heaven, your dwelling place, and maintain their cause; + +and forgive your people who have sinned against you, and all their transgressions in which they have transgressed against you; and give them compassion before those who carried them captive, that they may have compassion on them + +(for they are your people and your inheritance, which you brought out of Egypt, from the middle of the iron furnace); + +that your eyes may be open to the supplication of your servant and to the supplication of your people Israel, to listen to them whenever they cry to you. + +For you separated them from among all the peoples of the earth to be your inheritance, as you spoke by Moses your servant, when you brought our fathers out of Egypt, Lord Yahweh.” + +

+

It was so, that when Solomon had finished praying all this prayer and supplication to Yahweh, he arose from before Yahweh’s altar, from kneeling on his knees with his hands spread out toward heaven. + +He stood and blessed all the assembly of Israel with a loud voice, saying, + +Blessed be Yahweh, who has given rest to his people Israel, according to all that he promised. There has not failed one word of all his good promise, which he promised by Moses his servant. + +May Yahweh our God be with us as he was with our fathers. Let him not leave us or forsake us, + +that he may incline our hearts to him, to walk in all his ways, and to keep his commandments, his statutes, and his ordinances, which he commanded our fathers. + +Let these my words, with which I have made supplication before Yahweh, be near to Yahweh our God day and night, that he may maintain the cause of his servant and the cause of his people Israel, as every day requires; + +that all the peoples of the earth may know that Yahweh himself is God. There is no one else. + +

+

Let your heart therefore be perfect with Yahweh our God, to walk in his statutes, and to keep his commandments, as it is today.” + +

+

The king, and all Israel with him, offered sacrifice before Yahweh. + +Solomon offered for the sacrifice of peace offerings, which he offered to Yahweh, twenty two thousand head of cattle and one hundred twenty thousand sheep. So the king and all the children of Israel dedicated Yahweh’s house. + +The same day the king made the middle of the court holy that was before Yahweh’s house; for there he offered the burnt offering, the meal offering, and the fat of the peace offerings, because the bronze altar that was before Yahweh was too little to receive the burnt offering, the meal offering, and the fat of the peace offerings. + +

+

So Solomon held the feast at that time, and all Israel with him, a great assembly, from the entrance of Hamath to the brook of Egypt, before Yahweh our God, seven days and seven more days, even fourteen days. + +On the eighth day he sent the people away; and they blessed the king, and went to their tents joyful and glad in their hearts for all the goodness that Yahweh had shown to David his servant, and to Israel his people. + +

+ + +

When Solomon had finished the building of Yahweh’s house, the king’s house, and all Solomon’s desire which he was pleased to do, + +Yahweh appeared to Solomon the second time, as he had appeared to him at Gibeon. + +Yahweh said to him, “I have heard your prayer and your supplication that you have made before me. I have made this house holy, which you have built, to put my name there forever; and my eyes and my heart shall be there perpetually. + +As for you, if you will walk before me as David your father walked, in integrity of heart and in uprightness, to do according to all that I have commanded you, and will keep my statutes and my ordinances, + +then I will establish the throne of your kingdom over Israel forever, as I promised to David your father, saying, ‘There shall not fail from you a man on the throne of Israel.’ + +But if you turn away from following me, you or your children, and not keep my commandments and my statutes which I have set before you, but go and serve other gods and worship them, + +then I will cut off Israel out of the land which I have given them; and I will cast this house, which I have made holy for my name, out of my sight; and Israel will be a proverb and a byword among all peoples. + +Though this house is so high, yet everyone who passes by it will be astonished and hiss; and they will say, ‘Why has Yahweh done this to this land and to this house?’ + +and they will answer, ‘Because they abandoned Yahweh their God, who brought their fathers out of the land of Egypt, and embraced other gods, and worshiped them, and served them. Therefore Yahweh has brought all this evil on them.’” + +

+

At the end of twenty years, in which Solomon had built the two houses, Yahweh’s house and the king’s house + +(now Hiram the king of Tyre had furnished Solomon with cedar trees and cypress trees, and with gold, according to all his desire), King Solomon gave Hiram twenty cities in the land of Galilee. + +Hiram came out of Tyre to see the cities which Solomon had given him; and they didn’t please him. + +He said, “What cities are these which you have given me, my brother?” He called them the land of Cabul9:13 +“Cabul” sounds like Hebrew for “good-for-nothing”. to this day. + +Hiram sent to the king one hundred twenty talents9:14 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons of gold. + +

+

This is the reason of the forced labor which King Solomon conscripted: to build Yahweh’s house, his own house, Millo, Jerusalem’s wall, Hazor, Megiddo, and Gezer. + +Pharaoh king of Egypt had gone up, taken Gezer, burned it with fire, killed the Canaanites who lived in the city, and given it for a wedding gift to his daughter, Solomon’s wife. + +Solomon built in the land Gezer, Beth Horon the lower, + +Baalath, Tamar in the wilderness, + +all the storage cities that Solomon had, the cities for his chariots, the cities for his horsemen, and that which Solomon desired to build for his pleasure in Jerusalem, and in Lebanon, and in all the land of his dominion. + +As for all the people who were left of the Amorites, the Hittites, the Perizzites, the Hivites, and the Jebusites, who were not of the children of Israel— + +their children who were left after them in the land, whom the children of Israel were not able utterly to destroyof them Solomon raised a levy of bondservants to this day. + +But of the children of Israel Solomon made no bondservants; but they were the men of war, his servants, his princes, his captains, and rulers of his chariots and of his horsemen. + +These were the five hundred fifty chief officers who were over Solomon’s work, who ruled over the people who labored in the work. + +

+

But Pharaoh’s daughter came up out of David’s city to her house which Solomon had built for her. Then he built Millo. + +

+

Solomon offered burnt offerings and peace offerings on the altar which he built to Yahweh three times per year, burning incense with them on the altar that was before Yahweh. So he finished the house. + +

+

King Solomon made a fleet of ships in Ezion Geber, which is beside Eloth, on the shore of the Red Sea, in the land of Edom. + +Hiram sent in the fleet his servants, sailors who had knowledge of the sea, with the servants of Solomon. + +They came to Ophir, and fetched from there gold, four hundred and twenty talents,9:28 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 420 talents is about 12.6 metric tons and brought it to King Solomon. + +

+ + +

When the queen of Sheba heard of the fame of Solomon concerning Yahweh’s name, she came to test him with hard questions. + +She came to Jerusalem with a very great caravan, with camels that bore spices, very much gold, and precious stones; and when she had come to Solomon, she talked with him about all that was in her heart. + +Solomon answered all her questions. There wasn’t anything hidden from the king which he didn’t tell her. + +When the queen of Sheba had seen all the wisdom of Solomon, the house that he had built, + +the food of his table, the sitting of his servants, the attendance of his officials, their clothing, his cup bearers, and his ascent by which he went up to Yahweh’s house, there was no more spirit in her. + +She said to the king, “It was a true report that I heard in my own land of your acts and of your wisdom. + +However, I didn’t believe the words until I came and my eyes had seen it. Behold, not even half was told me! Your wisdom and prosperity exceed the fame which I heard. + +Happy are your men, happy are these your servants who stand continually before you, who hear your wisdom. + +Blessed is Yahweh your God, who delighted in you, to set you on the throne of Israel. Because Yahweh loved Israel forever, therefore he made you king, to do justice and righteousness.” + +She gave the king one hundred twenty talents of gold, and a very great quantity of spices, and precious stones. Never again was there such an abundance of spices as these which the queen of Sheba gave to King Solomon. + +

+

The fleet of Hiram that brought gold from Ophir also brought in from Ophir great quantities of almug trees10:11 +possibly an Indian sandalwood, with nice grain and a pleasant scent, and good for woodworking and precious stones. + +The king made of the almug trees pillars for Yahweh’s house and for the king’s house, harps also and stringed instruments for the singers; no such almug trees came or were seen to this day. + +

+

King Solomon gave to the queen of Sheba all her desire, whatever she asked, in addition to that which Solomon gave her of his royal bounty. So she turned and went to her own land, she and her servants. + +

+

Now the weight of gold that came to Solomon in one year was six hundred sixty-six talents10:14 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons of gold, + +in addition to that which the traders brought, and the traffic of the merchants, and of all the kings of the mixed people, and of the governors of the country. + +King Solomon made two hundred bucklers of beaten gold; six hundred shekels10:16 +A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels is about 6 kilograms or 13.2 pounds or 192 Troy ounces. of gold went to one buckler. + +He made three hundred shields of beaten gold; three minas10:17 +A mina is about 600 grams or 1.3 U. S. pounds. of gold went to one shield; and the king put them in the House of the Forest of Lebanon. + +Moreover the king made a great throne of ivory, and overlaid it with the finest gold. + +There were six steps to the throne, and the top of the throne was round behind; and there were armrests on either side by the place of the seat, and two lions standing beside the armrests. + +Twelve lions stood there on the one side and on the other on the six steps. Nothing like it was made in any kingdom. + +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, because it was considered of little value in the days of Solomon. + +For the king had a fleet of ships of Tarshish at sea with Hiram’s fleet. Once every three years the fleet of Tarshish came bringing gold, silver, ivory, apes, and peacocks. + +

+

So King Solomon exceeded all the kings of the earth in riches and in wisdom. + +All the earth sought the presence of Solomon to hear his wisdom which God had put in his heart. + +Year after year, every man brought his tribute, vessels of silver, vessels of gold, clothing, armor, spices, horses, and mules. + +

+

Solomon gathered together chariots and horsemen. He had one thousand four hundred chariots and twelve thousand horsemen. He kept them in the chariot cities and with the king at Jerusalem. + +The king made silver as common as stones in Jerusalem, and cedars as common as the sycamore trees that are in the lowland. + +The horses which Solomon had were brought out of Egypt. The king’s merchants received them in droves, each drove at a price. + +A chariot was imported from Egypt for six hundred shekels10:29 +A shekel is about 10 grams or about 0.35 ounces. of silver, and a horse for one hundred fifty shekels; and so they exported them to all the kings of the Hittites and to the kings of Syria. + +

+ + +

Now King Solomon loved many foreign women, together with the daughter of Pharaoh: women of the Moabites, Ammonites, Edomites, Sidonians, and Hittites, + +of the nations concerning which Yahweh said to the children of Israel, “You shall not go among them, neither shall they come among you, for surely they will turn away your heart after their gods.” Solomon joined to these in love. + +He had seven hundred wives, princesses, and three hundred concubines. His wives turned his heart away. + +When Solomon was old, his wives turned away his heart after other gods; and his heart was not perfect with Yahweh his God, as the heart of David his father was. + +For Solomon went after Ashtoreth the goddess of the Sidonians, and after Milcom the abomination of the Ammonites. + +Solomon did that which was evil in Yahweh’s sight, and didn’t go fully after Yahweh, as David his father did. + +Then Solomon built a high place for Chemosh the abomination of Moab, on the mountain that is before Jerusalem, and for Molech the abomination of the children of Ammon. + +So he did for all his foreign wives, who burned incense and sacrificed to their gods. + +Yahweh was angry with Solomon, because his heart was turned away from Yahweh, the God of Israel, who had appeared to him twice, + +and had commanded him concerning this thing, that he should not go after other gods; but he didn’t keep that which Yahweh commanded. + +Therefore Yahweh said to Solomon, “Because this is done by you, and you have not kept my covenant and my statutes, which I have commanded you, I will surely tear the kingdom from you, and will give it to your servant. + +Nevertheless, I will not do it in your days, for David your father’s sake; but I will tear it out of your son’s hand. + +However, I will not tear away all the kingdom; but I will give one tribe to your son, for David my servant’s sake, and for Jerusalem’s sake which I have chosen.” + +

+

Yahweh raised up an adversary to Solomon: Hadad the Edomite. He was one of the king’s offspring in Edom. + +For when David was in Edom, and Joab the captain of the army had gone up to bury the slain, and had struck every male in Edom + +(for Joab and all Israel remained there six months, until he had cut off every male in Edom), + +Hadad fled, he and certain Edomites of his father’s servants with him, to go into Egypt, when Hadad was still a little child. + +They arose out of Midian and came to Paran; and they took men with them out of Paran, and they came to Egypt, to Pharaoh king of Egypt, who gave him a house, and appointed him food, and gave him land. + +Hadad found great favor in the sight of Pharaoh, so that he gave him as wife the sister of his own wife, the sister of Tahpenes the queen. + +The sister of Tahpenes bore him Genubath his son, whom Tahpenes weaned in Pharaoh’s house; and Genubath was in Pharaoh’s house among the sons of Pharaoh. + +When Hadad heard in Egypt that David slept with his fathers, and that Joab the captain of the army was dead, Hadad said to Pharaoh, “Let me depart, that I may go to my own country.” + +

+

Then Pharaoh said to him, “But what have you lacked with me, that behold, you seek to go to your own country?” +

+

He answered, “Nothing, however only let me depart.” + +

+

God raised up an adversary to him, Rezon the son of Eliada, who had fled from his lord, Hadadezer king of Zobah. + +He gathered men to himself, and became captain over a troop, when David killed them of Zobah. They went to Damascus and lived there, and reigned in Damascus. + +He was an adversary to Israel all the days of Solomon, in addition to the mischief of Hadad. He abhorred Israel, and reigned over Syria. + +

+

Jeroboam the son of Nebat, an Ephraimite of Zeredah, a servant of Solomon, whose mother’s name was Zeruah, a widow, also lifted up his hand against the king. + +This was the reason why he lifted up his hand against the king: Solomon built Millo, and repaired the breach of his father David’s city. + +The man Jeroboam was a mighty man of valor; and Solomon saw that the young man was industrious, and he put him in charge of all the labor of the house of Joseph. + +At that time, when Jeroboam went out of Jerusalem, the prophet Ahijah the Shilonite found him on the way. Now Ahijah had clad himself with a new garment; and the two of them were alone in the field. + +Ahijah took the new garment that was on him, and tore it in twelve pieces. + +He said to Jeroboam, “Take ten pieces; for Yahweh, the God of Israel, says, ‘Behold, I will tear the kingdom out of the hand of Solomon and will give ten tribes to you + +(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), + +because they have forsaken me, and have worshiped Ashtoreth the goddess of the Sidonians, Chemosh the god of Moab, and Milcom the god of the children of Ammon. They have not walked in my ways, to do that which is right in my eyes, and to keep my statutes and my ordinances, as David his father did. + +

+

“‘However, 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, who kept my commandments and my statutes, + +but I will take the kingdom out of his son’s hand and will give it to you, even ten tribes. + +I will give one tribe to his son, that David my servant may have a lamp always before me in Jerusalem, the city which I have chosen for myself to put my name there. + +I will take you, and you shall reign according to all that your soul desires, and shall be king over Israel. + +It shall be, if you will listen to all that I command you, and will walk in my ways, and do that which is right in my eyes, to keep my statutes and my commandments, as David my servant did, that I will be with you, and will build you a sure house, as I built for David, and will give Israel to you. + +I will afflict the offspring of David for this, but not forever.’” + +

+

Therefore Solomon sought to kill Jeroboam, but Jeroboam arose and fled into Egypt, to Shishak king of Egypt, and was in Egypt until the death of Solomon. + +

+

Now the rest of the acts of Solomon, and all that he did, and his wisdom, aren’t they written in the book of the acts of Solomon? + +The time that Solomon reigned in Jerusalem over all Israel was forty years. + +Solomon slept with his fathers, and was buried in his father David’s city; and Rehoboam his son reigned in his place. + +

+ + +

Rehoboam went to Shechem, for all Israel had come to Shechem to make him king. + +When Jeroboam the son of Nebat heard of it (for he was yet in Egypt, where he had fled from the presence of King Solomon, and Jeroboam lived in Egypt; + +and they sent and called him), Jeroboam and all the assembly of Israel came, and spoke to Rehoboam, saying, + +Your father made our yoke difficult. Now therefore make the hard service of your father, and his heavy yoke which he put on us, lighter, and we will serve you.” + +

+

He said to them, “Depart for three days, then come back to me.” +

+

So the people departed. + +

+

King Rehoboam took counsel with the old men who had stood before Solomon his father while he yet lived, saying, “What counsel do you give me to answer these people?” + +

+

They replied, “If you will be a servant to this people today, and will serve them, and answer them with good words, then they will be your servants forever.” + +

+

But he abandoned the counsel of the old men which they had given him, and took counsel with the young men who had grown up with him, who stood before him. + +He said to them, “What counsel do you give, that we may answer these people who have spoken to me, saying, ‘Make the yoke that your father put on us lighter’?” + +

+

The young men who had grown up with him said to him, “Tell these people who spoke to you, saying, ‘Your father made our yoke heavy, but make it lighter to us’—tell them, ‘My little finger is thicker than my father’s waist. + +Now my father burdened you with a heavy yoke, but I will add to your yoke. My father chastised you with whips, but I will chastise you with scorpions.’” + +

+

So Jeroboam and all the people came to Rehoboam the third day, as the king asked, saying, “Come to me again the third day.” + +The king answered the people roughly, and abandoned the counsel of the old men which they had given him, + +and spoke to them according to the counsel of the young men, saying, “My father made your yoke heavy, but I will add to your yoke. My father chastised you with whips, but I will chastise you with scorpions.” + +

+

So the king didn’t listen to the people; for it was a thing brought about from Yahweh, that he might establish his word, which Yahweh spoke by Ahijah the Shilonite to Jeroboam the son of Nebat. + +When all Israel saw that the king didn’t listen to them, the people answered the king, saying, “What portion have we in David? We don’t have an inheritance in the son of Jesse. To your tents, Israel! Now see to your own house, David.” So Israel departed to their tents. + +

+

But as for the children of Israel who lived in the cities of Judah, Rehoboam reigned over them. + +Then King Rehoboam sent Adoram, who was over the men subject to forced labor; and all Israel stoned him to death with stones. King Rehoboam hurried to get himself up to his chariot, to flee to Jerusalem. + +So Israel rebelled against David’s house to this day. + +

+

When all Israel heard that Jeroboam had returned, they sent and called him to the congregation, and made him king over all Israel. There was no one who followed David’s house, except for the tribe of Judah only. + +

+

When Rehoboam had come to Jerusalem, he assembled all the house of Judah and the tribe of Benjamin, a hundred and eighty thousand chosen men who were warriors, to fight against the house of Israel, to bring the kingdom again to Rehoboam the son of Solomon. + +But the word of God came to Shemaiah the man of God, saying, + +“Speak to Rehoboam the son of Solomon, king of Judah, and to all the house of Judah and Benjamin, and to the rest of the people, saying, + +Yahweh says, “You shall not go up or fight against your brothers, the children of Israel. Everyone return to his house; for this thing is from me.”’” So they listened to Yahweh’s word, and returned and went their way, according to Yahweh’s word. + +

+

Then Jeroboam built Shechem in the hill country of Ephraim, and lived in it; and he went out from there and built Penuel. + +Jeroboam said in his heart, “Now the kingdom will return to David’s house. + +If this people goes up to offer sacrifices in Yahweh’s house at Jerusalem, then the heart of this people will turn again to their lord, even to Rehoboam king of Judah; and they will kill me, and return to Rehoboam king of Judah.” + +So the king took counsel, and made two calves of gold; and he said to them, “It is too much for you to go up to Jerusalem. Look and behold your gods, Israel, which brought you up out of the land of Egypt!” + +He set the one in Bethel, and the other he put in Dan. + +This thing became a sin, for the people went even as far as Dan to worship before the one there. + +He made houses of high places, and made priests from among all the people, who were not of the sons of Levi. + +Jeroboam ordained a feast in the eighth month, on the fifteenth day of the month, like the feast that is in Judah, and he went up to the altar. He did so in Bethel, sacrificing to the calves that he had made, and he placed in Bethel the priests of the high places that he had made. + +He went up to the altar which he had made in Bethel on the fifteenth day in the eighth month, even in the month which he had devised of his own heart; and he ordained a feast for the children of Israel, and went up to the altar to burn incense. + +

+ + +

Behold, a man of God came out of Judah by Yahweh’s word to Bethel; and Jeroboam was standing by the altar to burn incense. + +He cried against the altar by Yahweh’s word, and said, “Altar! Altar! Yahweh says: ‘Behold, a son will be born to David’s house, Josiah by name. On you he will sacrifice the priests of the high places who burn incense on you, and they will burn men’s bones on you.’” + +He gave a sign the same day, saying, “This is the sign which Yahweh has spoken: Behold, the altar will be split apart, and the ashes that are on it will be poured out.” + +

+

When the king heard the saying of the man of God, which he cried against the altar in Bethel, Jeroboam put out his hand from the altar, saying, “Seize him!” His hand, which he put out against him, dried up, so that he could not draw it back again to himself. + +The altar was also split apart, and the ashes poured out from the altar, according to the sign which the man of God had given by Yahweh’s word. + +The king answered the man of God, “Now intercede for the favor of Yahweh your God, and pray for me, that my hand may be restored to me.” +

+

The man of God interceded with Yahweh, and the king’s hand was restored to him, and became as it was before. + +

+

The king said to the man of God, “Come home with me and refresh yourself, and I will give you a reward.” + +

+

The man of God said to the king, “Even if you gave me half of your house, I would not go in with you, neither would I eat bread nor drink water in this place; + +for so was it commanded me by Yahweh’s word, saying, ‘You shall eat no bread, drink no water, and don’t return by the way that you came.’” + +So he went another way, and didn’t return by the way that he came to Bethel. + +

+

Now an old prophet lived in Bethel, and one of his sons came and told him all the works that the man of God had done that day in Bethel. They also told their father the words which he had spoken to the king. + +

+

Their father said to them, “Which way did he go?” Now his sons had seen which way the man of God went, who came from Judah. + +He said to his sons, “Saddle the donkey for me.” So they saddled the donkey for him; and he rode on it. + +He went after the man of God, and found him sitting under an oak. He said to him, “Are you the man of God who came from Judah?” +

+

He said, “I am.” + +

+

Then he said to him, “Come home with me and eat bread.” + +

+

He said, “I may not return with you, nor go in with you. I will not eat bread or drink water with you in this place. + +For it was said to me by Yahweh’s word, ‘You shall eat no bread or drink water there, and don’t turn again to go by the way that you came.’” + +

+

He said to him, “I also am a prophet as you are; and an angel spoke to me by Yahweh’s word, saying, ‘Bring him back with you into your house, that he may eat bread and drink water.’” He lied to him. + +

+

So he went back with him, ate bread in his house, and drank water. + +As they sat at the table, Yahweh’s word came to the prophet who brought him back; + +and he cried out to the man of God who came from Judah, saying, “Yahweh says, ‘Because you have been disobedient to Yahweh’s word, and have not kept the commandment which Yahweh your God commanded you, + +but came back, and have eaten bread and drank water in the place of which he said to you, “Eat no bread, and drink no water,” your body will not come to the tomb of your fathers.’” + +

+

After he had eaten bread and after he drank, he saddled the donkey for the prophet whom he had brought back. + +When he had gone, a lion met him by the way and killed him. His body was thrown on the path, and the donkey stood by it. The lion also stood by the body. + +Behold, men passed by and saw the body thrown on the path, and the lion standing by the body; and they came and told it in the city where the old prophet lived. + +When the prophet who brought him back from the way heard of it, he said, “It is the man of God who was disobedient to Yahweh’s word. Therefore Yahweh has delivered him to the lion, which has mauled him and slain him, according to Yahweh’s word which he spoke to him.” + +He said to his sons, saying, “Saddle the donkey for me,” and they saddled it. + +He went and found his body thrown on the path, and the donkey and the lion standing by the body. The lion had not eaten the body nor mauled the donkey. + +The prophet took up the body of the man of God, and laid it on the donkey, and brought it back. He came to the city of the old prophet to mourn, and to bury him. + +He laid his body in his own grave; and they mourned over him, saying, “Alas, my brother!” + +

+

After he had buried him, he spoke to his sons, saying, “When I am dead, bury me in the tomb in which the man of God is buried. Lay my bones beside his bones. + +For the saying which he cried by Yahweh’s word against the altar in Bethel, and against all the houses of the high places which are in the cities of Samaria, will surely happen.” + +

+

After this thing, Jeroboam didn’t turn from his evil way, but again made priests of the high places from among all the people. Whoever wanted to, he consecrated him, that there might be priests of the high places. + +This thing became sin to the house of Jeroboam, even to cut it off and to destroy it from off the surface of the earth. + +

+ + +

At that time Abijah the son of Jeroboam became sick. + +Jeroboam said to his wife, “Please get up and disguise yourself, so that you won’t be recognized as Jeroboam’s wife. Go to Shiloh. Behold, Ahijah the prophet is there, who said that I would be king over this people. + +Take with you ten loaves of bread, some cakes, and a jar of honey, and go to him. He will tell you what will become of the child.” + +

+

Jeroboam’s wife did so, and arose and went to Shiloh, and came to Ahijah’s house. Now Ahijah could not see, for his eyes were set by reason of his age. + +Yahweh said to Ahijah, “Behold, Jeroboam’s wife is coming to inquire of you concerning her son, for he is sick. Tell her such and such; for it will be, when she comes in, that she will pretend to be another woman.” + +

+

So when Ahijah heard the sound of her feet as she came in at the door, he said, “Come in, Jeroboam’s wife! Why do you pretend to be another? For I am sent to you with heavy news. + +Go, tell Jeroboam, ‘Yahweh, the God of Israel, says: “Because I exalted you from among the people, and made you prince over my people Israel, + +and tore the kingdom away from David’s house, and gave it to you; and yet you have 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 my eyes, + +but have done evil above all who were before you, and have gone and made for yourself other gods, molten images, to provoke me to anger, and have cast me behind your back, + +therefore, behold, I will bring evil on the house of Jeroboam, and will cut off from Jeroboam everyone who urinates on a wall,14:10 +or, male he who is shut up and he who is left at large in Israel, and will utterly sweep away the house of Jeroboam, as a man sweeps away dung until it is all gone. + +The dogs will eat whoever belongs to Jeroboam who dies in the city; and the birds of the sky will eat whoever dies in the field, for Yahweh has spoken it.”’ + +Arise therefore, and go to your house. When your feet enter into the city, the child will die. + +All Israel will mourn for him and bury him; for he only of Jeroboam will come to the grave, because in him there is found some good thing toward Yahweh, the God of Israel, in the house of Jeroboam. + +Moreover Yahweh will raise up a king for himself over Israel who will cut off the house of Jeroboam. This is the day! What? Even now. + +For Yahweh will strike Israel, as a reed is shaken in the water; and he will root up Israel out of this good land which he gave to their fathers, and will scatter them beyond the River,14:15 +That is, the Euphrates. because they have made their Asherah poles, provoking Yahweh to anger. + +He will give Israel up because of the sins of Jeroboam, which he has sinned, and with which he has made Israel to sin.” + +

+

Jeroboam’s wife arose and departed, and came to Tirzah. As she came to the threshold of the house, the child died. + +All Israel buried him and mourned for him, according to Yahweh’s word, which he spoke by his servant Ahijah the prophet. + +

+

The rest of the acts of Jeroboam, how he fought and how he reigned, behold, they are written in the book of the chronicles of the kings of Israel. + +The days which Jeroboam reigned were twenty two years; then he slept with his fathers, and Nadab his son reigned in his place. + +

+

Rehoboam the son of Solomon reigned in Judah. Rehoboam was forty-one years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which Yahweh had chosen out of all the tribes of Israel, to put his name there. His mother’s name was Naamah the Ammonitess. + +Judah did that which was evil in Yahweh’s sight, and they provoked him to jealousy with their sins which they committed, above all that their fathers had done. + +For they also built for themselves high places, sacred pillars, and Asherah poles on every high hill and under every green tree. + +There were also sodomites in the land. They did according to all the abominations of the nations which Yahweh drove out before the children of Israel. + +

+

In the fifth year of King Rehoboam, Shishak king of Egypt came up against Jerusalem; + +and he took away the treasures of Yahweh’s house and the treasures of the king’s house. He even took away all of it, including all the gold shields which Solomon had made. + +King Rehoboam made shields of bronze in their place, and committed them to the hands of the captains of the guard, who guarded the door of the king’s house. + +It was so, that as often as the king went into Yahweh’s house, the guard bore them, and brought them back into the guard room. + +

+

Now the rest of the acts of Rehoboam, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? + +There was war between Rehoboam and Jeroboam continually. + +Rehoboam slept with his fathers, and was buried with his fathers in David’s city. His mother’s name was Naamah the Ammonitess. Abijam his son reigned in his place. + +

+ + +

Now in the eighteenth year of King Jeroboam the son of Nebat, Abijam began to reign over Judah. + +He reigned three years in Jerusalem. His mother’s name was Maacah the daughter of Abishalom. + +He walked in all the sins of his father, which he had done before him; and his heart was not perfect with Yahweh his God, as the heart of David his father. + +Nevertheless for David’s sake, Yahweh his God gave him a lamp in Jerusalem, to set up his son after him and to establish Jerusalem; + +because David did that which was right in Yahweh’s eyes, and didn’t turn away from anything that he commanded him all the days of his life, except only in the matter of Uriah the Hittite. + +Now there was war between Rehoboam and Jeroboam all the days of his life. + +The rest of the acts of Abijam, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? There was war between Abijam and Jeroboam. + +Abijam slept with his fathers, and they buried him in David’s city; and Asa his son reigned in his place. + +

+

In the twentieth year of Jeroboam king of Israel, Asa began to reign over Judah. + +He reigned forty-one years in Jerusalem. His mother’s name was Maacah the daughter of Abishalom. + +Asa did that which was right in Yahweh’s eyes, as David his father did. + +He put away the sodomites out of the land, and removed all the idols that his fathers had made. + +He also removed Maacah his mother from being queen, because she had made an abominable image for an Asherah. Asa cut down her image and burned it at the brook Kidron. + +But the high places were not taken away. Nevertheless the heart of Asa was perfect with Yahweh all his days. + +He brought into Yahweh’s house the things that his father had dedicated, and the things that he himself had dedicated: silver, gold, and utensils. + +

+

There was war between Asa and Baasha king of Israel all their days. + +Baasha king of Israel went up against Judah, and built Ramah, that he might not allow anyone to go out or come in to Asa king of Judah. + +Then Asa took all the silver and the gold that was left in the treasures of Yahweh’s house, and the treasures of the king’s house, and delivered it into the hand of his servants. Then King Asa sent them to Ben Hadad, the son of Tabrimmon, the son of Hezion, king of Syria, who lived at Damascus, saying, + +Let there be a treaty between me and you, like that between my father and your father. Behold, I have sent to you a present of silver and gold. Go, break your treaty with Baasha king of Israel, that he may depart from me.” + +

+

Ben Hadad listened to King Asa, and sent the captains of his armies against the cities of Israel, and struck Ijon, and Dan, and Abel Beth Maacah, and all Chinneroth, with all the land of Naphtali. + +When Baasha heard of it, he stopped building Ramah, and lived in Tirzah. + +Then King Asa made a proclamation to all Judah. No one was exempted. They carried away the stones of Ramah, and its timber, with which Baasha had built; and King Asa used it to build Geba of Benjamin, and Mizpah. + +Now the rest of all the acts of Asa, and all his might, and all that he did, and the cities which he built, aren’t they written in the book of the chronicles of the kings of Judah? But in the time of his old age he was diseased in his feet. + +Asa slept with his fathers, and was buried with his fathers in his father David’s city; and Jehoshaphat his son reigned in his place. + +

+

Nadab the son of Jeroboam began to reign over Israel in the second year of Asa king of Judah; and he reigned over Israel two years. + +He did that which was evil in Yahweh’s sight, and walked in the way of his father, and in his sin with which he made Israel to sin. + +Baasha the son of Ahijah, of the house of Issachar, conspired against him; and Baasha struck him at Gibbethon, which belonged to the Philistines; for Nadab and all Israel were besieging Gibbethon. + +Even in the third year of Asa king of Judah, Baasha killed him and reigned in his place. + +As soon as he was king, he struck all the house of Jeroboam. He didn’t leave to Jeroboam any who breathed, until he had destroyed him, according to the saying of Yahweh, which he spoke by his servant Ahijah the Shilonite; + +for the sins of Jeroboam which he sinned, and with which he made Israel to sin, because of his provocation with which he provoked Yahweh, the God of Israel, to anger. + +

+

Now the rest of the acts of Nadab, and all that he did, aren’t they written in the book of the chronicles of the kings of Israel? + +There was war between Asa and Baasha king of Israel all their days. + +

+

In the third year of Asa king of Judah, Baasha the son of Ahijah began to reign over all Israel in Tirzah for twenty-four years. + +He did that which was evil in Yahweh’s sight, and walked in the way of Jeroboam, and in his sin with which he made Israel to sin. + +

+ + +

Yahweh’s word came to Jehu the son of Hanani against Baasha, saying, + +Because I exalted you out of the dust and made you prince over my people Israel, and you have walked in the way of Jeroboam and have made my people Israel to sin, to provoke me to anger with their sins, + +behold, I will utterly sweep away Baasha and his house; and I will make your house like the house of Jeroboam the son of Nebat. + +The dogs will eat Baasha’s descendants who die in the city; and he who dies of his in the field, the birds of the sky will eat.” + +

+

Now the rest of the acts of Baasha, and what he did, and his might, aren’t they written in the book of the chronicles of the kings of Israel? + +Baasha slept with his fathers, and was buried in Tirzah; and Elah his son reigned in his place. + +

+

Moreover Yahweh’s word came by the prophet Jehu the son of Hanani against Baasha and against his house, both because of all the evil that he did in Yahweh’s sight, to provoke him to anger with the work of his hands, in being like the house of Jeroboam, and because he struck him. + +

+

In the twenty-sixth year of Asa king of Judah, Elah the son of Baasha began to reign over Israel in Tirzah for two years. + +His servant Zimri, captain of half his chariots, conspired against him. Now he was in Tirzah, drinking himself drunk in the house of Arza, who was over the household in Tirzah; + +and Zimri went in and struck him and killed him in the twenty-seventh year of Asa king of Judah, and reigned in his place. + +

+

When he began to reign, as soon as he sat on his throne, he attacked all the house of Baasha. He didn’t leave him a single one who urinates on a wall16:11 +or, male among his relatives or his friends. + +Thus Zimri destroyed all the house of Baasha, according to Yahweh’s word which he spoke against Baasha by Jehu the prophet, + +for all the sins of Baasha, and the sins of Elah his son, which they sinned and with which they made Israel to sin, to provoke Yahweh, the God of Israel, to anger with their vanities. + +Now the rest of the acts of Elah, and all that he did, aren’t they written in the book of the chronicles of the kings of Israel? + +

+

In the twenty-seventh year of Asa king of Judah, Zimri reigned seven days in Tirzah. Now the people were encamped against Gibbethon, which belonged to the Philistines. + +The people who were encamped heard that Zimri had conspired, and had also killed the king. Therefore all Israel made Omri, the captain of the army, king over Israel that day in the camp. + +Omri went up from Gibbethon, and all Israel with him, and they besieged Tirzah. + +When Zimri saw that the city was taken, he went into the fortified part of the king’s house and burned the king’s house over him with fire, and died, + +for his sins which he sinned in doing that which was evil in Yahweh’s sight, in walking in the way of Jeroboam, and in his sin which he did to make Israel to sin. + +Now the rest of the acts of Zimri, and his treason that he committed, aren’t they written in the book of the chronicles of the kings of Israel? + +

+

Then the people of Israel were divided into two parts: half of the people followed Tibni the son of Ginath, to make him king, and half followed Omri. + +But the people who followed Omri prevailed against the people who followed Tibni the son of Ginath; so Tibni died, and Omri reigned. + +In the thirty-first year of Asa king of Judah, Omri began to reign over Israel for twelve years. He reigned six years in Tirzah. + +He bought the hill Samaria of Shemer for two talents16:24 +A talent is about 30 kilograms or 66 pounds. of silver; and he built on the hill, and called the name of the city which he built, Samaria, after the name of Shemer, the owner of the hill. + +Omri did that which was evil in Yahweh’s sight, and dealt wickedly above all who were before him. + +For he walked in all the way of Jeroboam the son of Nebat, and in his sins with which he made Israel to sin, to provoke Yahweh, the God of Israel, to anger with their vanities. + +Now the rest of the acts of Omri which he did, and his might that he showed, aren’t they written in the book of the chronicles of the kings of Israel? + +So Omri slept with his fathers, and was buried in Samaria; and Ahab his son reigned in his place. + +

+

In the thirty-eighth year of Asa king of Judah, Ahab the son of Omri began to reign over Israel. Ahab the son of Omri reigned over Israel in Samaria twenty-two years. + +Ahab the son of Omri did that which was evil in Yahweh’s sight above all that were before him. + +As if it had been a light thing for him to walk in the sins of Jeroboam the son of Nebat, he took as wife Jezebel the daughter of Ethbaal king of the Sidonians, and went and served Baal and worshiped him. + +He raised up an altar for Baal in the house of Baal, which he had built in Samaria. + +Ahab made the Asherah; and Ahab did more yet to provoke Yahweh, the God of Israel, to anger than all the kings of Israel who were before him. + +In his days Hiel the Bethelite built Jericho. He laid its foundation with the loss of Abiram his firstborn, and set up its gates with the loss of his youngest son Segub, according to Yahweh’s word, which he spoke by Joshua the son of Nun. + +

+ + +

Elijah the Tishbite, who was one of the settlers of Gilead, said to Ahab, “As Yahweh, the God of Israel, lives, before whom I stand, there shall not be dew nor rain these years, but according to my word.” + +

+

Then Yahweh’s word came to him, saying, + +Go away from here, turn eastward, and hide yourself by the brook Cherith, that is before the Jordan. + +You shall drink from the brook. I have commanded the ravens to feed you there.” + +So he went and did according to Yahweh’s word, for he went and lived by the brook Cherith that is before the Jordan. + +The ravens brought him bread and meat in the morning, and bread and meat in the evening; and he drank from the brook. + +After a while, the brook dried up, because there was no rain in the land. + +

+

Yahweh’s word came to him, saying, + +Arise, go to Zarephath, which belongs to Sidon, and stay there. Behold, I have commanded a widow there to sustain you.” + +

+

So he arose and went to Zarephath; and when he came to the gate of the city, behold, a widow was there gathering sticks. He called to her and said, “Please get me a little water in a jar, that I may drink.” + +

+

As she was going to get it, he called to her and said, “Please bring me a morsel of bread in your hand.” + +

+

She said, “As Yahweh your God lives, I don’t have anything baked, but only a handful of meal in a jar and a little oil in a jar. Behold, I am gathering two sticks, that I may go in and bake it for me and my son, that we may eat it, and die.” + +

+

Elijah said to her, “Don’t be afraid. Go and do as you have said; but make me a little cake from it first, and bring it out to me, and afterward make some for you and for your son. + +For Yahweh, the God of Israel, says, ‘The jar of meal will not run out, and the jar of oil will not fail, until the day that Yahweh sends rain on the earth.’” + +

+

She went and did according to the saying of Elijah; and she, he, and her household ate many days. + +The jar of meal didn’t run out and the jar of oil didn’t fail, according to Yahweh’s word, which he spoke by Elijah. + +

+

After these things, the son of the woman, the mistress of the house, became sick; and his sickness was so severe that there was no breath left in him. + +She said to Elijah, “What have I to do with you, you man of God? You have come to me to bring my sin to memory, and to kill my son!” + +

+

He said to her, “Give me your son.” He took him out of her bosom, and carried him up into the room where he stayed, and laid him on his own bed. + +He cried to Yahweh and said, “Yahweh my God, have you also brought evil on the widow with whom I am staying, by killing her son?” + +

+

He stretched himself on the child three times, and cried to Yahweh and said, “Yahweh my God, please let this child’s soul come into him again.” + +

+

Yahweh listened to the voice of Elijah; and the soul of the child came into him again, and he revived. + +Elijah took the child and brought him down out of the room into the house, and delivered him to his mother; and Elijah said, “Behold, your son lives.” + +

+

The woman said to Elijah, “Now I know that you are a man of God, and that Yahweh’s word in your mouth is truth.” + +

+ + +

After many days, Yahweh’s word came to Elijah, in the third year, saying, “Go, show yourself to Ahab; and I will send rain on the earth.” + +

+

Elijah went to show himself to Ahab. The famine was severe in Samaria. + +Ahab called Obadiah, who was over the household. (Now Obadiah feared Yahweh greatly; + +for when Jezebel cut off Yahweh’s prophets, Obadiah took one hundred prophets, and hid them fifty to a cave, and fed them with bread and water.) + +Ahab said to Obadiah, “Go through the land, to all the springs of water, and to all the brooks. Perhaps we may find grass and save the horses and mules alive, that we not lose all the animals.” + +

+

So they divided the land between them to pass throughout it. Ahab went one way by himself, and Obadiah went another way by himself. + +As Obadiah was on the way, behold, Elijah met him. He recognized him, and fell on his face, and said, “Is it you, my lord Elijah?” + +

+

He answered him, “It is I. Go, tell your lord, ‘Behold, Elijah is here!’” + +

+

He said, “How have I sinned, that you would deliver your servant into the hand of Ahab, to kill me? + +As Yahweh your God lives, there is no nation or kingdom where my lord has not sent to seek you. When they said, ‘He is not here,’ he took an oath of the kingdom and nation that they didn’t find you. + +Now you say, ‘Go, tell your lord, “Behold, Elijah is here.”’ + +It will happen, as soon as I leave you, that Yahweh’s Spirit will carry you I don’t know where; and so when I come and tell Ahab, and he can’t find you, he will kill me. But I, your servant, have feared Yahweh from my youth. + +Wasn’t it told my lord what I did when Jezebel killed Yahweh’s prophets, how I hid one hundred men of Yahweh’s prophets with fifty to a cave, and fed them with bread and water? + +Now you say, ‘Go, tell your lord, “Behold, Elijah is here”.’ He will kill me.” + +

+

Elijah said, “As Yahweh of Armies lives, before whom I stand, I will surely show myself to him today.” + +So Obadiah went to meet Ahab, and told him; and Ahab went to meet Elijah. + +

+

When Ahab saw Elijah, Ahab said to him, “Is that you, you troubler of Israel?” + +

+

He answered, “I have not troubled Israel, but you and your father’s house, in that you have forsaken Yahweh’s commandments and you have followed the Baals. + +Now therefore send, and gather to me all Israel to Mount Carmel, and four hundred fifty of the prophets of Baal, and four hundred of the prophets of the Asherah, who eat at Jezebel’s table.” + +

+

So Ahab sent to all the children of Israel, and gathered the prophets together to Mount Carmel. + +Elijah came near to all the people, and said, “How long will you waver between the two sides? If Yahweh is God, follow him; but if Baal, then follow him.” +

+

The people didn’t say a word. + +

+

Then Elijah said to the people, “I, even I only, am left as a prophet of Yahweh; but Baal’s prophets are four hundred fifty men. + +Let them therefore give us two bulls; and let them choose one bull for themselves, and cut it in pieces, and lay it on the wood, and put no fire under; and I will dress the other bull, and lay it on the wood, and put no fire under it. + +You call on the name of your god, and I will call on Yahweh’s name. The God who answers by fire, let him be God.” +

+

All the people answered, “What you say is good.” + +

+

Elijah said to the prophets of Baal, “Choose one bull for yourselves, and dress it first, for you are many; and call on the name of your god, but put no fire under it.” + +

+

They took the bull which was given them, and they dressed it, and called on the name of Baal from morning even until noon, saying, “Baal, hear us!” But there was no voice, and nobody answered. They leaped about the altar which was made. + +

+

At noon, Elijah mocked them, and said, “Cry aloud, for he is a god. Either he is deep in thought, or he has gone somewhere, or he is on a journey, or perhaps he sleeps and must be awakened.” + +

+

They cried aloud, and cut themselves in their way with knives and lances until the blood gushed out on them. + +When midday was past, they prophesied until the time of the evening offering; but there was no voice, no answer, and nobody paid attention. + +

+

Elijah said to all the people, “Come near to me!”; and all the people came near to him. He repaired Yahweh’s altar that had been thrown down. + +Elijah took twelve stones, according to the number of the tribes of the sons of Jacob, to whom Yahweh’s word came, saying, “Israel shall be your name.” + +With the stones he built an altar in Yahweh’s name. He made a trench around the altar large enough to contain two seahs18:32 +1 seah is about 7 liters or 1.9 gallons or 0.8 pecks of seed. + +He put the wood in order, and cut the bull in pieces and laid it on the wood. He said, “Fill four jars with water, and pour it on the burnt offering and on the wood.” + +He said, “Do it a second time;” and they did it the second time. He said, “Do it a third time;” and they did it the third time. + +The water ran around the altar; and he also filled the trench with water. + +

+

At the time of the evening offering, Elijah the prophet came near and said, “Yahweh, the God of Abraham, of Isaac, and of Israel, let it be known today that you are God in Israel and that I am your servant, and that I have done all these things at your word. + +Hear me, Yahweh, hear me, that this people may know that you, Yahweh, are God, and that you have turned their heart back again.” + +

+

Then Yahweh’s fire fell and consumed the burnt offering, the wood, the stones, and the dust; and it licked up the water that was in the trench. + +When all the people saw it, they fell on their faces. They said, “Yahweh, he is God! Yahweh, he is God!” + +

+

Elijah said to them, “Seize the prophets of Baal! Don’t let one of them escape!” +

+

They seized them; and Elijah brought them down to the brook Kishon, and killed them there. + +

+

Elijah said to Ahab, “Get up, eat and drink; for there is the sound of abundance of rain.” + +

+

So Ahab went up to eat and to drink. Elijah went up to the top of Carmel; and he bowed himself down on the earth, and put his face between his knees. + +He said to his servant, “Go up now and look toward the sea.” +

+

He went up and looked, then said, “There is nothing.” +

+

He said, “Go againseven times. + +

+

On the seventh time, he said, “Behold, a small cloud, like a man’s hand, is rising out of the sea.” +

+

He said, “Go up, tell Ahab, ‘Get ready and go down, so that the rain doesn’t stop you.’” + +

+

In a little while, the sky grew black with clouds and wind, and there was a great rain. Ahab rode, and went to Jezreel. + +Yahweh’s hand was on Elijah; and he tucked his cloak into his belt and ran before Ahab to the entrance of Jezreel. + +

+ + +

Ahab told Jezebel all that Elijah had done, and how he had killed all the prophets with the sword. + +Then Jezebel sent a messenger to Elijah, saying, “So let the gods do to me, and more also, if I don’t make your life as the life of one of them by tomorrow about this time!” + +

+

When he saw that, he arose and ran for his life, and came to Beersheba, which belongs to Judah, and left his servant there. + +But he himself went a day’s journey into the wilderness, and came and sat down under a juniper tree. Then he requested for himself that he might die, and said, “It is enough. Now, O Yahweh, take away my life; for I am not better than my fathers.” + +

+

He lay down and slept under a juniper tree; and behold, an angel touched him, and said to him, “Arise and eat!” + +

+

He looked, and behold, there was at his head a cake baked on the coals, and a jar of water. He ate and drank, and lay down again. + +Yahweh’s angel came again the second time, and touched him, and said, “Arise and eat, because the journey is too great for you.” + +

+

He arose, and ate and drank, and went in the strength of that food forty days and forty nights to Horeb, God’s Mountain. + +He came to a cave there, and camped there; and behold, Yahweh’s word came to him, and he said to him, “What are you doing here, Elijah?” + +

+

He said, “I have been very jealous for Yahweh, the God of Armies; for the children of Israel have forsaken your covenant, thrown down your altars, and killed your prophets with the sword. I, even I only, am left; and they seek my life, to take it away.” + +

+

He said, “Go out and stand on the mountain before Yahweh.” +

+

Behold, Yahweh passed by, and a great and strong wind tore the mountains and broke in pieces the rocks before Yahweh; but Yahweh was not in the wind. After the wind there was an earthquake; but Yahweh was not in the earthquake. + +After the earthquake a fire passed; but Yahweh was not in the fire. After the fire, there was a still small voice. + +When Elijah heard it, he wrapped his face in his mantle, went out, and stood in the entrance of the cave. Behold, a voice came to him, and said, “What are you doing here, Elijah?” + +

+

He said, “I have been very jealous for Yahweh, the God of Armies; for the children of Israel have forsaken your covenant, thrown down your altars, and killed your prophets with the sword. I, even I only, am left; and they seek my life, to take it away.” + +

+

Yahweh said to him, “Go, return on your way to the wilderness of Damascus. When you arrive, anoint Hazael to be king over Syria. + +Anoint Jehu the son of Nimshi to be king over Israel; and anoint Elisha the son of Shaphat of Abel Meholah to be prophet in your place. + +He who escapes from the sword of Hazael, Jehu will kill; and he who escapes from the sword of Jehu, Elisha will kill. + +Yet I reserved seven thousand in Israel, all the knees of which have not bowed to Baal, and every mouth that has not kissed him.” + +

+

So he departed from there and found Elisha the son of Shaphat, who was plowing with twelve yoke of oxen before him, and he with the twelfth. Elijah went over to him and put his mantle on him. + +Elisha left the oxen and ran after Elijah, and said, “Let me please kiss my father and my mother, and then I will follow you.” +

+

He said to him, “Go back again; for what have I done to you?” + +

+

He returned from following him, and took the yoke of oxen, killed them, and boiled their meat with the oxen’s equipment, and gave to the people; and they ate. Then he arose, and went after Elijah, and served him. + +

+ + +

Ben Hadad the king of Syria gathered all his army together; and there were thirty-two kings with him, with horses and chariots. He went up and besieged Samaria, and fought against it. + +He sent messengers into the city to Ahab king of Israel and said to him, “Ben Hadad says, + +Your silver and your gold are mine. Your wives also and your children, even the best, are mine.’” + +

+

The king of Israel answered, “It is according to your saying, my lord, O king. I am yours, and all that I have.” + +

+

The messengers came again and said, “Ben Hadad says, ‘I sent indeed to you, saying, “You shall deliver me your silver, your gold, your wives, and your children; + +but I will send my servants to you tomorrow about this time, and they will search your house and the houses of your servants. Whatever is pleasant in your eyes, they will put it in their hand, and take it away.”’” + +

+

Then the king of Israel called all the elders of the land, and said, “Please notice how this man seeks mischief; for he sent to me for my wives, and for my children, and for my silver, and for my gold; and I didn’t deny him.” + +

+

All the elders and all the people said to him, “Don’t listen, and don’t consent.” + +

+

Therefore he said to the messengers of Ben Hadad, “Tell my lord the king, ‘All that you sent for to your servant at the first I will do, but this thing I cannot do.’” +

+

The messengers departed and brought him back the message. + +Ben Hadad sent to him, and said, “The gods do so to me, and more also, if the dust of Samaria will be enough for handfuls for all the people who follow me.” + +

+

The king of Israel answered, “Tell him, ‘Don’t let him who puts on his armor brag like he who takes it off.’” + +

+

When Ben Hadad heard this message as he was drinking, he and the kings in the pavilions, he said to his servants, “Prepare to attack!” So they prepared to attack the city. + +

+

Behold, a prophet came near to Ahab king of Israel, and said, “Yahweh says, ‘Have you seen all this great multitude? Behold, I will deliver it into your hand today. Then you will know that I am Yahweh.’” + +

+

Ahab said, “By whom?” +

+

He said, “Yahweh says, ‘By the young men of the princes of the provinces.’” +

+

Then he said, “Who shall begin the battle?” +

+

He answered, “You.” + +

+

Then he mustered the young men of the princes of the provinces, and they were two hundred and thirty-two. After them, he mustered all the people, even all the children of Israel, being seven thousand. + +They went out at noon. But Ben Hadad was drinking himself drunk in the pavilions, he and the kings, the thirty-two kings who helped him. + +The young men of the princes of the provinces went out first; and Ben Hadad sent out, and they told him, saying, “Men are coming out from Samaria.” + +

+

He said, “If they have come out for peace, take them alive; or if they have come out for war, take them alive.” + +

+

So these went out of the city, the young men of the princes of the provinces, and the army which followed them. + +They each killed his man. The Syrians fled, and Israel pursued them. Ben Hadad the king of Syria escaped on a horse with horsemen. + +The king of Israel went out and struck the horses and chariots, and killed the Syrians with a great slaughter. + +The prophet came near to the king of Israel and said to him, “Go, strengthen yourself, and plan what you must do, for at the return of the year, the king of Syria will come up against you.” + +

+

The servants of the king of Syria said to him, “Their god is a god of the hills; therefore they were stronger than we. But let’s fight against them in the plain, and surely we will be stronger than they. + +Do this thing: take the kings away, every man out of his place, and put captains in their place. + +Muster an army like the army that you have lost, horse for horse and chariot for chariot. We will fight against them in the plain, and surely we will be stronger than they are.” +

+

He listened to their voice and did so. + +At the return of the year, Ben Hadad mustered the Syrians and went up to Aphek to fight against Israel. + +The children of Israel were mustered and given provisions, and went against them. The children of Israel encamped before them like two little flocks of young goats, but the Syrians filled the country. + +A man of God came near and spoke to the king of Israel, and said, “Yahweh says, ‘Because the Syrians have said, “Yahweh is a god of the hills, but he is not a god of the valleys,” therefore I will deliver all this great multitude into your hand, and you shall know that I am Yahweh.’” + +

+

They encamped opposite each other for seven days. Then on the seventh day the battle was joined; and the children of Israel killed one hundred thousand footmen of the Syrians in one day. + +But the rest fled to Aphek, into the city; and the wall fell on twenty-seven thousand men who were left. Ben Hadad fled and came into the city, into an inner room. + +His servants said to him, “See now, we have heard that the kings of the house of Israel are merciful kings. Please let us put sackcloth on our bodies and ropes on our heads, and go out to the king of Israel. Maybe he will save your life.” + +

+

So they put sackcloth on their bodies and ropes on their heads, and came to the king of Israel, and said, “Your servant Ben Hadad says, ‘Please let me live.’” +

+

He said, “Is he still alive? He is my brother.” + +

+

Now the men observed diligently and hurried to take this phrase; and they said, “Your brother Ben Hadad.” +

+

Then he said, “Go, bring him.” +

+

Then Ben Hadad came out to him; and he caused him to come up into the chariot. + +Ben Hadad said to him, “The cities which my father took from your father I will restore. You shall make streets for yourself in Damascus, as my father made in Samaria.” +

+

I”, said Ahab, “will let you go with this covenant.” So he made a covenant with him and let him go. + +

+

A certain man of the sons of the prophets said to his fellow by Yahweh’s word, “Please strike me!” +

+

The man refused to strike him. + +Then he said to him, “Because you have not obeyed Yahweh’s voice, behold, as soon as you have departed from me, a lion will kill you.” As soon as he had departed from him, a lion found him and killed him. + +

+

Then he found another man, and said, “Please strike me.” +

+

The man struck him and wounded him. + +So the prophet departed and waited for the king by the way, and disguised himself with his headband over his eyes. + +As the king passed by, he cried to the king, and he said, “Your servant went out into the middle of the battle; and behold, a man came over and brought a man to me, and said, ‘Guard this man! If by any means he is missing, then your life shall be for his life, or else you shall pay a talent20:39 +A talent is about 30 kilograms or 66 pounds of silver.’ + +As your servant was busy here and there, he was gone.” +

+

The king of Israel said to him, “So shall your judgment be. You yourself have decided it.” + +

+

He hurried, and took the headband away from his eyes; and the king of Israel recognized that he was one of the prophets. + +He said to him, “Yahweh says, ‘Because you have let go out of your hand the man whom I had devoted to destruction, therefore your life will take the place of his life, and your people take the place of his people.’” + +

+

The king of Israel went to his house sullen and angry, and came to Samaria. + +

+ + +

After these things, Naboth the Jezreelite had a vineyard which was in Jezreel, next to the palace of Ahab king of Samaria. + +Ahab spoke to Naboth, saying, “Give me your vineyard, that I may have it for a garden of herbs, because it is near my house; and I will give you for it a better vineyard than it. Or, if it seems good to you, I will give you its worth in money.” + +

+

Naboth said to Ahab, “May Yahweh forbid me, that I should give the inheritance of my fathers to you!” + +

+

Ahab came into his house sullen and angry because of the word which Naboth the Jezreelite had spoken to him, for he had said, “I will not give you the inheritance of my fathers.” He laid himself down on his bed, and turned away his face, and would eat no bread. + +But Jezebel his wife came to him, and said to him, “Why is your spirit so sad that you eat no bread?” + +

+

He said to her, “Because I spoke to Naboth the Jezreelite, and said to him, ‘Give me your vineyard for money; or else, if it pleases you, I will give you another vineyard for it.’ He answered, ‘I will not give you my vineyard.’” + +

+

Jezebel his wife said to him, “Do you now govern the kingdom of Israel? Arise, and eat bread, and let your heart be merry. I will give you the vineyard of Naboth the Jezreelite.” + +So she wrote letters in Ahab’s name and sealed them with his seal, and sent the letters to the elders and to the nobles who were in his city, who lived with Naboth. + +She wrote in the letters, saying, “Proclaim a fast, and set Naboth on high among the people. + +Set two men, wicked fellows, before him, and let them testify against him, saying, ‘You cursed God and the king!’ Then carry him out, and stone him to death.” + +

+

The men of his city, even the elders and the nobles who lived in his city, did as Jezebel had instructed them in the letters which she had written and sent to them. + +They proclaimed a fast, and set Naboth on high among the people. + +The two men, the wicked fellows, came in and sat before him. The wicked fellows testified against him, even against Naboth, in the presence of the people, saying, “Naboth cursed God and the king!” Then they carried him out of the city and stoned him to death with stones. + +Then they sent to Jezebel, saying, “Naboth has been stoned and is dead.” + +

+

When Jezebel heard that Naboth had been stoned and was dead, Jezebel said to Ahab, “Arise, take possession of the vineyard of Naboth the Jezreelite, which he refused to give you for money; for Naboth is not alive, but dead.” + +

+

When Ahab heard that Naboth was dead, Ahab rose up to go down to the vineyard of Naboth the Jezreelite, to take possession of it. + +

+

Yahweh’s word came to Elijah the Tishbite, saying, + +Arise, go down to meet Ahab king of Israel, who dwells in Samaria. Behold, he is in the vineyard of Naboth, where he has gone down to take possession of it. + +You shall speak to him, saying, ‘Yahweh says, “Have you killed and also taken possession?”’ You shall speak to him, saying, ‘Yahweh says, “In the place where dogs licked the blood of Naboth, dogs will lick your blood, even yours.”’” + +

+

Ahab said to Elijah, “Have you found me, my enemy?” +

+

He answered, “I have found you, because you have sold yourself to do that which is evil in Yahweh’s sight. + +Behold, I will bring evil on you, and will utterly sweep you away and will cut off from Ahab everyone who urinates against a wall,21:21 +or, male + and him who is shut up and him who is left at large in Israel. + +I will make your house like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah, for the provocation with which you have provoked me to anger, and have made Israel to sin.” + +Yahweh also spoke of Jezebel, saying, “The dogs will eat Jezebel by the rampart of Jezreel. + +The dogs will eat whoever dies of Ahab in the city; and the birds of the sky will eat whoever dies in the field.” + +

+

But there was no one like Ahab, who sold himself to do that which was evil in Yahweh’s sight, whom Jezebel his wife stirred up. + +He did very abominably in following idols, according to all that the Amorites did, whom Yahweh cast out before the children of Israel. + +

+

When Ahab heard those words, he tore his clothes, put sackcloth on his body, fasted, lay in sackcloth, and went about despondently. + +

+

Yahweh’s word came to Elijah the Tishbite, saying, + +See how Ahab humbles himself before me? Because he humbles himself before me, I will not bring the evil in his days; but I will bring the evil on his house in his son’s day.” + +

+ + +

They continued three years without war between Syria and Israel. + +In the third year, Jehoshaphat the king of Judah came down to the king of Israel. + +The king of Israel said to his servants, “You know that Ramoth Gilead is ours, and we do nothing, and don’t take it out of the hand of the king of Syria?” + +He said to Jehoshaphat, “Will you go with me to battle to Ramoth Gilead?” +

+

Jehoshaphat said to the king of Israel, “I am as you are, my people as your people, my horses as your horses.” + +Jehoshaphat said to the king of Israel, “Please inquire first for Yahweh’s word.” + +

+

Then the king of Israel gathered the prophets together, about four hundred men, and said to them, “Should I go against Ramoth Gilead to battle, or should I refrain?” +

+

They said, “Go up; for the Lord will deliver it into the hand of the king.” + +

+

But Jehoshaphat said, “Isn’t there here a prophet of Yahweh, that we may inquire of him?” + +

+

The king of Israel said to Jehoshaphat, “There is yet one man by whom we may inquire of Yahweh, Micaiah the son of Imlah; but I hate him, for he does not prophesy good concerning me, but evil.” +

+

Jehoshaphat said, “Don’t let the king say so.” + +

+

Then the king of Israel called an officer, and said, “Quickly get Micaiah the son of Imlah.” + +

+

Now the king of Israel and Jehoshaphat the king of Judah were sitting each on his throne, arrayed in their robes, in an open place at the entrance of the gate of Samaria; and all the prophets were prophesying before them. + +Zedekiah the son of Chenaanah made himself horns of iron, and said, “Yahweh says, ‘With these you will push the Syrians, until they are consumed.’” + +All the prophets prophesied so, saying, “Go up to Ramoth Gilead and prosper; for Yahweh will deliver it into the hand of the king.” + +

+

The messenger who went to call Micaiah spoke to him, saying, “See now, the prophets declare good to the king with one mouth. Please let your word be like the word of one of them, and speak good.” + +

+

Micaiah said, “As Yahweh lives, what Yahweh says to me, that I will speak.” + +

+

When he had come to the king, the king said to him, “Micaiah, shall we go to Ramoth Gilead to battle, or shall we forbear?” +

+

He answered him, “Go up and prosper; and Yahweh will deliver it into the hand of the king.” + +

+

The king said to him, “How many times do I have to adjure you that you speak to me nothing but the truth in Yahweh’s name?” + +

+

He said, “I saw all Israel scattered on the mountains, as sheep that have no shepherd. Yahweh said, ‘These have no master. Let them each return to his house in peace.’” + +

+

The king of Israel said to Jehoshaphat, “Didn’t I tell you that he would not prophesy good concerning me, but evil?” + +

+

Micaiah said, “Therefore hear Yahweh’s word. I saw Yahweh sitting on his throne, and all the army of heaven standing by him on his right hand and on his left. + +Yahweh said, ‘Who will entice Ahab, that he may go up and fall at Ramoth Gilead?’ One said one thing, and another said another. + +

+

A spirit came out and stood before Yahweh, and said, ‘I will entice him.’ + +

+

Yahweh said to him, ‘How?’ +

+

He said, ‘I will go out and will be a lying spirit in the mouth of all his prophets.’ +

+

He said, ‘You will entice him, and will also prevail. Go out and do so.’ + +Now therefore, behold, Yahweh has put a lying spirit in the mouth of all these your prophets; and Yahweh has spoken evil concerning you.” + +

+

Then Zedekiah the son of Chenaanah came near and struck Micaiah on the cheek, and said, “Which way did Yahweh’s Spirit go from me to speak to you?” + +

+

Micaiah said, “Behold, you will see on that day when you go into an inner room to hide yourself.” + +

+

The king of Israel said, “Take Micaiah, and carry him back to Amon the governor of the city and to Joash the king’s son. + +Say, ‘The king says, “Put this fellow in the prison, and feed him with bread of affliction and with water of affliction, until I come in peace.”’” + +

+

Micaiah said, “If you return at all in peace, Yahweh has not spoken by me.” He said, “Listen, all you people!” + +

+

So the king of Israel and Jehoshaphat the king of Judah went up to Ramoth Gilead. + +The king of Israel said to Jehoshaphat, “I will disguise myself and go into the battle, but you put on your robes.” The king of Israel disguised himself and went into the battle. + +

+

Now the king of Syria had commanded the thirty-two captains of his chariots, saying, “Don’t fight with small nor great, except only with the king of Israel.” + +

+

When the captains of the chariots saw Jehoshaphat, they said, “Surely that is the king of Israel!” and they came over to fight against him. Jehoshaphat cried out. + +When the captains of the chariots saw that it was not the king of Israel, they turned back from pursuing him. + +A certain man drew his bow at random, and struck the king of Israel between the joints of the armor. Therefore he said to the driver of his chariot, “Turn around, and carry me out of the battle, for I am severely wounded.” + +The battle increased that day. The king was propped up in his chariot facing the Syrians, and died at evening. The blood ran out of the wound into the bottom of the chariot. + +A cry went throughout the army about the going down of the sun, saying, “Every man to his city, and every man to his country!” + +

+

So the king died, and was brought to Samaria; and they buried the king in Samaria. + +They washed the chariot by the pool of Samaria; and the dogs licked up his blood where the prostitutes washed themselves, according to Yahweh’s word which he spoke. + +

+

Now the rest of the acts of Ahab, and all that he did, and the ivory house which he built, and all the cities that he built, aren’t they written in the book of the chronicles of the kings of Israel? + +So Ahab slept with his fathers; and Ahaziah his son reigned in his place. + +

+

Jehoshaphat the son of Asa began to reign over Judah in the fourth year of Ahab king of Israel. + +Jehoshaphat was thirty-five years old when he began to reign; and he reigned twenty-five years in Jerusalem. His mother’s name was Azubah the daughter of Shilhi. + +He walked in all the way of Asa his father. He didn’t turn away from it, doing that which was right in Yahweh’s eyes. However, the high places were not taken away. The people still sacrificed and burned incense on the high places. + +Jehoshaphat made peace with the king of Israel. + +

+

Now the rest of the acts of Jehoshaphat, and his might that he showed, and how he fought, aren’t they written in the book of the chronicles of the kings of Judah? + +The remnant of the sodomites, that remained in the days of his father Asa, he put away out of the land. + +There was no king in Edom. A deputy ruled. + +Jehoshaphat made ships of Tarshish to go to Ophir for gold, but they didn’t go, for the ships wrecked at Ezion Geber. + +Then Ahaziah the son of Ahab said to Jehoshaphat, “Let my servants go with your servants in the ships.” But Jehoshaphat would not. + +Jehoshaphat slept with his fathers, and was buried with his fathers in his father David’s city. Jehoram his son reigned in his place. + +

+

Ahaziah the son of Ahab began to reign over Israel in Samaria in the seventeenth year of Jehoshaphat king of Judah, and he reigned two years over Israel. + +He did that which was evil in Yahweh’s sight, 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, in which he made Israel to sin. + +He served Baal and worshiped him, and provoked Yahweh, the God of Israel, to anger in all the ways that his father had done so. + +

+
+World English Bible (WEB) +2 Kings +The Second Book of Kings +2 Kings +2Ki +

The Second Book of Kings +

+ + +

Moab rebelled against Israel after the death of Ahab. + +

+

Ahaziah fell down through the lattice in his upper room that was in Samaria, and was sick. So he sent messengers, and said to them, “Go, inquire of Baal Zebub, the god of Ekron, whether I will recover from this sickness.” + +

+

But Yahweh’s1:3 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. angel said to Elijah the Tishbite, “Arise, go up to meet the messengers of the king of Samaria, and tell them, ‘Is it because there is no God1:3 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). in Israel that you go to inquire of Baal Zebub, the god of Ekron? + +Now therefore Yahweh says, “You will not come down from the bed where you have gone up, but you will surely die.”’” Then Elijah departed. + +

+

The messengers returned to him, and he said to them, “Why is it that you have returned?” + +

+

They said to him, “A man came up to meet us, and said to us, ‘Go, return to the king who sent you, and tell him, “Yahweh says, ‘Is it because there is no God in Israel that you send to inquire of Baal Zebub, the god of Ekron? Therefore you will not come down from the bed where you have gone up, but you will surely die.’”’” + +

+

He said to them, “What kind of man was he who came up to meet you and told you these words?” + +

+

They answered him, “He was a hairy man, and wearing a leather belt around his waist.” +

+

He said, “It’s Elijah the Tishbite.” + +

+

Then the king sent a captain of fifty with his fifty to him. He went up to him; and behold,1:9 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. he was sitting on the top of the hill. He said to him, “Man of God, the king has said, ‘Come down!’” + +

+

Elijah answered to the captain of fifty, “If I am a man of God, then let fire come down from the sky and consume you and your fifty!” Then fire came down from the sky, and consumed him and his fifty. + +

+

Again he sent to him another captain of fifty with his fifty. He answered him, “Man of God, the king has said, ‘Come down quickly!’” + +

+

Elijah answered them, “If I am a man of God, then let fire come down from the sky and consume you and your fifty!” Then God’s fire came down from the sky, and consumed him and his fifty. + +

+

Again he sent the captain of a third fifty with his fifty. The third captain of fifty went up, and came and fell on his knees before Elijah, and begged him, and said to him, “Man of God, please let my life and the life of these fifty of your servants be precious in your sight. + +Behold, fire came down from the sky and consumed the last two captains of fifty with their fifties. But now let my life be precious in your sight.” + +

+

Yahweh’s angel said to Elijah, “Go down with him. Don’t be afraid of him.” +

+

Then he arose and went down with him to the king. + +He said to him, “Yahweh says, ‘Because you have sent messengers to inquire of Baal Zebub, the god of Ekron, is it because there is no God in Israel to inquire of his word? Therefore you will not come down from the bed where you have gone up, but you will surely die.’” + +

+

So he died according to Yahweh’s word which Elijah had spoken. Jehoram began to reign in his place in the second year of Jehoram the son of Jehoshaphat king of Judah, because he had no son. + +Now the rest of the acts of Ahaziah which he did, aren’t they written in the book of the chronicles of the kings of Israel? + +

+ + +

When Yahweh was about to take Elijah up by a whirlwind into heaven, Elijah went with Elisha from Gilgal. + +Elijah said to Elisha, “Please wait here, for Yahweh has sent me as far as Bethel.” +

+

Elisha said, “As Yahweh lives, and as your soul lives, I will not leave you.” So they went down to Bethel. + +

+

The sons of the prophets who were at Bethel came out to Elisha, and said to him, “Do you know that Yahweh will take away your master from over you today?” +

+

He said, “Yes, I know it. Hold your peace.” + +

+

Elijah said to him, “Elisha, please wait here, for Yahweh has sent me to Jericho.” +

+

He said, “As Yahweh lives, and as your soul lives, I will not leave you.” So they came to Jericho. + +

+

The sons of the prophets who were at Jericho came near to Elisha, and said to him, “Do you know that Yahweh will take away your master from over you today?” +

+

He answered, “Yes, I know it. Hold your peace.” + +

+

Elijah said to him, “Please wait here, for Yahweh has sent me to the Jordan.” +

+

He said, “As Yahweh lives, and as your soul lives, I will not leave you.” Then they both went on. + +Fifty men of the sons of the prophets went and stood opposite them at a distance; and they both stood by the Jordan. + +Elijah took his mantle, and rolled it up, and struck the waters; and they were divided here and there, so that they both went over on dry ground. + +When they had gone over, Elijah said to Elisha, “Ask what I shall do for you, before I am taken from you.” +

+

Elisha said, “Please let a double portion of your spirit be on me.” + +

+

He said, “You have asked a hard thing. If you see me when I am taken from you, it will be so for you; but if not, it will not be so.” + +

+

As they continued on and talked, behold, a chariot of fire and horses of fire separated them; and Elijah went up by a whirlwind into heaven. + +Elisha saw it, and he cried, “My father, my father, the chariots of Israel and its horsemen!” +

+

He saw him no more. Then he took hold of his own clothes and tore them in two pieces. + +He also took up Elijah’s mantle that fell from him, and went back and stood by the bank of the Jordan. + +He took Elijah’s mantle that fell from him, and struck the waters, and said, “Where is Yahweh, the God of Elijah?” When he also had struck the waters, they were divided apart, and Elisha went over. + +

+

When the sons of the prophets who were at Jericho facing him saw him, they said, “The spirit of Elijah rests on Elisha.” They came to meet him, and bowed themselves to the ground before him. + +They said to him, “See now, there are with your servants fifty strong men. Please let them go and seek your master. Perhaps Yahweh’s Spirit has taken him up, and put him on some mountain or into some valley.” +

+

He said, “Don’t send them.” + +

+

When they urged him until he was ashamed, he said, “Send them.” +

+

Therefore they sent fifty men; and they searched for three days, but didn’t find him. + +They came back to him while he stayed at Jericho; and he said to them, “Didn’t I tell you, ‘Don’t go’?” + +

+

The men of the city said to Elisha, “Behold, please, the situation of this city is pleasant, as my lord sees; but the water is bad, and the land is barren.” + +

+

He said, “Bring me a new jar, and put salt in it.” Then they brought it to him. + +He went out to the spring of the waters, and threw salt into it, and said, “Yahweh says, ‘I have healed these waters. There shall not be from there any more death or barren wasteland.’” + +So the waters were healed to this day, according to Elisha’s word which he spoke. + +

+

He went up from there to Bethel. As he was going up by the way, some youths came out of the city and mocked him, and said to him, “Go up, you baldy! Go up, you baldy!” + +He looked behind him and saw them, and cursed them in Yahweh’s name. Then two female bears came out of the woods and mauled forty-two of those youths. + +He went from there to Mount Carmel, and from there he returned to Samaria. + +

+ + +

Now Jehoram the son of Ahab began to reign over Israel in Samaria in the eighteenth year of Jehoshaphat king of Judah, and reigned twelve years. + +He did that which was evil in Yahweh’s sight, but not like his father and like his mother, for he put away the pillar of Baal that his father had made. + +Nevertheless he held to the sins of Jeroboam the son of Nebat, with which he made Israel to sin. He didn’t depart from them. + +

+

Now Mesha king of Moab was a sheep breeder; and he supplied the king of Israel with one hundred thousand lambs and the wool of one hundred thousand rams. + +But when Ahab was dead, the king of Moab rebelled against the king of Israel. + +King Jehoram went out of Samaria at that time, and mustered all Israel. + +He went and sent to Jehoshaphat the king of Judah, saying, “The king of Moab has rebelled against me. Will you go with me against Moab to battle?” +

+

He said, “I will go up. I am as you are, my people as your people, my horses as your horses.” + +Then he said, “Which way shall we go up?” +

+

Jehoram answered, “The way of the wilderness of Edom.” + +

+

So the king of Israel went with the king of Judah and the king of Edom, and they marched for seven days along a circuitous route. There was no water for the army or for the animals that followed them. + +The king of Israel said, “Alas! For Yahweh has called these three kings together to deliver them into the hand of Moab.” + +

+

But Jehoshaphat said, “Isn’t there a prophet of Yahweh here, that we may inquire of Yahweh by him?” +

+

One of the king of Israel’s servants answered, “Elisha the son of Shaphat, who poured water on the hands of Elijah, is here.” + +

+

Jehoshaphat said, “Yahweh’s word is with him.” So the king of Israel and Jehoshaphat and the king of Edom went down to him. + +

+

Elisha said to the king of Israel, “What have I to do with you? Go to the prophets of your father, and to the prophets of your mother.” +

+

The king of Israel said to him, “No, for Yahweh has called these three kings together to deliver them into the hand of Moab.” + +

+

Elisha said, “As Yahweh of Armies lives, before whom I stand, surely, were it not that I respect the presence of Jehoshaphat the king of Judah, I would not look toward you, nor see you. + +But now bring me a musician.” When the musician played, Yahweh’s hand came on him. + +He said, “Yahweh says, ‘Make this valley full of trenches.’ + +For Yahweh says, ‘You will not see wind, neither will you see rain, yet that valley will be filled with water, and you will drink, both you and your livestock and your other animals. + +This is an easy thing in Yahweh’s sight. He will also deliver the Moabites into your hand. + +You shall strike every fortified city and every choice city, and shall fell every good tree, and stop all springs of water, and mar every good piece of land with stones.’” + +

+

In the morning, about the time of offering the sacrifice, behold, water came by the way of Edom, and the country was filled with water. + +

+

Now when all the Moabites heard that the kings had come up to fight against them, they gathered themselves together, all who were able to put on armor, young and old, and stood on the border. + +They rose up early in the morning, and the sun shone on the water, and the Moabites saw the water opposite them as red as blood. + +They said, “This is blood. The kings are surely destroyed, and they have struck each other. Now therefore, Moab, to the plunder!” + +

+

When they came to the camp of Israel, the Israelites rose up and struck the Moabites, so that they fled before them; and they went forward into the land attacking the Moabites. + +They beat down the cities; and on every good piece of land each man cast his stone, and filled it. They also stopped all the springs of water and cut down all the good trees, until in Kir Hareseth all they left was its stones; however the men armed with slings went around it and attacked it. + +When the king of Moab saw that the battle was too severe for him, he took with him seven hundred men who drew a sword, to break through to the king of Edom; but they could not. + +Then he took his oldest son who would have reigned in his place, and offered him for a burnt offering on the wall. There was great wrath against Israel; and they departed from him, and returned to their own land. + +

+ + +

Now a certain woman of the wives of the sons of the prophets cried out to Elisha, saying, “Your servant my husband is dead. You know that your servant feared Yahweh. Now the creditor has come to take for himself my two children to be slaves.” + +

+

Elisha said to her, “What should I do for you? Tell me, what do you have in the house?” +

+

She said, “Your servant has nothing in the house, except a pot of oil.” + +

+

Then he said, “Go, borrow empty containers from all your neighbors. Don’t borrow just a few containers. + +Go in and shut the door on you and on your sons, and pour oil into all those containers; and set aside those which are full.” + +

+

So she went from him, and shut the door on herself and on her sons. They brought the containers to her, and she poured oil. + +When the containers were full, she said to her son, “Bring me another container.” +

+

He said to her, “There isn’t another container.” Then the oil stopped flowing. + +

+

Then she came and told the man of God. He said, “Go, sell the oil, and pay your debt; and you and your sons live on the rest.” + +

+

One day Elisha went to Shunem, where there was a prominent woman; and she persuaded him to eat bread. So it was, that as often as he passed by, he turned in there to eat bread. + +She said to her husband, “See now, I perceive that this is a holy man of God who passes by us continually. + +Please, let’s make a little room on the roof. Let’s set a bed, a table, a chair, and a lamp stand for him there. When he comes to us, he can stay there.” + +

+

One day he came there, and he went to the room and lay there. + +He said to Gehazi his servant, “Call this Shunammite.” When he had called her, she stood before him. + +He said to him, “Say now to her, ‘Behold, you have cared for us with all this care. What is to be done for you? Would you like to be spoken for to the king, or to the captain of the army?’” +

+

She answered, “I dwell among my own people.” + +

+

He said, “What then is to be done for her?” +

+

Gehazi answered, “Most certainly she has no son, and her husband is old.” + +

+

He said, “Call her.” When he had called her, she stood in the door. + +He said, “At this season next year, you will embrace a son.” +

+

She said, “No, my lord, you man of God, do not lie to your servant.” + +

+

The woman conceived, and bore a son at that season when the time came around, as Elisha had said to her. + +When the child was grown, one day he went out to his father to the reapers. + +He said to his father, “My head! My head!” +

+

He said to his servant, “Carry him to his mother.” + +

+

When he had taken him and brought him to his mother, he sat on her knees until noon, and then died. + +She went up and laid him on the man of God’s bed, and shut the door on him, and went out. + +She called to her husband and said, “Please send me one of the servants, and one of the donkeys, that I may run to the man of God and come again.” + +

+

He said, “Why would you want to go to him today? It is not a new moon or a Sabbath.” +

+

She said, “It’s all right.” + +

+

Then she saddled a donkey, and said to her servant, “Drive, and go forward! Don’t slow down for me, unless I ask you to.” + +

+

So she went, and came to the man of God to Mount Carmel. When the man of God saw her afar off, he said to Gehazi his servant, “Behold, there is the Shunammite. + +Please run now to meet her, and ask her, ‘Is it well with you? Is it well with your husband? Is it well with your child?’” +

+

She answered, “It is well.” + +

+

When she came to the man of God to the hill, she caught hold of his feet. Gehazi came near to thrust her away; but the man of God said, “Leave her alone, for her soul is troubled within her; and Yahweh has hidden it from me, and has not told me.” + +

+

Then she said, “Did I ask you for a son, my lord? Didn’t I say, ‘Do not deceive me’?” + +

+

Then he said to Gehazi, “Tuck your cloak into your belt, take my staff in your hand, and go your way. If you meet any man, don’t greet him; and if anyone greets you, don’t answer him again. Then lay my staff on the child’s face.” + +

+

The child’s mother said, “As Yahweh lives, and as your soul lives, I will not leave you.” +

+

So he arose, and followed her. + +

+

Gehazi went ahead of them, and laid the staff on the child’s face; but there was no voice and no hearing. Therefore he returned to meet him, and told him, “The child has not awakened.” + +

+

When Elisha had come into the house, behold, the child was dead, and lying on his bed. + +He went in therefore, and shut the door on them both, and prayed to Yahweh. + +He went up and lay on the child, and put his mouth on his mouth, and his eyes on his eyes, and his hands on his hands. He stretched himself on him; and the child’s flesh grew warm. + +Then he returned, and walked in the house once back and forth, then went up and stretched himself out on him. Then the child sneezed seven times, and the child opened his eyes. + +He called Gehazi, and said, “Call this Shunammite!” So he called her. +

+

When she had come in to him, he said, “Take up your son.” + +

+

Then she went in, fell at his feet, and bowed herself to the ground; then she picked up her son, and went out. + +

+

Elisha came again to Gilgal. There was a famine in the land; and the sons of the prophets were sitting before him; and he said to his servant, “Get the large pot, and boil stew for the sons of the prophets.” + +

+

One went out into the field to gather herbs, and found a wild vine, and gathered a lap full of wild gourds from it, and came and cut them up into the pot of stew; for they didn’t recognize them. + +So they poured out for the men to eat. As they were eating some of the stew, they cried out and said, “Man of God, there is death in the pot!” And they could not eat it. + +

+

But he said, “Then bring meal.” He threw it into the pot; and he said, “Serve it to the people, that they may eat.” And there was nothing harmful in the pot. + +

+

A man from Baal Shalishah came, and brought the man of God some bread of the first fruits: twenty loaves of barley and fresh ears of grain in his sack. Elisha said, “Give to the people, that they may eat.” + +

+

His servant said, “What, should I set this before a hundred men?” +

+

But he said, “Give it to the people, that they may eat; for Yahweh says, ‘They will eat, and will have some left over.’” + +

+

So he set it before them and they ate and had some left over, according to Yahweh’s word. + +

+ + +

Now Naaman, captain of the army of the king of Syria, was a great man with his master, and honorable, because by him Yahweh had given victory to Syria; he was also a mighty man of valor, but he was a leper. + +The Syrians had gone out in bands, and had brought away captive out of the land of Israel a little girl, and she waited on Naaman’s wife. + +She said to her mistress, “I wish that my lord were with the prophet who is in Samaria! Then he would heal him of his leprosy.” + +

+

Someone went in and told his lord, saying, “The girl who is from the land of Israel said this.” + +

+

The king of Syria said, “Go now, and I will send a letter to the king of Israel.” +

+

He departed, and took with him ten talents5:5 +A talent is about 30 kilograms or 66 pounds of silver, six thousand pieces of gold, and ten changes of clothing. + +He brought the letter to the king of Israel, saying, “Now when this letter has come to you, behold, I have sent Naaman my servant to you, that you may heal him of his leprosy.” + +

+

When the king of Israel had read the letter, he tore his clothes and said, “Am I God, to kill and to make alive, that this man sends to me to heal a man of his leprosy? But please consider and see how he seeks a quarrel against me.” + +

+

It was so, when Elisha the man of God heard that the king of Israel had torn his clothes, that he sent to the king, saying, “Why have you torn your clothes? Let him come now to me, and he shall know that there is a prophet in Israel.” + +

+

So Naaman came with his horses and with his chariots, and stood at the door of the house of Elisha. + +Elisha sent a messenger to him, saying, “Go and wash in the Jordan seven times, and your flesh shall come again to you, and you shall be clean.” + +

+

But Naaman was angry, and went away and said, “Behold, I thought, ‘He will surely come out to me, and stand, and call on the name of Yahweh his God, and wave his hand over the place, and heal the leper.’ + +Aren’t Abanah and Pharpar, the rivers of Damascus, better than all the waters of Israel? Couldn’t I wash in them and be clean?” So he turned and went away in a rage. + +

+

His servants came near and spoke to him, and said, “My father, if the prophet had asked you do some great thing, wouldn’t you have done it? How much rather then, when he says to you, ‘Wash, and be clean’?” + +

+

Then went he down and dipped himself seven times in the Jordan, according to the saying of the man of God; and his flesh was restored like the flesh of a little child, and he was clean. + +He returned to the man of God, he and all his company, and came, and stood before him; and he said, “See now, I know that there is no God in all the earth, but in Israel. Now therefore, please take a gift from your servant.” + +

+

But he said, “As Yahweh lives, before whom I stand, I will receive none.” +

+

He urged him to take it; but he refused. + +Naaman said, “If not, then, please let two mulesload of earth be given to your servant; for your servant will from now on offer neither burnt offering nor sacrifice to other gods, but to Yahweh. + +In this thing may Yahweh pardon your servant: when my master goes into the house of Rimmon to worship there, and he leans on my hand, and I bow myself in the house of Rimmon. When I bow myself in the house of Rimmon, may Yahweh pardon your servant in this thing.” + +

+

He said to him, “Go in peace.” +

+

So he departed from him a little way. + +But Gehazi the servant of Elisha the man of God, said, “Behold, my master has spared this Naaman the Syrian, in not receiving at his hands that which he brought. As Yahweh lives, I will run after him, and take something from him.” + +

+

So Gehazi followed after Naaman. When Naaman saw one running after him, he came down from the chariot to meet him, and said, “Is all well?” + +

+

He said, “All is well. My master has sent me, saying, ‘Behold, even now two young men of the sons of the prophets have come to me from the hill country of Ephraim. Please give them a talent5:22 +A talent is about 30 kilograms or 66 pounds of silver and two changes of clothing.’” + +

+

Naaman said, “Be pleased to take two talents.” He urged him, and bound two talents of silver in two bags, with two changes of clothing, and laid them on two of his servants; and they carried them before him. + +When he came to the hill, he took them from their hand, and stored them in the house. Then he let the men go, and they departed. + +But he went in, and stood before his master. Elisha said to him, “Where did you come from, Gehazi?” +

+

He said, “Your servant went nowhere.” + +

+

He said to him, “Didn’t my heart go with you when the man turned from his chariot to meet you? Is it a time to receive money, and to receive garments, and olive groves and vineyards, and sheep and cattle, and male servants and female servants? + +Therefore the leprosy of Naaman will cling to you and to your offspring5:27 +or, seed forever.” +

+

He went out from his presence a leper, as white as snow. + +

+ + +

The sons of the prophets said to Elisha, “See now, the place where we live and meet with you is too small for us. + +Please let us go to the Jordan, and each man take a beam from there, and let’s make us a place there, where we may live.” +

+

He answered, “Go!” + +

+

One said, “Please be pleased to go with your servants.” +

+

He answered, “I will go.” + +So he went with them. When they came to the Jordan, they cut down wood. + +But as one was cutting down a tree, the ax head fell into the water. Then he cried out and said, “Alas, my master! For it was borrowed.” + +

+

The man of God asked, “Where did it fall?” He showed him the place. He cut down a stick, threw it in there, and made the iron float. + +He said, “Take it.” So he put out his hand and took it. + +

+

Now the king of Syria was at war against Israel; and he took counsel with his servants, saying, “My camp will be in such and such a place.” + +

+

The man of God sent to the king of Israel, saying, “Beware that you not pass this place, for the Syrians are coming down there.” + +The king of Israel sent to the place which the man of God told him and warned him of; and he saved himself there, not once or twice. + +The king of Syria’s heart was very troubled about this. He called his servants, and said to them, “Won’t you show me which of us is for the king of Israel?” + +

+

One of his servants said, “No, my lord, O king; but Elisha, the prophet who is in Israel, tells the king of Israel the words that you speak in your bedroom.” + +

+

He said, “Go and see where he is, that I may send and get him.” +

+

He was told, “Behold, he is in Dothan.” + +

+

Therefore he sent horses, chariots, and a great army there. They came by night and surrounded the city. + +When the servant of the man of God had risen early and gone out, behold, an army with horses and chariots was around the city. His servant said to him, “Alas, my master! What shall we do?” + +

+

He answered, “Don’t be afraid, for those who are with us are more than those who are with them.” + +Elisha prayed, and said, “Yahweh, please open his eyes, that he may see.” Yahweh opened the young man’s eyes, and he saw; and behold, the mountain was full of horses and chariots of fire around Elisha. + +When they came down to him, Elisha prayed to Yahweh, and said, “Please strike this people with blindness.” +

+

He struck them with blindness according to Elisha’s word. + +

+

Elisha said to them, “This is not the way, neither is this the city. Follow me, and I will bring you to the man whom you seek.” He led them to Samaria. + +When they had come into Samaria, Elisha said, “Yahweh, open these men’s eyes, that they may see.” +

+

Yahweh opened their eyes, and they saw; and behold, they were in the middle of Samaria. + +

+

The king of Israel said to Elisha, when he saw them, “My father, shall I strike them? Shall I strike them?” + +

+

He answered, “You shall not strike them. Would you strike those whom you have taken captive with your sword and with your bow? Set bread and water before them, that they may eat and drink, then go to their master.” + +

+

He prepared a great feast for them. After they ate and drank, he sent them away and they went to their master. So the bands of Syria stopped raiding the land of Israel. + +

+

After this, Benhadad king of Syria gathered all his army, and went up and besieged Samaria. + +There was a great famine in Samaria. Behold, they besieged it until a donkey’s head was sold for eighty pieces of silver, and the fourth part of a kab6:25 +A kab was about 2 liters, so a fourth of a kab would be about 500 milliliters or about a pint of dove’s dung for five pieces of silver. + +As the king of Israel was passing by on the wall, a woman cried to him, saying, “Help, my lord, O king!” + +

+

He said, “If Yahweh doesn’t help you, where could I get help for you? From the threshing floor, or from the wine press?” + +Then the king asked her, “What is your problem?” +

+

She answered, “This woman said to me, ‘Give your son, that we may eat him today, and we will eat my son tomorrow.’ + +So we boiled my son and ate him; and I said to her on the next day, ‘Give up your son, that we may eat him;’ and she has hidden her son.” + +

+

When the king heard the words of the woman, he tore his clothes. Now he was passing by on the wall, and the people looked, and behold, he had sackcloth underneath on his body. + +Then he said, “God do so to me, and more also, if the head of Elisha the son of Shaphat stays on him today.” + +

+

But Elisha was sitting in his house, and the elders were sitting with him. Then the king sent a man from before him; but before the messenger came to him, he said to the elders, “Do you see how this son of a murderer has sent to take away my head? Behold, when the messenger comes, shut the door, and hold the door shut against him. Isn’t the sound of his master’s feet behind him?” + +

+

While he was still talking with them, behold, the messenger came down to him. Then he said, “Behold, this evil is from Yahweh. Why should I wait for Yahweh any longer?” + +

+ + +

Elisha said, “Hear Yahweh’s word. Yahweh says, ‘Tomorrow about this time a seah7:1 +1 seah is about 7 liters or 1.9 gallons or 0.8 pecks of fine flour will be sold for a shekel,7:1 +A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much. and two seahs of barley for a shekel, in the gate of Samaria.’” + +

+

Then the captain on whose hand the king leaned answered the man of God, and said, “Behold, if Yahweh made windows in heaven, could this thing be?” +

+

He said, “Behold, you will see it with your eyes, but will not eat of it.” + +

+

Now there were four leprous men at the entrance of the gate. They said to one another, “Why do we sit here until we die? + +If we say, ‘We will enter into the city,’ then the famine is in the city, and we will die there. If we sit still here, we also die. Now therefore come, and let’s surrender to the army of the Syrians. If they save us alive, we will live; and if they kill us, we will only die.” + +

+

They rose up in the twilight to go to the camp of the Syrians. When they had come to the outermost part of the camp of the Syrians, behold, no man was there. + +For the Lord7:6 +The word translated “Lord” is “Adonai.” had made the army of the Syrians to hear the sound of chariots and the sound of horses, even the noise of a great army; and they said to one another, “Behold, the king of Israel has hired against us the kings of the Hittites and the kings of the Egyptians to attack us.” + +Therefore they arose and fled in the twilight, and left their tents, their horses, and their donkeys, even the camp as it was, and fled for their life. + +When these lepers came to the outermost part of the camp, they went into one tent, and ate and drank, then carried away silver, gold, and clothing and went and hid it. Then they came back, and entered into another tent and carried things from there also, and went and hid them. + +Then they said to one another, “We aren’t doing right. Today is a day of good news, and we keep silent. If we wait until the morning light, punishment will overtake us. Now therefore come, let’s go and tell the king’s household.” + +

+

So they came and called to the city gatekeepers; and they told them, “We came to the camp of the Syrians, and, behold, there was no man there, not even a man’s voice, but the horses tied, and the donkeys tied, and the tents as they were.” + +

+

Then the gatekeepers called out and told it to the king’s household within. + +

+

The king arose in the night, and said to his servants, “I will now show you what the Syrians have done to us. They know that we are hungry. Therefore they have gone out of the camp to hide themselves in the field, saying, ‘When they come out of the city, we shall take them alive, and get into the city.’” + +

+

One of his servants answered, “Please let some people take five of the horses that remain, which are left in the city. Behold, they are like all the multitude of Israel who are left in it. Behold, they are like all the multitude of Israel who are consumed. Let’s send and see.” + +

+

Therefore they took two chariots with horses; and the king sent them out to the Syrian army, saying, “Go and see.” + +

+

They went after them to the Jordan; and behold, all the path was full of garments and equipment which the Syrians had cast away in their haste. The messengers returned and told the king. + +The people went out and plundered the camp of the Syrians. So a seah7:16 +1 seah is about 7 liters or 1.9 gallons or 0.8 pecks of fine flour was sold for a shekel, and two measures of barley for a shekel,7:16 +A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much. according to Yahweh’s word. + +The king had appointed the captain on whose hand he leaned to be in charge of the gate; and the people trampled over him in the gate, and he died as the man of God had said, who spoke when the king came down to him. + +It happened as the man of God had spoken to the king, saying, “Two seahs7:18 +1 seah is about 7 liters or 1.9 gallons or 0.8 pecks of barley for a shekel,7:18 +A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much. and a seah of fine flour for a shekel, shall be tomorrow about this time in the gate of Samaria;” + +and that captain answered the man of God, and said, “Now, behold, if Yahweh made windows in heaven, might such a thing be?” and he said, “Behold, you will see it with your eyes, but will not eat of it.” + +It happened like that to him, for the people trampled over him in the gate, and he died. + +

+ + +

Now Elisha had spoken to the woman whose son he had restored to life, saying, “Arise, and go, you and your household, and stay for a while wherever you can; for Yahweh has called for a famine. It will also come on the land for seven years.” + +

+

The woman arose, and did according to the man of God’s word. She went with her household, and lived in the land of the Philistines for seven years. + +At the end of seven years, the woman returned from the land of the Philistines. Then she went out to beg the king for her house and for her land. + +Now the king was talking with Gehazi the servant of the man of God, saying, “Please tell me all the great things that Elisha has done.” + +As he was telling the king how he had restored to life him who was dead, behold, the woman whose son he had restored to life begged the king for her house and for her land. Gehazi said, “My lord, O king, this is the woman, and this is her son, whom Elisha restored to life.” + +

+

When the king asked the woman, she told him. So the king appointed to 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.” + +

+

Elisha came to Damascus; and Benhadad the king of Syria was sick. He was told, “The man of God has come here.” + +

+

The king said to Hazael, “Take a present in your hand, and go meet the man of God, and inquire of Yahweh by him, saying, ‘Will I recover from this sickness?’” + +

+

So Hazael went to meet him and took a present with him, even of every good thing of Damascus, forty camelsburden, and came and stood before him and said, “Your son Benhadad king of Syria has sent me to you, saying, ‘Will I recover from this sickness?’” + +

+

Elisha said to him, “Go, tell him, ‘You will surely recover;’ however Yahweh has shown me that he will surely die.” + +He settled his gaze steadfastly on him, until he was ashamed. Then the man of God wept. + +

+

Hazael said, “Why do you weep, my lord?” +

+

He answered, “Because I know the evil that you will do to the children of Israel. You will set their strongholds on fire, and you will kill their young men with the sword, and will dash their little ones in pieces, and rip up their pregnant women.” + +

+

Hazael said, “But what is your servant, who is but a dog, that he could do this great thing?” +

+

Elisha answered, “Yahweh has shown me that you will be king over Syria.” + +

+

Then he departed from Elisha, and came to his master, who said to him, “What did Elisha say to you?” +

+

He answered, “He told me that you would surely recover.” + +

+

On the next day, he took a thick cloth, dipped it in water, and spread it on the king’s face, so that he died. Then Hazael reigned in his place. + +

+

In the fifth year of Joram the son of Ahab king of Israel, Jehoshaphat being king of Judah then, Jehoram the son of Jehoshaphat king of Judah began to reign. + +He was thirty-two years old when he began to reign. He reigned eight years in Jerusalem. + +He walked in the way of the kings of Israel, as did Ahab’s house, for he married Ahab’s daughter. He did that which was evil in Yahweh’s sight. + +However, Yahweh would not destroy Judah, for David his servant’s sake, as he promised him to give to him a lamp for his children always. + +

+

In his days Edom revolted from under the hand of Judah, and made a king over themselves. + +Then Joram crossed over to Zair, and all his chariots with him; and he rose up by night and struck the Edomites who surrounded him with the captains of the chariots; and the people fled to their tents. + +So Edom revolted from under the hand of Judah to this day. Then Libnah revolted at the same time. + +The rest of the acts of Joram, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? + +Joram slept with his fathers, and was buried with his fathers in David’s city; and Ahaziah his son reigned in his place. + +

+

In the twelfth year of Joram the son of Ahab king of Israel, Ahaziah the son of Jehoram king of Judah began to reign. + +Ahaziah was twenty-two years old when he began to reign; and he reigned one year in Jerusalem. His mother’s name was Athaliah the daughter of Omri king of Israel. + +He walked in the way of Ahab’s house and did that which was evil in Yahweh’s sight, as did Ahab’s house, for he was the son-in-law of Ahab’s house. + +

+

He went with Joram the son of Ahab to war against Hazael king of Syria at Ramoth Gilead, and the Syrians wounded Joram. + +King Joram returned to be healed in Jezreel from the wounds which the Syrians had given him at Ramah, when he fought against Hazael king of Syria. Ahaziah the son of Jehoram, king of Judah, went down to see Joram the son of Ahab in Jezreel, because he was sick. + +

+ + +

Elisha the prophet called one of the sons of the prophets, and said to him, “Put your belt on your waist, take this vial of oil in your hand, and go to Ramoth Gilead. + +When you come there, find Jehu the son of Jehoshaphat the son of Nimshi, and go in and make him rise up from among his brothers, and take him to an inner room. + +Then take the vial of oil, and pour it on his head, and say, ‘Yahweh says, “I have anointed you king over Israel.”’ Then open the door, flee, and don’t wait.” + +

+

So the young man, the young prophet, went to Ramoth Gilead. + +When he came, behold, the captains of the army were sitting. Then he said, “I have a message for you, captain.” +

+

Jehu said, “To which one of us?” +

+

He said, “To you, O captain.” + +He arose, and went into the house. Then he poured the oil on his head, and said to him, “Yahweh, the God of Israel, says, ‘I have anointed you king over the people of Yahweh, even over Israel. + +You must strike your master Ahab’s house, that I may avenge the blood of my servants the prophets, and the blood of all the servants of Yahweh, at the hand of Jezebel. + +For the whole house of Ahab will perish. I will cut off from Ahab everyone who urinates against a wall,9:8 +or, male both him who is shut up and him who is left at large in Israel. + +I will make Ahab’s house like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah. + +The dogs will eat Jezebel on the plot of ground of Jezreel, and there shall be no one to bury her.’” Then he opened the door and fled. + +

+

When Jehu came out to the servants of his lord and one said to him, “Is all well? Why did this madman come to you?” +

+

He said to them, “You know the man and how he talks.” + +

+

They said, “That is a lie. Tell us now.” +

+

He said, “He said to me, ‘Yahweh says, I have anointed you king over Israel.’” + +

+

Then they hurried, and each man took his cloak, and put it under him on the top of the stairs, and blew the trumpet, saying, “Jehu is king.” + +

+

So Jehu the son of Jehoshaphat the son of Nimshi conspired against Joram. (Now Joram was defending Ramoth Gilead, he and all Israel, because of Hazael king of Syria; + +but King Joram had returned to be healed in Jezreel of the wounds which the Syrians had given him when he fought with Hazael king of Syria.) Jehu said, “If this is your thinking, then let no one escape and go out of the city to go to tell it in Jezreel.” + +So Jehu rode in a chariot and went to Jezreel, for Joram lay there. Ahaziah king of Judah had come down to see Joram. + +Now the watchman was standing on the tower in Jezreel, and he spied the company of Jehu as he came, and said, “I see a company.” +

+

Joram said, “Take a horseman, and send to meet them, and let him say, ‘Is it peace?’” + +

+

So one went on horseback to meet him, and said, “the king says, ‘Is it peace?’” +

+

Jehu said, “What do you have to do with peace? Fall in behind me!” +

+

The watchman said, “The messenger came to them, but he isn’t coming back.” + +

+

Then he sent out a second on horseback, who came to them and said, “The king says, ‘Is it peace?’” +

+

Jehu answered, “What do you have to do with peace? Fall in behind me!” + +

+

The watchman said, “He came to them, and isn’t coming back. The driving is like the driving of Jehu the son of Nimshi, for he drives furiously.” + +

+

Joram said, “Get ready!” +

+

They got his chariot ready. Then Joram king of Israel and Ahaziah king of Judah went out, each in his chariot; and they went out to meet Jehu, and found him on Naboth the Jezreelite’s land. + +When Joram saw Jehu, he said, “Is it peace, Jehu?” +

+

He answered, “What peace, so long as the prostitution of your mother Jezebel and her witchcraft abound?” + +

+

Joram turned his hands and fled, and said to Ahaziah, “This is treason, Ahaziah!” + +

+

Jehu drew his bow with his full strength, and struck Joram between his arms; and the arrow went out at his heart, and he sunk down in his chariot. + +Then Jehu said to Bidkar his captain, “Pick him up, and throw him in the plot of the field of Naboth the Jezreelite; for remember how, when you and I rode together after Ahab his father, Yahweh laid this burden on him: + +Surely I have seen yesterday the blood of Naboth, and the blood of his sons,’ says Yahweh; ‘and I will repay you in this plot of ground,’ says Yahweh. Now therefore take and cast him onto the plot of ground, according to Yahweh’s word.” + +

+

But when Ahaziah the king of Judah saw this, he fled by the way of the garden house. Jehu followed after him, and said, “Strike him also in the chariot!” They struck him at the ascent of Gur, which is by Ibleam. He fled to Megiddo, and died there. + +His servants carried him in a chariot to Jerusalem, and buried him in his tomb with his fathers in David’s city. + +In the eleventh year of Joram the son of Ahab, Ahaziah began to reign over Judah. + +

+

When Jehu had come to Jezreel, Jezebel heard of it; and she painted her eyes, and adorned her head, and looked out at the window. + +As Jehu entered in at the gate, she said, “Do you come in peace, Zimri, you murderer of your master?” + +

+

He lifted up his face to the window, and said, “Who is on my side? Who?” +

+

Two or three eunuchs looked out at him. + +

+

He said, “Throw her down!” +

+

So they threw her down; and some of her blood was sprinkled on the wall, and on the horses. Then he trampled her under foot. + +When he had come in, he ate and drank. Then he said, “See now to this cursed woman, and bury her; for she is a king’s daughter.” + +

+

They went to bury her, but they found no more of her than the skull, the feet, and the palms of her hands. + +Therefore they came back, and told him. +

+

He said, “This is Yahweh’s word, which he spoke by his servant Elijah the Tishbite, saying, ‘The dogs will eat the flesh of Jezebel on the plot of Jezreel, + +and the body of Jezebel will be as dung on the surface of the field on Jezreel’s land, so that they won’t say, “This is Jezebel.”’” + +

+ + +

Now Ahab had seventy sons in Samaria. Jehu wrote letters and sent them to Samaria, to the rulers of Jezreel, even the elders, and to those who brought up Ahab’s sons, saying, + +Now as soon as this letter comes to you, since your master’s sons are with you, and you have chariots and horses, a fortified city also, and armor, + +select the best and fittest of your master’s sons, set him on his father’s throne, and fight for your master’s house.” + +

+

But they were exceedingly afraid, and said, “Behold, the two kings didn’t stand before him! How then shall we stand?” + +He who was over the household, and he who was over the city, the elders also, and those who raised the children, sent to Jehu, saying, “We are your servants, and will do all that you ask us. We will not make any man king. You do that which is good in your eyes.” + +

+

Then he wrote a letter the second time to them, saying, “If you are on my side, and if you will listen to my voice, take the heads of the men who are your master’s sons, and come to me to Jezreel by tomorrow this time.” +

+

Now the king’s sons, being seventy persons, were with the great men of the city, who brought them up. + +When the letter came to them, they took the king’s sons and killed them, even seventy people, and put their heads in baskets, and sent them to him to Jezreel. + +A messenger came and told him, “They have brought the heads of the king’s sons.” +

+

He said, “Lay them in two heaps at the entrance of the gate until the morning.” + +In the morning, he went out and stood, and said to all the people, “You are righteous. Behold, I conspired against my master and killed him, but who killed all these? + +Know now that nothing will fall to the earth of Yahweh’s word, which Yahweh spoke concerning Ahab’s house. For Yahweh has done that which he spoke by his servant Elijah.” + +

+

So Jehu struck all that remained of Ahab’s house in Jezreel, with all his great men, his familiar friends, and his priests, until he left him no one remaining. + +

+

He arose and departed, and went to Samaria. As he was at the shearing house of the shepherds on the way, + +Jehu met with the brothers of Ahaziah king of Judah, and said, “Who are you?” +

+

They answered, “We are the brothers of Ahaziah. We are going down to greet the children of the king and the children of the queen.” + +

+

He said, “Take them alive!” +

+

They took them alive, and killed them at the pit of the shearing house, even forty-two men. He didn’t leave any of them. + +

+

When he had departed from there, he met Jehonadab the son of Rechab coming to meet him. He greeted him, and said to him, “Is your heart right, as my heart is with your heart?” +

+

Jehonadab answered, “It is.” +

+

If it is, give me your hand.” He gave him his hand; and he took him up to him into the chariot. + +He said, “Come with me, and see my zeal for Yahweh.” So they made him ride in his chariot. + +When he came to Samaria, he struck all who remained to Ahab in Samaria, until he had destroyed them, according to Yahweh’s word which he spoke to Elijah. + +

+

Jehu gathered all the people together, and said to them, “Ahab served Baal a little, but Jehu will serve him much. + +Now therefore call to me all the prophets of Baal, all of his worshipers, and all of his priests. Let no one be absent, for I have a great sacrifice to Baal. Whoever is absent, he shall not live.” But Jehu did deceptively, intending to destroy the worshipers of Baal. + +

+

Jehu said, “Sanctify a solemn assembly for Baal!” +

+

So they proclaimed it. + +Jehu sent through all Israel; and all the worshipers of Baal came, so that there was not a man left that didn’t come. They came into the house of Baal; and the house of Baal was filled from one end to another. + +He said to him who kept the wardrobe, “Bring out robes for all the worshipers of Baal!” +

+

So he brought robes out to them. + +Jehu went with Jehonadab the son of Rechab into the house of Baal. Then he said to the worshipers of Baal, “Search, and see that none of the servants of Yahweh are here with you, but only the worshipers of Baal.” + +

+

So they went in to offer sacrifices and burnt offerings. Now Jehu had appointed for himself eighty men outside, and said, “If any of the men whom I bring into your hands escape, he who lets him go, his life shall be for the life of him.” + +

+

As soon as he had finished offering the burnt offering, Jehu said to the guard and to the captains, “Go in and kill them! Let no one escape.” So they struck them with the edge of the sword. The guard and the captains threw the bodies out, and went to the inner shrine of the house of Baal. + +They brought out the pillars that were in the house of Baal and burned them. + +They broke down the pillar of Baal, and broke down the house of Baal, and made it a latrine, to this day. + +Thus Jehu destroyed Baal out of Israel. + +

+

However, Jehu didn’t depart from the sins of Jeroboam the son of Nebat, with which he made Israel to sinthe golden calves that were in Bethel and that were in Dan. + +Yahweh said to Jehu, “Because you have done well in executing that which is right in my eyes, and have done to Ahab’s house according to all that was in my heart, your descendants shall sit on the throne of Israel to the fourth generation.” + +

+

But Jehu took no heed to walk in the law of Yahweh, the God of Israel, with all his heart. He didn’t depart from the sins of Jeroboam, with which he made Israel to sin. + +

+

In those days Yahweh began to cut away parts of Israel; and Hazael struck them in all the borders of Israel + +from the Jordan eastward, all the land of Gilead, the Gadites, and the Reubenites, and the Manassites, from Aroer, which is by the valley of the Arnon, even Gilead and Bashan. + +Now the rest of the acts of Jehu, and all that he did, and all his might, aren’t they written in the book of the chronicles of the kings of Israel? + +Jehu slept with his fathers; and they buried him in Samaria. Jehoahaz his son reigned in his place. + +The time that Jehu reigned over Israel in Samaria was twenty-eight years. + +

+ + +

Now when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the royal offspring. + +But Jehosheba, the daughter of King Joram, sister of Ahaziah, took Joash the son of Ahaziah, and stole him away from among the king’s sons who were slain, even him and his nurse, and put them in the bedroom; and they hid him from Athaliah, so that he was not slain. + +He was with her hidden in Yahweh’s house six years while Athaliah reigned over the land. + +

+

In the seventh year Jehoiada sent and fetched the captains over hundreds of the Carites and of the guard, and brought them to him into Yahweh’s house; and he made a covenant with them, and made a covenant with them in Yahweh’s house, and showed them the king’s son. + +He commanded them, saying, “This is what you must do: a third of you, who come in on the Sabbath, shall be keepers of the watch of the king’s house; + +a third of you shall be at the gate Sur; and a third of you at the gate behind the guard. So you shall keep the watch of the house, and be a barrier. + +The two companies of you, even all who go out on the Sabbath, shall keep the watch of Yahweh’s house around the king. + +You shall surround the king, every man with his weapons in his hand; and he who comes within the ranks, let him be slain. Be with the king when he goes out, and when he comes in.” + +

+

The captains over hundreds did according to all that Jehoiada the priest commanded; and they each took his men, those who were to come in on the Sabbath with those who were to go out on the Sabbath, and came to Jehoiada the priest. + +The priest delivered to the captains over hundreds the spears and shields that had been King David’s, which were in Yahweh’s house. + +The guard stood, every man with his weapons in his hand, from the right side of the house to the left side of the house, along by the altar and the house, around the king. + +Then he brought out the king’s son, and put the crown on him, and gave him the covenant; and they made him king and anointed him; and they clapped their hands, and said, “Long live the king!” + +

+

When Athaliah heard the noise of the guard and of the people, she came to the people into Yahweh’s house; + +and she looked, and behold, the king stood by the pillar, as the tradition was, with the captains and the trumpets by the king; and all the people of the land rejoiced, and blew trumpets. Then Athaliah tore her clothes and cried, “Treason! Treason!” + +

+

Jehoiada the priest commanded the captains of hundreds who were set over the army, and said to them, “Bring her out between the ranks. Kill anyone who follows her with the sword.” For the priest said, “Don’t let her be slain in Yahweh’s house.” + +So they seized her; and she went by the way of the horsesentry to the king’s house, and she was slain there. + +

+

Jehoiada made a covenant between Yahweh and the king and the people, that they should be Yahweh’s people; also between the king and the people. + +All the people of the land went to the house of Baal, and broke it down. They broke his altars and his images in pieces thoroughly, and killed Mattan the priest of Baal before the altars. The priest appointed officers over Yahweh’s house. + +He took the captains over hundreds, and the Carites, and the guard, and all the people of the land; and they brought down the king from Yahweh’s house, and came by the way of the gate of the guard to the king’s house. He sat on the throne of the kings. + +So all the people of the land rejoiced, and the city was quiet. They had slain Athaliah with the sword at the king’s house. + +

+

Jehoash was seven years old when he began to reign. + +

+ + +

Jehoash began to reign in the seventh year of Jehu, and he reigned forty years in Jerusalem. His mother’s name was Zibiah of Beersheba. + +Jehoash did that which was right in Yahweh’s eyes all his days in which Jehoiada the priest instructed him. + +However, the high places were not taken away. The people still sacrificed and burned incense in the high places. + +

+

Jehoash said to the priests, “All the money of the holy things that is brought into Yahweh’s house, in current money, the money of the people for whom each man is evaluated,12:4 +Exodus 30:12 and all the money that it comes into any man’s heart to bring into Yahweh’s house, + +let the priests take it to them, each man from his donor; and they shall repair the damage to the house, wherever any damage is found.” + +

+

But it was so, that in the twenty-third year of King Jehoash the priests had not repaired the damage to the house. + +Then King Jehoash called for Jehoiada the priest, and for the other priests, and said to them, “Why aren’t you repairing the damage to the house? Now therefore take no more money from your treasurers, but deliver it for repair of the damage to the house.” + +

+

The priests consented that they should take no more money from the people, and not repair the damage to the house. + +But Jehoiada the priest took a chest and bored a hole in its lid, and set it beside the altar, on the right side as one comes into Yahweh’s house; and the priests who kept the threshold put all the money that was brought into Yahweh’s house into it. + +When they saw that there was much money in the chest, the king’s scribe and the high priest came up, and they put it in bags and counted the money that was found in Yahweh’s house. + +They gave the money that was weighed out into the hands of those who did the work, who had the oversight of Yahweh’s house; and they paid it out to the carpenters and the builders who worked on Yahweh’s house, + +and to the masons and the stone cutters, and for buying timber and cut stone to repair the damage to Yahweh’s house, and for all that was laid out for the house to repair it. + +But there were not made for Yahweh’s house cups of silver, snuffers, basins, trumpets, any vessels of gold or vessels of silver, of the money that was brought into Yahweh’s house; + +for they gave that to those who did the work, and repaired Yahweh’s house with it. + +Moreover they didn’t demand an accounting from the men into whose hand they delivered the money to give to those who did the work; for they dealt faithfully. + +The money for the trespass offerings and the money for the sin offerings was not brought into Yahweh’s house. It was the priests’. + +

+

Then Hazael king of Syria went up and fought against Gath, and took it; and Hazael set his face to go up to Jerusalem. + +Jehoash king of Judah took all the holy things that Jehoshaphat and Jehoram and Ahaziah, his fathers, kings of Judah, had dedicated, and his own holy things, and all the gold that was found in the treasures of Yahweh’s house, and of the king’s house, and sent it to Hazael king of Syria; and he went away from Jerusalem. + +

+

Now the rest of the acts of Joash, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? + +His servants arose and made a conspiracy, and struck Joash at the house of Millo, on the way that goes down to Silla. + +For Jozacar the son of Shimeath, and Jehozabad the son of Shomer, his servants, struck him, and he died; and they buried him with his fathers in David’s city; and Amaziah his son reigned in his place. + +

+ + +

In the twenty-third year of Joash the son of Ahaziah, king of Judah, Jehoahaz the son of Jehu began to reign over Israel in Samaria for seventeen years. + +He did that which was evil in Yahweh’s sight, and followed the sins of Jeroboam the son of Nebat, with which he made Israel to sin. He didn’t depart from it. + +Yahweh’s anger burned against Israel, and he delivered them into the hand of Hazael king of Syria, and into the hand of Benhadad the son of Hazael, continually. + +Jehoahaz begged Yahweh, and Yahweh listened to him; for he saw the oppression of Israel, how the king of Syria oppressed them. + +(Yahweh gave Israel a savior, so that they went out from under the hand of the Syrians; and the children of Israel lived in their tents as before. + +Nevertheless they didn’t depart from the sins of the house of Jeroboam, with which he made Israel to sin, but walked in them; and the Asherah also remained in Samaria.) + +For he didn’t leave to Jehoahaz of the people any more than fifty horsemen, and ten chariots, and ten thousand footmen; for the king of Syria destroyed them and made them like the dust in threshing. + +Now the rest of the acts of Jehoahaz, and all that he did, and his might, aren’t they written in the book of the chronicles of the kings of Israel? + +Jehoahaz slept with his fathers; and they buried him in Samaria; and Joash his son reigned in his place. + +

+

In the thirty-seventh year of Joash king of Judah, Jehoash the son of Jehoahaz began to reign over Israel in Samaria for sixteen years. + +He did that which was evil in Yahweh’s sight. He didn’t depart from all the sins of Jeroboam the son of Nebat, with which he made Israel to sin; but he walked in them. + +Now the rest of the acts of Joash, and all that he did, and his might with which he fought against Amaziah king of Judah, aren’t they written in the book of the chronicles of the kings of Israel? + +Joash slept with his fathers; and Jeroboam sat on his throne. Joash was buried in Samaria with the kings of Israel. + +

+

Now Elisha became sick with the illness of which he died; and Joash the king of Israel came down to him, and wept over him, and said, “My father, my father, the chariots of Israel and its horsemen!” + +

+

Elisha said to him, “Take bow and arrows;” and he took bow and arrows for himself. + +He said to the king of Israel, “Put your hand on the bow;” and he put his hand on it. Elisha laid his hands on the king’s hands. + +He said, “Open the window eastward;” and he opened it. Then Elisha said, “Shoot!” and he shot. He said, “Yahweh’s arrow of victory, even the arrow of victory over Syria; for you will strike the Syrians in Aphek until you have consumed them.” + +

+

He said, “Take the arrows;” and he took them. He said to the king of Israel, “Strike the ground;” and he struck three times, and stopped. + +The man of God was angry with him, and said, “You should have struck five or six times. Then you would have struck Syria until you had consumed it, but now you will strike Syria just three times.” + +

+

Elisha died, and they buried him. +

+

Now the bands of the Moabites invaded the land at the coming in of the year. + +As they were burying a man, behold, they saw a band of raiders; and they threw the man into Elisha’s tomb. As soon as the man touched Elisha’s bones, he revived, and stood up on his feet. + +

+

Hazael king of Syria oppressed Israel all the days of Jehoahaz. + +But Yahweh was gracious to them, and had compassion on them, and favored them because of his covenant with Abraham, Isaac, and Jacob, and would not destroy them and he didn’t cast them from his presence as yet. + +

+

Hazael king of Syria died; and Benhadad his son reigned in his place. + +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. Joash struck him three times, and recovered the cities of Israel. + +

+ + +

In the second year of Joash, son of Joahaz, king of Israel, Amaziah the son of Joash king of Judah began to reign. + +He was twenty-five years old when he began to reign; and he reigned twenty-nine years in Jerusalem. His mother’s name was Jehoaddin of Jerusalem. + +He did that which was right in Yahweh’s eyes, yet not like David his father. He did according to all that Joash his father had done. + +However the high places were not taken away. The people still sacrificed and burned incense in the high places. + +As soon as the kingdom was established in his hand, he killed his servants who had slain the king his father, + +but the children of the murderers he didn’t put to death, according to that which is written in the book of the law of Moses, as Yahweh 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 die for his own sin.” + +

+

He killed ten thousand Edomites in the Valley of Salt, and took Sela by war, and called its name Joktheel, to this day. + +Then Amaziah sent messengers to Jehoash, the son of Jehoahaz son of Jehu, king of Israel, saying, “Come, let’s look one another in the face.” + +

+

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 your daughter to my son as wife.’ Then a wild animal that was in Lebanon passed by, and trampled down the thistle. + +You have indeed struck Edom, and your heart has lifted you up. Enjoy the glory of it, and stay at home; for why should you meddle to your harm, that you fall, even you, and Judah with you?” + +

+

But Amaziah would not listen. So Jehoash king of Israel went up; and he and Amaziah king of Judah looked one another in the face at Beth Shemesh, which belongs to Judah. + +Judah was defeated by Israel; and each man fled to his tent. + +Jehoash king of Israel took Amaziah king of Judah, the son of Jehoash the son of Ahaziah, at Beth Shemesh and came to Jerusalem, then broke down the wall of Jerusalem from the gate of Ephraim to the corner gate, four hundred cubits.14:13 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. + +He took all the gold and silver and all the vessels that were found in Yahweh’s house and in the treasures of the king’s house, the hostages also, and returned to Samaria. + +

+

Now the rest of the acts of Jehoash which he did, and his might, and how he fought with Amaziah king of Judah, aren’t they written in the book of the chronicles of the kings of Israel? + +Jehoash slept with his fathers, and was buried in Samaria with the kings of Israel; and Jeroboam his son reigned in his place. + +

+

Amaziah the son of Joash king of Judah lived after the death of Jehoash son of Jehoahaz, king of Israel, fifteen years. + +Now the rest of the acts of Amaziah, aren’t they written in the book of the chronicles of the kings of Judah? + +They made a conspiracy against him in Jerusalem, and he fled to Lachish; but they sent after him to Lachish and killed him there. + +They brought him on horses, and he was buried at Jerusalem with his fathers in David’s city. + +

+

All the people of Judah took Azariah, who was sixteen years old, and made him king in the place of his father Amaziah. + +He built Elath and restored it to Judah. After that the king slept with his fathers. + +

+

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 for forty-one years. + +He did that which was evil in Yahweh’s sight. He didn’t depart from all the sins of Jeroboam the son of Nebat, with which he made Israel to sin. + +He restored the border of Israel from the entrance of Hamath to the sea of the Arabah, according to Yahweh, the God of Israel’s word, which he spoke by his servant Jonah the son of Amittai, the prophet, who was from Gath Hepher. + +For Yahweh saw the affliction of Israel, that it was very bitter for all, slave and free; and there was no helper for Israel. + +Yahweh didn’t say that he would blot out the name of Israel from under the sky; but he saved them by the hand of Jeroboam the son of Joash. + +Now the rest of the acts of Jeroboam, and all that he did, and his might, how he fought, and how he recovered Damascus, and Hamath, which had belonged to Judah, for Israel, aren’t they written in the book of the chronicles of the kings of Israel? + +Jeroboam slept with his fathers, even with the kings of Israel; and Zechariah his son reigned in his place. + +

+ + +

In the twenty-seventh year of Jeroboam king of Israel, Azariah son of Amaziah king of Judah began to reign. + +He was sixteen years old when he began to reign, and he reigned fifty-two years in Jerusalem. His mother’s name was Jecoliah of Jerusalem. + +He did that which was right in Yahweh’s eyes, according to all that his father Amaziah had done. + +However, the high places were not taken away. The people still sacrificed and burned incense in the high places. + +Yahweh struck the king, so that he was a leper to the day of his death, and lived in a separate house. Jotham, the king’s son, was over the household, judging the people of the land. + +Now the rest of the acts of Azariah, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? + +Azariah slept with his fathers; and they buried him with his fathers in David’s city; and Jotham his son reigned in his place. + +

+

In the thirty-eighth year of Azariah king of Judah, Zechariah the son of Jeroboam reigned over Israel in Samaria six months. + +He did that which was evil in Yahweh’s sight, as his fathers had done. He didn’t depart from the sins of Jeroboam the son of Nebat, with which he made Israel to sin. + +Shallum the son of Jabesh conspired against him, and struck him before the people and killed him, and reigned in his place. + +Now the rest of the acts of Zechariah, behold, they are written in the book of the chronicles of the kings of Israel. + +This was Yahweh’s word which he spoke to Jehu, saying, “Your sons to the fourth generation shall sit on the throne of Israel.” So it came to pass. + +

+

Shallum the son of Jabesh began to reign in the thirty-ninth year of Uzziah king of Judah, and he reigned for a month in Samaria. + +Menahem the son of Gadi went up from Tirzah, came to Samaria, struck Shallum the son of Jabesh in Samaria, killed him, and reigned in his place. + +Now 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. + +

+

Then Menahem attacked Tiphsah and all who were in it and its border areas, from Tirzah. He attacked it because they didn’t open their gates to him, and he ripped up all their women who were with child. + +

+

In the thirty ninth year of Azariah king of Judah, Menahem the son of Gadi began to reign over Israel for ten years in Samaria. + +He did that which was evil in Yahweh’s sight. He didn’t depart all his days from the sins of Jeroboam the son of Nebat, with which he made Israel to sin. + +Pul the king of Assyria came against the land, and Menahem gave Pul one thousand talents15:19 +A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons of silver, that his hand might be with him to confirm the kingdom in his hand. + +Menahem exacted the money from Israel, even from all the mighty men of wealth, from each man fifty shekels15:20 +A shekel is about 10 grams or about 0.35 ounces, so 50 shekels was about 0.5 kilograms or 1.1 pounds. of silver, to give to the king of Assyria. So the king of Assyria turned back, and didn’t stay there in the land. + +Now the rest of the acts of Menahem, and all that he did, aren’t they written in the book of the chronicles of the kings of Israel? + +Menahem slept with his fathers, and Pekahiah his son reigned in his place. + +

+

In the fiftieth year of Azariah king of Judah, Pekahiah the son of Menahem began to reign over Israel in Samaria for two years. + +He did that which was evil in Yahweh’s sight. He didn’t depart from the sins of Jeroboam the son of Nebat, with which he made Israel to sin. + +Pekah the son of Remaliah, his captain, conspired against him and attacked him in Samaria, in the fortress of the king’s house, with Argob and Arieh; and with him were fifty men of the Gileadites. He killed him, and reigned in his place. + +Now 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. + +

+

In the fifty-second year of Azariah king of Judah, Pekah the son of Remaliah began to reign over Israel in Samaria for twenty years. + +He did that which was evil in Yahweh’s sight. He didn’t depart from the sins of Jeroboam the son of Nebat, with which he made Israel to sin. + +In the days of Pekah king of Israel, Tiglath Pileser king of Assyria came and took Ijon, Abel Beth Maacah, Janoah, Kedesh, Hazor, Gilead, and Galilee, all the land of Naphtali; and he carried them captive to Assyria. + +Hoshea the son of Elah made a conspiracy against Pekah the son of Remaliah, attacked him, killed him, and reigned in his place, in the twentieth year of Jotham the son of Uzziah. + +Now 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. + +

+

In the second year of Pekah the son of Remaliah king of Israel, Jotham the son of Uzziah king of Judah began to reign. + +He was twenty-five years old when he began to reign, and he reigned sixteen years in Jerusalem. His mother’s name was Jerusha the daughter of Zadok. + +He did that which was right in Yahweh’s eyes. He did according to all that his father Uzziah had done. + +However the high places were not taken away. The people still sacrificed and burned incense in the high places. He built the upper gate of Yahweh’s house. + +Now the rest of the acts of Jotham, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? + +In those days, Yahweh began to send Rezin the king of Syria and Pekah the son of Remaliah against Judah. + +Jotham slept with his fathers, and was buried with his fathers in his father David’s city; and Ahaz his son reigned in his place. + +

+ + +

In the seventeenth year of Pekah the son of Remaliah, Ahaz the son of Jotham king of Judah began to reign. + +Ahaz was twenty years old when he began to reign, and he reigned sixteen years in Jerusalem. He didn’t do that which was right in Yahweh his God’s eyes, like David his father. + +But he walked in the way of the kings of Israel, and even made his son to pass through the fire, according to the abominations of the nations whom Yahweh cast out from before the children of Israel. + +He sacrificed and burned incense in the high places, on the hills, and under every green tree. + +

+

Then Rezin king of Syria and Pekah son of Remaliah king of Israel came up to Jerusalem to wage war. They besieged Ahaz, but could not overcome him. + +At that time Rezin king of Syria recovered Elath to Syria, and drove the Jews from Elath; and the Syrians came to Elath, and live there to this day. + +So Ahaz sent messengers to Tiglath Pileser king of Assyria, saying, “I am your servant and your 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, who rise up against me.” + +Ahaz took the silver and gold that was found in Yahweh’s house, and in the treasures of the king’s house, and sent it for a present to the king of Assyria. + +The king of Assyria listened to him; and the king of Assyria went up against Damascus and took it, and carried its people captive to Kir, and killed Rezin. + +

+

King Ahaz went to Damascus to meet Tiglath Pileser king of Assyria, and saw the altar that was at Damascus; and King Ahaz sent to Urijah the priest a drawing of the altar and plans to build it. + +Urijah the priest built an altar. According to all that King Ahaz had sent from Damascus, so Urijah the priest made it for the coming of King Ahaz from Damascus. + +When the king had come from Damascus, the king saw the altar; and the king came near to the altar, and offered on it. + +He burned his burnt offering and his meal offering, poured his drink offering, and sprinkled the blood of his peace offerings on the altar. + +The bronze altar, which was before Yahweh, he brought from the front of the house, from between his altar and Yahweh’s house, and put it on the north side of his altar. + +King Ahaz commanded Urijah the priest, saying, “On the great altar burn the morning burnt offering, the evening meal offering, the king’s burnt offering and his meal offering, with the burnt offering of all the people of the land, their meal offering, and their drink offerings; and sprinkle on it all the blood of the burnt offering, and all the blood of the sacrifice; but the bronze altar will be for me to inquire by.” + +Urijah the priest did so, according to all that King Ahaz commanded. + +

+

King Ahaz cut off the panels of the bases, and removed the basin from off them, and took down the sea from off the bronze oxen that were under it, and put it on a pavement of stone. + +He removed the covered way for the Sabbath that they had built in the house, and the king’s outer entrance to Yahweh’s house, because of the king of Assyria. + +Now the rest of the acts of Ahaz which he did, aren’t they written in the book of the chronicles of the kings of Judah? + +Ahaz slept with his fathers, and was buried with his fathers in David’s city; and Hezekiah his son reigned in his place. + +

+ + +

In the twelfth year of Ahaz king of Judah, Hoshea the son of Elah began to reign in Samaria over Israel for nine years. + +He did that which was evil in Yahweh’s sight, yet not as the kings of Israel who were before him. + +Shalmaneser king of Assyria came up against him; and Hoshea became his servant, and brought him tribute. + +The king of Assyria discovered a conspiracy in Hoshea; for he had sent messengers to So king of Egypt, and offered no tribute to the king of Assyria, as he had done year by year. Therefore the king of Assyria seized him, and bound him in prison. + +Then the king of Assyria came up throughout all the land, went up to Samaria, and besieged it three years. + +In the ninth year of Hoshea the king of Assyria took Samaria and carried Israel away to Assyria, and placed them in Halah, and on the Habor, the river of Gozan, and in the cities of the Medes. + +

+

It was so because the children of Israel had sinned against Yahweh their God, who brought them up out of the land of Egypt from under the hand of Pharaoh king of Egypt, and had feared other gods, + +and walked in the statutes of the nations whom Yahweh cast out from before the children of Israel, and of the kings of Israel, which they made. + +The children of Israel secretly did things that were not right against Yahweh their God; and they built high places for themselves in all their cities, from the tower of the watchmen to the fortified city; + +and they set up for themselves pillars and Asherah poles on every high hill and under every green tree; + +and there they burned incense in all the high places, as the nations whom Yahweh carried away before them did; and they did wicked things to provoke Yahweh to anger; + +and they served idols, of which Yahweh had said to them, “You shall not do this thing.” + +Yet Yahweh testified to Israel and to Judah, by every prophet and every seer, saying, “Turn 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.” + +Notwithstanding, they would not listen, but hardened their neck like the neck of their fathers who didn’t believe in Yahweh their God. + +They rejected his statutes and his covenant that he made with their fathers, and his testimonies which he testified to them; and they followed vanity, and became vain, and followed the nations that were around them, concerning whom Yahweh had commanded them that they should not do like them. + +They abandoned all the commandments of Yahweh their God, and made molten images for themselves, even two calves, and made an Asherah, and worshiped all the army of the sky, and served Baal. + +They caused their sons and their daughters to pass through the fire, used divination and enchantments, and sold themselves to do that which was evil in Yahweh’s sight, to provoke him to anger. + +Therefore Yahweh was very angry with Israel, and removed them out of his sight. There was none left but the tribe of Judah only. + +

+

Also Judah didn’t keep the commandments of Yahweh their God, but walked in the statutes of Israel which they made. + +Yahweh rejected all the offspring of Israel, afflicted them, and delivered them into the hands of raiders, until he had cast them out of his sight. + +For he tore Israel from David’s house; and they made Jeroboam the son of Nebat king; and Jeroboam drove Israel from following Yahweh, and made them sin a great sin. + +The children of Israel walked in all the sins of Jeroboam which he did; they didn’t depart from them + +until Yahweh removed Israel out of his sight, as he said by all his servants the prophets. So Israel was carried away out of their own land to Assyria to this day. + +

+

The king of Assyria brought people from Babylon, from Cuthah, from Avva, and from Hamath and Sepharvaim, and placed them in the cities of Samaria instead of the children of Israel; and they possessed Samaria and lived in its cities. + +So it was, at the beginning of their dwelling there, that they didn’t fear Yahweh. Therefore Yahweh sent lions among them, which killed some of them. + +Therefore they spoke to the king of Assyria, saying, “The nations which you have carried away and placed in the cities of Samaria don’t know the law of the god of the land. Therefore he has sent lions among them; and behold, they kill them, because they don’t know the law of the god of the land.” + +

+

Then the king of Assyria commanded, saying, “Carry there one of the priests whom you brought from there; and let him17:27 +Hebrew: +them go and dwell there, and let him teach them the law of the god of the land.” + +

+

So one of the priests whom they had carried away from Samaria came and lived in Bethel, and taught them how they should fear Yahweh. + +

+

However 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 in which they lived. + +The men of Babylon made Succoth Benoth, and the men of Cuth made Nergal, and the men of Hamath made Ashima, + +and the Avvites made Nibhaz and Tartak; and the Sepharvites burned their children in the fire to Adrammelech and Anammelech, the gods of Sepharvaim. + +So they feared Yahweh, and also made from among themselves priests of the high places for themselves, who sacrificed for them in the houses of the high places. + +They feared Yahweh, and also served their own gods, after the ways of the nations from among whom they had been carried away. + +To this day they do what they did before. They don’t fear Yahweh, and they do not follow the statutes, or the ordinances, or the law, or the commandment which Yahweh commanded the children of Jacob, whom he named Israel; + +with whom Yahweh had made a covenant and commanded them, saying, “You shall not fear other gods, nor bow yourselves to them, nor serve them, nor sacrifice to them; + +but you shall fear Yahweh, who brought you up out of the land of Egypt with great power and with an outstretched arm, and you shall bow yourselves to him, and you shall sacrifice to him. + +The statutes and the ordinances, and the law and the commandment which he wrote for you, you shall observe to do forever more. You shall not fear other gods. + +You shall not forget the covenant that I have made with you. You shall not fear other gods. + +But you shall fear Yahweh your God, and he will deliver you out of the hand of all your enemies.” + +

+

However they didn’t listen, but they did what they did before. + +So these nations feared Yahweh, and also served their engraved images. Their children did likewise, and so did their children’s children. They do as their fathers did to this day. + +

+ + +

Now in the third year of Hoshea son of Elah king of Israel, Hezekiah the son of Ahaz king of Judah began to reign. + +He was twenty-five years old when he began to reign, and he reigned twenty-nine years in Jerusalem. His mother’s name was Abi the daughter of Zechariah. + +He did that which was right in Yahweh’s eyes, according to all that David his father had done. + +He removed the high places, broke the pillars, and cut down the Asherah. He also broke in pieces the bronze serpent that Moses had made, because in those days the children of Israel burned incense to it; and he called it Nehushtan. + +He trusted in Yahweh, the God of Israel, so that after him was no one like him among all the kings of Judah, nor among them that were before him. + +For he joined with Yahweh. He didn’t depart from following him, but kept his commandments, which Yahweh commanded Moses. + +Yahweh was with him. Wherever he went, he prospered. He rebelled against the king of Assyria, and didn’t serve him. + +He struck the Philistines to Gaza and its borders, from the tower of the watchmen to the fortified city. + +

+

In the fourth year of King Hezekiah, which was the seventh year of Hoshea son of Elah king of Israel, Shalmaneser king of Assyria came up against Samaria and besieged it. + +At the end of three years they took it. In the sixth year of Hezekiah, which was the ninth year of Hoshea king of Israel, Samaria was taken. + +The king of Assyria carried Israel away to Assyria, and put them in Halah, and on the Habor, the river of Gozan, and in the cities of the Medes, + +because they didn’t obey Yahweh their God’s voice, but transgressed his covenant, even all that Moses the servant of Yahweh commanded, and would not hear it or do it. + +

+

Now in the fourteenth year of King Hezekiah, Sennacherib king of Assyria came up against all the fortified cities of Judah and took them. + +Hezekiah king of Judah sent to the king of Assyria at Lachish, saying, “I have offended you. Withdraw from me. That which you put on me, I will bear.” The king of Assyria appointed to Hezekiah king of Judah three hundred talents of silver and thirty talents18:14 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of gold. + +Hezekiah gave him all the silver that was found in Yahweh’s house and in the treasures of the king’s house. + +At that time, Hezekiah cut off the gold from the doors of Yahweh’s temple, and from the pillars which Hezekiah king of Judah had overlaid, and gave it to the king of Assyria. + +

+

The king of Assyria sent Tartan, Rabsaris, and Rabshakeh from Lachish to King Hezekiah with a great army to Jerusalem. They went up and came to Jerusalem. When they had come up, they came and stood by the conduit of the upper pool, which is in the highway of the fuller’s field. + +When they had called to the king, Eliakim the son of Hilkiah, who was over the household, and Shebnah the scribe, and Joah the son of Asaph the recorder came out to them. + +Rabshakeh said to them, “Say now to Hezekiah, ‘The great king, the king of Assyria, says, “What confidence is this in which you trust? + +You say (but they are but vain words), ‘There is counsel and strength for war.’ Now on whom do you trust, that you have rebelled against me? + +Now, behold, you trust in the staff of this bruised reed, even in Egypt. If a man leans on it, it will go into his hand and pierce it. So is Pharaoh king of Egypt to all who trust on him. + +But if you tell me, ‘We trust in Yahweh our God,’ isn’t that he whose high places and whose altars Hezekiah has taken away, and has said to Judah and to Jerusalem, ‘You shall worship before this altar in Jerusalem’? + +Now therefore, please give pledges to my master the king of Assyria, and I will give you two thousand horses if you are able on your part to set riders on them. + +How then can you turn away the face of one captain of the least of my master’s servants, and put your trust on Egypt for chariots and for horsemen? + +Have I now come up without Yahweh against this place to destroy it? Yahweh said to me, ‘Go up against this land, and destroy it.’”’” + +

+

Then Eliakim the son of Hilkiah, Shebnah, and Joah, said to Rabshakeh, “Please speak to your servants in the Syrian language, for we understand it. Don’t speak with us in the Jews’ language, in the hearing of the people who are on the wall.” + +

+

But Rabshakeh said to them, “Has my master sent me to your master and to you, to speak these words? Hasn’t he sent me to the men who sit on the wall, to eat their own dung, and to drink their own urine with you?” + +

+

Then Rabshakeh stood and cried with a loud voice in the Jews’ language, and spoke, saying, “Hear the word of the great king, the king of Assyria. + +The king says, ‘Don’t let Hezekiah deceive you, for he will not be able to deliver you out of his hand. + +Don’t let Hezekiah make you trust in Yahweh, saying, “Yahweh will surely deliver us, and this city shall not be given into the hand of the king of Assyria.” + +Don’t listen to Hezekiah.’ For the king of Assyria says, ‘Make your peace with me, and come out to me; and everyone of you eat from his own vine, and everyone from his own fig tree, and everyone drink water from his own cistern; + +until I come and take you away to a land like your own land, a land of grain and new wine, a land of bread and vineyards, a land of olive trees and of honey, that you may live and not die. Don’t listen to Hezekiah when he persuades you, saying, “Yahweh will deliver us.” + +Has any of the gods of the nations ever delivered his land out of the hand of the king of Assyria? + +Where are the gods of Hamath and of Arpad? Where are the gods of Sepharvaim, of Hena, and Ivvah? Have they delivered Samaria out of my hand? + +Who are they among all the gods of the countries, that have delivered their country out of my hand, that Yahweh should deliver Jerusalem out of my hand?’” + +

+

But the people stayed quiet, and answered him not a word; for the king’s commandment was, “Don’t answer him.” + +Then Eliakim the son of Hilkiah, who was over the household, came with Shebna the scribe and Joah the son of Asaph the recorder to Hezekiah with their clothes torn, and told him Rabshakeh’s words. + +

+ + +

When King Hezekiah heard it, he tore his clothes, covered himself with sackcloth, and went into Yahweh’s house. + +He sent Eliakim, who was over the household, Shebna the scribe, and the elders of the priests, covered with sackcloth, to Isaiah the prophet the son of Amoz. + +They said to him, “Hezekiah says, ‘Today is a day of trouble, of rebuke, and of rejection; for the children have come to the point of birth, and there is no strength to deliver them. + +It may be Yahweh your God will hear all the words of Rabshakeh, whom the king of Assyria his master has sent to defy the living God, and will rebuke the words which Yahweh your God has heard. Therefore lift up your prayer for the remnant that is left.’” + +

+

So the servants of King Hezekiah came to Isaiah. + +Isaiah said to them, “Tell your master this: ‘Yahweh says, “Don’t be afraid of the words that you have heard, with which the servants of the king of Assyria have blasphemed me. + +Behold, I will put a spirit in him, and he will hear news, and will return to his own land. I will cause him to fall by the sword in his own land.”’” + +

+

So Rabshakeh returned and found the king of Assyria warring against Libnah; for he had heard that he had departed from Lachish. + +When he heard it said of Tirhakah king of Ethiopia, “Behold, he has come out to fight against you,” he sent messengers again to Hezekiah, saying, + +“Tell Hezekiah king of Judah this: ‘Don’t let your God in whom you trust deceive you, saying, Jerusalem will not be given into the hand of the king of Assyria. + +Behold, you have heard what the kings of Assyria have done to all lands, by destroying them utterly. Will you be delivered? + +Have the gods of the nations delivered them, which my fathers have destroyedGozan, Haran, Rezeph, and the children of Eden who were in Telassar? + +Where is the king of Hamath, the king of Arpad, and the king of the city of Sepharvaim, of Hena, and Ivvah?’” + +

+

Hezekiah received the letter from the hand of the messengers and read it. Then Hezekiah went up to Yahweh’s house, and spread it before Yahweh. + +Hezekiah prayed before Yahweh, and said, “Yahweh, the God of Israel, enthroned above the cherubim, you are the God, even you alone, of all the kingdoms of the earth. You have made heaven and earth. + +Incline your ear, Yahweh, and hear. Open your eyes, Yahweh, and see. Hear the words of Sennacherib, which he has sent to defy the living God. + +Truly, Yahweh, the kings of Assyria have laid waste the nations and their lands, + +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. + +Now therefore, Yahweh our God, save us, I beg you, out of his hand, that all the kingdoms of the earth may know that you, Yahweh, are God alone.” + +

+

Then Isaiah the son of Amoz sent to Hezekiah, saying, “Yahweh, the God of Israel, saysYou have prayed to me against Sennacherib king of Assyria, and I have heard you. + +This is the word that Yahweh has spoken concerning him: ‘The virgin daughter of Zion has despised you and ridiculed you. The daughter of Jerusalem has shaken her head at you. + +Whom have you defied and blasphemed? Against whom have you exalted your voice and lifted up your eyes on high? Against the Holy One of Israel! + +By your messengers, you have defied the Lord, and have said, “With the multitude of my chariots, I have come up to the height of the mountains, to the innermost parts of Lebanon, and I will cut down its tall cedars and its choice cypress trees; and I will enter into his farthest lodging place, the forest of his fruitful field. + +I have dug and drunk strange waters, and I will dry up all the rivers of Egypt with the sole of my feet.” + +Haven’t you heard how I have done it long ago, and formed it of ancient times? Now I have brought it to pass, that it should be yours to lay waste fortified cities into ruinous heaps. + +Therefore their inhabitants had little power. They were dismayed and confounded. They were like the grass of the field and like the green herb, like the grass on the housetops and like grain blasted before it has grown up. + +But I know your sitting down, your going out, your coming in, and your raging against me. + +Because of your raging against me, and because your arrogance has come up into my ears, therefore I will put my hook in your nose, and my bridle in your lips, and I will turn you back by the way by which you came.’ + +

+

This will be the sign to you: This year, you will eat that which grows of itself, and in the second year that which springs from that; and in the third year sow and reap, and plant vineyards and eat their fruit. + +The remnant that has escaped of the house of Judah will again take root downward, and bear fruit upward. + +For out of Jerusalem a remnant will go out, and out of Mount Zion those who shall escape. Yahweh’s zeal will perform this. + +

+

Therefore Yahweh says concerning the king of Assyria, ‘He will not come to this city, nor shoot an arrow there. He will not come before it with shield, nor cast up a mound against it. + +He will return the same way that he came, and he will not come to this city,’ says Yahweh. + +For I will defend this city to save it, for my own sake and for my servant David’s sake.’” + +

+

That night, Yahweh’s angel went out and struck one hundred eighty-five thousand in the camp of the Assyrians. When men arose early in the morning, behold, these were all dead bodies. + +So Sennacherib king of Assyria departed, went home, and lived at Nineveh. + +As he was worshiping in the house of Nisroch his god, Adrammelech and Sharezer struck him with the sword; and they escaped into the land of Ararat. Esar Haddon his son reigned in his place. + +

+ + +

In those days Hezekiah was sick and dying. Isaiah the prophet the son of Amoz came to him, and said to him, “Yahweh says, ‘Set your house in order; for you will die, and not live.’” + +

+

Then he turned his face to the wall, and prayed to Yahweh, saying, + +Remember now, Yahweh, I beg you, how I have walked before you in truth and with a perfect heart, and have done that which is good in your sight.” And Hezekiah wept bitterly. + +

+

Before Isaiah had gone out into the middle part of the city, Yahweh’s word came to him, saying, + +Turn back, and tell Hezekiah the prince of my people, ‘Yahweh, the God of David your father, says, “I have heard your prayer. I have seen your tears. Behold, I will heal you. On the third day, you will go up to Yahweh’s house. + +I will add to your days fifteen years. I will deliver you and this city out of the hand of the king of Assyria. I will defend this city for my own sake, and for my servant David’s sake.”’” + +

+

Isaiah said, “Take a cake of figs.” +

+

They took and laid it on the boil, and he recovered. + +

+

Hezekiah said to Isaiah, “What will be the sign that Yahweh will heal me, and that I will go up to Yahweh’s house the third day?” + +

+

Isaiah said, “This will be the sign to you from Yahweh, that Yahweh will do the thing that he has spoken: should the shadow go forward ten steps, or go back ten steps?” + +

+

Hezekiah answered, “It is a light thing for the shadow to go forward ten steps. No, but let the shadow return backward ten steps.” + +

+

Isaiah the prophet cried to Yahweh; and he brought the shadow ten steps backward, by which it had gone down on the sundial of Ahaz. + +

+

At that time Berodach Baladan the son of Baladan, king of Babylon, sent letters and a present to Hezekiah, for he had heard that Hezekiah had been sick. + +Hezekiah listened to them, and showed them all the storehouse of his precious thingsthe silver, the gold, the spices, and the precious oil, and the house of his armor, and all that was found in his treasures. There was nothing in his house, or in all his dominion, that Hezekiah didn’t show them. + +

+

Then Isaiah the prophet came to King Hezekiah, and said to him, “What did these men say? From where did they come to you?” +

+

Hezekiah said, “They have come from a far country, even from Babylon.” + +

+

He said, “What have they seen in your house?” +

+

Hezekiah answered, “They have seen all that is in my house. There is nothing among my treasures that I have not shown them.” + +

+

Isaiah said to Hezekiah, “Hear Yahweh’s word. + +Behold, the days come that all that is in your house, and that which your fathers have laid up in store to this day, will be carried to Babylon. Nothing will be left,’ says Yahweh. + +They will take away some of your sons who will issue from you, whom you will father; and they will be eunuchs in the palace of the king of Babylon.’” + +

+

Then Hezekiah said to Isaiah, “Yahweh’s word which you have spoken is good.” He said moreover, “Isn’t it so, if peace and truth will be in my days?” + +

+

Now the rest of the acts of Hezekiah, and all his might, and how he made the pool, and the conduit, and brought water into the city, aren’t they written in the book of the chronicles of the kings of Judah? + +Hezekiah slept with his fathers, and Manasseh his son reigned in his place. + +

+ + +

Manasseh was twelve years old when he began to reign, and he reigned fifty-five years in Jerusalem. His mother’s name was Hephzibah. + +He did that which was evil in Yahweh’s sight, after the abominations of the nations whom Yahweh cast out before the children of Israel. + +For he built again the high places which Hezekiah his father had destroyed; and he raised up altars for Baal, and made an Asherah, as Ahab king of Israel did, and worshiped all the army of the sky, and served them. + +He built altars in Yahweh’s house, of which Yahweh said, “I will put my name in Jerusalem.” + +He built altars for all the army of the sky in the two courts of Yahweh’s house. + +He made his son to pass through the fire, practiced sorcery, used enchantments, and dealt with those who had familiar spirits and with wizards. He did much evil in Yahweh’s sight, to provoke him to anger. + +He set the engraved image of Asherah that he had made in the house of which Yahweh said to David and to Solomon his son, “In this house, and in Jerusalem, which I have chosen out of all the tribes of Israel, I will put my name forever; + +I will not cause the feet of Israel to wander any more out of the land which I gave their fathers, if only 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.” + +But they didn’t listen, and Manasseh seduced them to do that which is evil more than the nations did whom Yahweh destroyed before the children of Israel. + +

+

Yahweh spoke by his servants the prophets, saying, + +Because Manasseh king of Judah has done these abominations, and has done wickedly above all that the Amorites did, who were before him, and has also made Judah to sin with his idols; + +therefore Yahweh the God of Israel says, ‘Behold, I will bring such evil on Jerusalem and Judah that whoever hears of it, both his ears will tingle. + +I will stretch over Jerusalem the line of Samaria, and the plumb line of Ahab’s house; and I will wipe Jerusalem as a man wipes a dish, wiping it and turning it upside down. + +I will cast off the remnant of my inheritance and deliver them into the hands of their enemies. They will become a prey and a plunder to all their enemies, + +because they have done that which is evil in my sight, and have provoked me to anger since the day their fathers came out of Egypt, even to this day.’” + +

+

Moreover Manasseh shed innocent blood very much, until he had filled Jerusalem from one end to another; in addition to his sin with which he made Judah to sin, in doing that which was evil in Yahweh’s sight. + +

+

Now the rest of the acts of Manasseh, and all that he did, and his sin that he sinned, aren’t they written in the book of the chronicles of the kings of Judah? + +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 place. + +

+

Amon was twenty-two years old when he began to reign; and he reigned two years in Jerusalem. His mother’s name was Meshullemeth the daughter of Haruz of Jotbah. + +He did that which was evil in Yahweh’s sight, as Manasseh his father did. + +He walked in all the ways that his father walked in, and served the idols that his father served, and worshiped them; + +and he abandoned Yahweh, the God of his fathers, and didn’t walk in the way of Yahweh. + +The servants of Amon conspired against him, and put the king to death in his own house. + +But the people of the land killed all those who had conspired against King Amon; and the people of the land made Josiah his son king in his place. + +Now the rest of the acts of Amon which he did, aren’t they written in the book of the chronicles of the kings of Judah? + +He was buried in his tomb in the garden of Uzza, and Josiah his son reigned in his place. + +

+ + +

Josiah was eight years old when he began to reign, and he reigned thirty-one years in Jerusalem. His mother’s name was Jedidah the daughter of Adaiah of Bozkath. + +He did that which was right in Yahweh’s eyes, and walked in all the ways of David his father, and didn’t turn away to the right hand or to the left. + +

+

In the eighteenth year of King Josiah, the king sent Shaphan, the son of Azaliah the son of Meshullam, the scribe, to Yahweh’s house, saying, + +Go up to Hilkiah the high priest, that he may count the money which is brought into Yahweh’s house, which the keepers of the threshold have gathered of the people. + +Let them deliver it into the hand of the workers who have the oversight of Yahweh’s house; and let them give it to the workers who are in Yahweh’s house, to repair the damage to the house, + +to the carpenters, and to the builders, and to the masons, and for buying timber and cut stone to repair the house. + +However, no accounting shall be asked of them for the money delivered into their hand, for they deal faithfully.” + +

+

Hilkiah the high priest said to Shaphan the scribe, “I have found the book of the law in Yahweh’s house.” Hilkiah delivered the book to Shaphan, and he read it. + +Shaphan the scribe came to the king, and brought the king word again, and said, “Your servants have emptied out the money that was found in the house, and have delivered it into the hands of the workmen who have the oversight of Yahweh’s house.” + +Shaphan the scribe told the king, saying, “Hilkiah the priest has delivered a book to me.” Then Shaphan read it before the king. + +

+

When the king had heard the words of the book of the law, he tore his clothes. + +The king commanded Hilkiah the priest, Ahikam the son of Shaphan, Achbor the son of Micaiah, Shaphan the scribe, and Asaiah the king’s servant, saying, + +Go inquire of Yahweh for me, and for the people, and for all Judah, concerning the words of this book that is found; for great is Yahweh’s wrath that is kindled against us, because our fathers have not listened to the words of this book, to do according to all that which is written concerning us.” + +

+

So Hilkiah the priest, Ahikam, Achbor, Shaphan, and Asaiah went to Huldah the prophetess, the wife of Shallum the son of Tikvah, the son of Harhas, keeper of the wardrobe (now she lived in Jerusalem in the second quarter); and they talked with her. + +She said to them, “Yahweh the God of Israel says, ‘Tell the man who sent you to me, + +Yahweh says, ‘Behold, I will bring evil on this place and on its inhabitants, even all the words of the book which the king of Judah has read. + +Because they have forsaken me and have burned incense to other gods, that they might provoke me to anger with all the work of their hands, therefore my wrath shall be kindled against this place, and it will not be quenched.’” + +But to the king of Judah, who sent you to inquire of Yahweh, tell him, “Yahweh the God of Israel says, ‘Concerning the words which you have heard, + +because your heart was tender, and you humbled yourself before Yahweh when you heard what I spoke against this place and against its inhabitants, that they should become a desolation and a curse, and have torn your clothes and wept before me, I also have heard you,’ says Yahweh. + +Therefore behold, I will gather you to your fathers, and you will be gathered to your grave in peace. Your eyes will not see all the evil which I will bring on this place.’”’” So they brought this message back to the king. + +

+ + +

The king sent, and they gathered to him all the elders of Judah and of Jerusalem. + +The king went up to Yahweh’s house, and all the men of Judah and all the inhabitants of Jerusalem with himwith the priests, the prophets, and all the people, both small and great; and he read in their hearing all the words of the book of the covenant which was found in Yahweh’s house. + +The king stood by the pillar and made a covenant before Yahweh to walk after Yahweh and to keep his commandments, his testimonies, and his statutes with all his heart and all his soul, to confirm the words of this covenant that were written in this book; and all the people agreed to the covenant. + +

+

The king commanded Hilkiah the high priest, and the priests of the second order, and the keepers of the threshold, to bring out of Yahweh’s temple all the vessels that were made for Baal, for the Asherah, and for all the army of the sky; and he burned them outside of Jerusalem in the fields of the Kidron, and carried their ashes to Bethel. + +He got rid of 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 around Jerusalem; those also who burned incense to Baal, to the sun, to the moon, to the planets, and to all the army of the sky. + +He brought out the Asherah from Yahweh’s house, outside of Jerusalem, to the brook Kidron, and burned it at the brook Kidron, and beat it to dust, and cast its dust on the graves of the common people. + +He broke down the houses of the male shrine prostitutes that were in Yahweh’s house, where the women wove hangings for the Asherah. + +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 he broke down the high places of the gates that were at the entrance of the gate of Joshua the governor of the city, which were on a man’s left hand at the gate of the city. + +Nevertheless the priests of the high places didn’t come up to Yahweh’s altar in Jerusalem, but they ate unleavened bread among their brothers. + +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. + +He took away the horses that the kings of Judah had dedicated to the sun, at the entrance of Yahweh’s house, by the room of Nathan Melech the officer who was in the court; and he burned the chariots of the sun with fire. + +The king broke down the altars that were on the roof of the upper room of Ahaz, which the kings of Judah had made, and the altars which Manasseh had made in the two courts of Yahweh’s house, and beat them down from there, and cast their dust into the brook Kidron. + +The king defiled the high places that were before Jerusalem, which were on the right hand of the mountain of corruption, which Solomon the king of Israel had built for Ashtoreth the abomination of the Sidonians, and for Chemosh the abomination of Moab, and for Milcom the abomination of the children of Ammon. + +He broke in pieces the pillars, cut down the Asherah poles, and filled their places with men’s bones. + +

+

Moreover the altar that was at Bethel and the high place which Jeroboam the son of Nebat, who made Israel to sin, had made, even that altar and the high place he broke down; and he burned the high place and beat it to dust, and burned the Asherah. + +As Josiah turned himself, he spied the tombs that were there in the mountain; and he sent, and took the bones out of the tombs, and burned them on the altar, and defiled it, according to Yahweh’s word which the man of God proclaimed, who proclaimed these things. + +Then he said, “What monument is that which I see?” +

+

The men of the city told him, “It is the tomb of the man of God who came from Judah and proclaimed these things that you have done against the altar of Bethel.” + +

+

He said, “Let him be! Let no one move his bones.” So they let his bones alone, with the bones of the prophet who came out of Samaria. + +All the houses also of the high places that were in the cities of Samaria, which the kings of Israel had made to provoke Yahweh to anger, Josiah took away, and did to them according to all the acts that he had done in Bethel. + +He killed all the priests of the high places that were there, on the altars, and burned men’s bones on them; and he returned to Jerusalem. + +

+

The king commanded all the people, saying, “Keep the Passover to Yahweh your God, as it is written in this book of the covenant.” + +Surely there was not kept such a Passover from the days of the judges who judged Israel, nor in all the days of the kings of Israel, nor of the kings of Judah; + +but in the eighteenth year of King Josiah, this Passover was kept to Yahweh in Jerusalem. + +

+

Moreover, Josiah removed those who had familiar spirits, the wizards, and the teraphim,23:24 +teraphim were household idols. and the idols, and all the abominations that were seen in the land of Judah and in Jerusalem, that he might confirm the words of the law which were written in the book that Hilkiah the priest found in Yahweh’s house. + +There was no king like him before him, who turned to Yahweh with all his heart, and with all his soul, and with all his might, according to all the law of Moses; and there was none like him who arose after him. + +Notwithstanding, Yahweh didn’t turn from the fierceness of his great wrath, with which his anger burned against Judah, because of all the provocation with which Manasseh had provoked him. + +Yahweh said, “I will also remove Judah out of my sight, as I have removed Israel; and I will cast off this city which I have chosen, even Jerusalem, and the house of which I said, ‘My name shall be there.’” + +

+

Now the rest of the acts of Josiah, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? + +In his days Pharaoh Necoh king of Egypt went up against the king of Assyria to the river Euphrates; and King Josiah went against him, but Pharaoh Necoh killed him at Megiddo when he saw him. + +His servants carried him dead in a chariot from Megiddo, brought him to Jerusalem, and buried him in his own tomb. The people of the land took Jehoahaz the son of Josiah, and anointed him, and made him king in his father’s place. + +

+

Jehoahaz was twenty-three years old when he began to reign; and he reigned three months in Jerusalem. His mother’s name was Hamutal the daughter of Jeremiah of Libnah. + +He did that which was evil in Yahweh’s sight, according to all that his fathers had done. + +Pharaoh Necoh put him in bonds at Riblah in the land of Hamath, that he might not reign in Jerusalem; and put the land to a tribute of one hundred talents of silver and a talent23:33 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of gold. + +Pharaoh Necoh made Eliakim the son of Josiah king in the place of Josiah his father, and changed his name to Jehoiakim; but he took Jehoahaz away, and he came to Egypt and died there. + +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, from everyone according to his assessment, to give it to Pharaoh Necoh. + +Jehoiakim was twenty-five years old when he began to reign, and he reigned eleven years in Jerusalem. His mother’s name was Zebidah the daughter of Pedaiah of Rumah. + +He did that which was evil in Yahweh’s sight, according to all that his fathers had done. + +

+ + +

In his days Nebuchadnezzar king of Babylon came up, and Jehoiakim became his servant for three years. Then he turned and rebelled against him. + +Yahweh sent against him bands of the Chaldeans, bands of the Syrians, bands of the Moabites, and bands of the children of Ammon, and sent them against Judah to destroy it, according to Yahweh’s word which he spoke by his servants the prophets. + +Surely at the commandment of Yahweh this came on Judah, to remove them out of his sight for the sins of Manasseh, according to all that he did, + +and also for the innocent blood that he shed; for he filled Jerusalem with innocent blood, and Yahweh would not pardon. + +Now the rest of the acts of Jehoiakim, and all that he did, aren’t they written in the book of the chronicles of the kings of Judah? + +So Jehoiakim slept with his fathers, and Jehoiachin his son reigned in his place. + +

+

The king of Egypt didn’t come out of his land any more; for the king of Babylon had taken, from the brook of Egypt to the river Euphrates, all that belonged to the king of Egypt. + +

+

Jehoiachin was eighteen years old when he began to reign, and he reigned in Jerusalem three months. His mother’s name was Nehushta the daughter of Elnathan of Jerusalem. + +He did that which was evil in Yahweh’s sight, according to all that his father had done. + +At that time the servants of Nebuchadnezzar king of Babylon came up to Jerusalem, and the city was besieged. + +Nebuchadnezzar king of Babylon came to the city while his servants were besieging it, + +and Jehoiachin the king of Judah went out to the king of Babylon—he, his mother, his servants, his princes, and his officers; and the king of Babylon captured him in the eighth year of his reign. + +He carried out from there all the treasures of Yahweh’s house 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 Yahweh’s temple, as Yahweh had said. + +He carried away all Jerusalem, and all the princes, and all the mighty men of valor, even ten thousand captives, and all the craftsmen and the smiths. No one remained except the poorest people of the land. + +He carried away Jehoiachin to Babylon, with the king’s mother, the king’s wives, his officers, and the chief men of the land. He carried them into captivity from Jerusalem to Babylon. + +All the men of might, even seven thousand, and the craftsmen and the smiths one thousand, all of them strong and fit for war, even them the king of Babylon brought captive to Babylon. + +The king of Babylon made Mattaniah, Jehoiachin’s father’s brother, king in his place, and changed his name to Zedekiah. + +

+

Zedekiah was twenty-one years old when he began to reign, and he reigned eleven years in Jerusalem. His mother’s name was Hamutal the daughter of Jeremiah of Libnah. + +He did that which was evil in Yahweh’s sight, according to all that Jehoiakim had done. + +For through the anger of Yahweh, this happened in Jerusalem and Judah, until he had cast them out from his presence. +

+

Then Zedekiah rebelled against the king of Babylon. + +

+ + +

In the ninth year of his reign, in the tenth month, in the tenth day of the month, Nebuchadnezzar king of Babylon came, he and all his army, against Jerusalem, and encamped against it; and they built forts against it around it. + +So the city was besieged until the eleventh year of King Zedekiah. + +On the ninth day of the fourth month, the famine was severe in the city, so that there was no bread for the people of the land. + +Then a breach was made in the city, and all the men of war fled by night by the way of the gate between the two walls, which was by the king’s garden (now the Chaldeans were against the city around it); and the king went by the way of the Arabah. + +But the Chaldean army pursued the king, and overtook him in the plains of Jericho; and all his army was scattered from him. + +Then they captured the king and carried him up to the king of Babylon to Riblah; and they passed judgment on him. + +They killed Zedekiah’s sons before his eyes, then put out Zedekiah’s eyes, bound him in fetters, and carried him to Babylon. + +

+

Now in the fifth month, on the seventh day of the month, which was the nineteenth year of King Nebuchadnezzar king of Babylon, Nebuzaradan the captain of the guard, a servant of the king of Babylon, came to Jerusalem. + +He burned Yahweh’s house, the king’s house, and all the houses of Jerusalem. He burned every great house with fire. + +All the army of the Chaldeans, who were with the captain of the guard, broke down the walls around Jerusalem. + +Nebuzaradan the captain of the guard carried away captive the rest of the people who were left in the city and those who had deserted to the king of Babylon—all the rest of the multitude. + +But the captain of the guard left some of the poorest of the land to work the vineyards and fields. + +

+

The Chaldeans broke up the pillars of bronze that were in Yahweh’s house and the bases and the bronze sea that were in Yahweh’s house, and carried the bronze pieces to Babylon. + +They took away the pots, the shovels, the snuffers, the spoons, and all the vessels of bronze with which they ministered. + +The captain of the guard took away the fire pans, the basins, that which was of gold, for gold, and that which was of silver, for silver. + +The two pillars, the one sea, and the bases, which Solomon had made for Yahweh’s house, the bronze of all these vessels was not weighed. + +The height of the one pillar was eighteen cubits,25:17 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and a capital of bronze was on it. The height of the capital was three cubits, with network and pomegranates on the capital around it, all of bronze; and the second pillar with its network was like these. + +

+

The captain of the guard took Seraiah the chief priest, Zephaniah the second priest, and the three keepers of the threshold; + +and out of the city he took an officer who was set over the men of war; and five men of those who saw the king’s face, who were found in the city; and the scribe, the captain of the army, who mustered the people of the land, and sixty men of the people of the land who were found in the city. + +Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon to Riblah. + +The king of Babylon attacked them and put them to death at Riblah in the land of Hamath. So Judah was carried away captive out of his land. + +

+

As for the people who were left 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, governor. + +Now when all the captains of the forces, they and their men, heard that the king of Babylon had made Gedaliah governor, they came to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, Johanan the son of Kareah, Seraiah the son of Tanhumeth the Netophathite, and Jaazaniah the son of the Maacathite, they and their men. + +Gedaliah swore to them and to their men, and said to them, “Don’t be afraid because of the servants of the Chaldeans. Dwell in the land and serve the king of Babylon, and it will be well with you.” + +

+

But in the seventh month, Ishmael the son of Nethaniah, the son of Elishama, of the royal offspring came, and ten men with him, and struck Gedaliah so that he died, with the Jews and the Chaldeans that were with him at Mizpah. + +All the people, both small and great, and the captains of the forces arose and came to Egypt; for they were afraid of the Chaldeans. + +In the thirty-seventh year of the captivity of Jehoiachin king of Judah, in the twelfth month, on the twenty-seventh day of the month, Evilmerodach king of Babylon, in the year that he began to reign, released Jehoiachin king of Judah out of prison, + +and he spoke kindly to him and set his throne above the throne of the kings who were with him in Babylon, + +and changed his prison garments. Jehoiachin ate bread before him continually all the days of his life; + +and for his allowance, there was a continual allowance given him from the king, every day a portion, all the days of his life. + +

+
+World English Bible (WEB) +1 Chronicles +The First Book of Chronicles +1 Chronicles +1Ch +

The First Book of Chronicles +

+ + +

Adam, Seth, Enosh, + +Kenan, Mahalalel, Jared, + +Enoch, Methuselah, Lamech, + +Noah, Shem, Ham, and Japheth. + +

+

The sons of Japheth: Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras. + +The sons of Gomer: Ashkenaz, Diphath, and Togarmah. + +The sons of Javan: Elishah, Tarshish, Kittim, and Rodanim. + +

+

The sons of Ham: Cush, Mizraim, Put, and Canaan. + +The sons of Cush: Seba, Havilah, Sabta, Raama, Sabteca. The sons of Raamah: Sheba and Dedan. + +Cush became the father of Nimrod. He began to be a mighty one on the earth. + +Mizraim became the father of Ludim, Anamim, Lehabim, Naphtuhim, + +Pathrusim, Casluhim (where the Philistines came from), and Caphtorim. + +Canaan became the father of Sidon his firstborn, Heth, + +the Jebusite, the Amorite, the Girgashite, + +the Hivite, the Arkite, the Sinite, + +the Arvadite, the Zemarite, and the Hamathite. + +

+

The sons of Shem: Elam, Asshur, Arpachshad, Lud, Aram, Uz, Hul, Gether, and Meshech. + +Arpachshad became the father of Shelah, and Shelah became the father of Eber. + +To Eber were born two sons: the name of the one was Peleg, for in his days the earth was divided; and his brother’s name was Joktan. + +Joktan became the father of Almodad, Sheleph, Hazarmaveth, Jerah, + +Hadoram, Uzal, Diklah, + +Ebal, Abimael, Sheba, + +Ophir, Havilah, and Jobab. All these were the sons of Joktan. + +Shem, Arpachshad, Shelah, + +Eber, Peleg, Reu, + +Serug, Nahor, Terah, + +Abram (also called Abraham). + +

+

The sons of Abraham: Isaac and Ishmael. + +These are their generations: the firstborn of Ishmael, Nebaioth; then Kedar, Adbeel, Mibsam, + +Mishma, Dumah, Massa, Hadad, Tema, + +Jetur, Naphish, and Kedemah. These are the sons of Ishmael. + +

+

The sons of Keturah, Abraham’s concubine: she bore Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah. The sons of Jokshan: Sheba and Dedan. + +The sons of Midian: Ephah, Epher, Hanoch, Abida, and Eldaah. All these were the sons of Keturah. + +

+

Abraham became the father of Isaac. The sons of Isaac: Esau and Israel. + +The sons of Esau: Eliphaz, Reuel, Jeush, Jalam, and Korah. + +The sons of Eliphaz: Teman, Omar, Zephi, Gatam, Kenaz, Timna, and Amalek. + +The sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. + +

+

The sons of Seir: Lotan, Shobal, Zibeon, Anah, Dishon, Ezer, and Dishan. + +The sons of Lotan: Hori and Homam; and Timna was Lotan’s sister. + +The sons of Shobal: Alian, Manahath, Ebal, Shephi, and Onam. The sons of Zibeon: Aiah and Anah. + +The son of Anah: Dishon. The sons of Dishon: Hamran, Eshban, Ithran, and Cheran. + +The sons of Ezer: Bilhan, Zaavan, and Jaakan. The sons of Dishan: Uz and Aran. + +

+

Now these are the kings who 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. + +Bela died, and Jobab the son of Zerah of Bozrah reigned in his place. + +Jobab died, and Husham of the land of the Temanites reigned in his place. + +Husham died, and Hadad the son of Bedad, who struck Midian in the field of Moab, reigned in his place; and the name of his city was Avith. + +Hadad died, and Samlah of Masrekah reigned in his place. + +Samlah died, and Shaul of Rehoboth by the River reigned in his place. + +Shaul died, and Baal Hanan the son of Achbor reigned in his place. + +Baal Hanan died, and Hadad reigned in his place; and the name of his city was Pai. His wife’s name was Mehetabel, the daughter of Matred, the daughter of Mezahab. + +Then Hadad died. The chiefs of Edom were: chief Timna, chief Aliah, chief Jetheth, + +chief Oholibamah, chief Elah, chief Pinon, + +chief Kenaz, chief Teman, chief Mibzar, + +chief Magdiel, and chief Iram. These are the chiefs of Edom. + +

+ + +

These are the sons of Israel: Reuben, Simeon, Levi, Judah, Issachar, Zebulun, + +Dan, Joseph, Benjamin, Naphtali, Gad, and Asher. + +

+

The sons of Judah: Er, Onan, and Shelah, which three were born to him of Shua’s daughter the Canaanitess. Er, Judah’s firstborn, was wicked in Yahweh’s2:3 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. sight; and he killed him. + +Tamar his daughter-in-law bore him Perez and Zerah. All the sons of Judah were five. + +

+

The sons of Perez: Hezron and Hamul. + +The sons of Zerah: Zimri, Ethan, Heman, Calcol, and Darafive of them in all. + +The son of Carmi: Achar, the troubler of Israel, who committed a trespass in the devoted thing. + +The son of Ethan: Azariah. + +

+

The sons also of Hezron, who were born to him: Jerahmeel, Ram, and Chelubai. + +Ram became the father of Amminadab, and Amminadab became the father of Nahshon, prince of the children of Judah; + +and Nahshon became the father of Salma, and Salma became the father of Boaz, + +and Boaz became the father of Obed, and Obed became the father of Jesse; + +and Jesse became the father of his firstborn Eliab, Abinadab the second, Shimea the third, + +Nethanel the fourth, Raddai the fifth, + +Ozem the sixth, and David the seventh; + +and their sisters were Zeruiah and Abigail. The sons of Zeruiah: Abishai, Joab, and Asahel, three. + +Abigail bore Amasa; and the father of Amasa was Jether the Ishmaelite. + +

+

Caleb the son of Hezron became the father of children by Azubah his wife, and by Jerioth; and these were her sons: Jesher, Shobab, and Ardon. + +Azubah died, and Caleb married Ephrath, who bore him Hur. + +Hur became the father of Uri, and Uri became the father of Bezalel. + +

+

Afterward Hezron went in to the daughter of Machir the father of Gilead, whom he took as wife when he was sixty years old; and she bore him Segub. + +Segub became the father of Jair, who had twenty-three cities in the land of Gilead. + +Geshur and Aram took the towns of Jair from them, with Kenath, and its villages, even sixty cities. All these were the sons of Machir the father of Gilead. + +After Hezron died in Caleb Ephrathah, Abijah, Hezron’s wife, bore him Ashhur the father of Tekoa. + +

+

The sons of Jerahmeel the firstborn of Hezron were Ram the firstborn, Bunah, Oren, Ozem, and Ahijah. + +Jerahmeel had another wife, whose name was Atarah. She was the mother of Onam. + +The sons of Ram the firstborn of Jerahmeel were Maaz, Jamin, and Eker. + +The sons of Onam were Shammai and Jada. The sons of Shammai: Nadab and Abishur. + +The name of the wife of Abishur was Abihail; and she bore him Ahban and Molid. + +The sons of Nadab: Seled and Appaim; but Seled died without children. + +The son of Appaim: Ishi. The son of Ishi: Sheshan. The son of Sheshan: Ahlai. + +The sons of Jada the brother of Shammai: Jether and Jonathan; and Jether died without children. + +The sons of Jonathan: Peleth and Zaza. These were the sons of Jerahmeel. + +Now Sheshan had no sons, but only daughters. Sheshan had a servant, an Egyptian, whose name was Jarha. + +Sheshan gave his daughter to Jarha his servant as wife; and she bore him Attai. + +Attai became the father of Nathan, and Nathan became the father of Zabad, + +and Zabad became the father of Ephlal, and Ephlal became the father of Obed, + +and Obed became the father of Jehu, and Jehu became the father of Azariah, + +and Azariah became the father of Helez, and Helez became the father of Eleasah, + +and Eleasah became the father of Sismai, and Sismai became the father of Shallum, + +and Shallum became the father of Jekamiah, and Jekamiah became the father of Elishama. + +

+

The sons of Caleb the brother of Jerahmeel were Mesha his firstborn, who was the father of Ziph, and the sons of Mareshah the father of Hebron. + +The sons of Hebron: Korah, Tappuah, Rekem, and Shema. + +Shema became the father of Raham, the father of Jorkeam; and Rekem became the father of Shammai. + +The son of Shammai was Maon; and Maon was the father of Beth Zur. + +Ephah, Caleb’s concubine, bore Haran, Moza, and Gazez; and Haran became the father of Gazez. + +The sons of Jahdai: Regem, Jothan, Geshan, Pelet, Ephah, and Shaaph. + +Maacah, Caleb’s concubine, bore Sheber and Tirhanah. + +She bore also Shaaph the father of Madmannah, Sheva the father of Machbena and the father of Gibea; and the daughter of Caleb was Achsah. + +

+

These were the sons of Caleb, the son of Hur, the firstborn of Ephrathah: Shobal the father of Kiriath Jearim, + +Salma the father of Bethlehem, and Hareph the father of Beth Gader. + +Shobal the father of Kiriath Jearim had sons: Haroeh, half of the Menuhoth. + +The families of Kiriath Jearim: the Ithrites, the Puthites, the Shumathites, and the Mishraites; from them came the Zorathites and the Eshtaolites. + +The sons of Salma: Bethlehem, the Netophathites, Atroth Beth Joab, and half of the Manahathites, the Zorites. + +The families of scribes who lived at Jabez: the Tirathites, the Shimeathites, and the Sucathites. These are the Kenites who came from Hammath, the father of the house of Rechab. + +

+ + +

Now these were the sons of David, who were born to him in Hebron: the firstborn, Amnon, of Ahinoam the Jezreelitess; the second, Daniel, of Abigail the Carmelitess; + +the third, Absalom the son of Maacah the daughter of Talmai king of Geshur; the fourth, Adonijah the son of Haggith; + +the fifth, Shephatiah of Abital; the sixth, Ithream by Eglah his wife: + +six were born to him in Hebron; and he reigned there seven years and six months. He reigned thirty-three years in Jerusalem; + +and these were born to him in Jerusalem: Shimea, Shobab, Nathan, and Solomon, four, by Bathshua the daughter of Ammiel; + +and Ibhar, Elishama, Eliphelet, + +Nogah, Nepheg, Japhia, + +Elishama, Eliada, and Eliphelet, nine. + +All these were the sons of David, in addition to the sons of the concubines; and Tamar was their sister. + +

+

Solomon’s son was Rehoboam, Abijah his son, Asa his son, Jehoshaphat his son, + +Joram his son, Ahaziah his son, Joash his son, + +Amaziah his son, Azariah his son, Jotham his son, + +Ahaz his son, Hezekiah his son, Manasseh his son, + +Amon his son, and Josiah his son. + +The sons of Josiah: the firstborn Johanan, the second Jehoiakim, the third Zedekiah, and the fourth Shallum. + +The sons of Jehoiakim: Jeconiah his son, and Zedekiah his son. + +The sons of Jeconiah, the captive: Shealtiel his son, + +Malchiram, Pedaiah, Shenazzar, Jekamiah, Hoshama, and Nedabiah. + +The sons of Pedaiah: Zerubbabel and Shimei. The sons of Zerubbabel: Meshullam and Hananiah; and Shelomith was their sister; + +and Hashubah, Ohel, Berechiah, Hasadiah, and Jushab Hesed, five. + +The sons of Hananiah: Pelatiah and Jeshaiah; the sons of Rephaiah, the sons of Arnan, the sons of Obadiah, the sons of Shecaniah. + +The son of Shecaniah: Shemaiah. The sons of Shemaiah: Hattush, Igal, Bariah, Neariah, and Shaphat, six. + +The sons of Neariah: Elioenai, Hizkiah, and Azrikam, three. + +The sons of Elioenai: Hodaviah, Eliashib, Pelaiah, Akkub, Johanan, Delaiah, and Anani, seven. + +

+ + +

The sons of Judah: Perez, Hezron, Carmi, Hur, and Shobal. + +Reaiah the son of Shobal became the father of Jahath; and Jahath became the father of Ahumai and Lahad. These are the families of the Zorathites. + +These were the sons of the father of Etam: Jezreel, Ishma, and Idbash. The name of their sister was Hazzelelponi. + +Penuel was the father of Gedor and Ezer the father of Hushah. These are the sons of Hur, the firstborn of Ephrathah, the father of Bethlehem. + +Ashhur the father of Tekoa had two wives, Helah and Naarah. + +Naarah bore him Ahuzzam, Hepher, Temeni, and Haahashtari. These were the sons of Naarah. + +The sons of Helah were Zereth, Izhar, and Ethnan. + +Hakkoz became the father of Anub, Zobebah, and the families of Aharhel the son of Harum. + +

+

Jabez was more honorable than his brothers. His mother named him Jabez,4:9 +“Jabez” sounds similar to the Hebrew word for “pain”. saying, “Because I bore him with sorrow.” + +

+

Jabez called on the God4:10 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). of Israel, saying, “Oh that you would bless me indeed, and enlarge my border! May your hand be with me, and may you keep me from evil, that I may not cause pain!” +

+

God granted him that which he requested. + +

+

Chelub the brother of Shuhah became the father of Mehir, who was the father of Eshton. + +Eshton became the father of Beth Rapha, Paseah, and Tehinnah the father of Ir Nahash. These are the men of Recah. + +The sons of Kenaz: Othniel and Seraiah. The sons of Othniel: Hathath.4:13 +Greek and Vulgate add “and Meonothai” + +Meonothai became the father of Ophrah: and Seraiah became the father of Joab the father of Ge Harashim, for they were craftsmen. + +The sons of Caleb the son of Jephunneh: Iru, Elah, and Naam. The son of Elah: Kenaz. + +The sons of Jehallelel: Ziph, Ziphah, Tiria, and Asarel. + +The sons of Ezrah: Jether, Mered, Epher, and Jalon; and Mered’s wife bore Miriam, Shammai, and Ishbah the father of Eshtemoa. + +His wife the Jewess bore Jered the father of Gedor, Heber the father of Soco, and Jekuthiel the father of Zanoah. These are the sons of Bithiah the daughter of Pharaoh, whom Mered took. + +The sons of the wife of Hodiah, the sister of Naham, were the fathers of Keilah the Garmite and Eshtemoa the Maacathite. + +The sons of Shimon: Amnon, Rinnah, Ben Hanan, and Tilon. The sons of Ishi: Zoheth, and Ben Zoheth. + +The sons of Shelah the son of Judah: Er the father of Lecah, Laadah the father of Mareshah, and the families of the house of those who worked fine linen, of the house of Ashbea; + +and Jokim, and the men of Cozeba, and Joash, and Saraph, who had dominion in Moab, and Jashubilehem. These records are ancient. + +These were the potters, and the inhabitants of Netaim and Gederah; they lived there with the king for his work. + +

+

The sons of Simeon: Nemuel, Jamin, Jarib, Zerah, Shaul; + +Shallum his son, Mibsam his son, and Mishma his son. + +The sons of Mishma: Hammuel his son, Zaccur his son, Shimei his son. + +Shimei had sixteen sons and six daughters; but his brothers didn’t have many children, and all their family didn’t multiply like the children of Judah. + +They lived at Beersheba, Moladah, Hazarshual, + +at Bilhah, at Ezem, at Tolad, + +at Bethuel, at Hormah, at Ziklag, + +at Beth Marcaboth, Hazar Susim, at Beth Biri, and at Shaaraim. These were their cities until David’s reign. + +Their villages were Etam, Ain, Rimmon, Tochen, and Ashan, five cities; + +and all their villages that were around the same cities, as far as Baal. These were their settlements, and they kept their genealogy. + +Meshobab, Jamlech, Joshah the son of Amaziah, + +Joel, Jehu the son of Joshibiah, the son of Seraiah, the son of Asiel, + +Elioenai, Jaakobah, Jeshohaiah, Asaiah, Adiel, Jesimiel, Benaiah, + +and Ziza the son of Shiphi, the son of Allon, the son of Jedaiah, the son of Shimri, the son of Shemaiah— + +these mentioned by name were princes in their families. Their fathers’ houses increased greatly. + +

+

They went to the entrance of Gedor, even to the east side of the valley, to seek pasture for their flocks. + +They found rich, good pasture, and the land was wide, and quiet, and peaceful, for those who lived there before were descended from Ham. + +These written by name came in the days of Hezekiah king of Judah, and struck their tents and the Meunim who were found there; and they destroyed them utterly to this day, and lived in their place, because there was pasture there for their flocks. + +Some of them, even of the sons of Simeon, five hundred men, went to Mount Seir, having for their captains Pelatiah, Neariah, Rephaiah, and Uzziel, the sons of Ishi. + +They struck the remnant of the Amalekites who escaped, and have lived there to this day. + +

+ + +

The sons of Reuben the firstborn of Israel (for he was the firstborn, but because he defiled his father’s couch, his birthright was given to the sons of Joseph the son of Israel; and the genealogy is not to be listed according to the birthright. + +For Judah prevailed above his brothers, and from him came the prince; but the birthright was Joseph’s)— + +the sons of Reuben the firstborn of Israel: Hanoch, Pallu, Hezron, and Carmi. + +The sons of Joel: Shemaiah his son, Gog his son, Shimei his son, + +Micah his son, Reaiah his son, Baal his son, + +and Beerah his son, whom Tilgath Pilneser king of Assyria carried away captive. He was prince of the Reubenites. + +His brothers by their families, when the genealogy of their generations was listed: the chief, Jeiel, and Zechariah, + +and Bela the son of Azaz, the son of Shema, the son of Joel, who lived in Aroer, even to Nebo and Baal Meon; + +and he lived eastward even to the entrance of the wilderness from the river Euphrates, because their livestock were multiplied in the land of Gilead. + +

+

In the days of Saul, they made war with the Hagrites, who fell by their hand; and they lived in their tents throughout all the land east of Gilead. + +

+

The sons of Gad lived beside them in the land of Bashan to Salecah: + +Joel the chief, Shapham the second, Janai, and Shaphat in Bashan. + +Their brothers of their fathers’ houses: Michael, Meshullam, Sheba, Jorai, Jacan, Zia, and Eber, seven. + +These were the sons 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; + +Ahi the son of Abdiel, the son of Guni, chief of their fathers’ houses. + +They lived in Gilead in Bashan and in its towns, and in all the pasture lands of Sharon as far as their borders. + +All these were listed by genealogies in the days of Jotham king of Judah, and in the days of Jeroboam king of Israel. + +

+

The sons of Reuben, the Gadites, and the half-tribe of Manasseh, of valiant men, men able to bear buckler and sword, able to shoot with bow, and skillful in war, were forty-four thousand seven hundred sixty that were able to go out to war. + +They made war with the Hagrites, with Jetur, and Naphish, and Nodab. + +They were helped against them, and the Hagrites were delivered into their hand, and all who were with them; for they cried to God in the battle, and he answered them because they put their trust in him. + +They took away their livestock: of their camels fifty thousand, and of sheep two hundred fifty thousand, and of donkeys two thousand, and of men one hundred thousand. + +For many fell slain, because the war was of God. They lived in their place until the captivity. + +

+

The children of the half-tribe of Manasseh lived in the land. They increased from Bashan to Baal Hermon, Senir, and Mount Hermon. + +These were the heads of their fathers’ houses: Epher, Ishi, Eliel, Azriel, Jeremiah, Hodaviah, and Jahdielmighty men of valor, famous men, heads of their fathers’ houses. + +They trespassed against the God of their fathers, and played the prostitute after the gods of the peoples of the land whom God destroyed before them. + +So the God of Israel stirred up the spirit of Pul king of Assyria, and the spirit of Tilgath Pilneser king of Assyria, and he carried away the Reubenites, the Gadites, and the half-tribe of Manasseh, and brought them to Halah, Habor, Hara, and to the river of Gozan, to this day. + +

+ + +

The sons of Levi: Gershon, Kohath, and Merari. + +The sons of Kohath: Amram, Izhar, Hebron, and Uzziel. + +The children of Amram: Aaron, Moses, and Miriam. The sons of Aaron: Nadab, Abihu, Eleazar, and Ithamar. + +Eleazar became the father of Phinehas, Phinehas became the father of Abishua, + +Abishua became the father of Bukki. Bukki became the father of Uzzi. + +Uzzi became the father of Zerahiah. Zerahiah became the father of Meraioth. + +Meraioth became the father of Amariah. Amariah became the father of Ahitub. + +Ahitub became the father of Zadok. Zadok became the father of Ahimaaz. + +Ahimaaz became the father of Azariah. Azariah became the father of Johanan. + +Johanan became the father of Azariah, who executed the priest’s office in the house that Solomon built in Jerusalem. + +Azariah became the father of Amariah. Amariah became the father of Ahitub. + +Ahitub became the father of Zadok. Zadok became the father of Shallum. + +Shallum became the father of Hilkiah. Hilkiah became the father of Azariah. + +Azariah became the father of Seraiah. Seraiah became the father of Jehozadak. + +Jehozadak went into captivity when Yahweh carried Judah and Jerusalem away by the hand of Nebuchadnezzar. + +

+

The sons of Levi: Gershom, Kohath, and Merari. + +These are the names of the sons of Gershom: Libni and Shimei. + +The sons of Kohath were Amram, Izhar, Hebron, and Uzziel. + +The sons of Merari: Mahli and Mushi. These are the families of the Levites according to their fathers’ households. + +Of Gershom: Libni his son, Jahath his son, Zimmah his son, + +Joah his son, Iddo his son, Zerah his son, and Jeatherai his son. + +The sons of Kohath: Amminadab his son, Korah his son, Assir his son, + +Elkanah his son, Ebiasaph his son, Assir his son, + +Tahath his son, Uriel his son, Uzziah his son, and Shaul his son. + +The sons of Elkanah: Amasai and Ahimoth. + +As for Elkanah, the sons of Elkanah: Zophai his son, Nahath his son, + +Eliab his son, Jeroham his son, and Elkanah his son. + +The sons of Samuel: the firstborn, Joel, and the second, Abijah. + +The sons of Merari: Mahli, Libni his son, Shimei his son, Uzzah his son, + +Shimea his son, Haggiah his son, Asaiah his son. + +

+

These are they whom David set over the service of song in Yahweh’s house after the ark came to rest there. + +They ministered with song before the tabernacle of the Tent of Meeting until Solomon had built Yahweh’s house in Jerusalem. They performed the duties of their office according to their order. + +These are those who served, and their sons. Of the sons of the Kohathites: Heman the singer, the son of Joel, the son of Samuel, + +the son of Elkanah, the son of Jeroham, the son of Eliel, the son of Toah, + +the son of Zuph, the son of Elkanah, the son of Mahath, the son of Amasai, + +the son of Elkanah, the son of Joel, the son of Azariah, the son of Zephaniah, + +the son of Tahath, the son of Assir, the son of Ebiasaph, the son of Korah, + +the son of Izhar, the son of Kohath, the son of Levi, the son of Israel. + +His brother Asaph, who stood on his right hand, even Asaph the son of Berechiah, the son of Shimea, + +the son of Michael, the son of Baaseiah, the son of Malchijah, + +the son of Ethni, the son of Zerah, the son of Adaiah, + +the son of Ethan, the son of Zimmah, the son of Shimei, + +the son of Jahath, the son of Gershom, the son of Levi. + +On the left hand their brothers the sons of Merari: Ethan the son of Kishi, the son of Abdi, the son of Malluch, + +the son of Hashabiah, the son of Amaziah, the son of Hilkiah, + +the son of Amzi, the son of Bani, the son of Shemer, + +the son of Mahli, the son of Mushi, the son of Merari, the son of Levi. + +Their brothers the Levites were appointed for all the service of the tabernacle of God’s house. + +But Aaron and his sons offered on the altar of burnt offering, and on the altar of incense, for all the work of the most holy place, and to make atonement for Israel, according to all that Moses the servant of God had commanded. + +

+

These are the sons of Aaron: Eleazar his son, Phinehas his son, Abishua his son, + +Bukki his son, Uzzi his son, Zerahiah his son, + +Meraioth his son, Amariah his son, Ahitub his son, + +Zadok his son, and Ahimaaz his son. + +Now these are their dwelling places according to their encampments in their borders: to the sons of Aaron, of the families of the Kohathites (for theirs was the first lot), + +to them they gave Hebron in the land of Judah, and its pasture lands around it; + +but the fields of the city and its villages, they gave to Caleb the son of Jephunneh. + +To the sons of Aaron they gave the cities of refuge, Hebron, Libnah also with its pasture lands, Jattir, Eshtemoa with its pasture lands, + +Hilen with its pasture lands, Debir with its pasture lands, + +Ashan with its pasture lands, and Beth Shemesh with its pasture lands; + +and out of the tribe of Benjamin, Geba with its pasture lands, Allemeth with its pasture lands, and Anathoth with its pasture lands. All their cities throughout their families were thirteen cities. + +

+

To the rest of the sons of Kohath were given by lot, out of the family of the tribe, out of the half-tribe, the half of Manasseh, ten cities. + +To the sons of Gershom, according to 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. + +To the sons of Merari were given by lot, according to their families, out of the tribe of Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun, twelve cities. + +The children of Israel gave to the Levites the cities with their pasture lands. + +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 mentioned by name. + +

+

Some of the families of the sons of Kohath had cities of their borders out of the tribe of Ephraim. + +They gave to them the cities of refuge, Shechem in the hill country of Ephraim with its pasture lands and Gezer with its pasture lands, + +Jokmeam with its pasture lands, Beth Horon with its pasture lands, + +Aijalon with its pasture lands, Gath Rimmon with its pasture lands; + +and out of the half-tribe of Manasseh, Aner with its pasture lands, and Bileam with its pasture lands, for the rest of the family of the sons of Kohath. + +

+

To the sons of Gershom were given, out of the family of the half-tribe of Manasseh, Golan in Bashan with its pasture lands, and Ashtaroth with its pasture lands; + +and out of the tribe of Issachar, Kedesh with its pasture lands, Daberath with its pasture lands, + +Ramoth with its pasture lands, and Anem with its pasture lands; + +and out of the tribe of Asher, Mashal with its pasture lands, Abdon with its pasture lands, + +Hukok with its pasture lands, and Rehob with its pasture lands; + +and out of the tribe of Naphtali, Kedesh in Galilee with its pasture lands, Hammon with its pasture lands, and Kiriathaim with its pasture lands. + +

+

To the rest of the Levites, the sons of Merari, were given, out of the tribe of Zebulun, Rimmono with its pasture lands, and Tabor with its pasture lands; + +and beyond the Jordan at Jericho, on the east side of the Jordan, were given them out of the tribe of Reuben: Bezer in the wilderness with its pasture lands, Jahzah with its pasture lands, + +Kedemoth with its pasture lands, and Mephaath with its pasture lands; + +and out of the tribe of Gad, Ramoth in Gilead with its pasture lands, Mahanaim with its pasture lands, + +Heshbon with its pasture lands, and Jazer with its pasture lands. + +

+ + +

Of the sons of Issachar: Tola, Puah, Jashub, and Shimron, four. + +The sons of Tola: Uzzi, Rephaiah, Jeriel, Jahmai, Ibsam, and Shemuel, heads of their fathers’ houses, of Tola; mighty men of valor in their generations. Their number in the days of David was twenty-two thousand six hundred. + +The son of Uzzi: Izrahiah. The sons of Izrahiah: Michael, Obadiah, Joel, and Isshiah, five; all of them chief men. + +With them, by their generations, after their fathers’ houses, were bands of the army for war, thirty-six thousand; for they had many wives and sons. + +Their brothers among all the families of Issachar, mighty men of valor, listed in all by genealogy, were eighty-seven thousand. + +

+

The sons of Benjamin: Bela, Becher, and Jediael, three. + +The sons of Bela: Ezbon, Uzzi, Uzziel, Jerimoth, and Iri, five; heads of fathers’ houses, mighty men of valor; and they were listed by genealogy twenty-two thousand thirty-four. + +The sons of Becher: Zemirah, Joash, Eliezer, Elioenai, Omri, Jeremoth, Abijah, Anathoth, and Alemeth. All these were the sons of Becher. + +They were listed by genealogy, after their generations, heads of their fathers’ houses, mighty men of valor, twenty thousand two hundred. + +The son of Jediael: Bilhan. The sons of Bilhan: Jeush, Benjamin, Ehud, Chenaanah, Zethan, Tarshish, and Ahishahar. + +All these were sons of Jediael, according to the heads of their fathers’ households, mighty men of valor, seventeen thousand two hundred, who were able to go out in the army for war. + +So were Shuppim, Huppim, the sons of Ir, Hushim, and the sons of Aher. + +

+

The sons of Naphtali: Jahziel, Guni, Jezer, Shallum, and the sons of Bilhah. + +

+

The sons of Manasseh: Asriel, whom his concubine the Aramitess bore. She bore Machir the father of Gilead. + +Machir took a wife of Huppim and Shuppim, whose sister’s name was Maacah. The name of the second was Zelophehad; and Zelophehad had daughters. + +Maacah the wife of Machir bore a son, and she named him Peresh. The name of his brother was Sheresh; and his sons were Ulam and Rakem. + +The sons of Ulam: Bedan. These were the sons of Gilead the son of Machir, the son of Manasseh. + +His sister Hammolecheth bore Ishhod, Abiezer, and Mahlah. + +The sons of Shemida were Ahian, Shechem, Likhi, and Aniam. + +

+

The sons of Ephraim: Shuthelah, Bered his son, Tahath his son, Eleadah his son, Tahath his son, + +Zabad his son, Shuthelah his son, Ezer, and Elead, whom the men of Gath who were born in the land killed, because they came down to take away their livestock. + +Ephraim their father mourned many days, and his brothers came to comfort him. + +He went in to his wife, and she conceived and bore a son, and he named him Beriah,7:23 +“Beriah” is similar to the Hebrew word for “misfortune”. because there was trouble with his house. + +His daughter was Sheerah, who built Beth Horon the lower and the upper, and Uzzen Sheerah. + +Rephah was his son, Resheph his son, Telah his son, Tahan his son, + +Ladan his son, Ammihud his son, Elishama his son, + +Nun his son, and Joshua his son. + +Their possessions and settlements were Bethel and its towns, and eastward Naaran, and westward Gezer with its towns; Shechem also and its towns, to Azzah and its towns; + +and by the borders of the children of Manasseh, Beth Shean and its towns, Taanach and its towns, Megiddo and its towns, and Dor and its towns. The children of Joseph the son of Israel lived in these. + +

+

The sons of Asher: Imnah, Ishvah, Ishvi, and Beriah. Serah was their sister. + +The sons of Beriah: Heber and Malchiel, who was the father of Birzaith. + +Heber became the father of Japhlet, Shomer, Hotham, and Shua their sister. + +The sons of Japhlet: Pasach, Bimhal, and Ashvath. These are the children of Japhlet. + +The sons of Shemer: Ahi, Rohgah, Jehubbah, and Aram. + +The sons of Helem his brother: Zophah, Imna, Shelesh, and Amal. + +The sons of Zophah: Suah, Harnepher, Shual, Beri, Imrah, + +Bezer, Hod, Shamma, Shilshah, Ithran, and Beera. + +The sons of Jether: Jephunneh, Pispa, and Ara. + +The sons of Ulla: Arah, Hanniel, and Rizia. + +All these were the children of Asher, heads of the fathers’ houses, choice and mighty men of valor, chief of the princes. The number of them listed by genealogy for service in war was twenty-six thousand men. + +

+ + +

Benjamin became the father of Bela his firstborn, Ashbel the second, Aharah the third, + +Nohah the fourth, and Rapha the fifth. + +Bela had sons: Addar, Gera, Abihud, + +Abishua, Naaman, Ahoah, + +Gera, Shephuphan, and Huram. + +These are the sons of Ehud. These are the heads of fathers’ households of the inhabitants of Geba, who were carried captive to Manahath: + +Naaman, Ahijah, and Gera, who carried them captive; and he became the father of Uzza and Ahihud. + +

+

Shaharaim became the father of children in the field of Moab, after he had sent them away. Hushim and Baara were his wives. + +By Hodesh his wife, he became the father of Jobab, Zibia, Mesha, Malcam, + +Jeuz, Shachia, and Mirmah. These were his sons, heads of fathers’ households. + +By Hushim, he became the father of Abitub and Elpaal. + +The sons of Elpaal: Eber, Misham, and Shemed, who built Ono and Lod, with its towns; + +and Beriah and Shema, who were heads of fathers’ households of the inhabitants of Aijalon, who put to flight the inhabitants of Gath; + +and Ahio, Shashak, Jeremoth, + +Zebadiah, Arad, Eder, + +Michael, Ishpah, Joha, the sons of Beriah, + +Zebadiah, Meshullam, Hizki, Heber, + +Ishmerai, Izliah, Jobab, the sons of Elpaal, + +Jakim, Zichri, Zabdi, + +Elienai, Zillethai, Eliel, + +Adaiah, Beraiah, Shimrath, the sons of Shimei, + +Ishpan, Eber, Eliel, + +Abdon, Zichri, Hanan, + +Hananiah, Elam, Anthothijah, + +Iphdeiah, Penuel, the sons of Shashak, + +Shamsherai, Shehariah, Athaliah, + +Jaareshiah, Elijah, Zichri, and the sons of Jeroham. + +These were heads of fathers’ households throughout their generations, chief men. These lived in Jerusalem. + +

+

The father of Gibeon, whose wife’s name was Maacah, lived in Gibeon + +with his firstborn son Abdon, Zur, Kish, Baal, Nadab, + +Gedor, Ahio, Zecher, + +and Mikloth, who became the father of Shimeah. They also lived with their families in Jerusalem, near their relatives. + +Ner became the father of Kish. Kish became the father of Saul. Saul became the father of Jonathan, Malchishua, Abinadab, and Eshbaal. + +The son of Jonathan was Merib-baal. Merib-baal became the father of Micah. + +The sons of Micah: Pithon, Melech, Tarea, and Ahaz. + +Ahaz became the father of Jehoaddah. Jehoaddah became the father of Alemeth, Azmaveth, and Zimri. Zimri became the father of Moza. + +Moza became the father of Binea. Raphah was his son, Eleasah his son, and Azel his son. + +Azel had six sons, whose names are these: Azrikam, Bocheru, Ishmael, Sheariah, Obadiah, and Hanan. All these were the sons of Azel. + +The sons of Eshek his brother: Ulam his firstborn, Jeush the second, and Eliphelet the third. + +The sons of Ulam were mighty men of valor, archers, and had many sons, and grandsons, one hundred fifty. All these were of the sons of Benjamin. + +

+ + +

So all Israel were listed by genealogies; and behold,9:1 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. they are written in the book of the kings of Israel. Judah was carried away captive to Babylon for their disobedience. + +Now the first inhabitants who lived in their possessions in their cities were Israel, the priests, the Levites, and the temple servants. + +In Jerusalem, there lived of the children of Judah, of the children of Benjamin, and of the children of Ephraim and Manasseh: + +Uthai the son of Ammihud, the son of Omri, the son of Imri, the son of Bani, of the children of Perez the son of Judah. + +Of the Shilonites: Asaiah the firstborn and his sons. + +Of the sons of Zerah: Jeuel and their brothers, six hundred ninety. + +Of the sons of Benjamin: Sallu the son of Meshullam, the son of Hodaviah, the son of Hassenuah; + +and Ibneiah the son of Jeroham, and Elah the son of Uzzi, the son of Michri; and Meshullam the son of Shephatiah, the son of Reuel, the son of Ibnijah; + +and their brothers, according to their generations, nine hundred fifty-six. All these men were heads of fathers’ households by their fathers’ houses. + +

+

Of the priests: Jedaiah, Jehoiarib, Jachin, + +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 God’s house; + +and Adaiah the son of Jeroham, the son of Pashhur, the son of Malchijah; and Maasai the son of Adiel, the son of Jahzerah, the son of Meshullam, the son of Meshillemith, the son of Immer; + +and their brothers, heads of their fathers’ houses, one thousand seven hundred sixty; they were very able men for the work of the service of God’s house. + +

+

Of the Levites: Shemaiah the son of Hasshub, the son of Azrikam, the son of Hashabiah, of the sons of Merari; + +and Bakbakkar, Heresh, Galal, and Mattaniah the son of Mica, the son of Zichri, the son of Asaph, + +and Obadiah the son of Shemaiah, the son of Galal, the son of Jeduthun; and Berechiah the son of Asa, the son of Elkanah, who lived in the villages of the Netophathites. + +

+

The gatekeepers: Shallum, Akkub, Talmon, Ahiman, and their brothers (Shallum was the chief), + +who previously served in the king’s gate eastward. They were the gatekeepers for the camp of the children of Levi. + +Shallum was the son of Kore, the son of Ebiasaph, the son of Korah, and his brothers, of his father’s house, the Korahites, were over the work of the service, keepers of the thresholds of the tent. Their fathers had been over Yahweh’s camp, keepers of the entry. + +Phinehas the son of Eleazar was ruler over them in time past, and Yahweh was with him. + +Zechariah the son of Meshelemiah was gatekeeper of the door of the Tent of Meeting. + +All these who were chosen to be gatekeepers in the thresholds were two hundred twelve. These were listed by genealogy in their villages, whom David and Samuel the seer ordained in their office of trust. + +So they and their children had the oversight of the gates of Yahweh’s house, even the house of the tent, as guards. + +On the four sides were the gatekeepers, toward the east, west, north, and south. + +Their brothers, in their villages, were to come in every seven days from time to time to be with them, + +for the four chief gatekeepers, who were Levites, were in an office of trust, and were over the rooms and over the treasuries in God’s house. + +They stayed around God’s house, because that was their duty; and it was their duty to open it morning by morning. + +

+

Certain of them were in charge of the vessels of service, for these were brought in by count, and these were taken out by count. + +Some of them also were appointed over the furniture, and over all the vessels of the sanctuary, over the fine flour, the wine, the oil, the frankincense, and the spices. + +

+

Some of the sons of the priests prepared the mixing of the spices. + +Mattithiah, one of the Levites, who was the firstborn of Shallum the Korahite, had the office of trust over the things that were baked in pans. + +Some of their brothers, of the sons of the Kohathites, were over the show bread, to prepare it every Sabbath. + +

+

These are the singers, heads of fathers’ households of the Levites, who lived in the rooms and were free from other service, for they were employed in their work day and night. + +These were heads of fathers’ households of the Levites, throughout their generations, chief men. They lived at Jerusalem. + +

+

Jeiel the father of Gibeon, whose wife’s name was Maacah, lived in Gibeon. + +His firstborn son was Abdon, then Zur, Kish, Baal, Ner, Nadab, + +Gedor, Ahio, Zechariah, and Mikloth. + +Mikloth became the father of Shimeam. They also lived with their relatives in Jerusalem, near their relatives. + +Ner became the father of Kish. Kish became the father of Saul. Saul became the father of Jonathan, Malchishua, Abinadab, and Eshbaal. + +The son of Jonathan was Merib-baal. Merib-baal became the father of Micah. + +The sons of Micah: Pithon, Melech, Tahrea, and Ahaz. + +Ahaz became the father of Jarah. Jarah became the father of Alemeth, Azmaveth, and Zimri. Zimri became the father of Moza. + +Moza became the father of Binea, Rephaiah his son, Eleasah his son, and Azel his son. + +Azel had six sons, whose names are Azrikam, Bocheru, Ishmael, Sheariah, Obadiah, and Hanan. These were the sons of Azel. + +

+ + +

Now the Philistines fought against Israel; and the men of Israel fled from before the Philistines, and fell down slain on Mount Gilboa. + +The Philistines followed hard after Saul and after his sons; and the Philistines killed Jonathan, Abinadab, and Malchishua, the sons of Saul. + +The battle went hard against Saul, and the archers overtook him; and he was distressed by reason of the archers. + +Then Saul said to his armor bearer, “Draw your sword, and thrust me through with it, lest these uncircumcised come and abuse me.” +

+

But his armor bearer would not, for he was terrified. Therefore Saul took his sword and fell on it. + +When his armor bearer saw that Saul was dead, he likewise fell on his sword and died. + +So Saul died with his three sons; and all his house died together. + +When all the men of Israel who were in the valley saw that they fled, and that Saul and his sons were dead, they abandoned their cities, and fled; and the Philistines came and lived in them. + +

+

On the next day, when the Philistines came to strip the slain, they found Saul and his sons fallen on Mount Gilboa. + +They stripped him and took his head and his armor, then sent into the land of the Philistines all around to carry the news to their idols and to the people. + +They put his armor in the house of their gods, and fastened his head in the house of Dagon. + +When all Jabesh Gilead heard all that the Philistines had done to Saul, + +all the valiant men arose 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. + +

+

So Saul died for his trespass which he committed against Yahweh, because of Yahweh’s word, which he didn’t keep, and also because he asked counsel of one who had a familiar spirit, to inquire, + +and didn’t inquire of Yahweh. Therefore he killed him, and turned the kingdom over to David the son of Jesse. + +

+ + +

Then all Israel gathered themselves to David to Hebron, saying, “Behold, we are your bone and your flesh. + +In times past, even when Saul was king, it was you who led out and brought in Israel. Yahweh your God said to you, ‘You shall be shepherd of my people Israel, and you shall be prince over my people Israel.’” + +

+

So all the elders of Israel came to the king to Hebron; and David made a covenant with them in Hebron before Yahweh. They anointed David king over Israel, according to Yahweh’s word by Samuel. + +

+

David and all Israel went to Jerusalem (also called Jebus); and the Jebusites, the inhabitants of the land, were there. + +The inhabitants of Jebus said to David, “You will not come in here!” Nevertheless David took the stronghold of Zion. The same is David’s city. + +David had said, “Whoever strikes the Jebusites first shall be chief and captain.” Joab the son of Zeruiah went up first, and was made chief. + +David lived in the stronghold; therefore they called it David’s city. + +He built the city all around, from Millo even around; and Joab repaired the rest of the city. + +David grew greater and greater, for Yahweh of Armies was with him. + +

+

Now these are the chief of the mighty men whom David had, who showed themselves strong with him in his kingdom, together with all Israel, to make him king, according to Yahweh’s word concerning Israel. + +

+

This is the number of the mighty men whom David had: Jashobeam, the son of a Hachmonite, the chief of the thirty; he lifted up his spear against three hundred and killed them at one time. + +After him was Eleazar the son of Dodo, the Ahohite, who was one of the three mighty men. + +He was with David at Pasdammim, and there the Philistines were gathered together to battle, where there was a plot of ground full of barley; and the people fled from before the Philistines. + +They stood in the middle of the plot, defended it, and killed the Philistines; and Yahweh saved them by a great victory. + +

+

Three of the thirty chief men went down to the rock to David, into the cave of Adullam; and the army of the Philistines were encamped in the valley of Rephaim. + +David was then in the stronghold, and the garrison of the Philistines was in Bethlehem at that time. + +David longed, and said, “Oh, that someone would give me water to drink from the well of Bethlehem, which is by the gate!” + +

+

The three broke through the army of the Philistines, and drew water out of the well of Bethlehem that was by the gate, took it, and brought it to David; but David would not drink any of it, but poured it out to Yahweh, + +and said, “My God forbid me, that I should do this! Shall I drink the blood of these men who have put their lives in jeopardy?” For they risked their lives to bring it. Therefore he would not drink it. The three mighty men did these things. + +

+

Abishai, the brother of Joab, was chief of the three; for he lifted up his spear against three hundred and killed them, and had a name among the three. + +Of the three, he was more honorable than the two, and was made their captain; however he wasn’t included in the three. + +

+

Benaiah the son of Jehoiada, the son of a valiant man of Kabzeel, who had done mighty deeds, killed the two sons of Ariel of Moab. He also went down and killed a lion in the middle of a pit on a snowy day. + +He killed an Egyptian, a man of great stature, five cubits11:23 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. Therefore this Egyptian was about 7 feet and 6 inches or 2.28 meters tall. high. In the Egyptian’s hand was a spear like a weaver’s beam; and he went down to him with a staff, plucked the spear out of the Egyptian’s hand, and killed him with his own spear. + +Benaiah the son of Jehoiada did these things and had a name among the three mighty men. + +Behold, he was more honorable than the thirty, but he didn’t attain to the three; and David set him over his guard. + +

+

The mighty men of the armies also include Asahel the brother of Joab, Elhanan the son of Dodo of Bethlehem, + +Shammoth the Harorite, Helez the Pelonite, + +Ira the son of Ikkesh the Tekoite, Abiezer the Anathothite, + +Sibbecai the Hushathite, Ilai the Ahohite, + +Maharai the Netophathite, Heled the son of Baanah the Netophathite, + +Ithai the son of Ribai of Gibeah of the children of Benjamin, Benaiah the Pirathonite, + +Hurai of the brooks of Gaash, Abiel the Arbathite, + +Azmaveth the Baharumite, Eliahba the Shaalbonite, + +the sons of Hashem the Gizonite, Jonathan the son of Shagee the Hararite, + +Ahiam the son of Sacar the Hararite, Eliphal the son of Ur, + +Hepher the Mecherathite, Ahijah the Pelonite, + +Hezro the Carmelite, Naarai the son of Ezbai, + +Joel the brother of Nathan, Mibhar the son of Hagri, + +Zelek the Ammonite, Naharai the Berothite (the armor bearer of Joab the son of Zeruiah), + +Ira the Ithrite, Gareb the Ithrite, + +Uriah the Hittite, Zabad the son of Ahlai, + +Adina the son of Shiza the Reubenite (a chief of the Reubenites), and thirty with him, + +Hanan the son of Maacah, Joshaphat the Mithnite, + +Uzzia the Ashterathite, Shama and Jeiel the sons of Hotham the Aroerite, + +Jediael the son of Shimri, and Joha his brother, the Tizite, + +Eliel the Mahavite, and Jeribai, and Joshaviah, the sons of Elnaam, and Ithmah the Moabite, + +Eliel, Obed, and Jaasiel the Mezobaite. + +

+ + +

Now these are those who came to David to Ziklag while he was a fugitive from Saul the son of Kish. They were among the mighty men, his helpers in war. + +They were armed with bows, and could use both the right hand and the left in slinging stones and in shooting arrows from the bow. They were of Saul’s relatives of the tribe of Benjamin. + +The chief was Ahiezer, then Joash, the sons of Shemaah the Gibeathite; Jeziel and Pelet, the sons of Azmaveth; Beracah; Jehu the Anathothite; + +Ishmaiah the Gibeonite, a mighty man among the thirty and a leader of the thirty; Jeremiah; Jahaziel; Johanan; Jozabad the Gederathite; + +Eluzai; Jerimoth; Bealiah; Shemariah; Shephatiah the Haruphite; + +Elkanah, Isshiah, Azarel, Joezer, and Jashobeam, the Korahites; + +and Joelah and Zebadiah, the sons of Jeroham of Gedor. + +

+

Some Gadites joined David in the stronghold in the wilderness, mighty men of valor, men trained for war, who could handle shield and spear; whose faces were like the faces of lions, and they were as swift as the gazelles on the mountains: + +Ezer the chief, Obadiah the second, Eliab the third, + +Mishmannah the fourth, Jeremiah the fifth, + +Attai the sixth, Eliel the seventh, + +Johanan the eighth, Elzabad the ninth, + +Jeremiah the tenth, and Machbannai the eleventh. + +These of the sons of Gad were captains of the army. He who was least was equal to one hundred, and the greatest to one thousand. + +These are those who went over the Jordan in the first month, when it had overflowed all its banks; and they put to flight all who lived in the valleys, both toward the east and toward the west. + +

+

Some of the children of Benjamin and Judah came to the stronghold to David. + +David went out to meet them, and answered them, “If you have come peaceably to me to help me, my heart will be united with you; but if you have come to betray me to my adversaries, since there is no wrong in my hands, may the God of our fathers see this and rebuke it.” + +Then the Spirit came on Amasai, who was chief of the thirty, and he said, “We are yours, David, and on your side, you son of Jesse. Peace, peace be to you, and peace be to your helpers; for your God helps you.” Then David received them and made them captains of the band. + +

+

Some of Manasseh also joined David when he came with the Philistines against Saul to battle, but they didn’t help them, for the lords of the Philistines sent him away after consultation, saying, “He will desert to his master Saul to the jeopardy of our heads.” + +

+

As he went to Ziklag, some from Manasseh joined him: Adnah, Jozabad, Jediael, Michael, Jozabad, Elihu, and Zillethai, captains of thousands who were of Manasseh. + +They helped David against the band of raiders, for they were all mighty men of valor and were captains in the army. + +For from day to day men came to David to help him, until there was a great army, like God’s army. + +

+

These are the numbers of the heads of those who were armed for war, who came to David to Hebron to turn the kingdom of Saul to him, according to Yahweh’s word. + +The children of Judah who bore shield and spear were six thousand eight hundred, armed for war. + +Of the children of Simeon, mighty men of valor for the war: seven thousand one hundred. + +Of the children of Levi: four thousand six hundred. + +Jehoiada was the leader of the household of Aaron; and with him were three thousand seven hundred, + +and Zadok, a young man mighty of valor, and of his father’s house twenty-two captains. + +Of the children of Benjamin, Saul’s relatives: three thousand, for until then, the greatest part of them had kept their allegiance to Saul’s house. + +Of the children of Ephraim: twenty thousand eight hundred, mighty men of valor, famous men in their fathers’ houses. + +Of the half-tribe of Manasseh: eighteen thousand, who were mentioned by name, to come and make David king. + +Of the children of Issachar, men who had understanding of the times, to know what Israel ought to do, their heads were two hundred; and all their brothers were at their command. + +Of Zebulun, such as were able to go out in the army, who could set the battle in array with all kinds of instruments of war: fifty thousand who could command and were not of double heart. + +Of Naphtali: one thousand captains, and with them with shield and spear thirty-seven thousand. + +Of the Danites who could set the battle in array: twenty-eight thousand six hundred. + +Of Asher, such as were able to go out in the army, who could set the battle in array: forty thousand. + +On the other side of the Jordan, of the Reubenites, the Gadites, and of the half-tribe of Manasseh, with all kinds of instruments of war for the battle: one hundred twenty thousand. + +

+

All these were men of war who could order the battle array, and 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. + +They were there with David three days, eating and drinking; for their brothers had supplied provisions for them. + +Moreover those who were near to them, as far as Issachar, Zebulun, and Naphtali, brought bread on donkeys, on camels, on mules, and on oxen: supplies of flour, cakes of figs, clusters of raisins, wine, oil, cattle, and sheep in abundance; for there was joy in Israel. + +

+ + +

David consulted with the captains of thousands and of hundreds, even with every leader. + +David said to all the assembly of Israel, “If it seems good to you, and if it is of Yahweh our God, let’s send word everywhere to our brothers who are left in all the land of Israel, with whom the priests and Levites are in their cities that have pasture lands, that they may gather themselves to us. + +Also, let’s bring the ark of our God back to us again, for we didn’t seek it in the days of Saul.” + +

+

All the assembly said that they would do so, for the thing was right in the eyes of all the people. + +So David assembled all Israel together, from the Shihor River of Egypt even to the entrance of Hamath, to bring God’s ark from Kiriath Jearim. + +

+

David went up with all Israel to Baalah, that is, to Kiriath Jearim, which belonged to Judah, to bring up from there God Yahweh’s ark that sits above the cherubim, that is called by the Name. + +They carried God’s ark on a new cart, and brought it out of Abinadab’s house; and Uzza and Ahio drove the cart. + +David and all Israel played before God with all their might, even with songs, with harps, with stringed instruments, with tambourines, with cymbals, and with trumpets. + +

+

When they came to Chidon’s threshing floor, Uzza put out his hand to hold the ark, for the oxen stumbled. + +Yahweh’s anger burned against Uzza, and he struck him because he put his hand on the ark; and he died there before God. + +David was displeased, because Yahweh had broken out against Uzza. He called that place Perez Uzza, to this day. + +David was afraid of God that day, saying, “How can I bring God’s ark home to me?” + +So David didn’t move the ark with him into David’s city, but carried it aside into Obed-Edom the Gittite’s house. + +God’s ark remained with the family of Obed-Edom in his house three months; and Yahweh blessed Obed-Edom’s house and all that he had. + +

+ + +

Hiram king of Tyre sent messengers to David with cedar trees, masons, and carpenters, to build him a house. + +David perceived that Yahweh had established him king over Israel, for his kingdom was highly exalted, for his people Israel’s sake. + +

+

David took more wives in Jerusalem, and David became the father of more sons and daughters. + +These are the names of the children whom he had in Jerusalem: Shammua, Shobab, Nathan, Solomon, + +Ibhar, Elishua, Elpelet, + +Nogah, Nepheg, Japhia, + +Elishama, Beeliada, and Eliphelet. + +

+

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. + +Now the Philistines had come and made a raid in the valley of Rephaim. + +David inquired of God, saying, “Shall I go up against the Philistines? Will you deliver them into my hand?” +

+

Yahweh said to him, “Go up; for I will deliver them into your hand.” + +

+

So they came up to Baal Perazim, and David defeated them there. David said, God has broken my enemies by my hand, like waters breaking out. Therefore they called the name of that place Baal Perazim.14:11 +“Baal Perazim” means “The Lord who breaks out”. + +They left their gods there; and David gave a command, and they were burned with fire. + +

+

The Philistines made another raid in the valley. + +David inquired again of God; and God said to him, “You shall not go up after them. Turn away from them, and come on them opposite the mulberry trees. + +When you hear the sound of marching in the tops of the mulberry trees, then go out to battle; for God has gone out before you to strike the army of the Philistines.” + +

+

David did as God commanded him; and they attacked the army of the Philistines from Gibeon even to Gezer. + +The fame of David went out into all lands; and Yahweh brought the fear of him on all nations. + +

+ + +

David made himself houses in David’s city; and he prepared a place for God’s ark, and pitched a tent for it. + +Then David said, “No one ought to carry God’s ark but the Levites. For Yahweh has chosen them to carry God’s ark, and to minister to him forever.” + +

+

David assembled all Israel at Jerusalem, to bring up Yahweh’s ark to its place, which he had prepared for it. + +David gathered together the sons of Aaron and the Levites: + +of the sons of Kohath, Uriel the chief, and his brothers one hundred twenty; + +of the sons of Merari, Asaiah the chief, and his brothers two hundred twenty; + +of the sons of Gershom, Joel the chief, and his brothers one hundred thirty; + +of the sons of Elizaphan, Shemaiah the chief, and his brothers two hundred; + +of the sons of Hebron, Eliel the chief, and his brothers eighty; + +of the sons of Uzziel, Amminadab the chief, and his brothers one hundred twelve. + +

+

David called for Zadok and Abiathar the priests, and for the Levites: for Uriel, Asaiah, Joel, Shemaiah, Eliel, and Amminadab, + +and said to them, “You are the heads of the fathers’ households of the Levites. Sanctify yourselves, both you and your brothers, that you may bring the ark of Yahweh, the God of Israel, up to the place that I have prepared for it. + +For because you didn’t carry it at first, Yahweh our God broke out in anger against us, because we didn’t seek him according to the ordinance.” + +

+

So the priests and the Levites sanctified themselves to bring up the ark of Yahweh, the God of Israel. + +The children of the Levites bore God’s ark on their shoulders with its poles, as Moses commanded according to Yahweh’s word. + +

+

David spoke to the chief of the Levites to appoint their brothers as singers with instruments of music, stringed instruments, harps, and cymbals, sounding aloud and lifting up their voices with joy. + +So the Levites appointed Heman the son of Joel; and of his brothers, Asaph the son of Berechiah; and of the sons of Merari their brothers, Ethan the son of Kushaiah; + +and with them their brothers of the second rank: Zechariah, Ben, Jaaziel, Shemiramoth, Jehiel, Unni, Eliab, Benaiah, Maaseiah, Mattithiah, Eliphelehu, Mikneiah, Obed-Edom, and Jeiel, the doorkeepers. + +So the singers, Heman, Asaph, and Ethan, were given cymbals of bronze to sound aloud; + +and Zechariah, Aziel, Shemiramoth, Jehiel, Unni, Eliab, Maaseiah, and Benaiah, with stringed instruments set to Alamoth; + +and Mattithiah, Eliphelehu, Mikneiah, Obed-Edom, Jeiel, and Azaziah, with harps tuned to the eight-stringed lyre, to lead. + +Chenaniah, chief of the Levites, was over the singing. He taught the singers, because he was skillful. + +Berechiah and Elkanah were doorkeepers for the ark. + +Shebaniah, Joshaphat, Nethanel, Amasai, Zechariah, Benaiah, and Eliezer, the priests, blew the trumpets before God’s ark; and Obed-Edom and Jehiah were doorkeepers for the ark. + +

+

So David, the elders of Israel, and the captains over thousands went to bring the ark of Yahweh’s covenant up out of the house of Obed-Edom with joy. + +When God helped the Levites who bore the ark of Yahweh’s covenant, they sacrificed seven bulls and seven rams. + +David was clothed with a robe of fine linen, as were all the Levites who bore the ark, the singers, and Chenaniah the choir master with the singers; and David had an ephod of linen on him. + +Thus all Israel brought the ark of Yahweh’s covenant up with shouting, with sound of the cornet, with trumpets, and with cymbals, sounding aloud with stringed instruments and harps. + +As the ark of Yahweh’s covenant came to David’s city, Michal the daughter of Saul looked out at the window, and saw king David dancing and playing; and she despised him in her heart. + +

+ + +

They brought in God’s ark, and set it in the middle of the tent that David had pitched for it; and they offered burnt offerings and peace offerings before God. + +When David had finished offering the burnt offering and the peace offerings, he blessed the people in Yahweh’s name. + +He gave to everyone of Israel, both man and woman, to everyone a loaf of bread, a portion of meat, and a cake of raisins. + +

+

He appointed some of the Levites to minister before Yahweh’s ark, and to commemorate, to thank, and to praise Yahweh, the God of Israel: + +Asaph the chief, and second to him Zechariah, then Jeiel, Shemiramoth, Jehiel, Mattithiah, Eliab, Benaiah, Obed-Edom, and Jeiel, with stringed instruments and with harps; and Asaph with cymbals, sounding aloud; + +with Benaiah and Jahaziel the priests with trumpets continually, before the ark of the covenant of God. + +

+

Then on that day David first ordained giving of thanks to Yahweh by the hand of Asaph and his brothers. + +

+Oh give thanks to Yahweh. + +Call on his name. + +Make what he has done known among the peoples. + + +Sing to him. + +Sing praises to him. + +Tell of all his marvelous works. + + +Glory in his holy name. + +Let the heart of those who seek Yahweh rejoice. + + +Seek Yahweh and his strength. + +Seek his face forever more. + + +Remember his marvelous works that he has done, + +his wonders, and the judgments of his mouth, + + +you offspring16:13 +or, seed of Israel his servant, + +you children of Jacob, his chosen ones. + + + +He is Yahweh our God. + +His judgments are in all the earth. + + +Remember his covenant forever, + +the word which he commanded to a thousand generations, + + +the covenant which he made with Abraham, + +his oath to Isaac. + + +He confirmed it to Jacob for a statute, + +and to Israel for an everlasting covenant, + + +saying, “I will give you the land of Canaan, + +The lot of your inheritance,” + + +when you were but a few men in number, + +yes, very few, and foreigners in it. + + +They went about from nation to nation, + +from one kingdom to another people. + + +He allowed no man to do them wrong. + +Yes, he reproved kings for their sakes, + + +“Don’t touch my anointed ones! + +Do my prophets no harm!” + + + +Sing to Yahweh, all the earth! + +Display his salvation from day to day. + + +Declare his glory among the nations, + +and his marvelous works among all the peoples. + + +For great is Yahweh, and greatly to be praised. + +He also is to be feared above all gods. + + +For all the gods of the peoples are idols, + +but Yahweh made the heavens. + + +Honor and majesty are before him. + +Strength and gladness are in his place. + + + +Ascribe to Yahweh, you families of the peoples, + +ascribe to Yahweh glory and strength! + + +Ascribe to Yahweh the glory due to his name. + +Bring an offering, and come before him. + +Worship Yahweh in holy array. + + +Tremble before him, all the earth. + +The world also is established that it can’t be moved. + + +Let the heavens be glad, + +and let the earth rejoice! + +Let them say among the nations, “Yahweh reigns!” + + +Let the sea roar, and its fullness! + +Let the field exult, and all that is in it! + + +Then the trees of the forest will sing for joy before Yahweh, + +for he comes to judge the earth. + + +Oh give thanks to Yahweh, for he is good, + +for his loving kindness endures forever. + + +Say, “Save us, God of our salvation! + +Gather us together and deliver us from the nations, + +to give thanks to your holy name, + +to triumph in your praise.” + + +Blessed be Yahweh, the God of Israel, + +from everlasting even to everlasting. + +

All the people said, “Amen,” and praised Yahweh. + +

+

So he left Asaph and his brothers there before the ark of Yahweh’s covenant, to minister before the ark continually, as every day’s work required; + +and Obed-Edom with their sixty-eight relatives; Obed-Edom also the son of Jeduthun and Hosah to be doorkeepers; + +and Zadok the priest and his brothers the priests, before Yahweh’s tabernacle in the high place that was at Gibeon, + +to offer burnt offerings to Yahweh on the altar of burnt offering continually morning and evening, even according to all that is written in Yahweh’s law, which he commanded to Israel; + +and with them Heman and Jeduthun and the rest who were chosen, who were mentioned by name, to give thanks to Yahweh, because his loving kindness endures forever; + +and with them Heman and Jeduthun with trumpets and cymbals for those that should sound aloud, and with instruments for the songs of God, and the sons of Jeduthun to be at the gate. + +All the people departed, each man to his house; and David returned to bless his house. + +

+ + +

When David was living in his house, David said to Nathan the prophet, “Behold, I live in a cedar house, but the ark of Yahweh’s covenant is in a tent.” + +

+

Nathan said to David, “Do all that is in your heart; for God is with you.” + +

+

That same night, the word of God came to Nathan, saying, + +Go and tell David my servant, ‘Yahweh says, “You shall not build me a house to dwell in; + +for I have not lived in a house since the day that I brought up Israel to this day, but have gone from tent to tent, and from one tent to another. + +In all places in which I have walked with all Israel, did I speak a word with any of the judges of Israel, whom I commanded to be shepherd of my people, saying, ‘Why have you not built me a house of cedar?’”’ + +

+

Now therefore, you shall tell my servant David, ‘Yahweh of Armies says, “I took you from the sheep pen, from following the sheep, to be prince over my people Israel. + +I have been with you wherever you have gone, and have cut off all your enemies from before you. I will make you a name like the name of the great ones who are on the earth. + +I will appoint a place for my people Israel, and will plant them, that they may dwell in their own place, and be moved no more. The children of wickedness will not waste them any more, as at the first, + +and from the day that I commanded judges to be over my people Israel. I will subdue all your enemies. Moreover I tell you that Yahweh will build you a house. + +It will happen, when your days are fulfilled that you must go to be with your fathers, that I will set up your offspring after you, who will be of your sons; and I will establish his kingdom. + +He will build me a house, and I will establish his throne forever. + +I will be his father, and he will be my son. I will not take my loving kindness away from him, as I took it from him who was before you; + +but I will settle him in my house and in my kingdom forever. His throne will be established forever.”’” + +According to all these words, and according to all this vision, so Nathan spoke to David. + +

+

Then David the king went in and sat before Yahweh; and he said, “Who am I, Yahweh God, and what is my house, that you have brought me this far? + +This was a small thing in your eyes, O God, but you have spoken of your servant’s house for a great while to come, and have respected me according to the standard of a man of high degree, Yahweh God. + +What can David say yet more to you concerning the honor which is done to your servant? For you know your servant. + +Yahweh, for your servant’s sake, and according to your own heart, you have done all this greatness, to make known all these great things. + +Yahweh, there is no one like you, neither is there any God besides you, according to all that we have heard with our ears. + +What one nation on the earth is like your people Israel, whom God went to redeem to himself for a people, to make you a name by great and awesome things, in driving out nations from before your people whom you redeemed out of Egypt? + +For you made your people Israel your own people forever; and you, Yahweh, became their God. + +Now, Yahweh, let the word that you have spoken concerning your servant, and concerning his house, be established forever, and do as you have spoken. + +Let your name be established and magnified forever, saying, ‘Yahweh of Armies is the God of Israel, even a God to Israel. The house of David your servant is established before you.’ + +For you, my God, have revealed to your servant that you will build him a house. Therefore your servant has found courage to pray before you. + +Now, Yahweh, you are God, and have promised this good thing to your servant. + +Now it has pleased you to bless the house of your servant, that it may continue forever before you; for you, Yahweh, have blessed, and it is blessed forever.” + +

+ + +

After this, David defeated the Philistines and subdued them, and took Gath and its towns out of the hand of the Philistines. + +He defeated Moab; and the Moabites became servants to David and brought tribute. + +

+

David defeated Hadadezer king of Zobah, toward Hamath, as he went to establish his dominion by the river Euphrates. + +David took from him one thousand chariots, seven thousand horsemen, and twenty thousand footmen; and David hamstrung all the chariot horses, but reserved of them enough for one hundred chariots. + +When the Syrians of Damascus came to help Hadadezer king of Zobah, David struck twenty-two thousand men of the Syrians. + +Then David put garrisons in Syria of Damascus; and the Syrians became servants to David and brought tribute. Yahweh gave victory to David wherever he went. + +David took the shields of gold that were on the servants of Hadadezer, and brought them to Jerusalem. + +From Tibhath and from Cun, cities of Hadadezer, David took very much bronze, with which Solomon made the bronze sea, the pillars, and the vessels of bronze. + +

+

When Tou king of Hamath heard that David had struck all the army of Hadadezer king of Zobah, + +he sent Hadoram his son to King David to greet him and to bless him, because he had fought against Hadadezer and struck him (for Hadadezer had wars with Tou); and he had with him all kinds of vessels of gold and silver and bronze. + +King David also dedicated these to Yahweh, with the silver and the gold that he carried away from all the nations: from Edom, from Moab, from the children of Ammon, from the Philistines, and from Amalek. + +

+

Moreover Abishai the son of Zeruiah struck eighteen thousand of the Edomites in the Valley of Salt. + +He put garrisons in Edom; and all the Edomites became servants to David. Yahweh gave victory to David wherever he went. + +

+

David reigned over all Israel; and he executed justice and righteousness for all his people. + +Joab the son of Zeruiah was over the army; Jehoshaphat the son of Ahilud was recorder; + +Zadok the son of Ahitub and Abimelech the son of Abiathar were priests; Shavsha was scribe; + +and Benaiah the son of Jehoiada was over the Cherethites and the Pelethites; and the sons of David were chief officials serving the king. + +

+ + +

After this, Nahash the king of the children of Ammon died, and his son reigned in his place. + +David said, “I will show kindness to Hanun the son of Nahash, because his father showed kindness to me.” +

+

So David sent messengers to comfort him concerning his father. David’s servants came into the land of the children of Ammon to Hanun to comfort him. + +But the princes of the children of Ammon said to Hanun, “Do you think that David honors your father, in that he has sent comforters to you? Haven’t his servants come to you to search, to overthrow, and to spy out the land?” + +So Hanun took David’s servants, shaved them, and cut off their garments in the middle at their buttocks, and sent them away. + +Then some people went and told David how the men were treated. He sent to meet them; for the men were greatly humiliated. The king said, “Stay at Jericho until your beards have grown, and then return.” + +

+

When the children of Ammon saw that they had made themselves odious to David, Hanun and the children of Ammon sent one thousand talents19:6 +A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons of silver to hire chariots and horsemen out of Mesopotamia, out of Aram-maacah, and out of Zobah. + +So they hired for themselves thirty-two thousand chariots, and the king of Maacah with his people, who came and encamped near Medeba. The children of Ammon gathered themselves together from their cities, and came to battle. + +When David heard of it, he sent Joab with all the army of the mighty men. + +The children of Ammon came out, and put the battle in array at the gate of the city; and the kings who had come were by themselves in the field. + +

+

Now when Joab saw that the battle was set against him before and behind, he chose some of all the choice men of Israel, and put them in array against the Syrians. + +The rest of the people he committed into the hand of Abishai his brother; and they put themselves in array against the children of Ammon. + +He said, “If the Syrians are too strong for me, then you are to help me; but if the children of Ammon are too strong for you, then I will help you. + +Be courageous, and let’s be strong for our people and for the cities of our God. May Yahweh do that which seems good to him.” + +

+

So Joab and the people who were with him came near to the front of the Syrians to the battle; and they fled before him. + +When the children of Ammon saw that the Syrians had fled, they likewise fled before Abishai his brother, and entered into the city. Then Joab came to Jerusalem. + +

+

When the Syrians saw that they were defeated by Israel, they sent messengers and called out the Syrians who were beyond the River,19:16 +or, the Euphrates River with Shophach the captain of the army of Hadadezer leading them. + +David was told that, so he gathered all Israel together, passed over the Jordan, came to 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. + +The Syrians fled before Israel; and David killed of the Syrian men seven thousand charioteers and forty thousand footmen, and also killed Shophach the captain of the army. + +When the servants of Hadadezer saw that they were defeated by Israel, they made peace with David and served him. The Syrians would not help the children of Ammon any more. + +

+ + +

At the time of the return of the year, at the time when kings go out, Joab led out the army and wasted the country of the children of Ammon, and came and besieged Rabbah. But David stayed at Jerusalem. Joab struck Rabbah, and overthrew it. + +David took the crown of their king from off his head, and found it to weigh a talent of gold,20:2 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces and there were precious stones in it. It was set on David’s head, and he brought very much plunder out of the city. + +He brought out the people who were in it, and had them cut with saws, with iron picks, and with axes. David did so to all the cities of the children of Ammon. Then David and all the people returned to Jerusalem. + +

+

After this, war arose at Gezer with the Philistines. Then Sibbecai the Hushathite killed Sippai, of the sons of the giant; and they were subdued. + +

+

Again there was war with the Philistines; and Elhanan the son of Jair killed Lahmi the brother of Goliath the Gittite, the staff of whose spear was like a weaver’s beam. + +There was again war at Gath, where there was a man of great stature, who had twenty-four fingers and toes, six on each hand and six on each foot; and he also was born to the giant. + +When he defied Israel, Jonathan the son of Shimea, David’s brother, killed him. + +These were born to the giant in Gath; and they fell by the hand of David and by the hand of his servants. + +

+ + +

Satan stood up against Israel, and moved David to take a census of Israel. + +David said to Joab and to the princes of the people, “Go, count Israel from Beersheba even to Dan; and bring me word, that I may know how many there are.” + +

+

Joab said, “May Yahweh make his people a hundred times as many as they are. But, my lord the king, aren’t they all my lord’s servants? Why does my lord require this thing? Why will he be a cause of guilt to Israel?” + +

+

Nevertheless the king’s word prevailed against Joab. Therefore Joab departed and went throughout all Israel, then came to Jerusalem. + +Joab gave the sum of the census of the people to David. All those of Israel were one million one hundred thousand men who drew a sword; and in Judah were four hundred seventy thousand men who drew a sword. + +But he didn’t count Levi and Benjamin among them, for the king’s word was abominable to Joab. + +

+

God was displeased with this thing; therefore he struck Israel. + +David said to God, “I have sinned greatly, in that I have done this thing. But now put away, I beg you, the iniquity of your servant, for I have done very foolishly.” + +

+

Yahweh spoke to Gad, David’s seer, saying, + +Go and speak to David, saying, ‘Yahweh says, “I offer you three things. Choose one of them, that I may do it to you.”’” + +

+

So Gad came to David and said to him, “Yahweh says, ‘Take your choice: + +either three years of famine; or three months to be consumed before your foes, while the sword of your enemies overtakes you; or else three days of the sword of Yahweh, even pestilence in the land, and Yahweh’s angel destroying throughout all the borders of Israel. Now therefore consider what answer I shall return to him who sent me.’” + +

+

David said to Gad, “I am in distress. Let me fall, I pray, into Yahweh’s hand, for his mercies are very great. Don’t let me fall into man’s hand.” + +

+

So Yahweh sent a pestilence on Israel, and seventy thousand men of Israel fell. + +God sent an angel to Jerusalem to destroy it. As he was about to destroy, Yahweh saw, and he relented of the disaster, and said to the destroying angel, “It is enough. Now withdraw your hand.” Yahweh’s angel was standing by the threshing floor of Ornan the Jebusite. + +David lifted up his eyes, and saw Yahweh’s angel standing between earth and the sky, having a drawn sword in his hand stretched out over Jerusalem. +

+

Then David and the elders, clothed in sackcloth, fell on their faces. + +David said to God, “Isn’t it I who commanded the people to be counted? It is even I who have sinned and done very wickedly; but these sheep, what have they done? Please let your hand, O Yahweh my God, be against me and against my father’s house; but not against your people, that they should be plagued.” + +

+

Then Yahweh’s angel commanded Gad to tell David that David should go up and raise an altar to Yahweh on the threshing floor of Ornan the Jebusite. + +David went up at the saying of Gad, which he spoke in Yahweh’s name. + +

+

Ornan turned back and saw the angel; and his four sons who were with him hid themselves. Now Ornan was threshing wheat. + +As David came to Ornan, Ornan looked and saw David, and went out of the threshing floor, and bowed himself to David with his face to the ground. + +

+

Then David said to Ornan, “Sell me the place of this threshing floor, that I may build an altar to Yahweh on it. You shall sell it to me for the full price, that the plague may be stopped from afflicting the people.” + +

+

Ornan said to David, “Take it for yourself, and let my lord the king do that which is good in his eyes. Behold, I give the oxen for burnt offerings, and the threshing instruments for wood, and the wheat for the meal offering. I give it all.” + +

+

King David said to Ornan, “No, but I will most certainly buy it for the full price. For I will not take that which is yours for Yahweh, nor offer a burnt offering that costs me nothing.” + +

+

So David gave to Ornan six hundred shekels21:25 +A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces. of gold by weight for the place. + +David built an altar to Yahweh there, and offered burnt offerings and peace offerings, and called on Yahweh; and he answered him from the sky by fire on the altar of burnt offering. + +

+

Then Yahweh commanded the angel, and he put his sword back into its sheath. + +

+

At that time, when David saw that Yahweh had answered him in the threshing floor of Ornan the Jebusite, then he sacrificed there. + +For Yahweh’s tabernacle, which Moses made in the wilderness, and the altar of burnt offering, were at that time in the high place at Gibeon. + +But David couldn’t go before it to inquire of God, for he was afraid because of the sword of Yahweh’s angel. + +

+ + +

Then David said, “This is the house of Yahweh God, and this is the altar of burnt offering for Israel.” + +

+

David gave orders to gather together the foreigners who were in the land of Israel; and he set masons to cut dressed stones to build God’s house. + +David prepared iron in abundance for the nails for the doors of the gates and for the couplings, and bronze in abundance without weight, + +and cedar trees without number, for the Sidonians and the people of Tyre brought cedar trees in abundance to David. + +David said, “Solomon my son is young and tender, and the house that is to be built for Yahweh must be exceedingly magnificent, of fame and of glory throughout all countries. I will therefore make preparation for it.” So David prepared abundantly before his death. + +Then he called for Solomon his son, and commanded him to build a house for Yahweh, the God of Israel. + +David said to Solomon his son, “As for me, it was in my heart to build a house to the name of Yahweh my God. + +But Yahweh’s word came to me, saying, ‘You have shed blood abundantly and have made great wars. You shall not build a house to my name, because you have shed much blood on the earth in my sight. + +Behold, a son shall be born to you, who shall be a man of peace. I will give him rest from all his enemies all around; for his name shall be Solomon, and I will give peace and quietness to Israel in his days. + +He shall build a house for my name; and he will be my son, and I will be his father; and I will establish the throne of his kingdom over Israel forever.’ + +Now, my son, may Yahweh be with you and prosper you, and build the house of Yahweh your God, as he has spoken concerning you. + +May Yahweh give you discretion and understanding, and put you in charge of Israel, so that you may keep the law of Yahweh your God. + +Then you will prosper, if you observe to do the statutes and the ordinances which Yahweh gave Moses concerning Israel. Be strong and courageous. Don’t be afraid and don’t be dismayed. + +Now, behold, in my affliction I have prepared for Yahweh’s house one hundred thousand talents22:14 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 100,000 talents is about 3 metric tons of gold, one million talents22:14 +about 30,000 metric tons of silver, and bronze and iron without weight; for it is in abundance. I have also prepared timber and stone; and you may add to them. + +There are also workmen with you in abundance—cutters and workers of stone and timber, and all kinds of men who are skillful in every kind of work; + +of the gold, the silver, the bronze, and the iron, there is no number. Arise and be doing, and may Yahweh be with you.” + +

+

David also commanded all the princes of Israel to help Solomon his son, saying, + +“Isn’t Yahweh your God with you? Hasn’t he given you rest on every side? For he has delivered the inhabitants of the land into my hand; and the land is subdued before Yahweh and before his people. + +Now set your heart and your soul to follow Yahweh your God. Arise therefore, and build the sanctuary of Yahweh God, to bring the ark of Yahweh’s covenant and the holy vessels of God into the house that is to be built for Yahweh’s name.” + +

+ + +

Now David was old and full of days; and he made Solomon his son king over Israel. + +He gathered together all the princes of Israel, with the priests and the Levites. + +The Levites were counted from thirty years old and upward; and their number by their polls, man by man, was thirty-eight thousand. + +David said, “Of these, twenty-four thousand were to oversee the work of Yahweh’s house, six thousand were officers and judges, + +four thousand were doorkeepers, and four thousand praised Yahweh with the instruments which I made for giving praise.” + +

+

David divided them into divisions according to the sons of Levi: Gershon, Kohath, and Merari. + +

+

Of the Gershonites: Ladan and Shimei. + +The sons of Ladan: Jehiel the chief, Zetham, and Joel, three. + +The sons of Shimei: Shelomoth, Haziel, and Haran, three. These were the heads of the fathers’ households of Ladan. + +The sons of Shimei: Jahath, Zina, Jeush, and Beriah. These four were the sons of Shimei. + +Jahath was the chief, and Zizah the second; but Jeush and Beriah didn’t have many sons; therefore they became a fathers’ house in one reckoning. + +

+

The sons of Kohath: Amram, Izhar, Hebron, and Uzziel, four. + +The sons of Amram: Aaron and Moses; and Aaron was separated that he should sanctify the most holy things, he and his sons forever, to burn incense before Yahweh, to minister to him, and to bless in his name forever. + +But as for Moses the man of God, his sons were named among the tribe of Levi. + +The sons of Moses: Gershom and Eliezer. + +The sons of Gershom: Shebuel the chief. + +The son of Eliezer was Rehabiah the chief; and Eliezer had no other sons, but the sons of Rehabiah were very many. + +The son of Izhar: Shelomith the chief. + +The sons of Hebron: Jeriah the chief, Amariah the second, Jahaziel the third, and Jekameam the fourth. + +The sons of Uzziel: Micah the chief, and Isshiah the second. + +

+

The sons of Merari: Mahli and Mushi. The sons of Mahli: Eleazar and Kish. + +Eleazar died, and had no sons, but daughters only; and their relatives, the sons of Kish, took them as wives. + +The sons of Mushi: Mahli, Eder, and Jeremoth, three. + +

+

These were the sons of Levi after their fathers’ houses, even the heads of the fathers’ houses of those who were counted individually, in the number of names by their polls, who did the work for the service of Yahweh’s house, from twenty years old and upward. + +For David said, “Yahweh, the God of Israel, has given rest to his people; and he dwells in Jerusalem forever. + +Also the Levites will no longer need to carry the tabernacle and all its vessels for its service.” + +For by the last words of David the sons of Levi were counted, from twenty years old and upward. + +For their duty was to wait on the sons of Aaron for the service of Yahweh’s housein the courts, in the rooms, and in the purifying of all holy things, even the work of the service of God’s house; + +for the show bread also, and for the fine flour for a meal offering, whether of unleavened wafers, or of that which is baked in the pan, or of that which is soaked, and for all measurements of quantity and size; + +and to stand every morning to thank and praise Yahweh, and likewise in the evening; + +and to offer all burnt offerings to Yahweh on the Sabbaths, on the new moons, and on the set feasts, in number according to the ordinance concerning them, continually before Yahweh; + +and that they should keep the duty of the Tent of Meeting, the duty of the holy place, and the duty of the sons of Aaron their brothers for the service of Yahweh’s house. + +

+ + +

These were the divisions of the sons of Aaron. The sons of Aaron: Nadab, Abihu, Eleazar, and Ithamar. + +But Nadab and Abihu died before their father, and had no children; therefore Eleazar and Ithamar served as priests. + +David, with Zadok of the sons of Eleazar and Ahimelech of the sons of Ithamar, divided them according to their ordering in their service. + +There were more chief men found of the sons of Eleazar than of the sons of Ithamar; and they were divided like this: of the sons of Eleazar there were sixteen, heads of fathers’ houses; and of the sons of Ithamar, according to their fathers’ houses, eight. + +Thus they were divided impartially by drawing lots; for there were princes of the sanctuary and princes of God, both of the sons of Eleazar, and of the sons of Ithamar. + +Shemaiah the son of Nethanel the scribe, who was of the Levites, wrote them in the presence of the king, the princes, Zadok the priest, Ahimelech the son of Abiathar, and the heads of the fathers’ households of the priests and of the Levites; one fathers’ house being taken for Eleazar, and one taken for Ithamar. + +

+

Now the first lot came out to Jehoiarib, the second to Jedaiah, + +the third to Harim, the fourth to Seorim, + +the fifth to Malchijah, the sixth to Mijamin, + +the seventh to Hakkoz, the eighth to Abijah, + +the ninth to Jeshua, the tenth to Shecaniah, + +the eleventh to Eliashib, the twelfth to Jakim, + +the thirteenth to Huppah, the fourteenth to Jeshebeab, + +the fifteenth to Bilgah, the sixteenth to Immer, + +the seventeenth to Hezir, the eighteenth to Happizzez, + +the nineteenth to Pethahiah, the twentieth to Jehezkel, + +the twenty-first to Jachin, the twenty-second to Gamul, + +the twenty-third to Delaiah, and the twenty-fourth to Maaziah. + +This was their ordering in their service, to come into Yahweh’s house according to the ordinance given to them by Aaron their father, as Yahweh, the God of Israel, had commanded him. + +

+

Of the rest of the sons of Levi: of the sons of Amram, Shubael; of the sons of Shubael, Jehdeiah. + +Of Rehabiah: of the sons of Rehabiah, Isshiah the chief. + +Of the Izharites, Shelomoth; of the sons of Shelomoth, Jahath. + +The sons of Hebron: Jeriah, Amariah the second, Jahaziel the third, and Jekameam the fourth. + +The sons of Uzziel: Micah; of the sons of Micah, Shamir. + +The brother of Micah: Isshiah; of the sons of Isshiah, Zechariah. + +The sons of Merari: Mahli and Mushi. The son of Jaaziah: Beno. + +The sons of Merari by Jaaziah: Beno, Shoham, Zaccur, and Ibri. + +Of Mahli: Eleazar, who had no sons. + +Of Kish, the son of Kish: Jerahmeel. + +The sons of Mushi: Mahli, Eder, and Jerimoth. These were the sons of the Levites after their fathers’ houses. + +These likewise cast lots even as their brothers the sons of Aaron in the presence of David the king, Zadok, Ahimelech, and the heads of the fathers’ households of the priests and of the Levites, the fathers’ households of the chief even as those of his younger brother. + +

+ + +

Moreover, David and the captains of the army set apart for the service certain of the sons of Asaph, of Heman, and of Jeduthun, who were to prophesy with harps, with stringed instruments, and with cymbals. The number of those who did the work according to their service was: + +of the sons of Asaph: Zaccur, Joseph, Nethaniah, and Asharelah. The sons of Asaph were under the hand of Asaph, who prophesied at the order of the king. + +Of Jeduthun, the sons of Jeduthun: Gedaliah, Zeri, Jeshaiah, Shimei, Hashabiah, and Mattithiah, six, under the hands of their father Jeduthun, who prophesied in giving thanks and praising Yahweh with the harp. + +Of Heman, the sons of Heman: Bukkiah, Mattaniah, Uzziel, Shebuel, Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, Romamti-Ezer, Joshbekashah, Mallothi, Hothir, and Mahazioth. + +All these were the sons of Heman the king’s seer in the words of God, to lift up the horn. God gave to Heman fourteen sons and three daughters. + +All these were under the hands of their father for song in Yahweh’s house, with cymbals, stringed instruments, and harps, for the service of God’s house: Asaph, Jeduthun, and Heman being under the order of the king. + +The number of them, with their brothers who were instructed in singing to Yahweh, even all who were skillful, was two hundred eighty-eight. + +They cast lots for their offices, all alike, the small as well as the great, the teacher as well as the student. + +

+

Now the first lot came out for Asaph to Joseph; the second to Gedaliah, he and his brothers and sons were twelve; + +the third to Zaccur, his sons and his brothers, twelve; + +the fourth to Izri, his sons and his brothers, twelve; + +the fifth to Nethaniah, his sons and his brothers, twelve; + +the sixth to Bukkiah, his sons and his brothers, twelve; + +the seventh to Jesharelah, his sons and his brothers, twelve; + +the eighth to Jeshaiah, his sons and his brothers, twelve; + +the ninth to Mattaniah, his sons and his brothers, twelve; + +the tenth to Shimei, his sons and his brothers, twelve; + +the eleventh to Azarel, his sons and his brothers, twelve; + +the twelfth to Hashabiah, his sons and his brothers, twelve; + +for the thirteenth, Shubael, his sons and his brothers, twelve; + +for the fourteenth, Mattithiah, his sons and his brothers, twelve; + +for the fifteenth to Jeremoth, his sons and his brothers, twelve; + +for the sixteenth to Hananiah, his sons and his brothers, twelve; + +for the seventeenth to Joshbekashah, his sons and his brothers, twelve; + +for the eighteenth to Hanani, his sons and his brothers, twelve; + +for the nineteenth to Mallothi, his sons and his brothers, twelve; + +for the twentieth to Eliathah, his sons and his brothers, twelve; + +for the twenty-first to Hothir, his sons and his brothers, twelve; + +for the twenty-second to Giddalti, his sons and his brothers, twelve; + +for the twenty-third to Mahazioth, his sons and his brothers, twelve; + +for the twenty-fourth to Romamti-Ezer, his sons and his brothers, twelve. + +

+ + +

For the divisions of the doorkeepers: of the Korahites, Meshelemiah the son of Kore, of the sons of Asaph. + +Meshelemiah had sons: Zechariah the firstborn, Jediael the second, Zebadiah the third, Jathniel the fourth, + +Elam the fifth, Jehohanan the sixth, and Eliehoenai the seventh. + +Obed-Edom had sons: Shemaiah the firstborn, Jehozabad the second, Joah the third, Sacar the fourth, Nethanel the fifth, + +Ammiel the sixth, Issachar the seventh, and Peullethai the eighth; for God blessed him. + +Sons were also born to Shemaiah his son, who ruled over the house of their father; for they were mighty men of valor. + +The sons of Shemaiah: Othni, Rephael, Obed, and Elzabad, whose relatives were valiant men, Elihu, and Semachiah. + +All these were of the sons of Obed-Edom with their sons and their brothers, able men in strength for the service: sixty-two of Obed-Edom. + +Meshelemiah had sons and brothers, eighteen valiant men. + +Also Hosah, of the children of Merari, had sons: Shimri the chief (for though he was not the firstborn, yet his father made him chief), + +Hilkiah the second, Tebaliah the third, and Zechariah the fourth. All the sons and brothers of Hosah were thirteen. + +

+

Of these were the divisions of the doorkeepers, even of the chief men, having offices like their brothers, to minister in Yahweh’s house. + +They cast lots, the small as well as the great, according to their fathers’ houses, for every gate. + +The lot eastward fell to Shelemiah. Then for Zechariah his son, a wise counselor, they cast lots; and his lot came out northward. + +To Obed-Edom southward; and to his sons the storehouse. + +To Shuppim and Hosah westward, by the gate of Shallecheth, at the causeway that goes up, watchman opposite watchman. + +Eastward were six Levites, northward four a day, southward four a day, and for the storehouse two and two. + +For Parbar westward, four at the causeway, and two at Parbar. + +These were the divisions of the doorkeepers; of the sons of the Korahites, and of the sons of Merari. + +

+

Of the Levites, Ahijah was over the treasures of God’s house and over the treasures of the dedicated things. + +The sons of Ladan, the sons of the Gershonites belonging to Ladan, the heads of the fathers’ households belonging to Ladan the Gershonite: Jehieli. + +The sons of Jehieli: Zetham, and Joel his brother, over the treasures of Yahweh’s house. + +Of the Amramites, of the Izharites, of the Hebronites, of the Uzzielites: + +Shebuel the son of Gershom, the son of Moses, was ruler over the treasuries. + +His brothers: of Eliezer, Rehabiah his son, and Jeshaiah his son, and Joram his son, and Zichri his son, and Shelomoth his son. + +This Shelomoth and his brothers were over all the treasuries of the dedicated things, which David the king, and the heads of the fathers’ households, the captains over thousands and hundreds, and the captains of the army, had dedicated. + +They dedicated some of the plunder won in battles to repair Yahweh’s house. + +All that Samuel the seer, Saul the son of Kish, Abner the son of Ner, and Joab the son of Zeruiah had dedicated, whoever had dedicated anything, it was under the hand of Shelomoth and of his brothers. + +

+

Of the Izharites, Chenaniah and his sons were appointed to the outward business over Israel, for officers and judges. + +Of the Hebronites, Hashabiah and his brothers, one thousand seven hundred men of valor, had the oversight of Israel beyond the Jordan westward, for all the business of Yahweh and for the service of the king. + +Of the Hebronites, Jerijah was the chief of the Hebronites, according to their generations by fathers’ households. They were sought for in the fortieth year of the reign of David, and mighty men of valor were found among them at Jazer of Gilead. + +His relatives, men of valor, were two thousand seven hundred, heads of fathers’ households, whom King David made overseers over the Reubenites, the Gadites, and the half-tribe of the Manassites, for every matter pertaining to God and for the affairs of the king. + +

+ + +

Now the children of Israel after their number, the heads of fathers’ households and the captains of thousands and of hundreds, and their officers who served the king in any matter of the divisions which came in and went out month by month throughout all the months of the yearof every division were twenty-four thousand. + +

+

Over the first division for the first month was Jashobeam the son of Zabdiel. In his division were twenty-four thousand. + +He was of the children of Perez, the chief of all the captains of the army for the first month. + +Over the division of the second month was Dodai the Ahohite and his division, and Mikloth the ruler; and in his division were twenty-four thousand. + +The third captain of the army for the third month was Benaiah, the son of Jehoiada the chief priest. In his division were twenty-four thousand. + +This is that Benaiah who was the mighty man of the thirty and over the thirty. Of his division was Ammizabad his son. + +The fourth captain for the fourth month was Asahel the brother of Joab, and Zebadiah his son after him. In his division were twenty-four thousand. + +The fifth captain for the fifth month was Shamhuth the Izrahite. In his division were twenty-four thousand. + +The sixth captain for the sixth month was Ira the son of Ikkesh the Tekoite. In his division were twenty-four thousand. + +The seventh captain for the seventh month was Helez the Pelonite, of the children of Ephraim. In his division were twenty-four thousand. + +The eighth captain for the eighth month was Sibbecai the Hushathite, of the Zerahites. In his division were twenty-four thousand. + +The ninth captain for the ninth month was Abiezer the Anathothite, of the Benjamites. In his division were twenty-four thousand. + +The tenth captain for the tenth month was Maharai the Netophathite, of the Zerahites. In his division were twenty-four thousand. + +The eleventh captain for the eleventh month was Benaiah the Pirathonite, of the children of Ephraim. In his division were twenty-four thousand. + +The twelfth captain for the twelfth month was Heldai the Netophathite, of Othniel. In his division were twenty-four thousand. + +

+

Furthermore over the tribes of Israel: of the Reubenites, Eliezer the son of Zichri was the ruler; of the Simeonites, Shephatiah the son of Maacah; + +of Levi, Hashabiah the son of Kemuel; of Aaron, Zadok; + +of Judah, Elihu, one of the brothers of David; of Issachar, Omri the son of Michael; + +of Zebulun, Ishmaiah the son of Obadiah; of Naphtali, Jeremoth the son of Azriel; + +of the children of Ephraim, Hoshea the son of Azaziah; of the half-tribe of Manasseh, Joel the son of Pedaiah; + +of the half-tribe of Manasseh in Gilead, Iddo the son of Zechariah; of Benjamin, Jaasiel the son of Abner; + +of Dan, Azarel the son of Jeroham. These were the captains of the tribes of Israel. + +But David didn’t take the number of them from twenty years old and under, because Yahweh had said he would increase Israel like the stars of the sky. + +Joab the son of Zeruiah began to take a census, but didn’t finish; and wrath came on Israel for this. The number wasn’t put into the account in the chronicles of King David. + +

+

Over the king’s treasures was Azmaveth the son of Adiel. Over the treasures in the fields, in the cities, in the villages, and in the towers was Jonathan the son of Uzziah; + +Over those who did the work of the field for tillage of the ground was Ezri the son of Chelub. + +Over the vineyards was Shimei the Ramathite. Over the increase of the vineyards for the wine cellars was Zabdi the Shiphmite. + +Over the olive trees and the sycamore trees that were in the lowland was Baal Hanan the Gederite. Over the cellars of oil was Joash. + +Over the herds that fed in Sharon was Shitrai the Sharonite. Over the herds that were in the valleys was Shaphat the son of Adlai. + +Over the camels was Obil the Ishmaelite. Over the donkeys was Jehdeiah the Meronothite. Over the flocks was Jaziz the Hagrite. + +All these were the rulers of the property which was King David’s. + +

+

Also Jonathan, David’s uncle, was a counselor, a man of understanding, and a scribe. Jehiel the son of Hachmoni was with the king’s sons. + +Ahithophel was the king’s counselor. Hushai the Archite was the king’s friend. + +After Ahithophel was Jehoiada the son of Benaiah, and Abiathar. Joab was the captain of the king’s army. + +

+ + +

David assembled all the princes of Israel, the princes of the tribes, the captains of the companies who served the king by division, the captains of thousands, the captains of hundreds, and the rulers over all the substance and possessions of the king and of his sons, with the officers and the mighty men, even all the mighty men of valor, to Jerusalem. + +Then David the king stood up on his feet and said, “Hear me, my brothers and my people! As for me, it was in my heart to build a house of rest for the ark of Yahweh’s covenant, and for the footstool of our God; and I had prepared for the building. + +But God said to me, ‘You shall not build a house for my name, because you are a man of war and have shed blood.’ + +However Yahweh, the God of Israel, chose me out of all the house of my father to be king over Israel forever. For he has chosen Judah to be prince; and in the house of Judah, the house of my father; and among the sons of my father he took pleasure in me to make me king over all Israel. + +Of all my sons (for Yahweh has given me many sons), he has chosen Solomon my son to sit on the throne of Yahweh’s kingdom over Israel. + +He said to me, ‘Solomon, your son, shall build my house and my courts; for I have chosen him to be my son, and I will be his father. + +I will establish his kingdom forever if he continues to do my commandments and my ordinances, as it is today.’ + +

+

Now therefore, in the sight of all Israel, Yahweh’s assembly, and in the audience of our God, observe and seek out all the commandments of Yahweh your God, that you may possess this good land, and leave it for an inheritance to your children after you forever. + +

+

You, Solomon my son, know the God of your father, and serve him with a perfect heart and with a willing mind; for Yahweh searches all hearts, and understands all the imaginations of the thoughts. If you seek him, he will be found by you; but if you forsake him, he will cast you off forever. + +Take heed now, for Yahweh has chosen you to build a house for the sanctuary. Be strong, and do it.” + +

+

Then David gave to Solomon his son the plans for the porch of the temple, for its houses, for its treasuries, for its upper rooms, for its inner rooms, for the place of the mercy seat; + +and the plans of all that he had by the Spirit, for the courts of Yahweh’s house, for all the surrounding rooms, for the treasuries of God’s house, and for the treasuries of the dedicated things; + +also for the divisions of the priests and the Levites, for all the work of the service of Yahweh’s house, and for all the vessels of service in Yahweh’s house— + +of gold by weight for the gold for all vessels of every kind of service, for all the vessels of silver by weight, for all vessels of every kind of service; + +by weight also for the lamp stands of gold, and for its lamps, of gold, by weight for every lamp stand and for its lamps; and for the lamp stands of silver, by weight for every lamp stand and for its lamps, according to the use of every lamp stand; + +and the gold by weight for the tables of show bread, for every table; and silver for the tables of silver; + +and the forks, the basins, and the cups, of pure gold; and for the golden bowls by weight for every bowl; and for the silver bowls by weight for every bowl; + +and for the altar of incense, refined gold by weight; and gold for the plans for the chariot, and the cherubim that spread out and cover the ark of Yahweh’s covenant. + +All this”, David said, “I have been made to understand in writing from Yahweh’s hand, even all the works of this pattern.” + +

+

David said to Solomon his son, “Be strong and courageous, and do it. Don’t be afraid, nor be dismayed, for Yahweh God, even my God, is with you. He will not fail you nor forsake you, until all the work for the service of Yahweh’s house is finished. + +Behold, there are the divisions of the priests and the Levites for all the service of God’s house. Every willing man who has skill for any kind of service shall be with you in all kinds of work. Also the captains and all the people will be entirely at your command.” + +

+ + +

David the king said to all the assembly, “Solomon my son, whom alone God has chosen, is yet young and tender, and the work is great; for the palace is not for man, but for Yahweh God. + +Now I have prepared with all my might for the house of my God the gold for the things of gold, the silver for the things of silver, the bronze for the things of bronze, iron for the things of iron, and wood for the things of wood, also onyx stones, stones to be set, stones for inlaid work of various colors, all kinds of precious stones, and marble stones in abundance. + +In addition, because I have set my affection on the house of my God, since I have a treasure of my own of gold and silver, I give it to the house of my God, over and above all that I have prepared for the holy house: + +even three thousand talents of gold,29:4 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 3000 talents is about 90 metric tons of the gold of Ophir, and seven thousand talents29:4 +about 210 metric tons of refined silver, with which to overlay the walls of the houses; + +of gold for the things of gold, and of silver for the things of silver, and for all kinds of work to be made by the hands of artisans. Who then offers willingly to consecrate himself today to Yahweh?” + +

+

Then the princes of the fathers’ households, and the princes of the tribes of Israel, and the captains of thousands and of hundreds, with the rulers over the king’s work, offered willingly; + +and they gave for the service of God’s house of gold five thousand talents29:7 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 5000 talents is about 150 metric tons and ten thousand darics,29:7 +a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each. of silver ten thousand talents, of bronze eighteen thousand talents, and of iron one hundred thousand talents. + +People with whom precious stones were found gave them to the treasure of Yahweh’s house, under the hand of Jehiel the Gershonite. + +Then the people rejoiced, because they offered willingly, because with a perfect heart they offered willingly to Yahweh; and David the king also rejoiced with great joy. + +

+

Therefore David blessed Yahweh before all the assembly; and David said, “You are blessed, Yahweh, the God of Israel our father, forever and ever. + +Yours, Yahweh, is the greatness, the power, the glory, the victory, and the majesty! For all that is in the heavens and on the earth is yours. Yours is the kingdom, Yahweh, and you are exalted as head above all. + +Both riches and honor come from you, and you rule over all! In your hand is power and might! It is in your hand to make great, and to give strength to all! + +Now therefore, our God, we thank you and praise your glorious name. + +But who am I, and what is my people, that we should be able to offer so willingly as this? For all things come from you, and we have given you of your own. + +For we are strangers before you and foreigners, as all our fathers were. Our days on the earth are as a shadow, and there is no remaining. + +Yahweh our God, all this store that we have prepared to build you a house for your holy name comes from your hand, and is all your own. + +I know also, my God, that you try the heart and have pleasure in uprightness. As for me, in the uprightness of my heart I have willingly offered all these things. Now I have seen with joy your people, who are present here, offer willingly to you. + +Yahweh, the God of Abraham, of Isaac, and of Israel, our fathers, keep this desire forever in the thoughts of the heart of your people, and prepare their heart for you; + +and give to Solomon my son a perfect heart, to keep your commandments, your testimonies, and your statutes, and to do all these things, and to build the palace, for which I have made provision.” + +

+

Then David said to all the assembly, “Now bless Yahweh your God!” +

+

All the assembly blessed Yahweh, the God of their fathers, and bowed down their heads and prostrated themselves before Yahweh and the king. + +They sacrificed sacrifices to Yahweh and offered burnt offerings to Yahweh on the next day after that day, even one thousand bulls, one thousand rams, and one thousand lambs, with their drink offerings and sacrifices in abundance for all Israel, + +and ate and drank before Yahweh on that day with great gladness. They made Solomon the son of David king the second time, and anointed him before Yahweh to be prince, and Zadok to be priest. + +

+

Then Solomon sat on the throne of Yahweh as king instead of David his father, and prospered; and all Israel obeyed him. + +All the princes, the mighty men, and also all of the sons of King David submitted themselves to Solomon the king. + +Yahweh magnified Solomon exceedingly in the sight of all Israel, and gave to him such royal majesty as had not been on any king before him in Israel. + +

+

Now David the son of Jesse reigned over all Israel. + +The time that he reigned over Israel was forty years; he reigned seven years in Hebron, and he reigned thirty-three years in Jerusalem. + +He died at a good old age, full of days, riches, and honor; and Solomon his son reigned in his place. + +Now the acts of David the king, first and last, behold, they are written in the history of Samuel the seer, and in the history of Nathan the prophet, and in the history of Gad the seer, + +with all his reign and his might, and the events that involved him, Israel, and all the kingdoms of the lands. + +

+
+World English Bible (WEB) +2 Chronicles +The Second Book of Chronicles +2 Chronicles +2Ch +

The Second Book of Chronicles +

+ + +

Solomon the son of David was firmly established in his kingdom, and Yahweh1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. his God1:1 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). was with him, and made him exceedingly great. + +

+

Solomon spoke to all Israel, to the captains of thousands and of hundreds, to the judges, and to every prince in all Israel, the heads of the fathers’ households. + +Then Solomon, and all the assembly with him, went to the high place that was at Gibeon; for God’s Tent of Meeting was there, which Yahweh’s servant Moses had made in the wilderness. + +But David had brought God’s ark up from Kiriath Jearim to the place that David had prepared for it; for he had pitched a tent for it at Jerusalem. + +Moreover the bronze altar that Bezalel the son of Uri, the son of Hur, had made was there before Yahweh’s tabernacle; and Solomon and the assembly were seeking counsel there. + +Solomon went up there to the bronze altar before Yahweh, which was at the Tent of Meeting, and offered one thousand burnt offerings on it. + +

+

That night, God appeared to Solomon and said to him, “Ask for what you want me to give you.” + +

+

Solomon said to God, “You have shown great loving kindness to David my father, and have made me king in his place. + +Now, Yahweh God, let your promise to David my father be established; for you have made me king over a people like the dust of the earth in multitude. + +Now give me wisdom and knowledge, that I may go out and come in before this people; for who can judge this great people of yours?” + +

+

God said to Solomon, “Because this was in your heart, and you have not asked riches, wealth, honor, or the life of those who hate you, nor yet have you asked for long life; but have asked for wisdom and knowledge for yourself, that you may judge my people, over whom I have made you king, + +therefore wisdom and knowledge is granted to you. I will give you riches, wealth, and honor, such as none of the kings have had who have been before you, and none after you will have.” + +

+

So Solomon came from the high place that was at Gibeon, from before the Tent of Meeting, to Jerusalem; and he reigned over Israel. + +

+

Solomon gathered chariots and horsemen. He had one thousand four hundred chariots and twelve thousand horsemen that he placed in the chariot cities, and with the king at Jerusalem. + +The king made silver and gold to be as common as stones in Jerusalem, and he made cedars to be as common as the sycamore trees that are in the lowland. + +The horses which Solomon had were brought out of Egypt and from Kue. The king’s merchants purchased them from Kue. + +They imported from Egypt then exported a chariot for six hundred pieces of silver and a horse for one hundred fifty.1:17 +The pieces of silver were probably shekels, so 600 pieces would be about 13.2 pounds or 6 kilograms of silver, and 150 would be about 3.3 pounds or 1.5 kilograms of silver. They also exported them to the Hittite kings and the Syrian1:17 +or, Aramean kings. + +

+ + +

Now Solomon decided to build a house for Yahweh’s name, and a house for his kingdom. + +Solomon counted out seventy thousand men to bear burdens, eighty thousand men who were stone cutters in the mountains, and three thousand six hundred to oversee them. + +

+

Solomon sent to Huram the king of Tyre, saying, “As you dealt with David my father, and sent him cedars to build him a house in which to dwell, so deal with me. + +Behold,2:4 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I am about to build a house for the name of Yahweh my God, to dedicate it to him, to burn before him incense of sweet spices, for the continual show bread, and for the burnt offerings morning and evening, on the Sabbaths, on the new moons, and on the set feasts of Yahweh our God. This is an ordinance forever to Israel. + +

+

The house which I am building will be great, for our God is greater than all gods. + +But who is able to build him a house, since heaven and the heaven of heavens can’t contain him? Who am I then, that I should build him a house, except just to burn incense before him? + +

+

Now therefore send me a man skillful to work in gold, in silver, in bronze, in iron, and in purple, crimson, and blue, and who knows how to engrave engravings, to be with the skillful men who are with me in Judah and in Jerusalem, whom David my father provided. + +

+

“Send me also cedar trees, cypress trees, and algum trees out of Lebanon, for I know that your servants know how to cut timber in Lebanon. Behold, my servants will be with your servants, + +even to prepare timber in abundance for me; for the house which I am about to build will be great and wonderful. + +Behold, I will give to your servants, the cutters who cut timber, twenty thousand cors2:10 +1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels, so 20,000 cors of wheat would weigh about 545 metric tons of beaten wheat, twenty thousand baths2:10 +1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 20,000 baths of barley would weigh about 262 metric tons. of barley, twenty thousand baths of wine, and twenty thousand baths of oil.” + +

+

Then Huram the king of Tyre answered in writing, which he sent to Solomon, “Because Yahweh loves his people, he has made you king over them.” + +Huram continued, “Blessed be Yahweh, the God of Israel, who made heaven and earth, who has given to David the king a wise son, endowed with discretion and understanding, who would build a house for Yahweh and a house for his kingdom. + +

+

Now I have sent a skillful man, endowed with understanding, Huram-abi,2:13 +or, Huram, my father + +the son of a woman of the daughters of Dan; and his father was a man of Tyre. He is skillful to work in gold, in silver, in bronze, in iron, in stone, in timber, in purple, in blue, in fine linen, and in crimson, also to engrave any kind of engraving and to devise any device, that there may be a place appointed to him with your skillful men, and with the skillful men of my lord David your father. + +

+

Now therefore, the wheat, the barley, the oil, and the wine which my lord has spoken of, let him send to his servants; + +and we will cut wood out of Lebanon, as much as you need. We will bring it to you in rafts by sea to Joppa; then you shall carry it up to Jerusalem.” + +

+

Solomon counted all the foreigners who were in the land of Israel, after the census with which David his father had counted them; and they found one hundred fifty-three thousand six hundred. + +He set seventy thousand of them to bear burdens, eighty thousand who were stone cutters in the mountains, and three thousand six hundred overseers to assign the people their work. + +

+ + +

Then Solomon began to build Yahweh’s house at Jerusalem on Mount Moriah, where Yahweh appeared to David his father, which he prepared in the place that David had appointed, on the threshing floor of Ornan the Jebusite. + +He began to build in the second day of the second month, in the fourth year of his reign. + +Now these are the foundations which Solomon laid for the building of God’s house: the length by cubits3:3 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. after the first measure was sixty cubits, and the width twenty cubits. + +The porch that was in front, its length, across the width of the house, was twenty cubits, and the height one hundred twenty; and he overlaid it within with pure gold. + +He made the larger room with a ceiling of cypress wood, which he overlaid with fine gold, and ornamented it with palm trees and chains. + +He decorated the house with precious stones for beauty. The gold was gold from Parvaim. + +He also overlaid the house, the beams, the thresholds, its walls, and its doors with gold, and engraved cherubim on the walls. + +

+

He made the most holy place. Its length, according to the width of the house, was twenty cubits, and its width twenty cubits; and he overlaid it with fine gold, amounting to six hundred talents.3:8 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 600 talents is about 18 metric tons + +The weight of the nails was fifty shekels3:9 +A shekel is about 10 grams or about 0.32 Troy ounces, so 50 shekels was about 0.5 kilograms or about 16 Troy ounces. of gold. He overlaid the upper rooms with gold. + +

+

In the most holy place he made two cherubim by carving, and they overlaid them with gold. + +The wings of the cherubim were twenty cubits long: the wing of the one was five cubits, reaching to the wall of the house; and the other wing was five cubits, reaching to the wing of the other cherub. + +The wing of the other cherub was five cubits, reaching to the wall of the house; and the other wing was five cubits, joining to the wing of the other cherub. + +The wings of these cherubim spread themselves out twenty cubits. They stood on their feet, and their faces were toward the house. + +He made the veil of blue, purple, crimson, and fine linen, and ornamented it with cherubim. + +

+

Also he made before the house two pillars thirty-five cubits high, and the capital that was on the top of each of them was five cubits. + +He made chains in the inner sanctuary, and put them on the tops of the pillars; and he made one hundred pomegranates, and put them on the chains. + +He set 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. + +

+ + +

Then he made an altar of bronze, twenty cubits4:1 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. long, twenty cubits wide, and ten cubits high. + +Also he made the molten sea4:2 +or, pool, or, reservoir of ten cubits from brim to brim. It was round, five cubits high, and thirty cubits in circumference. + +Under it was the likeness of oxen, which encircled it, for ten cubits, encircling the sea. The oxen were in two rows, cast when it was cast. + +It stood on twelve oxen, three looking toward the north, three looking toward the west, three looking toward the south, and three looking toward the east; and the sea was set on them above, and all their hindquarters were inward. + +It was a handbreadth thick. Its brim was made like the brim of a cup, like the flower of a lily. It received and held three thousand baths.4:5 +A bath is about 5.6 U. S. gallons or 21.1 liters, so 3,000 baths is about 16,800 gallons or 63.3 kiloliters. + +He also made ten basins, and put five on the right hand and five on the left, to wash in them. The things that belonged to the burnt offering were washed in them, but the sea was for the priests to wash in. + +

+

He made the ten lamp stands of gold according to the ordinance concerning them; and he set them in the temple, five on the right hand and five on the left. + +He made also ten tables, and placed them in the temple, five on the right side and five on the left. He made one hundred basins of gold. + +Furthermore he made the court of the priests, the great court, and doors for the court, and overlaid their doors with bronze. + +He set the sea on the right side of the house eastward, toward the south. + +

+

Huram made the pots, the shovels, and the basins. +

+

So Huram finished doing the work that he did for King Solomon in God’s house: + +the two pillars, the bowls, the two capitals which were on the top of the pillars, the two networks to cover the two bowls of the capitals that were on the top of the pillars, + +and the four hundred pomegranates for the two networkstwo rows of pomegranates for each network, to cover the two bowls of the capitals that were on the pillars. + +He also made the bases, and he made the basins on the bases— + +one sea, and the twelve oxen under it. + +Huram-abi4:16 +“abi” means “his father” also made the pots, the shovels, the forks, and all its vessels for King Solomon, for Yahweh’s house, of bright bronze. + +The king cast them in the plain of the Jordan, in the clay ground between Succoth and Zeredah. + +Thus Solomon made all these vessels in great abundance, so that the weight of the bronze could not be determined. + +

+

Solomon made all the vessels that were in God’s house: the golden altar, the tables with the show bread on them, + +and the lamp stands with their lamps to burn according to the ordinance before the inner sanctuary, of pure gold; + +and the flowers, the lamps, and the tongs of gold that was purest gold; + +and the snuffers, the basins, the spoons, and the fire pans of pure gold. As for the entry of the house, its inner doors for the most holy place and the doors of the main hall of the temple were of gold. + +

+ + +

Thus all the work that Solomon did for Yahweh’s house was finished. Solomon brought in the things that David his father had dedicated, even the silver, the gold, and all the vessels, and put them in the treasuries of God’s house. + +

+

Then Solomon assembled the elders of Israel and all the heads of the tribes, the princes of the fathers’ households of the children of Israel, to Jerusalem, to bring up the ark of Yahweh’s covenant out of David’s city, which is Zion. + +So all the men of Israel assembled themselves to the king at the feast, which was in the seventh month. + +All the elders of Israel came. The Levites took up the ark. + +They brought up the ark, the Tent of Meeting, and all the holy vessels that were in the Tent. The Levitical priests brought these up. + +King Solomon and all the congregation of Israel who were assembled to him were before the ark, sacrificing sheep and cattle that could not be counted or numbered for multitude. + +The priests brought in the ark of Yahweh’s covenant to its place, into the inner sanctuary of the house, to the most holy place, even under the wings of the cherubim. + +For the cherubim spread out their wings over the place of the ark, and the cherubim covered the ark and its poles above. + +The poles were so long that the ends of the poles were seen from the ark in front of the inner sanctuary, but they were not seen outside; and it is there to this day. + +There was nothing in the ark except the two tablets which Moses put there at Horeb, when Yahweh made a covenant with the children of Israel, when they came out of Egypt. + +

+

When the priests had come out of the holy place (for all the priests who were present had sanctified themselves, and didn’t keep their divisions; + +also the Levites who were the singers, all of them, even Asaph, Heman, Jeduthun, and their sons and their brothers, arrayed in fine linen, with cymbals and stringed instruments and harps, stood at the east end of the altar, and with them one hundred twenty priests sounding with trumpets); + +when the trumpeters and singers were as one, to make one sound to be heard in praising and thanking Yahweh; and when they lifted up their voice with the trumpets and cymbals and instruments of music, and praised Yahweh, saying, +

+For he is good, + +for his loving kindness endures forever!” + +

then the house was filled with a cloud, even Yahweh’s house, + +so that the priests could not stand to minister by reason of the cloud; for Yahweh’s glory filled God’s house. + +

+ + +

Then Solomon said, “Yahweh has said that he would dwell in the thick darkness. + +But I have built you a house and home, a place for you to dwell in forever.” + +

+

The king turned his face, and blessed all the assembly of Israel; and all the assembly of Israel stood. + +

+

He said, “Blessed be Yahweh, the God of Israel, who spoke with his mouth to David my father, and has with his hands fulfilled it, saying, + +Since the day that I brought my people out of the land of Egypt, I chose no city out of all the tribes of Israel to build a house in, that my name might be there, and I chose no man to be prince over my people Israel; + +but now I have chosen Jerusalem, that my name might be there; and I have chosen David to be over my people Israel.’ + +Now it was in the heart of David my father to build a house for the name of Yahweh, the God of Israel. + +But Yahweh said to David my father, ‘Whereas it was in your heart to build a house for my name, you did well that it was in your heart; + +nevertheless you shall not build the house, but your son who will come out of your body, he shall build the house for my name.’ + +

+

Yahweh has performed his word that he spoke; for I have risen up in the place of David my father, and sit on the throne of Israel, as Yahweh promised, and have built the house for the name of Yahweh, the God of Israel. + +There I have set the ark, in which is Yahweh’s covenant, which he made with the children of Israel.” + +

+

He stood before Yahweh’s altar in the presence of all the assembly of Israel, and spread out his hands + +(for Solomon had made a bronze platform, five cubits6:13 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. long, five cubits wide, and three cubits high, and had set it in the middle of the court; and he stood on it, and knelt down on his knees before all the assembly of Israel, and spread out his hands toward heaven). + +Then he said, “Yahweh, the God of Israel, there is no God like you in heaven or on earthyou who keep covenant and loving kindness with your servants who walk before you with all their heart; + +who have kept with your servant David my father that which you promised him. Yes, you spoke with your mouth, and have fulfilled it with your hand, as it is today. + +

+

Now therefore, Yahweh, the God of Israel, keep with your servant David my father that which you have promised him, saying, ‘There shall not fail you a man in my sight to sit on the throne of Israel, if only your children take heed to their way, to walk in my law as you have walked before me.’ + +Now therefore, Yahweh, the God of Israel, let your word be verified, which you spoke to your servant David. + +

+

But will God indeed dwell with men on the earth? Behold, heaven and the heaven of heavens can’t contain you; how much less this house which I have built! + +Yet have respect for the prayer of your servant and to his supplication, Yahweh my God, to listen to the cry and to the prayer which your servant prays before you; + +that your eyes may be open toward this house day and night, even toward the place where you have said that you would put your name, to listen to the prayer which your servant will pray toward this place. + +Listen to the petitions of your servant and of your people Israel, when they pray toward this place. Yes, hear from your dwelling place, even from heaven; and when you hear, forgive. + +

+

If a man sins against his neighbor, and an oath is laid on him to cause him to swear, and he comes and swears before your altar in this house, + +then hear from heaven, act, and judge your servants, bringing retribution to the wicked, to bring his way on his own head; and justifying the righteous, to give him according to his righteousness. + +

+

If your people Israel are struck down before the enemy because they have sinned against you, and they turn again and confess your name, and pray and make supplication before you in this house, + +then hear from heaven, and forgive the sin of your people Israel, and bring them again to the land which you gave to them and to their fathers. + +

+

When the sky is shut up and there is no rain because they have sinned against you, if they pray toward this place and confess your name, and turn from their sin when you afflict them, + +then hear in heaven, and forgive the sin of your servants, your people Israel, when you teach them the good way in which they should walk, and send rain on your land, which you have given to your people for an inheritance. + +

+

If there is famine in the land, if there is pestilence, if there is blight or mildew, locust or caterpillar; if their enemies besiege them in the land of their cities; whatever plague or whatever sickness there is— + +whatever prayer and supplication is made by any man, or by all your people Israel, who will each know his own plague and his own sorrow, and shall spread out his hands toward this house, + +then hear from heaven your dwelling place and forgive, and give to every man according to all his ways, whose heart you know (for you, even you only, know the hearts of the children of men), + +that they may fear you, to walk in your ways as long as they live in the land which you gave to our fathers. + +

+

Moreover, concerning the foreigner, who is not of your people Israel, when he comes from a far country for your great name’s sake and your mighty hand and your outstretched arm, when they come and pray toward this house, + +then hear from heaven, even from your dwelling place, and do according to all that the foreigner calls to you for; that all the peoples of the earth may know your name and fear you, as do your people Israel, and that they may know that this house which I have built is called by your name. + +

+

If your people go out to battle against their enemies, by whatever way you send them, and they pray to you toward this city which you have chosen, and the house which I have built for your name; + +then hear from heaven their prayer and their supplication, and maintain their cause. + +

+

If they sin against you (for there is no man who doesn’t sin), and you are angry with them and deliver them to the enemy, so that they carry them away captive to a land far off or near; + +yet if they come to their senses in the land where they are carried captive, and turn again, and make supplication to you in the land of their captivity, saying, ‘We have sinned, we have done perversely, and have dealt wickedly;’ + +if they return to you with all their heart and with all their soul in the land of their captivity, where they have been taken captive, and pray toward their land which you gave to their fathers, and the city which you have chosen, and toward the house which I have built for your name; + +then hear from heaven, even from your dwelling place, their prayer and their petitions, and maintain their cause, and forgive your people who have sinned against you. + +

+

Now, my God, let, I beg you, your eyes be open, and let your ears be attentive to the prayer that is made in this place. + +

+

Now therefore arise, Yahweh God, into your resting place, you, and the ark of your strength. Let your priests, Yahweh God, be clothed with salvation, and let your saints rejoice in goodness. + +

+

Yahweh God, don’t turn away the face of your anointed. Remember your loving kindnesses to David your servant.” + +

+ + +

Now when Solomon had finished praying, fire came down from heaven and consumed the burnt offering and the sacrifices; and Yahweh’s glory filled the house. + +The priests could not enter into Yahweh’s house, because Yahweh’s glory filled Yahweh’s house. + +All the children of Israel looked on, when the fire came down, and Yahweh’s glory was on the house. They bowed themselves with their faces to the ground on the pavement, worshiped, and gave thanks to Yahweh, saying, +

+For he is good, + +for his loving kindness endures forever!” + + +

Then the king and all the people offered sacrifices before Yahweh. + +King Solomon offered a sacrifice of twenty-two thousand head of cattle and a hundred twenty thousand sheep. So the king and all the people dedicated God’s house. + +The priests stood, according to their positions; the Levites also with instruments of music of Yahweh, which David the king had made to give thanks to Yahweh, when David praised by their ministry, saying “For his loving kindness endures forever.” The priests sounded trumpets before them; and all Israel stood. + +

+

Moreover Solomon made the middle of the court that was before Yahweh’s house holy; for there he offered the burnt offerings and the fat of the peace offerings, because the bronze altar which Solomon had made was not able to receive the burnt offering, the meal offering, and the fat. + +

+

So Solomon held the feast at that time for seven days, and all Israel with him, a very great assembly, from the entrance of Hamath to the brook of Egypt. + +

+

On the eighth day, they held a solemn assembly; for they kept the dedication of the altar seven days, and the feast seven days. + +On the twenty-third day of the seventh month, he sent the people away to their tents, joyful and glad of heart for the goodness that Yahweh had shown to David, to Solomon, and to Israel his people. + +

+

Thus Solomon finished Yahweh’s house and the king’s house; and he successfully completed all that came into Solomon’s heart to make in Yahweh’s house and in his own house. + +

+

Then Yahweh appeared to Solomon by night, and said to him, “I have heard your prayer, and have chosen this place for myself for a house of sacrifice. + +

+

If I shut up the sky so that there is no rain, or if I command the locust to devour the land, or if I send pestilence among my people, + +if my people who are called by my name will humble themselves, pray, seek my face, and turn from their wicked ways, then I will hear from heaven, will forgive their sin, and will heal their land. + +Now my eyes will be open and my ears attentive to prayer that is made in this place. + +For now I have chosen and made this house holy, that my name may be there forever; and my eyes and my heart will be there perpetually. + +

+

As for you, if you will walk before me as David your father walked, and do according to all that I have commanded you, and will keep my statutes and my ordinances, + +then I will establish the throne of your kingdom, according as I covenanted with David your father, saying, ‘There shall not fail you a man to be ruler in Israel.’ + +

+

But if you turn away and forsake my statutes and my commandments which I have set before you, and go and serve other gods and worship them, + +then I will pluck them up by the roots out of my land which I have given them; and this house, which I have made holy for my name, I will cast out of my sight, and I will make it a proverb and a byword among all peoples. + +This house, which is so high, everyone who passes by it will be astonished and say, ‘Why has Yahweh done this to this land and to this house?’ + +They shall answer, ‘Because they abandoned Yahweh, the God of their fathers, who brought them out of the land of Egypt, and took other gods, worshiped them, and served them. Therefore he has brought all this evil on them.’” + +

+ + +

At the end of twenty years, in which Solomon had built Yahweh’s house and his own house, + +Solomon built the cities which Huram had given to Solomon, and caused the children of Israel to dwell there. + +

+

Solomon went to Hamath Zobah, and prevailed against it. + +He built Tadmor in the wilderness, and all the storage cities, which he built in Hamath. + +Also he built Beth Horon the upper and Beth Horon the lower, fortified cities with walls, gates, and bars; + +and Baalath, and all the storage cities that Solomon had, and all the cities for his chariots, the cities for his horsemen, and all that Solomon desired to build for his pleasure in Jerusalem, in Lebanon, and in all the land of his dominion. + +

+

As for all the people who were left of the Hittites, the Amorites, the Perizzites, the Hivites, and the Jebusites, who were not of Israel— + +of their children who were left after them in the land, whom the children of Israel didn’t consumeof them Solomon conscripted forced labor to this day. + +But of the children of Israel, Solomon made no servants for his work, but they were men of war, chief of his captains, and rulers of his chariots and of his horsemen. + +These were the chief officers of King Solomon, even two-hundred fifty, who ruled over the people. + +

+

Solomon brought up Pharaoh’s daughter out of David’s city to 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 where Yahweh’s ark has come are holy.” + +

+

Then Solomon offered burnt offerings to Yahweh on Yahweh’s altar which he had built before the porch, + +even as the duty of every day required, offering according to the commandment of Moses on the Sabbaths, on the new moons, and on the set feasts, three times per year, during the feast of unleavened bread, during the feast of weeks, and during the feast of booths.8:13 +or, feast of tents (Sukkot) + +

+

He appointed, according to the ordinance of David his father, the divisions of the priests to their service, and the Levites to their offices, to praise and to minister before the priests, as the duty of every day required, the doorkeepers also by their divisions at every gate, for David the man of God had so commanded. + +They didn’t depart from the commandment of the king to the priests and Levites concerning any matter or concerning the treasures. + +

+

Now all the work of Solomon was accomplished from the day of the foundation of Yahweh’s house until it was finished. So Yahweh’s house was completed. + +

+

Then Solomon went to Ezion Geber and to Eloth, on the seashore in the land of Edom. + +Huram sent him ships and servants who had knowledge of the sea by the hands of his servants; and they came with the servants of Solomon to Ophir, and brought from there four hundred fifty talents8:18 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 450 talents is about 13.5 metric tons of gold, and brought them to King Solomon. + +

+ + +

When the queen of Sheba heard of the fame of Solomon, she came to test Solomon with hard questions at Jerusalem, with a very great caravan, including camels that bore spices, gold in abundance, and precious stones. When she had come to Solomon, she talked with him about all that was in her heart. + +Solomon answered all her questions. There wasn’t anything hidden from Solomon which he didn’t tell her. + +When the queen of Sheba had seen the wisdom of Solomon, the house that he had built, + +the food of his table, the seating of his servants, the attendance of his ministers, their clothing, his cup bearers and their clothing, and his ascent by which he went up to Yahweh’s house, there was no more spirit in her.9:4 +or, she was breathless. + +

+

She said to the king, “It was a true report that I heard in my own land of your acts and of your wisdom. + +However I didn’t believe their words until I came, and my eyes had seen it; and behold half of the greatness of your wisdom wasn’t told me. You exceed the fame that I heard! + +Happy are your men, and happy are these your servants, who stand continually before you and hear your wisdom. + +Blessed be Yahweh your God, who delighted in you and set you on his throne to be king for Yahweh your God, because your God loved Israel, to establish them forever. Therefore he made you king over them, to do justice and righteousness.” + +

+

She gave the king one hundred and twenty talents9:9 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons of gold, spices in great abundance, and precious stones. There was never before such spice as the queen of Sheba gave to King Solomon. + +

+

The servants of Huram and the servants of Solomon, who brought gold from Ophir, also brought algum trees9:10 +possibly Indian sandalwood, which has nice grain and a pleasant scent and is good for woodworking and precious stones. + +The king used algum tree wood to make terraces for Yahweh’s house and for the king’s house, and harps and stringed instruments for the singers. There were none like these seen before in the land of Judah. + +King Solomon gave to the queen of Sheba all her desire, whatever she asked, more than that which she had brought to the king. So she turned and went to her own land, she and her servants. + +

+

Now the weight of gold that came to Solomon in one year was six hundred sixty-six talents9:13 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons of gold, + +in addition to that which the traders and merchants brought. All the kings of Arabia and the governors of the country brought gold and silver to Solomon. + +King Solomon made two hundred large shields of beaten gold. Six hundred shekels9:15 +A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces. of beaten gold went to one large shield. + +He made three hundred shields of beaten gold. Three hundred shekels9:16 +A shekel is about 10 grams or about 0.32 Troy ounces, so 300 shekels was about 3 kilograms or about 96 Troy ounces. of gold went to one shield. The king put them in the House of the Forest of Lebanon. + +Moreover the king made a great throne of ivory, and overlaid it with pure gold. + +There were six steps to the throne, with a footstool of gold, which were fastened to the throne, and armrests on either side by the place of the seat, and two lions standing beside the armrests. + +Twelve lions stood there on the one side and on the other on the six steps. There was nothing like it made in any other kingdom. + +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. Silver was not considered valuable in the days of Solomon. + +For the king had ships that went to Tarshish with Huram’s servants. Once every three years, the ships of Tarshish came bringing gold, silver, ivory, apes, and peacocks. + +

+

So King Solomon exceeded all the kings of the earth in riches and wisdom. + +All the kings of the earth sought the presence of Solomon to hear his wisdom, which God had put in his heart. + +They each brought tribute: vessels of silver, vessels of gold, clothing, armor, spices, horses, and mules every year. + +Solomon had four thousand stalls for horses and chariots, and twelve thousand horsemen that he stationed in the chariot cities and with the king at Jerusalem. + +He ruled over all the kings from the River even to the land of the Philistines, and to the border of Egypt. + +The king made silver as common in Jerusalem as stones, and he made cedars to be as abundant as the sycamore trees that are in the lowland. + +They brought horses for Solomon out of Egypt and out of all lands. + +

+

Now the rest of the acts of Solomon, first and last, aren’t they written in the history of Nathan the prophet, and in the prophecy of Ahijah the Shilonite, and in the visions of Iddo the seer concerning Jeroboam the son of Nebat? + +Solomon reigned in Jerusalem over all Israel forty years. + +Solomon slept with his fathers, and he was buried in his father David’s city; and Rehoboam his son reigned in his place. + +

+ + +

Rehoboam went to Shechem, for all Israel had come to Shechem to make him king. + +When Jeroboam the son of Nebat heard of it (for he was in Egypt, where he had fled from the presence of King Solomon), Jeroboam returned out of Egypt. + +They sent and called him; and Jeroboam and all Israel came, and they spoke to Rehoboam, saying, + +Your father made our yoke grievous. Now therefore make the grievous service of your father and his heavy yoke which he put on us, lighter, and we will serve you.” + +

+

He said to them, “Come again to me after three days.” +

+

So the people departed. + +

+

King Rehoboam took counsel with the old men, who had stood before Solomon his father while he yet lived, saying, “What counsel do you give me about how to answer these people?” + +

+

They spoke to him, saying, “If you are kind to these people, please them, and speak good words to them, then they will be your servants forever.” + +

+

But he abandoned the counsel of the old men which they had given him, and took counsel with the young men who had grown up with him, who stood before him. + +He said to them, “What counsel do you give, that we may give an answer to these people, who have spoken to me, saying, ‘Make the yoke that your father put on us lighter’?” + +

+

The young men who had grown up with him spoke to him, saying, “Thus you shall tell the people who spoke to you, saying, ‘Your father made our yoke heavy, but make it lighter on us;’ thus you shall say to them, ‘My little finger is thicker than my father’s waist. + +Now whereas my father burdened you with a heavy yoke, I will add to your yoke. My father chastised you with whips, but I will chastise you with scorpions.’” + +

+

So Jeroboam and all the people came to Rehoboam the third day, as the king asked, saying, “Come to me again the third day.” + +The king answered them roughly; and King Rehoboam abandoned the counsel of the old men, + +and spoke to them after the counsel of the young men, saying, “My father made your yoke heavy, but I will add to it. My father chastised you with whips, but I will chastise you with scorpions.” + +

+

So the king didn’t listen to the people; for it was brought about by God, that Yahweh might establish his word, which he spoke by Ahijah the Shilonite to Jeroboam the son of Nebat. + +

+

When all Israel saw that the king didn’t listen to them, the people answered the king, saying, “What portion do we have in David? We don’t have an inheritance in the son of Jesse! Every man to your tents, Israel! Now see to your own house, David.” So all Israel departed to their tents. + +

+

But as for the children of Israel who lived in the cities of Judah, Rehoboam reigned over them. + +Then King Rehoboam sent Hadoram, who was over the men subject to forced labor; and the children of Israel stoned him to death with stones. King Rehoboam hurried to get himself up to his chariot, to flee to Jerusalem. + +So Israel rebelled against David’s house to this day. + +

+ + +

When Rehoboam had come to Jerusalem, he assembled the house of Judah and Benjamin, one hundred eighty thousand chosen men who were warriors, to fight against Israel, to bring the kingdom again to Rehoboam. + +But Yahweh’s word came to Shemaiah the man of God, saying, + +“Speak to Rehoboam the son of Solomon, king of Judah, and to all Israel in Judah and Benjamin, saying, + +Yahweh says, “You shall not go up, nor fight against your brothers! Every man return to his house; for this thing is of me.”’” So they listened to Yahweh’s words, and returned from going against Jeroboam. + +

+

Rehoboam lived in Jerusalem, and built cities for defense in Judah. + +He built Bethlehem, Etam, Tekoa, + +Beth Zur, Soco, Adullam, + +Gath, Mareshah, Ziph, + +Adoraim, Lachish, Azekah, + +Zorah, Aijalon, and Hebron, which are fortified cities in Judah and in Benjamin. + +He fortified the strongholds and put captains in them with stores of food, oil and wine. + +He put shields and spears in every city, and made them exceedingly strong. Judah and Benjamin belonged to him. + +

+

The priests and the Levites who were in all Israel stood with him out of all their territory. + +For the Levites left their pasture lands and their possessions, and came to Judah and Jerusalem; for Jeroboam and his sons cast them off, that they should not execute the priest’s office to Yahweh. + +He himself appointed priests for the high places, for the male goat and calf idols which he had made. + +After them, out of all the tribes of Israel, those who set their hearts to seek Yahweh, the God of Israel, came to Jerusalem to sacrifice to Yahweh, the God of their fathers. + +So they strengthened the kingdom of Judah and made Rehoboam the son of Solomon strong for three years, for they walked three years in the way of David and Solomon. + +

+

Rehoboam took a wife for himself, Mahalath the daughter of Jerimoth the son of David and of Abihail the daughter of Eliab the son of Jesse. + +She bore him sons: Jeush, Shemariah, and Zaham. + +After her, he took Maacah the granddaughter of Absalom; and she bore him Abijah, Attai, Ziza, and Shelomith. + +Rehoboam loved Maacah the granddaughter of Absalom above all his wives and his concubines; for he took eighteen wives and sixty concubines, and became the father of twenty-eight sons and sixty daughters. + +Rehoboam appointed Abijah the son of Maacah to be chief, the prince among his brothers, for he intended to make him king. + +He dealt wisely, and dispersed some of his sons throughout all the lands of Judah and Benjamin, to every fortified city. He gave them food in abundance; and he sought many wives for them. + +

+ + +

When the kingdom of Rehoboam was established and he was strong, he abandoned Yahweh’s law, and all Israel with him. + +In the fifth year of King Rehoboam, Shishak king of Egypt came up against Jerusalem, because they had trespassed against Yahweh, + +with twelve hundred chariots and sixty thousand horsemen. The people were without number who came with him out of Egypt: the Lubim, the Sukkiim, and the Ethiopians. + +He took the fortified cities which belonged to Judah, and came to Jerusalem. + +Now Shemaiah the prophet came to Rehoboam and to the princes of Judah, who were gathered together to Jerusalem because of Shishak, and said to them, “Yahweh says, ‘You have forsaken me, therefore I have also left you in the hand of Shishak.’” + +

+

Then the princes of Israel and the king humbled themselves; and they said, “Yahweh is righteous.” + +

+

When Yahweh saw that they humbled themselves, Yahweh’s word came to Shemaiah, saying, “They have humbled themselves. I will not destroy them, but I will grant them some deliverance, and my wrath won’t be poured out on Jerusalem by the hand of Shishak. + +Nevertheless they will be his servants, that they may know my service, and the service of the kingdoms of the countries.” + +

+

So Shishak king of Egypt came up against Jerusalem and took away the treasures of Yahweh’s house and the treasures of the king’s house. He took it all away. He also took away the shields of gold which Solomon had made. + +King Rehoboam made shields of bronze in their place, and committed them to the hands of the captains of the guard, who kept the door of the king’s house. + +As often as the king entered into Yahweh’s house, the guard came and bore them, then brought them back into the guard room. + +When he humbled himself, Yahweh’s wrath turned from him, so as not to destroy him altogether. Moreover, there were good things found in Judah. + +

+

So King Rehoboam strengthened himself in Jerusalem and reigned; for Rehoboam was forty-one years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which Yahweh had chosen out of all the tribes of Israel to put his name there. His mother’s name was Naamah the Ammonitess. + +He did that which was evil, because he didn’t set his heart to seek Yahweh. + +

+

Now the acts of Rehoboam, first and last, aren’t they written in the histories of Shemaiah the prophet and of Iddo the seer, in the genealogies? There were wars between Rehoboam and Jeroboam continually. + +Rehoboam slept with his fathers, and was buried in David’s city; and Abijah his son reigned in his place. + +

+ + +

In the eighteenth year of King Jeroboam, Abijah began to reign over Judah. + +He reigned three years in Jerusalem. His mother’s name was Micaiah the daughter of Uriel of Gibeah. There was war between Abijah and Jeroboam. + +Abijah joined battle with an army of valiant men of war, even four hundred thousand chosen men; and Jeroboam set the battle in array against him with eight hundred thousand chosen men, who were mighty men of valor. + +Abijah stood up on Mount Zemaraim, which is in the hill country of Ephraim, and said, “Hear me, Jeroboam and all Israel: + +Ought you not to know that Yahweh, the God of Israel, gave the kingdom over Israel to David forever, even to him and to his sons by a covenant of salt? + +Yet Jeroboam the son of Nebat, the servant of Solomon the son of David, rose up, and rebelled against his lord. + +Worthless men were gathered to him, wicked fellows who strengthened themselves against Rehoboam the son of Solomon, when Rehoboam was young and tender hearted, and could not withstand them. + +

+

Now you intend to withstand the kingdom of Yahweh in the hand of the sons of David. You are a great multitude, and the golden calves which Jeroboam made you for gods are with you. + +Haven’t you driven out the priests of Yahweh, the sons of Aaron, and the Levites, and made priests for yourselves according to the ways of the peoples of other lands? Whoever comes to consecrate himself with a young bull and seven rams may be a priest of those who are no gods. + +

+

But as for us, Yahweh is our God, and we have not forsaken him. We have priests serving Yahweh, the sons of Aaron, and the Levites in their work. + +They burn to Yahweh every morning and every evening burnt offerings and sweet incense. They also set the show bread in order on the pure table, and care for the gold lamp stand with its lamps, to burn every evening; for we keep the instruction of Yahweh our God, but you have forsaken him. + +Behold, God is with us at our head, and his priests with the trumpets of alarm to sound an alarm against you. Children of Israel, don’t fight against Yahweh, the God of your fathers; for you will not prosper.” + +

+

But Jeroboam caused an ambush to come about behind them; so they were before Judah, and the ambush was behind them. + +When Judah looked back, behold, the battle was before and behind them; and they cried to Yahweh, and the priests sounded with the trumpets. + +Then the men of Judah gave a shout. As the men of Judah shouted, God struck Jeroboam and all Israel before Abijah and Judah. + +The children of Israel fled before Judah, and God delivered them into their hand. + +Abijah and his people killed them with a great slaughter, so five hundred thousand chosen men of Israel fell down slain. + +Thus the children of Israel were brought under at that time, and the children of Judah prevailed, because they relied on Yahweh, the God of their fathers. + +Abijah pursued Jeroboam, and took cities from him: Bethel with its villages, Jeshanah with its villages, and Ephron with its villages. + +

+

Jeroboam didn’t recover strength again in the days of Abijah. Yahweh struck him, and he died. + +But Abijah grew mighty and took for himself fourteen wives, and became the father of twenty-two sons and sixteen daughters. + +The rest of the acts of Abijah, his ways, and his sayings are written in the commentary of the prophet Iddo. + +

+ + +

So Abijah slept with his fathers, and they buried him in David’s city; and Asa his son reigned in his place. In his days, the land was quiet ten years. + +Asa did that which was good and right in Yahweh his God’s eyes, + +for he took away the foreign altars and the high places, broke down the pillars, cut down the Asherah poles, + +and commanded Judah to seek Yahweh, the God of their fathers, and to obey his law and command. + +Also he took away out of all the cities of Judah the high places and the sun images; and the kingdom was quiet before him. + +He built fortified cities in Judah; for the land was quiet, and he had no war in those years, because Yahweh had given him rest. + +For he said to Judah, “Let’s build these cities and make walls around them, with towers, gates, and bars. The land is yet before us, because we have sought Yahweh our God. We have sought him, and he has given us rest on every side.” So they built and prospered. + +

+

Asa had an army of three hundred thousand out of Judah who bore bucklers and spears, and two hundred eighty thousand out of Benjamin who bore shields and drew bows. All these were mighty men of valor. + +

+

Zerah the Ethiopian came out against them with an army of a million troops and three hundred chariots, and he came to Mareshah. + +Then Asa went out to meet him, and they set the battle in array in the valley of Zephathah at Mareshah. + +Asa cried to Yahweh his God, and said, “Yahweh, there is no one besides you to help, between the mighty and him who has no strength. Help us, Yahweh our God; for we rely on you, and in your name we have come against this multitude. Yahweh, you are our God. Don’t let man prevail against you.” + +

+

So Yahweh struck the Ethiopians before Asa and before Judah; and the Ethiopians fled. + +Asa and the people who were with him pursued them to Gerar. So many of the Ethiopians fell that they could not recover themselves, for they were destroyed before Yahweh and before his army. Judah’s army carried away very much booty. + +They struck all the cities around Gerar, for the fear of Yahweh came on them. They plundered all the cities, for there was much plunder in them. + +They also struck the tents of those who had livestock, and carried away sheep and camels in abundance, then returned to Jerusalem. + +

+ + +

The Spirit of God came on Azariah the son of Oded. + +He went out to meet Asa, and said to him, “Hear me, Asa, and all Judah and Benjamin! Yahweh is with you while you are with him; and if you seek him, he will be found by you; but if you forsake him, he will forsake you. + +Now for a long time Israel was without the true God, without a teaching priest, and without law. + +But when in their distress they turned to Yahweh, the God of Israel, and sought him, he was found by them. + +In those times there was no peace to him who went out, nor to him who came in; but great troubles were on all the inhabitants of the lands. + +They were broken in pieces, nation against nation, and city against city; for God troubled them with all adversity. + +But you be strong! Don’t let your hands be slack, for your work will be rewarded.” + +

+

When Asa heard these words and the prophecy of Oded the prophet, he took courage, and put away the abominations out of all the land of Judah and Benjamin, and out of the cities which he had taken from the hill country of Ephraim; and he renewed Yahweh’s altar that was before Yahweh’s porch. + +He gathered all Judah and Benjamin, and those who lived with them out of Ephraim, Manasseh, and Simeon; for they came to him out of Israel in abundance when they saw that Yahweh his God was with him. + +So they gathered themselves together at Jerusalem in the third month, in the fifteenth year of Asa’s reign. + +They sacrificed to Yahweh in that day, from the plunder which they had brought, seven hundred head of cattle and seven thousand sheep. + +They entered into the covenant to seek Yahweh, the God of their fathers, with all their heart and with all their soul; + +and that whoever would not seek Yahweh, the God of Israel, should be put to death, whether small or great, whether man or woman. + +They swore to Yahweh with a loud voice, with shouting, with trumpets, and with cornets. + +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 by them. Then Yahweh gave them rest all around. + +

+

Also Maacah, the mother of Asa the king, he removed from being queen mother, because she had made an abominable image for an Asherah; so Asa cut down her image, ground it into dust, and burned it at the brook Kidron. + +But the high places were not taken away out of Israel; nevertheless the heart of Asa was perfect all his days. + +He brought the things that his father had dedicated and that he himself had dedicated, silver, gold, and vessels into God’s house. + +There was no more war to the thirty-fifth year of Asa’s reign. + +

+ + +

In the thirty-sixth year of Asa’s reign, Baasha king of Israel went up against Judah, and built Ramah, that he might not allow anyone to go out or come in to Asa king of Judah. + +Then Asa brought out silver and gold out of the treasures of Yahweh’s house and of the king’s house, and sent to Ben Hadad king of Syria, who lived at Damascus, saying, + +Let there be a treaty between me and you, as there was between my father and your father. Behold, I have sent you silver and gold. Go, break your treaty with Baasha king of Israel, that he may depart from me.” + +

+

Ben Hadad listened to King Asa, and sent the captains of his armies against the cities of Israel; and they struck Ijon, Dan, Abel Maim, and all the storage cities of Naphtali. + +When Baasha heard of it, he stopped building Ramah, and let his work cease. + +Then Asa the king took all Judah, and they carried away the stones and timber of Ramah, with which Baasha had built; and he built Geba and Mizpah with them. + +

+

At that time Hanani the seer came to Asa king of Judah, and said to him, “Because you have relied on the king of Syria, and have not relied on Yahweh your God, therefore the army of the king of Syria has escaped out of your hand. + +Weren’t the Ethiopians and the Lubim a huge army, with chariots and exceedingly many horsemen? Yet, because you relied on Yahweh, he delivered them into your hand. + +For Yahweh’s eyes run back and forth throughout the whole earth, to show himself strong in the behalf of them whose heart is perfect toward him. You have done foolishly in this; for from now on you will have wars.” + +

+

Then Asa was angry with the seer, and put him in the prison; for he was in a rage with him because of this thing. Asa oppressed some of the people at the same time. + +

+

Behold, the acts of Asa, first and last, behold, they are written in the book of the kings of Judah and Israel. + +In the thirty-ninth year of his reign, Asa was diseased in his feet. His disease was exceedingly great; yet in his disease he didn’t seek Yahweh, but just the physicians. + +Asa slept with his fathers, and died in the forty-first year of his reign. + +They buried him in his own tomb, which he had dug out for himself in David’s city, and laid him in the bed which was filled with sweet odors and various kinds of spices prepared by the perfumers’ art; and they made a very great fire for him. + +

+ + +

Jehoshaphat his son reigned in his place, and strengthened himself against Israel. + +He placed forces in all the fortified cities of Judah, and set garrisons in the land of Judah and in the cities of Ephraim, which Asa his father had taken. + +Yahweh was with Jehoshaphat, because he walked in the first ways of his father David, and didn’t seek the Baals, + +but sought the God of his father, and walked in his commandments, and not in the ways of Israel. + +Therefore Yahweh established the kingdom in his hand. All Judah brought tribute to Jehoshaphat, and he had riches and honor in abundance. + +His heart was lifted up in the ways of Yahweh. Furthermore, he took away the high places and the Asherah poles out of Judah. + +

+

Also in the third year of his reign he sent his princes, even Ben Hail, Obadiah, Zechariah, Nethanel, and Micaiah, to teach in the cities of Judah; + +and with them Levites, even Shemaiah, Nethaniah, Zebadiah, Asahel, Shemiramoth, Jehonathan, Adonijah, Tobijah, and Tobadonijah, the Levites; and with them Elishama and Jehoram, the priests. + +They taught in Judah, having the book of Yahweh’s law with them. They went about throughout all the cities of Judah and taught among the people. + +

+

The fear of Yahweh fell on all the kingdoms of the lands that were around Judah, so that they made no war against Jehoshaphat. + +Some of the Philistines brought Jehoshaphat presents and silver for tribute. The Arabians also brought him flocks: seven thousand seven hundred rams and seven thousand seven hundred male goats. + +Jehoshaphat grew great exceedingly; and he built fortresses and store cities in Judah. + +He had many works in the cities of Judah; and men of war, mighty men of valor, in Jerusalem. + +This was the numbering of them according to their fathers’ houses: From Judah, the captains of thousands: Adnah the captain, and with him three hundred thousand mighty men of valor; + +and next to him Jehohanan the captain, and with him two hundred eighty thousand; + +and next to him Amasiah the son of Zichri, who willingly offered himself to Yahweh, and with him two hundred thousand mighty men of valor. + +From Benjamin: Eliada, a mighty man of valor, and with him two hundred thousand armed with bow and shield; + +and next to him Jehozabad, and with him one hundred eighty thousand ready and prepared for war. + +These were those who waited on the king, in addition to those whom the king put in the fortified cities throughout all Judah. + +

+ + +

Now Jehoshaphat had riches and honor in abundance; and he allied himself with Ahab. + +After some years, he went down to Ahab to Samaria. Ahab killed sheep and cattle for him in abundance, and for the people who were with him, and moved him to go up with him to Ramoth Gilead. + +Ahab king of Israel said to Jehoshaphat king of Judah, “Will you go with me to Ramoth Gilead?” +

+

He answered him, “I am as you are, and my people as your people. We will be with you in the war.” + +Jehoshaphat said to the king of Israel, “Please inquire first for Yahweh’s word.” + +

+

Then the king of Israel gathered the prophets together, four hundred men, and said to them, “Shall we go to Ramoth Gilead to battle, or shall I forbear?” +

+

They said, “Go up, for God will deliver it into the hand of the king.” + +

+

But Jehoshaphat said, “Isn’t there here a prophet of Yahweh besides, that we may inquire of him?” + +

+

The king of Israel said to Jehoshaphat, “There is yet one man by whom we may inquire of Yahweh; but I hate him, for he never prophesies good concerning me, but always evil. He is Micaiah the son of Imla.” +

+

Jehoshaphat said, “Don’t let the king say so.” + +

+

Then the king of Israel called an officer, and said, “Get Micaiah the son of Imla quickly.” + +

+

Now the king of Israel and Jehoshaphat the king of Judah each sat on his throne, arrayed in their robes, and they were sitting in an open place at the entrance of the gate of Samaria; and all the prophets were prophesying before them. + +Zedekiah the son of Chenaanah made himself horns of iron and said, “Yahweh says, ‘With these you shall push the Syrians, until they are consumed.’” + +

+

All the prophets prophesied so, saying, “Go up to Ramoth Gilead, and prosper; for Yahweh will deliver it into the hand of the king.” + +

+

The messenger who went to call Micaiah spoke to him, saying, “Behold, the words of the prophets declare good to the king with one mouth. Let your word therefore, please be like one of theirs, and speak good.” + +

+

Micaiah said, “As Yahweh lives, I will say what my God says.” + +

+

When he had come to the king, the king said to him, “Micaiah, shall we go to Ramoth Gilead to battle, or shall I forbear?” +

+

He said, “Go up, and prosper. They shall be delivered into your hand.” + +

+

The king said to him, “How many times shall I adjure you that you speak to me nothing but the truth in Yahweh’s name?” + +

+

He said, “I saw all Israel scattered on the mountains, as sheep that have no shepherd. Yahweh said, ‘These have no master. Let them each return to his house in peace.’” + +

+

The king of Israel said to Jehoshaphat, “Didn’t I tell you that he would not prophesy good concerning me, but evil?” + +

+

Micaiah said, “Therefore hear Yahweh’s word: I saw Yahweh sitting on his throne, and all the army of heaven standing on his right hand and on his left. + +Yahweh said, ‘Who will entice Ahab king of Israel, that he may go up and fall at Ramoth Gilead?’ One spoke saying in this way, and another saying in that way. + +A spirit came out, stood before Yahweh, and said, ‘I will entice him.’ +

+

Yahweh said to him, ‘How?’ + +

+

He said, ‘I will go, and will be a lying spirit in the mouth of all his prophets.’ +

+

He said, ‘You will entice him, and will prevail also. Go and do so.’ + +

+

Now therefore, behold, Yahweh has put a lying spirit in the mouth of these your prophets; and Yahweh has spoken evil concerning you.” + +

+

Then Zedekiah the son of Chenaanah came near, and struck Micaiah on the cheek, and said, “Which way did Yahweh’s Spirit go from me to speak to you?” + +

+

Micaiah said, “Behold, you shall see on that day, when you go into an inner room to hide yourself.” + +

+

The king of Israel said, “Take Micaiah, and carry him back to Amon the governor of the city, and to Joash the king’s son; + +and say, ‘The king says, “Put this fellow in the prison, and feed him with bread of affliction and with water of affliction, until I return in peace.”’” + +

+

Micaiah said, “If you return at all in peace, Yahweh has not spoken by me.” He said, “Listen, you people, all of you!” + +

+

So the king of Israel and Jehoshaphat the king of Judah went up to Ramoth Gilead. + +The king of Israel said to Jehoshaphat, “I will disguise myself, and go into the battle; but you put on your robes.” So the king of Israel disguised himself; and they went into the battle. + +Now the king of Syria had commanded the captains of his chariots, saying, “Don’t fight with small nor great, except only with the king of Israel.” + +

+

When the captains of the chariots saw Jehoshaphat, they said, “It is the king of Israel!” Therefore they turned around to fight against him. But Jehoshaphat cried out, and Yahweh helped him; and God moved them to depart from him. + +When the captains of the chariots saw that it was not the king of Israel, they turned back from pursuing him. + +A certain man drew his bow at random, and struck the king of Israel between the joints of the armor. Therefore he said to the driver of the chariot, “Turn around and carry me out of the battle, for I am severely wounded.” + +The battle increased that day. However, the king of Israel propped himself up in his chariot against the Syrians until the evening; and at about sunset, he died. + +

+ + +

Jehoshaphat the king of Judah returned to his house in peace to Jerusalem. + +Jehu the son of Hanani the seer went out to meet him, and said to King Jehoshaphat, “Should you help the wicked, and love those who hate Yahweh? Because of this, wrath is on you from before Yahweh. + +Nevertheless there are good things found in you, in that you have put away the Asheroth out of the land, and have set your heart to seek God.” + +

+

Jehoshaphat lived at Jerusalem; and he went out again among the people from Beersheba to the hill country of Ephraim, and brought them back to Yahweh, the God of their fathers. + +He set judges in the land throughout all the fortified cities of Judah, city by city, + +and said to the judges, “Consider what you do, for you don’t judge for man, but for Yahweh; and he is with you in the judgment. + +Now therefore let the fear of Yahweh be on you. Take heed and do it; for there is no iniquity with Yahweh our God, nor respect of persons, nor taking of bribes.” + +

+

Moreover in Jerusalem Jehoshaphat appointed certain Levites, priests, and heads of the fathers’ households of Israel to give judgment for Yahweh and for controversies. They returned to Jerusalem. + +He commanded them, saying, “You shall do this in the fear of Yahweh, faithfully, and with a perfect heart. + +Whenever any controversy comes to you from your brothers who dwell in their cities, between blood and blood, between law and commandment, statutes and ordinances, you must warn them, that they not be guilty toward Yahweh, and so wrath come on you and on your brothers. Do this, and you will not be guilty. + +Behold, Amariah the chief priest is over you in all matters of Yahweh; and Zebadiah the son of Ishmael, the ruler of the house of Judah, in all the king’s matters. Also the Levites shall be officers before you. Deal courageously, and may Yahweh be with the good.” + +

+ + +

After this, the children of Moab, the children of Ammon, and with them some of the Meunites20:1 +The LXX reads +Meunites. Heb. reads +Ammonites., came against Jehoshaphat to battle. + +Then some came who told Jehoshaphat, saying, “A great multitude is coming against you from beyond the sea from Syria. Behold, they are in Hazazon Tamar” (that is, En Gedi). + +Jehoshaphat was alarmed, and set himself to seek Yahweh. He proclaimed a fast throughout all Judah. + +Judah gathered themselves together to seek help from Yahweh. They came out of all the cities of Judah to seek Yahweh. + +

+

Jehoshaphat stood in the assembly of Judah and Jerusalem, in Yahweh’s house, before the new court; + +and he said, “Yahweh, the God of our fathers, aren’t you God in heaven? Aren’t you ruler over all the kingdoms of the nations? Power and might are in your hand, so that no one is able to withstand you. + +Didn’t you, our God, drive out the inhabitants of this land before your people Israel, and give it to the offspring20:7 +or, seed of Abraham your friend forever? + +They lived in it, and have built you a sanctuary in it for your name, saying, + +If evil comes on usthe sword, judgment, pestilence, or faminewe will stand before this house, and before you (for your name is in this house), and cry to you in our affliction, and you will hear and save.’ + +Now, behold, the children of Ammon and Moab and Mount Seir, whom you would not let Israel invade when they came out of the land of Egypt, but they turned away from them, and didn’t destroy them; + +behold, how they reward us, to come to cast us out of your possession, which you have given us to inherit. + +Our God, will you not judge them? For we have no might against this great company that comes against us. We don’t know what to do, but our eyes are on you.” + +

+

All Judah stood before Yahweh, with their little ones, their wives, and their children. + +

+

Then Yahweh’s Spirit came on Jahaziel the son of Zechariah, the son of Benaiah, the son of Jeiel, the son of Mattaniah, the Levite, of the sons of Asaph, in the middle of the assembly; + +and he said, “Listen, all Judah, and you inhabitants of Jerusalem, and you, King Jehoshaphat. Yahweh says to you, ‘Don’t be afraid, and don’t be dismayed because of this great multitude; for the battle is not yours, but God’s. + +Tomorrow, go down against them. Behold, they are coming up by the ascent of Ziz. You will find them at the end of the valley, before the wilderness of Jeruel. + +You will not need to fight this battle. Set yourselves, stand still, and see the salvation of Yahweh with you, O Judah and Jerusalem. Don’t be afraid, nor be dismayed. Go out against them tomorrow, for Yahweh is with you.’” + +

+

Jehoshaphat bowed his head with his face to the ground; and all Judah and the inhabitants of Jerusalem fell down before Yahweh, worshiping Yahweh. + +The Levites, of the children of the Kohathites and of the children of the Korahites, stood up to praise Yahweh, the God of Israel, with an exceedingly loud voice. + +

+

They rose early in the morning and went out into the wilderness of Tekoa. As they went out, Jehoshaphat stood and said, “Listen to me, Judah and you inhabitants of Jerusalem! Believe in Yahweh your God, so you will be established! Believe his prophets, so you will prosper.” + +

+

When he had taken counsel with the people, he appointed those who were to sing to Yahweh and give praise in holy array as they go out before the army, and say, “Give thanks to Yahweh, for his loving kindness endures forever.” + +When they began to sing and to praise, Yahweh set ambushers against the children of Ammon, Moab, and Mount Seir, who had come against Judah; and they were struck. + +For the children of Ammon and Moab stood up against the inhabitants of Mount Seir to utterly kill and destroy them. When they had finished the inhabitants of Seir, everyone helped to destroy each other. + +

+

When Judah came to the place overlooking the wilderness, they looked at the multitude; and behold, they were dead bodies fallen to the earth, and there were none who escaped. + +When Jehoshaphat and his people came to take their plunder, they found among them in abundance both riches and dead bodies with precious jewels, which they stripped off for themselves, more than they could carry away. They took plunder for three days, it was so much. + +On the fourth day, they assembled themselves in Beracah20:26 +“Beracah” means “blessing”. Valley, for there they blessed Yahweh. Therefore the name of that place was calledBeracah Valleyto this day. + +Then they returned, every man of Judah and Jerusalem, with Jehoshaphat in front of them, to go again to Jerusalem with joy; for Yahweh had made them to rejoice over their enemies. + +They came to Jerusalem with stringed instruments, harps, and trumpets to Yahweh’s house. + +The fear of God was on all the kingdoms of the countries when they heard that Yahweh fought against the enemies of Israel. + +So the realm of Jehoshaphat was quiet, for his God gave him rest all around. + +

+

So Jehoshaphat reigned over Judah. He was thirty-five years old when he began to reign. He reigned twenty-five years in Jerusalem. His mother’s name was Azubah the daughter of Shilhi. + +He walked in the way of Asa his father, and didn’t turn away from it, doing that which was right in Yahweh’s eyes. + +However the high places were not taken away, and the people had still not set their hearts on the God of their fathers. + +

+

Now the rest of the acts of Jehoshaphat, first and last, behold, they are written in the history of Jehu the son of Hanani, which is included in the book of the kings of Israel. + +

+

After this, Jehoshaphat king of Judah joined himself with Ahaziah king of Israel. The same did very wickedly. + +He joined himself with him to make ships to go to Tarshish. They made the ships in Ezion Geber. + +Then Eliezer the son of Dodavahu of Mareshah prophesied against Jehoshaphat, saying, “Because you have joined yourself with Ahaziah, Yahweh has destroyed your works.” The ships were wrecked, so that they were not able to go to Tarshish. + +

+ + +

Jehoshaphat slept with his fathers, and was buried with his fathers in David’s city; and Jehoram his son reigned in his place. + +He had brothers, the sons of Jehoshaphat: Azariah, Jehiel, Zechariah, Azariah, Michael, and Shephatiah. All these were the sons of Jehoshaphat king of Israel. + +Their father gave them great gifts of silver, of gold, and of precious things, with fortified cities in Judah; but he gave the kingdom to Jehoram, because he was the firstborn. + +Now when Jehoram had risen up over the kingdom of his father, and had strengthened himself, he killed all his brothers with the sword, and also some of the princes of Israel. + +Jehoram was thirty-two years old when he began to reign, and he reigned eight years in Jerusalem. + +He walked in the way of the kings of Israel, as did Ahab’s house, for he had Ahab’s daughter as his wife. He did that which was evil in Yahweh’s sight. + +However Yahweh would not destroy David’s house, because of the covenant that he had made with David, and as he promised to give a lamp to him and to his children always. + +

+

In his days Edom revolted from under the hand of Judah, and made a king over themselves. + +Then Jehoram went there with his captains and all his chariots with him. He rose up by night and struck the Edomites who surrounded him, along with the captains of the chariots. + +So Edom has been in revolt from under the hand of Judah to this day. Then Libnah revolted at the same time from under his hand, because he had forsaken Yahweh, the God of his fathers. + +

+

Moreover he made high places in the mountains of Judah, and made the inhabitants of Jerusalem play the prostitute, and led Judah astray. + +A letter came to him from Elijah the prophet, saying, “Yahweh, the God of David your father, says, ‘Because you have not walked in the ways of Jehoshaphat your father, nor in the ways of Asa king of Judah, + +but have walked in the way of the kings of Israel, and have made Judah and the inhabitants of Jerusalem to play the prostitute like Ahab’s house did, and also have slain your brothers of your father’s house, who were better than yourself, + +behold, Yahweh will strike your people with a great plague, including your children, your wives, and all your possessions; + +and you will have great sickness with a disease of your bowels, until your bowels fall out by reason of the sickness, day by day.’” + +

+

Yahweh stirred up against Jehoram the spirit of the Philistines and of the Arabians who are beside the Ethiopians; + +and they came up against Judah, broke into it, and carried away all the possessions that were found in the king’s house, including his sons and his wives, so that there was no son left to him except Jehoahaz, the youngest of his sons. + +

+

After all this Yahweh struck him in his bowels with an incurable disease. + +In process of time, at the end of two years, his bowels fell out by reason of his sickness, and he died of severe diseases. His people made no burning for him, like the burning of his fathers. + +He was thirty-two years old when he began to reign, and he reigned in Jerusalem eight years. He departed with no one’s regret. They buried him in David’s city, but not in the tombs of the kings. + +

+ + +

The inhabitants of Jerusalem made Ahaziah his youngest son king in his place, because the band of men who came with the Arabians to the camp had slain all the oldest. So Ahaziah the son of Jehoram king of Judah reigned. + +Ahaziah was forty-two years old when he began to reign, and he reigned one year in Jerusalem. His mother’s name was Athaliah the daughter of Omri. + +He also walked in the ways of Ahab’s house, because his mother was his counselor in acting wickedly. + +He did that which was evil in Yahweh’s sight, as did Ahab’s house, for they were his counselors after the death of his father, to his destruction. + +He also followed their counsel, and went with Jehoram the son of Ahab king of Israel to war against Hazael king of Syria at Ramoth Gilead; and the Syrians wounded Joram. + +He returned to be healed in Jezreel of the wounds which they had given him at Ramah, when he fought against Hazael king of Syria. Azariah the son of Jehoram, king of Judah, went down to see Jehoram the son of Ahab in Jezreel, because he was sick. + +

+

Now the destruction of Ahaziah was of God, in that he went to Joram; for when he had come, he went out with Jehoram against Jehu the son of Nimshi, whom Yahweh had anointed to cut off Ahab’s house. + +When Jehu was executing judgment on Ahab’s house, he found the princes of Judah and the sons of the brothers of Ahaziah serving Ahaziah, and killed them. + +He sought Ahaziah, and they caught him (now he was hiding in Samaria), and they brought him to Jehu and killed him; and they buried him, for they said, “He is the son of Jehoshaphat, who sought Yahweh with all his heart.” The house of Ahaziah had no power to hold the kingdom. + +

+

Now when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the royal offspring of the house of Judah. + +But Jehoshabeath, the king’s daughter, took Joash the son of Ahaziah, and stealthily rescued him from among the king’s sons who were slain, and put him and his nurse in the bedroom. 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 didn’t kill him. + +He was with them hidden in God’s house six years while Athaliah reigned over the land. + +

+ + +

In the seventh year, Jehoiada strengthened himself, and took the captains of hundredsAzariah the son of Jeroham, Ishmael the son of Jehohanan, Azariah the son of Obed, Maaseiah the son of Adaiah, and Elishaphat the son of Zichriinto a covenant with him. + +They went around in Judah and gathered the Levites out of all the cities of Judah, and the heads of fathers’ households of Israel, and they came to Jerusalem. + +All the assembly made a covenant with the king in God’s house. Jehoiada23:3 +Hebrew +He said to them, “Behold, the king’s son must reign, as Yahweh has spoken concerning the sons of David. + +This is the thing that you must do: a third part of you, who come in on the Sabbath, of the priests and of the Levites, shall be gatekeepers of the thresholds. + +A third part shall be at the king’s house; and a third part at the gate of the foundation. All the people will be in the courts of Yahweh’s house. + +But let no one come into Yahweh’s house except the priests and those who minister of the Levites. They shall come in, for they are holy, but all the people shall follow Yahweh’s instructions. + +The Levites shall surround the king, every man with his weapons in his hand. Whoever comes into the house, let him be slain. Be with the king when he comes in and when he goes out.” + +

+

So the Levites and all Judah did according to all that Jehoiada the priest commanded. They each took his men, those who were to come in on the Sabbath, with those who were to go out on the Sabbath, for Jehoiada the priest didn’t dismiss the shift. + +Jehoiada the priest delivered to the captains of hundreds the spears, bucklers, and shields that had been king David’s, which were in God’s house. + +He set all the people, every man with his weapon in his hand, from the right side of the house to the left side of the house, near the altar and the house, around the king. + +Then they brought out the king’s son, put the crown on him, gave him the covenant, and made him king. Jehoiada and his sons anointed him, and they said, “Long live the king!” + +

+

When Athaliah heard the noise of the people running and praising the king, she came to the people into Yahweh’s house. + +Then she looked, and behold, the king stood by his pillar at the entrance, with the captains and the trumpeters by the king. All the people of the land rejoiced and blew trumpets. The singers also played musical instruments, and led the singing of praise. Then Athaliah tore her clothes, and said, “Treason! treason!” + +

+

Jehoiada the priest brought out the captains of hundreds who were set over the army, and said to them, “Bring her out between the ranks; and whoever follows her, let him be slain with the sword.” For the priest said, “Don’t kill her in Yahweh’s house.” + +So they made way for her. She went to the entrance of the horse gate to the king’s house; and they killed her there. + +

+

Jehoiada made a covenant between himself, all the people, and the king, that they should be Yahweh’s people. + +All the people went to the house of Baal, broke it down, broke his altars and his images in pieces, and killed Mattan the priest of Baal before the altars. + +Jehoiada appointed the officers of Yahweh’s house under the hand of the Levitical priests, whom David had distributed in Yahweh’s house, to offer the burnt offerings of Yahweh, as it is written in the law of Moses, with rejoicing and with singing, as David had ordered. + +He set the gatekeepers at the gates of Yahweh’s house, that no one who was unclean in anything should enter in. + +He took the captains of hundreds, the nobles, the governors of the people, and all the people of the land, and brought the king down from Yahweh’s house. They came through the upper gate to the king’s house, and set the king on the throne of the kingdom. + +So all the people of the land rejoiced, and the city was quiet. They had slain Athaliah with the sword. + +

+ + +

Joash was seven years old when he began to reign, and he reigned forty years in Jerusalem. His mother’s name was Zibiah, of Beersheba. + +Joash did that which was right in Yahweh’s eyes all the days of Jehoiada the priest. + +Jehoiada took for him two wives, and he became the father of sons and daughters. + +

+

After this, Joash intended to restore Yahweh’s house. + +He gathered together the priests and the Levites, and said to them, “Go out to the cities of Judah, and gather money to repair the house of your God from all Israel from year to year. See that you expedite this matter.” However the Levites didn’t do it right away. + +The king called for Jehoiada the chief, and said to him, “Why haven’t you required of the Levites to bring in the tax of Moses the servant of Yahweh, and of the assembly of Israel, out of Judah and out of Jerusalem, for the Tent of the Testimony?” + +For the sons of Athaliah, that wicked woman, had broken up God’s house; and they also gave all the dedicated things of Yahweh’s house to the Baals. + +

+

So the king commanded, and they made a chest, and set it outside at the gate of Yahweh’s house. + +They made a proclamation through Judah and Jerusalem, to bring in for Yahweh the tax that Moses the servant of God laid on Israel in the wilderness. + +All the princes and all the people rejoiced, and brought in, and cast into the chest, until they had filled it. + +Whenever the chest was brought to the king’s officers by the hand of the Levites, and when they saw that there was much money, the king’s scribe and the chief priest’s officer came and emptied the chest, and took it, and carried it to its place again. Thus they did day by day, and gathered money in abundance. + +The king and Jehoiada gave it to those who did the work of the service of Yahweh’s house. They hired masons and carpenters to restore Yahweh’s house, and also those who worked iron and bronze to repair Yahweh’s house. + +So the workmen worked, and the work of repairing went forward in their hands. They set up God’s house as it was designed, and strengthened it. + +When they had finished, they brought the rest of the money before the king and Jehoiada, from which were made vessels for Yahweh’s house, even vessels with which to minister and to offer, including spoons and vessels of gold and silver. They offered burnt offerings in Yahweh’s house continually all the days of Jehoiada. + +

+

But Jehoiada grew old and was full of days, and he died. He was one hundred thirty years old when he died. + +They buried him in David’s city among the kings, because he had done good in Israel, and toward God and his house. + +

+

Now after the death of Jehoiada, the princes of Judah came and bowed down to the king. Then the king listened to them. + +They abandoned the house of Yahweh, the God of their fathers, and served the Asherah poles and the idols, so wrath came on Judah and Jerusalem for this their guiltiness. + +Yet he sent prophets to them to bring them again to Yahweh, and they testified against them; but they would not listen. + +

+

The Spirit of God came on Zechariah the son of Jehoiada the priest; and he stood above the people, and said to them, “God says, ‘Why do you disobey Yahweh’s commandments, so that you can’t prosper? Because you have forsaken Yahweh, he has also forsaken you.’” + +

+

They conspired against him, and stoned him with stones at the commandment of the king in the court of Yahweh’s house. + +Thus Joash the king didn’t remember the kindness which Jehoiada his father had done to him, but killed his son. When he died, he said, “May Yahweh look at it, and repay it.” + +

+

At the end of the year, the army of the Syrians came up against him. They came to Judah and Jerusalem, and destroyed all the princes of the people from among the people, and sent all their plunder to the king of Damascus. + +For the army of the Syrians came with a small company of men; and Yahweh delivered a very great army into their hand, because they had forsaken Yahweh, the God of their fathers. So they executed judgment on Joash. + +

+

When they had departed from him (for they left him seriously wounded), his own servants conspired against him for the blood of the sons of Jehoiada the priest, and killed him on his bed, and he died. They buried him in David’s city, but they didn’t bury him in the tombs of the kings. + +These are those who conspired against him: Zabad the son of Shimeath the Ammonitess and Jehozabad the son of Shimrith the Moabitess. + +Now concerning his sons, the greatness of the burdens laid on him, and the rebuilding of God’s house, behold, they are written in the commentary of the book of the kings. Amaziah his son reigned in his place. + +

+ + +

Amaziah was twenty-five years old when he began to reign, and he reigned twenty-nine years in Jerusalem. His mother’s name was Jehoaddan, of Jerusalem. + +He did that which was right in Yahweh’s eyes, but not with a perfect heart. + +Now when the kingdom was established to him, he killed his servants who had killed his father the king. + +But he didn’t put their children to death, but did according to that which is written in the law in the book of Moses, as Yahweh 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.” + +

+

Moreover Amaziah gathered Judah together and ordered them according to their fathers’ houses, under captains of thousands and captains of hundreds, even all Judah and Benjamin. He counted them from twenty years old and upward, and found that there were three hundred thousand chosen men, able to go out to war, who could handle spear and shield. + +He also hired one hundred thousand mighty men of valor out of Israel for one hundred talents25:6 +A talent is about 30 kilograms or 66 pounds of silver. + +A man of God came to him, saying, “O king, don’t let the army of Israel go with you, for Yahweh is not with Israel, with all the children of Ephraim. + +But if you will go, take action, and be strong for the battle. God will overthrow you before the enemy; for God has power to help, and to overthrow.” + +

+

Amaziah said to the man of God, “But what shall we do for the hundred talents25:9 +A talent is about 30 kilograms or 66 pounds which I have given to the army of Israel?” +

+

The man of God answered, “Yahweh is able to give you much more than this.” + +

+

Then Amaziah separated them, the army that had come to him out of Ephraim, to go home again. Therefore their anger was greatly kindled against Judah, and they returned home in fierce anger. + +

+

Amaziah took courage, and led his people out and went to the Valley of Salt, and struck ten thousand of the children of Seir. + +The children of Judah carried away ten thousand alive, and brought them to the top of the rock, and threw them down from the top of the rock, so that they all were broken in pieces. + +But the men of the army whom Amaziah sent back, that they should not go with him to battle, fell on the cities of Judah from Samaria even to Beth Horon, and struck of them three thousand, and took much plunder. + +

+

Now after Amaziah had come from the slaughter of the Edomites, 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 to them. + +Therefore Yahweh’s anger burned against Amaziah, and he sent to him a prophet who said to him, “Why have you sought after the gods of the people, which have not delivered their own people out of your hand?” + +

+

As he talked with him, the king said to him, “Have we made you one of the king’s counselors? Stop! Why should you be struck down?” +

+

Then the prophet stopped, and said, “I know that God has determined to destroy you, because you have done this and have not listened to my counsel.” + +

+

Then Amaziah king of Judah consulted his advisers, and sent to Joash, the son of Jehoahaz, the son of Jehu, king of Israel, saying, “Come! Let’s look one another in the face.” + +

+

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 your daughter to my son as his wife. Then a wild animal that was in Lebanon passed by and trampled down the thistle. + +You say to yourself that you have struck Edom; and your heart lifts you up to boast. Now stay at home. Why should you meddle with trouble, that you should fall, even you and Judah with you?’” + +

+

But Amaziah would not listen; for it was of God, that he might deliver them into the hand of their enemies, because they had sought after the gods of Edom. + +So Joash king of Israel went up, and he and Amaziah king of Judah looked one another in the face at Beth Shemesh, which belongs to Judah. + +Judah was defeated by Israel; so every man fled to his tent. + +

+

Joash king of Israel took Amaziah king of Judah, the son of Joash the son of Jehoahaz, at Beth Shemesh and brought him to Jerusalem, and broke down the wall of Jerusalem from the gate of Ephraim to the corner gate, four hundred cubits.25:23 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 400 cubits is about 200 yards or 184 meters. + +He took all the gold and silver, and all the vessels that were found in God’s house with Obed-Edom, and the treasures of the king’s house, and the hostages, and returned to Samaria. + +

+

Amaziah the son of Joash, king of Judah, lived for fifteen years after the death of Joash, son of Jehoahaz, king of Israel. + +Now the rest of the acts of Amaziah, first and last, behold, aren’t they written in the book of the kings of Judah and Israel? + +Now from the time that Amaziah turned away from following Yahweh, they made a conspiracy against him in Jerusalem. He fled to Lachish, but they sent after him to Lachish and killed him there. + +They brought him on horses and buried him with his fathers in the City of Judah. + +

+ + +

All the people of Judah took Uzziah, who was sixteen years old, and made him king in the place of his father Amaziah. + +He built Eloth and restored it to Judah. After that the king slept with his fathers. + +Uzziah was sixteen years old when he began to reign; and he reigned fifty-two years in Jerusalem. His mother’s name was Jechiliah, of Jerusalem. + +He did that which was right in Yahweh’s eyes, according to all that his father Amaziah had done. + +He set himself to seek God in the days of Zechariah, who had understanding in the vision of God; and as long as he sought Yahweh, God made him prosper. + +

+

He went out and fought against the Philistines, and broke down the wall of Gath, the wall of Jabneh, and the wall of Ashdod; and he built cities in the country of Ashdod, and among the Philistines. + +God helped him against the Philistines, and against the Arabians who lived in Gur Baal, and the Meunim. + +The Ammonites gave tribute to Uzziah. His name spread abroad even to the entrance of Egypt, for he grew exceedingly strong. + +Moreover Uzziah built towers in Jerusalem at the corner gate, at the valley gate, and at the turning of the wall, and fortified them. + +He built towers in the wilderness, and dug out many cisterns, for he had much livestock, both in the lowlands and in the plains. He had farmers and vineyard keepers in the mountains and in the fruitful fields, for he loved farming. + +Moreover Uzziah had an army of fighting men who went out to war by bands, according to the number of their reckoning made by Jeiel the scribe and Maaseiah the officer, under the hand of Hananiah, one of the king’s captains. + +The whole number of the heads of fathers’ households, even the mighty men of valor, was two thousand six hundred. + +Under their hand was an army, three hundred seven thousand five hundred, who made war with mighty power, to help the king against the enemy. + +Uzziah prepared for them, even for all the army, shields, spears, helmets, coats of mail, bows, and stones for slinging. + +In Jerusalem, he made devices, invented by skillful men, to be on the towers and on the battlements, with which to shoot arrows and great stones. His name spread far abroad, because he was marvelously helped until he was strong. + +

+

But when he was strong, his heart was lifted up, so that he did corruptly and he trespassed against Yahweh his God, for he went into Yahweh’s temple to burn incense on the altar of incense. + +Azariah the priest went in after him, and with him eighty priests of Yahweh, who were valiant men. + +They resisted Uzziah the king, and said to him, “It isn’t for you, Uzziah, to burn incense to Yahweh, but for the priests the sons of Aaron, who are consecrated to burn incense. Go out of the sanctuary, for you have trespassed. It will not be for your honor from Yahweh God.” + +

+

Then Uzziah was angry. He had a censer in his hand to burn incense, and while he was angry with the priests, the leprosy broke out on his forehead before the priests in Yahweh’s house, beside the altar of incense. + +Azariah the chief priest and all the priests looked at him, and behold, he was leprous in his forehead; and they thrust him out quickly from there. Indeed, he himself also hurried to go out, because Yahweh had struck him. + +Uzziah the king was a leper to the day of his death, and lived in a separate house, being a leper; for he was cut off from Yahweh’s house. Jotham his son was over the king’s house, judging the people of the land. + +

+

Now the rest of the acts of Uzziah, first and last, Isaiah the prophet, the son of Amoz, wrote. + +So Uzziah slept with his fathers; and they buried him with his fathers in the field of burial which belonged to the kings, for they said, “He is a leper.” Jotham his son reigned in his place. + +

+ + +

Jotham was twenty-five years old when he began to reign, and he reigned sixteen years in Jerusalem. His mother’s name was Jerushah the daughter of Zadok. + +He did that which was right in Yahweh’s eyes, according to all that his father Uzziah had done. However he didn’t enter into Yahweh’s temple. The people still acted corruptly. + +He built the upper gate of Yahweh’s house, and he built much on the wall of Ophel. + +Moreover he built cities in the hill country of Judah, and in the forests he built fortresses and towers. + +He also fought with the king of the children of Ammon, and prevailed against them. The children of Ammon gave him the same year one hundred talents27:5 +A talent is about 30 kilograms or 66 pounds of silver, ten thousand cors27:5 +1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels. 10,000 cors of wheat would weigh about 1,640 metric tons. of wheat, and ten thousand cors of barley.27:5 +10,000 cors of barley would weigh about 1,310 metric tons. The children of Ammon also gave that much to him in the second year, and in the third. + +So Jotham became mighty, because he ordered his ways before Yahweh his God. + +Now the rest of the acts of Jotham, and all his wars and his ways, behold, they are written in the book of the kings of Israel and Judah. + +He was twenty-five years old when he began to reign, and reigned sixteen years in Jerusalem. + +Jotham slept with his fathers, and they buried him in David’s city; and Ahaz his son reigned in his place. + +

+ + +

Ahaz was twenty years old when he began to reign, and he reigned sixteen years in Jerusalem. He didn’t do that which was right in Yahweh’s eyes, like David his father, + +but he walked in the ways of the kings of Israel, and also made molten images for the Baals. + +Moreover he burned incense in the valley of the son of Hinnom, and burned his children in the fire, according to the abominations of the nations whom Yahweh cast out before the children of Israel. + +He sacrificed and burned incense in the high places, and on the hills, and under every green tree. + +

+

Therefore Yahweh his God delivered him into the hand of the king of Syria. They struck him, and carried away from him a great multitude of captives, and brought them to Damascus. He was also delivered into the hand of the king of Israel, who struck him with a great slaughter. + +For Pekah the son of Remaliah killed in Judah one hundred twenty thousand in one day, all of them valiant men, because they had forsaken Yahweh, the God of their fathers. + +Zichri, a mighty man of Ephraim, killed Maaseiah the king’s son, Azrikam the ruler of the house, and Elkanah who was next to the king. + +The children of Israel carried away captive of their brothers two hundred thousand women, sons, and daughters, and also took away much plunder from them, and brought the plunder to Samaria. + +But a prophet of Yahweh was there, whose name was Oded; and he went out to meet the army that came to Samaria, and said to them, “Behold, because Yahweh, the God of your fathers, was angry with Judah, he has delivered them into your hand, and you have slain them in a rage which has reached up to heaven. + +Now you intend to degrade the children of Judah and Jerusalem as male and female slaves for yourselves. Aren’t there even with you trespasses of your own against Yahweh your God? + +Now hear me therefore, and send back the captives that you have taken captive from your brothers, for the fierce wrath of Yahweh is on you.” + +Then some of the heads of the children of Ephraim, Azariah the son of Johanan, Berechiah the son of Meshillemoth, Jehizkiah the son of Shallum, and Amasa the son of Hadlai, stood up against those who came from the war, + +and said to them, “You must not bring in the captives here, for you intend that which will bring on us a trespass against Yahweh, to add to our sins and to our guilt; for our guilt is great, and there is fierce wrath against Israel.” + +

+

So the armed men left the captives and the plunder before the princes and all the assembly. + +The men who have been mentioned by name rose up and took the captives, and with the plunder clothed all who were naked among them, dressed them, gave them sandals, gave them something to eat and to drink, anointed them, carried all the feeble of them on donkeys, and brought them to Jericho, the city of palm trees, to their brothers. Then they returned to Samaria. + +

+

At that time King Ahaz sent to the kings of Assyria to help him. + +For again the Edomites had come and struck Judah, and carried away captives. + +The Philistines also had invaded the cities of the lowland and of the South of Judah, and had taken Beth Shemesh, Aijalon, Gederoth, Soco with its villages, Timnah with its villages, and also Gimzo and its villages; and they lived there. + +For Yahweh brought Judah low because of Ahaz king of Israel, because he acted without restraint in Judah and trespassed severely against Yahweh. + +Tilgath-pilneser king of Assyria came to him and gave him trouble, but didn’t strengthen him. + +For Ahaz took away a portion out of Yahweh’s house, and out of the house of the king and of the princes, and gave it to the king of Assyria; but it didn’t help him. + +

+

In the time of his distress, he trespassed yet more against Yahweh, this same King Ahaz. + +For he sacrificed to the gods of Damascus which had defeated him. He said, “Because the gods of the kings of Syria helped them, I will sacrifice to them, that they may help me.” But they were the ruin of him and of all Israel. + +Ahaz gathered together the vessels of God’s house, cut the vessels of God’s house in pieces, and shut up the doors of Yahweh’s house; and he made himself altars in every corner of Jerusalem. + +In every city of Judah he made high places to burn incense to other gods, and provoked Yahweh, the God of his fathers, to anger. + +

+

Now the rest of his acts, and all his ways, first and last, behold, they are written in the book of the kings of Judah and Israel. + +Ahaz slept with his fathers, and they buried him in the city, even in Jerusalem, because they didn’t bring him into the tombs of the kings of Israel; and Hezekiah his son reigned in his place. + +

+ + +

Hezekiah began to reign when he was twenty-five years old, and he reigned twenty-nine years in Jerusalem. His mother’s name was Abijah, the daughter of Zechariah. + +He did that which was right in Yahweh’s eyes, according to all that David his father had done. + +In the first year of his reign, in the first month, he opened the doors of Yahweh’s house and repaired them. + +He brought in the priests and the Levites and gathered them together into the wide place on the east, + +and said to them, “Listen to me, you Levites! Now sanctify yourselves, and sanctify the house of Yahweh, the God of your fathers, and carry the filthiness out of the holy place. + +For our fathers were unfaithful, and have done that which was evil in Yahweh our God’s sight, and have forsaken him, and have turned away their faces from the habitation of Yahweh, and turned their backs. + +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 to the God of Israel. + +Therefore Yahweh’s wrath was on Judah and Jerusalem, and he has delivered them to be tossed back and forth, to be an astonishment and a hissing, as you see with your eyes. + +For behold, our fathers have fallen by the sword, and our sons and our daughters and our wives are in captivity for this. + +Now it is in my heart to make a covenant with Yahweh, the God of Israel, that his fierce anger may turn away from us. + +My sons, don’t be negligent now; for Yahweh has chosen you to stand before him, to minister to him, and that you should be his ministers and burn incense.” + +

+

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 Jehallelel; and of the Gershonites, Joah the son of Zimmah, and Eden the son of Joah; + +and of the sons of Elizaphan, Shimri and Jeuel; and of the sons of Asaph, Zechariah and Mattaniah; + +and of the sons of Heman, Jehuel and Shimei; and of the sons of Jeduthun, Shemaiah and Uzziel. + +They gathered their brothers, sanctified themselves, and went in, according to the commandment of the king by Yahweh’s words, to cleanse Yahweh’s house. + +The priests went into the inner part of Yahweh’s house to cleanse it, and brought out all the uncleanness that they found in Yahweh’s temple into the court of Yahweh’s house. The Levites took it from there to carry it out to the brook Kidron. + +Now they began on the first day of the first month to sanctify, and on the eighth day of the month they came to Yahweh’s porch. They sanctified Yahweh’s house in eight days, and on the sixteenth day of the first month they finished. + +Then they went in to Hezekiah the king within the palace and said, “We have cleansed all Yahweh’s house, including the altar of burnt offering with all its vessels, and the table of show bread with all its vessels. + +Moreover, we have prepared and sanctified all the vessels which King Ahaz threw away in his reign when he was unfaithful. Behold, they are before Yahweh’s altar.” + +

+

Then Hezekiah the king arose early, gathered the princes of the city, and went up to Yahweh’s house. + +They brought seven bulls, seven rams, seven lambs, and seven male goats, for a sin offering for the kingdom, for the sanctuary, and for Judah. He commanded the priests the sons of Aaron to offer them on Yahweh’s altar. + +So they killed the bulls, and the priests received the blood and sprinkled it on the altar. They killed the rams and sprinkled the blood on the altar. They also killed the lambs and sprinkled the blood on the altar. + +They brought near the male goats for the sin offering before the king and the assembly; and they laid their hands on them. + +Then the priests killed them, and they made a sin offering with their blood on the altar, to make atonement for all Israel; for the king commanded that the burnt offering and the sin offering should be made for all Israel. + +

+

He set the Levites in Yahweh’s house with cymbals, with stringed instruments, and with harps, according to the commandment of David, of Gad the king’s seer, and Nathan the prophet; for the commandment was from Yahweh by his prophets. + +The Levites stood with David’s instruments, and the priests with the trumpets. + +Hezekiah commanded them to offer the burnt offering on the altar. When the burnt offering began, Yahweh’s song also began, along with the trumpets and instruments of David king of Israel. + +All the assembly worshiped, the singers sang, and the trumpeters sounded. All this continued until the burnt offering was finished. + +

+

When they had finished offering, the king and all who were present with him bowed themselves and worshiped. + +Moreover Hezekiah the king and the princes commanded the Levites to sing praises to Yahweh with the words of David, and of Asaph the seer. They sang praises with gladness, and they bowed their heads and worshiped. + +

+

Then Hezekiah answered, “Now you have consecrated yourselves to Yahweh. Come near and bring sacrifices and thank offerings into Yahweh’s house.” The assembly brought in sacrifices and thank offerings, and as many as were of a willing heart brought burnt offerings. + +The number of the burnt offerings which the assembly brought was seventy bulls, one hundred rams, and two hundred lambs. All these were for a burnt offering to Yahweh. + +The consecrated things were six hundred head of cattle and three thousand sheep. + +But the priests were too few, so that they could not skin all the burnt offerings. Therefore their brothers the Levites helped them until the work was ended, and until the priests had sanctified themselves, for the Levites were more upright in heart to sanctify themselves than the priests. + +Also the burnt offerings were in abundance, with the fat of the peace offerings and with the drink offerings for every burnt offering. So the service of Yahweh’s house was set in order. + +Hezekiah and all the people rejoiced because of that which God had prepared for the people; for the thing was done suddenly. + +

+ + +

Hezekiah sent to all Israel and Judah, and wrote letters also to Ephraim and Manasseh, that they should come to Yahweh’s house at Jerusalem, to keep the Passover to Yahweh, the God of Israel. + +For the king had taken counsel with his princes and all the assembly in Jerusalem to keep the Passover in the second month. + +For they could not keep it at that time, because the priests had not sanctified themselves in sufficient number, and the people had not gathered themselves together to Jerusalem. + +The thing was right in the eyes of the king and of all the assembly. + +So they established a decree to make proclamation throughout all Israel, from Beersheba even to Dan, that they should come to keep the Passover to Yahweh, the God of Israel, at Jerusalem, for they had not kept it in great numbers in the way it is written. + +

+

So the couriers went with the letters from the king and his princes throughout all Israel and Judah, according to the commandment of the king, saying, “You children of Israel, turn again to Yahweh, the God of Abraham, Isaac, and Israel, that he may return to the remnant of you that have escaped out of the hand of the kings of Assyria. + +Don’t be like your fathers and like your brothers, who trespassed against Yahweh, the God of their fathers, so that he gave them up to desolation, as you see. + +Now don’t be stiff-necked, as your fathers were, but yield yourselves to Yahweh, and enter into his sanctuary, which he has sanctified forever, and serve Yahweh your God, that his fierce anger may turn away from you. + +For if you turn again to Yahweh, your brothers and your children will find compassion with those who led them captive, and will come again into this land, because Yahweh your God is gracious and merciful, and will not turn away his face from you if you return to him.” + +

+

So the couriers passed from city to city through the country of Ephraim and Manasseh, even to Zebulun, but people ridiculed them and mocked them. + +Nevertheless some men of Asher, Manasseh, and Zebulun humbled themselves and came to Jerusalem. + +Also the hand of God came on Judah to give them one heart, to do the commandment of the king and of the princes by Yahweh’s word. + +

+

Many people assembled at Jerusalem to keep the feast of unleavened bread in the second month, a very great assembly. + +They arose and took away the altars that were in Jerusalem, and they took away all the altars for incense and threw them into the brook Kidron. + +Then they killed the Passover on the fourteenth day of the second month. The priests and the Levites were ashamed, and sanctified themselves, and brought burnt offerings into Yahweh’s house. + +They stood in their place after their order, according to the law of Moses the man of God. The priests sprinkled the blood which they received of the hand of the Levites. + +For there were many in the assembly who had not sanctified themselves; therefore the Levites were in charge of killing the Passovers for everyone who was not clean, to sanctify them to Yahweh. + +For a multitude of the people, even many of Ephraim, Manasseh, Issachar, and Zebulun, had not cleansed themselves, yet they ate the Passover other than the way it is written. For Hezekiah had prayed for them, saying, “May the good Yahweh pardon everyone + +who sets his heart to seek God, Yahweh, the God of his fathers, even if they aren’t clean according to the purification of the sanctuary.” + +

+

Yahweh listened to Hezekiah, and healed the people. + +The children of Israel who were present at Jerusalem kept the feast of unleavened bread seven days with great gladness. The Levites and the priests praised Yahweh day by day, singing with loud instruments to Yahweh. + +Hezekiah spoke encouragingly to all the Levites who had good understanding in the service of Yahweh. So they ate throughout the feast for the seven days, offering sacrifices of peace offerings and making confession to Yahweh, the God of their fathers. + +

+

The whole assembly took counsel to keep another seven days, and they kept another seven days with gladness. + +For Hezekiah king of Judah gave to the assembly for offerings one thousand bulls and seven thousand sheep; and the princes gave to the assembly a thousand bulls and ten thousand sheep; and a great number of priests sanctified themselves. + +All the assembly of Judah, with the priests and the Levites, and all the assembly who came out of Israel, and the foreigners who came out of the land of Israel and who lived in Judah, rejoiced. + +So there was great joy in Jerusalem; for since the time of Solomon the son of David king of Israel there was nothing like this in Jerusalem. + +Then the Levitical priests arose and blessed the people. Their voice was heard, and their prayer came up to his holy habitation, even to heaven. + +

+ + +

Now when all this was finished, all Israel who were present went out to the cities of Judah and broke the pillars in pieces, cut down the Asherah poles, and broke down the high places and the altars out of all Judah and Benjamin, also in Ephraim and Manasseh, until they had destroyed them all. Then all the children of Israel returned, every man to his possession, into their own cities. + +

+

Hezekiah appointed the divisions of the priests and the Levites after their divisions, every man according to his service, both the priests and the Levites, for burnt offerings and for peace offerings, to minister, to give thanks, and to praise in the gates of Yahweh’s camp. + +He also appointed the king’s portion of his possessions for the burnt offerings: for the morning and evening burnt offerings, and the burnt offerings for the Sabbaths, for the new moons, and for the set feasts, as it is written in Yahweh’s law. + +Moreover he commanded the people who lived in Jerusalem to give the portion of the priests and the Levites, that they might give themselves to Yahweh’s law. + +As soon as the commandment went out, the children of Israel gave in abundance the first fruits of grain, new wine, oil, honey, and of all the increase of the field; and they brought in the tithe of all things abundantly. + +The children of Israel and Judah, who lived in the cities of Judah, also brought in the tithe of cattle and sheep, and the tithe of dedicated things which were consecrated to Yahweh their God, and laid them in heaps. + +

+

In the third month, they began to lay the foundation of the heaps, and finished them in the seventh month. + +When Hezekiah and the princes came and saw the heaps, they blessed Yahweh and his people Israel. + +Then Hezekiah questioned the priests and the Levites about the heaps. + +Azariah the chief priest, of the house of Zadok, answered him and said, “Since people began to bring the offerings into Yahweh’s house, we have eaten and had enough, and have plenty left over, for Yahweh has blessed his people; and that which is left is this great store.” + +

+

Then Hezekiah commanded them to prepare rooms in Yahweh’s house, and they prepared them. + +They brought in the offerings, the tithes, and the dedicated things faithfully. Conaniah the Levite was ruler over them, and Shimei his brother was second. + +Jehiel, Azaziah, Nahath, Asahel, Jerimoth, Jozabad, Eliel, Ismachiah, Mahath, and Benaiah were overseers under the hand of Conaniah and Shimei his brother, by the appointment of Hezekiah the king and Azariah the ruler of God’s house. + +Kore the son of Imnah the Levite, the gatekeeper at the east gate, was over the free will offerings of God, to distribute Yahweh’s offerings and the most holy things. + +Under him were Eden, Miniamin, Jeshua, Shemaiah, Amariah, and Shecaniah, in the cities of the priests, in their office of trust, to give to their brothers by divisions, to the great as well as to the small; + +in addition to those who were listed by genealogy of males, from three years old and upward, even everyone who entered into Yahweh’s house, as the duty of every day required, for their service in their offices according to their divisions; + +and those who were listed by genealogy of the priests by their fathers’ houses, and the Levites from twenty years old and upward, in their offices by their divisions; + +and those who were listed by genealogy of all their little ones, their wives, their sons, and their daughters, through all the congregation; for in their office of trust they sanctified themselves in holiness. + +Also for the sons of Aaron the priests, who were in the fields of the pasture lands of their cities, in every city, there were men who were mentioned by name to give portions to all the males among the priests and to all who were listed by genealogy among the Levites. + +

+

Hezekiah did so throughout all Judah; and he did that which was good, right, and faithful before Yahweh his God. + +In every work that he began in the service of God’s house, in the law, and in the commandments, to seek his God, he did it with all his heart and prospered. + +

+ + +

After these things and this faithfulness, Sennacherib king of Assyria came, entered into Judah, encamped against the fortified cities, and intended to win them for himself. + +When Hezekiah saw that Sennacherib had come, and that he was planning to fight against Jerusalem, + +he took counsel with his princes and his mighty men to stop the waters of the springs which were outside of the city, and they helped him. + +Then many people gathered together and they stopped all the springs and the brook that flowed through the middle of the land, saying, “Why should the kings of Assyria come, and find abundant water?” + +

+

He took courage, built up all the wall that was broken down, and raised it up to the towers, with the other wall outside, and strengthened Millo in David’s city, and made weapons and shields in abundance. + +He set captains of war over the people, gathered them together to him in the wide place at the gate of the city, and spoke encouragingly to them, saying, + +Be strong and courageous. Don’t be afraid or dismayed because of the king of Assyria, nor for all the multitude who is with him; for there is a greater one with us than with him. + +An arm of flesh is with him, but Yahweh our God is with us to help us and to fight our battles.” The people rested themselves on the words of Hezekiah king of Judah. + +

+

After this, Sennacherib king of Assyria sent his servants to Jerusalem, (now he was attacking Lachish, and all his forces were with him), to Hezekiah king of Judah, and to all Judah who were at Jerusalem, saying, + +Sennacherib king of Assyria says, “In whom do you trust, that you remain under siege in Jerusalem? + +Doesn’t Hezekiah persuade you to give you over to die by famine and by thirst, saying, ‘Yahweh our God will deliver us out of the hand of the king of Assyria’? + +Hasn’t the same Hezekiah taken away his high places and his altars, and commanded Judah and Jerusalem, saying, ‘You shall worship before one altar, and you shall burn incense on it’? + +Don’t you know what I and my fathers have done to all the peoples of the lands? Were the gods of the nations of those lands in any way able to deliver their land out of my hand? + +Who was there among all the gods of those nations which my fathers utterly destroyed that could deliver his people out of my hand, that your God should be able to deliver you out of my hand? + +Now therefore don’t let Hezekiah deceive you nor persuade you in this way. Don’t believe him, for no god of any nation or kingdom was able to deliver his people out of my hand, and out of the hand of my fathers. How much less will your God deliver you out of my hand?” + +

+

His servants spoke yet more against Yahweh God and against his servant Hezekiah. + +He also wrote letters insulting Yahweh, the God of Israel, and speaking against him, saying, “As the gods of the nations of the lands, which have not delivered their people out of my hand, so shall the God of Hezekiah not deliver his people out of my hand.” + +They called out with a loud voice in the Jews’ language to the people of Jerusalem who were on the wall, to frighten them and to trouble them, that they might take the city. + +They spoke of the God of Jerusalem as of the gods of the peoples of the earth, which are the work of men’s hands. + +

+

Hezekiah the king and Isaiah the prophet, the son of Amoz, prayed because of this, and cried to heaven. + +

+

Yahweh sent an angel, who cut off all the mighty men of valor, the leaders, and captains in the camp of the king of Assyria. So he returned with shame of face to his own land. When he had come into the house of his god, those who came out of his own body32:21 +i.e., his own sons killed him there with the sword. + +Thus Yahweh saved Hezekiah and the inhabitants of Jerusalem from the hand of Sennacherib the king of Assyria and from the hand of all others, and guided them on every side. + +Many brought gifts to Yahweh to Jerusalem, and precious things to Hezekiah king of Judah, so that he was exalted in the sight of all nations from then on. + +

+

In those days Hezekiah was terminally ill, and he prayed to Yahweh; and he spoke to him, and gave him a sign. + +But Hezekiah didn’t reciprocate appropriate to the benefit done for him, because his heart was lifted up. Therefore there was wrath on him, Judah, and Jerusalem. + +However, Hezekiah humbled himself for the pride of his heart, both he and the inhabitants of Jerusalem, so that Yahweh’s wrath didn’t come on them in the days of Hezekiah. + +

+

Hezekiah had exceedingly great riches and honor. He provided himself with treasuries for silver, for gold, for precious stones, for spices, for shields, and for all kinds of valuable vessels; + +also storehouses for the increase of grain, new wine, and oil; and stalls for all kinds of animals, and flocks in folds. + +Moreover he provided for himself cities, and possessions of flocks and herds in abundance; for God had given him abundant possessions. + +This same Hezekiah also stopped the upper spring of the waters of Gihon, and brought them straight down on the west side of David’s city. Hezekiah prospered in all his works. + +

+

However, concerning the ambassadors of the princes of Babylon, who sent to him to inquire of the wonder that was done in the land, God left him to test him, that he might know all that was in his heart. + +

+

Now the rest of the acts of Hezekiah and his good deeds, behold, they are written in the vision of Isaiah the prophet, the son of Amoz, in the book of the kings of Judah and Israel. + +Hezekiah slept with his fathers, and they buried him in the ascent to the tombs of the sons of David. All Judah and the inhabitants of Jerusalem honored him at his death. Manasseh his son reigned in his place. + +

+ + +

Manasseh was twelve years old when he began to reign, and he reigned fifty-five years in Jerusalem. + +He did that which was evil in Yahweh’s sight, after the abominations of the nations whom Yahweh cast out before the children of Israel. + +For he built again the high places which Hezekiah his father had broken down; and he raised up altars for the Baals, made Asheroth, and worshiped all the army of the sky, and served them. + +He built altars in Yahweh’s house, of which Yahweh said, “My name shall be in Jerusalem forever.” + +He built altars for all the army of the sky in the two courts of Yahweh’s house. + +He also made his children to pass through the fire in the valley of the son of Hinnom. He practiced sorcery, divination, and witchcraft, and dealt with those who had familiar spirits and with wizards. He did much evil in Yahweh’s sight, to provoke him to anger. + +He set the engraved image of the idol, which he had made, in God’s house, of which God said to David and to Solomon his son, “In this house, and in Jerusalem, which I have chosen out of all the tribes of Israel, I will put my name forever. + +I will not any more remove the foot of Israel from off the land which I have appointed for your fathers, if only they will observe to do all that I have commanded them, even all the law, the statutes, and the ordinances given by Moses.” + +Manasseh seduced Judah and the inhabitants of Jerusalem, so that they did more evil than did the nations whom Yahweh destroyed before the children of Israel. + +

+

Yahweh spoke to Manasseh and to his people, but they didn’t listen. + +Therefore Yahweh brought on them the captains of the army of the king of Assyria, who took Manasseh in chains, bound him with fetters, and carried him to Babylon. + +

+

When he was in distress, he begged Yahweh his God, and humbled himself greatly before the God of his fathers. + +He prayed to him; and he was entreated by him, and heard his supplication, and brought him again to Jerusalem into his kingdom. Then Manasseh knew that Yahweh was God. + +

+

Now after this, he built an outer wall to David’s city on the west side of Gihon, in the valley, even to the entrance at the fish gate. He encircled Ophel with it, and raised it up to a very great height; and he put valiant captains in all the fortified cities of Judah. + +He took away the foreign gods and the idol out of Yahweh’s house, and all the altars that he had built in the mountain of Yahweh’s house and in Jerusalem, and cast them out of the city. + +He built up Yahweh’s altar, and offered sacrifices of peace offerings and of thanksgiving on it, and commanded Judah to serve Yahweh, the God of Israel. + +Nevertheless the people still sacrificed in the high places, but only to Yahweh their God. + +

+

Now the rest of the acts of Manasseh, and his prayer to his God, and the words of the seers who spoke to him in the name of Yahweh, the God of Israel, behold, they are written among the acts of the kings of Israel. + +His prayer also, and how God listened to his request, and all his sin and his trespass, and the places in which he built high places and set up the Asherah poles and the engraved images before he humbled himself: behold, they are written in the history of Hozai.33:19 +or, the seers + +So Manasseh slept with his fathers, and they buried him in his own house; and Amon his son reigned in his place. + +

+

Amon was twenty-two years old when he began to reign; and he reigned two years in Jerusalem. + +He did that which was evil in Yahweh’s sight, as did Manasseh his father; and Amon sacrificed to all the engraved images which Manasseh his father had made, and served them. + +He didn’t humble himself before Yahweh, as Manasseh his father had humbled himself; but this same Amon trespassed more and more. + +His servants conspired against him, and put him to death in his own house. + +But the people of the land killed all those who had conspired against King Amon; and the people of the land made Josiah his son king in his place. + +

+ + +

Josiah was eight years old when he began to reign, and he reigned thirty-one years in Jerusalem. + +He did that which was right in Yahweh’s eyes, and walked in the ways of David his father, and didn’t turn away to the right hand or to the left. + +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, the Asherah poles, the engraved images, and the molten images. + +They broke down the altars of the Baals in his presence; and he cut down the incense altars that were on high above them. He broke the Asherah poles, the engraved images, and the molten images in pieces, made dust of them, and scattered it on the graves of those who had sacrificed to them. + +He burned the bones of the priests on their altars, and purged Judah and Jerusalem. + +He did this in the cities of Manasseh, Ephraim, and Simeon, even to Naphtali, around in their ruins. + +He broke down the altars, beat the Asherah poles and the engraved images into powder, and cut down all the incense altars throughout all the land of Israel, then returned to Jerusalem. + +

+

Now in the eighteenth year of his reign, when he had purged the land and the house, he sent Shaphan the son of Azaliah, Maaseiah the governor of the city, and Joah the son of Joahaz the recorder to repair the house of Yahweh his God. + +They came to Hilkiah the high priest and delivered the money that was brought into God’s house, which the Levites, the keepers of the threshold, had gathered from the hands of Manasseh, Ephraim, of all the remnant of Israel, of all Judah and Benjamin, and of the inhabitants of Jerusalem. + +They delivered it into the hands of the workmen who had the oversight of Yahweh’s house; and the workmen who labored in Yahweh’s house gave it to mend and repair the house. + +They gave it to the carpenters and to the builders to buy cut stone and timber for couplings, and to make beams for the houses which the kings of Judah had destroyed. + +The men did the work faithfully. Their overseers were Jahath and Obadiah the Levites, of the sons of Merari; and Zechariah and Meshullam, of the sons of the Kohathites, to give direction; and others of the Levites, who were all skillful with musical instruments. + +Also they were over the bearers of burdens, and directed all who did the work in every kind of service. Of the Levites, there were scribes, officials, and gatekeepers. + +

+

When they brought out the money that was brought into Yahweh’s house, Hilkiah the priest found the book of Yahweh’s law given by Moses. + +Hilkiah answered Shaphan the scribe, “I have found the book of the law in Yahweh’s house.” So Hilkiah delivered the book to Shaphan. + +

+

Shaphan carried the book to the king, and moreover brought back word to the king, saying, “All that was committed to your servants, they are doing. + +They have emptied out the money that was found in Yahweh’s house, and have delivered it into the hand of the overseers and into the hand of the workmen.” + +Shaphan the scribe told the king, saying, “Hilkiah the priest has delivered me a book.” Shaphan read from it to the king. + +

+

When the king had heard the words of the law, he tore his clothes. + +The king commanded Hilkiah, Ahikam the son of Shaphan, Abdon the son of Micah, Shaphan the scribe, and Asaiah the king’s servant, saying, + +Go inquire of Yahweh for me, and for those who are left in Israel and in Judah, concerning the words of the book that is found; for great is Yahweh’s wrath that is poured out on us, because our fathers have not kept Yahweh’s word, to do according to all that is written in this book.” + +

+

So Hilkiah and those whom the king had commanded went to Huldah the prophetess, the wife of Shallum the son of Tokhath, the son of Hasrah, keeper of the wardrobe (now she lived in Jerusalem in the second quarter), and they spoke to her to that effect. + +

+

She said to them, “Yahweh, the God of Israel says: ‘Tell the man who sent you to me, + +Yahweh says, ‘Behold, I will bring evil on this place and on its inhabitants, even all the curses that are written in the book which they have read before the king of Judah. + +Because they have forsaken me, and have burned incense to other gods, that they might provoke me to anger with all the works of their hands, therefore my wrath is poured out on this place, and it will not be quenched.’”’ + +But to the king of Judah, who sent you to inquire of Yahweh, you shall tell him this, ‘Yahweh, the God of Israel says: “About the words which you have heard, + +because your heart was tender, and you humbled yourself before God when you heard his words against this place and against its inhabitants, and have humbled yourself before me, and have torn your clothes and wept before me, I also have heard you,” says Yahweh. + +Behold, I will gather you to your fathers, and you will be gathered to your grave in peace. Your eyes won’t see all the evil that I will bring on this place and on its inhabitants.”’” +

+

They brought back this message to the king. + +

+

Then the king sent and gathered together all the elders of Judah and Jerusalem. + +The king went up to Yahweh’s house with all the men of Judah and the inhabitants of Jerusalemthe priests, the Levites, and all the people, both great and smalland he read in their hearing all the words of the book of the covenant that was found in Yahweh’s house. + +The king stood in his place and made a covenant before Yahweh, to walk after Yahweh, and to keep his commandments, his testimonies, and his statutes with all his heart and with all his soul, to perform the words of the covenant that were written in this book. + +He caused all who were found in Jerusalem and Benjamin to stand. The inhabitants of Jerusalem did according to the covenant of God, the God of their fathers. + +Josiah took away all the abominations out of all the countries that belonged to the children of Israel, and made all who were found in Israel to serve, even to serve Yahweh their God. All his days they didn’t depart from following Yahweh, the God of their fathers. + +

+ + +

Josiah kept a Passover to Yahweh in Jerusalem. They killed the Passover on the fourteenth day of the first month. + +He set the priests in their offices and encouraged them in the service of Yahweh’s house. + +He said to the Levites who taught all Israel, who were holy to Yahweh, “Put the holy ark in the house which Solomon the son of David king of Israel built. It will no longer be a burden on your shoulders. Now serve Yahweh your God and his people Israel. + +Prepare yourselves after your fathers’ houses by your divisions, according to the writing of David king of Israel, and according to the writing of Solomon his son. + +Stand in the holy place according to the divisions of the fathers’ houses of your brothers the children of the people, and let there be for each a portion of a fathers’ house of the Levites. + +Kill the Passover lamb, sanctify yourselves, and prepare for your brothers, to do according to Yahweh’s word by Moses.” + +

+

Josiah gave to the children of the people, of the flock, lambs and young goats, all of them for the Passover offerings, to all who were present, to the number of thirty thousand, and three thousand bulls. These were of the king’s substance. + +His princes gave a free will offering to the people, to the priests, and to the Levites. Hilkiah, Zechariah, and Jehiel, the rulers of God’s house, gave to the priests for the Passover offerings two thousand six hundred small livestock, and three hundred head of cattle. + +Conaniah also, and Shemaiah and Nethanel, his brothers, and Hashabiah, Jeiel, and Jozabad, the chiefs of the Levites, gave to the Levites for the Passover offerings five thousand small livestock and five hundred head of cattle. + +

+

So the service was prepared, and the priests stood in their place, and the Levites by their divisions, according to the king’s commandment. + +They killed the Passover lambs, and the priests sprinkled the blood which they received from their hands, and the Levites skinned them. + +They removed the burnt offerings, that they might give them according to the divisions of the fathers’ houses of the children of the people, to offer to Yahweh, as it is written in the book of Moses. They did the same with the cattle. + +They roasted the Passover with fire according to the ordinance. They boiled the holy offerings in pots, in cauldrons, and in pans, and carried them quickly to all the children of the people. + +Afterward they prepared for themselves and for the priests, because the priests the sons of Aaron were busy with offering the burnt offerings and the fat until night. Therefore the Levites prepared for themselves and for the priests the sons of Aaron. + +The singers, the sons of Asaph, were in their place, according to the commandment of David, Asaph, Heman, and Jeduthun the king’s seer; and the gatekeepers were at every gate. They didn’t need to depart from their service, because their brothers the Levites prepared for them. + +

+

So all the service of Yahweh was prepared the same day, to keep the Passover, and to offer burnt offerings on Yahweh’s altar, according to the commandment of King Josiah. + +The children of Israel who were present kept the Passover at that time, and the feast of unleavened bread seven days. + +There was no Passover like that kept in Israel from the days of Samuel the prophet, nor did any of the kings of Israel keep such a Passover as Josiah keptwith the priests, the Levites, and all Judah and Israel who were present, and the inhabitants of Jerusalem. + +This Passover was kept in the eighteenth year of the reign of Josiah. + +

+

After all this, when Josiah had prepared the temple, Neco king of Egypt went up to fight against Carchemish by the Euphrates, and Josiah went out against him. + +But he sent ambassadors to him, saying, “What have I to do with you, you king of Judah? I come not against you today, but against the house with which I have war. God has commanded me to make haste. Beware that it is God who is with me, that he not destroy you.” + +

+

Nevertheless Josiah would not turn his face from him, but disguised himself, that he might fight with him, and didn’t listen to the words of Neco from the mouth of God, and came to fight in the valley of Megiddo. + +The archers shot at King Josiah; and the king said to his servants, “Take me away, because I am seriously wounded!” + +

+

So his servants took him out of the chariot, and put him in the second chariot that he had, and brought him to Jerusalem; and he died, and was buried in the tombs of his fathers. All Judah and Jerusalem mourned for Josiah. + +Jeremiah lamented for Josiah, and all the singing men and singing women spoke of Josiah in their lamentations to this day; and they made them an ordinance in Israel. Behold, they are written in the lamentations. + +Now the rest of the acts of Josiah and his good deeds, according to that which is written in Yahweh’s law, + +and his acts, first and last, behold, they are written in the book of the kings of Israel and Judah. + +

+ + +

Then the people of the land took Jehoahaz the son of Josiah, and made him king in his father’s place in Jerusalem. + +Joahaz36:2 +Joahaz +is a variant of +Jehoahaz. was twenty-three years old when he began to reign; and he reigned three months in Jerusalem. + +The king of Egypt removed him from office at Jerusalem, and fined the land one hundred talents of silver and a talent36:3 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of gold. + +The king of Egypt made Eliakim his brother king over Judah and Jerusalem, and changed his name to Jehoiakim. Neco took Joahaz36:4 +Joahaz +is a variant of +Jehoahaz. his brother, and carried him to Egypt. + +

+

Jehoiakim was twenty-five years old when he began to reign, and he reigned eleven years in Jerusalem. He did that which was evil in Yahweh his God’s sight. + +Nebuchadnezzar king of Babylon came up against him, and bound him in fetters to carry him to Babylon. + +Nebuchadnezzar also carried some of the vessels of Yahweh’s house to Babylon, and put them in his temple at Babylon. + +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 place. + +

+

Jehoiachin was eight years old when he began to reign, and he reigned three months and ten days in Jerusalem. He did that which was evil in Yahweh’s sight. + +At the return of the year, King Nebuchadnezzar sent and brought him to Babylon, with the valuable vessels of Yahweh’s house, and made Zedekiah his brother king over Judah and Jerusalem. + +

+

Zedekiah was twenty-one years old when he began to reign, and he reigned eleven years in Jerusalem. + +He did that which was evil in Yahweh his God’s sight. He didn’t humble himself before Jeremiah the prophet speaking from Yahweh’s mouth. + +He also rebelled against King Nebuchadnezzar, who had made him swear by God; but he stiffened his neck, and hardened his heart against turning to Yahweh, the God of Israel. + +Moreover all the chiefs of the priests and the people trespassed very greatly after all the abominations of the nations; and they polluted Yahweh’s house which he had made holy in Jerusalem. + +

+

Yahweh, the God of their fathers, sent to them by his messengers, rising up early and sending, because he had compassion on his people and on his dwelling place; + +but they mocked the messengers of God, despised his words, and scoffed at his prophets, until Yahweh’s wrath arose against his people, until there was no remedy. + +

+

Therefore he brought on them the king of the Chaldeans, who killed their young men with the sword in the house of their sanctuary, and had no compassion on young man or virgin, old man or infirm. He gave them all into his hand. + +All the vessels of God’s house, great and small, and the treasures of Yahweh’s house, and the treasures of the king and of his princes, all these he brought to Babylon. + +They burned God’s house, broke down the wall of Jerusalem, burned all its palaces with fire, and destroyed all of its valuable vessels. + +He carried those who had escaped from the sword away to Babylon, and they were servants to him and his sons until the reign of the kingdom of Persia, + +to fulfill Yahweh’s word by Jeremiah’s mouth, until the land had enjoyed its Sabbaths. As long as it lay desolate, it kept Sabbath, to fulfill seventy years. + +

+

Now in the first year of Cyrus king of Persia, that Yahweh’s word by the mouth of Jeremiah might be accomplished, Yahweh stirred up the spirit of Cyrus king of Persia, so that he made a proclamation throughout all his kingdom, and put it also in writing, saying, + +Cyrus king of Persia says, ‘Yahweh, the God of heaven, has given all the kingdoms of the earth to me; and he has commanded me to build him a house in Jerusalem, which is in Judah. Whoever there is among you of all his people, Yahweh his God be with him, and let him go up.’” + +

+
+World English Bible (WEB) +Ezra +The Book of Ezra +Ezra +Ezr +

The Book of +

+

Ezra +

+ + +

Now in the first year of Cyrus king of Persia, that Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word by Jeremiah’s mouth might be accomplished, Yahweh stirred up the spirit of Cyrus king of Persia, so that he made a proclamation throughout all his kingdom, and put it also in writing, saying, + +

+

Cyrus king of Persia says, ‘Yahweh, the God1:2 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). of heaven, has given me all the kingdoms of the earth; and he has commanded me to build him a house in Jerusalem, which is in Judah. + +Whoever there is among you of all his people, may his God be with him, and let him go up to Jerusalem, which is in Judah, and build the house of Yahweh, the God of Israel (he is God), which is in Jerusalem. + +Whoever is left, in any place where he lives, let the men of his place help him with silver, with gold, with goods, and with animals, in addition to the free will offering for God’s house which is in Jerusalem.’” + +

+

Then the heads of fathers’ households of Judah and Benjamin, the priests and the Levites, all whose spirit God had stirred to go up, rose up to build Yahweh’s house which is in Jerusalem. + +All those who were around them strengthened their hands with vessels of silver, with gold, with goods, with animals, and with precious things, in addition to all that was willingly offered. + +Also Cyrus the king brought out the vessels of Yahweh’s house, which Nebuchadnezzar had brought out of Jerusalem, and had put in the house of his gods; + +even those, Cyrus king of Persia brought out by the hand of Mithredath the treasurer, and counted them out to Sheshbazzar the prince of Judah. + +This is the number of them: thirty platters of gold, one thousand platters of silver, twenty-nine knives, + +thirty bowls of gold, four hundred ten silver bowls of a second kind, and one thousand other vessels. + +All the vessels of gold and of silver were five thousand four hundred. Sheshbazzar brought all these up when the captives were brought up from Babylon to Jerusalem. + +

+ + +

Now these are the children of the province who went up out of the captivity of those who had been carried away, whom Nebuchadnezzar the king of Babylon had carried away to Babylon, and who returned to Jerusalem and Judah, everyone to his city; + +who came with Zerubbabel, Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mispar, Bigvai, Rehum, and Baanah. +

+

The number of the men of the people of Israel: + +The children of Parosh, two thousand one hundred seventy-two. + +The children of Shephatiah, three hundred seventy-two. + +The children of Arah, seven hundred seventy-five. + +The children of Pahathmoab, of the children of Jeshua and Joab, two thousand eight hundred twelve. + +The children of Elam, one thousand two hundred fifty-four. + +The children of Zattu, nine hundred forty-five. + +The children of Zaccai, seven hundred sixty. + +The children of Bani, six hundred forty-two. + +The children of Bebai, six hundred twenty-three. + +The children of Azgad, one thousand two hundred twenty-two. + +The children of Adonikam, six hundred sixty-six. + +The children of Bigvai, two thousand fifty-six. + +The children of Adin, four hundred fifty-four. + +The children of Ater, of Hezekiah, ninety-eight. + +The children of Bezai, three hundred twenty-three. + +The children of Jorah, one hundred twelve. + +The children of Hashum, two hundred twenty-three. + +The children of Gibbar, ninety-five. + +The children of Bethlehem, one hundred twenty-three. + +The men of Netophah, fifty-six. + +The men of Anathoth, one hundred twenty-eight. + +The children of Azmaveth, forty-two. + +The children of Kiriath Arim, Chephirah, and Beeroth, seven hundred forty-three. + +The children of Ramah and Geba, six hundred twenty-one. + +The men of Michmas, one hundred twenty-two. + +The men of Bethel and Ai, two hundred twenty-three. + +The children of Nebo, fifty-two. + +The children of Magbish, one hundred fifty-six. + +The children of the other Elam, one thousand two hundred fifty-four. + +The children of Harim, three hundred twenty. + +The children of Lod, Hadid, and Ono, seven hundred twenty-five. + +The children of Jericho, three hundred forty-five. + +The children of Senaah, three thousand six hundred thirty. + +

+

The priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy-three. + +The children of Immer, one thousand fifty-two. + +The children of Pashhur, one thousand two hundred forty-seven. + +The children of Harim, one thousand seventeen. + +

+

The Levites: the children of Jeshua and Kadmiel, of the children of Hodaviah, seventy-four. + +The singers: the children of Asaph, one hundred twenty-eight. + +The children of the gatekeepers: 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 one hundred thirty-nine. + +

+

The temple servants: the children of Ziha, the children of Hasupha, the children of Tabbaoth, + +the children of Keros, the children of Siaha, the children of Padon, + +the children of Lebanah, the children of Hagabah, the children of Akkub, + +the children of Hagab, the children of Shamlai, the children of Hanan, + +the children of Giddel, the children of Gahar, the children of Reaiah, + +the children of Rezin, the children of Nekoda, the children of Gazzam, + +the children of Uzza, the children of Paseah, the children of Besai, + +the children of Asnah, the children of Meunim, the children of Nephisim, + +the children of Bakbuk, the children of Hakupha, the children of Harhur, + +the children of Bazluth, the children of Mehida, the children of Harsha, + +the children of Barkos, the children of Sisera, the children of Temah, + +the children of Neziah, the children of Hatipha. + +

+

The children of Solomon’s servants: the children of Sotai, the children of Hassophereth, the children of Peruda, + +the children of Jaalah, the children of Darkon, the children of Giddel, + +the children of Shephatiah, the children of Hattil, the children of Pochereth Hazzebaim, the children of Ami. + +All the temple servants, and the children of Solomon’s servants, were three hundred ninety-two. + +

+

These were those who went up from Tel Melah, Tel Harsha, Cherub, Addan, and Immer; but they could not show their fathers’ houses and their offspring,2:59 +or, seed whether they were of Israel: + +the children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred fifty-two. + +Of the children of the priests: the children of Habaiah, the children of Hakkoz, and the children of Barzillai, who took a wife of the daughters of Barzillai the Gileadite, and was called after their name. + +These sought their place among those who were registered by genealogy, but they were not found; therefore they were deemed disqualified and removed from the priesthood. + +The governor told them that they should not eat of the most holy things until a priest stood up to serve with Urim and with Thummim. + +

+

The whole assembly together was forty-two thousand three hundred sixty, + +in addition to their male servants and their female servants, of whom there were seven thousand three hundred thirty-seven; and they had two hundred singing men and singing women. + +Their horses were seven hundred thirty-six; their mules, two hundred forty-five; + +their camels, four hundred thirty-five; their donkeys, six thousand seven hundred twenty. + +

+

Some of the heads of fathers’ households, when they came to Yahweh’s house which is in Jerusalem, offered willingly for God’s house to set it up in its place. + +They gave according to their ability into the treasury of the work sixty-one thousand darics of gold,2:69 +a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each. five thousand minas2:69 +A mina is about 600 grams or 1.3 U. S. pounds, so 5,000 minas is about 3 metric tons. of silver, and one hundred priestsgarments. + +

+

So the priests and the Levites, with some of the people, the singers, the gatekeepers, and the temple servants, lived in their cities, and all Israel in their cities. + +

+ + +

When the seventh month had come, and the children of Israel were in the cities, the people gathered themselves together as one man to Jerusalem. + +Then Jeshua the son of Jozadak stood up with his brothers the priests and Zerubbabel the son of Shealtiel and his relatives, and built the altar of the God of Israel, to offer burnt offerings on it, as it is written in the law of Moses the man of God. + +In spite of their fear because of the peoples of the surrounding lands, they set the altar on its base; and they offered burnt offerings on it to Yahweh, even burnt offerings morning and evening. + +They kept the feast of booths, as it is written, and offered the daily burnt offerings by number, according to the ordinance, as the duty of every day required; + +and afterward the continual burnt offering, the offerings of the new moons, of all the set feasts of Yahweh that were consecrated, and of everyone who willingly offered a free will offering to Yahweh. + +From the first day of the seventh month, they began to offer burnt offerings to Yahweh; but the foundation of Yahweh’s temple was not yet laid. + +They also gave money to the masons and to the carpenters. They also gave food, drink, and oil to the people of Sidon and Tyre to bring cedar trees from Lebanon to the sea, to Joppa, according to the grant that they had from Cyrus King of Persia. + +

+

Now in the second year of their coming to God’s house at Jerusalem, in the second month, Zerubbabel the son of Shealtiel, Jeshua the son of Jozadak, and the rest of their brothers the priests and the Levites, and all those who had come out of the captivity to Jerusalem, began the work and appointed the Levites, from twenty years old and upward, to have the oversight of the work of Yahweh’s house. + +Then Jeshua stood with his sons and his brothers, Kadmiel and his sons, the sons of Judah, together to have the oversight of the workmen in God’s house: the sons of Henadad, with their sons and their brothers the Levites. + +

+

When the builders laid the foundation of Yahweh’s temple, they set the priests in their vestments with trumpets, with the Levites the sons of Asaph with cymbals, to praise Yahweh, according to the directions of David king of Israel. + +They sang to one another in praising and giving thanks to Yahweh, “For he is good, for his loving kindness endures forever toward Israel.” All the people shouted with a great shout, when they praised Yahweh, because the foundation of Yahweh’s house had been laid. + +

+

But many of the priests and Levites and heads of fathers’ households, the old men who had seen the first house, when the foundation of this house was laid before their eyes, wept with a loud voice. Many also shouted aloud for joy, + +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 far away. + +

+ + +

Now when the adversaries of Judah and Benjamin heard that the children of the captivity were building a temple to Yahweh, the God of Israel, + +they came near to Zerubbabel, and to the heads of fathers’ households, and said to them, “Let us build with you, for we seek your God as you do; and we have been sacrificing to him since the days of Esar Haddon king of Assyria, who brought us up here.” + +

+

But Zerubbabel, Jeshua, and the rest of the heads of fathers’ households of Israel said to them, “You have nothing to do with us in building a house to our God; but we ourselves together will build to Yahweh, the God of Israel, as King Cyrus the king of Persia has commanded us.” + +

+

Then the people of the land weakened the hands of the people of Judah, and troubled them in building. + +They hired counselors against them to frustrate their purpose all the days of Cyrus king of Persia, even until the reign of Darius king of Persia. + +In the reign of Ahasuerus, in the beginning of his reign, they wrote an accusation against the inhabitants of Judah and Jerusalem. + +

+

In the days of Artaxerxes, Bishlam, Mithredath, Tabeel, and the rest of his companions wrote to Artaxerxes king of Persia; and the writing of the letter was written in Syrian and delivered in the Syrian language. + +Rehum the chancellor and Shimshai the scribe wrote a letter against Jerusalem to Artaxerxes the king as follows. + +Then Rehum the chancellor, Shimshai the scribe, and the rest of their companions, the Dinaites, and the Apharsathchites, the Tarpelites, the Apharsites, the Archevites, the Babylonians, the Shushanchites, the Dehaites, the Elamites, + +and the rest of the nations whom the great and noble Osnappar brought over and settled in the city of Samaria, and in the rest of the country beyond the River, and so forth, wrote. + +

+

This is the copy of the letter that they sent: +

+ +

To King Artaxerxes, from your servants, the people beyond the River. + +

+

Be it known to the king that the Jews who came up from you have come to us to Jerusalem. They are building the rebellious and bad city, and have finished the walls and repaired the foundations. + +Be it known now to the king that if this city is built and the walls finished, they will not pay tribute, custom, or toll, and in the end it will be hurtful to the kings. + +Now because we eat the salt of the palace and it is not appropriate for us to see the king’s dishonor, therefore we have sent and informed the king, + +that search may be made in the book of the records of your fathers. You will see in the book of the records, and know that this city is a rebellious city, and hurtful to kings and provinces, and that they have started rebellions within it in the past. That is why this city was destroyed. + +We inform the king that if this city is built and the walls finished, then you will have no possession beyond the River. + +

+ +

Then the king sent an answer to Rehum the chancellor, and to Shimshai the scribe, and to the rest of their companions who live in Samaria, and in the rest of the country beyond the River: +

+ +

Peace. + +

+ +

The letter which you sent to us has been plainly read before me. + +I decreed, and search has been made, and it was found that this city has made insurrection against kings in the past, and that rebellion and revolts have been made in it. + +There have also been mighty kings over Jerusalem who have ruled over all the country beyond the River; and tribute, custom, and toll was paid to them. + +Make a decree now to cause these men to cease, and that this city not be built until a decree is made by me. + +Be careful that you not be slack doing so. Why should damage grow to the hurt of the kings? + +

+ +

Then when the copy of King Artaxerxes’ letter was read before Rehum, Shimshai the scribe, and their companions, they went in haste to Jerusalem to the Jews, and made them to cease by force of arms. + +Then work stopped on God’s house which is at Jerusalem. It stopped until the second year of the reign of Darius king of Persia. + +

+ + +

Now the prophets, Haggai the prophet and Zechariah the son of Iddo, prophesied to the Jews who were in Judah and Jerusalem. They prophesied to them in the name of the God of Israel. + +Then Zerubbabel the son of Shealtiel, and Jeshua the son of Jozadak rose up and began to build God’s house which is at Jerusalem; and with them were the prophets of God, helping them. + +

+

At the same time Tattenai, the governor beyond the River, came to them, with Shetharbozenai and their companions, and asked them, “Who gave you a decree to build this house and to finish this wall?” + +They also asked for the names of the men who were making this building. + +But the eye of their God was on the elders of the Jews, and they didn’t make them cease until the matter should come to Darius, and an answer should be returned by letter concerning it. + +

+

The copy of the letter that Tattenai, the governor beyond the River, and Shetharbozenai, and his companions the Apharsachites who were beyond the River, sent to Darius the king follows. + +They sent a letter to him, in which was written: +

+ +

To Darius the king, all peace. + +

+

Be it known to the king that we went into the province of Judah, to the house of the great God, which is being built with great stones and timber is laid in the walls. This work goes on with diligence and prospers in their hands. + +Then we asked those elders, and said to them thus, “Who gave you a decree to build this house, and to finish this wall?” + +We asked them their names also, to inform you that we might write the names of the men who were at their head. + +Thus they returned us answer, saying, “We are the servants of the God of heaven and earth and are building the house that was built these many years ago, which a great king of Israel built and finished. + +But after our fathers had provoked the God of heaven to wrath, he gave them into the hand of Nebuchadnezzar king of Babylon, the Chaldean, who destroyed this house and carried the people away into Babylon. + +But in the first year of Cyrus king of Babylon, Cyrus the king made a decree to build this house of God. + +The gold and silver vessels of God’s house, which Nebuchadnezzar took out of the temple that was in Jerusalem and brought into the temple of Babylon, those Cyrus the king also took out of the temple of Babylon, and they were delivered to one whose name was Sheshbazzar, whom he had made governor. + +He said to him, ‘Take these vessels, go, put them in the temple that is in Jerusalem, and let God’s house be built in its place.’ + +Then the same Sheshbazzar came and laid the foundations of God’s house which is in Jerusalem. Since that time even until now it has been being built, and yet it is not completed. + +

+

Now therefore, if it seems good to the king, let a search be made in the king’s treasure house, which is there at Babylon, whether it is so that a decree was made by Cyrus the king to build this house of God at Jerusalem; and let the king send his pleasure to us concerning this matter.” + +

+ + +

Then Darius the king made a decree, and the house of the archives, where the treasures were laid up in Babylon, was searched. + +A scroll was found at Achmetha, in the palace that is in the province of Media, and in it this was written for a record: + +

+ +

In the first year of Cyrus the king, Cyrus the king made a decree: Concerning God’s house at Jerusalem, let the house be built, the place where they offer sacrifices, and let its foundations be strongly laid, with its height sixty cubits6:3 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and its width sixty cubits; + +with three courses of great stones and a course of new timber. Let the expenses be given out of the king’s house. + +Also let the gold and silver vessels of God’s house, which Nebuchadnezzar took out of the temple which is at Jerusalem and brought to Babylon, be restored and brought again to the temple which is at Jerusalem, everything to its place. You shall put them in God’s house. + +

+

Now therefore, Tattenai, governor beyond the River, Shetharbozenai, and your companions the Apharsachites, who are beyond the River, you must stay far from there. + +Leave 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 its place. + +Moreover I make a decree regarding what you shall do for these elders of the Jews for the building of this house of God: that of the king’s goods, even of the tribute beyond the River, expenses must be given with all diligence to these men, that they not be hindered. + +That which they have need of, including young bulls, rams, and lambs, for burnt offerings to the God of heaven; also wheat, salt, wine, and oil, according to the word of the priests who are at Jerusalem, let it be given them day by day without fail, + +that they may offer sacrifices of pleasant aroma to the God of heaven, and pray for the life of the king and of his sons. + +I have also made a decree that whoever alters this message, let a beam be pulled out from his house, and let him be lifted up and fastened on it; and let his house be made a dunghill for this. + +May the God who has caused his name to dwell there overthrow all kings and peoples who stretch out their hand to alter this, to destroy this house of God which is at Jerusalem. I Darius have made a decree. Let it be done with all diligence. + +

+ +

Then Tattenai, the governor beyond the River, Shetharbozenai, and their companions did accordingly with all diligence, because Darius the king had sent a decree. + +

+

The elders of the Jews built and prospered, through the prophesying of Haggai the prophet and Zechariah the son of Iddo. They built and finished it, according to the commandment of the God of Israel, and according to the decree of Cyrus, Darius, and Artaxerxes king of Persia. + +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. + +

+

The children of Israel, the priests, the Levites, and the rest of the children of the captivity, kept the dedication of this house of God with joy. + +They offered at the dedication of this house of God one hundred bulls, two hundred rams, four hundred lambs; and for a sin offering for all Israel, twelve male goats, according to the number of the tribes of Israel. + +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. + +

+

The children of the captivity kept the Passover on the fourteenth day of the first month. + +Because the priests and the Levites had purified themselves together, all of them were pure. They killed the Passover for all the children of the captivity, for their brothers the priests, and for themselves. + +The children of Israel who had returned out of the captivity, and all who had separated themselves to them from the filthiness of the nations of the land to seek Yahweh, the God of Israel, ate, + +and kept the feast of unleavened bread seven days with joy; because Yahweh had made them joyful, and had turned the heart of the king of Assyria to them, to strengthen their hands in the work of God, the God of Israel’s house. + +

+ + +

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, + +the son of Shallum, the son of Zadok, the son of Ahitub, + +the son of Amariah, the son of Azariah, the son of Meraioth, + +the son of Zerahiah, the son of Uzzi, the son of Bukki, + +the son of Abishua, the son of Phinehas, the son of Eleazar, the son of Aaron the chief priest— + +this Ezra went up from Babylon. He was a skilled scribe in the law of Moses, which Yahweh, the God of Israel, had given; and the king granted him all his request, according to Yahweh his God’s hand on him. + +Some of the children of Israel, including some of the priests, the Levites, the singers, the gatekeepers, and the temple servants went up to Jerusalem in the seventh year of Artaxerxes the king. + +He came to Jerusalem in the fifth month, which was in the seventh year of the king. + +For on the first day of the first month he began to go up from Babylon; and on the first day of the fifth month he came to Jerusalem, according to the good hand of his God on him. + +For Ezra had set his heart to seek Yahweh’s law, and to do it, and to teach statutes and ordinances in Israel. + +

+

Now this is the copy of the letter that King Artaxerxes gave to Ezra the priest, the scribe, even the scribe of the words of Yahweh’s commandments, and of his statutes to Israel: + +

+ +

Artaxerxes, king of kings, +

+

To Ezra the priest, the scribe of the law of the perfect God of heaven. +

+

Now + +I make a decree that all those of the people of Israel and their priests and the Levites in my realm, who intend of their own free will to go to Jerusalem, go with you. + +Because you are sent by the king and his seven counselors to inquire concerning Judah and Jerusalem, according to the law of your God which is in your hand, + +and to carry the silver and gold, which the king and his counselors have freely offered to the God of Israel, whose habitation is in Jerusalem, + +and all the silver and gold that you will find in all the province of Babylon, with the free will offering of the people and of the priests, offering willingly for the house of their God which is in Jerusalem. + +Therefore you shall with all diligence buy with this money bulls, rams, and lambs with their meal offerings and their drink offerings, and shall offer them on the altar of the house of your God which is in Jerusalem. + +Whatever seems good to you and to your brothers to do with the rest of the silver and the gold, do that according to the will of your God. + +The vessels that are given to you for the service of the house of your God, deliver before the God of Jerusalem. + +Whatever more will be needed for the house of your God, which you may have occasion to give, give it out of the king’s treasure house. + +

+

I, even I, Artaxerxes the king, make a decree to all the treasurers who are beyond the River, that whatever Ezra the priest, the scribe of the law of the God of heaven, requires of you, it shall be done with all diligence, + +up to one hundred talents7:22 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of silver, and to one hundred cors7:22 +1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels. of wheat, and to one hundred baths7:22 +1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 100 baths would be about 2,100 liters. of wine, and to one hundred baths of oil, and salt without prescribing how much. + +Whatever is commanded by the God of heaven, let it be done exactly for the house of the God of heaven; for why should there be wrath against the realm of the king and his sons? + +

+

Also we inform you that it shall not be lawful to impose tribute, custom, or toll on any of the priests, Levites, singers, gatekeepers, temple servants, or laborers of this house of God. + +

+

You, Ezra, according to the wisdom of your God that is in your hand, appoint magistrates and judges who may judge all the people who are beyond the River, who all know the laws of your God; and teach him who doesn’t know them. + +Whoever will not do the law of your God and the law of the king, let judgment be executed on him with all diligence, whether it is to death, or to banishment, or to confiscation of goods, or to imprisonment. + +

+ +

Blessed be Yahweh, the God of our fathers, who has put such a thing as this in the king’s heart, to beautify Yahweh’s house which is in Jerusalem; + +and has extended loving kindness to me before the king and his counselors, and before all the king’s mighty princes. I was strengthened according to Yahweh my God’s hand on me, and I gathered together chief men out of Israel to go up with me. + +

+ + +

Now these are the heads of their fathers’ households, and this is the genealogy of those who went up with me from Babylon, in the reign of Artaxerxes the king: + +

+

Of the sons of Phinehas, Gershom. +

+

Of the sons of Ithamar, Daniel. +

+

Of the sons of David, Hattush. + +

+

Of the sons of Shecaniah, of the sons of Parosh, Zechariah; and with him were listed by genealogy of the males one hundred fifty. + +

+

Of the sons of Pahathmoab, Eliehoenai the son of Zerahiah; and with him two hundred males. + +

+

Of the sons of Shecaniah, the son of Jahaziel; and with him three hundred males. + +

+

Of the sons of Adin, Ebed the son of Jonathan; and with him fifty males. + +

+

Of the sons of Elam, Jeshaiah the son of Athaliah; and with him seventy males. + +

+

Of the sons of Shephatiah, Zebadiah the son of Michael; and with him eighty males. + +

+

Of the sons of Joab, Obadiah the son of Jehiel; and with him two hundred eighteen males. + +

+

Of the sons of Shelomith, the son of Josiphiah; and with him one hundred sixty males. + +

+

Of the sons of Bebai, Zechariah the son of Bebai; and with him twenty-eight males. + +

+

Of the sons of Azgad, Johanan the son of Hakkatan; and with him one hundred ten males. + +

+

Of the sons of Adonikam, who were the last, their names are: Eliphelet, Jeuel, and Shemaiah; and with them sixty males. + +

+

Of the sons of Bigvai, Uthai and Zabbud; and with them seventy males. + +

+

I gathered them together to the river that runs to Ahava; and there we encamped three days. Then I looked around at the people and the priests, and found there were none of the sons of Levi. + +Then I sent for Eliezer, for Ariel, for Shemaiah, for Elnathan, for Jarib, for Elnathan, for Nathan, for Zechariah, and for Meshullam, chief men; also for Joiarib and for Elnathan, who were teachers. + +I sent them out to Iddo the chief at the place Casiphia; and I told them what they should tell Iddo and his brothers the temple servants at the place Casiphia, that they should bring to us ministers for the house of our God. + +According to the good hand of our God on us they brought us a man of discretion, of the sons of Mahli, the son of Levi, the son of Israel, namely Sherebiah, with his sons and his brothers, eighteen; + +and Hashabiah, and with him Jeshaiah of the sons of Merari, his brothers and their sons, twenty; + +and of the temple servants, whom David and the princes had given for the service of the Levites, two hundred twenty temple servants. All of them were mentioned by name. + +

+

Then I proclaimed a fast there at the river Ahava, that we might humble ourselves before our God, to seek from him a straight way for us, for our little ones, and for all our possessions. + +For I was ashamed to ask of the king a band of soldiers and horsemen to help us against the enemy on the way, because we had spoken to the king, saying, “The hand of our God is on all those who seek him, for good; but his power and his wrath is against all those who forsake him.” + +So we fasted and begged our God for this, and he granted our request. + +

+

Then I set apart twelve of the chiefs of the priests, even Sherebiah, Hashabiah, and ten of their brothers with them, + +and weighed to them the silver, the gold, and the vessels, even the offering for the house of our God, which the king, his counselors, his princes, and all Israel there present, had offered. + +I weighed into their hand six hundred fifty talents of silver,8:26 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces one hundred talents of silver vessels, one hundred talents of gold, + +twenty bowls of gold weighing one thousand darics,8:27 +a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each. and two vessels of fine bright bronze, precious as gold. + +I said to them, “You are holy to Yahweh, and the vessels are holy. The silver and the gold are a free will offering to Yahweh, the God of your fathers. + +Watch and keep them until you weigh them before the chiefs of the priests, the Levites, and the princes of the fathers’ households of Israel at Jerusalem, in the rooms of Yahweh’s house.” + +

+

So the priests and the Levites received the weight of the silver, the gold, and the vessels, to bring them to Jerusalem to the house of our God. + +

+

Then we departed from the river Ahava on the twelfth day of the first month, to go to Jerusalem. The hand of our God was on us, and he delivered us from the hand of the enemy and the bandits by the way. + +We came to Jerusalem, and stayed there three days. + +On the fourth day the silver and the gold and the vessels were weighed in the house of our God into the hand of Meremoth the son of Uriah the priest; and with him was Eleazar the son of Phinehas; and with them were Jozabad the son of Jeshua, and Noadiah the son of Binnui, the Levites. + +Everything was counted and weighed; and all the weight was written at that time. + +

+

The children of the captivity, who had come out of exile, offered burnt offerings to the God of Israel: twelve bulls for all Israel, ninety-six rams, seventy-seven lambs, and twelve male goats for a sin offering. All this was a burnt offering to Yahweh. + +They delivered the king’s commissions to the king’s local governors and to the governors beyond the River. So they supported the people and God’s house. + +

+ + +

Now when these things were done, the princes came near to me, saying, “The people of Israel, the priests, and the Levites have not separated themselves from the peoples of the lands, following their abominations, even those of the Canaanites, the Hittites, the Perizzites, the Jebusites, the Ammonites, the Moabites, the Egyptians, and the Amorites. + +For they have taken of their daughters for themselves and for their sons, so that the holy offspring have mixed themselves with the peoples of the lands. Yes, the hand of the princes and rulers has been chief in this trespass.” + +

+

When I heard this thing, I tore my garment and my robe, and pulled the hair out of my head and of my beard, and sat down confounded. + +Then everyone who trembled at the words of the God of Israel were assembled to me because of the trespass of the exiles; and I sat confounded until the evening offering. + +

+

At the evening offering I rose up from my humiliation, even with my garment and my robe torn; and I fell on my knees, and spread out my hands to Yahweh my God; + +and I said, “My God, I am ashamed and blush to lift up my face to you, my God, for our iniquities have increased over our head, and our guiltiness has grown up to the heavens. + +Since the days of our fathers we have been exceedingly guilty to this day; and for our iniquities we, our kings, and our priests have been delivered into the hand of the kings of the lands, to the sword, to captivity, to plunder, and to confusion of face, as it is this day. + +Now for a little moment grace has been shown from Yahweh our God, to leave us a remnant to escape, and to give us a stake in his holy place, that our God may lighten our eyes, and revive us a little in our bondage. + +For we are bondservants; yet our God has not forsaken us in our bondage, but has extended loving kindness to us in the sight of the kings of Persia, to revive us, to set up the house of our God, and to repair its ruins, and to give us a wall in Judah and in Jerusalem. + +

+

Now, our God, what shall we say after this? For we have forsaken your commandments, + +which you have commanded by your servants the prophets, saying, ‘The land to which you go to possess is an unclean land through the uncleanness of the peoples of the lands, through their abominations, which have filled it from one end to another with their filthiness. + +Now therefore don’t give your daughters to their sons. Don’t take their daughters to your sons, nor seek their peace or their prosperity forever, that you may be strong and eat the good of the land, and leave it for an inheritance to your children forever.’ + +

+

After all that has come on us for our evil deeds and for our great guilt, since you, our God, have punished us less than our iniquities deserve, and have given us such a remnant, + +shall we again break your commandments, and join ourselves with the peoples that do these abominations? Wouldn’t you be angry with us until you had consumed us, so that there would be no remnant, nor any to escape? + +Yahweh, the God of Israel, you are righteous; for we are left a remnant that has escaped, as it is today. Behold,9:15 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. we are before you in our guiltiness; for no one can stand before you because of this.” + +

+ + +

Now while Ezra prayed and made confession, weeping and casting himself down before God’s house, there was gathered together to him out of Israel a very great assembly of men and women and children; for the people wept very bitterly. + +Shecaniah the son of Jehiel, one of the sons of Elam, answered Ezra, “We have trespassed against our God, and have married foreign women of the peoples of the land. Yet now there is hope for Israel concerning this thing. + +Now therefore let’s make a covenant with our God to put away all the wives and those who are born of them, according to the counsel of my lord and of those who tremble at the commandment of our God. Let it be done according to the law. + +Arise, for the matter belongs to you and we are with you. Be courageous, and do it.” + +

+

Then Ezra arose, and made the chiefs of the priests, the Levites, and all Israel to swear that they would do according to this word. So they swore. + +Then Ezra rose up from before God’s house, and went into the room of Jehohanan the son of Eliashib. When he came there, he didn’t eat bread or drink water, for he mourned because of the trespass of the exiles. + +They made a proclamation throughout Judah and Jerusalem to all the children of the captivity, that they should gather themselves together to Jerusalem; + +and that whoever didn’t come within three days, according to the counsel of the princes and the elders, all his possessions should be forfeited, and he himself separated from the assembly of the captivity. + +

+

Then all the men of Judah and Benjamin gathered themselves together to Jerusalem within the three days. It was the ninth month, on the twentieth day of the month; and all the people sat in the wide place in front of God’s house, trembling because of this matter, and because of the great rain. + +

+

Ezra the priest stood up and said to them, “You have trespassed, and have married foreign women, increasing the guilt of Israel. + +Now therefore make confession to Yahweh, the God of your fathers and do his pleasure. Separate yourselves from the peoples of the land and from the foreign women.” + +

+

Then all the assembly answered with a loud voice, “We must do as you have said concerning us. + +But the people are many, and it is a time of much rain, and we are not able to stand outside. This is not a work of one day or two, for we have greatly transgressed in this matter. + +Now let our princes be appointed for all the assembly, and let all those who are in our cities who have married foreign women come at appointed times, and with them the elders of every city and its judges, until the fierce wrath of our God is turned from us, until this matter is resolved.” + +

+

Only Jonathan the son of Asahel and Jahzeiah the son of Tikvah stood up against this; and Meshullam and Shabbethai the Levite helped them. + +

+

The children of the captivity did so. Ezra the priest, with certain heads of fathers’ households, after their fathers’ houses, and all of them by their names, were set apart; and they sat down in the first day of the tenth month to examine the matter. + +They finished with all the men who had married foreign women by the first day of the first month. + +

+

Among the sons of the priests there were found who had married foreign women: +

+

of the sons of Jeshua, the son of Jozadak, and his brothers: Maaseiah, Eliezer, Jarib, and Gedaliah. + +They gave their hand that they would put away their wives; and being guilty, they offered a ram of the flock for their guilt. + +

+

Of the sons of Immer: Hanani and Zebadiah. + +

+

Of the sons of Harim: Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah. + +

+

Of the sons of Pashhur: Elioenai, Maaseiah, Ishmael, Nethanel, Jozabad, and Elasah. + +

+

Of the Levites: Jozabad, Shimei, Kelaiah (also called Kelita), Pethahiah, Judah, and Eliezer. + +

+

Of the singers: Eliashib. +

+

Of the gatekeepers: Shallum, Telem, and Uri. + +

+

Of Israel: Of the sons of Parosh: Ramiah, Izziah, Malchijah, Mijamin, Eleazar, Malchijah, and Benaiah. + +

+

Of the sons of Elam: Mattaniah, Zechariah, Jehiel, Abdi, Jeremoth, and Elijah. + +

+

Of the sons of Zattu: Elioenai, Eliashib, Mattaniah, Jeremoth, Zabad, and Aziza. + +

+

Of the sons of Bebai: Jehohanan, Hananiah, Zabbai, and Athlai. + +

+

Of the sons of Bani: Meshullam, Malluch, Adaiah, Jashub, Sheal, and Jeremoth. + +

+

Of the sons of Pahathmoab: Adna, Chelal, Benaiah, Maaseiah, Mattaniah, Bezalel, Binnui, and Manasseh. + +

+

Of the sons of Harim: Eliezer, Isshijah, Malchijah, Shemaiah, Shimeon, + +Benjamin, Malluch, and Shemariah. + +

+

Of the sons of Hashum: Mattenai, Mattattah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei. + +

+

Of the sons of Bani: Maadai, Amram, Uel, + +Benaiah, Bedeiah, Cheluhi, + +Vaniah, Meremoth, Eliashib, + +Mattaniah, Mattenai, Jaasu, + +Bani, Binnui, Shimei, + +Shelemiah, Nathan, Adaiah, + +Machnadebai, Shashai, Sharai, + +Azarel, Shelemiah, Shemariah, + +Shallum, Amariah, and Joseph. + +

+

Of the sons of Nebo: Jeiel, Mattithiah, Zabad, Zebina, Iddo, Joel, and Benaiah. + +

+

All these had taken foreign wives. Some of them had wives by whom they had children. + +

+
+World English Bible (WEB) +Nehemiah +The Book of Nehemiah +Nehemiah +Neh +

The Book of +

+

Nehemiah +

+ + +

The words of Nehemiah the son of Hacaliah. +

+

Now in the month Chislev, in the twentieth year, as I was in Susa the palace, + +Hanani, one of my brothers, came, he and certain men out of Judah; and I asked them about the Jews who had escaped, who were left of the captivity, and concerning Jerusalem. + +They said to me, “The remnant who are left of the captivity there in the province are in great affliction and reproach. The wall of Jerusalem is also broken down, and its gates are burned with fire.” + +

+

When I heard these words, I sat down and wept, and mourned several days; and I fasted and prayed before the God1:4 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). of heaven, + +and said, “I beg you, Yahweh,1:5 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. the God of heaven, the great and awesome God who keeps covenant and loving kindness with those who love him and keep his commandments, + +let your ear now be attentive and your eyes open, that you may listen to the prayer of your servant which I pray before you at this time, day and night, for the children of Israel your servants, while I confess the sins of the children of Israel which we have sinned against you. Yes, I and my father’s house have sinned. + +We have dealt very corruptly against you, and have not kept the commandments, nor the statutes, nor the ordinances, which you commanded your servant Moses. + +

+

Remember, I beg you, the word that you commanded your servant Moses, saying, ‘If you trespass, I will scatter you among the peoples; + +but if you return to me, and keep my commandments and do them, though your outcasts were in the uttermost part of the heavens, yet I will gather them from there, and will bring them to the place that I have chosen, to cause my name to dwell there.’ + +

+

Now these are your servants and your people, whom you have redeemed by your great power and by your strong hand. + +Lord,1:11 +The word translated “Lord” is “Adonai.” I beg you, let your ear be attentive now to the prayer of your servant, and to the prayer of your servants who delight to fear your name; and please prosper your servant today, and grant him mercy in the sight of this man.” +

+

Now I was cup bearer to the king. + +

+ + +

In the month Nisan, in the twentieth year of Artaxerxes the king, when wine was before him, I picked up the wine, and gave it to the king. Now I had not been sad before in his presence. + +The king said to me, “Why is your face sad, since you are not sick? This is nothing else but sorrow of heart.” +

+

Then I was very much afraid. + +I said to the king, “Let the king live forever! Why shouldn’t my face be sad, when the city, the place of my fathers’ tombs, lies waste, and its gates have been consumed with fire?” + +

+

Then the king said to me, “What is your request?” +

+

So I prayed to the God of heaven. + +I said to the king, “If it pleases the king, and if your servant has found favor in your sight, I ask that you would send me to Judah, to the city of my fathers’ tombs, that I may build it.” + +

+

The king said to me (the queen was also sitting by him), “How long will your journey be? When will you return?” +

+

So it pleased the king to send me, and I set a time for him. + +Moreover I said to the king, “If it pleases the king, let letters be given me to the governors beyond the River, that they may let me pass through until I come to Judah; + +and a letter to Asaph the keeper of the king’s forest, that he may give me timber to make beams for the gates of the citadel by the temple, for the wall of the city, and for the house that I will occupy.” +

+

The king granted my requests, because of the good hand of my God on me. + +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. + +When Sanballat the Horonite and Tobiah the Ammonite servant heard of it, it grieved them exceedingly, because a man had come to seek the welfare of the children of Israel. + +

+

So I came to Jerusalem, and was there three days. + +I arose in the night, I and a few men with me. I didn’t tell anyone what my God put into my heart to do for Jerusalem. There wasn’t any animal with me except the animal that I rode on. + +I went out by night by the valley gate toward the jackal’s well, then to the dung gate; and I inspected the walls of Jerusalem, which were broken down, and its gates were consumed with fire. + +Then I went on to the spring gate and to the king’s pool, but there was no place for the animal that was under me to pass. + +Then I went up in the night by the brook and inspected the wall; and I turned back, and entered by the valley gate, and so returned. + +The rulers didn’t know where I went, or what I did. I had not as yet told it to the Jews, nor to the priests, nor to the nobles, nor to the rulers, nor to the rest who did the work. + +

+

Then I said to them, “You see the bad situation that we are in, how Jerusalem lies waste, and its gates are burned with fire. Come, let’s build up the wall of Jerusalem, that we won’t be disgraced.” + +I told them about the hand of my God which was good on me, and also about the king’s words that he had spoken to me. +

+

They said, “Let’s rise up and build.” So they strengthened their hands for the good work. + +

+

But when Sanballat the Horonite, Tobiah the Ammonite servant, and Geshem the Arabian, heard it, they ridiculed us and despised us, and said, “What is this thing that you are doing? Will you rebel against the king?” + +

+

Then I answered them, and said to them, “The God of heaven will prosper us. Therefore we, his servants, will arise and build; but you have no portion, nor right, nor memorial in Jerusalem.” + +

+ + +

Then Eliashib the high priest rose up with his brothers the priests, and they built the sheep gate. They sanctified it, and set up its doors. They sanctified it even to the tower of Hammeah, to the tower of Hananel. + +Next to him the men of Jericho built. Next to them Zaccur the son of Imri built. + +

+

The sons of Hassenaah built the fish gate. They laid its beams, and set up its doors, its bolts, and its bars. + +Next to them, Meremoth the son of Uriah, the son of Hakkoz made repairs. Next to them, Meshullam the son of Berechiah, the son of Meshezabel made repairs. Next to them, Zadok the son of Baana made repairs. + +Next to them, the Tekoites made repairs; but their nobles didn’t put their necks to the Lord’s work. + +

+

Joiada the son of Paseah and Meshullam the son of Besodeiah repaired the old gate. They laid its beams and set up its doors, its bolts, and its bars. + +Next to them, Melatiah the Gibeonite and Jadon the Meronothite, the men of Gibeon and of Mizpah, repaired the residence of the governor beyond the River. + +Next to him, Uzziel the son of Harhaiah, goldsmiths, made repairs. Next to him, Hananiah, one of the perfumers, made repairs, and they fortified Jerusalem even to the wide wall. + +Next to them, Rephaiah the son of Hur, the ruler of half the district of Jerusalem, made repairs. + +Next to them, Jedaiah the son of Harumaph made repairs across from his house. Next to him, Hattush the son of Hashabneiah made repairs. + +Malchijah the son of Harim and Hasshub the son of Pahathmoab repaired another portion and the tower of the furnaces. + +Next to him, Shallum the son of Hallohesh, the ruler of half the district of Jerusalem, he and his daughters made repairs. + +

+

Hanun and the inhabitants of Zanoah repaired the valley gate. They built it, and set up its doors, its bolts, and its bars, and one thousand cubits3:13 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. of the wall to the dung gate. + +

+

Malchijah the son of Rechab, the ruler of the district of Beth Haccherem, repaired the dung gate. He built it, and set up its doors, its bolts, and its bars. + +

+

Shallun the son of Colhozeh, the ruler of the district of Mizpah, repaired the spring gate. He built it, covered it, and set up its doors, its bolts, and its bars; and he repaired the wall of the pool of Shelah by the king’s garden, even to the stairs that go down from David’s city. + +After him, Nehemiah the son of Azbuk, the ruler of half the district of Beth Zur, made repairs to the place opposite the tombs of David, and to the pool that was made, and to the house of the mighty men. + +After him, the LevitesRehum the son of Bani made repairs. Next to him, Hashabiah, the ruler of half the district of Keilah, made repairs for his district. + +After him, their brothers, Bavvai the son of Henadad, the ruler of half the district of Keilah made repairs. + +Next to him, Ezer the son of Jeshua, the ruler of Mizpah, repaired another portion across from the ascent to the armory at the turning of the wall. + +After him, Baruch the son of Zabbai earnestly repaired another portion, from the turning of the wall to the door of the house of Eliashib the high priest. + +After him, Meremoth the son of Uriah the son of Hakkoz repaired another portion, from the door of the house of Eliashib even to the end of the house of Eliashib. + +After him, the priests, the men of the surrounding area made repairs. + +After them, Benjamin and Hasshub made repairs across from their house. After them, Azariah the son of Maaseiah the son of Ananiah made repairs beside his own house. + +After him, Binnui the son of Henadad repaired another portion, from the house of Azariah to the turning of the wall, and to the corner. + +Palal the son of Uzai made repairs opposite the turning of the wall, and the tower that stands out from the upper house of the king, which is by the court of the guard. After him Pedaiah the son of Parosh made repairs. + +(Now the temple servants lived in Ophel, to the place opposite the water gate toward the east, and the tower that stands out.) + +After him the Tekoites repaired another portion, opposite the great tower that stands out, and to the wall of Ophel. + +

+

Above the horse gate, the priests made repairs, everyone across from his own house. + +After them, Zadok the son of Immer made repairs across from his own house. After him, Shemaiah the son of Shecaniah, the keeper of the east gate, made repairs. + +After him, Hananiah the son of Shelemiah, and Hanun, the sixth son of Zalaph, repaired another portion. After him, Meshullam the son of Berechiah made repairs across from his room. + +After him, Malchijah, one of the goldsmiths to the house of the temple servants, and of the merchants, made repairs opposite the gate of Hammiphkad and to the ascent of the corner. + +Between the ascent of the corner and the sheep gate, the goldsmiths and the merchants made repairs. + +

+ + +

But when Sanballat heard that we were building the wall, he was angry, and was very indignant, and mocked the Jews. + +He spoke before his brothers and the army of Samaria, and said, “What are these feeble Jews doing? Will they fortify themselves? Will they sacrifice? Will they finish in a day? Will they revive the stones out of the heaps of rubbish, since they are burned?” + +

+

Now Tobiah the Ammonite was by him, and he said, “What they are building, if a fox climbed up it, he would break down their stone wall.” + +

+

“Hear, our God, for we are despised. Turn back their reproach on their own head. Give them up for a plunder in a land of captivity. + +Don’t cover their iniquity. Don’t let their sin be blotted out from before you; for they have insulted the builders.” + +

+

So we built the wall; and all the wall was joined together to half its height, for the people had a mind to work. + +

+

But when Sanballat, Tobiah, the Arabians, the Ammonites, and the Ashdodites heard that the repairing of the walls of Jerusalem went forward, and that the breaches began to be filled, they were very angry; + +and they all conspired together to come and fight against Jerusalem, and to cause confusion among us. + +But we made our prayer to our God, and set a watch against them day and night because of them. + +

+

Judah said, “The strength of the bearers of burdens is fading and there is much rubble, so that we are not able to build the wall.” + +Our adversaries said, “They will not know or see, until we come in among them and kill them, and cause the work to cease.” + +

+

When the Jews who lived by them came, they said to us ten times from all places, “Wherever you turn, they will attack us.” + +

+

Therefore I set guards in the lowest parts of the space behind the wall, in the open places. I set the people by family groups with their swords, their spears, and their bows. + +I looked, and rose up, and said to the nobles, to the rulers, and to the rest of the people, “Don’t be afraid of them! Remember the Lord, who is great and awesome, and fight for your brothers, your sons, your daughters, your wives, and your houses.” + +

+

When our enemies heard that it was known to us, and God had brought their counsel to nothing, all of us returned to the wall, everyone to his work. + +From that time forth, half of my servants did the work, and half of them held the spears, the shields, the bows, and the coats of mail; and the rulers were behind all the house of Judah. + +Those who built the wall, and those who bore burdens loaded themselves; everyone with one of his hands did the work, and with the other held his weapon. + +Among the builders, everyone wore his sword at his side, and so built. He who sounded the trumpet was by me. + +I said to the nobles, and to the rulers and to the rest of the people, “The work is great and widely spread out, and we are separated on the wall, far from one another. + +Wherever you hear the sound of the trumpet, rally there to us. Our God will fight for us.” + +

+

So we did the work. Half of the people held the spears from the rising of the morning until the stars appeared. + +Likewise at the same time I said to the people, “Let everyone with his servant lodge within Jerusalem, that in the night they may be a guard to us, and may labor in the day.” + +So neither I, nor my brothers, nor my servants, nor the men of the guard who followed me took off our clothes. Everyone took his weapon to the water. + +

+ + +

Then there arose a great cry of the people and of their wives against their brothers the Jews. + +For there were some who said, “We, our sons and our daughters, are many. Let us get grain, that we may eat and live.” + +There were also some who said, “We are mortgaging our fields, our vineyards, and our houses. Let us get grain, because of the famine.” + +There were also some who said, “We have borrowed money for the king’s tribute using our fields and our vineyards as collateral. + +Yet now our flesh is as the flesh of our brothers, our children as their children. Behold,5:5 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. we bring our sons and our daughters into bondage to be servants, and some of our daughters have been brought into bondage. It is also not in our power to help it, because other men have our fields and our vineyards.” + +

+

I was very angry when I heard their cry and these words. + +Then I consulted with myself, and contended with the nobles and the rulers, and said to them, “You exact usury, everyone of his brother.” I held a great assembly against them. + +I said to them, “We, after our ability, have redeemed our brothers the Jews that were sold to the nations; and would you even sell your brothers, and should they be sold to us?” Then they held their peace, and found not a word to say. + +Also I said, “The thing that you do is not good. Shouldn’t you walk in the fear of our God because of the reproach of the nations, our enemies? + +I likewise, my brothers and my servants, lend them money and grain. Please let us stop this usury. + +Please restore to them, even today, their fields, their vineyards, their olive groves, and their houses, also the hundredth part of the money, and of the grain, the new wine, and the oil, that you are charging them.” + +

+

Then they said, “We will restore them, and will require nothing of them. We will do so, even as you say.” +

+

Then I called the priests, and took an oath of them, that they would do according to this promise. + +Also I shook out my lap, and said, “So may God shake out every man from his house, and from his labor, that doesn’t perform this promise; even may he be shaken out and emptied like this.” +

+

All the assembly said, “Amen,” and praised Yahweh. The people did according to this promise. + +

+

Moreover from the time that I was appointed to be their governor in the land of Judah, from the twentieth year even to the thirty-second year of Artaxerxes the king, that is, twelve years, I and my brothers have not eaten the bread of the governor. + +But the former governors who were before me were supported by the people, and took bread and wine from them, plus forty shekels5:15 +A shekel is about 10 grams or about 0.35 ounces. of silver; yes, even their servants ruled over the people, but I didn’t do so, because of the fear of God. + +Yes, I also continued in the work of this wall. We didn’t buy any land. All my servants were gathered there to the work. + +Moreover there were at my table, of the Jews and the rulers, one hundred fifty men, in addition to those who came to us from among the nations that were around us. + +Now that which was prepared for one day was one ox and six choice sheep. Also fowls were prepared for me, and once in ten days a store of all sorts of wine. Yet for all this, I didn’t demand the governor’s pay, because the bondage was heavy on this people. + +Remember me, my God, for all the good that I have done for this people. + +

+ + +

Now when it was reported to Sanballat, Tobiah, Geshem the Arabian, and to the rest of our enemies that I had built the wall, and that there was no breach left in it (though even to that time I had not set up the doors in the gates), + +Sanballat and Geshem sent to me, saying, “Come! Let’s meet together in the villages in the plain of Ono.” But they intended to harm me. + +

+

I sent messengers to them, saying, “I am doing a great work, so that I can’t come down. Why should the work cease while I leave it and come down to you?” + +

+

They sent to me four times like this; and I answered them the same way. + +Then Sanballat sent his servant to me the same way the fifth time with an open letter in his hand, + +in which was written, “It is reported among the nations, and Gashmu says it, that you and the Jews intend to rebel. Because of that, you are building the wall. You would be their king, according to these words. + +You have also appointed prophets to proclaim of you at Jerusalem, saying, ‘There is a king in Judah!’ Now it will be reported to the king according to these words. Come now therefore, and let’s take counsel together.” + +

+

Then I sent to him, saying, “There are no such things done as you say, but you imagine them out of your own heart.” + +For they all would have made us afraid, saying, “Their hands will be weakened from the work, that it not be done.” But now, strengthen my hands. + +

+

I went to the house of Shemaiah the son of Delaiah the son of Mehetabel, who was shut in at his home; and he said, “Let us meet together in God’s house, within the temple, and let’s shut the doors of the temple; for they will come to kill you. Yes, in the night they will come to kill you.” + +

+

I said, “Should a man like me flee? Who is there that, being such as I, would go into the temple to save his life? I will not go in.” + +I discerned, and behold, God had not sent him, but he pronounced this prophecy against me. Tobiah and Sanballat had hired him. + +He was hired so that I would be afraid, do so, and sin, and that they might have material for an evil report, that they might reproach me. + +Remember, my God, Tobiah and Sanballat according to these their works, and also the prophetess Noadiah and the rest of the prophets that would have put me in fear.” + +

+

So the wall was finished in the twenty-fifth day of Elul, in fifty-two days. + +When all our enemies heard of it, all the nations that were around us were afraid, and they lost their confidence; for they perceived that this work was done by our God. + +Moreover in those days the nobles of Judah sent many letters to Tobiah, and Tobiah’s letters came to them. + +For there were many in Judah sworn to him because he was the son-in-law of Shecaniah the son of Arah; and his son Jehohanan had taken the daughter of Meshullam the son of Berechiah as wife. + +Also they spoke of his good deeds before me, and reported my words to him. Tobiah sent letters to put me in fear. + +

+ + +

Now when the wall was built and I had set up the doors, and the gatekeepers and the singers and the Levites were appointed, + +I put my brother Hanani, and Hananiah the governor of the fortress, in charge of Jerusalem; for he was a faithful man and feared God above many. + +I said to them, “Don’t let the gates of Jerusalem be opened until the sun is hot; and while they stand guard, let them shut the doors, and you bar them; and appoint watches of the inhabitants of Jerusalem, everyone in his watch, with everyone near his house.” + +

+

Now the city was wide and large; but the people were few therein, and the houses were not built. + +

+

My God put into my heart to gather together the nobles, and the rulers, and the people, that they might be listed by genealogy. I found the book of the genealogy of those who came up at the first, and I found this written in it: + +

+

These are the children of the province who went up out of the captivity of those who had been carried away, whom Nebuchadnezzar the king of Babylon had carried away, and who returned to Jerusalem and to Judah, everyone to his city, + +who came with Zerubbabel, Jeshua, Nehemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, and Baanah. +

+

The number of the men of the people of Israel: + +

+

The children of Parosh: two thousand one hundred seventy-two. + +

+

The children of Shephatiah: three hundred seventy-two. + +

+

The children of Arah: six hundred fifty-two. + +

+

The children of Pahathmoab, of the children of Jeshua and Joab: two thousand eight hundred eighteen. + +

+

The children of Elam: one thousand two hundred fifty-four. + +

+

The children of Zattu: eight hundred forty-five. + +

+

The children of Zaccai: seven hundred sixty. + +

+

The children of Binnui: six hundred forty-eight. + +

+

The children of Bebai: six hundred twenty-eight. + +

+

The children of Azgad: two thousand three hundred twenty-two. + +

+

The children of Adonikam: six hundred sixty-seven. + +

+

The children of Bigvai: two thousand sixty-seven. + +

+

The children of Adin: six hundred fifty-five. + +

+

The children of Ater: of Hezekiah, ninety-eight. + +

+

The children of Hashum: three hundred twenty-eight. + +

+

The children of Bezai: three hundred twenty-four. + +

+

The children of Hariph: one hundred twelve. + +

+

The children of Gibeon: ninety-five. + +

+

The men of Bethlehem and Netophah: one hundred eighty-eight. + +

+

The men of Anathoth: one hundred twenty-eight. + +

+

The men of Beth Azmaveth: forty-two. + +

+

The men of Kiriath Jearim, Chephirah, and Beeroth: seven hundred forty-three. + +

+

The men of Ramah and Geba: six hundred twenty-one. + +

+

The men of Michmas: one hundred twenty-two. + +

+

The men of Bethel and Ai: one hundred twenty-three. + +

+

The men of the other Nebo: fifty-two. + +

+

The children of the other Elam: one thousand two hundred fifty-four. + +

+

The children of Harim: three hundred twenty. + +

+

The children of Jericho: three hundred forty-five. + +

+

The children of Lod, Hadid, and Ono: seven hundred twenty-one. + +

+

The children of Senaah: three thousand nine hundred thirty. + +

+ +

The priests: The children of Jedaiah, of the house of Jeshua: nine hundred seventy-three. + +

+

The children of Immer: one thousand fifty-two. + +

+

The children of Pashhur: one thousand two hundred forty-seven. + +

+

The children of Harim: one thousand seventeen. + +

+ +

The Levites: the children of Jeshua, of Kadmiel, of the children of Hodevah: seventy-four. + +

+

The singers: the children of Asaph: one hundred forty-eight. + +

+

The gatekeepers: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai: one hundred thirty-eight. + +

+

The temple servants: the children of Ziha, the children of Hasupha, the children of Tabbaoth, + +the children of Keros, the children of Sia, the children of Padon, + +the children of Lebana, the children of Hagaba, the children of Salmai, + +the children of Hanan, the children of Giddel, the children of Gahar, + +the children of Reaiah, the children of Rezin, the children of Nekoda, + +the children of Gazzam, the children of Uzza, the children of Paseah, + +the children of Besai, the children of Meunim, the children of Nephushesim, + +the children of Bakbuk, the children of Hakupha, the children of Harhur, + +the children of Bazlith, the children of Mehida, the children of Harsha, + +the children of Barkos, the children of Sisera, the children of Temah, + +the children of Neziah, and the children of Hatipha. + +

+

The children of Solomon’s servants: the children of Sotai, the children of Sophereth, the children of Perida, + +the children of Jaala, the children of Darkon, the children of Giddel, + +the children of Shephatiah, the children of Hattil, the children of Pochereth Hazzebaim, and the children of Amon. + +All the temple servants and the children of Solomon’s servants were three hundred ninety-two. + +

+

These were those who went up from Tel Melah, Tel Harsha, Cherub, Addon, and Immer; but they could not show their fathers’ houses, nor their offspring,7:61 +or, seed whether they were of Israel: + +

+

The children of Delaiah, the children of Tobiah, the children of Nekoda: six hundred forty-two. + +

+

Of the priests: the children of Hobaiah, the children of Hakkoz, the children of Barzillai, who took a wife of the daughters of Barzillai the Gileadite, and was called after their name. + +

+

These searched for their genealogical records, but couldn’t find them. Therefore they were deemed disqualified and removed from the priesthood. + +The governor told them not to eat of the most holy things until a priest stood up to minister with Urim and Thummim. + +

+

The whole assembly together was forty-two thousand three hundred sixty, + +in addition to their male servants and their female servants, of whom there were seven thousand three hundred thirty-seven. They had two hundred forty-five singing men and singing women. + +Their horses were seven hundred thirty-six; their mules, two hundred forty-five; + +their camels, four hundred thirty-five; their donkeys, six thousand seven hundred twenty. + +

+

Some from among the heads of fathers’ households gave to the work. The governor gave to the treasury one thousand darics of gold,7:70 +a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each. fifty basins, and five hundred thirty priests’ garments. + +Some of the heads of fathers’ households gave into the treasury of the work twenty thousand darics of gold, and two thousand two hundred minas7:71 +A mina is about 600 grams or 1.3 U. S. pounds, so 2,200 minas is about 1.3 metric tons. of silver. + +That which the rest of the people gave was twenty thousand darics of gold, plus two thousand minas of silver, and sixty-seven priests’ garments. + +

+

So the priests, the Levites, the gatekeepers, the singers, some of the people, the temple servants, and all Israel lived in their cities. +

+

When the seventh month had come, the children of Israel were in their cities. + +

+ + +

All the people gathered themselves together as one man into the wide place that was in front of the water gate; and they spoke to Ezra the scribe to bring the book of the law of Moses, which Yahweh had commanded to Israel. + +Ezra the priest brought the law before the assembly, both men and women, and all who could hear with understanding, on the first day of the seventh month. + +He read from it before the wide place that was in front of the water gate from early morning until midday, in the presence of the men and the women, and of those who could understand. The ears of all the people were attentive to the book of the law. + +Ezra the scribe stood on a pulpit of wood, which they had made for the purpose; and beside him stood Mattithiah, Shema, Anaiah, Uriah, Hilkiah, and Maaseiah, on his right hand; and on his left hand, Pedaiah, Mishael, Malchijah, Hashum, Hashbaddanah, Zechariah, and Meshullam. + +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. + +Then Ezra blessed Yahweh, the great God. +

+

All the people answered, “Amen, Amen,” with the lifting up of their hands. They bowed their heads, and worshiped Yahweh with their faces to the ground. + +Also Jeshua, Bani, Sherebiah, Jamin, Akkub, Shabbethai, Hodiah, Maaseiah, Kelita, Azariah, Jozabad, Hanan, Pelaiah, and the Levites, caused the people to understand the law; and the people stayed in their place. + +They read in the book, in the law of God, distinctly; and they gave the sense, so that they understood the reading. + +

+

Nehemiah, who was the governor, Ezra the priest and scribe, and the Levites who taught the people said to all the people, “Today is holy to Yahweh your God. Don’t mourn, nor weep.” For all the people wept when they heard the words of the law. + +Then he said to them, “Go your way. Eat the fat, drink the sweet, and send portions to him for whom nothing is prepared, for today is holy to our Lord. Don’t be grieved, for the joy of Yahweh is your strength.” + +

+

So the Levites calmed all the people, saying, “Hold your peace, for the day is holy. Don’t be grieved.” + +

+

All the people went their way to eat, to drink, to send portions, and to celebrate, because they had understood the words that were declared to them. + +

+

On the second day, the heads of fathers’ households of all the people, the priests, and the Levites were gathered together to Ezra the scribe, to study the words of the law. + +They found written in the law how Yahweh had commanded by Moses that the children of Israel should dwell in booths in the feast of the seventh month; + +and that they should publish and proclaim in all their cities and in Jerusalem, saying, “Go out to the mountain, and get olive branches, branches of wild olive, myrtle branches, palm branches, and branches of thick trees, to make temporary shelters,8:15 +or, booths as it is written.” + +

+

So the people went out and brought them, and made themselves temporary shelters,8:16 +or, booths everyone on the roof of his house, in their courts, in the courts of God’s house, in the wide place of the water gate, and in the wide place of Ephraim’s gate. + +All the assembly of those who had come back out of the captivity made temporary shelters8:17 +or, booths and lived in the temporary shelters, for since the days of Joshua the son of Nun to that day the children of Israel had not done so. There was very great gladness. + +Also day by day, from the first day to the last day, he read in the book of the law of God. They kept the feast seven days; and on the eighth day was a solemn assembly, according to the ordinance. + +

+ + +

Now in the twenty-fourth day of this month the children of Israel were assembled with fasting, with sackcloth, and dirt on them. + +The offspring of Israel separated themselves from all foreigners and stood and confessed their sins and the iniquities of their fathers. + +They stood up in their place, and read in the book of the law of Yahweh their God a fourth part of the day; and a fourth part they confessed and worshiped Yahweh their God. + +Then Jeshua, Bani, Kadmiel, Shebaniah, Bunni, Sherebiah, Bani, and Chenani of the Levites stood up on the stairs, and cried with a loud voice to Yahweh their God. + +

+

Then the Levites, Jeshua, and Kadmiel, Bani, Hashabneiah, Sherebiah, Hodiah, Shebaniah, and Pethahiah, said, “Stand up and bless Yahweh your God from everlasting to everlasting! Blessed be your glorious name, which is exalted above all blessing and praise! + +You are Yahweh, even you alone. You have made heaven, the heaven of heavens, with all their army, the earth and all things that are on it, the seas and all that is in them, and you preserve them all. The army of heaven worships you. + +You are Yahweh, the God who chose Abram, brought him out of Ur of the Chaldees, gave him the name of Abraham, + +found his heart faithful before you, and made a covenant with him to give the land of the Canaanite, the Hittite, the Amorite, the Perizzite, the Jebusite, and the Girgashite, to give it to his offspring, and have performed your words, for you are righteous. + +

+

You saw the affliction of our fathers in Egypt, and heard their cry by the Red Sea, + +and showed signs and wonders against Pharaoh, against all his servants, and against all the people of his land, for you knew that they dealt proudly against them, and made a name for yourself, as it is today. + +You divided the sea before them, so that they went through the middle of the sea on the dry land; and you cast their pursuers into the depths, as a stone into the mighty waters. + +Moreover, in a pillar of cloud you led them by day; and in a pillar of fire by night, to give them light in the way in which they should go. + +

+

You also came down on Mount Sinai, and spoke with them from heaven, and gave them right ordinances and true laws, good statutes and commandments, + +and made known to them your holy Sabbath, and commanded them commandments, statutes, and a law, by Moses your servant, + +and gave them bread from the sky for their hunger, and brought water out of the rock for them for their thirst, and commanded them that they should go in to possess the land which you had sworn to give them. + +

+

But they and our fathers behaved proudly, hardened their neck, didn’t listen to your commandments, + +and refused to obey. They weren’t mindful of your wonders that you did among them, but hardened their neck, and in their rebellion appointed a captain to return to their bondage. But you are a God ready to pardon, gracious and merciful, slow to anger, and abundant in loving kindness, and didn’t forsake them. + +Yes, when they had made themselves a molded calf, and said, ‘This is your God who brought you up out of Egypt,’ and had committed awful blasphemies, + +yet you in your manifold mercies didn’t forsake them in the wilderness. The pillar of cloud didn’t depart from over them by day, to lead them in the way; neither did the pillar of fire by night, to show them light, and the way in which they should go. + +You gave also your good Spirit to instruct them, and didn’t withhold your manna from their mouth, and gave them water for their thirst. + +

+

“Yes, forty years you sustained them in the wilderness. They lacked nothing. Their clothes didn’t grow old, and their feet didn’t swell. + +Moreover you gave them kingdoms and peoples, which you allotted according to their portions. So they possessed the land of Sihon, even the land of the king of Heshbon, and the land of Og king of Bashan. + +You also multiplied their children as the stars of the sky, and brought them into the land concerning which you said to their fathers that they should go in to possess it. + +

+

So the children went in and possessed the land; and you subdued before them the inhabitants of the land, the Canaanites, and gave them into their hands, with their kings and the peoples of the land, that they might do with them as they pleased. + +They took fortified cities and a rich land, and possessed houses full of all good things, cisterns dug out, vineyards, olive groves, and fruit trees in abundance. So they ate, were filled, became fat, and delighted themselves in your great goodness. + +

+

“Nevertheless they were disobedient and rebelled against you, cast your law behind their back, killed your prophets that testified against them to turn them again to you, and they committed awful blasphemies. + +Therefore you delivered them into the hand of their adversaries, who distressed them. In the time of their trouble, when they cried to you, you heard from heaven; and according to your manifold mercies you gave them saviors who saved them out of the hands of their adversaries. + +But after they had rest, they did evil again before you; therefore you left them in the hands of their enemies, so that they had the dominion over them; yet when they returned and cried to you, you heard from heaven; and many times you delivered them according to your mercies, + +and testified against them, that you might bring them again to your law. Yet they were arrogant, and didn’t listen to your commandments, but sinned against your ordinances (which if a man does, he shall live in them), turned their backs, stiffened their neck, and would not hear. + +Yet many years you put up with them, and testified against them by your Spirit through your prophets. Yet they would not listen. Therefore you gave them into the hand of the peoples of the lands. + +

+

Nevertheless in your manifold mercies you didn’t make a full end of them, nor forsake them; for you are a gracious and merciful God. + +

+

Now therefore, our God, the great, the mighty, and the awesome God, who keeps covenant and loving kindness, don’t let all the travail seem little before you that has come on us, on our kings, on our princes, on our priests, on our prophets, on our fathers, and on all your people, since the time of the kings of Assyria to this day. + +However you are just in all that has come on us; for you have dealt truly, but we have done wickedly. + +Also our kings, our princes, our priests, and our fathers have not kept your law, nor listened to your commandments and your testimonies with which you testified against them. + +For they have not served you in their kingdom, and in your great goodness that you gave them, and in the large and rich land which you gave before them. They didn’t turn from their wicked works. + +

+

Behold, we are servants today, and as for the land that you gave to our fathers to eat its fruit and its good, behold, we are servants in it. + +It yields much increase to the kings whom you have set over us because of our sins. Also they have power over our bodies and over our livestock, at their pleasure, and we are in great distress. + +Yet for all this, we make a sure covenant, and write it; and our princes, our Levites, and our priests, seal it.” + +

+ + +

Now those who sealed were: Nehemiah the governor, the son of Hacaliah, and Zedekiah, + +Seraiah, Azariah, Jeremiah, + +Pashhur, Amariah, Malchijah, + +Hattush, Shebaniah, Malluch, + +Harim, Meremoth, Obadiah, + +Daniel, Ginnethon, Baruch, + +Meshullam, Abijah, Mijamin, + +Maaziah, Bilgai, and Shemaiah. These were the priests. + +The Levites: Jeshua the son of Azaniah, Binnui of the sons of Henadad, Kadmiel; + +and their brothers, Shebaniah, Hodiah, Kelita, Pelaiah, Hanan, + +Mica, Rehob, Hashabiah, + +Zaccur, Sherebiah, Shebaniah, + +Hodiah, Bani, and Beninu. + +The chiefs of the people: Parosh, Pahathmoab, Elam, Zattu, Bani, + +Bunni, Azgad, Bebai, + +Adonijah, Bigvai, Adin, + +Ater, Hezekiah, Azzur, + +Hodiah, Hashum, Bezai, + +Hariph, Anathoth, Nobai, + +Magpiash, Meshullam, Hezir, + +Meshezabel, Zadok, Jaddua, + +Pelatiah, Hanan, Anaiah, + +Hoshea, Hananiah, Hasshub, + +Hallohesh, Pilha, Shobek, + +Rehum, Hashabnah, Maaseiah, + +Ahiah, Hanan, Anan, + +Malluch, Harim, and Baanah. + +

+

The rest of the people, the priests, the Levites, the gatekeepers, the singers, the temple servants, and all those who had separated themselves from the peoples of the lands to the law of God, their wives, their sons, and their daughters—everyone who had knowledge and understanding— + +joined with their brothers, 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 Yahweh our Lord, and his ordinances and his statutes; + +and that we would not give our daughters to the peoples of the land, nor take their daughters for our sons; + +and if the peoples of the land bring wares or any grain on the Sabbath day to sell, that we would not buy from them on the Sabbath, or on a holy day; and that we would forego the seventh year crops and the exaction of every debt. + +

+

Also we made ordinances for ourselves, to charge ourselves yearly with the third part of a shekel10:32 +A shekel is about 10 grams or about 0.35 ounces. for the service of the house of our God: + +for the show bread, for the continual meal offering, for the continual burnt offering, for the Sabbaths, for the new moons, for the set feasts, for the holy things, for the sin offerings to make atonement for Israel, and for all the work of the house of our God. + +We, the priests, the Levites, and the people, cast lots for the wood offering, to bring it into the house of our God, according to our fathers’ houses, at times appointed year by year, to burn on Yahweh our God’s altar, as it is written in the law; + +and to bring the first fruits of our ground and the first fruits of all fruit of all kinds of trees, year by year, to Yahweh’s house; + +also the firstborn of our sons and of our livestock, as it is written in the law, and the firstborn of our herds and of our flocks, to bring to the house of our God, to the priests who minister in the house of our God; + +and that we should bring the first fruits of our dough, our wave offerings, the fruit of all kinds of trees, and the new wine and the oil, to the priests, to the rooms of the house of our God; and the tithes of our ground to the Levites; for they, the Levites, take the tithes in all our farming villages. + +The priest, the descendent of Aaron, shall be with the Levites when the Levites take tithes. The Levites shall bring up the tithe of the tithes to the house of our God, to the rooms, into the treasure house. + +For the children of Israel and the children of Levi shall bring the wave offering of the grain, of the new wine, and of the oil, to the rooms where the vessels of the sanctuary are, and the priests who minister, with the gatekeepers and the singers. We will not forsake the house of our God. + +

+ + +

The princes of the people lived in Jerusalem. The rest of the people also cast lots to bring one of ten to dwell in Jerusalem, the holy city, and nine parts in the other cities. + +The people blessed all the men who willingly offered themselves to dwell in Jerusalem. + +

+

Now these are the chiefs of the province who lived in Jerusalem; but in the cities of Judah, everyone lived in his possession in their citiesIsrael, the priests, the Levites, the temple servants, and the children of Solomon’s servants. + +Some of the children of Judah and of the children of Benjamin lived in Jerusalem. 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 Mahalalel, of the children of Perez; + +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 the Shilonite. + +All the sons of Perez who lived in Jerusalem were four hundred sixty-eight valiant men. + +

+

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 Jeshaiah. + +After him Gabbai and Sallai, nine hundred twenty-eight. + +Joel the son of Zichri was their overseer; and Judah the son of Hassenuah was second over the city. + +

+

Of the priests: Jedaiah the son of Joiarib, Jachin, + +Seraiah the son of Hilkiah, the son of Meshullam, the son of Zadok, the son of Meraioth, the son of Ahitub, the ruler of God’s house, + +and their brothers who did the work of the house, eight hundred twenty-two; and Adaiah the son of Jeroham, the son of Pelaliah, the son of Amzi, the son of Zechariah, the son of Pashhur, the son of Malchijah, + +and his brothers, chiefs of fathers’ households, two hundred forty-two; and Amashsai the son of Azarel, the son of Ahzai, the son of Meshillemoth, the son of Immer, + +and their brothers, mighty men of valor, one hundred twenty-eight; and their overseer was Zabdiel, the son of Haggedolim. + +

+

Of the Levites: Shemaiah the son of Hasshub, the son of Azrikam, the son of Hashabiah, the son of Bunni; + +and Shabbethai and Jozabad, of the chiefs of the Levites, who had the oversight of the outward business of God’s house; + +and Mattaniah the son of Mica, the son of Zabdi, the son of Asaph, who was the chief to begin the thanksgiving in prayer, and Bakbukiah, the second among his brothers; and Abda the son of Shammua, the son of Galal, the son of Jeduthun. + +All the Levites in the holy city were two hundred eighty-four. + +

+

Moreover the gatekeepers, Akkub, Talmon, and their brothers, who kept watch at the gates, were one hundred seventy-two. + +The residue of Israel, of the priests, and the Levites were in all the cities of Judah, everyone in his inheritance. + +But the temple servants lived in Ophel; and Ziha and Gishpa were over the temple servants. + +

+

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 Mica, of the sons of Asaph, the singers responsible for the service of God’s house. + +For there was a commandment from the king concerning them, and a settled provision for the singers, as every day required. + +Pethahiah the son of Meshezabel, of the children of Zerah the son of Judah, was at the king’s hand in all matters concerning the people. + +

+

As for the villages with their fields, some of the children of Judah lived in Kiriath Arba and its towns, in Dibon and its towns, in Jekabzeel and its villages, + +in Jeshua, in Moladah, Beth Pelet, + +in Hazar Shual, in Beersheba and its towns, + +in Ziklag, in Meconah and in its towns, + +in En Rimmon, in Zorah, in Jarmuth, + +Zanoah, Adullam, and their villages, Lachish and its fields, and Azekah and its towns. So they encamped from Beersheba to the valley of Hinnom. + +The children of Benjamin also lived from Geba onward, at Michmash and Aija, and at Bethel and its towns, + +at Anathoth, Nob, Ananiah, + +Hazor, Ramah, Gittaim, + +Hadid, Zeboim, Neballat, + +Lod, and Ono, the valley of craftsmen. + +Of the Levites, certain divisions in Judah settled in Benjamin’s territory. + +

+ + +

Now these are the priests and the Levites who went up with Zerubbabel the son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra, + +Amariah, Malluch, Hattush, + +Shecaniah, Rehum, Meremoth, + +Iddo, Ginnethoi, Abijah, + +Mijamin, Maadiah, Bilgah, + +Shemaiah, Joiarib, Jedaiah, + +Sallu, Amok, Hilkiah, and Jedaiah. These were the chiefs of the priests and of their brothers in the days of Jeshua. + +

+

Moreover the Levites were Jeshua, Binnui, Kadmiel, Sherebiah, Judah, and Mattaniah, who was over the thanksgiving songs, he and his brothers. + +Also Bakbukiah and Unno, their brothers, were close to them according to their offices. + +Jeshua became the father of Joiakim, and Joiakim became the father of Eliashib, and Eliashib became the father of Joiada, + +and Joiada became the father of Jonathan, and Jonathan became the father of Jaddua. + +

+

In the days of Joiakim were priests, heads of fathers’ households: of Seraiah, Meraiah; of Jeremiah, Hananiah; + +of Ezra, Meshullam; of Amariah, Jehohanan; + +of Malluchi, Jonathan; of Shebaniah, Joseph; + +of Harim, Adna; of Meraioth, Helkai; + +of Iddo, Zechariah; of Ginnethon, Meshullam; + +of Abijah, Zichri; of Miniamin, of Moadiah, Piltai; + +of Bilgah, Shammua; of Shemaiah, Jehonathan; + +of Joiarib, Mattenai; of Jedaiah, Uzzi; + +of Sallai, Kallai; of Amok, Eber; + +of Hilkiah, Hashabiah; of Jedaiah, Nethanel. + +

+

As for the Levites, in the days of Eliashib, Joiada, Johanan, and Jaddua, there were recorded the heads of fathers’ households; also the priests, in the reign of Darius the Persian. + +The sons of Levi, heads of fathers’ households, were written in the book of the chronicles, even until the days of Johanan the son of Eliashib. + +The chiefs of the Levites: Hashabiah, Sherebiah, and Jeshua the son of Kadmiel, with their brothers close to them, to praise and give thanks according to the commandment of David the man of God, section next to section. + +Mattaniah, Bakbukiah, Obadiah, Meshullam, Talmon, and Akkub were gatekeepers keeping the watch at the storehouses of the gates. + +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 and scribe. + +

+

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 giving thanks and with singing, with cymbals, stringed instruments, and with harps. + +The sons of the singers gathered themselves together, both out of the plain around Jerusalem and from the villages of the Netophathites; + +also from Beth Gilgal and out of the fields of Geba and Azmaveth, for the singers had built themselves villages around Jerusalem. + +The priests and the Levites purified themselves; and they purified the people, the gates, and the wall. + +

+

Then I brought the princes of Judah up on the wall, and appointed two great companies who gave thanks and went in procession. One went on the right hand on the wall toward the dung gate; + +and after them went Hoshaiah, with half of the princes of Judah, + +and Azariah, Ezra, and Meshullam, + +Judah, Benjamin, Shemaiah, Jeremiah, + +and some of the priestssons with trumpets: Zechariah the son of Jonathan, the son of Shemaiah, the son of Mattaniah, the son of Micaiah, the son of Zaccur, the son of Asaph; + +and his brothers, Shemaiah, Azarel, Milalai, Gilalai, Maai, Nethanel, Judah, and Hanani, with the musical instruments of David the man of God; and Ezra the scribe was before them. + +By the spring gate, and straight before them, they went up by the stairs of David’s city, at the ascent of the wall, above David’s house, even to the water gate eastward. + +

+

The other company of those who gave thanks went to meet them, and I after them, with the half of the people on the wall above the tower of the furnaces, even to the wide wall, + +and above the gate of Ephraim, and by the old gate, and by the fish gate, the tower of Hananel, and the tower of Hammeah, even to the sheep gate; and they stood still in the gate of the guard. + +So the two companies of those who gave thanks in God’s house stood, and I and the half of the rulers with me; + +and the priests, Eliakim, Maaseiah, Miniamin, Micaiah, Elioenai, Zechariah, and Hananiah, with trumpets; + +and Maaseiah, Shemaiah, Eleazar, Uzzi, Jehohanan, Malchijah, Elam, and Ezer. The singers sang loud, with Jezrahiah their overseer. + +They offered great sacrifices that day, and rejoiced, for God had made them rejoice with great joy; and the women and the children also rejoiced, so that the joy of Jerusalem was heard even far away. + +

+

On that day, men were appointed over the rooms for the treasures, for the wave offerings, for the first fruits, and for the tithes, to gather into them according to the fields of the cities the portions appointed by the law for the priests and Levites; for Judah rejoiced for the priests and for the Levites who served. + +They performed the duty of their God and the duty of the purification, and so did the singers and the gatekeepers, according to the commandment of David and of Solomon his son. + +For in the days of David and Asaph of old there was a chief of the singers, and songs of praise and thanksgiving to God. + +All Israel in the days of Zerubbabel and in the days of Nehemiah gave the portions of the singers and the gatekeepers, as every day required; and they set apart that which was for the Levites; and the Levites set apart that which was for the sons of Aaron. + +

+ + +

On that day they read in the book of Moses in the hearing of the people; and it was found written in it that an Ammonite and a Moabite should not enter into the assembly of God forever, + +because they didn’t meet the children of Israel with bread and with water, but hired Balaam against them to curse them; however, our God turned the curse into a blessing. + +It came to pass, when they had heard the law, that they separated all the mixed multitude from Israel. + +

+

Now before this, Eliashib the priest, who was appointed over the rooms of the house of our God, being allied to Tobiah, + +had prepared for him a great room, where before they laid the meal offerings, the frankincense, the vessels, and the tithes of the grain, the new wine, and the oil, which were given by commandment to the Levites, the singers, and the gatekeepers; and the wave offerings for the priests. + +But in all this, I was not at Jerusalem; for in the thirty-second year of Artaxerxes king of Babylon I went to the king; and after some days I asked leave of the king, + +and I came to Jerusalem, and understood the evil that Eliashib had done for Tobiah, in preparing him a room in the courts of God’s house. + +It grieved me severely. Therefore I threw all Tobiah’s household stuff out of the room. + +Then I commanded, and they cleansed the rooms. I brought into them the vessels of God’s house, with the meal offerings and the frankincense again. + +

+

I perceived that the portions of the Levites had not been given them, so that the Levites and the singers, who did the work, had each fled to his field. + +Then I contended with the rulers, and said, “Why is God’s house forsaken?” I gathered them together, and set them in their place. + +Then all Judah brought the tithe of the grain, the new wine, and the oil to the treasuries. + +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 business was to distribute to their brothers. + +

+

Remember me, my God, concerning this, and don’t wipe out my good deeds that I have done for the house of my God, and for its observances. + +

+

In those days I saw some men treading wine presses on the Sabbath in Judah, bringing in sheaves, and loading donkeys with wine, grapes, figs, and all kinds of burdens which they brought into Jerusalem on the Sabbath day; and I testified against them in the day in which they sold food. + +Some men of Tyre also lived there, who brought in fish and all kinds of wares, and sold on the Sabbath to the children of Judah, and in Jerusalem. + +Then I contended with the nobles of Judah, and said to them, “What evil thing is this that you do, and profane the Sabbath day? + +Didn’t your fathers do this, and didn’t our God bring all this evil on us and on this city? Yet you bring more wrath on Israel by profaning the Sabbath.” + +

+

It came to pass that when the gates of Jerusalem began to be dark before the Sabbath, I commanded that the doors should be shut, and commanded that they should not be opened until after the Sabbath. I set some of my servants over the gates, so that no burden should be brought in on the Sabbath day. + +So the merchants and sellers of all kinds of wares camped outside of Jerusalem once or twice. + +Then I testified against them, and said to them, “Why do you stay around the wall? If you do so again, I will lay hands on you.” From that time on, they didn’t come on the Sabbath. + +I commanded the Levites that they should purify themselves, and that they should come and keep the gates, to sanctify the Sabbath day. Remember me for this also, my God, and spare me according to the greatness of your loving kindness. + +

+

In those days I also saw the Jews who had married women of Ashdod, of Ammon, and of Moab; + +and their children spoke half in the speech of Ashdod, and could not speak in the Jews’ language, but according to the language of each people. + +I contended with them, cursed them, struck certain of them, plucked off their hair, and made them swear by God, “You shall not give your daughters to their sons, nor take their daughters for your sons, or for yourselves. + +Didn’t Solomon king of Israel sin by these things? Yet among many nations there was no king like him, and he was loved by his God, and God made him king over all Israel. Nevertheless foreign women caused even him to sin. + +Shall we then listen to you to do all this great evil, to trespass against our God in marrying foreign women?” + +

+

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. + +Remember them, my God, because they have defiled the priesthood and the covenant of the priesthood and of the Levites. + +

+

Thus I cleansed them from all foreigners and appointed duties for the priests and for the Levites, everyone in his work; + +and for the wood offering, at appointed times, and for the first fruits. Remember me, my God, for good. + +

+
+World English Bible (WEB) +Esther +The Book of Esther +Esther +Est +

The Book of +

+

Esther +

+ + +

Now in the days of Ahasuerus (this is Ahasuerus who reigned from India even to Ethiopia, over one hundred twenty-seven provinces), + +in those days, when the King Ahasuerus sat on the throne of his kingdom, which was in Susa the palace, + +in the third year of his reign, he made a feast for all his princes and his servants; the army of Persia and Media, the nobles and princes of the provinces being before him. + +He displayed the riches of his glorious kingdom and the honor of his excellent majesty many days, even one hundred eighty days. + +

+

When these days were fulfilled, the king made a seven day feast for all the people who were present in Susa the palace, both great and small, in the court of the garden of the king’s palace. + +There were hangings of white and blue material, fastened with cords of fine linen and purple to silver rings and marble pillars. The couches were of gold and silver, on a pavement of red, white, yellow, and black marble. + +They gave them drinks in golden vessels of various kinds, including royal wine in abundance, according to the bounty of the king. + +In accordance with the law, the drinking was not compulsory; for so the king had instructed all the officials of his house, that they should do according to every man’s pleasure. + +

+

Also Vashti the queen made a feast for the women in the royal house which belonged to King Ahasuerus. + +

+

On the seventh day, when the heart of the king was merry with wine, he commanded Mehuman, Biztha, Harbona, Bigtha, and Abagtha, Zethar, and Carcass, the seven eunuchs who served in the presence of Ahasuerus the king, + +to bring Vashti the queen before the king wearing the royal crown, to show the people and the princes her beauty; for she was beautiful. + +But the queen Vashti refused to come at the king’s commandment by the eunuchs. Therefore the king was very angry, and his anger burned in him. + +

+

Then the king said to the wise men, who knew the times (for it was the king’s custom to consult those who knew law and judgment; + +and next to him were Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan, the seven princes of Persia and Media, who saw the king’s face, and sat first in the kingdom), + +What shall we do to Queen Vashti according to law, because she has not done the bidding of the King Ahasuerus by the eunuchs?” + +

+

Memucan answered before the king and the princes, “Vashti the queen has not done wrong to just the king, but also to all the princes, and to all the people who are in all the provinces of the King Ahasuerus. + +For this deed of the queen will become known to all women, causing them to show contempt for their husbands when it is reported, ‘King Ahasuerus commanded Vashti the queen to be brought in before him, but she didn’t come.’ + +Today, the princesses of Persia and Media who have heard of the queen’s deed will tell all the king’s princes. This will cause much contempt and wrath. + +

+

“If it pleases the king, let a royal commandment go from him, and let it be written among the laws of the Persians and the Medes, so that it cannot be altered, that Vashti may never again come before King Ahasuerus; and let the king give her royal estate to another who is better than she. + +When the king’s decree which he shall make is published throughout all his kingdom (for it is great), all the wives will give their husbands honor, both great and small.” + +

+

This advice pleased the king and the princes, and the king did according to the word of Memucan: + +for he sent letters into all the king’s provinces, into every province according to its writing, and to every people in their language, that every man should rule his own house, speaking in the language of his own people. + +

+ + +

After these things, when the wrath of King Ahasuerus was pacified, he remembered Vashti, and what she had done, and what was decreed against her. + +Then the king’s servants who served him said, “Let beautiful young virgins be sought for the king. + +Let the king appoint officers in all the provinces of his kingdom, that they may gather together all the beautiful young virgins to the citadel of Susa, to the women’s house, to the custody of Hegai the king’s eunuch, keeper of the women. Let cosmetics be given them; + +and let the maiden who pleases the king be queen instead of Vashti.” The thing pleased the king, and he did so. + +

+

There was a certain Jew in the citadel of Susa whose name was Mordecai, the son of Jair, the son of Shimei, the son of Kish, a Benjamite, + +who had been carried away from Jerusalem with the captives who had been carried away with Jeconiah king of Judah, whom Nebuchadnezzar the king of Babylon had carried away. + +He brought up Hadassah, that is, Esther, his uncle’s daughter; for she had neither father nor mother. The maiden was fair and beautiful; and when her father and mother were dead, Mordecai took her for his own daughter. + +

+

So, when the king’s commandment and his decree was heard, and when many maidens were gathered together to the citadel of Susa, to the custody of Hegai, Esther was taken into the king’s house, to the custody of Hegai, keeper of the women. + +The maiden pleased him, and she obtained kindness from him. He quickly gave her cosmetics and her portions of food, and the seven choice maidens who were to be given her out of the king’s house. He moved her and her maidens to the best place in the women’s house. + +Esther had not made known her people nor her relatives, because Mordecai had instructed her that she should not make it known. + +Mordecai walked every day in front of the court of the women’s house, to find out how Esther was doing, and what would become of her. + +

+

Each young woman’s turn came to go in to King Ahasuerus after her purification for twelve months (for so were the days of their purification accomplished, six months with oil of myrrh, and six months with sweet fragrances and with preparations for beautifying women). + +The young woman then came to the king like this: whatever she desired was given her to go with her out of the women’s house to the king’s house. + +In the evening she went, and on the next day she returned into the second women’s house, to the custody of Shaashgaz, the king’s eunuch, who kept the concubines. She came in to the king no more, unless the king delighted in her, and she was called by name. + +

+

Now when the turn of Esther, the daughter of Abihail the uncle of Mordecai, who had taken her for his daughter, came to go in to the king, she required nothing but what Hegai the king’s eunuch, the keeper of the women, advised. Esther obtained favor in the sight of all those who looked at her. + +

+

So Esther was taken to King Ahasuerus into his royal house in the tenth month, which is the month Tebeth, in the seventh year of his reign. + +The king loved Esther more than all the women, and she obtained favor and kindness in his sight more than all the virgins; so that he set the royal crown on her head, and made her queen instead of Vashti. + +

+

Then the king made a great feast for all his princes and his servants, even Esther’s feast; and he proclaimed a holiday in the provinces, and gave gifts according to the king’s bounty. + +

+

When the virgins were gathered together the second time, Mordecai was sitting in the king’s gate. + +Esther had not yet made known her relatives nor her people, as Mordecai had commanded her; for Esther obeyed Mordecai, like she did when she was brought up by him. + +In those days, while Mordecai was sitting in the king’s gate, two of the king’s eunuchs, Bigthan and Teresh, who were doorkeepers, were angry, and sought to lay hands on the King Ahasuerus. + +This thing became known to Mordecai, who informed Esther the queen; and Esther informed the king in Mordecai’s name. + +When this matter was investigated, and it was found to be so, they were both hanged on a gallows; and it was written in the book of the chronicles in the king’s presence. + +

+ + +

After these things King Ahasuerus promoted Haman the son of Hammedatha the Agagite, and advanced him, and set his seat above all the princes who were with him. + +All the king’s servants who were in the king’s gate bowed down and paid homage to Haman, for the king had so commanded concerning him. But Mordecai didn’t bow down or pay him homage. + +Then the king’s servants who were in the king’s gate said to Mordecai, “Why do you disobey the king’s commandment?” + +Now it came to pass, when they spoke daily to him, and he didn’t listen to them, that they told Haman, to see whether Mordecai’s reason would stand; for he had told them that he was a Jew. + +When Haman saw that Mordecai didn’t bow down nor pay him homage, Haman was full of wrath. + +But he scorned the thought of laying hands on Mordecai alone, for they had made known to him Mordecai’s people. Therefore Haman sought to destroy all the Jews who were throughout the whole kingdom of Ahasuerus, even Mordecai’s people. + +

+

In the first month, which 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, and chose the twelfth month, which is the month Adar. + +Haman said to King Ahasuerus, “There is a certain people scattered abroad and dispersed among the peoples in all the provinces of your kingdom, and their laws are different from other people’s. They don’t keep the king’s laws. Therefore it is not for the king’s profit to allow them to remain. + +If it pleases the king, let it be written that they be destroyed; and I will pay ten thousand talents3:9 +A talent is about 30 kilograms or 66 pounds or 965 Troy ounces of silver into the hands of those who are in charge of the king’s business, to bring it into the king’s treasuries.” + +

+

The king took his ring from his hand, and gave it to Haman the son of Hammedatha the Agagite, the Jewsenemy. + +The king said to Haman, “The silver is given to you, the people also, to do with them as it seems good to you.” + +

+

Then the king’s scribes were called in on the first month, on the thirteenth day of the month; and all that Haman commanded was written to the king’s local governors, and to the governors who were over every province, and to the princes of every people, to every province according to its writing, and to every people in their language. It was written in the name of King Ahasuerus, and it was sealed with the king’s ring. + +Letters were sent by couriers 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 on the thirteenth day of the twelfth month, which is the month Adar, and to plunder their possessions. + +A copy of the letter, that the decree should be given out in every province, was published to all the peoples, that they should be ready against that day. + +The couriers went out in haste by the king’s commandment, and the decree was given out in the citadel of Susa. The king and Haman sat down to drink; but the city of Susa was perplexed. + +

+ + +

Now when Mordecai found out all that was done, Mordecai tore his clothes and put on sackcloth with ashes, and went out into the middle of the city, and wailed loudly and bitterly. + +He came even before the king’s gate, for no one is allowed inside the king’s gate clothed with sackcloth. + +In every province, wherever 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. + +

+

Esther’s maidens and her eunuchs came and told her this, and the queen was exceedingly grieved. She sent clothing to Mordecai, to replace his sackcloth, but he didn’t receive it. + +Then Esther called for Hathach, one of the king’s eunuchs, whom he had appointed to attend her, and commanded him to go to Mordecai, to find out what this was, and why it was. + +So Hathach went out to Mordecai, to the city square which was before the king’s gate. + +Mordecai told him of all that had happened to him, and the exact sum of the money that Haman had promised to pay to the king’s treasuries for the destruction of the Jews. + +He also gave him the copy of the writing of the decree that was given out in Susa to destroy them, to show it to Esther, and to declare it to her, and to urge her to go in to the king to make supplication to him, and to make request before him for her people. + +

+

Hathach came and told Esther the words of Mordecai. + +Then Esther spoke to Hathach, and gave him a message to Mordecai: + +All the king’s servants and the people of the king’s provinces know that whoever, whether man or woman, comes to the king into the inner court without being called, there is one law for him, that he be put to death, except those to whom the king might hold out the golden scepter, that he may live. I have not been called to come in to the king these thirty days.” + +

+

They told Esther’s words to Mordecai. + +Then Mordecai asked them to return this answer to Esther: “Don’t think to yourself that you will escape in the king’s house any more than all the Jews. + +For if you remain silent now, then relief and deliverance will come to the Jews from another place, but you and your father’s house will perish. Who knows if you haven’t come to the kingdom for such a time as this?” + +

+

Then Esther asked them to answer Mordecai, + +Go, gather together all the Jews who are present in Susa, and fast for me, and neither eat nor drink three days, night or day. I and my maidens will also fast the same way. Then I will go in to the king, which is against the law; and if I perish, I perish.” + +So Mordecai went his way, and did according to all that Esther had commanded him. + +

+ + +

Now on the third day, Esther put on her royal clothing and stood in the inner court of the king’s house, next to the king’s house. The king sat on his royal throne in the royal house, next to the entrance of the house. + +When the king saw Esther the queen standing in the court, she obtained favor in his sight; and the king held out to Esther the golden scepter that was in his hand. So Esther came near and touched the top of the scepter. + +

+

Then the king asked her, “What would you like, queen Esther? What is your request? It shall be given you even to the half of the kingdom.” + +

+

Esther said, “If it seems good to the king, let the king and Haman come today to the banquet that I have prepared for him.” + +

+

Then the king said, “Bring Haman quickly, so that it may be done as Esther has said.” So the king and Haman came to the banquet that Esther had prepared. + +

+

The king said to Esther at the banquet of wine, “What is your petition? It shall be granted you. What is your request? Even to the half of the kingdom it shall be performed.” + +

+

Then Esther answered and said, “My petition and my request is this. + +If I have found favor in the sight of the king, and if it pleases the king to grant my petition and to perform my request, let the king and Haman come to the banquet that I will prepare for them, and I will do tomorrow as the king has said.” + +

+

Then Haman went out that day joyful and glad of heart, but when Haman saw Mordecai in the king’s gate, that he didn’t stand up nor move for him, he was filled with wrath against Mordecai. + +Nevertheless Haman restrained himself, and went home. There, he sent and called for his friends and Zeresh his wife. + +Haman recounted to them the glory of his riches, the multitude of his children, all the things in which the king had promoted him, and how he had advanced him above the princes and servants of the king. + +

+

Haman also said, “Yes, Esther the queen let no man come in with the king to the banquet that she had prepared but myself; and tomorrow I am also invited by her together with the king. + +Yet all this avails me nothing, so long as I see Mordecai the Jew sitting at the king’s gate.” + +

+

Then Zeresh his wife and all his friends said to him, “Let a gallows be made fifty cubits5:14 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. high, and in the morning speak to the king about hanging Mordecai on it. Then go in merrily with the king to the banquet.” This pleased Haman, so he had the gallows made. + +

+ + +

On that night, the king couldn’t sleep. He commanded the book of records of the chronicles to be brought, and they were read to the king. + +It was found written that Mordecai had told of Bigthana and Teresh, two of the king’s eunuchs, who were doorkeepers, who had tried to lay hands on the King Ahasuerus. + +The king said, “What honor and dignity has been given to Mordecai for this?” +

+

Then the king’s servants who attended him said, “Nothing has been done for him.” + +

+

The king said, “Who is in the court?” Now Haman had come into the outer court of the king’s house, to speak to the king about hanging Mordecai on the gallows that he had prepared for him. + +

+

The king’s servants said to him, “Behold,6:5 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. Haman stands in the court.” +

+

The king said, “Let him come in.” + +So Haman came in. The king said to him, “What shall be done to the man whom the king delights to honor?” +

+

Now Haman said in his heart, “Who would the king delight to honor more than myself?” + +Haman said to the king, “For the man whom the king delights to honor, + +let royal clothing be brought which the king uses to wear, and the horse that the king rides on, and on the head of which a royal crown is set. + +Let the clothing and the horse be delivered to the hand of one of the king’s most noble princes, that they may array the man whom the king delights to honor with them, and have him ride on horseback through the city square, and proclaim before him, ‘Thus it shall be done to the man whom the king delights to honor!’” + +

+

Then the king said to Haman, “Hurry and take the clothing and the horse, as you have said, and do this for Mordecai the Jew, who sits at the king’s gate. Let nothing fail of all that you have spoken.” + +

+

Then Haman took the clothing and the horse, and arrayed Mordecai, and had him ride through the city square, and proclaimed before him, “Thus it shall be done to the man whom the king delights to honor!” + +

+

Mordecai came back to the king’s gate, but Haman hurried to his house, mourning and having his head covered. + +Haman recounted to Zeresh his wife and all his friends everything that had happened to him. Then his wise men and Zeresh his wife said to him, “If Mordecai, before whom you have begun to fall, is of Jewish descent, you will not prevail against him, but you will surely fall before him.” + +While they were yet talking with him, the king’s eunuchs came, and hurried to bring Haman to the banquet that Esther had prepared. + +

+ + +

So the king and Haman came to banquet with Esther the queen. + +The king said again to Esther on the second day at the banquet of wine, “What is your petition, queen Esther? It shall be granted you. What is your request? Even to the half of the kingdom it shall be performed.” + +

+

Then Esther the queen answered, “If I have found favor in your sight, O king, and if it pleases the king, let my life be given me at my petition, and my people at my request. + +For we are sold, I and my people, to be destroyed, to be slain, and to perish. But if we had been sold for male and female slaves, I would have held my peace, although the adversary could not have compensated for the king’s loss.” + +

+

Then King Ahasuerus said to Esther the queen, “Who is he, and where is he who dared presume in his heart to do so?” + +

+

Esther said, “An adversary and an enemy, even this wicked Haman!” +

+

Then Haman was afraid before the king and the queen. + +The king arose in his wrath from the banquet of wine and went into the palace garden. 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. + +Then the king returned out of the palace garden into the place of the banquet of wine; and Haman had fallen on the couch where Esther was. Then the king said, “Will he even assault the queen in front of me in the house?” As the word went out of the king’s mouth, they covered Haman’s face. + +

+

Then Harbonah, one of the eunuchs who were with the king, said, “Behold, the gallows fifty cubits7:9 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. high, which Haman has made for Mordecai, who spoke good for the king, is standing at Haman’s house.” +

+

The king said, “Hang him on it!” + +

+

So they hanged Haman on the gallows that he had prepared for Mordecai. Then the king’s wrath was pacified. + +

+ + +

On that day, King Ahasuerus gave the house of Haman, the Jewsenemy, to Esther the queen. Mordecai came before the king; for Esther had told what he was to her. + +The king took off his ring, which he had taken from Haman, and gave it to Mordecai. Esther set Mordecai over the house of Haman. + +

+

Esther spoke yet again before the king, and fell down at his feet and begged him with tears to put away the mischief of Haman the Agagite, and his plan that he had planned against the Jews. + +Then the king held out to Esther the golden scepter. So Esther arose, and stood before the king. + +She said, “If it pleases the king, and if I have found favor in his sight, and the thing seems right to the king, and I am 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 who are in all the king’s provinces. + +For how can I endure to see the evil that would come to my people? How can I endure to see the destruction of my relatives?” + +

+

Then King Ahasuerus said to Esther the queen and to Mordecai the Jew, “See, I have given Esther the house of Haman, and they have hanged him on the gallows because he laid his hand on the Jews. + +Write also to the Jews as it pleases 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 not be reversed by any man.” + +

+

Then the king’s scribes were called at that time, in the third month, which is the month Sivan, on the twenty-third day of the month; and it was written according to all that Mordecai commanded to the Jews, and to the local governors, and the governors and princes of the provinces which are from India to Ethiopia, one hundred twenty-seven provinces, to every province according to its writing, and to every people in their language, and to the Jews in their writing, and in their language. + +He wrote in the name of King Ahasuerus, and sealed it with the king’s ring, and sent letters by courier on horseback, riding on royal horses that were bred from swift steeds. + +In those letters, the king granted the Jews who were in every city to gather themselves together and to defend their livesto destroy, to kill, and to cause to perish all the power of the people and province that would assault them, their little ones and women, and to plunder their possessions, + +on one day in all the provinces of King Ahasuerus, on the thirteenth day of the twelfth month, which is the month Adar. + +A copy of the letter, that the decree should be given out in every province, was published to all the peoples, that the Jews should be ready for that day to avenge themselves on their enemies. + +So the couriers who rode on royal horses went out, hastened and pressed on by the king’s commandment. The decree was given out in the citadel of Susa. + +

+

Mordecai went out of the presence of the king in royal clothing of blue and white, and with a great crown of gold, and with a robe of fine linen and purple; and the city of Susa shouted and was glad. + +The Jews had light, gladness, joy, and honor. + +In every province and in every city, wherever the king’s commandment and his decree came, the Jews had gladness, joy, a feast and a holiday. Many from among the peoples of the land became Jews, for the fear of the Jews had fallen on them. + +

+ + +

Now in the twelfth month, which is the month Adar, on the thirteenth day of the month, when the king’s commandment and his decree came near to be put in execution, on the day that the enemies of the Jews hoped to conquer them, (but it turned out that the opposite happened, that the Jews conquered those who hated them), + +the Jews gathered themselves together in their cities throughout all the provinces of the King Ahasuerus, to lay hands on those who wanted to harm them. No one could withstand them, because the fear of them had fallen on all the people. + +All the princes of the provinces, the local governors, the governors, and those who did the king’s business helped the Jews, because the fear of Mordecai had fallen on them. + +For Mordecai was great in the king’s house, and his fame went out throughout all the provinces, for the man Mordecai grew greater and greater. + +The Jews struck all their enemies with the stroke of the sword, and with slaughter and destruction, and did what they wanted to those who hated them. + +In the citadel of Susa, the Jews killed and destroyed five hundred men. + +They killed Parshandatha, Dalphon, Aspatha, + +Poratha, Adalia, Aridatha, + +Parmashta, Arisai, Aridai, and Vaizatha, + +the ten sons of Haman the son of Hammedatha, the Jewsenemy, but they didn’t lay their hand on the plunder. + +

+

On that day, the number of those who were slain in the citadel of Susa was brought before the king. + +The king said to Esther the queen, “The Jews have slain and destroyed five hundred men in the citadel of Susa, including the ten sons of Haman; what then have they done in the rest of the king’s provinces! Now what is your petition? It shall be granted you. What is your further request? It shall be done.” + +

+

Then Esther said, “If it pleases the king, let it be granted to the Jews who are in Susa to do tomorrow also according to today’s decree, and let Haman’s ten sons be hanged on the gallows.” + +

+

The king commanded this to be done. A decree was given out in Susa; and they hanged Haman’s ten sons. + +The Jews who were in Susa gathered themselves together on the fourteenth day also of the month Adar, and killed three hundred men in Susa; but they didn’t lay their hand on the plunder. + +

+

The other Jews who were in the king’s provinces gathered themselves together, defended their lives, had rest from their enemies, and killed seventy-five thousand of those who hated them; but they didn’t lay their hand on the plunder. + +This was done on the thirteenth day of the month Adar; and on the fourteenth day of that month they rested and made it a day of feasting and gladness. + +

+

But the Jews who were in Susa assembled together on the thirteenth and on the fourteenth days of the month; and on the fifteenth day of that month, they rested, and made it a day of feasting and gladness. + +Therefore the Jews of the villages, who live in the unwalled towns, make the fourteenth day of the month Adar a day of gladness and feasting, a holiday, and a day of sending presents of food to one another. + +

+

Mordecai wrote these things, and sent letters to all the Jews who were in all the provinces of the King Ahasuerus, both near and far, + +to enjoin them that they should keep the fourteenth and fifteenth days of the month Adar yearly, + +as the days in which the Jews had rest from their enemies, and the month which was turned to them from sorrow to gladness, and from mourning into a holiday; that they should make them days of feasting and gladness, and of sending presents of food to one another, and gifts to the needy. + +The Jews accepted the custom that they had begun, as Mordecai had written to them, + +because Haman the son of Hammedatha, the Agagite, the enemy of all the Jews, had plotted against the Jews to destroy them, and had castPur”, that is the lot, to consume them and to destroy them; + +but when this became known to the king, he commanded by letters that his wicked plan, which he had planned against the Jews, should return on his own head, and that he and his sons should be hanged on the gallows. + +

+

Therefore they called these daysPurim”,9:26 +Purim is the Hebrew plural for pur, which means lot. from the wordPur.” Therefore because of all the words of this letter, and of that which they had seen concerning this matter, and that which had come to them, + +the Jews established and imposed on themselves, on their descendants, and on all those who joined themselves to them, so that it should not fail that they would keep these two days according to what was written and according to its appointed time every year; + +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 their memory perish from their offspring.9:28 +or, seed + +

+

Then Esther the queen, the daughter of Abihail, and Mordecai the Jew wrote with all authority to confirm this second letter of Purim. + +He sent letters to all the Jews in the hundred twenty-seven provinces of the kingdom of Ahasuerus with words of peace and truth, + +to confirm these days of Purim in their appointed times, as Mordecai the Jew and Esther the queen had decreed, and as they had imposed upon themselves and their descendants in the matter of the fastings and their mourning. + +The commandment of Esther confirmed these matters of Purim; and it was written in the book. + +

+ + +

King Ahasuerus laid a tribute on the land and on the islands of the sea. + +Aren’t all the acts of his power and of his might, and the full account of the greatness of Mordecai, to which the king advanced him, written in the book of the chronicles of the kings of Media and Persia? + +For Mordecai the Jew was next to King Ahasuerus, and great among the Jews and accepted by the multitude of his brothers, seeking the good of his people and speaking peace to all his descendants. + +

+
+World English Bible (WEB) +Job +The Book of Job +Job +Job +

The Book of +

+

Job +

+ + +

There was a man in the land of Uz, whose name was Job. That man was blameless and upright, and one who feared God,1:1 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). and turned away from evil. + +There were born to him seven sons and three daughters. + +His possessions also were seven thousand sheep, three thousand camels, five hundred yoke of oxen, five hundred female donkeys, and a very great household; so that this man was the greatest of all the children of the east. + +His sons went and held a feast in the house of each one on his birthday; and they sent and called for their three sisters to eat and to drink with them. + +It was so, when the days of their feasting had run their course, 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 renounced God in their hearts.” Job did so continually. + +

+

Now on the day when God’s sons came to present themselves before Yahweh,1:6 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. Satan also came among them. + +Yahweh said to Satan, “Where have you come from?” +

+

Then Satan answered Yahweh, and said, “From going back and forth on the earth, and from walking up and down in it.” + +

+

Yahweh said to Satan, “Have you considered my servant, Job? For there is no one like him on the earth, a blameless and an upright man, one who fears God, and turns away from evil.” + +

+

Then Satan answered Yahweh, and said, “Does Job fear God for nothing? + +Haven’t you made a hedge around him, and around his house, and around all that he has, on every side? You have blessed the work of his hands, and his substance is increased in the land. + +But stretch out your hand now, and touch all that he has, and he will renounce you to your face.” + +

+

Yahweh said to Satan, “Behold,1:12 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. all that he has is in your power. Only on himself don’t stretch out your hand.” +

+

So Satan went out from the presence of Yahweh. + +It fell on a day when his sons and his daughters were eating and drinking wine in their oldest brother’s house, + +that a messenger came to Job, and said, “The oxen were plowing, and the donkeys feeding beside them, + +and the Sabeans attacked, and took them away. Yes, they have killed the servants with the edge of the sword, and I alone have escaped to tell you.” + +

+

While he was still speaking, another also came and said, “The fire of God has fallen from the sky, and has burned up the sheep and the servants, and consumed them, and I alone have escaped to tell you.” + +

+

While he was still speaking, another also came and said, “The Chaldeans made three bands, and swept down on the camels, and have taken them away, yes, and killed the servants with the edge of the sword; and I alone have escaped to tell you.” + +

+

While he was still speaking, there came also another, and said, “Your sons and your daughters were eating and drinking wine in their oldest brother’s house, + +and behold, there came a great wind from the wilderness, and struck the four corners of the house, and it fell on the young men, and they are dead. I alone have escaped to tell you.” + +

+

Then Job arose, and tore his robe, and shaved his head, and fell down on the ground, and worshiped. + +He said, “Naked I came out of my mother’s womb, and naked will I return there. Yahweh gave, and Yahweh has taken away. Blessed be Yahweh’s name.” + +In all this, Job didn’t sin, nor charge God with wrongdoing. + +

+ + +

Again, on the day when God’s sons came to present themselves before Yahweh, Satan came also among them to present himself before Yahweh. + +Yahweh said to Satan, “Where have you come from?” +

+

Satan answered Yahweh, and said, “From going back and forth on the earth, and from walking up and down in it.” + +

+

Yahweh said to Satan, “Have you considered my servant Job? For there is no one like him on the earth, a blameless and an upright man, one who fears God, and turns away from evil. He still maintains his integrity, although you incited me against him, to ruin him without cause.” + +

+

Satan answered Yahweh, and said, “Skin for skin. Yes, all that a man has he will give for his life. + +But stretch out your hand now, and touch his bone and his flesh, and he will renounce you to your face.” + +

+

Yahweh said to Satan, “Behold, he is in your hand. Only spare his life.” + +

+

So Satan went out from the presence of Yahweh, and struck Job with painful sores from the sole of his foot to his head. + +He took for himself a potsherd to scrape himself with, and he sat among the ashes. + +Then his wife said to him, “Do you still maintain your integrity? Renounce God, and die.” + +

+

But he said to her, “You speak as one of the foolish women would speak. What? Shall we receive good at the hand of God, and shall we not receive evil?” +

+

In all this Job didn’t sin with his lips. + +Now when Job’s three friends heard of all this evil that had come on him, they each came from his own place: Eliphaz the Temanite, Bildad the Shuhite, and Zophar the Naamathite; and they made an appointment together to come to sympathize with him and to comfort him. + +When they lifted up their eyes from a distance, and didn’t recognize him, they raised their voices, and wept; and they each tore his robe, and sprinkled dust on their heads toward the sky. + +So they sat down with him on the ground seven days and seven nights, and no one spoke a word to him, for they saw that his grief was very great. + +

+ + +

After this Job opened his mouth, and cursed the day of his birth. + +Job answered: + +

+“Let the day perish in which I was born, + +the night which said, ‘There is a boy conceived.’ + + +Let that day be darkness. + +Don’t let God from above seek for it, + +neither let the light shine on it. + + +Let darkness and the shadow of death claim it for their own. + +Let a cloud dwell on it. + +Let all that makes the day black terrify it. + + +As for that night, let thick darkness seize on it. + +Let it not rejoice among the days of the year. + +Let it not come into the number of the months. + + +Behold, let that night be barren. + +Let no joyful voice come therein. + + +Let them curse it who curse the day, + +who are ready to rouse up leviathan. + + +Let the stars of its twilight be dark. + +Let it look for light, but have none, + +neither let it see the eyelids of the morning, + + +because it didn’t shut up the doors of my mother’s womb, + +nor did it hide trouble from my eyes. + + + +Why didn’t I die from the womb? + +Why didn’t I give up the spirit when my mother bore me? + + +Why did the knees receive me? + +Or why the breast, that I should nurse? + + +For now I should have lain down and been quiet. + +I should have slept, then I would have been at rest, + + +with kings and counselors of the earth, + +who built up waste places for themselves; + + +or with princes who had gold, + +who filled their houses with silver; + + +or as a hidden untimely birth I had not been, + +as infants who never saw light. + + +There the wicked cease from troubling. + +There the weary are at rest. + + +There the prisoners are at ease together. + +They don’t hear the voice of the taskmaster. + + +The small and the great are there. + +The servant is free from his master. + + + +Why is light given to him who is in misery, + +life to the bitter in soul, + + +who long for death, but it doesn’t come; + +and dig for it more than for hidden treasures, + + +who rejoice exceedingly, + +and are glad, when they can find the grave? + + +Why is light given to a man whose way is hidden, + +whom God has hedged in? + + +For my sighing comes before I eat. + +My groanings are poured out like water. + + +For the thing which I fear comes on me, + +that which I am afraid of comes to me. + + +I am not at ease, neither am I quiet, neither do I have rest; + +but trouble comes.” + + + + +

Then Eliphaz the Temanite answered, + +

+“If someone ventures to talk with you, will you be grieved? + +But who can withhold himself from speaking? + + +Behold, you have instructed many, + +you have strengthened the weak hands. + + +Your words have supported him who was falling, + +you have made the feeble knees firm. + + +But now it has come to you, and you faint. + +It touches you, and you are troubled. + + +Isn’t your piety your confidence? + +Isn’t the integrity of your ways your hope? + + + +Remember, now, who ever perished, being innocent? + +Or where were the upright cut off? + + +According to what I have seen, those who plow iniquity + +and sow trouble, reap the same. + + +By the breath of God they perish. + +By the blast of his anger are they consumed. + + +The roaring of the lion, + +and the voice of the fierce lion, + +the teeth of the young lions, are broken. + + +The old lion perishes for lack of prey. + +The cubs of the lioness are scattered abroad. + + + +Now a thing was secretly brought to me. + +My ear received a whisper of it. + + +In thoughts from the visions of the night, + +when deep sleep falls on men, + + +fear came on me, and trembling, + +which made all my bones shake. + + +Then a spirit passed before my face. + +The hair of my flesh stood up. + + +It stood still, but I couldn’t discern its appearance. + +A form was before my eyes. + +Silence, then I heard a voice, saying, + + +Shall mortal man be more just than God? + +Shall a man be more pure than his Maker? + + +Behold, he puts no trust in his servants. + +He charges his angels with error. + + +How much more those who dwell in houses of clay, + +whose foundation is in the dust, + +who are crushed before the moth! + + +Between morning and evening they are destroyed. + +They perish forever without any regarding it. + + +Isn’t their tent cord plucked up within them? + +They die, and that without wisdom.’ + + + + + +Call now; is there any who will answer you? + +To which of the holy ones will you turn? + + +For resentment kills the foolish man, + +and jealousy kills the simple. + + +I have seen the foolish taking root, + +but suddenly I cursed his habitation. + + +His children are far from safety. + +They are crushed in the gate. + +Neither is there any to deliver them, + + +whose harvest the hungry eat up, + +and take it even out of the thorns. + +The snare gapes for their substance. + + +For affliction doesn’t come out of the dust, + +neither does trouble spring out of the ground; + + +but man is born to trouble, + +as the sparks fly upward. + + + +“But as for me, I would seek God. + +I would commit my cause to God, + + +who does great things that can’t be fathomed, + +marvelous things without number; + + +who gives rain on the earth, + +and sends waters on the fields; + + +so that he sets up on high those who are low, + +those who mourn are exalted to safety. + + +He frustrates the plans of the crafty, + +so that their hands can’t perform their enterprise. + + +He takes the wise in their own craftiness; + +the counsel of the cunning is carried headlong. + + +They meet with darkness in the day time, + +and grope at noonday as in the night. + + +But he saves from the sword of their mouth, + +even the needy from the hand of the mighty. + + +So the poor has hope, + +and injustice shuts her mouth. + + + +Behold, happy is the man whom God corrects. + +Therefore do not despise the chastening of the Almighty. + + +For he wounds and binds up. + +He injures and his hands make whole. + + +He will deliver you in six troubles; + +yes, in seven no evil will touch you. + + +In famine he will redeem you from death; + +in war, from the power of the sword. + + +You will be hidden from the scourge of the tongue, + +neither will you be afraid of destruction when it comes. + + +You will laugh at destruction and famine, + +neither will you be afraid of the animals of the earth. + + +For you will be allied with the stones of the field. + +The animals of the field will be at peace with you. + + +You will know that your tent is in peace. + +You will visit your fold, and will miss nothing. + + +You will know also that your offspring5:25 +or, seed will be great, + +your offspring as the grass of the earth. + + +You will come to your grave in a full age, + +like a shock of grain comes in its season. + + +Behold, we have researched it. It is so. + +Hear it, and know it for your good.” + + + + + +

Then Job answered, + +

+Oh that my anguish were weighed, + +and all my calamity laid in the balances! + + +For now it would be heavier than the sand of the seas, + +therefore my words have been rash. + + +For the arrows of the Almighty are within me. + +My spirit drinks up their poison. + +The terrors of God set themselves in array against me. + + +Does the wild donkey bray when he has grass? + +Or does the ox low over his fodder? + + +Can that which has no flavor be eaten without salt? + +Or is there any taste in the white of an egg? + + +My soul refuses to touch them. + +They are as loathsome food to me. + + + +Oh that I might have my request, + +that God would grant the thing that I long for, + + +even that it would please God to crush me; + +that he would let loose his hand, and cut me off! + + +Let it still be my consolation, + +yes, let me exult in pain that doesn’t spare, + +that I have not denied the words of the Holy One. + + +What is my strength, that I should wait? + +What is my end, that I should be patient? + + +Is my strength the strength of stones? + +Or is my flesh of bronze? + + +Isn’t it that I have no help in me, + +that wisdom is driven away from me? + + + +To him who is ready to faint, kindness should be shown from his friend; + +even to him who forsakes the fear of the Almighty. + + +My brothers have dealt deceitfully as a brook, + +as the channel of brooks that pass away; + + +which are black by reason of the ice, + +in which the snow hides itself. + + +In the dry season, they vanish. + +When it is hot, they are consumed out of their place. + + +The caravans that travel beside them turn away. + +They go up into the waste, and perish. + + +The caravans of Tema looked. + +The companies of Sheba waited for them. + + +They were distressed because they were confident. + +They came there, and were confounded. + + +For now you are nothing. + +You see a terror, and are afraid. + + +Did I ever say, ‘Give to me’? + +or, ‘Offer a present for me from your substance’? + + +or, ‘Deliver me from the adversary’s hand’? + +or, ‘Redeem me from the hand of the oppressors’? + + + +Teach me, and I will hold my peace. + +Cause me to understand my error. + + +How forcible are words of uprightness! + +But your reproof, what does it reprove? + + +Do you intend to reprove words, + +since the speeches of one who is desperate are as wind? + + +Yes, you would even cast lots for the fatherless, + +and make merchandise of your friend. + + +Now therefore be pleased to look at me, + +for surely I will not lie to your face. + + +Please return. + +Let there be no injustice. + +Yes, return again. + +My cause is righteous. + + +Is there injustice on my tongue? + +Can’t my taste discern mischievous things? + + + + + +“Isn’t a man forced to labor on earth? + +Aren’t his days like the days of a hired hand? + + +As a servant who earnestly desires the shadow, + +as a hireling who looks for his wages, + + +so I am made to possess months of misery, + +wearisome nights are appointed to me. + + +When I lie down, I say, + +When will I arise, and the night be gone?’ + +I toss and turn until the dawning of the day. + + +My flesh is clothed with worms and clods of dust. + +My skin closes up, and breaks out afresh. + + +My days are swifter than a weaver’s shuttle, + +and are spent without hope. + + +Oh remember that my life is a breath. + +My eye will no more see good. + + +The eye of him who sees me will see me no more. + +Your eyes will be on me, but I will not be. + + +As the cloud is consumed and vanishes away, + +so he who goes down to Sheol7:9 +Sheol is the place of the dead. will come up no more. + + +He will return no more to his house, + +neither will his place know him any more. + + + +Therefore I will not keep silent. + +I will speak in the anguish of my spirit. + +I will complain in the bitterness of my soul. + + +Am I a sea, or a sea monster, + +that you put a guard over me? + + +When I say, ‘My bed will comfort me. + +My couch will ease my complaint,’ + + +then you scare me with dreams + +and terrify me through visions, + + +so that my soul chooses strangling, + +death rather than my bones. + + +I loathe my life. + +I don’t want to live forever. + +Leave me alone, for my days are but a breath. + + +What is man, that you should magnify him, + +that you should set your mind on him, + + +that you should visit him every morning, + +and test him every moment? + + +How long will you not look away from me, + +nor leave me alone until I swallow down my spittle? + + +If I have sinned, what do I do to you, you watcher of men? + +Why have you set me as a mark for you, + +so that I am a burden to myself? + + +Why do you not pardon my disobedience, and take away my iniquity? + +For now will I lie down in the dust. + +You will seek me diligently, but I will not be.” + + + + +

Then Bildad the Shuhite answered, + +

+How long will you speak these things? + +Shall the words of your mouth be a mighty wind? + + +Does God pervert justice? + +Or does the Almighty pervert righteousness? + + +If your children have sinned against him, + +he has delivered them into the hand of their disobedience. + + +If you want to seek God diligently, + +make your supplication to the Almighty. + + +If you were pure and upright, + +surely now he would awaken for you, + +and make the habitation of your righteousness prosperous. + + +Though your beginning was small, + +yet your latter end would greatly increase. + + + +Please inquire of past generations. + +Find out about the learning of their fathers. + + +(For we are but of yesterday, and know nothing, + +because our days on earth are a shadow.) + + +Shall they not teach you, tell you, + +and utter words out of their heart? + + + +Can the papyrus grow up without mire? + +Can the rushes grow without water? + + +While it is yet in its greenness, not cut down, + +it withers before any other reed. + + +So are the paths of all who forget God. + +The hope of the godless man will perish, + + +whose confidence will break apart, + +whose trust is a spider’s web. + + +He will lean on his house, but it will not stand. + +He will cling to it, but it will not endure. + + +He is green before the sun. + +His shoots go out along his garden. + + +His roots are wrapped around the rock pile. + +He sees the place of stones. + + +If he is destroyed from his place, + +then it will deny him, saying, ‘I have not seen you.’ + + +Behold, this is the joy of his way. + +Out of the earth, others will spring. + + + +Behold, God will not cast away a blameless man, + +neither will he uphold the evildoers. + + +He will still fill your mouth with laughter, + +your lips with shouting. + + +Those who hate you will be clothed with shame. + +The tent of the wicked will be no more.” + + + + +

Then Job answered, + +

+Truly I know that it is so, + +but how can man be just with God? + + +If he is pleased to contend with him, + +he can’t answer him one time in a thousand. + + +God is wise in heart, and mighty in strength. + +Who has hardened himself against him and prospered? + + +He removes the mountains, and they don’t know it, + +when he overturns them in his anger. + + +He shakes the earth out of its place. + +Its pillars tremble. + + +He commands the sun and it doesn’t rise, + +and seals up the stars. + + +He alone stretches out the heavens, + +and treads on the waves of the sea. + + +He makes the Bear, Orion, and the Pleiades, + +and the rooms of the south. + + +He does great things past finding out; + +yes, marvelous things without number. + + +Behold, he goes by me, and I don’t see him. + +He passes on also, but I don’t perceive him. + + +Behold, he snatches away. + +Who can hinder him? + +Who will ask him, ‘What are you doing?’ + + + +God will not withdraw his anger. + +The helpers of Rahab stoop under him. + + +How much less will I answer him, + +and choose my words to argue with him? + + +Though I were righteous, yet I wouldn’t answer him. + +I would make supplication to my judge. + + +If I had called, and he had answered me, + +yet I wouldn’t believe that he listened to my voice. + + +For he breaks me with a storm, + +and multiplies my wounds without cause. + + +He will not allow me to catch my breath, + +but fills me with bitterness. + + +If it is a matter of strength, behold, he is mighty! + +If of justice, ‘Who,’ says he, ‘will summon me?’ + + +Though I am righteous, my own mouth will condemn me. + +Though I am blameless, it will prove me perverse. + + +I am blameless. + +I don’t respect myself. + +I despise my life. + + + +It is all the same. + +Therefore I say he destroys the blameless and the wicked. + + +If the scourge kills suddenly, + +he will mock at the trial of the innocent. + + +The earth is given into the hand of the wicked. + +He covers the faces of its judges. + +If not he, then who is it? + + + +Now my days are swifter than a runner. + +They flee away. They see no good. + + +They have passed away as the swift ships, + +as the eagle that swoops on the prey. + + +If I say, ‘I will forget my complaint, + +I will put off my sad face, and cheer up,’ + + +I am afraid of all my sorrows. + +I know that you will not hold me innocent. + + +I will be condemned. + +Why then do I labor in vain? + + +If I wash myself with snow, + +and cleanse my hands with lye, + + +yet you will plunge me in the ditch. + +My own clothes will abhor me. + + +For he is not a man, as I am, that I should answer him, + +that we should come together in judgment. + + +There is no umpire between us, + +that might lay his hand on us both. + + +Let him take his rod away from me. + +Let his terror not make me afraid; + + +then I would speak, and not fear him, + +for I am not so in myself. + + + + + + +My soul is weary of my life. + +I will give free course to my complaint. + +I will speak in the bitterness of my soul. + + +I will tell God, ‘Do not condemn me. + +Show me why you contend with me. + + +Is it good to you that you should oppress, + +that you should despise the work of your hands, + +and smile on the counsel of the wicked? + + +Do you have eyes of flesh? + +Or do you see as man sees? + + +Are your days as the days of mortals, + +or your years as man’s years, + + +that you inquire after my iniquity, + +and search after my sin? + + +Although you know that I am not wicked, + +there is no one who can deliver out of your hand. + + + +“‘Your hands have framed me and fashioned me altogether, + +yet you destroy me. + + +Remember, I beg you, that you have fashioned me as clay. + +Will you bring me into dust again? + + +Haven’t you poured me out like milk, + +and curdled me like cheese? + + +You have clothed me with skin and flesh, + +and knit me together with bones and sinews. + + +You have granted me life and loving kindness. + +Your visitation has preserved my spirit. + + +Yet you hid these things in your heart. + +I know that this is with you: + + +if I sin, then you mark me. + +You will not acquit me from my iniquity. + + +If I am wicked, woe to me. + +If I am righteous, I still will not lift up my head, + +being filled with disgrace, + +and conscious of my affliction. + + +If my head is held high, you hunt me like a lion. + +Again you show yourself powerful to me. + + +You renew your witnesses against me, + +and increase your indignation on me. + +Changes and warfare are with me. + + + +“‘Why, then, have you brought me out of the womb? + +I wish I had given up the spirit, and no eye had seen me. + + +I should have been as though I had not been. + +I should have been carried from the womb to the grave. + + +Aren’t my days few? + +Stop! + +Leave me alone, that I may find a little comfort, + + +before I go where I will not return from, + +to the land of darkness and of the shadow of death; + + +the land dark as midnight, + +of the shadow of death, + +without any order, + +where the light is as midnight.’” + + + + +

Then Zophar, the Naamathite, answered, + +

+“Shouldn’t the multitude of words be answered? + +Should a man full of talk be justified? + + +Should your boastings make men hold their peace? + +When you mock, will no man make you ashamed? + + +For you say, ‘My doctrine is pure. + +I am clean in your eyes.’ + + +But oh that God would speak, + +and open his lips against you, + + +that he would show you the secrets of wisdom! + +For true wisdom has two sides. + +Know therefore that God exacts of you less than your iniquity deserves. + + + +“Can you fathom the mystery of God? + +Or can you probe the limits of the Almighty? + + +They are high as heaven. What can you do? + +They are deeper than Sheol.11:8 +Sheol is the place of the dead. What can you know? + + +Its measure is longer than the earth, + +and broader than the sea. + + +If he passes by, or confines, + +or convenes a court, then who can oppose him? + + +For he knows false men. + +He sees iniquity also, even though he doesn’t consider it. + + +An empty-headed man becomes wise + +when a man is born as a wild donkey’s colt. + + + +“If you set your heart aright, + +stretch out your hands toward him. + + +If iniquity is in your hand, put it far away. + +Don’t let unrighteousness dwell in your tents. + + +Surely then you will lift up your face without spot. + +Yes, you will be steadfast, and will not fear, + + +for you will forget your misery. + +You will remember it like waters that have passed away. + + +Life will be clearer than the noonday. + +Though there is darkness, it will be as the morning. + + +You will be secure, because there is hope. + +Yes, you will search, and will take your rest in safety. + + +Also you will lie down, and no one will make you afraid. + +Yes, many will court your favor. + + +But the eyes of the wicked will fail. + +They will have no way to flee. + +Their hope will be the giving up of the spirit.” + + + + +

Then Job answered, + +

+“No doubt, but you are the people, + +and wisdom will die with you. + + +But I have understanding as well as you; + +I am not inferior to you. + +Yes, who doesn’t know such things as these? + + +I am like one who is a joke to his neighbor, + +I, who called on God, and he answered. + +The just, the blameless man is a joke. + + +In the thought of him who is at ease there is contempt for misfortune. + +It is ready for them whose foot slips. + + +The tents of robbers prosper. + +Those who provoke God are secure, + +who carry their god in their hands. + + + +“But ask the animals now, and they will teach you; + +the birds of the sky, and they will tell you. + + +Or speak to the earth, and it will teach you. + +The fish of the sea will declare to you. + + +Who doesn’t know that in all these, + +Yahweh’s hand has done this, + + +in whose hand is the life of every living thing, + +and the breath of all mankind? + + +Doesn’t the ear try words, + +even as the palate tastes its food? + + +With aged men is wisdom, + +in length of days understanding. + + + +With God is wisdom and might. + +He has counsel and understanding. + + +Behold, he breaks down, and it can’t be built again. + +He imprisons a man, and there can be no release. + + +Behold, he withholds the waters, and they dry up. + +Again, he sends them out, and they overturn the earth. + + +With him is strength and wisdom. + +The deceived and the deceiver are his. + + +He leads counselors away stripped. + +He makes judges fools. + + +He loosens the bond of kings. + +He binds their waist with a belt. + + +He leads priests away stripped, + +and overthrows the mighty. + + +He removes the speech of those who are trusted, + +and takes away the understanding of the elders. + + +He pours contempt on princes, + +and loosens the belt of the strong. + + +He uncovers deep things out of darkness, + +and brings out to light the shadow of death. + + +He increases the nations, and he destroys them. + +He enlarges the nations, and he leads them captive. + + +He takes away understanding from the chiefs of the people of the earth, + +and causes them to wander in a wilderness where there is no way. + + +They grope in the dark without light. + +He makes them stagger like a drunken man. + + + + + + +Behold, my eye has seen all this. + +My ear has heard and understood it. + + +What you know, I know also. + +I am not inferior to you. + + + +Surely I would speak to the Almighty. + +I desire to reason with God. + + +But you are forgers of lies. + +You are all physicians of no value. + + +Oh that you would be completely silent! + +Then you would be wise. + + +Hear now my reasoning. + +Listen to the pleadings of my lips. + + +Will you speak unrighteously for God, + +and talk deceitfully for him? + + +Will you show partiality to him? + +Will you contend for God? + + +Is it good that he should search you out? + +Or as one deceives a man, will you deceive him? + + +He will surely reprove you + +if you secretly show partiality. + + +Won’t his majesty make you afraid + +and his dread fall on you? + + +Your memorable sayings are proverbs of ashes. + +Your defenses are defenses of clay. + + + +Be silent! + +Leave me alone, that I may speak. + +Let come on me what will. + + +Why should I take my flesh in my teeth, + +and put my life in my hand? + + +Behold, he will kill me. + +I have no hope. + +Nevertheless, I will maintain my ways before him. + + +This also will be my salvation, + +that a godless man will not come before him. + + +Listen carefully to my speech. + +Let my declaration be in your ears. + + +See now, I have set my cause in order. + +I know that I am righteous. + + +Who is he who will contend with me? + +For then I would hold my peace and give up the spirit. + + + +“Only don’t do two things to me, + +then I will not hide myself from your face: + + +withdraw your hand far from me, + +and don’t let your terror make me afraid. + + +Then call, and I will answer, + +or let me speak, and you answer me. + + +How many are my iniquities and sins? + +Make me know my disobedience and my sin. + + +Why do you hide your face, + +and consider me your enemy? + + +Will you harass a driven leaf? + +Will you pursue the dry stubble? + + +For you write bitter things against me, + +and make me inherit the iniquities of my youth. + + +You also put my feet in the stocks, + +and mark all my paths. + +You set a bound to the soles of my feet, + + +though I am decaying like a rotten thing, + +like a garment that is moth-eaten. + + + + + + +Man, who is born of a woman, + +is of few days, and full of trouble. + + +He grows up like a flower, and is cut down. + +He also flees like a shadow, and doesn’t continue. + + +Do you open your eyes on such a one, + +and bring me into judgment with you? + + +Who can bring a clean thing out of an unclean? + +Not one. + + +Seeing his days are determined, + +the number of his months is with you, + +and you have appointed his bounds that he can’t pass. + + +Look away from him, that he may rest, + +until he accomplishes, as a hireling, his day. + + + +For there is hope for a tree if it is cut down, + +that it will sprout again, + +that the tender branch of it will not cease. + + +Though its root grows old in the earth, + +and its stock dies in the ground, + + +yet through the scent of water it will bud, + +and sprout boughs like a plant. + + +But man dies, and is laid low. + +Yes, man gives up the spirit, and where is he? + + +As the waters fail from the sea, + +and the river wastes and dries up, + + +so man lies down and doesn’t rise. + +Until the heavens are no more, they will not awake, + +nor be roused out of their sleep. + + + +Oh that you would hide me in Sheol,14:13 +Sheol is the place of the dead. + +that you would keep me secret until your wrath is past, + +that you would appoint me a set time and remember me! + + +If a man dies, will he live again? + +I would wait all the days of my warfare, + +until my release should come. + + +You would call, and I would answer you. + +You would have a desire for the work of your hands. + + +But now you count my steps. + +Don’t you watch over my sin? + + +My disobedience is sealed up in a bag. + +You fasten up my iniquity. + + + +“But the mountain falling comes to nothing. + +The rock is removed out of its place. + + +The waters wear the stones. + +The torrents of it wash away the dust of the earth. + +So you destroy the hope of man. + + +You forever prevail against him, and he departs. + +You change his face, and send him away. + + +His sons come to honor, and he doesn’t know it. + +They are brought low, but he doesn’t perceive it of them. + + +But his flesh on him has pain, + +and his soul within him mourns.” + + + + + +

Then Eliphaz the Temanite answered, + +

+Should a wise man answer with vain knowledge, + +and fill himself with the east wind? + + +Should he reason with unprofitable talk, + +or with speeches with which he can do no good? + + +Yes, you do away with fear, + +and hinder devotion before God. + + +For your iniquity teaches your mouth, + +and you choose the language of the crafty. + + +Your own mouth condemns you, and not I. + +Yes, your own lips testify against you. + + + +Are you the first man who was born? + +Or were you brought out before the hills? + + +Have you heard the secret counsel of God? + +Do you limit wisdom to yourself? + + +What do you know that we don’t know? + +What do you understand which is not in us? + + +With us are both the gray-headed and the very aged men, + +much older than your father. + + +Are the consolations of God too small for you, + +even the word that is gentle toward you? + + +Why does your heart carry you away? + +Why do your eyes flash, + + +that you turn your spirit against God, + +and let such words go out of your mouth? + + +What is man, that he should be clean? + +What is he who is born of a woman, that he should be righteous? + + +Behold, he puts no trust in his holy ones. + +Yes, the heavens are not clean in his sight; + + +how much less one who is abominable and corrupt, + +a man who drinks iniquity like water! + + + +I will show you, listen to me; + +that which I have seen I will declare + + +(which wise men have told by their fathers, + +and have not hidden it; + + +to whom alone the land was given, + +and no stranger passed among them): + + +the wicked man writhes in pain all his days, + +even the number of years that are laid up for the oppressor. + + +A sound of terrors is in his ears. + +In prosperity the destroyer will come on him. + + +He doesn’t believe that he will return out of darkness. + +He is waited for by the sword. + + +He wanders abroad for bread, saying, ‘Where is it?’ + +He knows that the day of darkness is ready at his hand. + + +Distress and anguish make him afraid. + +They prevail against him, as a king ready to the battle. + + +Because he has stretched out his hand against God, + +and behaves himself proudly against the Almighty, + + +he runs at him with a stiff neck, + +with the thick shields of his bucklers, + + +because he has covered his face with his fatness, + +and gathered fat on his thighs. + + +He has lived in desolate cities, + +in houses which no one inhabited, + +which were ready to become heaps. + + +He will not be rich, neither will his substance continue, + +neither will their possessions be extended on the earth. + + +He will not depart out of darkness. + +The flame will dry up his branches. + +He will go away by the breath of God’s mouth. + + +Let him not trust in emptiness, deceiving himself, + +for emptiness will be his reward. + + +It will be accomplished before his time. + +His branch will not be green. + + +He will shake off his unripe grape as the vine, + +and will cast off his flower as the olive tree. + + +For the company of the godless will be barren, + +and fire will consume the tents of bribery. + + +They conceive mischief and produce iniquity. + +Their heart prepares deceit.” + + + + + +

Then Job answered, + +

+I have heard many such things. + +You are all miserable comforters! + + +Shall vain words have an end? + +Or what provokes you that you answer? + + +I also could speak as you do. + +If your soul were in my soul’s place, + +I could join words together against you, + +and shake my head at you, + + +but I would strengthen you with my mouth. + +The solace of my lips would relieve you. + + + +“Though I speak, my grief is not subsided. + +Though I forbear, what am I eased? + + +But now, God, you have surely worn me out. + +You have made all my company desolate. + + +You have shriveled me up. This is a witness against me. + +My leanness rises up against me. + +It testifies to my face. + + +He has torn me in his wrath and persecuted me. + +He has gnashed on me with his teeth. + +My adversary sharpens his eyes on me. + + +They have gaped on me with their mouth. + +They have struck me on the cheek reproachfully. + +They gather themselves together against me. + + +God delivers me to the ungodly, + +and casts me into the hands of the wicked. + + +I was at ease, and he broke me apart. + +Yes, he has taken me by the neck, and dashed me to pieces. + +He has also set me up for his target. + + +His archers surround me. + +He splits my kidneys apart, and does not spare. + +He pours out my bile on the ground. + + +He breaks me with breach on breach. + +He runs at me like a giant. + + +I have sewed sackcloth on my skin, + +and have thrust my horn in the dust. + + +My face is red with weeping. + +Deep darkness is on my eyelids, + + +although there is no violence in my hands, + +and my prayer is pure. + + + +“Earth, don’t cover my blood. + +Let my cry have no place to rest. + + +Even now, behold, my witness is in heaven. + +He who vouches for me is on high. + + +My friends scoff at me. + +My eyes pour out tears to God, + + +that he would maintain the right of a man with God, + +of a son of man with his neighbor! + + +For when a few years have come, + +I will go the way of no return. + + + + + +My spirit is consumed. + +My days are extinct + +and the grave is ready for me. + + +Surely there are mockers with me. + +My eye dwells on their provocation. + + + +Now give a pledge. Be collateral for me with yourself. + +Who is there who will strike hands with me? + + +For you have hidden their heart from understanding, + +therefore you will not exalt them. + + +He who denounces his friends for plunder, + +even the eyes of his children will fail. + + + +But he has made me a byword of the people. + +They spit in my face. + + +My eye also is dim by reason of sorrow. + +All my members are as a shadow. + + +Upright men will be astonished at this. + +The innocent will stir himself up against the godless. + + +Yet the righteous will hold to his way. + +He who has clean hands will grow stronger and stronger. + + +But as for you all, come back. + +I will not find a wise man among you. + + +My days are past. + +My plans are broken off, + +as are the thoughts of my heart. + + +They change the night into day, + +saying ‘The light is nearin the presence of darkness. + + +If I look for Sheol17:13 +Sheol is the place of the dead. as my house, + +if I have spread my couch in the darkness, + + +if I have said to corruption, ‘You are my father,’ + +and to the worm, ‘My mother,’ andMy sister,’ + + +where then is my hope? + +As for my hope, who will see it? + + +Shall it go down with me to the gates of Sheol,17:16 +Sheol is the place of the dead. + +or descend together into the dust?” + + + + + +

Then Bildad the Shuhite answered, + +

+How long will you hunt for words? + +Consider, and afterwards we will speak. + + +Why are we counted as animals, + +which have become unclean in your sight? + + +You who tear yourself in your anger, + +will the earth be forsaken for you? + +Or will the rock be removed out of its place? + + + +Yes, the light of the wicked will be put out. + +The spark of his fire won’t shine. + + +The light will be dark in his tent. + +His lamp above him will be put out. + + +The steps of his strength will be shortened. + +His own counsel will cast him down. + + +For he is cast into a net by his own feet, + +and he wanders into its mesh. + + +A snare will take him by the heel. + +A trap will catch him. + + +A noose is hidden for him in the ground, + +a trap for him on the path. + + +Terrors will make him afraid on every side, + +and will chase him at his heels. + + +His strength will be famished. + +Calamity will be ready at his side. + + +The members of his body will be devoured. + +The firstborn of death will devour his members. + + +He will be rooted out of the security of his tent. + +He will be brought to the king of terrors. + + +There will dwell in his tent that which is none of his. + +Sulfur will be scattered on his habitation. + + +His roots will be dried up beneath. + +His branch will be cut off above. + + +His memory will perish from the earth. + +He will have no name in the street. + + +He will be driven from light into darkness, + +and chased out of the world. + + +He will have neither son nor grandson among his people, + +nor any remaining where he lived. + + +Those who come after will be astonished at his day, + +as those who went before were frightened. + + +Surely such are the dwellings of the unrighteous. + +This is the place of him who doesn’t know God.” + + + + +

Then Job answered, + +

+How long will you torment me, + +and crush me with words? + + +You have reproached me ten times. + +You aren’t ashamed that you attack me. + + +If it is true that I have erred, + +my error remains with myself. + + +If indeed you will magnify yourselves against me, + +and plead against me my reproach, + + +know now that God has subverted me, + +and has surrounded me with his net. + + + +Behold, I cry out of wrong, but I am not heard. + +I cry for help, but there is no justice. + + +He has walled up my way so that I can’t pass, + +and has set darkness in my paths. + + +He has stripped me of my glory, + +and taken the crown from my head. + + +He has broken me down on every side, and I am gone. + +He has plucked my hope up like a tree. + + +He has also kindled his wrath against me. + +He counts me among his adversaries. + + +His troops come on together, + +build a siege ramp against me, + +and encamp around my tent. + + + +He has put my brothers far from me. + +My acquaintances are wholly estranged from me. + + +My relatives have gone away. + +My familiar friends have forgotten me. + + +Those who dwell in my house and my maids consider me a stranger. + +I am an alien in their sight. + + +I call to my servant, and he gives me no answer. + +I beg him with my mouth. + + +My breath is offensive to my wife. + +I am loathsome to the children of my own mother. + + +Even young children despise me. + +If I arise, they speak against me. + + +All my familiar friends abhor me. + +They whom I loved have turned against me. + + +My bones stick to my skin and to my flesh. + +I have escaped by the skin of my teeth. + + + +Have pity on me. Have pity on me, you my friends, + +for the hand of God has touched me. + + +Why do you persecute me as God, + +and are not satisfied with my flesh? + + + +Oh that my words were now written! + +Oh that they were inscribed in a book! + + +That with an iron pen and lead + +they were engraved in the rock forever! + + +But as for me, I know that my Redeemer lives. + +In the end, he will stand upon the earth. + + +After my skin is destroyed, + +then I will see God in my flesh, + + +whom I, even I, will see on my side. + +My eyes will see, and not as a stranger. + + +My heart is consumed within me. + + +If you say, ‘How we will persecute him!’ + +because the root of the matter is found in me, + + +be afraid of the sword, + +for wrath brings the punishments of the sword, + +that you may know there is a judgment.” + + + + +

Then Zophar the Naamathite answered, + +

+Therefore my thoughts answer me, + +even by reason of my haste that is in me. + + +I have heard the reproof which puts me to shame. + +The spirit of my understanding answers me. + + +Don’t you know this from old time, + +since man was placed on earth, + + +that the triumphing of the wicked is short, + +the joy of the godless but for a moment? + + +Though his height mount up to the heavens, + +and his head reach to the clouds, + + +yet he will perish forever like his own dung. + +Those who have seen him will say, ‘Where is he?’ + + +He will fly away as a dream, and will not be found. + +Yes, he will be chased away like a vision of the night. + + +The eye which saw him will see him no more, + +neither will his place see him any more. + + +His children will seek the favor of the poor. + +His hands will give back his wealth. + + +His bones are full of his youth, + +but youth will lie down with him in the dust. + + + +“Though wickedness is sweet in his mouth, + +though he hide it under his tongue, + + +though he spare it, and will not let it go, + +but keep it still within his mouth, + + +yet his food in his bowels is turned. + +It is cobra venom within him. + + +He has swallowed down riches, and he will vomit them up again. + +God will cast them out of his belly. + + +He will suck cobra venom. + +The viper’s tongue will kill him. + + +He will not look at the rivers, + +the flowing streams of honey and butter. + + +He will restore that for which he labored, and will not swallow it down. + +He will not rejoice according to the substance that he has gotten. + + +For he has oppressed and forsaken the poor. + +He has violently taken away a house, and he will not build it up. + + + +Because he knew no quietness within him, + +he will not save anything of that in which he delights. + + +There was nothing left that he didn’t devour, + +therefore his prosperity will not endure. + + +In the fullness of his sufficiency, distress will overtake him. + +The hand of everyone who is in misery will come on him. + + +When he is about to fill his belly, God will cast the fierceness of his wrath on him. + +It will rain on him while he is eating. + + +He will flee from the iron weapon. + +The bronze arrow will strike him through. + + +He draws it out, and it comes out of his body. + +Yes, the glittering point comes out of his liver. + +Terrors are on him. + + +All darkness is laid up for his treasures. + +An unfanned fire will devour him. + +It will consume that which is left in his tent. + + +The heavens will reveal his iniquity. + +The earth will rise up against him. + + +The increase of his house will depart. + +They will rush away in the day of his wrath. + + +This is the portion of a wicked man from God, + +the heritage appointed to him by God.” + + + + +

Then Job answered, + +

+Listen diligently to my speech. + +Let this be your consolation. + + +Allow me, and I also will speak. + +After I have spoken, mock on. + + +As for me, is my complaint to man? + +Why shouldn’t I be impatient? + + +Look at me, and be astonished. + +Lay your hand on your mouth. + + +When I remember, I am troubled. + +Horror takes hold of my flesh. + + + +Why do the wicked live, + +become old, yes, and grow mighty in power? + + +Their child is established with them in their sight, + +their offspring before their eyes. + + +Their houses are safe from fear, + +neither is the rod of God upon them. + + +Their bulls breed without fail. + +Their cows calve, and don’t miscarry. + + +They send out their little ones like a flock. + +Their children dance. + + +They sing to the tambourine and harp, + +and rejoice at the sound of the pipe. + + +They spend their days in prosperity. + +In an instant they go down to Sheol.21:13 +Sheol is the place of the dead. + + + +They tell God, ‘Depart from us, + +for we don’t want to know about your ways. + + +What is the Almighty, that we should serve him? + +What profit should we have, if we pray to him?’ + + +Behold, their prosperity is not in their hand. + +The counsel of the wicked is far from me. + + + +How often is it that the lamp of the wicked is put out, + +that their calamity comes on them, + +that God distributes sorrows in his anger? + + +How often is it that they are as stubble before the wind, + +as chaff that the storm carries away? + + +You say, ‘God lays up his iniquity for his children.’ + +Let him recompense it to himself, that he may know it. + + +Let his own eyes see his destruction. + +Let him drink of the wrath of the Almighty. + + +For what does he care for his house after him, + +when the number of his months is cut off? + + + +Shall any teach God knowledge, + +since he judges those who are high? + + +One dies in his full strength, + +being wholly at ease and quiet. + + +His pails are full of milk. + +The marrow of his bones is moistened. + + +Another dies in bitterness of soul, + +and never tastes of good. + + +They lie down alike in the dust. + +The worm covers them. + + + +Behold, I know your thoughts, + +the plans with which you would wrong me. + + +For you say, ‘Where is the house of the prince? + +Where is the tent in which the wicked lived?’ + + +Haven’t you asked wayfaring men? + +Don’t you know their evidences, + + +that the evil man is reserved to the day of calamity, + +that they are led out to the day of wrath? + + +Who will declare his way to his face? + +Who will repay him what he has done? + + +Yet he will be borne to the grave. + +Men will keep watch over the tomb. + + +The clods of the valley will be sweet to him. + +All men will draw after him, + +as there were innumerable before him. + + +So how can you comfort me with nonsense, + +because in your answers there remains only falsehood?” + + + + +

Then Eliphaz the Temanite answered, + +

+Can a man be profitable to God? + +Surely he who is wise is profitable to himself. + + +Is it any pleasure to the Almighty that you are righteous? + +Or does it benefit him that you make your ways perfect? + + +Is it for your piety that he reproves you, + +that he enters with you into judgment? + + +Isn’t your wickedness great? + +Neither is there any end to your iniquities. + + +For you have taken pledges from your brother for nothing, + +and stripped the naked of their clothing. + + +You haven’t given water to the weary to drink, + +and you have withheld bread from the hungry. + + +But as for the mighty man, he had the earth. + +The honorable man, he lived in it. + + +You have sent widows away empty, + +and the arms of the fatherless have been broken. + + +Therefore snares are around you. + +Sudden fear troubles you, + + +or darkness, so that you can not see, + +and floods of waters cover you. + + + +“Isn’t God in the heights of heaven? + +See the height of the stars, how high they are! + + +You say, ‘What does God know? + +Can he judge through the thick darkness? + + +Thick clouds are a covering to him, so that he doesn’t see. + +He walks on the vault of the sky.’ + + +Will you keep the old way, + +which wicked men have trodden, + + +who were snatched away before their time, + +whose foundation was poured out as a stream, + + +who said to God, ‘Depart from us!’ + +and, ‘What can the Almighty do for us?’ + + +Yet he filled their houses with good things, + +but the counsel of the wicked is far from me. + + +The righteous see it, and are glad. + +The innocent ridicule them, + + +saying, ‘Surely those who rose up against us are cut off. + +The fire has consumed their remnant.’ + + + +Acquaint yourself with him now, and be at peace. + +By it, good will come to you. + + +Please receive instruction from his mouth, + +and lay up his words in your heart. + + +If you return to the Almighty, you will be built up, + +if you put away unrighteousness far from your tents. + + +Lay your treasure in the dust, + +the gold of Ophir among the stones of the brooks. + + +The Almighty will be your treasure, + +and precious silver to you. + + +For then you will delight yourself in the Almighty, + +and will lift up your face to God. + + +You will make your prayer to him, and he will hear you. + +You will pay your vows. + + +You will also decree a thing, and it will be established to you. + +Light will shine on your ways. + + +When they cast down, you will say, ‘be lifted up.’ + +He will save the humble person. + + +He will even deliver him who is not innocent. + +Yes, he will be delivered through the cleanness of your hands.” + + + + +

Then Job answered, + +

+Even today my complaint is rebellious. + +His hand is heavy in spite of my groaning. + + +Oh that I knew where I might find him! + +That I might come even to his seat! + + +I would set my cause in order before him, + +and fill my mouth with arguments. + + +I would know the words which he would answer me, + +and understand what he would tell me. + + +Would he contend with me in the greatness of his power? + +No, but he would listen to me. + + +There the upright might reason with him, + +so I should be delivered forever from my judge. + + + +If I go east, he is not there. + +If I go west, I can’t find him. + + +He works to the north, but I can’t see him. + +He turns south, but I can’t catch a glimpse of him. + + + +But he knows the way that I take. + +When he has tried me, I will come out like gold. + + +My foot has held fast to his steps. + +I have kept his way, and not turned away. + + +I haven’t gone back from the commandment of his lips. + +I have treasured up the words of his mouth more than my necessary food. + + +But he stands alone, and who can oppose him? + +What his soul desires, even that he does. + + +For he performs that which is appointed for me. + +Many such things are with him. + + +Therefore I am terrified at his presence. + +When I consider, I am afraid of him. + + +For God has made my heart faint. + +The Almighty has terrified me. + + +Because I was not cut off before the darkness, + +neither did he cover the thick darkness from my face. + + + + + + +Why aren’t times laid up by the Almighty? + +Why don’t those who know him see his days? + + +There are people who remove the landmarks. + +They violently take away flocks, and feed them. + + +They drive away the donkey of the fatherless, + +and they take the widow’s ox for a pledge. + + +They turn the needy out of the way. + +The poor of the earth all hide themselves. + + +Behold, as wild donkeys in the desert, + +they go out to their work, seeking diligently for food. + +The wilderness yields them bread for their children. + + +They cut their food in the field. + +They glean the vineyard of the wicked. + + +They lie all night naked without clothing, + +and have no covering in the cold. + + +They are wet with the showers of the mountains, + +and embrace the rock for lack of a shelter. + + +There are those who pluck the fatherless from the breast, + +and take a pledge of the poor, + + +so that they go around naked without clothing. + +Being hungry, they carry the sheaves. + + +They make oil within the walls of these men. + +They tread wine presses, and suffer thirst. + + +From out of the populous city, men groan. + +The soul of the wounded cries out, + +yet God doesn’t regard the folly. + + + +These are of those who rebel against the light. + +They don’t know its ways, + +nor stay in its paths. + + +The murderer rises with the light. + +He kills the poor and needy. + +In the night he is like a thief. + + +The eye also of the adulterer waits for the twilight, + +saying, ‘No eye will see me.’ + +He disguises his face. + + +In the dark they dig through houses. + +They shut themselves up in the daytime. + +They don’t know the light. + + +For the morning is to all of them like thick darkness, + +for they know the terrors of the thick darkness. + + + +They are foam on the surface of the waters. + +Their portion is cursed on the earth. + +They don’t turn into the way of the vineyards. + + +Drought and heat consume the snow waters, + +so does Sheol24:19 +Sheol is the place of the dead. those who have sinned. + + +The womb will forget him. + +The worm will feed sweetly on him. + +He will be no more remembered. + +Unrighteousness will be broken as a tree. + + +He devours the barren who don’t bear. + +He shows no kindness to the widow. + + +Yet God preserves the mighty by his power. + +He rises up who has no assurance of life. + + +God gives them security, and they rest in it. + +His eyes are on their ways. + + +They are exalted; yet a little while, and they are gone. + +Yes, they are brought low, they are taken out of the way as all others, + +and are cut off as the tops of the ears of grain. + + +If it isn’t so now, who will prove me a liar, + +and make my speech worth nothing?” + + + + + +

Then Bildad the Shuhite answered, + +

+Dominion and fear are with him. + +He makes peace in his high places. + + +Can his armies be counted? + +On whom does his light not arise? + + +How then can man be just with God? + +Or how can he who is born of a woman be clean? + + +Behold, even the moon has no brightness, + +and the stars are not pure in his sight; + + +How much less man, who is a worm, + +and the son of man, who is a worm!” + + + + +

Then Job answered, + +

+How have you helped him who is without power! + +How have you saved the arm that has no strength! + + +How have you counseled him who has no wisdom, + +and plentifully declared sound knowledge! + + +To whom have you uttered words? + +Whose spirit came out of you? + + + +The departed spirits tremble, + +those beneath the waters and all that live in them. + + +Sheol26:6 +Sheol is the place of the dead. is naked before God, + +and Abaddon26:6 +Abaddon means Destroyer. has no covering. + + +He stretches out the north over empty space, + +and hangs the earth on nothing. + + +He binds up the waters in his thick clouds, + +and the cloud is not burst under them. + + +He encloses the face of his throne, + +and spreads his cloud on it. + + +He has described a boundary on the surface of the waters, + +and to the confines of light and darkness. + + +The pillars of heaven tremble + +and are astonished at his rebuke. + + +He stirs up the sea with his power, + +and by his understanding he strikes through Rahab. + + +By his Spirit the heavens are garnished. + +His hand has pierced the swift serpent. + + +Behold, these are but the outskirts of his ways. + +How small a whisper do we hear of him! + +But the thunder of his power who can understand?” + + + + +

Job again took up his parable, and said, + +

+As God lives, who has taken away my right, + +the Almighty, who has made my soul bitter + + +(for the length of my life is still in me, + +and the spirit of God is in my nostrils); + + +surely my lips will not speak unrighteousness, + +neither will my tongue utter deceit. + + +Far be it from me that I should justify you. + +Until I die I will not put away my integrity from me. + + +I hold fast to my righteousness, and will not let it go. + +My heart will not reproach me so long as I live. + + + +Let my enemy be as the wicked. + +Let him who rises up against me be as the unrighteous. + + + +For what is the hope of the godless, when he is cut off, + +when God takes away his life? + + +Will God hear his cry when trouble comes on him? + + +Will he delight himself in the Almighty, + +and call on God at all times? + + +I will teach you about the hand of God. + +I will not conceal that which is with the Almighty. + + +Behold, all of you have seen it yourselves; + +why then have you become altogether vain? + + + +This is the portion of a wicked man with God, + +the heritage of oppressors, which they receive from the Almighty. + + +If his children are multiplied, it is for the sword. + +His offspring will not be satisfied with bread. + + +Those who remain of him will be buried in death. + +His widows will make no lamentation. + + +Though he heap up silver as the dust, + +and prepare clothing as the clay; + + +he may prepare it, but the just will put it on, + +and the innocent will divide the silver. + + +He builds his house as the moth, + +as a booth which the watchman makes. + + +He lies down rich, but he will not do so again. + +He opens his eyes, and he is not. + + +Terrors overtake him like waters. + +A storm steals him away in the night. + + +The east wind carries him away, and he departs. + +It sweeps him out of his place. + + +For it hurls at him, and does not spare, + +as he flees away from his hand. + + +Men will clap their hands at him, + +and will hiss him out of his place. + + + + + + +Surely there is a mine for silver, + +and a place for gold which they refine. + + +Iron is taken out of the earth, + +and copper is smelted out of the ore. + + +Man sets an end to darkness, + +and searches out, to the furthest bound, + +the stones of obscurity and of thick darkness. + + +He breaks open a shaft away from where people live. + +They are forgotten by the foot. + +They hang far from men, they swing back and forth. + + +As for the earth, out of it comes bread. + +Underneath it is turned up as it were by fire. + + +Sapphires come from its rocks. + +It has dust of gold. + + +That path no bird of prey knows, + +neither has the falcon’s eye seen it. + + +The proud animals have not trodden it, + +nor has the fierce lion passed by there. + + +He puts his hand on the flinty rock, + +and he overturns the mountains by the roots. + + +He cuts out channels among the rocks. + +His eye sees every precious thing. + + +He binds the streams that they don’t trickle. + +The thing that is hidden he brings out to light. + + + +“But where will wisdom be found? + +Where is the place of understanding? + + +Man doesn’t know its price, + +and it isn’t found in the land of the living. + + +The deep says, ‘It isn’t in me.’ + +The sea says, ‘It isn’t with me.’ + + +It can’t be gotten for gold, + +neither will silver be weighed for its price. + + +It can’t be valued with the gold of Ophir, + +with the precious onyx, or the sapphire.28:16 +or, lapis lazuli + + +Gold and glass can’t equal it, + +neither will it be exchanged for jewels of fine gold. + + +No mention will be made of coral or of crystal. + +Yes, the price of wisdom is above rubies. + + +The topaz of Ethiopia will not equal it. + +It won’t be valued with pure gold. + + +Where then does wisdom come from? + +Where is the place of understanding? + + +Seeing it is hidden from the eyes of all living, + +and kept close from the birds of the sky. + + +Destruction and Death say, + +We have heard a rumor of it with our ears.’ + + + +“God understands its way, + +and he knows its place. + + +For he looks to the ends of the earth, + +and sees under the whole sky. + + +He establishes the force of the wind. + +Yes, he measures out the waters by measure. + + +When he made a decree for the rain, + +and a way for the lightning of the thunder, + + +then he saw it, and declared it. + +He established it, yes, and searched it out. + + +To man he said, + +Behold, the fear of the Lord,28:28 +The word translated “Lord” is “Adonai.” + that is wisdom. + +To depart from evil is understanding.’” + + + + + +

Job again took up his parable, and said, + +

+Oh that I were as in the months of old, + +as in the days when God watched over me; + + +when his lamp shone on my head, + +and by his light I walked through darkness, + + +as I was in my prime, + +when the friendship of God was in my tent, + + +when the Almighty was yet with me, + +and my children were around me, + + +when my steps were washed with butter, + +and the rock poured out streams of oil for me, + + +when I went out to the city gate, + +when I prepared my seat in the street. + + +The young men saw me and hid themselves. + +The aged rose up and stood. + + +The princes refrained from talking, + +and laid their hand on their mouth. + + +The voice of the nobles was hushed, + +and their tongue stuck to the roof of their mouth. + + +For when the ear heard me, then it blessed me, + +and when the eye saw me, it commended me, + + +because I delivered the poor who cried, + +and the fatherless also, who had no one to help him, + + +the blessing of him who was ready to perish came on me, + +and I caused the widow’s heart to sing for joy. + + +I put on righteousness, and it clothed me. + +My justice was as a robe and a diadem. + + +I was eyes to the blind, + +and feet to the lame. + + +I was a father to the needy. + +I researched the cause of him whom I didn’t know. + + +I broke the jaws of the unrighteous + +and plucked the prey out of his teeth. + + +Then I said, ‘I will die in my own house, + +I will count my days as the sand. + + +My root is spread out to the waters. + +The dew lies all night on my branch. + + +My glory is fresh in me. + +My bow is renewed in my hand.’ + + + +“Men listened to me, waited, + +and kept silence for my counsel. + + +After my words they didn’t speak again. + +My speech fell on them. + + +They waited for me as for the rain. + +Their mouths drank as with the spring rain. + + +I smiled on them when they had no confidence. + +They didn’t reject the light of my face. + + +I chose out their way, and sat as chief. + +I lived as a king in the army, + +as one who comforts the mourners. + + + + + + +But now those who are younger than I have me in derision, + +whose fathers I considered unworthy to put with my sheep dogs. + + +Of what use is the strength of their hands to me, + +men in whom ripe age has perished? + + +They are gaunt from lack and famine. + +They gnaw the dry ground, in the gloom of waste and desolation. + + +They pluck salt herbs by the bushes. + +The roots of the broom tree are their food. + + +They are driven out from among men. + +They cry after them as after a thief, + + +so that they live in frightful valleys, + +and in holes of the earth and of the rocks. + + +They bray among the bushes. + +They are gathered together under the nettles. + + +They are children of fools, yes, children of wicked men. + +They were flogged out of the land. + + + +Now I have become their song. + +Yes, I am a byword to them. + + +They abhor me, they stand aloof from me, + +and don’t hesitate to spit in my face. + + +For he has untied his cord, and afflicted me; + +and they have thrown off restraint before me. + + +On my right hand rise the rabble. + +They thrust aside my feet. + +They cast their ways of destruction up against me. + + +They mar my path. + +They promote my destruction + +without anyone’s help. + + +As through a wide breach they come. + +They roll themselves in amid the ruin. + + +Terrors have turned on me. + +They chase my honor as the wind. + +My welfare has passed away as a cloud. + + + +Now my soul is poured out within me. + +Days of affliction have taken hold of me. + + +In the night season my bones are pierced in me, + +and the pains that gnaw me take no rest. + + +My garment is disfigured by great force. + +It binds me about as the collar of my tunic. + + +He has cast me into the mire. + +I have become like dust and ashes. + + +I cry to you, and you do not answer me. + +I stand up, and you gaze at me. + + +You have turned to be cruel to me. + +With the might of your hand you persecute me. + + +You lift me up to the wind, and drive me with it. + +You dissolve me in the storm. + + +For I know that you will bring me to death, + +to the house appointed for all living. + + + +“However doesn’t one stretch out a hand in his fall? + +Or in his calamity therefore cry for help? + + +Didn’t I weep for him who was in trouble? + +Wasn’t my soul grieved for the needy? + + +When I looked for good, then evil came. + +When I waited for light, darkness came. + + +My heart is troubled, and doesn’t rest. + +Days of affliction have come on me. + + +I go mourning without the sun. + +I stand up in the assembly, and cry for help. + + +I am a brother to jackals, + +and a companion to ostriches. + + +My skin grows black and peels from me. + +My bones are burned with heat. + + +Therefore my harp has turned to mourning, + +and my pipe into the voice of those who weep. + + + + + + +I made a covenant with my eyes; + +how then should I look lustfully at a young woman? + + +For what is the portion from God above, + +and the heritage from the Almighty on high? + + +Is it not calamity to the unrighteous, + +and disaster to the workers of iniquity? + + +Doesn’t he see my ways, + +and count all my steps? + + + +“If I have walked with falsehood, + +and my foot has hurried to deceit + + +(let me be weighed in an even balance, + +that God may know my integrity); + + +if my step has turned out of the way, + +if my heart walked after my eyes, + +if any defilement has stuck to my hands, + + +then let me sow, and let another eat. + +Yes, let the produce of my field be rooted out. + + + +“If my heart has been enticed to a woman, + +and I have laid wait at my neighbor’s door, + + +then let my wife grind for another, + +and let others sleep with her. + + +For that would be a heinous crime. + +Yes, it would be an iniquity to be punished by the judges, + + +for it is a fire that consumes to destruction, + +and would root out all my increase. + + +“If I have despised the cause of my male servant + +or of my female servant, + +when they contended with me, + + +what then will I do when God rises up? + +When he visits, what will I answer him? + + +Didn’t he who made me in the womb make him? + +Didn’t one fashion us in the womb? + + +“If I have withheld the poor from their desire, + +or have caused the eyes of the widow to fail, + + +or have eaten my morsel alone, + +and the fatherless has not eaten of it + + +(no, from my youth he grew up with me as with a father, + +I have guided her from my mother’s womb); + + +if I have seen any perish for want of clothing, + +or that the needy had no covering; + + +if his heart hasn’t blessed me, + +if he hasn’t been warmed with my sheep’s fleece; + + +if I have lifted up my hand against the fatherless, + +because I saw my help in the gate; + + +then let my shoulder fall from the shoulder blade, + +and my arm be broken from the bone. + + +For calamity from God is a terror to me. + +Because of his majesty, I can do nothing. + + +If I have made gold my hope, + +and have said to the fine gold, ‘You are my confidence;’ + + +If I have rejoiced because my wealth was great, + +and because my hand had gotten much; + + +if I have seen the sun when it shined, + +or the moon moving in splendor, + + +and my heart has been secretly enticed, + +and my hand threw a kiss from my mouth; + + +this also would be an iniquity to be punished by the judges, + +for I would have denied the God who is above. + + +If I have rejoiced at the destruction of him who hated me, + +or lifted up myself when evil found him + + +(I have certainly not allowed my mouth to sin + +by asking his life with a curse); + + +if the men of my tent have not said, + +Who can find one who has not been filled with his meat?’ + + +(the foreigner has not camped in the street, + +but I have opened my doors to the traveler); + + +if like Adam I have covered my transgressions, + +by hiding my iniquity in my heart, + + +because I feared the great multitude, + +and the contempt of families terrified me, + +so that I kept silence, and didn’t go out of the door— + + +oh that I had one to hear me! + +Behold, here is my signature! Let the Almighty answer me! + +Let the accuser write my indictment! + + +Surely I would carry it on my shoulder, + +and I would bind it to me as a crown. + + +I would declare to him the number of my steps. + +I would go near to him like a prince. + + +If my land cries out against me, + +and its furrows weep together; + + +if I have eaten its fruits without money, + +or have caused its owners to lose their life, + + +let briers grow instead of wheat, + +and stinkweed instead of barley.” + + +

The words of Job are ended. + +

+ + +

So these three men ceased to answer Job, because he was righteous in his own eyes. + +Then the wrath of Elihu the son of Barachel, the Buzite, of the family of Ram, was kindled against Job. His wrath was kindled because he justified himself rather than God. + +Also his wrath was kindled against his three friends, because they had found no answer, and yet had condemned Job. + +Now Elihu had waited to speak to Job, because they were older than he. + +When Elihu saw that there was no answer in the mouth of these three men, his wrath was kindled. + +

+ +

Elihu the son of Barachel the Buzite answered, +

+I am young, and you are very old. + +Therefore I held back, and didn’t dare show you my opinion. + + +I said, ‘Days should speak, + +and multitude of years should teach wisdom.’ + + +But there is a spirit in man, + +and the Spirit32:8 +or, breath of the Almighty gives them understanding. + + +It is not the great who are wise, + +nor the aged who understand justice. + + +Therefore I said, ‘Listen to me; + +I also will show my opinion.’ + + + +Behold, I waited for your words, + +and I listened for your reasoning, + +while you searched out what to say. + + +Yes, I gave you my full attention, + +but there was no one who convinced Job, + +or who answered his words, among you. + + +Beware lest you say, ‘We have found wisdom. + +God may refute him, not man;’ + + +for he has not directed his words against me; + +neither will I answer him with your speeches. + + + +They are amazed. They answer no more. + +They don’t have a word to say. + + +Shall I wait, because they don’t speak, + +because they stand still, and answer no more? + + +I also will answer my part, + +and I also will show my opinion. + + +For I am full of words. + +The spirit within me constrains me. + + +Behold, my breast is as wine which has no vent; + +like new wineskins it is ready to burst. + + +I will speak, that I may be refreshed. + +I will open my lips and answer. + + +Please don’t let me respect any man’s person, + +neither will I give flattering titles to any man. + + +For I don’t know how to give flattering titles, + +or else my Maker would soon take me away. + + + + + + +However, Job, please hear my speech, + +and listen to all my words. + + +See now, I have opened my mouth. + +My tongue has spoken in my mouth. + + +My words will utter the uprightness of my heart. + +That which my lips know they will speak sincerely. + + +The Spirit of God has made me, + +and the breath of the Almighty gives me life. + + +If you can, answer me. + +Set your words in order before me, and stand up. + + +Behold, I am toward God even as you are. + +I am also formed out of the clay. + + +Behold, my terror will not make you afraid, + +neither will my pressure be heavy on you. + + + +Surely you have spoken in my hearing, + +I have heard the voice of your words, saying, + + +I am clean, without disobedience. + +I am innocent, neither is there iniquity in me. + + +Behold, he finds occasions against me. + +He counts me for his enemy. + + +He puts my feet in the stocks. + +He marks all my paths.’ + + + +Behold, I will answer you. In this you are not just, + +for God is greater than man. + + +Why do you strive against him, + +because he doesn’t give account of any of his matters? + + +For God speaks once, + +yes twice, though man pays no attention. + + +In a dream, in a vision of the night, + +when deep sleep falls on men, + +in slumbering on the bed, + + +then he opens the ears of men, + +and seals their instruction, + + +that he may withdraw man from his purpose, + +and hide pride from man. + + +He keeps back his soul from the pit, + +and his life from perishing by the sword. + + + +He is chastened also with pain on his bed, + +with continual strife in his bones, + + +so that his life abhors bread, + +and his soul dainty food. + + +His flesh is so consumed away that it can’t be seen. + +His bones that were not seen stick out. + + +Yes, his soul draws near to the pit, + +and his life to the destroyers. + + + +If there is beside him an angel, + +an interpreter, one among a thousand, + +to show to man what is right for him, + + +then God is gracious to him, and says, + +Deliver him from going down to the pit, + +I have found a ransom.’ + + +His flesh will be fresher than a child’s. + +He returns to the days of his youth. + + +He prays to God, and he is favorable to him, + +so that he sees his face with joy. + +He restores to man his righteousness. + + +He sings before men, and says, + +I have sinned, and perverted that which was right, + +and it didn’t profit me. + + +He has redeemed my soul from going into the pit. + +My life will see the light.’ + + + +Behold, God does all these things, + +twice, yes three times, with a man, + + +to bring back his soul from the pit, + +that he may be enlightened with the light of the living. + + +Mark well, Job, and listen to me. + +Hold your peace, and I will speak. + + +If you have anything to say, answer me. + +Speak, for I desire to justify you. + + +If not, listen to me. + +Hold your peace, and I will teach you wisdom.” + + + + + +

Moreover Elihu answered, + +

+Hear my words, you wise men. + +Give ear to me, you who have knowledge. + + +For the ear tries words, + +as the palate tastes food. + + +Let us choose for us that which is right. + +Let us know among ourselves what is good. + + +For Job has said, ‘I am righteous, + +God has taken away my right. + + +Notwithstanding my right I am considered a liar. + +My wound is incurable, though I am without disobedience.’ + + +What man is like Job, + +who drinks scorn like water, + + +who goes in company with the workers of iniquity, + +and walks with wicked men? + + +For he has said, ‘It profits a man nothing + +that he should delight himself with God.’ + + + +Therefore listen to me, you men of understanding: + +far be it from God, that he should do wickedness, + +from the Almighty, that he should commit iniquity. + + +For the work of a man he will give to him, + +and cause every man to find according to his ways. + + +Yes surely, God will not do wickedly, + +neither will the Almighty pervert justice. + + +Who put him in charge of the earth? + +Or who has appointed him over the whole world? + + +If he set his heart on himself, + +if he gathered to himself his spirit and his breath, + + +all flesh would perish together, + +and man would turn again to dust. + + + +“If now you have understanding, hear this. + +Listen to the voice of my words. + + +Should even one who hates justice govern? + +Will you condemn him who is righteous and mighty, + + +who says to a king, ‘Vile!’ + +or to nobles, ‘Wicked!’? + + +He doesn’t respect the persons of princes, + +nor respect the rich more than the poor, + +for they all are the work of his hands. + + +In a moment they die, even at midnight. + +The people are shaken and pass away. + +The mighty are taken away without a hand. + + + +For his eyes are on the ways of a man. + +He sees all his goings. + + +There is no darkness, nor thick gloom, + +where the workers of iniquity may hide themselves. + + +For he doesn’t need to consider a man further, + +that he should go before God in judgment. + + +He breaks mighty men in pieces in ways past finding out, + +and sets others in their place. + + +Therefore he takes knowledge of their works. + +He overturns them in the night, so that they are destroyed. + + +He strikes them as wicked men + +in the open sight of others; + + +because they turned away from following him, + +and wouldn’t pay attention to any of his ways, + + +so that they caused the cry of the poor to come to him. + +He heard the cry of the afflicted. + + +When he gives quietness, who then can condemn? + +When he hides his face, who then can see him? + +He is over a nation or a man alike, + + +that the godless man may not reign, + +that there be no one to ensnare the people. + + + +For has any said to God, + +I am guilty, but I will not offend any more. + + +Teach me that which I don’t see. + +If I have done iniquity, I will do it no more’? + + +Shall his recompense be as you desire, that you refuse it? + +For you must choose, and not I. + +Therefore speak what you know. + + +Men of understanding will tell me, + +yes, every wise man who hears me: + + +Job speaks without knowledge. + +His words are without wisdom.’ + + +I wish that Job were tried to the end, + +because of his answering like wicked men. + + +For he adds rebellion to his sin. + +He claps his hands among us, + +and multiplies his words against God.” + + + + + +

Moreover Elihu answered, + +

+“Do you think this to be your right, + +or do you say, ‘My righteousness is more than God’s,’ + + +that you ask, ‘What advantage will it be to you? + +What profit will I have, more than if I had sinned?’ + + +I will answer you, + +and your companions with you. + + +Look to the skies, and see. + +See the skies, which are higher than you. + + +If you have sinned, what effect do you have against him? + +If your transgressions are multiplied, what do you do to him? + + +If you are righteous, what do you give him? + +Or what does he receive from your hand? + + +Your wickedness may hurt a man as you are, + +and your righteousness may profit a son of man. + + + +By reason of the multitude of oppressions they cry out. + +They cry for help by reason of the arm of the mighty. + + +But no one says, ‘Where is God my Maker, + +who gives songs in the night, + + +who teaches us more than the animals of the earth, + +and makes us wiser than the birds of the sky?’ + + +There they cry, but no one answers, + +because of the pride of evil men. + + +Surely God will not hear an empty cry, + +neither will the Almighty regard it. + + +How much less when you say you don’t see him. + +The cause is before him, and you wait for him! + + +But now, because he has not visited in his anger, + +neither does he greatly regard arrogance, + + +therefore Job opens his mouth with empty talk, + +and he multiplies words without knowledge.” + + + + + +

Elihu also continued, and said, + +

+“Bear with me a little, and I will show you; + +for I still have something to say on God’s behalf. + + +I will get my knowledge from afar, + +and will ascribe righteousness to my Maker. + + +For truly my words are not false. + +One who is perfect in knowledge is with you. + + + +Behold, God is mighty, and doesn’t despise anyone. + +He is mighty in strength of understanding. + + +He doesn’t preserve the life of the wicked, + +but gives justice to the afflicted. + + +He doesn’t withdraw his eyes from the righteous, + +but with kings on the throne, + +he sets them forever, and they are exalted. + + +If they are bound in fetters, + +and are taken in the cords of afflictions, + + +then he shows them their work, + +and their transgressions, that they have behaved themselves proudly. + + +He also opens their ears to instruction, + +and commands that they return from iniquity. + + +If they listen and serve him, + +they will spend their days in prosperity, + +and their years in pleasures. + + +But if they don’t listen, they will perish by the sword; + +they will die without knowledge. + + + +But those who are godless in heart lay up anger. + +They don’t cry for help when he binds them. + + +They die in youth. + +Their life perishes among the unclean. + + +He delivers the afflicted by their affliction, + +and opens their ear in oppression. + + +Yes, he would have allured you out of distress, + +into a wide place, where there is no restriction. + +That which is set on your table would be full of fatness. + + + +But you are full of the judgment of the wicked. + +Judgment and justice take hold of you. + + +Don’t let riches entice you to wrath, + +neither let the great size of a bribe turn you aside. + + +Would your wealth sustain you in distress, + +or all the might of your strength? + + +Don’t desire the night, + +when people are cut off in their place. + + +Take heed, don’t regard iniquity; + +for you have chosen this rather than affliction. + + +Behold, God is exalted in his power. + +Who is a teacher like him? + + +Who has prescribed his way for him? + +Or who can say, ‘You have committed unrighteousness’? + + + +Remember that you magnify his work, + +about which men have sung. + + +All men have looked on it. + +Man sees it afar off. + + +Behold, God is great, and we don’t know him. + +The number of his years is unsearchable. + + +For he draws up the drops of water, + +which distill in rain from his vapor, + + +which the skies pour down + +and which drop on man abundantly. + + +Indeed, can anyone understand the spreading of the clouds + +and the thunderings of his pavilion? + + +Behold, he spreads his light around him. + +He covers the bottom of the sea. + + +For by these he judges the people. + +He gives food in abundance. + + +He covers his hands with the lightning, + +and commands it to strike the mark. + + +Its noise tells about him, + +and the livestock also, concerning the storm that comes up. + + + + + +“Yes, at this my heart trembles, + +and is moved out of its place. + + +Hear, oh, hear the noise of his voice, + +the sound that goes out of his mouth. + + +He sends it out under the whole sky, + +and his lightning to the ends of the earth. + + +After it a voice roars. + +He thunders with the voice of his majesty. + +He doesn’t hold back anything when his voice is heard. + + +God thunders marvelously with his voice. + +He does great things, which we can’t comprehend. + + +For he says to the snow, ‘Fall on the earth,’ + +likewise to the shower of rain, + +and to the showers of his mighty rain. + + +He seals up the hand of every man, + +that all men whom he has made may know it. + + +Then the animals take cover, + +and remain in their dens. + + +Out of its room comes the storm, + +and cold out of the north. + + +By the breath of God, ice is given, + +and the width of the waters is frozen. + + +Yes, he loads the thick cloud with moisture. + +He spreads abroad the cloud of his lightning. + + +It is turned around by his guidance, + +that they may do whatever he commands them + +on the surface of the habitable world, + + +whether it is for correction, or for his land, + +or for loving kindness, that he causes it to come. + + + +“Listen to this, Job. + +Stand still, and consider the wondrous works of God. + + +Do you know how God controls them, + +and causes the lightning of his cloud to shine? + + +Do you know the workings of the clouds, + +the wondrous works of him who is perfect in knowledge? + + +You whose clothing is warm + +when the earth is still by reason of the south wind? + + +Can you, with him, spread out the sky, + +which is strong as a cast metal mirror? + + +Teach us what we will tell him, + +for we can’t make our case by reason of darkness. + + +Will it be told him that I would speak? + +Or should a man wish that he were swallowed up? + + + +Now men don’t see the light which is bright in the skies, + +but the wind passes, and clears them. + + +Out of the north comes golden splendor. + +With God is awesome majesty. + + +We can’t reach the Almighty. + +He is exalted in power. + +In justice and great righteousness, he will not oppress. + + +Therefore men revere him. + +He doesn’t regard any who are wise of heart.” + + + + + +

Then Yahweh answered Job out of the whirlwind, + +

+Who is this who darkens counsel + +by words without knowledge? + + +Brace yourself like a man, + +for I will question you, then you answer me! + + + +“Where were you when I laid the foundations of the earth? + +Declare, if you have understanding. + + +Who determined its measures, if you know? + +Or who stretched the line on it? + + +What were its foundations fastened on? + +Or who laid its cornerstone, + + +when the morning stars sang together, + +and all the sons of God shouted for joy? + + + +Or who shut up the sea with doors, + +when it broke out of the womb, + + +when I made clouds its garment, + +and wrapped it in thick darkness, + + +marked out for it my bound, + +set bars and doors, + + +and said, ‘You may come here, but no further. + +Your proud waves shall be stopped here’? + + + +Have you commanded the morning in your days, + +and caused the dawn to know its place, + + +that it might take hold of the ends of the earth, + +and shake the wicked out of it? + + +It is changed as clay under the seal, + +and presented as a garment. + + +From the wicked, their light is withheld. + +The high arm is broken. + + + +Have you entered into the springs of the sea? + +Or have you walked in the recesses of the deep? + + +Have the gates of death been revealed to you? + +Or have you seen the gates of the shadow of death? + + +Have you comprehended the earth in its width? + +Declare, if you know it all. + + + +What is the way to the dwelling of light? + +As for darkness, where is its place, + + +that you should take it to its bound, + +that you should discern the paths to its house? + + +Surely you know, for you were born then, + +and the number of your days is great! + + +Have you entered the storehouses of the snow, + +or have you seen the storehouses of the hail, + + +which I have reserved against the time of trouble, + +against the day of battle and war? + + +By what way is the lightning distributed, + +or the east wind scattered on the earth? + + + +Who has cut a channel for the flood water, + +or the path for the thunderstorm, + + +to cause it to rain on a land where there is no man, + +on the wilderness, in which there is no man, + + +to satisfy the waste and desolate ground, + +to cause the tender grass to grow? + + +Does the rain have a father? + +Or who fathers the drops of dew? + + +Whose womb did the ice come out of? + +Who has given birth to the gray frost of the sky? + + +The waters become hard like stone, + +when the surface of the deep is frozen. + + + +“Can you bind the cluster of the Pleiades, + +or loosen the cords of Orion? + + +Can you lead the constellations out in their season? + +Or can you guide the Bear with her cubs? + + +Do you know the laws of the heavens? + +Can you establish its dominion over the earth? + + + +“Can you lift up your voice to the clouds, + +that abundance of waters may cover you? + + +Can you send out lightnings, that they may go? + +Do they report to you, ‘Here we are’? + + +Who has put wisdom in the inward parts? + +Or who has given understanding to the mind? + + +Who can count the clouds by wisdom? + +Or who can pour out the containers of the sky, + + +when the dust runs into a mass, + +and the clods of earth stick together? + + + +“Can you hunt the prey for the lioness, + +or satisfy the appetite of the young lions, + + +when they crouch in their dens, + +and lie in wait in the thicket? + + +Who provides for the raven his prey, + +when his young ones cry to God, + +and wander for lack of food? + + + + + +Do you know the time when the mountain goats give birth? + +Do you watch when the doe bears fawns? + + +Can you count the months that they fulfill? + +Or do you know the time when they give birth? + + +They bow themselves. They bear their young. + +They end their labor pains. + + +Their young ones become strong. + +They grow up in the open field. + +They go out, and don’t return again. + + + +Who has set the wild donkey free? + +Or who has loosened the bonds of the swift donkey, + + +whose home I have made the wilderness, + +and the salt land his dwelling place? + + +He scorns the tumult of the city, + +neither does he hear the shouting of the driver. + + +The range of the mountains is his pasture. + +He searches after every green thing. + + + +Will the wild ox be content to serve you? + +Or will he stay by your feeding trough? + + +Can you hold the wild ox in the furrow with his harness? + +Or will he till the valleys after you? + + +Will you trust him, because his strength is great? + +Or will you leave to him your labor? + + +Will you confide in him, that he will bring home your seed, + +and gather the grain of your threshing floor? + + + +“The wings of the ostrich wave proudly, + +but are they the feathers and plumage of love? + + +For she leaves her eggs on the earth, + +warms them in the dust, + + +and forgets that the foot may crush them, + +or that the wild animal may trample them. + + +She deals harshly with her young ones, as if they were not hers. + +Though her labor is in vain, she is without fear, + + +because God has deprived her of wisdom, + +neither has he imparted to her understanding. + + +When she lifts up herself on high, + +she scorns the horse and his rider. + + + +Have you given the horse might? + +Have you clothed his neck with a quivering mane? + + +Have you made him to leap as a locust? + +The glory of his snorting is awesome. + + +He paws in the valley, and rejoices in his strength. + +He goes out to meet the armed men. + + +He mocks at fear, and is not dismayed, + +neither does he turn back from the sword. + + +The quiver rattles against him, + +the flashing spear and the javelin. + + +He eats up the ground with fierceness and rage, + +neither does he stand still at the sound of the trumpet. + + +As often as the trumpet sounds he snorts, ‘Aha!’ + +He smells the battle afar off, + +the thunder of the captains, and the shouting. + + + +Is it by your wisdom that the hawk soars, + +and stretches her wings toward the south? + + +Is it at your command that the eagle mounts up, + +and makes his nest on high? + + +On the cliff he dwells and makes his home, + +on the point of the cliff and the stronghold. + + +From there he spies out the prey. + +His eyes see it afar off. + + +His young ones also suck up blood. + +Where the slain are, there he is.” + + + + + +

Moreover Yahweh answered Job, + +

+“Shall he who argues contend with the Almighty? + +He who argues with God, let him answer it.” + + + +

Then Job answered Yahweh, + +

+Behold, I am of small account. What will I answer you? + +I lay my hand on my mouth. + + +I have spoken once, and I will not answer; + +Yes, twice, but I will proceed no further.” + + + +

Then Yahweh answered Job out of the whirlwind: + +

+Now brace yourself like a man. + +I will question you, and you will answer me. + + +Will you even annul my judgment? + +Will you condemn me, that you may be justified? + + +Or do you have an arm like God? + +Can you thunder with a voice like him? + + + +Now deck yourself with excellency and dignity. + +Array yourself with honor and majesty. + + +Pour out the fury of your anger. + +Look at everyone who is proud, and bring him low. + + +Look at everyone who is proud, and humble him. + +Crush the wicked in their place. + + +Hide them in the dust together. + +Bind their faces in the hidden place. + + +Then I will also admit to you + +that your own right hand can save you. + + + +See now behemoth, which I made as well as you. + +He eats grass as an ox. + + +Look now, his strength is in his thighs. + +His force is in the muscles of his belly. + + +He moves his tail like a cedar. + +The sinews of his thighs are knit together. + + +His bones are like tubes of bronze. + +His limbs are like bars of iron. + + + +He is the chief of the ways of God. + +He who made him gives him his sword. + + +Surely the mountains produce food for him, + +where all the animals of the field play. + + +He lies under the lotus trees, + +in the covert of the reed, and the marsh. + + +The lotuses cover him with their shade. + +The willows of the brook surround him. + + +Behold, if a river overflows, he doesn’t tremble. + +He is confident, though the Jordan swells even to his mouth. + + +Shall any take him when he is on the watch, + +or pierce through his nose with a snare? + + + + + + +Can you draw out Leviathan41:1 +Leviathan is a name for a crocodile or similar creature. with a fish hook, + +or press down his tongue with a cord? + + +Can you put a rope into his nose, + +or pierce his jaw through with a hook? + + +Will he make many petitions to you, + +or will he speak soft words to you? + + +Will he make a covenant with you, + +that you should take him for a servant forever? + + +Will you play with him as with a bird? + +Or will you bind him for your girls? + + +Will traders barter for him? + +Will they part him among the merchants? + + +Can you fill his skin with barbed irons, + +or his head with fish spears? + + +Lay your hand on him. + +Remember the battle, and do so no more. + + +Behold, the hope of him is in vain. + +Won’t one be cast down even at the sight of him? + + + +None is so fierce that he dare stir him up. + +Who then is he who can stand before me? + + +Who has first given to me, that I should repay him? + +Everything under the heavens is mine. + + + +I will not keep silence concerning his limbs, + +nor his mighty strength, nor his goodly frame. + + +Who can strip off his outer garment? + +Who will come within his jaws? + + +Who can open the doors of his face? + +Around his teeth is terror. + + +Strong scales are his pride, + +shut up together with a close seal. + + + +One is so near to another, + +that no air can come between them. + + +They are joined to one another. + +They stick together, so that they can’t be pulled apart. + + +His sneezing flashes out light. + +His eyes are like the eyelids of the morning. + + +Out of his mouth go burning torches. + +Sparks of fire leap out. + + +Out of his nostrils a smoke goes, + +as of a boiling pot over a fire of reeds. + + +His breath kindles coals. + +A flame goes out of his mouth. + + +There is strength in his neck. + +Terror dances before him. + + +The flakes of his flesh are joined together. + +They are firm on him. + +They can’t be moved. + + +His heart is as firm as a stone, + +yes, firm as the lower millstone. + + +When he raises himself up, the mighty are afraid. + +They retreat before his thrashing. + + +If one attacks him with the sword, it can’t prevail; + +nor the spear, the dart, nor the pointed shaft. + + +He counts iron as straw, + +and bronze as rotten wood. + + +The arrow can’t make him flee. + +Sling stones are like chaff to him. + + +Clubs are counted as stubble. + +He laughs at the rushing of the javelin. + + +His undersides are like sharp potsherds, + +leaving a trail in the mud like a threshing sledge. + + +He makes the deep to boil like a pot. + +He makes the sea like a pot of ointment. + + +He makes a path shine after him. + +One would think the deep had white hair. + + +On earth there is not his equal, + +that is made without fear. + + +He sees everything that is high. + +He is king over all the sons of pride.” + + + + + +

Then Job answered Yahweh: + +

+I know that you can do all things, + +and that no purpose of yours can be restrained. + + +You asked, ‘Who is this who hides counsel without knowledge?’ + +therefore I have uttered that which I didn’t understand, + +things too wonderful for me, which I didn’t know. + + +You said, ‘Listen, now, and I will speak; + +I will question you, and you will answer me.’ + + +I had heard of you by the hearing of the ear, + +but now my eye sees you. + + +Therefore I abhor myself, + +and repent in dust and ashes.” + + + +

It was so, that after Yahweh had spoken these words to Job, Yahweh said to Eliphaz the Temanite, “My wrath is kindled against you, and against your two friends; for you have not spoken of me the thing that is right, as my servant Job has. + +Now therefore, take to yourselves seven bulls 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 I will accept him, that I not deal with you according to your folly. For you have not spoken of me the thing that is right, as my servant Job has.” + +

+

So Eliphaz the Temanite and Bildad the Shuhite and Zophar the Naamathite went and did what Yahweh commanded them, and Yahweh accepted Job. + +

+

Yahweh restored Job’s prosperity when he prayed for his friends. Yahweh gave Job twice as much as he had before. + +Then all his brothers, all his sisters, and all those who had been of his acquaintance before, came to him and ate bread with him in his house. They comforted him, and consoled him concerning all the evil that Yahweh had brought on him. Everyone also gave him a piece of money,42:11 +literally, kesitah, a unit of money, probably silver and everyone a ring of gold. + +

+

So Yahweh blessed the latter end of Job more than his beginning. He had fourteen thousand sheep, six thousand camels, one thousand yoke of oxen, and a thousand female donkeys. + +He had also seven sons and three daughters. + +He called the name of the first, Jemimah; and the name of the second, Keziah; and the name of the third, Keren Happuch. + +In all the land were no women found so beautiful as the daughters of Job. Their father gave them an inheritance among their brothers. + +After this Job lived one hundred forty years, and saw his sons, and his sonssons, to four generations. + +So Job died, being old and full of days. + +

+
+World English Bible (WEB) +Psalms +The Psalms +Psalms +Psa +

The Psalms +

+Psalm + + +

BOOK 1 +

+Blessed is the man who doesn’t walk in the counsel of the wicked, + +nor stand on the path of sinners, + +nor sit in the seat of scoffers; + + +but his delight is in Yahweh’s1:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. law. + +On his law he meditates day and night. + + +He will be like a tree planted by the streams of water, + +that produces its fruit in its season, + +whose leaf also does not wither. + +Whatever he does shall prosper. + + +The wicked are not so, + +but are like the chaff which the wind drives away. + + +Therefore the wicked shall not stand in the judgment, + +nor sinners in the congregation of the righteous. + + +For Yahweh knows the way of the righteous, + +but the way of the wicked shall perish. + + + + +Why do the nations rage, + +and the peoples plot a vain thing? + + +The kings of the earth take a stand, + +and the rulers take counsel together, + +against Yahweh, and against his Anointed,2:2 +The word “Anointed” is the same as the word for “Messiah” or “Christ” saying, + + +“Let’s break their bonds apart, + +and cast their cords from us.” + + +He who sits in the heavens will laugh. + +The Lord2:4 +The word translated “Lord” is “Adonai.” will have them in derision. + + +Then he will speak to them in his anger, + +and terrify them in his wrath: + + +Yet I have set my King on my holy hill of Zion.” + + +I will tell of the decree: + +Yahweh said to me, “You are my son. + +Today I have become your father. + + +Ask of me, and I will give the nations for your inheritance, + +the uttermost parts of the earth for your possession. + + +You shall break them with a rod of iron. + +You shall dash them in pieces like a potter’s vessel.” + + +Now therefore be wise, you kings. + +Be instructed, you judges of the earth. + + +Serve Yahweh with fear, + +and rejoice with trembling. + + +Give sincere homage to the Son,2:12 +or, Kiss the son lest he be angry, and you perish on the way, + +for his wrath will soon be kindled. + +Blessed are all those who take refuge in him. + + + + +A Psalm by David, when he fled from Absalom his son. + +Yahweh, how my adversaries have increased! + +Many are those who rise up against me. + + +Many there are who say of my soul, + +There is no help for him in God.”3:2 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). +Selah. + + +But you, Yahweh, are a shield around me, + +my glory, and the one who lifts up my head. + + +I cry to Yahweh with my voice, + +and he answers me out of his holy hill. +Selah. + + +I laid myself down and slept. + +I awakened, for Yahweh sustains me. + + +I will not be afraid of tens of thousands of people + +who have set themselves against me on every side. + + +Arise, Yahweh! + +Save me, my God! + +For you have struck all of my enemies on the cheek bone. + +You have broken the teeth of the wicked. + + +Salvation belongs to Yahweh. + +May your blessing be on your people. +Selah. + + + + +For the Chief Musician; on stringed instruments. A Psalm by David. + +Answer me when I call, God of my righteousness. + +Give me relief from my distress. + +Have mercy on me, and hear my prayer. + + +You sons of men, how long shall my glory be turned into dishonor? + +Will you love vanity and seek after falsehood? +Selah. + + +But know that Yahweh has set apart for himself him who is godly; + +Yahweh will hear when I call to him. + + +Stand in awe, and don’t sin. + +Search your own heart on your bed, and be still. +Selah. + + +Offer the sacrifices of righteousness. + +Put your trust in Yahweh. + + +Many say, “Who will show us any good?” + +Yahweh, let the light of your face shine on us. + + +You have put gladness in my heart, + +more than when their grain and their new wine are increased. + + +In peace I will both lay myself down and sleep, + +for you alone, Yahweh, make me live in safety. + + + + +For the Chief Musician, with the flutes. A Psalm by David. + +Give ear to my words, Yahweh. + +Consider my meditation. + + +Listen to the voice of my cry, my King and my God, + +for I pray to you. + + +Yahweh, in the morning you will hear my voice. + +In the morning I will lay my requests before you, and will watch expectantly. + + +For you are not a God who has pleasure in wickedness. + +Evil can’t live with you. + + +The arrogant will not stand in your sight. + +You hate all workers of iniquity. + + +You will destroy those who speak lies. + +Yahweh abhors the bloodthirsty and deceitful man. + + +But as for me, in the abundance of your loving kindness I will come into your house. + +I will bow toward your holy temple in reverence of you. + + +Lead me, Yahweh, in your righteousness because of my enemies. + +Make your way straight before my face. + + +For there is no faithfulness in their mouth. + +Their heart is destruction. + +Their throat is an open tomb. + +They flatter with their tongue. + + +Hold them guilty, God. + +Let them fall by their own counsels. + +Thrust them out in the multitude of their transgressions, + +for they have rebelled against you. + + +But let all those who take refuge in you rejoice. + +Let them always shout for joy, because you defend them. + +Let them also who love your name be joyful in you. + + +For you will bless the righteous. + +Yahweh, you will surround him with favor as with a shield. + + + + +For the Chief Musician; on stringed instruments, upon the eight-stringed lyre. A Psalm by David. + +Yahweh, don’t rebuke me in your anger, + +neither discipline me in your wrath. + + +Have mercy on me, Yahweh, for I am faint. + +Yahweh, heal me, for my bones are troubled. + + +My soul is also in great anguish. + +But you, Yahwehhow long? + + +Return, Yahweh. Deliver my soul, + +and save me for your loving kindness’ sake. + + +For in death there is no memory of you. + +In Sheol,6:5 +Sheol is the place of the dead. who shall give you thanks? + + +I am weary with my groaning. + +Every night I flood my bed. + +I drench my couch with my tears. + + +My eye wastes away because of grief. + +It grows old because of all my adversaries. + + +Depart from me, all you workers of iniquity, + +for Yahweh has heard the voice of my weeping. + + +Yahweh has heard my supplication. + +Yahweh accepts my prayer. + + +May all my enemies be ashamed and dismayed. + +They shall turn back, they shall be disgraced suddenly. + + + + +A meditation by David, which he sang to Yahweh, concerning the words of Cush, the Benjamite. + +Yahweh, my God, I take refuge in you. + +Save me from all those who pursue me, and deliver me, + + +lest they tear apart my soul like a lion, + +ripping it in pieces, while there is no one to deliver. + + +Yahweh, my God, if I have done this, + +if there is iniquity in my hands, + + +if I have rewarded evil to him who was at peace with me + +(yes, I have plundered him who without cause was my adversary), + + +let the enemy pursue my soul, and overtake it; + +yes, let him tread my life down to the earth, + +and lay my glory in the dust. +Selah. + + +Arise, Yahweh, in your anger. + +Lift up yourself against the rage of my adversaries. + +Awake for me. You have commanded judgment. + + +Let the congregation of the peoples surround you. + +Rule over them on high. + + +Yahweh administers judgment to the peoples. + +Judge me, Yahweh, according to my righteousness, + +and to my integrity that is in me. + + +Oh let the wickedness of the wicked come to an end, + +but establish the righteous; + +their minds and hearts are searched by the righteous God. + + +My shield is with God, + +who saves the upright in heart. + + +God is a righteous judge, + +yes, a God who has indignation every day. + + +If a man doesn’t repent, he will sharpen his sword; + +he has bent and strung his bow. + + +He has also prepared for himself the instruments of death. + +He makes ready his flaming arrows. + + +Behold,7:14 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. he travails with iniquity. + +Yes, he has conceived mischief, + +and brought out falsehood. + + +He has dug a hole, + +and has fallen into the pit which he made. + + +The trouble he causes shall return to his own head. + +His violence shall come down on the crown of his own head. + + +I will give thanks to Yahweh according to his righteousness, + +and will sing praise to the name of Yahweh Most High. + + + + +For the Chief Musician; on an instrument of Gath. A Psalm by David. + +Yahweh, our Lord, how majestic is your name in all the earth! + +You have set your glory above the heavens! + + +From the lips of babes and infants you have established strength, + +because of your adversaries, that you might silence the enemy and the avenger. + + +When I consider your heavens, the work of your fingers, + +the moon and the stars, which you have ordained, + + +what is man, that you think of him? + +What is the son of man, that you care for him? + + +For you have made him a little lower than the angels,8:5 +Hebrew: Elohim. The word Elohim, used here, usually means “God”, but can also mean “gods”, “princes”, or “angels”. The Septuagint reads “angels” here. See also the quote from the Septuagint in Hebrews 2:7. + +and crowned him with glory and honor. + + +You make him ruler over the works of your hands. + +You have put all things under his feet: + + +All sheep and cattle, + +yes, and the animals of the field, + + +the birds of the sky, the fish of the sea, + +and whatever passes through the paths of the seas. + + +Yahweh, our Lord, + +how majestic is your name in all the earth! + + + + +For the Chief Musician. Set to “The Death of the Son.” A Psalm by David. + +I will give thanks to Yahweh with my whole heart. + +I will tell of all your marvelous works. + + +I will be glad and rejoice in you. + +I will sing praise to your name, O Most High. + + +When my enemies turn back, + +they stumble and perish in your presence. + + +For you have maintained my just cause. + +You sit on the throne judging righteously. + + +You have rebuked the nations. + +You have destroyed the wicked. + +You have blotted out their name forever and ever. + + +The enemy is overtaken by endless ruin. + +The very memory of the cities which you have overthrown has perished. + + +But Yahweh reigns forever. + +He has prepared his throne for judgment. + + +He will judge the world in righteousness. + +He will administer judgment to the peoples in uprightness. + + +Yahweh will also be a high tower for the oppressed; + +a high tower in times of trouble. + + +Those who know your name will put their trust in you, + +for you, Yahweh, have not forsaken those who seek you. + + +Sing praises to Yahweh, who dwells in Zion, + +and declare among the people what he has done. + + +For he who avenges blood remembers them. + +He doesn’t forget the cry of the afflicted. + + +Have mercy on me, Yahweh. + +See my affliction by those who hate me, + +and lift me up from the gates of death, + + +that I may show all of your praise. + +I will rejoice in your salvation in the gates of the daughter of Zion. + + +The nations have sunk down in the pit that they made. + +In the net which they hid, their own foot is taken. + + +Yahweh has made himself known. + +He has executed judgment. + +The wicked is snared by the work of his own hands. +Meditation. Selah. + + +The wicked shall be turned back to Sheol,9:17 +Sheol is the place of the dead. + +even all the nations that forget God. + + +For the needy shall not always be forgotten, + +nor the hope of the poor perish forever. + + +Arise, Yahweh! Don’t let man prevail. + +Let the nations be judged in your sight. + + +Put them in fear, Yahweh. + +Let the nations know that they are only men. +Selah. + + + + +Why do you stand far off, Yahweh? + +Why do you hide yourself in times of trouble? + + +In arrogance, the wicked hunt down the weak. + +They are caught in the schemes that they devise. + + +For the wicked boasts of his heart’s cravings. + +He blesses the greedy and condemns Yahweh. + + +The wicked, in the pride of his face, + +has no room in his thoughts for God. + + +His ways are prosperous at all times. + +He is arrogant, and your laws are far from his sight. + +As for all his adversaries, he sneers at them. + + +He says in his heart, “I shall not be shaken. + +For generations I shall have no trouble.” + + +His mouth is full of cursing, deceit, and oppression. + +Under his tongue is mischief and iniquity. + + +He lies in wait near the villages. + +From ambushes, he murders the innocent. + +His eyes are secretly set against the helpless. + + +He lurks in secret as a lion in his ambush. + +He lies in wait to catch the helpless. + +He catches the helpless when he draws him in his net. + + +The helpless are crushed. + +They collapse. + +They fall under his strength. + + +He says in his heart, “God has forgotten. + +He hides his face. + +He will never see it.” + + + +Arise, Yahweh! + +God, lift up your hand! + +Don’t forget the helpless. + + +Why does the wicked person condemn God, + +and say in his heart, “God won’t call me into account”? + + +But you do see trouble and grief. + +You consider it to take it into your hand. + +You help the victim and the fatherless. + + +Break the arm of the wicked. + +As for the evil man, seek out his wickedness until you find none. + + +Yahweh is King forever and ever! + +The nations will perish out of his land. + + +Yahweh, you have heard the desire of the humble. + +You will prepare their heart. + +You will cause your ear to hear, + + +to judge the fatherless and the oppressed, + +that man who is of the earth may terrify no more. + + + + +For the Chief Musician. By David. + +In Yahweh, I take refuge. + +How can you say to my soul, “Flee as a bird to your mountain”? + + +For, behold, the wicked bend their bows. + +They set their arrows on the strings, + +that they may shoot in darkness at the upright in heart. + + +If the foundations are destroyed, + +what can the righteous do? + + +Yahweh is in his holy temple. + +Yahweh is on his throne in heaven. + +His eyes observe. + +His eyes examine the children of men. + + +Yahweh examines the righteous, + +but his soul hates the wicked and him who loves violence. + + +On the wicked he will rain blazing coals; + +fire, sulfur, and scorching wind shall be the portion of their cup. + + +For Yahweh is righteous. + +He loves righteousness. + +The upright shall see his face. + + + + +For the Chief Musician; upon an eight-stringed lyre. A Psalm of David. + +Help, Yahweh; for the godly man ceases. + +For the faithful fail from among the children of men. + + +Everyone lies to his neighbor. + +They speak with flattering lips, and with a double heart. + + +May Yahweh cut off all flattering lips, + +and the tongue that boasts, + + +who have said, “With our tongue we will prevail. + +Our lips are our own. + +Who is lord over us?” + + +“Because of the oppression of the weak and because of the groaning of the needy, + +I will now arise,” says Yahweh; + +“I will set him in safety from those who malign him.” + + +Yahweh’s words are flawless words, + +as silver refined in a clay furnace, purified seven times. + + +You will keep them, Yahweh. + +You will preserve them from this generation forever. + + +The wicked walk on every side, + +when what is vile is exalted among the sons of men. + + + + +For the Chief Musician. A Psalm by David. + +How long, Yahweh? + +Will you forget me forever? + +How long will you hide your face from me? + + +How long shall I take counsel in my soul, + +having sorrow in my heart every day? + +How long shall my enemy triumph over me? + + +Behold, and answer me, Yahweh, my God. + +Give light to my eyes, lest I sleep in death; + + +lest my enemy say, “I have prevailed against him;” + +lest my adversaries rejoice when I fall. + + + +But I trust in your loving kindness. + +My heart rejoices in your salvation. + + +I will sing to Yahweh, + +because he has been good to me. + + + + +For the Chief Musician. By David. + +The fool has said in his heart, “There is no God.” + +They are corrupt. + +They have done abominable deeds. + +There is no one who does good. + + +Yahweh looked down from heaven on the children of men, + +to see if there were any who understood, + +who sought after God. + + +They have all gone aside. + +They have together become corrupt. + +There is no one who does good, no, not one. + + +Have all the workers of iniquity no knowledge, + +who eat up my people as they eat bread, + +and don’t call on Yahweh? + + +There they were in great fear, + +for God is in the generation of the righteous. + + +You frustrate the plan of the poor, + +because Yahweh is his refuge. + + +Oh that the salvation of Israel would come out of Zion! + +When Yahweh restores the fortunes of his people, + +then Jacob shall rejoice, and Israel shall be glad. + + + + +A Psalm by David. + +Yahweh, who shall dwell in your sanctuary? + +Who shall live on your holy hill? + + +He who walks blamelessly and does what is right, + +and speaks truth in his heart; + + +he who doesn’t slander with his tongue, + +nor does evil to his friend, + +nor casts slurs against his fellow man; + + +in whose eyes a vile man is despised, + +but who honors those who fear Yahweh; + +he who keeps an oath even when it hurts, and doesn’t change; + + +he who doesn’t lend out his money for usury, + +nor take a bribe against the innocent. + + +He who does these things shall never be shaken. + + + + +A Poem by David. + +Preserve me, God, for I take refuge in you. + + +My soul, you have said to Yahweh, “You are my Lord. + +Apart from you I have no good thing.” + + +As for the saints who are on the earth, + +they are the excellent ones in whom is all my delight. + + + +Their sorrows shall be multiplied who give gifts to another god. + +Their drink offerings of blood I will not offer, + +nor take their names on my lips. + + +Yahweh assigned my portion and my cup. + +You made my lot secure. + + + +The lines have fallen to me in pleasant places. + +Yes, I have a good inheritance. + + +I will bless Yahweh, who has given me counsel. + +Yes, my heart instructs me in the night seasons. + + +I have set Yahweh always before me. + +Because he is at my right hand, I shall not be moved. + + +Therefore my heart is glad, and my tongue rejoices. + +My body shall also dwell in safety. + + +For you will not leave my soul in Sheol,16:10 +Sheol is the place of the dead. + +neither will you allow your holy one to see corruption. + + +You will show me the path of life. + +In your presence is fullness of joy. + +In your right hand there are pleasures forever more. + + + + +A Prayer by David. + +Hear, Yahweh, my righteous plea. + +Give ear to my prayer that doesn’t go out of deceitful lips. + + +Let my sentence come out of your presence. + +Let your eyes look on equity. + + +You have proved my heart. + +You have visited me in the night. + +You have tried me, and found nothing. + +I have resolved that my mouth shall not disobey. + + +As for the deeds of men, by the word of your lips, + +I have kept myself from the ways of the violent. + + +My steps have held fast to your paths. + +My feet have not slipped. + + +I have called on you, for you will answer me, God. + +Turn your ear to me. + +Hear my speech. + + +Show your marvelous loving kindness, + +you who save those who take refuge by your right hand from their enemies. + + +Keep me as the apple of your eye. + +Hide me under the shadow of your wings, + + +from the wicked who oppress me, + +my deadly enemies, who surround me. + + +They close up their callous hearts. + +With their mouth they speak proudly. + + +They have now surrounded us in our steps. + +They set their eyes to cast us down to the earth. + + +He is like a lion that is greedy of his prey, + +as it were a young lion lurking in secret places. + + +Arise, Yahweh, confront him. + +Cast him down. + +Deliver my soul from the wicked by your sword, + + +from men by your hand, Yahweh, + +from men of the world, whose portion is in this life. + +You fill the belly of your cherished ones. + +Your sons have plenty, + +and they store up wealth for their children. + + +As for me, I shall see your face in righteousness. + +I shall be satisfied, when I awake, with seeing your form. + + + + +For the Chief Musician. By David the servant of Yahweh, who spoke to Yahweh the words of this song in the day that Yahweh delivered him from the hand of all his enemies, and from the hand of Saul. He said, + +I love you, Yahweh, my strength. + + +Yahweh is my rock, my fortress, and my deliverer; + +my God, my rock, in whom I take refuge; + +my shield, and the horn of my salvation, my high tower. + + +I call on Yahweh, who is worthy to be praised; + +and I am saved from my enemies. + + +The cords of death surrounded me. + +The floods of ungodliness made me afraid. + + +The cords of Sheol18:5 +Sheol is the place of the dead. were around me. + +The snares of death came on me. + + +In my distress I called on Yahweh, + +and cried to my God. + +He heard my voice out of his temple. + +My cry before him came into his ears. + + +Then the earth shook and trembled. + +The foundations also of the mountains quaked and were shaken, + +because he was angry. + + +Smoke went out of his nostrils. + +Consuming fire came out of his mouth. + +Coals were kindled by it. + + +He bowed the heavens also, and came down. + +Thick darkness was under his feet. + + +He rode on a cherub, and flew. + +Yes, he soared on the wings of the wind. + + +He made darkness his hiding place, his pavilion around him, + +darkness of waters, thick clouds of the skies. + + +At the brightness before him his thick clouds passed, + +hailstones and coals of fire. + + +Yahweh also thundered in the sky. + +The Most High uttered his voice: + +hailstones and coals of fire. + + +He sent out his arrows, and scattered them. + +He routed them with great lightning bolts. + + +Then the channels of waters appeared. + +The foundations of the world were laid bare at your rebuke, Yahweh, + +at the blast of the breath of your nostrils. + + +He sent from on high. + +He took me. + +He drew me out of many waters. + + +He delivered me from my strong enemy, + +from those who hated me; for they were too mighty for me. + + +They came on me in the day of my calamity, + +but Yahweh was my support. + + +He brought me out also into a large place. + +He delivered me, because he delighted in me. + + +Yahweh has rewarded me according to my righteousness. + +According to the cleanness of my hands, he has recompensed me. + + +For I have kept the ways of Yahweh, + +and have not wickedly departed from my God. + + +For all his ordinances were before me. + +I didn’t put away his statutes from me. + + +I was also blameless with him. + +I kept myself from my iniquity. + + +Therefore Yahweh has rewarded me according to my righteousness, + +according to the cleanness of my hands in his eyesight. + + +With the merciful you will show yourself merciful. + +With the perfect man, you will show yourself perfect. + + +With the pure, you will show yourself pure. + +With the crooked you will show yourself shrewd. + + +For you will save the afflicted people, + +but the arrogant eyes you will bring down. + + +For you will light my lamp, Yahweh. + +My God will light up my darkness. + + +For by you, I advance through a troop. + +By my God, I leap over a wall. + + +As for God, his way is perfect. + +Yahweh’s word is tried. + +He is a shield to all those who take refuge in him. + + +For who is God, except Yahweh? + +Who is a rock, besides our God, + + +the God who arms me with strength, and makes my way perfect? + + +He makes my feet like deer’s feet, + +and sets me on my high places. + + +He teaches my hands to war, + +so that my arms bend a bow of bronze. + + +You have also given me the shield of your salvation. + +Your right hand sustains me. + +Your gentleness has made me great. + + +You have enlarged my steps under me, + +My feet have not slipped. + + +I will pursue my enemies, and overtake them. + +I won’t turn away until they are consumed. + + +I will strike them through, so that they will not be able to rise. + +They shall fall under my feet. + + +For you have armed me with strength to the battle. + +You have subdued under me those who rose up against me. + + +You have also made my enemies turn their backs to me, + +that I might cut off those who hate me. + + +They cried, but there was no one to save; + +even to Yahweh, but he didn’t answer them. + + +Then I beat them small as the dust before the wind. + +I cast them out as the mire of the streets. + + +You have delivered me from the strivings of the people. + +You have made me the head of the nations. + +A people whom I have not known shall serve me. + + +As soon as they hear of me they shall obey me. + +The foreigners shall submit themselves to me. + + +The foreigners shall fade away, + +and shall come trembling out of their strongholds. + + +Yahweh lives! Blessed be my rock. + +Exalted be the God of my salvation, + + +even the God who executes vengeance for me, + +and subdues peoples under me. + + +He rescues me from my enemies. + +Yes, you lift me up above those who rise up against me. + +You deliver me from the violent man. + + +Therefore I will give thanks to you, Yahweh, among the nations, + +and will sing praises to your name. + + +He gives great deliverance to his king, + +and shows loving kindness to his anointed, + +to David and to his offspring,18:50 +or, seed forever more. + + + + +For the Chief Musician. A Psalm by David. + +The heavens declare the glory of God. + +The expanse shows his handiwork. + + +Day after day they pour out speech, + +and night after night they display knowledge. + + +There is no speech nor language + +where their voice is not heard. + + +Their voice has gone out through all the earth, + +their words to the end of the world. + +In them he has set a tent for the sun, + + +which is as a bridegroom coming out of his room, + +like a strong man rejoicing to run his course. + + +His going out is from the end of the heavens, + +his circuit to its ends. + +There is nothing hidden from its heat. + + + +Yahweh’s law is perfect, restoring the soul. + +Yahweh’s covenant is sure, making wise the simple. + + +Yahweh’s precepts are right, rejoicing the heart. + +Yahweh’s commandment is pure, enlightening the eyes. + + +The fear of Yahweh is clean, enduring forever. + +Yahweh’s ordinances are true, and righteous altogether. + + +They are more to be desired than gold, yes, than much fine gold, + +sweeter also than honey and the extract of the honeycomb. + + +Moreover your servant is warned by them. + +In keeping them there is great reward. + + +Who can discern his errors? + +Forgive me from hidden errors. + + + +Keep back your servant also from presumptuous sins. + +Let them not have dominion over me. + +Then I will be upright. + +I will be blameless and innocent of great transgression. + + +Let the words of my mouth and the meditation of my heart + +be acceptable in your sight, + +Yahweh, my rock, and my redeemer. + + + + +For the Chief Musician. A Psalm by David. + +May Yahweh answer you in the day of trouble. + +May the name of the God of Jacob set you up on high, + + +send you help from the sanctuary, + +grant you support from Zion, + + +remember all your offerings, + +and accept your burned sacrifice. +Selah. + + +May he grant you your heart’s desire, + +and fulfill all your counsel. + + +We will triumph in your salvation. + +In the name of our God, we will set up our banners. + +May Yahweh grant all your requests. + + +Now I know that Yahweh saves his anointed. + +He will answer him from his holy heaven, + +with the saving strength of his right hand. + + +Some trust in chariots, and some in horses, + +but we trust in the name of Yahweh our God. + + +They are bowed down and fallen, + +but we rise up, and stand upright. + + +Save, Yahweh! + +Let the King answer us when we call! + + + + +For the Chief Musician. A Psalm by David. + +The king rejoices in your strength, Yahweh! + +How greatly he rejoices in your salvation! + + +You have given him his heart’s desire, + +and have not withheld the request of his lips. +Selah. + + +For you meet him with the blessings of goodness. + +You set a crown of fine gold on his head. + + +He asked life of you and you gave it to him, + +even length of days forever and ever. + + +His glory is great in your salvation. + +You lay honor and majesty on him. + + +For you make him most blessed forever. + +You make him glad with joy in your presence. + + +For the king trusts in Yahweh. + +Through the loving kindness of the Most High, he shall not be moved. + + +Your hand will find out all of your enemies. + +Your right hand will find out those who hate you. + + +You will make them as a fiery furnace in the time of your anger. + +Yahweh will swallow them up in his wrath. + +The fire shall devour them. + + +You will destroy their descendants from the earth, + +their posterity from among the children of men. + + +For they intended evil against you. + +They plotted evil against you which cannot succeed. + + +For you will make them turn their back, + +when you aim drawn bows at their face. + + +Be exalted, Yahweh, in your strength, + +so we will sing and praise your power. + + + + +For the Chief Musician; set to “The Doe of the Morning.” A Psalm by David. + +My God, my God, why have you forsaken me? + +Why are you so far from helping me, and from the words of my groaning? + + +My God, I cry in the daytime, but you don’t answer; + +in the night season, and am not silent. + + +But you are holy, + +you who inhabit the praises of Israel. + + +Our fathers trusted in you. + +They trusted, and you delivered them. + + +They cried to you, and were delivered. + +They trusted in you, and were not disappointed. + + +But I am a worm, and no man; + +a reproach of men, and despised by the people. + + +All those who see me mock me. + +They insult me with their lips. They shake their heads, saying, + + +He trusts in Yahweh. + +Let him deliver him. + +Let him rescue him, since he delights in him.” + + +But you brought me out of the womb. + +You made me trust while at my mother’s breasts. + + +I was thrown on you from my mother’s womb. + +You are my God since my mother bore me. + + +Don’t be far from me, for trouble is near. + +For there is no one to help. + + +Many bulls have surrounded me. + +Strong bulls of Bashan have encircled me. + + +They open their mouths wide against me, + +lions tearing prey and roaring. + + +I am poured out like water. + +All my bones are out of joint. + +My heart is like wax. + +It is melted within me. + + +My strength is dried up like a potsherd. + +My tongue sticks to the roof of my mouth. + +You have brought me into the dust of death. + + +For dogs have surrounded me. + +A company of evildoers have enclosed me. + +They have pierced my hands and feet.22:16 +So Dead Sea Scrolls. Masoretic Text reads, “Like a lion, they pin my hands and feet.” + + +I can count all of my bones. + +They look and stare at me. + + +They divide my garments among them. + +They cast lots for my clothing. + + + +But don’t be far off, Yahweh. + +You are my help. Hurry to help me! + + +Deliver my soul from the sword, + +my precious life from the power of the dog. + + +Save me from the lion’s mouth! + +Yes, you have rescued me from the horns of the wild oxen. + + + +I will declare your name to my brothers. + +Among the assembly, I will praise you. + + +You who fear Yahweh, praise him! + +All you descendants of Jacob, glorify him! + +Stand in awe of him, all you descendants of Israel! + + +For he has not despised nor abhorred the affliction of the afflicted, + +neither has he hidden his face from him; + +but when he cried to him, he heard. + + + +My praise of you comes in the great assembly. + +I will pay my vows before those who fear him. + + +The humble shall eat and be satisfied. + +They shall praise Yahweh who seek after him. + +Let your hearts live forever. + + +All the ends of the earth shall remember and turn to Yahweh. + +All the relatives of the nations shall worship before you. + + +For the kingdom is Yahweh’s. + +He is the ruler over the nations. + + +All the rich ones of the earth shall eat and worship. + +All those who go down to the dust shall bow before him, + +even he who can’t keep his soul alive. + + +Posterity shall serve him. + +Future generations shall be told about the Lord. + + +They shall come and shall declare his righteousness to a people that shall be born, + +for he has done it. + + + + +A Psalm by David. + +Yahweh is my shepherd; + +I shall lack nothing. + + +He makes me lie down in green pastures. + +He leads me beside still waters. + + +He restores my soul. + +He guides me in the paths of righteousness for his name’s sake. + + +Even though I walk through the valley of the shadow of death, + +I will fear no evil, for you are with me. + +Your rod and your staff, + +they comfort me. + + +You prepare a table before me + +in the presence of my enemies. + +You anoint my head with oil. + +My cup runs over. + + +Surely goodness and loving kindness shall follow me all the days of my life, + +and I will dwell in Yahweh’s house forever. + + + + +A Psalm by David. + +The earth is Yahweh’s, with its fullness; + +the world, and those who dwell in it. + + +For he has founded it on the seas, + +and established it on the floods. + + + +Who may ascend to Yahweh’s hill? + +Who may stand in his holy place? + + +He who has clean hands and a pure heart; + +who has not lifted up his soul to falsehood, + +and has not sworn deceitfully. + + +He shall receive a blessing from Yahweh, + +righteousness from the God of his salvation. + + +This is the generation of those who seek Him, + +who seek your face—even Jacob. +Selah. + + + +Lift up your heads, you gates! + +Be lifted up, you everlasting doors, + +and the King of glory will come in. + + +Who is the King of glory? + +Yahweh strong and mighty, + +Yahweh mighty in battle. + + +Lift up your heads, you gates; + +yes, lift them up, you everlasting doors, + +and the King of glory will come in. + + +Who is this King of glory? + +Yahweh of Armies is the King of glory! +Selah. + + + + +By David. + +To you, Yahweh, I lift up my soul. + + +My God, I have trusted in you. + +Don’t let me be shamed. + +Don’t let my enemies triumph over me. + + +Yes, no one who waits for you will be shamed. + +They will be shamed who deal treacherously without cause. + + + +Show me your ways, Yahweh. + +Teach me your paths. + + +Guide me in your truth, and teach me, + +for you are the God of my salvation. + +I wait for you all day long. + + +Yahweh, remember your tender mercies and your loving kindness, + +for they are from old times. + + +Don’t remember the sins of my youth, nor my transgressions. + +Remember me according to your loving kindness, + +for your goodnesssake, Yahweh. + + +Good and upright is Yahweh, + +therefore he will instruct sinners in the way. + + +He will guide the humble in justice. + +He will teach the humble his way. + + +All the paths of Yahweh are loving kindness and truth + +to such as keep his covenant and his testimonies. + + +For your name’s sake, Yahweh, + +pardon my iniquity, for it is great. + + +What man is he who fears Yahweh? + +He shall instruct him in the way that he shall choose. + + +His soul will dwell at ease. + +His offspring will inherit the land. + + +The friendship of Yahweh is with those who fear him. + +He will show them his covenant. + + + +My eyes are ever on Yahweh, + +for he will pluck my feet out of the net. + + +Turn to me, and have mercy on me, + +for I am desolate and afflicted. + + +The troubles of my heart are enlarged. + +Oh bring me out of my distresses. + + +Consider my affliction and my travail. + +Forgive all my sins. + + +Consider my enemies, for they are many. + +They hate me with cruel hatred. + + +Oh keep my soul, and deliver me. + +Let me not be disappointed, for I take refuge in you. + + +Let integrity and uprightness preserve me, + +for I wait for you. + + +God, redeem Israel + +out of all his troubles. + + + + +By David. + +Judge me, Yahweh, for I have walked in my integrity. + +I have trusted also in Yahweh without wavering. + + +Examine me, Yahweh, and prove me. + +Try my heart and my mind. + + +For your loving kindness is before my eyes. + +I have walked in your truth. + + +I have not sat with deceitful men, + +neither will I go in with hypocrites. + + +I hate the assembly of evildoers, + +and will not sit with the wicked. + + +I will wash my hands in innocence, + +so I will go about your altar, Yahweh, + + +that I may make the voice of thanksgiving to be heard + +and tell of all your wondrous deeds. + + +Yahweh, I love the habitation of your house, + +the place where your glory dwells. + + +Don’t gather my soul with sinners, + +nor my life with bloodthirsty men + + +in whose hands is wickedness; + +their right hand is full of bribes. + + + +But as for me, I will walk in my integrity. + +Redeem me, and be merciful to me. + + +My foot stands in an even place. + +In the congregations I will bless Yahweh. + + + + +By David. + +Yahweh is my light and my salvation. + +Whom shall I fear? + +Yahweh is the strength of my life. + +Of whom shall I be afraid? + + +When evildoers came at me to eat up my flesh, + +even my adversaries and my foes, they stumbled and fell. + + +Though an army should encamp against me, + +my heart shall not fear. + +Though war should rise against me, + +even then I will be confident. + + +One thing I have asked of Yahweh, that I will seek after: + +that I may dwell in Yahweh’s house all the days of my life, + +to see Yahweh’s beauty, + +and to inquire in his temple. + + +For in the day of trouble, he will keep me secretly in his pavilion. + +In the secret place of his tabernacle, he will hide me. + +He will lift me up on a rock. + + +Now my head will be lifted up above my enemies around me. + +I will offer sacrifices of joy in his tent. + +I will sing, yes, I will sing praises to Yahweh. + + + +Hear, Yahweh, when I cry with my voice. + +Have mercy also on me, and answer me. + + +When you said, “Seek my face,” + +my heart said to you, “I will seek your face, Yahweh.” + + +Don’t hide your face from me. + +Don’t put your servant away in anger. + +You have been my help. + +Don’t abandon me, + +neither forsake me, God of my salvation. + + +When my father and my mother forsake me, + +then Yahweh will take me up. + + +Teach me your way, Yahweh. + +Lead me in a straight path, because of my enemies. + + +Don’t deliver me over to the desire of my adversaries, + +for false witnesses have risen up against me, + +such as breathe out cruelty. + + +I am still confident of this: + +I will see the goodness of Yahweh in the land of the living. + + +Wait for Yahweh. + +Be strong, and let your heart take courage. + +Yes, wait for Yahweh. + + + + +By David. + +To you, Yahweh, I call. + +My rock, don’t be deaf to me, + +lest, if you are silent to me, + +I would become like those who go down into the pit. + + +Hear the voice of my petitions, when I cry to you, + +when I lift up my hands toward your Most Holy Place. + + +Don’t draw me away with the wicked, + +with the workers of iniquity who speak peace with their neighbors, + +but mischief is in their hearts. + + +Give them according to their work, and according to the wickedness of their doings. + +Give them according to the operation of their hands. + +Bring back on them what they deserve. + + +Because they don’t respect the works of Yahweh, + +nor the operation of his hands, + +he will break them down and not build them up. + + + +Blessed be Yahweh, + +because he has heard the voice of my petitions. + + +Yahweh is my strength and my shield. + +My heart has trusted in him, and I am helped. + +Therefore my heart greatly rejoices. + +With my song I will thank him. + + +Yahweh is their strength. + +He is a stronghold of salvation to his anointed. + + +Save your people, + +and bless your inheritance. + +Be their shepherd also, + +and bear them up forever. + + + + +A Psalm by David. + +Ascribe to Yahweh, you sons of the mighty, + +ascribe to Yahweh glory and strength. + + +Ascribe to Yahweh the glory due to his name. + +Worship Yahweh in holy array. + + + +Yahweh’s voice is on the waters. + +The God of glory thunders, even Yahweh on many waters. + + +Yahweh’s voice is powerful. + +Yahweh’s voice is full of majesty. + + +Yahweh’s voice breaks the cedars. + +Yes, Yahweh breaks in pieces the cedars of Lebanon. + + +He makes them also to skip like a calf; + +Lebanon and Sirion like a young, wild ox. + + +Yahweh’s voice strikes with flashes of lightning. + + +Yahweh’s voice shakes the wilderness. + +Yahweh shakes the wilderness of Kadesh. + + +Yahweh’s voice makes the deer calve, + +and strips the forests bare. + +In his temple everything says, “Glory!” + + + +Yahweh sat enthroned at the Flood. + +Yes, Yahweh sits as King forever. + + +Yahweh will give strength to his people. + +Yahweh will bless his people with peace. + + + + +A Psalm. A Song for the Dedication of the Temple. By David. + +I will extol you, Yahweh, for you have raised me up, + +and have not made my foes to rejoice over me. + + +Yahweh my God, I cried to you, + +and you have healed me. + + +Yahweh, you have brought up my soul from Sheol.30:3 +Sheol is the place of the dead. + +You have kept me alive, that I should not go down to the pit. + + +Sing praise to Yahweh, you saints of his. + +Give thanks to his holy name. + + +For his anger is but for a moment. + +His favor is for a lifetime. + +Weeping may stay for the night, + +but joy comes in the morning. + + +As for me, I said in my prosperity, + +I shall never be moved.” + + +You, Yahweh, when you favored me, made my mountain stand strong; + +but when you hid your face, I was troubled. + + +I cried to you, Yahweh. + +I made supplication to the Lord: + + +“What profit is there in my destruction, if I go down to the pit? + +Shall the dust praise you? + +Shall it declare your truth? + + +Hear, Yahweh, and have mercy on me. + +Yahweh, be my helper.” + + +You have turned my mourning into dancing for me. + +You have removed my sackcloth, and clothed me with gladness, + + +to the end that my heart may sing praise to you, and not be silent. + +Yahweh my God, I will give thanks to you forever! + + + + +For the Chief Musician. A Psalm by David. + +In you, Yahweh, I take refuge. + +Let me never be disappointed. + +Deliver me in your righteousness. + + +Bow down your ear to me. + +Deliver me speedily. + +Be to me a strong rock, + +a house of defense to save me. + + +For you are my rock and my fortress, + +therefore for your name’s sake lead me and guide me. + + +Pluck me out of the net that they have laid secretly for me, + +for you are my stronghold. + + +Into your hand I commend my spirit. + +You redeem me, Yahweh, God of truth. + + +I hate those who regard lying vanities, + +but I trust in Yahweh. + + +I will be glad and rejoice in your loving kindness, + +for you have seen my affliction. + +You have known my soul in adversities. + + +You have not shut me up into the hand of the enemy. + +You have set my feet in a large place. + + +Have mercy on me, Yahweh, for I am in distress. + +My eye, my soul, and my body waste away with grief. + + +For my life is spent with sorrow, + +my years with sighing. + +My strength fails because of my iniquity. + +My bones are wasted away. + + +Because of all my adversaries I have become utterly contemptible to my neighbors, + +a horror to my acquaintances. + +Those who saw me on the street fled from me. + + +I am forgotten from their hearts like a dead man. + +I am like broken pottery. + + +For I have heard the slander of many, terror on every side, + +while they conspire together against me, + +they plot to take away my life. + + +But I trust in you, Yahweh. + +I said, “You are my God.” + + +My times are in your hand. + +Deliver me from the hand of my enemies, and from those who persecute me. + + +Make your face to shine on your servant. + +Save me in your loving kindness. + + +Let me not be disappointed, Yahweh, for I have called on you. + +Let the wicked be disappointed. + +Let them be silent in Sheol.31:17 +Sheol is the place of the dead. + + +Let the lying lips be mute, + +which speak against the righteous insolently, with pride and contempt. + + +Oh how great is your goodness, + +which you have laid up for those who fear you, + +which you have worked for those who take refuge in you, + +before the sons of men! + + +In the shelter of your presence you will hide them from the plotting of man. + +You will keep them secretly in a dwelling away from the strife of tongues. + + +Praise be to Yahweh, + +for he has shown me his marvelous loving kindness in a strong city. + + +As for me, I said in my haste, “I am cut off from before your eyes.” + +Nevertheless you heard the voice of my petitions when I cried to you. + + +Oh love Yahweh, all you his saints! + +Yahweh preserves the faithful, + +and fully recompenses him who behaves arrogantly. + + +Be strong, and let your heart take courage, + +all you who hope in Yahweh. + + + + +By David. A contemplative psalm. + +Blessed is he whose disobedience is forgiven, + +whose sin is covered. + + +Blessed is the man to whom Yahweh doesn’t impute iniquity, + +in whose spirit there is no deceit. + + +When I kept silence, my bones wasted away through my groaning all day long. + + +For day and night your hand was heavy on me. + +My strength was sapped in the heat of summer. +Selah. + + +I acknowledged my sin to you. + +I didn’t hide my iniquity. + +I said, I will confess my transgressions to Yahweh, + +and you forgave the iniquity of my sin. +Selah. + + +For this, let everyone who is godly pray to you in a time when you may be found. + +Surely when the great waters overflow, they shall not reach to him. + + +You are my hiding place. + +You will preserve me from trouble. + +You will surround me with songs of deliverance. +Selah. + + +I will instruct you and teach you in the way which you shall go. + +I will counsel you with my eye on you. + + +Don’t be like the horse, or like the mule, which have no understanding, + +who are controlled by bit and bridle, or else they will not come near to you. + + +Many sorrows come to the wicked, + +but loving kindness shall surround him who trusts in Yahweh. + + +Be glad in Yahweh, and rejoice, you righteous! + +Shout for joy, all you who are upright in heart! + + + + +Rejoice in Yahweh, you righteous! + +Praise is fitting for the upright. + + +Give thanks to Yahweh with the lyre. + +Sing praises to him with the harp of ten strings. + + +Sing to him a new song. + +Play skillfully with a shout of joy! + + +For Yahweh’s word is right. + +All his work is done in faithfulness. + + +He loves righteousness and justice. + +The earth is full of the loving kindness of Yahweh. + + +By Yahweh’s word, the heavens were made: + +all their army by the breath of his mouth. + + +He gathers the waters of the sea together as a heap. + +He lays up the deeps in storehouses. + + +Let all the earth fear Yahweh. + +Let all the inhabitants of the world stand in awe of him. + + +For he spoke, and it was done. + +He commanded, and it stood firm. + + +Yahweh brings the counsel of the nations to nothing. + +He makes the thoughts of the peoples to be of no effect. + + +The counsel of Yahweh stands fast forever, + +the thoughts of his heart to all generations. + + +Blessed is the nation whose God is Yahweh, + +the people whom he has chosen for his own inheritance. + + +Yahweh looks from heaven. + +He sees all the sons of men. + + +From the place of his habitation he looks out on all the inhabitants of the earth, + + +he who fashions all of their hearts; + +and he considers all of their works. + + +There is no king saved by the multitude of an army. + +A mighty man is not delivered by great strength. + + +A horse is a vain thing for safety, + +neither does he deliver any by his great power. + + +Behold, Yahweh’s eye is on those who fear him, + +on those who hope in his loving kindness, + + +to deliver their soul from death, + +to keep them alive in famine. + + +Our soul has waited for Yahweh. + +He is our help and our shield. + + +For our heart rejoices in him, + +because we have trusted in his holy name. + + +Let your loving kindness be on us, Yahweh, + +since we have hoped in you. + + + + +By David; when he pretended to be insane before Abimelech, who drove him away, and he departed. + +34:1 +Psalm 34 is an acrostic poem, with each verse starting with a letter of the alphabet (ordered from Alef to Tav).I will bless Yahweh at all times. + +His praise will always be in my mouth. + + +My soul shall boast in Yahweh. + +The humble shall hear of it and be glad. + + +Oh magnify Yahweh with me. + +Let’s exalt his name together. + + +I sought Yahweh, and he answered me, + +and delivered me from all my fears. + + +They looked to him, and were radiant. + +Their faces shall never be covered with shame. + + +This poor man cried, and Yahweh heard him, + +and saved him out of all his troubles. + + +Yahweh’s angel encamps around those who fear him, + +and delivers them. + + +Oh taste and see that Yahweh is good. + +Blessed is the man who takes refuge in him. + + +Oh fear Yahweh, you his saints, + +for there is no lack with those who fear him. + + +The young lions do lack, and suffer hunger, + +but those who seek Yahweh shall not lack any good thing. + + + +Come, you children, listen to me. + +I will teach you the fear of Yahweh. + + +Who is someone who desires life, + +and loves many days, that he may see good? + + +Keep your tongue from evil, + +and your lips from speaking lies. + + +Depart from evil, and do good. + +Seek peace, and pursue it. + + +Yahweh’s eyes are toward the righteous. + +His ears listen to their cry. + + +Yahweh’s face is against those who do evil, + +to cut off their memory from the earth. + + +The righteous cry, and Yahweh hears, + +and delivers them out of all their troubles. + + +Yahweh is near to those who have a broken heart, + +and saves those who have a crushed spirit. + + +Many are the afflictions of the righteous, + +but Yahweh delivers him out of them all. + + +He protects all of his bones. + +Not one of them is broken. + + +Evil shall kill the wicked. + +Those who hate the righteous shall be condemned. + + +Yahweh redeems the soul of his servants. + +None of those who take refuge in him shall be condemned. + + + + +By David. + +Contend, Yahweh, with those who contend with me. + +Fight against those who fight against me. + + +Take hold of shield and buckler, + +and stand up for my help. + + +Brandish the spear and block those who pursue me. + +Tell my soul, “I am your salvation.” + + +Let those who seek after my soul be disappointed and brought to dishonor. + +Let those who plot my ruin be turned back and confounded. + + +Let them be as chaff before the wind, + +Yahweh’s angel driving them on. + + +Let their way be dark and slippery, + +Yahweh’s angel pursuing them. + + +For without cause they have hidden their net in a pit for me. + +Without cause they have dug a pit for my soul. + + +Let destruction come on him unawares. + +Let his net that he has hidden catch himself. + +Let him fall into that destruction. + + + +My soul shall be joyful in Yahweh. + +It shall rejoice in his salvation. + + +All my bones shall say, “Yahweh, who is like you, + +who delivers the poor from him who is too strong for him; + +yes, the poor and the needy from him who robs him?” + + +Unrighteous witnesses rise up. + +They ask me about things that I don’t know about. + + +They reward me evil for good, + +to the bereaving of my soul. + + + +But as for me, when they were sick, my clothing was sackcloth. + +I afflicted my soul with fasting. + +My prayer returned into my own bosom. + + +I behaved myself as though it had been my friend or my brother. + +I bowed down mourning, as one who mourns his mother. + + +But in my adversity, they rejoiced, and gathered themselves together. + +The attackers gathered themselves together against me, and I didn’t know it. + +They tore at me, and didn’t cease. + + +Like the profane mockers in feasts, + +they gnashed their teeth at me. + + +Lord, how long will you look on? + +Rescue my soul from their destruction, + +my precious life from the lions. + + +I will give you thanks in the great assembly. + +I will praise you among many people. + + +Don’t let those who are my enemies wrongfully rejoice over me; + +neither let those who hate me without a cause wink their eyes. + + +For they don’t speak peace, + +but they devise deceitful words against those who are quiet in the land. + + +Yes, they opened their mouth wide against me. + +They said, “Aha! Aha! Our eye has seen it!” + + +You have seen it, Yahweh. Don’t keep silent. + +Lord, don’t be far from me. + + +Wake up! Rise up to defend me, my God! + +My Lord, contend for me! + + +Vindicate me, Yahweh my God, according to your righteousness. + +Don’t let them gloat over me. + + +Don’t let them say in their heart, “Aha! That’s the way we want it!” + +Don’t let them say, “We have swallowed him up!” + + +Let them be disappointed and confounded together who rejoice at my calamity. + +Let them be clothed with shame and dishonor who magnify themselves against me. + + + +Let those who favor my righteous cause shout for joy and be glad. + +Yes, let them say continually, “May Yahweh be magnified, + +who has pleasure in the prosperity of his servant!” + + +My tongue shall talk about your righteousness and about your praise all day long. + + + + +For the Chief Musician. By David, the servant of Yahweh. + +A revelation is within my heart about the disobedience of the wicked: + +There is no fear of God before his eyes. + + +For he flatters himself in his own eyes, + +too much to detect and hate his sin. + + +The words of his mouth are iniquity and deceit. + +He has ceased to be wise and to do good. + + +He plots iniquity on his bed. + +He sets himself in a way that is not good. + +He doesn’t abhor evil. + + + +Your loving kindness, Yahweh, is in the heavens. + +Your faithfulness reaches to the skies. + + +Your righteousness is like the mountains of God. + +Your judgments are like a great deep. + +Yahweh, you preserve man and animal. + + +How precious is your loving kindness, God! + +The children of men take refuge under the shadow of your wings. + + +They shall be abundantly satisfied with the abundance of your house. + +You will make them drink of the river of your pleasures. + + +For with you is the spring of life. + +In your light we will see light. + + +Oh continue your loving kindness to those who know you, + +your righteousness to the upright in heart. + + +Don’t let the foot of pride come against me. + +Don’t let the hand of the wicked drive me away. + + +There the workers of iniquity are fallen. + +They are thrust down, and shall not be able to rise. + + + + +By David. + +Don’t fret because of evildoers, + +neither be envious against those who work unrighteousness. + + +For they shall soon be cut down like the grass, + +and wither like the green herb. + + +Trust in Yahweh, and do good. + +Dwell in the land, and enjoy safe pasture. + + +Also delight yourself in Yahweh, + +and he will give you the desires of your heart. + + +Commit your way to Yahweh. + +Trust also in him, and he will do this: + + +he will make your righteousness shine out like light, + +and your justice as the noon day sun. + + +Rest in Yahweh, and wait patiently for him. + +Don’t fret because of him who prospers in his way, + +because of the man who makes wicked plots happen. + + +Cease from anger, and forsake wrath. + +Don’t fret; it leads only to evildoing. + + +For evildoers shall be cut off, + +but those who wait for Yahweh shall inherit the land. + + +For yet a little while, and the wicked will be no more. + +Yes, though you look for his place, he isn’t there. + + +But the humble shall inherit the land, + +and shall delight themselves in the abundance of peace. + + +The wicked plots against the just, + +and gnashes at him with his teeth. + + +The Lord will laugh at him, + +for he sees that his day is coming. + + +The wicked have drawn out the sword, and have bent their bow, + +to cast down the poor and needy, + +to kill those who are upright on the path. + + +Their sword shall enter into their own heart. + +Their bows shall be broken. + + +Better is a little that the righteous has, + +than the abundance of many wicked. + + +For the arms of the wicked shall be broken, + +but Yahweh upholds the righteous. + + +Yahweh knows the days of the perfect. + +Their inheritance shall be forever. + + +They shall not be disappointed in the time of evil. + +In the days of famine they shall be satisfied. + + + +But the wicked shall perish. + +The enemies of Yahweh shall be like the beauty of the fields. + +They will vanish— + +vanish like smoke. + + +The wicked borrow, and don’t pay back, + +but the righteous give generously. + + +For such as are blessed by him shall inherit the land. + +Those who are cursed by him shall be cut off. + + +A man’s steps are established by Yahweh. + +He delights in his way. + + +Though he stumble, he shall not fall, + +for Yahweh holds him up with his hand. + + +I have been young, and now am old, + +yet I have not seen the righteous forsaken, + +nor his children begging for bread. + + +All day long he deals graciously, and lends. + +His offspring is blessed. + + +Depart from evil, and do good. + +Live securely forever. + + +For Yahweh loves justice, + +and doesn’t forsake his saints. + +They are preserved forever, + +but the children of the wicked shall be cut off. + + +The righteous shall inherit the land, + +and live in it forever. + + + +The mouth of the righteous talks of wisdom. + +His tongue speaks justice. + + +The law of his God is in his heart. + +None of his steps shall slide. + + +The wicked watch the righteous, + +and seek to kill him. + + +Yahweh will not leave him in his hand, + +nor condemn him when he is judged. + + +Wait for Yahweh, and keep his way, + +and he will exalt you to inherit the land. + +When the wicked are cut off, you shall see it. + + + +I have seen the wicked in great power, + +spreading himself like a green tree in its native soil. + + +But he passed away, and behold, he was not. + +Yes, I sought him, but he could not be found. + + +Mark the perfect man, and see the upright, + +for there is a future for the man of peace. + + +As for transgressors, they shall be destroyed together. + +The future of the wicked shall be cut off. + + +But the salvation of the righteous is from Yahweh. + +He is their stronghold in the time of trouble. + + +Yahweh helps them and rescues them. + +He rescues them from the wicked and saves them, + +because they have taken refuge in him. + + + + +A Psalm by David, for a memorial. + +Yahweh, don’t rebuke me in your wrath, + +neither chasten me in your hot displeasure. + + +For your arrows have pierced me, + +your hand presses hard on me. + + +There is no soundness in my flesh because of your indignation, + +neither is there any health in my bones because of my sin. + + +For my iniquities have gone over my head. + +As a heavy burden, they are too heavy for me. + + +My wounds are loathsome and corrupt + +because of my foolishness. + + +I am in pain and bowed down greatly. + +I go mourning all day long. + + +For my waist is filled with burning. + +There is no soundness in my flesh. + + +I am faint and severely bruised. + +I have groaned by reason of the anguish of my heart. + + +Lord, all my desire is before you. + +My groaning is not hidden from you. + + +My heart throbs. + +My strength fails me. + +As for the light of my eyes, it has also left me. + + +My lovers and my friends stand aloof from my plague. + +My kinsmen stand far away. + + +They also who seek after my life lay snares. + +Those who seek my hurt speak mischievous things, + +and meditate deceits all day long. + + +But I, as a deaf man, don’t hear. + +I am as a mute man who doesn’t open his mouth. + + +Yes, I am as a man who doesn’t hear, + +in whose mouth are no reproofs. + + +For I hope in you, Yahweh. + +You will answer, Lord my God. + + +For I said, “Don’t let them gloat over me, + +or exalt themselves over me when my foot slips.” + + +For I am ready to fall. + +My pain is continually before me. + + +For I will declare my iniquity. + +I will be sorry for my sin. + + +But my enemies are vigorous and many. + +Those who hate me without reason are numerous. + + +They who give evil for good are also adversaries to me, + +because I follow what is good. + + +Don’t forsake me, Yahweh. + +My God, don’t be far from me. + + +Hurry to help me, + +Lord, my salvation. + + + + +For the Chief Musician. For Jeduthun. A Psalm by David. + +I said, “I will watch my ways, so that I don’t sin with my tongue. + +I will keep my mouth with a bridle while the wicked is before me.” + + +I was mute with silence. + +I held my peace, even from good. + +My sorrow was stirred. + + +My heart was hot within me. + +While I meditated, the fire burned. + +I spoke with my tongue: + + +Yahweh, show me my end, + +what is the measure of my days. + +Let me know how frail I am. + + +Behold, you have made my days hand widths. + +My lifetime is as nothing before you. + +Surely every man stands as a breath.” +Selah. + + +Surely every man walks like a shadow. + +Surely they busy themselves in vain. + +He heaps up, and doesn’t know who shall gather. + + +Now, Lord, what do I wait for? + +My hope is in you. + + +Deliver me from all my transgressions. + +Don’t make me the reproach of the foolish. + + +I was mute. + +I didn’t open my mouth, + +because you did it. + + +Remove your scourge away from me. + +I am overcome by the blow of your hand. + + +When you rebuke and correct man for iniquity, + +you consume his wealth like a moth. + +Surely every man is but a breath.” +Selah. + + +“Hear my prayer, Yahweh, and give ear to my cry. + +Don’t be silent at my tears. + +For I am a stranger with you, + +a foreigner, as all my fathers were. + + +Oh spare me, that I may recover strength, + +before I go away and exist no more.” + + + + +For the Chief Musician. A Psalm by David. + +I waited patiently for Yahweh. + +He turned to me, and heard my cry. + + +He brought me up also out of a horrible pit, + +out of the miry clay. + +He set my feet on a rock, + +and gave me a firm place to stand. + + +He has put a new song in my mouth, even praise to our God. + +Many shall see it, and fear, and shall trust in Yahweh. + + +Blessed is the man who makes Yahweh his trust, + +and doesn’t respect the proud, nor such as turn away to lies. + + +Many, Yahweh, my God, are the wonderful works which you have done, + +and your thoughts which are toward us. + +They can’t be declared back to you. + +If I would declare and speak of them, they are more than can be counted. + + +Sacrifice and offering you didn’t desire. + +You have opened my ears. + +You have not required burnt offering and sin offering. + + +Then I said, “Behold, I have come. + +It is written about me in the book in the scroll. + + +I delight to do your will, my God. + +Yes, your law is within my heart.” + + +I have proclaimed glad news of righteousness in the great assembly. + +Behold, I will not seal my lips, Yahweh, you know. + + +I have not hidden your righteousness within my heart. + +I have declared your faithfulness and your salvation. + +I have not concealed your loving kindness and your truth from the great assembly. + + +Don’t withhold your tender mercies from me, Yahweh. + +Let your loving kindness and your truth continually preserve me. + + +For innumerable evils have surrounded me. + +My iniquities have overtaken me, so that I am not able to look up. + +They are more than the hairs of my head. + +My heart has failed me. + + +Be pleased, Yahweh, to deliver me. + +Hurry to help me, Yahweh. + + +Let them be disappointed and confounded together who seek after my soul to destroy it. + +Let them be turned backward and brought to dishonor who delight in my hurt. + + +Let them be desolate by reason of their shame that tell me, “Aha! Aha!” + + +Let all those who seek you rejoice and be glad in you. + +Let such as love your salvation say continually, “Let Yahweh be exalted!” + + +But I am poor and needy. + +May the Lord think about me. + +You are my help and my deliverer. + +Don’t delay, my God. + + + + +For the Chief Musician. A Psalm by David. + +Blessed is he who considers the poor. + +Yahweh will deliver him in the day of evil. + + +Yahweh will preserve him, and keep him alive. + +He shall be blessed on the earth, + +and he will not surrender him to the will of his enemies. + + +Yahweh will sustain him on his sickbed, + +and restore him from his bed of illness. + + +I said, “Yahweh, have mercy on me! + +Heal me, for I have sinned against you.” + + +My enemies speak evil against me: + +When will he die, and his name perish?” + + +If he comes to see me, he speaks falsehood. + +His heart gathers iniquity to itself. + +When he goes abroad, he tells it. + + +All who hate me whisper together against me. + +They imagine the worst for me. + + +An evil disease”, they say, “has afflicted him. + +Now that he lies he shall rise up no more.” + + +Yes, my own familiar friend, in whom I trusted, + +who ate bread with me, + +has lifted up his heel against me. + + + +But you, Yahweh, have mercy on me, and raise me up, + +that I may repay them. + + +By this I know that you delight in me, + +because my enemy doesn’t triumph over me. + + +As for me, you uphold me in my integrity, + +and set me in your presence forever. + + + +Blessed be Yahweh, the God of Israel, + +from everlasting and to everlasting! + +Amen and amen. + + + + +

BOOK 2 +

+For the Chief Musician. A contemplation by the sons of Korah. + +As the deer pants for the water brooks, + +so my soul pants after you, God.42:1 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + + +My soul thirsts for God, for the living God. + +When shall I come and appear before God? + + +My tears have been my food day and night, + +while they continually ask me, “Where is your God?” + + +These things I remember, and pour out my soul within me, + +how I used to go with the crowd, and led them to God’s house, + +with the voice of joy and praise, a multitude keeping a holy day. + + +Why are you in despair, my soul? + +Why are you disturbed within me? + +Hope in God! + +For I shall still praise him for the saving help of his presence. + + +My God, my soul is in despair within me. + +Therefore I remember you from the land of the Jordan, + +the heights of Hermon, from the hill Mizar. + + +Deep calls to deep at the noise of your waterfalls. + +All your waves and your billows have swept over me. + + + +Yahweh42:8 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. will command his loving kindness in the daytime. + +In the night his song shall be with me: + +a prayer to the God of my life. + + +I will ask God, my rock, “Why have you forgotten me? + +Why do I go mourning because of the oppression of the enemy?” + + +As with a sword in my bones, my adversaries reproach me, + +while they continually ask me, “Where is your God?” + + +Why are you in despair, my soul? + +Why are you disturbed within me? + +Hope in God! For I shall still praise him, + +the saving help of my countenance, and my God. + + + + +Vindicate me, God, and plead my cause against an ungodly nation. + +Oh, deliver me from deceitful and wicked men. + + +For you are the God of my strength. Why have you rejected me? + +Why do I go mourning because of the oppression of the enemy? + + +Oh, send out your light and your truth. + +Let them lead me. + +Let them bring me to your holy hill, + +to your tents. + + +Then I will go to the altar of God, + +to God, my exceeding joy. + +I will praise you on the harp, God, my God. + + +Why are you in despair, my soul? + +Why are you disturbed within me? + +Hope in God! + +For I shall still praise him: + +my Savior, my helper, and my God. + + + + +For the Chief Musician. By the sons of Korah. A contemplative psalm. + +We have heard with our ears, God; + +our fathers have told us what work you did in their days, + +in the days of old. + + +You drove out the nations with your hand, + +but you planted them. + +You afflicted the peoples, + +but you spread them abroad. + + +For they didn’t get the land in possession by their own sword, + +neither did their own arm save them; + +but your right hand, your arm, and the light of your face, + +because you were favorable to them. + + +God, you are my King. + +Command victories for Jacob! + + +Through you, we will push down our adversaries. + +Through your name, we will tread down those who rise up against us. + + +For I will not trust in my bow, + +neither will my sword save me. + + +But you have saved us from our adversaries, + +and have shamed those who hate us. + + +In God we have made our boast all day long. + +We will give thanks to your name forever. +Selah. + + + +But now you rejected us, and brought us to dishonor, + +and don’t go out with our armies. + + +You make us turn back from the adversary. + +Those who hate us take plunder for themselves. + + +You have made us like sheep for food, + +and have scattered us among the nations. + + +You sell your people for nothing, + +and have gained nothing from their sale. + + +You make us a reproach to our neighbors, + +a scoffing and a derision to those who are around us. + + +You make us a byword among the nations, + +a shaking of the head among the peoples. + + +All day long my dishonor is before me, + +and shame covers my face, + + +at the taunt of one who reproaches and verbally abuses, + +because of the enemy and the avenger. + + +All this has come on us, + +yet we haven’t forgotten you. + +We haven’t been false to your covenant. + + +Our heart has not turned back, + +neither have our steps strayed from your path, + + +though you have crushed us in the haunt of jackals, + +and covered us with the shadow of death. + + +If we have forgotten the name of our God, + +or spread out our hands to a strange god, + + +won’t God search this out? + +For he knows the secrets of the heart. + + +Yes, for your sake we are killed all day long. + +We are regarded as sheep for the slaughter. + + +Wake up! + +Why do you sleep, Lord?44:23 +The word translated “Lord” is “Adonai.” + + +Arise! + +Don’t reject us forever. + + +Why do you hide your face, + +and forget our affliction and our oppression? + + +For our soul is bowed down to the dust. + +Our body clings to the earth. + + +Rise up to help us. + +Redeem us for your loving kindness’ sake. + + + + +For the Chief Musician. Set to “The Lilies.” A contemplation by the sons of Korah. A wedding song. + +My heart overflows with a noble theme. + +I recite my verses for the king. + +My tongue is like the pen of a skillful writer. + + +You are the most excellent of the sons of men. + +Grace has anointed your lips, + +therefore God has blessed you forever. + + +Strap your sword on your thigh, O mighty one, + +in your splendor and your majesty. + + +In your majesty ride on victoriously on behalf of truth, humility, and righteousness. + +Let your right hand display awesome deeds. + + +Your arrows are sharp. + +The nations fall under you, with arrows in the heart of the king’s enemies. + + +Your throne, God, is forever and ever. + +A scepter of equity is the scepter of your kingdom. + + +You have loved righteousness, and hated wickedness. + +Therefore God, your God, has anointed you with the oil of gladness above your fellows. + + +All your garments smell like myrrh, aloes, and cassia. + +Out of ivory palaces stringed instruments have made you glad. + + +Kings’ daughters are among your honorable women. + +At your right hand the queen stands in gold of Ophir. + + +Listen, daughter, consider, and turn your ear. + +Forget your own people, and also your father’s house. + + +So the king will desire your beauty, + +honor him, for he is your lord. + + +The daughter of Tyre comes with a gift. + +The rich among the people entreat your favor. + + +The princess inside is all glorious. + +Her clothing is interwoven with gold. + + +She shall be led to the king in embroidered work. + +The virgins, her companions who follow her, shall be brought to you. + + +With gladness and rejoicing they shall be led. + +They shall enter into the king’s palace. + + +Your sons will take the place of your fathers. + +You shall make them princes in all the earth. + + +I will make your name to be remembered in all generations. + +Therefore the peoples shall give you thanks forever and ever. + + + + +For the Chief Musician. By the sons of Korah. According to Alamoth.46:0 +Alamoth is a musical term. + +God is our refuge and strength, + +a very present help in trouble. + + +Therefore we won’t be afraid, though the earth changes, + +though the mountains are shaken into the heart of the seas; + + +though its waters roar and are troubled, + +though the mountains tremble with their swelling. +Selah. + + + +There is a river, the streams of which make the city of God glad, + +the holy place of the tents of the Most High. + + +God is within her. She shall not be moved. + +God will help her at dawn. + + +The nations raged. The kingdoms were moved. + +He lifted his voice and the earth melted. + + +Yahweh of Armies is with us. + +The God of Jacob is our refuge. +Selah. + + + +Come, see Yahweh’s works, + +what desolations he has made on the earth. + + +He makes wars cease to the end of the earth. + +He breaks the bow, and shatters the spear. + +He burns the chariots in the fire. + + +Be still, and know that I am God. + +I will be exalted among the nations. + +I will be exalted on the earth.” + + +Yahweh of Armies is with us. + +The God of Jacob is our refuge. +Selah. + + + + + +For the Chief Musician. A Psalm by the sons of Korah. + +Oh clap your hands, all you nations. + +Shout to God with the voice of triumph! + + +For Yahweh Most High is awesome. + +He is a great King over all the earth. + + +He subdues nations under us, + +and peoples under our feet. + + +He chooses our inheritance for us, + +the glory of Jacob whom he loved. +Selah. + + +God has gone up with a shout, + +Yahweh with the sound of a trumpet. + + +Sing praises to God! Sing praises! + +Sing praises to our King! Sing praises! + + +For God is the King of all the earth. + +Sing praises with understanding. + + +God reigns over the nations. + +God sits on his holy throne. + + +The princes of the peoples are gathered together, + +the people of the God of Abraham. + +For the shields of the earth belong to God. + +He is greatly exalted! + + + + +A Song. A Psalm by the sons of Korah. + +Great is Yahweh, and greatly to be praised, + +in the city of our God, in his holy mountain. + + +Beautiful in elevation, the joy of the whole earth, + +is Mount Zion, on the north sides, + +the city of the great King. + + +God has shown himself in her citadels as a refuge. + + +For, behold, the kings assembled themselves, + +they passed by together. + + +They saw it, then they were amazed. + +They were dismayed. + +They hurried away. + + +Trembling took hold of them there, + +pain, as of a woman in travail. + + +With the east wind, you break the ships of Tarshish. + + +As we have heard, so we have seen, + +in the city of Yahweh of Armies, in the city of our God. + +God will establish it forever. +Selah. + + +We have thought about your loving kindness, God, + +in the middle of your temple. + + +As is your name, God, + +so is your praise to the ends of the earth. + +Your right hand is full of righteousness. + + +Let Mount Zion be glad! + +Let the daughters of Judah rejoice because of your judgments. + + +Walk about Zion, and go around her. + +Number its towers. + + +Notice her bulwarks. + +Consider her palaces, + +that you may tell it to the next generation. + + +For this God is our God forever and ever. + +He will be our guide even to death. + + + + +For the Chief Musician. A Psalm by the sons of Korah. + +Hear this, all you peoples. + +Listen, all you inhabitants of the world, + + +both low and high, + +rich and poor together. + + +My mouth will speak words of wisdom. + +My heart will utter understanding. + + +I will incline my ear to a proverb. + +I will solve my riddle on the harp. + + +Why should I fear in the days of evil, + +when iniquity at my heels surrounds me? + + +Those who trust in their wealth, + +and boast in the multitude of their riches— + + +none of them can by any means redeem his brother, + +nor give God a ransom for him. + + +For the redemption of their life is costly, + +no payment is ever enough, + + +that he should live on forever, + +that he should not see corruption. + + +For he sees that wise men die; + +likewise the fool and the senseless perish, + +and leave their wealth to others. + + +Their inward thought is that their houses will endure forever, + +and their dwelling places to all generations. + +They name their lands after themselves. + + +But man, despite his riches, doesn’t endure. + +He is like the animals that perish. + + + +This is the destiny of those who are foolish, + +and of those who approve their sayings. +Selah. + + +They are appointed as a flock for Sheol.49:14 +Sheol is the place of the dead. + +Death shall be their shepherd. + +The upright shall have dominion over them in the morning. + +Their beauty shall decay in Sheol,49:14 +Sheol is the place of the dead. + + +far from their mansion. + + +But God will redeem my soul from the power of Sheol,49:15 +Sheol is the place of the dead. + +for he will receive me. +Selah. + + +Don’t be afraid when a man is made rich, + +when the glory of his house is increased; + + +for when he dies he will carry nothing away. + +His glory won’t descend after him. + + +Though while he lived he blessed his soul— + +and men praise you when you do well for yourself— + + +he shall go to the generation of his fathers. + +They shall never see the light. + + +A man who has riches without understanding, + +is like the animals that perish. + + + + +A Psalm by Asaph. + +The Mighty One, God, Yahweh, speaks, + +and calls the earth from sunrise to sunset. + + +Out of Zion, the perfection of beauty, + +God shines out. + + +Our God comes, and does not keep silent. + +A fire devours before him. + +It is very stormy around him. + + +He calls to the heavens above, + +to the earth, that he may judge his people: + + +“Gather my saints together to me, + +those who have made a covenant with me by sacrifice.” + + +The heavens shall declare his righteousness, + +for God himself is judge. +Selah. + + +Hear, my people, and I will speak. + +Israel, I will testify against you. + +I am God, your God. + + +I don’t rebuke you for your sacrifices. + +Your burnt offerings are continually before me. + + +I have no need for a bull from your stall, + +nor male goats from your pens. + + +For every animal of the forest is mine, + +and the livestock on a thousand hills. + + +I know all the birds of the mountains. + +The wild animals of the field are mine. + + +If I were hungry, I would not tell you, + +for the world is mine, and all that is in it. + + +Will I eat the meat of bulls, + +or drink the blood of goats? + + +Offer to God the sacrifice of thanksgiving. + +Pay your vows to the Most High. + + +Call on me in the day of trouble. + +I will deliver you, and you will honor me.” + + + +But to the wicked God says, + +What right do you have to declare my statutes, + +that you have taken my covenant on your lips, + + +since you hate instruction, + +and throw my words behind you? + + +When you saw a thief, you consented with him, + +and have participated with adulterers. + + + +You give your mouth to evil. + +Your tongue frames deceit. + + +You sit and speak against your brother. + +You slander your own mother’s son. + + +You have done these things, and I kept silent. + +You thought that I was just like you. + +I will rebuke you, and accuse you in front of your eyes. + + + +Now consider this, you who forget God, + +lest I tear you into pieces, and there be no one to deliver. + + +Whoever offers the sacrifice of thanksgiving glorifies me, + +and prepares his way so that I will show God’s salvation to him.” + + + + +For the Chief Musician. A Psalm by David, when Nathan the prophet came to him, after he had gone in to Bathsheba. + +Have mercy on me, God, according to your loving kindness. + +According to the multitude of your tender mercies, blot out my transgressions. + + +Wash me thoroughly from my iniquity. + +Cleanse me from my sin. + + +For I know my transgressions. + +My sin is constantly before me. + + +Against you, and you only, I have sinned, + +and done that which is evil in your sight, + +so you may be proved right when you speak, + +and justified when you judge. + + +Behold, I was born in iniquity. + +My mother conceived me in sin. + + +Behold, you desire truth in the inward parts. + +You teach me wisdom in the inmost place. + + +Purify me with hyssop, and I will be clean. + +Wash me, and I will be whiter than snow. + + +Let me hear joy and gladness, + +that the bones which you have broken may rejoice. + + +Hide your face from my sins, + +and blot out all of my iniquities. + + +Create in me a clean heart, O God. + +Renew a right spirit within me. + + +Don’t throw me from your presence, + +and don’t take your Holy Spirit from me. + + +Restore to me the joy of your salvation. + +Uphold me with a willing spirit. + + +Then I will teach transgressors your ways. + +Sinners will be converted to you. + + +Deliver me from the guilt of bloodshed, O God, the God of my salvation. + +My tongue will sing aloud of your righteousness. + + +Lord, open my lips. + +My mouth will declare your praise. + + +For you don’t delight in sacrifice, or else I would give it. + +You have no pleasure in burnt offering. + + +The sacrifices of God are a broken spirit. + +O God, you will not despise a broken and contrite heart. + + + +Do well in your good pleasure to Zion. + +Build the walls of Jerusalem. + + +Then you will delight in the sacrifices of righteousness, + +in burnt offerings and in whole burnt offerings. + +Then they will offer bulls on your altar. + + + + +For the Chief Musician. A contemplation by David, when Doeg the Edomite came and told Saul, “David has come to Ahimelech’s house.” + +Why do you boast of mischief, mighty man? + +God’s loving kindness endures continually. + + +Your tongue plots destruction, + +like a sharp razor, working deceitfully. + + +You love evil more than good, + +lying rather than speaking the truth. +Selah. + + +You love all devouring words, + +you deceitful tongue. + + +God will likewise destroy you forever. + +He will take you up, and pluck you out of your tent, + +and root you out of the land of the living. +Selah. + + +The righteous also will see it, and fear, + +and laugh at him, saying, + + +“Behold, this is the man who didn’t make God his strength, + +but trusted in the abundance of his riches, + +and strengthened himself in his wickedness.” + + +But as for me, I am like a green olive tree in God’s house. + +I trust in God’s loving kindness forever and ever. + + +I will give you thanks forever, because you have done it. + +I will hope in your name, for it is good, + +in the presence of your saints. + + + + +For the Chief Musician. To the tune of “Mahalath.” A contemplation by David. + +The fool has said in his heart, “There is no God.” + +They are corrupt, and have done abominable iniquity. + +There is no one who does good. + + +God looks down from heaven on the children of men, + +to see if there are any who understood, + +who seek after God. + + +Every one of them has gone back. + +They have become filthy together. + +There is no one who does good, no, not one. + + +Have the workers of iniquity no knowledge, + +who eat up my people as they eat bread, + +and don’t call on God? + + +There they were in great fear, where no fear was, + +for God has scattered the bones of him who encamps against you. + +You have put them to shame, + +because God has rejected them. + + +Oh that the salvation of Israel would come out of Zion! + +When God brings back his people from captivity, + +then Jacob shall rejoice, + +and Israel shall be glad. + + + + +For the Chief Musician. On stringed instruments. A contemplation by David, when the Ziphites came and said to Saul, “Isn’t David hiding himself among us?” + +Save me, God, by your name. + +Vindicate me in your might. + + +Hear my prayer, God. + +Listen to the words of my mouth. + + +For strangers have risen up against me. + +Violent men have sought after my soul. + +They haven’t set God before them. +Selah. + + +Behold, God is my helper. + +The Lord is the one who sustains my soul. + + +He will repay the evil to my enemies. + +Destroy them in your truth. + + +With a free will offering, I will sacrifice to you. + +I will give thanks to your name, Yahweh, for it is good. + + +For he has delivered me out of all trouble. + +My eye has seen triumph over my enemies. + + + + +For the Chief Musician. On stringed instruments. A contemplation by David. + +Listen to my prayer, God. + +Don’t hide yourself from my supplication. + + +Attend to me, and answer me. + +I am restless in my complaint, + +and moan + +because of the voice of the enemy, + +because of the oppression of the wicked. + +For they bring suffering on me. + +In anger they hold a grudge against me. + + +My heart is severely pained within me. + +The terrors of death have fallen on me. + + +Fearfulness and trembling have come on me. + +Horror has overwhelmed me. + + +I said, “Oh that I had wings like a dove! + +Then I would fly away, and be at rest. + + +Behold, then I would wander far off. + +I would lodge in the wilderness.” +Selah. + + +I would hurry to a shelter from the stormy wind and storm.” + + +Confuse them, Lord, and confound their language, + +for I have seen violence and strife in the city. + + +Day and night they prowl around on its walls. + +Malice and abuse are also within her. + + +Destructive forces are within her. + +Threats and lies don’t depart from her streets. + + +For it was not an enemy who insulted me, + +then I could have endured it. + +Neither was it he who hated me who raised himself up against me, + +then I would have hidden myself from him. + + +But it was you, a man like me, + +my companion, and my familiar friend. + + +We took sweet fellowship together. + +We walked in God’s house with company. + + +Let death come suddenly on them. + +Let them go down alive into Sheol.55:15 +Sheol is the place of the dead. + + +For wickedness is among them, in their dwelling. + + +As for me, I will call on God. + +Yahweh will save me. + + +Evening, morning, and at noon, I will cry out in distress. + +He will hear my voice. + + +He has redeemed my soul in peace from the battle that was against me, + +although there are many who oppose me. + + +God, who is enthroned forever, + +will hear and answer them. +Selah. + + +They never change + +and don’t fear God. + + +He raises his hands against his friends. + +He has violated his covenant. + + +His mouth was smooth as butter, + +but his heart was war. + +His words were softer than oil, + +yet they were drawn swords. + + + +Cast your burden on Yahweh and he will sustain you. + +He will never allow the righteous to be moved. + + +But you, God, will bring them down into the pit of destruction. + +Bloodthirsty and deceitful men shall not live out half their days, + +but I will trust in you. + + + + +For the Chief Musician. To the tune of “Silent Dove in Distant Lands.” A poem by David, when the Philistines seized him in Gath. + +Be merciful to me, God, for man wants to swallow me up. + +All day long, he attacks and oppresses me. + + +My enemies want to swallow me up all day long, + +for they are many who fight proudly against me. + + +When I am afraid, + +I will put my trust in you. + + +In God, I praise his word. + +In God, I put my trust. + +I will not be afraid. + +What can flesh do to me? + + +All day long they twist my words. + +All their thoughts are against me for evil. + + +They conspire and lurk, + +watching my steps. + +They are eager to take my life. + + +Shall they escape by iniquity? + +In anger cast down the peoples, God. + + +You count my wanderings. + +You put my tears into your container. + +Aren’t they in your book? + + +Then my enemies shall turn back in the day that I call. + +I know this: that God is for me. + + +In God, I will praise his word. + +In Yahweh, I will praise his word. + + +I have put my trust in God. + +I will not be afraid. + +What can man do to me? + + +Your vows are on me, God. + +I will give thank offerings to you. + + +For you have delivered my soul from death, + +and prevented my feet from falling, + +that I may walk before God in the light of the living. + + + + +For the Chief Musician. To the tune of “Do Not Destroy.” A poem by David, when he fled from Saul, in the cave. + +Be merciful to me, God, be merciful to me, + +for my soul takes refuge in you. + +Yes, in the shadow of your wings, I will take refuge, + +until disaster has passed. + + +I cry out to God Most High, + +to God who accomplishes my requests for me. + + +He will send from heaven, and save me, + +he rebukes the one who is pursuing me. +Selah. + +God will send out his loving kindness and his truth. + + +My soul is among lions. + +I lie among those who are set on fire, + +even the sons of men, whose teeth are spears and arrows, + +and their tongue a sharp sword. + + +Be exalted, God, above the heavens! + +Let your glory be above all the earth! + + + +They have prepared a net for my steps. + +My soul is bowed down. + +They dig a pit before me. + +They fall into the middle of it themselves. +Selah. + + +My heart is steadfast, God. + +My heart is steadfast. + +I will sing, yes, I will sing praises. + + +Wake up, my glory! Wake up, lute and harp! + +I will wake up the dawn. + + +I will give thanks to you, Lord, among the peoples. + +I will sing praises to you among the nations. + + +For your great loving kindness reaches to the heavens, + +and your truth to the skies. + + +Be exalted, God, above the heavens. + +Let your glory be over all the earth. + + + + +For the Chief Musician. To the tune of “Do Not Destroy.” A poem by David. + +Do you indeed speak righteousness, silent ones? + +Do you judge blamelessly, you sons of men? + + +No, in your heart you plot injustice. + +You measure out the violence of your hands on the earth. + + +The wicked go astray from the womb. + +They are wayward as soon as they are born, speaking lies. + + +Their poison is like the poison of a snake, + +like a deaf cobra that stops its ear, + + +which doesn’t listen to the voice of charmers, + +no matter how skillful the charmer may be. + + +Break their teeth, God, in their mouth. + +Break out the great teeth of the young lions, Yahweh. + + +Let them vanish like water that flows away. + +When they draw the bow, let their arrows be made blunt. + + +Let them be like a snail which melts and passes away, + +like the stillborn child, who has not seen the sun. + + +Before your pots can feel the heat of the thorns, + +he will sweep away the green and the burning alike. + + +The righteous shall rejoice when he sees the vengeance. + +He shall wash his feet in the blood of the wicked, + + +so that men shall say, “Most certainly there is a reward for the righteous. + +Most certainly there is a God who judges the earth.” + + + + +For the Chief Musician. To the tune of “Do Not Destroy.” A poem by David, when Saul sent, and they watched the house to kill him. + +Deliver me from my enemies, my God. + +Set me on high from those who rise up against me. + + +Deliver me from the workers of iniquity. + +Save me from the bloodthirsty men. + + +For, behold, they lie in wait for my soul. + +The mighty gather themselves together against me, + +not for my disobedience, nor for my sin, Yahweh. + + +I have done no wrong, yet they are ready to attack me. + +Rise up, behold, and help me! + + +You, Yahweh God of Armies, the God of Israel, + +rouse yourself to punish the nations. + +Show no mercy to the wicked traitors. +Selah. + + +They return at evening, howling like dogs, + +and prowl around the city. + + +Behold, they spew with their mouth. + +Swords are in their lips, + +For”, they say, “who hears us?” + + +But you, Yahweh, laugh at them. + +You scoff at all the nations. + + +Oh, my Strength, I watch for you, + +for God is my high tower. + + +My God will go before me with his loving kindness. + +God will let me look at my enemies in triumph. + + +Don’t kill them, or my people may forget. + +Scatter them by your power, and bring them down, Lord our shield. + + +For the sin of their mouth, and the words of their lips, + +let them be caught in their pride, + +for the curses and lies which they utter. + + +Consume them in wrath. + +Consume them, and they will be no more. + +Let them know that God rules in Jacob, + +to the ends of the earth. +Selah. + + +At evening let them return. + +Let them howl like a dog, and go around the city. + + +They shall wander up and down for food, + +and wait all night if they aren’t satisfied. + + + +But I will sing of your strength. + +Yes, I will sing aloud of your loving kindness in the morning. + +For you have been my high tower, + +a refuge in the day of my distress. + + +To you, my strength, I will sing praises. + +For God is my high tower, the God of my mercy. + + + + +For the Chief Musician. To the tune of “The Lily of the Covenant.” A teaching poem by David, when he fought with Aram Naharaim and with Aram Zobah, and Joab returned, and killed twelve thousand of Edom in the Valley of Salt. + +God, you have rejected us. + +You have broken us down. + +You have been angry. + +Restore us, again. + + +You have made the land tremble. + +You have torn it. + +Mend its fractures, + +for it quakes. + + +You have shown your people hard things. + +You have made us drink the wine that makes us stagger. + + +You have given a banner to those who fear you, + +that it may be displayed because of the truth. +Selah. + + + +So that your beloved may be delivered, + +save with your right hand, and answer us. + + +God has spoken from his sanctuary: + +I will triumph. + +I will divide Shechem, + +and measure out the valley of Succoth. + + +Gilead is mine, and Manasseh is mine. + +Ephraim also is the defense of my head. + +Judah is my scepter. + + +Moab is my wash basin. + +I will throw my sandal on Edom. + +I shout in triumph over Philistia.” + + + +Who will bring me into the strong city? + +Who has led me to Edom? + + +Haven’t you, God, rejected us? + +You don’t go out with our armies, God. + + +Give us help against the adversary, + +for the help of man is vain. + + +Through God we will do valiantly, + +for it is he who will tread down our adversaries. + + + + +For the Chief Musician. For a stringed instrument. By David. + +Hear my cry, God. + +Listen to my prayer. + + +From the end of the earth, I will call to you when my heart is overwhelmed. + +Lead me to the rock that is higher than I. + + +For you have been a refuge for me, + +a strong tower from the enemy. + + +I will dwell in your tent forever. + +I will take refuge in the shelter of your wings. +Selah. + + +For you, God, have heard my vows. + +You have given me the heritage of those who fear your name. + + +You will prolong the king’s life. + +His years will be for generations. + + +He shall be enthroned in God’s presence forever. + +Appoint your loving kindness and truth, that they may preserve him. + + +So I will sing praise to your name forever, + +that I may fulfill my vows daily. + + + + +For the Chief Musician. To Jeduthun. A Psalm by David. + +My soul rests in God alone. + +My salvation is from him. + + +He alone is my rock, my salvation, and my fortress. + +I will never be greatly shaken. + + +How long will you assault a man? + +Would all of you throw him down, + +like a leaning wall, like a tottering fence? + + +They fully intend to throw him down from his lofty place. + +They delight in lies. + +They bless with their mouth, but they curse inwardly. +Selah. + + +My soul, wait in silence for God alone, + +for my expectation is from him. + + +He alone is my rock and my salvation, my fortress. + +I will not be shaken. + + +My salvation and my honor is with God. + +The rock of my strength, and my refuge, is in God. + + +Trust in him at all times, you people. + +Pour out your heart before him. + +God is a refuge for us. +Selah. + + +Surely men of low degree are just a breath, + +and men of high degree are a lie. + +In the balances they will go up. + +They are together lighter than a breath. + + +Don’t trust in oppression. + +Don’t become vain in robbery. + +If riches increase, + +don’t set your heart on them. + + +God has spoken once; + +twice I have heard this, + +that power belongs to God. + + +Also to you, Lord, belongs loving kindness, + +for you reward every man according to his work. + + + + +A Psalm by David, when he was in the desert of Judah. + +God, you are my God. + +I will earnestly seek you. + +My soul thirsts for you. + +My flesh longs for you, + +in a dry and weary land, where there is no water. + + +So I have seen you in the sanctuary, + +watching your power and your glory. + + +Because your loving kindness is better than life, + +my lips shall praise you. + + +So I will bless you while I live. + +I will lift up my hands in your name. + + +My soul shall be satisfied as with the richest food. + +My mouth shall praise you with joyful lips, + + +when I remember you on my bed, + +and think about you in the night watches. + + +For you have been my help. + +I will rejoice in the shadow of your wings. + + +My soul stays close to you. + +Your right hand holds me up. + + +But those who seek my soul to destroy it + +shall go into the lower parts of the earth. + + +They shall be given over to the power of the sword. + +They shall be jackal food. + + +But the king shall rejoice in God. + +Everyone who swears by him will praise him, + +for the mouth of those who speak lies shall be silenced. + + + + +For the Chief Musician. A Psalm by David. + +Hear my voice, God, in my complaint. + +Preserve my life from fear of the enemy. + + +Hide me from the conspiracy of the wicked, + +from the noisy crowd of the ones doing evil; + + +who sharpen their tongue like a sword, + +and aim their arrows, deadly words, + + +to shoot innocent men from ambushes. + +They shoot at him suddenly and fearlessly. + + +They encourage themselves in evil plans. + +They talk about laying snares secretly. + +They say, “Who will see them?” + + +They plot injustice, saying, “We have made a perfect plan!” + +Surely man’s mind and heart are cunning. + + +But God will shoot at them. + +They will be suddenly struck down with an arrow. + + +Their own tongues shall ruin them. + +All who see them will shake their heads. + + +All mankind shall be afraid. + +They shall declare the work of God, + +and shall wisely ponder what he has done. + + +The righteous shall be glad in Yahweh, + +and shall take refuge in him. + +All the upright in heart shall praise him! + + + + +For the Chief Musician. A Psalm by David. A song. + +Praise waits for you, God, in Zion. + +Vows shall be performed to you. + + +You who hear prayer, + +all men will come to you. + + +Sins overwhelmed me, + +but you atoned for our transgressions. + + +Blessed is the one whom you choose and cause to come near, + +that he may live in your courts. + +We will be filled with the goodness of your house, + +your holy temple. + + +By awesome deeds of righteousness, you answer us, + +God of our salvation. + +You who are the hope of all the ends of the earth, + +of those who are far away on the sea. + + +By your power, you form the mountains, + +having armed yourself with strength. + + +You still the roaring of the seas, + +the roaring of their waves, + +and the turmoil of the nations. + + +They also who dwell in faraway places are afraid at your wonders. + +You call the morning’s dawn and the evening with songs of joy. + + +You visit the earth, and water it. + +You greatly enrich it. + +The river of God is full of water. + +You provide them grain, for so you have ordained it. + + +You drench its furrows. + +You level its ridges. + +You soften it with showers. + +You bless it with a crop. + + +You crown the year with your bounty. + +Your carts overflow with abundance. + + +The wilderness grasslands overflow. + +The hills are clothed with gladness. + + +The pastures are covered with flocks. + +The valleys also are clothed with grain. + +They shout for joy! + +They also sing. + + + + +For the Chief Musician. A song. A Psalm. + +Make a joyful shout to God, all the earth! + + +Sing to the glory of his name! + +Offer glory and praise! + + +Tell God, “How awesome are your deeds! + +Through the greatness of your power, your enemies submit themselves to you. + + +All the earth will worship you, + +and will sing to you; + +they will sing to your name.” +Selah. + + +Come, and see God’s deeds— + +awesome work on behalf of the children of men. + + +He turned the sea into dry land. + +They went through the river on foot. + +There, we rejoiced in him. + + +He rules by his might forever. + +His eyes watch the nations. + +Don’t let the rebellious rise up against him. +Selah. + + +Praise our God, you peoples! + +Make the sound of his praise heard, + + +who preserves our life among the living, + +and doesn’t allow our feet to be moved. + + +For you, God, have tested us. + +You have refined us, as silver is refined. + + +You brought us into prison. + +You laid a burden on our backs. + + +You allowed men to ride over our heads. + +We went through fire and through water, + +but you brought us to the place of abundance. + + +I will come into your temple with burnt offerings. + +I will pay my vows to you, + +which my lips promised, + +and my mouth spoke, when I was in distress. + + +I will offer to you burnt offerings of fat animals, + +with the offering of rams, + +I will offer bulls with goats. +Selah. + + +Come and hear, all you who fear God. + +I will declare what he has done for my soul. + + +I cried to him with my mouth. + +He was extolled with my tongue. + + +If I cherished sin in my heart, + +the Lord wouldn’t have listened. + + +But most certainly, God has listened. + +He has heard the voice of my prayer. + + +Blessed be God, who has not turned away my prayer, + +nor his loving kindness from me. + + + + +For the Chief Musician. With stringed instruments. A Psalm. A song. + +May God be merciful to us, bless us, + +and cause his face to shine on us. +Selah. + + +That your way may be known on earth, + +and your salvation among all nations, + + +let the peoples praise you, God. + +Let all the peoples praise you. + + +Oh let the nations be glad and sing for joy, + +for you will judge the peoples with equity, + +and govern the nations on earth. +Selah. + + +Let the peoples praise you, God. + +Let all the peoples praise you. + + +The earth has yielded its increase. + +God, even our own God, will bless us. + + +God will bless us. + +All the ends of the earth shall fear him. + + + + +For the Chief Musician. A Psalm by David. A song. + +Let God arise! + +Let his enemies be scattered! + +Let them who hate him also flee before him. + + +As smoke is driven away, + +so drive them away. + +As wax melts before the fire, + +so let the wicked perish at the presence of God. + + +But let the righteous be glad. + +Let them rejoice before God. + +Yes, let them rejoice with gladness. + + +Sing to God! Sing praises to his name! + +Extol him who rides on the clouds: + +to Yah, his name! + +Rejoice before him! + + +A father of the fatherless, and a defender of the widows, + +is God in his holy habitation. + + +God sets the lonely in families. + +He brings out the prisoners with singing, + +but the rebellious dwell in a sun-scorched land. + + + +God, when you went out before your people, + +when you marched through the wilderness... +Selah. + + +The earth trembled. + +The sky also poured down rain at the presence of the God of Sinai— + +at the presence of God, the God of Israel. + + +You, God, sent a plentiful rain. + +You confirmed your inheritance when it was weary. + + +Your congregation lived therein. + +You, God, prepared your goodness for the poor. + + +The Lord announced the word. + +The ones who proclaim it are a great company. + + +“Kings of armies flee! They flee!” + +She who waits at home divides the plunder, + + +while you sleep among the camp fires, + +the wings of a dove sheathed with silver, + +her feathers with shining gold. + + +When the Almighty scattered kings in her, + +it snowed on Zalmon. + + +The mountains of Bashan are majestic mountains. + +The mountains of Bashan are rugged. + + +Why do you look in envy, you rugged mountains, + +at the mountain where God chooses to reign? + +Yes, Yahweh will dwell there forever. + + +The chariots of God are tens of thousands and thousands of thousands. + +The Lord is among them, from Sinai, into the sanctuary. + + +You have ascended on high. + +You have led away captives. + +You have received gifts among people, + +yes, among the rebellious also, that Yah God might dwell there. + + + +Blessed be the Lord, who daily bears our burdens, + +even the God who is our salvation. +Selah. + + +God is to us a God of deliverance. + +To Yahweh, the Lord, belongs escape from death. + + +But God will strike through the head of his enemies, + +the hairy scalp of such a one as still continues in his guiltiness. + + +The Lord said, “I will bring you again from Bashan, + +I will bring you again from the depths of the sea, + + +that you may crush them, dipping your foot in blood, + +that the tongues of your dogs may have their portion from your enemies.” + + +They have seen your processions, God, + +even the processions of my God, my King, into the sanctuary. + + +The singers went before, the minstrels followed after, + +among the ladies playing with tambourines, + + +“Bless God in the congregations, + +even the Lord in the assembly of Israel!” + + +There is little Benjamin, their ruler, + +the princes of Judah, their council, + +the princes of Zebulun, and the princes of Naphtali. + + + +Your God has commanded your strength. + +Strengthen, God, that which you have done for us. + + +Because of your temple at Jerusalem, + +kings shall bring presents to you. + + +Rebuke the wild animal of the reeds, + +the multitude of the bulls with the calves of the peoples. + +Trample under foot the bars of silver. + +Scatter the nations who delight in war. + + +Princes shall come out of Egypt. + +Ethiopia shall hurry to stretch out her hands to God. + + +Sing to God, you kingdoms of the earth! + +Sing praises to the Lord—Selah— + + +to him who rides on the heaven of heavens, which are of old; + +behold, he utters his voice, a mighty voice. + + +Ascribe strength to God! + +His excellency is over Israel, + +his strength is in the skies. + + +You are awesome, God, in your sanctuaries. + +The God of Israel gives strength and power to his people. + +Praise be to God! + + + + +For the Chief Musician. To the tune of “Lilies.” By David. + +Save me, God, + +for the waters have come up to my neck! + + +I sink in deep mire, where there is no foothold. + +I have come into deep waters, where the floods overflow me. + + +I am weary with my crying. + +My throat is dry. + +My eyes fail looking for my God. + + +Those who hate me without a cause are more than the hairs of my head. + +Those who want to cut me off, being my enemies wrongfully, are mighty. + +I have to restore what I didn’t take away. + + +God, you know my foolishness. + +My sins aren’t hidden from you. + + +Don’t let those who wait for you be shamed through me, Lord Yahweh of Armies. + +Don’t let those who seek you be brought to dishonor through me, God of Israel. + + +Because for your sake, I have borne reproach. + +Shame has covered my face. + + +I have become a stranger to my brothers, + +an alien to my mother’s children. + + +For the zeal of your house consumes me. + +The reproaches of those who reproach you have fallen on me. + + +When I wept and I fasted, + +that was to my reproach. + + +When I made sackcloth my clothing, + +I became a byword to them. + + +Those who sit in the gate talk about me. + +I am the song of the drunkards. + + +But as for me, my prayer is to you, Yahweh, in an acceptable time. + +God, in the abundance of your loving kindness, answer me in the truth of your salvation. + + +Deliver me out of the mire, and don’t let me sink. + +Let me be delivered from those who hate me, and out of the deep waters. + + +Don’t let the flood waters overwhelm me, + +neither let the deep swallow me up. + +Don’t let the pit shut its mouth on me. + + +Answer me, Yahweh, for your loving kindness is good. + +According to the multitude of your tender mercies, turn to me. + + +Don’t hide your face from your servant, + +for I am in distress. + +Answer me speedily! + + +Draw near to my soul and redeem it. + +Ransom me because of my enemies. + + +You know my reproach, my shame, and my dishonor. + +My adversaries are all before you. + + +Reproach has broken my heart, and I am full of heaviness. + +I looked for some to take pity, but there was none; + +for comforters, but I found none. + + +They also gave me poison for my food. + +In my thirst, they gave me vinegar to drink. + + +Let their table before them become a snare. + +May it become a retribution and a trap. + + +Let their eyes be darkened, so that they can’t see. + +Let their backs be continually bent. + + +Pour out your indignation on them. + +Let the fierceness of your anger overtake them. + + +Let their habitation be desolate. + +Let no one dwell in their tents. + + +For they persecute him whom you have wounded. + +They tell of the sorrow of those whom you have hurt. + + +Charge them with crime upon crime. + +Don’t let them come into your righteousness. + + +Let them be blotted out of the book of life, + +and not be written with the righteous. + + +But I am in pain and distress. + +Let your salvation, God, protect me. + + +I will praise the name of God with a song, + +and will magnify him with thanksgiving. + + +It will please Yahweh better than an ox, + +or a bull that has horns and hoofs. + + +The humble have seen it, and are glad. + +You who seek after God, let your heart live. + + +For Yahweh hears the needy, + +and doesn’t despise his captive people. + + +Let heaven and earth praise him; + +the seas, and everything that moves therein! + + +For God will save Zion, and build the cities of Judah. + +They shall settle there, and own it. + + +The children also of his servants shall inherit it. + +Those who love his name shall dwell therein. + + + + +For the Chief Musician. By David. A reminder. + +Hurry, God, to deliver me. + +Come quickly to help me, Yahweh. + + +Let them be disappointed and confounded who seek my soul. + +Let those who desire my ruin be turned back in disgrace. + + +Let them be turned because of their shame + +who say, “Aha! Aha!” + + +Let all those who seek you rejoice and be glad in you. + +Let those who love your salvation continually say, + +Let God be exalted!” + + +But I am poor and needy. + +Come to me quickly, God. + +You are my help and my deliverer. + +Yahweh, don’t delay. + + + + + +In you, Yahweh, I take refuge. + +Never let me be disappointed. + + +Deliver me in your righteousness, and rescue me. + +Turn your ear to me, and save me. + + +Be to me a rock of refuge to which I may always go. + +Give the command to save me, + +for you are my rock and my fortress. + + +Rescue me, my God, from the hand of the wicked, + +from the hand of the unrighteous and cruel man. + + +For you are my hope, Lord Yahweh, + +my confidence from my youth. + + +I have relied on you from the womb. + +You are he who took me out of my mother’s womb. + +I will always praise you. + + +I am a marvel to many, + +but you are my strong refuge. + + +My mouth shall be filled with your praise, + +with your honor all day long. + + +Don’t reject me in my old age. + +Don’t forsake me when my strength fails. + + +For my enemies talk about me. + +Those who watch for my soul conspire together, + + +saying, “God has forsaken him. + +Pursue and take him, for no one will rescue him.” + + +God, don’t be far from me. + +My God, hurry to help me. + + +Let my accusers be disappointed and consumed. + +Let them be covered with disgrace and scorn who want to harm me. + + +But I will always hope, + +and will add to all of your praise. + + +My mouth will tell about your righteousness, + +and of your salvation all day, + +though I don’t know its full measure. + + +I will come with the mighty acts of the Lord Yahweh. + +I will make mention of your righteousness, even of yours alone. + + +God, you have taught me from my youth. + +Until now, I have declared your wondrous works. + + +Yes, even when I am old and gray-haired, God, don’t forsake me, + +until I have declared your strength to the next generation, + +your might to everyone who is to come. + + +God, your righteousness also reaches to the heavens. + +You have done great things. + +God, who is like you? + + +You, who have shown us many and bitter troubles, + +you will let me live. + +You will bring us up again from the depths of the earth. + + +Increase my honor + +and comfort me again. + + +I will also praise you with the harp for your faithfulness, my God. + +I sing praises to you with the lyre, Holy One of Israel. + + +My lips shall shout for joy! + +My soul, which you have redeemed, sings praises to you! + + +My tongue will also talk about your righteousness all day long, + +for they are disappointed, and they are confounded, + +who want to harm me. + + + + +By Solomon. + +God, give the king your justice; + +your righteousness to the royal son. + + +He will judge your people with righteousness, + +and your poor with justice. + + +The mountains shall bring prosperity to the people. + +The hills bring the fruit of righteousness. + + +He will judge the poor of the people. + +He will save the children of the needy, + +and will break the oppressor in pieces. + + +They shall fear you while the sun endures; + +and as long as the moon, throughout all generations. + + +He will come down like rain on the mown grass, + +as showers that water the earth. + + +In his days, the righteous shall flourish, + +and abundance of peace, until the moon is no more. + + +He shall have dominion also from sea to sea, + +from the River to the ends of the earth. + + +Those who dwell in the wilderness shall bow before him. + +His enemies shall lick the dust. + + +The kings of Tarshish and of the islands will bring tribute. + +The kings of Sheba and Seba shall offer gifts. + + +Yes, all kings shall fall down before him. + +All nations shall serve him. + + +For he will deliver the needy when he cries; + +the poor, who has no helper. + + +He will have pity on the poor and needy. + +He will save the souls of the needy. + + +He will redeem their soul from oppression and violence. + +Their blood will be precious in his sight. + + +He will live; and Sheba’s gold will be given to him. + +Men will pray for him continually. + +They will bless him all day long. + + +Abundance of grain shall be throughout the land. + +Its fruit sways like Lebanon. + +Let it flourish, thriving like the grass of the field. + + +His name endures forever. + +His name continues as long as the sun. + +Men shall be blessed by him. + +All nations will call him blessed. + + + +Praise be to Yahweh God, the God of Israel, + +who alone does marvelous deeds. + + +Blessed be his glorious name forever! + +Let the whole earth be filled with his glory! + +Amen and amen. + + + +

This ends the prayers by David, the son of Jesse. + +

+ + +

BOOK 3 +

+A Psalm by Asaph. + +Surely God73:1 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). is good to Israel, + +to those who are pure in heart. + + +But as for me, my feet were almost gone. + +My steps had nearly slipped. + + +For I was envious of the arrogant, + +when I saw the prosperity of the wicked. + + +For there are no struggles in their death, + +but their strength is firm. + + +They are free from burdens of men, + +neither are they plagued like other men. + + +Therefore pride is like a chain around their neck. + +Violence covers them like a garment. + + +Their eyes bulge with fat. + +Their minds pass the limits of conceit. + + +They scoff and speak with malice. + +In arrogance, they threaten oppression. + + +They have set their mouth in the heavens. + +Their tongue walks through the earth. + + +Therefore their people return to them, + +and they drink up waters of abundance. + + +They say, “How does God know? + +Is there knowledge in the Most High?” + + +Behold, these are the wicked. + +Being always at ease, they increase in riches. + + +Surely I have cleansed my heart in vain, + +and washed my hands in innocence, + + +For all day long I have been plagued, + +and punished every morning. + + +If I had said, “I will speak thus”, + +behold, I would have betrayed the generation of your children. + + +When I tried to understand this, + +it was too painful for me— + + +until I entered God’s sanctuary, + +and considered their latter end. + + +Surely you set them in slippery places. + +You throw them down to destruction. + + +How they are suddenly destroyed! + +They are completely swept away with terrors. + + +As a dream when one wakes up, + +so, Lord,73:20 +The word translated “Lord” is “Adonai.” when you awake, you will despise their fantasies. + + +For my soul was grieved. + +I was embittered in my heart. + + +I was so senseless and ignorant. + +I was a brute beast before you. + + +Nevertheless, I am continually with you. + +You have held my right hand. + + +You will guide me with your counsel, + +and afterward receive me to glory. + + +Whom do I have in heaven? + +There is no one on earth whom I desire besides you. + + +My flesh and my heart fails, + +but God is the strength of my heart and my portion forever. + + +For, behold, those who are far from you shall perish. + +You have destroyed all those who are unfaithful to you. + + +But it is good for me to come close to God. + +I have made the Lord Yahweh73:28 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. my refuge, + +that I may tell of all your works. + + + + + +A contemplation by Asaph. + +God, why have you rejected us forever? + +Why does your anger smolder against the sheep of your pasture? + + +Remember your congregation, which you purchased of old, + +which you have redeemed to be the tribe of your inheritance: + +Mount Zion, in which you have lived. + + +Lift up your feet to the perpetual ruins, + +all the evil that the enemy has done in the sanctuary. + + +Your adversaries have roared in the middle of your assembly. + +They have set up their standards as signs. + + +They behaved like men wielding axes, + +cutting through a thicket of trees. + + +Now they break all its carved work down with hatchet and hammers. + + +They have burned your sanctuary to the ground. + +They have profaned the dwelling place of your Name. + + +They said in their heart, “We will crush them completely.” + +They have burned up all the places in the land where God was worshiped. + + +We see no miraculous signs. + +There is no longer any prophet, + +neither is there among us anyone who knows how long. + + +How long, God, shall the adversary reproach? + +Shall the enemy blaspheme your name forever? + + +Why do you draw back your hand, even your right hand? + +Take it from your chest and consume them! + + + +Yet God is my King of old, + +working salvation throughout the earth. + + +You divided the sea by your strength. + +You broke the heads of the sea monsters in the waters. + + +You broke the heads of Leviathan in pieces. + +You gave him as food to people and desert creatures. + + +You opened up spring and stream. + +You dried up mighty rivers. + + +The day is yours, the night is also yours. + +You have prepared the light and the sun. + + +You have set all the boundaries of the earth. + +You have made summer and winter. + + + +Remember this, that the enemy has mocked you, Yahweh. + +Foolish people have blasphemed your name. + + +Don’t deliver the soul of your dove to wild beasts. + +Don’t forget the life of your poor forever. + + +Honor your covenant, + +for haunts of violence fill the dark places of the earth. + + +Don’t let the oppressed return ashamed. + +Let the poor and needy praise your name. + + +Arise, God! Plead your own cause. + +Remember how the foolish man mocks you all day. + + +Don’t forget the voice of your adversaries. + +The tumult of those who rise up against you ascends continually. + + + + + +For the Chief Musician. To the tune of “Do Not Destroy.” A Psalm by Asaph. A song. + +We give thanks to you, God. + +We give thanks, for your Name is near. + +Men tell about your wondrous works. + + + +When I choose the appointed time, + +I will judge blamelessly. + + +The earth and all its inhabitants quake. + +I firmly hold its pillars. +Selah. + + +I said to the arrogant, “Don’t boast!” + +I said to the wicked, “Don’t lift up the horn. + + +Don’t lift up your horn on high. + +Don’t speak with a stiff neck.” + + +For neither from the east, nor from the west, + +nor yet from the south, comes exaltation. + + +But God is the judge. + +He puts down one, and lifts up another. + + +For in Yahweh’s hand there is a cup, + +full of foaming wine mixed with spices. + +He pours it out. + +Indeed the wicked of the earth drink and drink it to its very dregs. + + + +But I will declare this forever: + +I will sing praises to the God of Jacob. + + +I will cut off all the horns of the wicked, + +but the horns of the righteous shall be lifted up. + + + + + +For the Chief Musician. On stringed instruments. A Psalm by Asaph. A song. + +In Judah, God is known. + +His name is great in Israel. + + +His tabernacle is also in Salem. + +His dwelling place in Zion. + + +There he broke the flaming arrows of the bow, + +the shield, and the sword, and the weapons of war. +Selah. + + +Glorious are you, and excellent, + +more than mountains of game. + + +Valiant men lie plundered, + +they have slept their last sleep. + +None of the men of war can lift their hands. + + +At your rebuke, God of Jacob, + +both chariot and horse are cast into a dead sleep. + + +You, even you, are to be feared. + +Who can stand in your sight when you are angry? + + +You pronounced judgment from heaven. + +The earth feared, and was silent, + + +when God arose to judgment, + +to save all the afflicted ones of the earth. +Selah. + + +Surely the wrath of man praises you. + +The survivors of your wrath are restrained. + + +Make vows to Yahweh your God, and fulfill them! + +Let all of his neighbors bring presents to him who is to be feared. + + +He will cut off the spirit of princes. + +He is feared by the kings of the earth. + + + + + +For the Chief Musician. To Jeduthun. A Psalm by Asaph. + +My cry goes to God! + +Indeed, I cry to God for help, + +and for him to listen to me. + + +In the day of my trouble I sought the Lord. + +My hand was stretched out in the night, and didn’t get tired. + +My soul refused to be comforted. + + +I remember God, and I groan. + +I complain, and my spirit is overwhelmed. +Selah. + + + +You hold my eyelids open. + +I am so troubled that I can’t speak. + + +I have considered the days of old, + +the years of ancient times. + + +I remember my song in the night. + +I consider in my own heart; + +my spirit diligently inquires: + + +Will the Lord reject us forever? + +Will he be favorable no more? + + +Has his loving kindness vanished forever? + +Does his promise fail for generations? + + +Has God forgotten to be gracious? + +Has he, in anger, withheld his compassion?” +Selah. + + +Then I thought, “I will appeal to this: + +the years of the right hand of the Most High.” + + +I will remember Yah’s deeds; + +for I will remember your wonders of old. + + +I will also meditate on all your work, + +and consider your doings. + + +Your way, God, is in the sanctuary. + +What god is great like God? + + +You are the God who does wonders. + +You have made your strength known among the peoples. + + +You have redeemed your people with your arm, + +the sons of Jacob and Joseph. +Selah. + + +The waters saw you, God. + +The waters saw you, and they writhed. + +The depths also convulsed. + + +The clouds poured out water. + +The skies resounded with thunder. + +Your arrows also flashed around. + + +The voice of your thunder was in the whirlwind. + +The lightnings lit up the world. + +The earth trembled and shook. + + +Your way was through the sea, + +your paths through the great waters. + +Your footsteps were not known. + + +You led your people like a flock, + +by the hand of Moses and Aaron. + + + + + +A contemplation by Asaph. + +Hear my teaching, my people. + +Turn your ears to the words of my mouth. + + +I will open my mouth in a parable. + +I will utter dark sayings of old, + + +which we have heard and known, + +and our fathers have told us. + + +We will not hide them from their children, + +telling to the generation to come the praises of Yahweh, + +his strength, and his wondrous deeds that he has done. + + +For he established a covenant in Jacob, + +and appointed a teaching in Israel, + +which he commanded our fathers, + +that they should make them known to their children; + + +that the generation to come might know, even the children who should be born; + +who should arise and tell their children, + + +that they might set their hope in God, + +and not forget God’s deeds, + +but keep his commandments, + + +and might not be as their fathers— + +a stubborn and rebellious generation, + +a generation that didn’t make their hearts loyal, + +whose spirit was not steadfast with God. + + +The children of Ephraim, being armed and carrying bows, + +turned back in the day of battle. + + +They didn’t keep God’s covenant, + +and refused to walk in his law. + + +They forgot his doings, + +his wondrous deeds that he had shown them. + + +He did marvelous things in the sight of their fathers, + +in the land of Egypt, in the field of Zoan. + + +He split the sea, and caused them to pass through. + +He made the waters stand as a heap. + + +In the daytime he also led them with a cloud, + +and all night with a light of fire. + + +He split rocks in the wilderness, + +and gave them drink abundantly as out of the depths. + + +He brought streams also out of the rock, + +and caused waters to run down like rivers. + + +Yet they still went on to sin against him, + +to rebel against the Most High in the desert. + + +They tempted God in their heart + +by asking food according to their desire. + + +Yes, they spoke against God. + +They said, “Can God prepare a table in the wilderness? + + +Behold, he struck the rock, so that waters gushed out, + +and streams overflowed. + +Can he give bread also? + +Will he provide meat for his people?” + + +Therefore Yahweh heard, and was angry. + +A fire was kindled against Jacob, + +anger also went up against Israel, + + +because they didn’t believe in God, + +and didn’t trust in his salvation. + + +Yet he commanded the skies above, + +and opened the doors of heaven. + + +He rained down manna on them to eat, + +and gave them food from the sky. + + +Man ate the bread of angels. + +He sent them food to the full. + + +He caused the east wind to blow in the sky. + +By his power he guided the south wind. + + +He also rained meat on them as the dust, + +winged birds as the sand of the seas. + + +He let them fall in the middle of their camp, + +around their habitations. + + +So they ate, and were well filled. + +He gave them their own desire. + + +They didn’t turn from their cravings. + +Their food was yet in their mouths, + + +when the anger of God went up against them, + +killed some of their strongest, + +and struck down the young men of Israel. + + +For all this they still sinned, + +and didn’t believe in his wondrous works. + + +Therefore he consumed their days in vanity, + +and their years in terror. + + +When he killed them, then they inquired after him. + +They returned and sought God earnestly. + + +They remembered that God was their rock, + +the Most High God, their redeemer. + + +But they flattered him with their mouth, + +and lied to him with their tongue. + + +For their heart was not right with him, + +neither were they faithful in his covenant. + + +But he, being merciful, forgave iniquity, and didn’t destroy them. + +Yes, many times he turned his anger away, + +and didn’t stir up all his wrath. + + +He remembered that they were but flesh, + +a wind that passes away, and doesn’t come again. + + +How often they rebelled against him in the wilderness, + +and grieved him in the desert! + + +They turned again and tempted God, + +and provoked the Holy One of Israel. + + +They didn’t remember his hand, + +nor the day when he redeemed them from the adversary; + + +how he set his signs in Egypt, + +his wonders in the field of Zoan, + + +he turned their rivers into blood, + +and their streams, so that they could not drink. + + +He sent among them swarms of flies, which devoured them; + +and frogs, which destroyed them. + + +He also gave their increase to the caterpillar, + +and their labor to the locust. + + +He destroyed their vines with hail, + +their sycamore fig trees with frost. + + +He also gave over their livestock to the hail, + +and their flocks to hot thunderbolts. + + +He threw on them the fierceness of his anger, + +wrath, indignation, and trouble, + +and a band of angels of evil. + + +He made a path for his anger. + +He didn’t spare their soul from death, + +but gave their life over to the pestilence, + + +and struck all the firstborn in Egypt, + +the chief of their strength in the tents of Ham. + + +But he led out his own people like sheep, + +and guided them in the wilderness like a flock. + + +He led them safely, so that they weren’t afraid, + +but the sea overwhelmed their enemies. + + +He brought them to the border of his sanctuary, + +to this mountain, which his right hand had taken. + + +He also drove out the nations before them, + +allotted them for an inheritance by line, + +and made the tribes of Israel to dwell in their tents. + + +Yet they tempted and rebelled against the Most High God, + +and didn’t keep his testimonies, + + +but turned back, and dealt treacherously like their fathers. + +They were twisted like a deceitful bow. + + +For they provoked him to anger with their high places, + +and moved him to jealousy with their engraved images. + + +When God heard this, he was angry, + +and greatly abhorred Israel, + + +so that he abandoned the tent of Shiloh, + +the tent which he placed among men, + + +and delivered his strength into captivity, + +his glory into the adversary’s hand. + + +He also gave his people over to the sword, + +and was angry with his inheritance. + + +Fire devoured their young men. + +Their virgins had no wedding song. + + +Their priests fell by the sword, + +and their widows couldn’t weep. + + +Then the Lord awakened as one out of sleep, + +like a mighty man who shouts by reason of wine. + + +He struck his adversaries backward. + +He put them to a perpetual reproach. + + +Moreover he rejected the tent of Joseph, + +and didn’t choose the tribe of Ephraim, + + +But chose the tribe of Judah, + +Mount Zion which he loved. + + +He built his sanctuary like the heights, + +like the earth which he has established forever. + + +He also chose David his servant, + +and took him from the sheepfolds; + + +from following the ewes that have their young, + +he brought him to be the shepherd of Jacob, his people, + +and Israel, his inheritance. + + +So he was their shepherd according to the integrity of his heart, + +and guided them by the skillfulness of his hands. + + + + + +A Psalm by Asaph. + +God, the nations have come into your inheritance. + +They have defiled your holy temple. + +They have laid Jerusalem in heaps. + + +They have given the dead bodies of your servants to be food for the birds of the sky, + +the flesh of your saints to the animals of the earth. + + +They have shed their blood like water around Jerusalem. + +There was no one to bury them. + + +We have become a reproach to our neighbors, + +a scoffing and derision to those who are around us. + + +How long, Yahweh? + +Will you be angry forever? + +Will your jealousy burn like fire? + + +Pour out your wrath on the nations that don’t know you, + +on the kingdoms that don’t call on your name, + + +for they have devoured Jacob, + +and destroyed his homeland. + + +Don’t hold the iniquities of our forefathers against us. + +Let your tender mercies speedily meet us, + +for we are in desperate need. + + +Help us, God of our salvation, for the glory of your name. + +Deliver us, and forgive our sins, for your name’s sake. + + +Why should the nations say, “Where is their God?” + +Let it be known among the nations, before our eyes, + +that vengeance for your servantsblood is being poured out. + + +Let the sighing of the prisoner come before you. + +According to the greatness of your power, preserve those who are sentenced to death. + + +Pay back to our neighbors seven times into their bosom + +their reproach with which they have reproached you, Lord. + + +So we, your people and sheep of your pasture, + +will give you thanks forever. + +We will praise you forever, to all generations. + + + + + +For the Chief Musician. To the tune of “The Lilies of the Covenant.” A Psalm by Asaph. + +Hear us, Shepherd of Israel, + +you who lead Joseph like a flock, + +you who sit above the cherubim, shine out. + + +Before Ephraim, Benjamin, and Manasseh, stir up your might! + +Come to save us! + + +Turn us again, God. + +Cause your face to shine, + +and we will be saved. + + + +Yahweh God of Armies, + +how long will you be angry against the prayer of your people? + + +You have fed them with the bread of tears, + +and given them tears to drink in large measure. + + +You make us a source of contention to our neighbors. + +Our enemies laugh among themselves. + + +Turn us again, God of Armies. + +Cause your face to shine, + +and we will be saved. + + + +You brought a vine out of Egypt. + +You drove out the nations, and planted it. + + +You cleared the ground for it. + +It took deep root, and filled the land. + + +The mountains were covered with its shadow. + +Its boughs were like God’s cedars. + + +It sent out its branches to the sea, + +its shoots to the River. + + +Why have you broken down its walls, + +so that all those who pass by the way pluck it? + + +The boar out of the wood ravages it. + +The wild animals of the field feed on it. + + +Turn again, we beg you, God of Armies. + +Look down from heaven, and see, and visit this vine, + + +the stock which your right hand planted, + +the branch that you made strong for yourself. + + +It’s burned with fire. + +It’s cut down. + +They perish at your rebuke. + + +Let your hand be on the man of your right hand, + +on the son of man whom you made strong for yourself. + + +So we will not turn away from you. + +Revive us, and we will call on your name. + + +Turn us again, Yahweh God of Armies. + +Cause your face to shine, and we will be saved. + + + + +For the Chief Musician. On an instrument of Gath. By Asaph. + +Sing aloud to God, our strength! + +Make a joyful shout to the God of Jacob! + + +Raise a song, and bring here the tambourine, + +the pleasant lyre with the harp. + + +Blow the trumpet at the New Moon, + +at the full moon, on our feast day. + + +For it is a statute for Israel, + +an ordinance of the God of Jacob. + + +He appointed it in Joseph for a covenant, + +when he went out over the land of Egypt, + +I heard a language that I didn’t know. + + +I removed his shoulder from the burden. + +His hands were freed from the basket. + + +You called in trouble, and I delivered you. + +I answered you in the secret place of thunder. + +I tested you at the waters of Meribah.” +Selah. + + + +Hear, my people, and I will testify to you, + +Israel, if you would listen to me! + + +There shall be no strange god in you, + +neither shall you worship any foreign god. + + +I am Yahweh, your God, + +who brought you up out of the land of Egypt. + +Open your mouth wide, and I will fill it. + + +But my people didn’t listen to my voice. + +Israel desired none of me. + + +So I let them go after the stubbornness of their hearts, + +that they might walk in their own counsels. + + +Oh that my people would listen to me, + +that Israel would walk in my ways! + + +I would soon subdue their enemies, + +and turn my hand against their adversaries. + + +The haters of Yahweh would cringe before him, + +and their punishment would last forever. + + +But he would have also fed them with the finest of the wheat. + +I will satisfy you with honey out of the rock.” + + + + +A Psalm by Asaph. + +God presides in the great assembly. + +He judges among the gods. + + +How long will you judge unjustly, + +and show partiality to the wicked?” +Selah. + + + +Defend the weak, the poor, and the fatherless. + +Maintain the rights of the poor and oppressed. + + +Rescue the weak and needy. + +Deliver them out of the hand of the wicked.” + + +They don’t know, neither do they understand. + +They walk back and forth in darkness. + +All the foundations of the earth are shaken. + + +I said, “You are gods, + +all of you are sons of the Most High. + + +Nevertheless you shall die like men, + +and fall like one of the rulers.” + + +Arise, God, judge the earth, + +for you inherit all of the nations. + + + + +A song. A Psalm by Asaph. + +God, don’t keep silent. + +Don’t keep silent, + +and don’t be still, God. + + +For, behold, your enemies are stirred up. + +Those who hate you have lifted up their heads. + + +They conspire with cunning against your people. + +They plot against your cherished ones. + + +Come,” they say, “let’s destroy them as a nation, + +that the name of Israel may be remembered no more.” + + +For they have conspired together with one mind. + +They form an alliance against you. + + +The tents of Edom and the Ishmaelites; + +Moab, and the Hagrites; + + +Gebal, Ammon, and Amalek; + +Philistia with the inhabitants of Tyre; + + +Assyria also is joined with them. + +They have helped the children of Lot. +Selah. + + +Do to them as you did to Midian, + +as to Sisera, as to Jabin, at the river Kishon; + + +who perished at Endor, + +who became as dung for the earth. + + +Make their nobles like Oreb and Zeeb, + +yes, all their princes like Zebah and Zalmunna, + + +who said, “Let’s take possession of God’s pasture lands.” + + +My God, make them like tumbleweed, + +like chaff before the wind. + + +As the fire that burns the forest, + +as the flame that sets the mountains on fire, + + +so pursue them with your tempest, + +and terrify them with your storm. + + +Fill their faces with confusion, + +that they may seek your name, Yahweh. + + +Let them be disappointed and dismayed forever. + +Yes, let them be confounded and perish; + + +that they may know that you alone, whose name is Yahweh, + +are the Most High over all the earth. + + + + +For the Chief Musician. On an instrument of Gath. A Psalm by the sons of Korah. + +How lovely are your dwellings, + +Yahweh of Armies! + + +My soul longs, and even faints for the courts of Yahweh. + +My heart and my flesh cry out for the living God. + + +Yes, the sparrow has found a home, + +and the swallow a nest for herself, where she may have her young, + +near your altars, Yahweh of Armies, my King, and my God. + + +Blessed are those who dwell in your house. + +They are always praising you. +Selah. + + +Blessed are those whose strength is in you, + +who have set their hearts on a pilgrimage. + + +Passing through the valley of Weeping, they make it a place of springs. + +Yes, the autumn rain covers it with blessings. + + +They go from strength to strength. + +Every one of them appears before God in Zion. + + +Yahweh, God of Armies, hear my prayer. + +Listen, God of Jacob. +Selah. + + +Behold, God our shield, + +look at the face of your anointed. + + +For a day in your courts is better than a thousand. + +I would rather be a doorkeeper in the house of my God, + +than to dwell in the tents of wickedness. + + +For Yahweh God is a sun and a shield. + +Yahweh will give grace and glory. + +He withholds no good thing from those who walk blamelessly. + + +Yahweh of Armies, + +blessed is the man who trusts in you. + + + + +For the Chief Musician. A Psalm by the sons of Korah. + +Yahweh, you have been favorable to your land. + +You have restored the fortunes of Jacob. + + +You have forgiven the iniquity of your people. + +You have covered all their sin. +Selah. + + +You have taken away all your wrath. + +You have turned from the fierceness of your anger. + + +Turn us, God of our salvation, + +and cause your indignation toward us to cease. + + +Will you be angry with us forever? + +Will you draw out your anger to all generations? + + +Won’t you revive us again, + +that your people may rejoice in you? + + +Show us your loving kindness, Yahweh. + +Grant us your salvation. + + +I will hear what God, Yahweh, will speak, + +for he will speak peace to his people, his saints; + +but let them not turn again to folly. + + +Surely his salvation is near those who fear him, + +that glory may dwell in our land. + + +Mercy and truth meet together. + +Righteousness and peace have kissed each other. + + +Truth springs out of the earth. + +Righteousness has looked down from heaven. + + +Yes, Yahweh will give that which is good. + +Our land will yield its increase. + + +Righteousness goes before him, + +and prepares the way for his steps. + + + + +A Prayer by David. + +Hear, Yahweh, and answer me, + +for I am poor and needy. + + +Preserve my soul, for I am godly. + +You, my God, save your servant who trusts in you. + + +Be merciful to me, Lord, + +for I call to you all day long. + + +Bring joy to the soul of your servant, + +for to you, Lord, do I lift up my soul. + + +For you, Lord, are good, and ready to forgive, + +abundant in loving kindness to all those who call on you. + + +Hear, Yahweh, my prayer. + +Listen to the voice of my petitions. + + +In the day of my trouble I will call on you, + +for you will answer me. + + +There is no one like you among the gods, Lord, + +nor any deeds like your deeds. + + +All nations you have made will come and worship before you, Lord. + +They shall glorify your name. + + +For you are great, and do wondrous things. + +You are God alone. + + +Teach me your way, Yahweh. + +I will walk in your truth. + +Make my heart undivided to fear your name. + + +I will praise you, Lord my God, with my whole heart. + +I will glorify your name forever more. + + +For your loving kindness is great toward me. + +You have delivered my soul from the lowest Sheol.86:13 +Sheol is the place of the dead. + + +God, the proud have risen up against me. + +A company of violent men have sought after my soul, + +and they don’t hold regard for you before them. + + +But you, Lord, are a merciful and gracious God, + +slow to anger, and abundant in loving kindness and truth. + + +Turn to me, and have mercy on me! + +Give your strength to your servant. + +Save the son of your servant. + + +Show me a sign of your goodness, + +that those who hate me may see it, and be shamed, + +because you, Yahweh, have helped me, and comforted me. + + + + +A Psalm by the sons of Korah; a Song. + +His foundation is in the holy mountains. + + +Yahweh loves the gates of Zion more than all the dwellings of Jacob. + + +Glorious things are spoken about you, city of God. +Selah. + + +I will record Rahab87:4 +Rahab is a reference to Egypt. and Babylon among those who acknowledge me. + +Behold, Philistia, Tyre, and also Ethiopia: + +This one was born there.” + + +Yes, of Zion it will be said, “This one and that one was born in her;” + +the Most High himself will establish her. + + +Yahweh will count, when he writes up the peoples, + +This one was born there.” +Selah. + + +Those who sing as well as those who dance say, + +All my springs are in you.” + + + + +A Song. A Psalm by the sons of Korah. For the Chief Musician. To the tune of “The Suffering of Affliction.” A contemplation by Heman, the Ezrahite. + +Yahweh, the God of my salvation, + +I have cried day and night before you. + + +Let my prayer enter into your presence. + +Turn your ear to my cry. + + +For my soul is full of troubles. + +My life draws near to Sheol.88:3 +Sheol is the place of the dead. + + +I am counted among those who go down into the pit. + +I am like a man who has no help, + + +set apart among the dead, + +like the slain who lie in the grave, + +whom you remember no more. + +They are cut off from your hand. + + +You have laid me in the lowest pit, + +in the darkest depths. + + +Your wrath lies heavily on me. + +You have afflicted me with all your waves. +Selah. + + +You have taken my friends from me. + +You have made me an abomination to them. + +I am confined, and I can’t escape. + + +My eyes are dim from grief. + +I have called on you daily, Yahweh. + +I have spread out my hands to you. + + +Do you show wonders to the dead? + +Do the departed spirits rise up and praise you? +Selah. + + +Is your loving kindness declared in the grave? + +Or your faithfulness in Destruction? + + +Are your wonders made known in the dark? + +Or your righteousness in the land of forgetfulness? + + +But to you, Yahweh, I have cried. + +In the morning, my prayer comes before you. + + +Yahweh, why do you reject my soul? + +Why do you hide your face from me? + + +I am afflicted and ready to die from my youth up. + +While I suffer your terrors, I am distracted. + + +Your fierce wrath has gone over me. + +Your terrors have cut me off. + + +They came around me like water all day long. + +They completely engulfed me. + + +You have put lover and friend far from me, + +and my friends into darkness. + + + + +A contemplation by Ethan, the Ezrahite. + +I will sing of the loving kindness of Yahweh forever. + +With my mouth, I will make known your faithfulness to all generations. + + +I indeed declare, “Love stands firm forever. + +You established the heavens. + +Your faithfulness is in them.” + + + +I have made a covenant with my chosen one, + +I have sworn to David, my servant, + + +I will establish your offspring forever, + +and build up your throne to all generations.’” +Selah. + + +The heavens will praise your wonders, Yahweh, + +your faithfulness also in the assembly of the holy ones. + + +For who in the skies can be compared to Yahweh? + +Who among the sons of the heavenly beings is like Yahweh, + + +a very awesome God in the council of the holy ones, + +to be feared above all those who are around him? + + +Yahweh, God of Armies, who is a mighty one, like you? + +Yah, your faithfulness is around you. + + +You rule the pride of the sea. + +When its waves rise up, you calm them. + + +You have broken Rahab in pieces, like one of the slain. + +You have scattered your enemies with your mighty arm. + + +The heavens are yours. + +The earth also is yours, + +the world and its fullness. + +You have founded them. + + +You have created the north and the south. + +Tabor and Hermon rejoice in your name. + + +You have a mighty arm. + +Your hand is strong, and your right hand is exalted. + + +Righteousness and justice are the foundation of your throne. + +Loving kindness and truth go before your face. + + +Blessed are the people who learn to acclaim you. + +They walk in the light of your presence, Yahweh. + + +In your name they rejoice all day. + +In your righteousness, they are exalted. + + +For you are the glory of their strength. + +In your favor, our horn will be exalted. + + +For our shield belongs to Yahweh, + +our king to the Holy One of Israel. + + + +Then you spoke in vision to your saints, + +and said, “I have given strength to the warrior. + +I have exalted a young man from the people. + + +I have found David, my servant. + +I have anointed him with my holy oil, + + +with whom my hand shall be established. + +My arm will also strengthen him. + + +No enemy will tax him. + +No wicked man will oppress him. + + +I will beat down his adversaries before him, + +and strike those who hate him. + + +But my faithfulness and my loving kindness will be with him. + +In my name, his horn will be exalted. + + +I will set his hand also on the sea, + +and his right hand on the rivers. + + +He will call to me, ‘You are my Father, + +my God, and the rock of my salvation!’ + + +I will also appoint him my firstborn, + +the highest of the kings of the earth. + + +I will keep my loving kindness for him forever more. + +My covenant will stand firm with him. + + +I will also make his offspring endure forever, + +and his throne as the days of heaven. + + +If his children forsake my law, + +and don’t walk in my ordinances; + + +if they break my statutes, + +and don’t keep my commandments; + + +then I will punish their sin with the rod, + +and their iniquity with stripes. + + +But I will not completely take my loving kindness from him, + +nor allow my faithfulness to fail. + + +I will not break my covenant, + +nor alter what my lips have uttered. + + +Once I have sworn by my holiness, + +I will not lie to David. + + +His offspring will endure forever, + +his throne like the sun before me. + + +It will be established forever like the moon, + +the faithful witness in the sky.” +Selah. + + + +But you have rejected and spurned. + +You have been angry with your anointed. + + +You have renounced the covenant of your servant. + +You have defiled his crown in the dust. + + +You have broken down all his hedges. + +You have brought his strongholds to ruin. + + +All who pass by the way rob him. + +He has become a reproach to his neighbors. + + +You have exalted the right hand of his adversaries. + +You have made all of his enemies rejoice. + + +Yes, you turn back the edge of his sword, + +and haven’t supported him in battle. + + +You have ended his splendor, + +and thrown his throne down to the ground. + + +You have shortened the days of his youth. + +You have covered him with shame. +Selah. + + +How long, Yahweh? + +Will you hide yourself forever? + +Will your wrath burn like fire? + + +Remember how short my time is, + +for what vanity you have created all the children of men! + + +What man is he who shall live and not see death, + +who shall deliver his soul from the power of Sheol?89:48 +Sheol is the place of the dead. +Selah. + + +Lord, where are your former loving kindnesses, + +which you swore to David in your faithfulness? + + +Remember, Lord, the reproach of your servants, + +how I bear in my heart the taunts of all the mighty peoples, + + +With which your enemies have mocked, Yahweh, + +with which they have mocked the footsteps of your anointed one. + + + +Blessed be Yahweh forever more. + +Amen, and Amen. + + + + +

BOOK 4 +

+A Prayer by Moses, the man of God.90:0 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + +Lord,90:1 +The word translated “Lord” is “Adonai.” you have been our dwelling place for all generations. + + +Before the mountains were born, + +before you had formed the earth and the world, + +even from everlasting to everlasting, you are God. + + +You turn man to destruction, saying, + +Return, you children of men.” + + +For a thousand years in your sight are just like yesterday when it is past, + +like a watch in the night. + + +You sweep them away as they sleep. + +In the morning they sprout like new grass. + + +In the morning it sprouts and springs up. + +By evening, it is withered and dry. + + +For we are consumed in your anger. + +We are troubled in your wrath. + + +You have set our iniquities before you, + +our secret sins in the light of your presence. + + +For all our days have passed away in your wrath. + +We bring our years to an end as a sigh. + + +The days of our years are seventy, + +or even by reason of strength eighty years; + +yet their pride is but labor and sorrow, + +for it passes quickly, and we fly away. + + +Who knows the power of your anger, + +your wrath according to the fear that is due to you? + + +So teach us to count our days, + +that we may gain a heart of wisdom. + + +Relent, Yahweh!90:13 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. + +How long? + +Have compassion on your servants! + + +Satisfy us in the morning with your loving kindness, + +that we may rejoice and be glad all our days. + + +Make us glad for as many days as you have afflicted us, + +for as many years as we have seen evil. + + +Let your work appear to your servants, + +your glory to their children. + + +Let the favor of the Lord our God be on us. + +Establish the work of our hands for us. + +Yes, establish the work of our hands. + + + + +He who dwells in the secret place of the Most High + +will rest in the shadow of the Almighty. + + +I will say of Yahweh, “He is my refuge and my fortress; + +my God, in whom I trust.” + + +For he will deliver you from the snare of the fowler, + +and from the deadly pestilence. + + +He will cover you with his feathers. + +Under his wings you will take refuge. + +His faithfulness is your shield and rampart. + + +You shall not be afraid of the terror by night, + +nor of the arrow that flies by day, + + +nor of the pestilence that walks in darkness, + +nor of the destruction that wastes at noonday. + + +A thousand may fall at your side, + +and ten thousand at your right hand; + +but it will not come near you. + + +You will only look with your eyes, + +and see the recompense of the wicked. + + +Because you have made Yahweh your refuge, + +and the Most High your dwelling place, + + +no evil shall happen to you, + +neither shall any plague come near your dwelling. + + +For he will put his angels in charge of you, + +to guard you in all your ways. + + +They will bear you up in their hands, + +so that you won’t dash your foot against a stone. + + +You will tread on the lion and cobra. + +You will trample the young lion and the serpent underfoot. + + +Because he has set his love on me, therefore I will deliver him. + +I will set him on high, because he has known my name. + + +He will call on me, and I will answer him. + +I will be with him in trouble. + +I will deliver him, and honor him. + + +I will satisfy him with long life, + +and show him my salvation.” + + + + +A Psalm. A song for the Sabbath day. + +It is a good thing to give thanks to Yahweh, + +to sing praises to your name, Most High, + + +to proclaim your loving kindness in the morning, + +and your faithfulness every night, + + +with the ten-stringed lute, with the harp, + +and with the melody of the lyre. + + +For you, Yahweh, have made me glad through your work. + +I will triumph in the works of your hands. + + +How great are your works, Yahweh! + +Your thoughts are very deep. + + +A senseless man doesn’t know, + +neither does a fool understand this: + + +though the wicked spring up as the grass, + +and all the evildoers flourish, + +they will be destroyed forever. + + +But you, Yahweh, are on high forever more. + + +For behold, your enemies, Yahweh, + +for behold, your enemies shall perish. + +All the evildoers will be scattered. + + +But you have exalted my horn like that of the wild ox. + +I am anointed with fresh oil. + + +My eye has also seen my enemies. + +My ears have heard of the wicked enemies who rise up against me. + + +The righteous shall flourish like the palm tree. + +He will grow like a cedar in Lebanon. + + +They are planted in Yahweh’s house. + +They will flourish in our God’s courts. + + +They will still produce fruit in old age. + +They will be full of sap and green, + + +to show that Yahweh is upright. + +He is my rock, + +and there is no unrighteousness in him. + + + + +Yahweh reigns! + +He is clothed with majesty! + +Yahweh is armed with strength. + +The world also is established. + +It can’t be moved. + + +Your throne is established from long ago. + +You are from everlasting. + + +The floods have lifted up, Yahweh, + +the floods have lifted up their voice. + +The floods lift up their waves. + + +Above the voices of many waters, + +the mighty breakers of the sea, + +Yahweh on high is mighty. + + +Your statutes stand firm. + +Holiness adorns your house, + +Yahweh, forever more. + + + + +Yahweh, you God to whom vengeance belongs, + +you God to whom vengeance belongs, shine out. + + +Rise up, you judge of the earth. + +Pay back the proud what they deserve. + + +Yahweh, how long will the wicked, + +how long will the wicked triumph? + + +They pour out arrogant words. + +All the evildoers boast. + + +They break your people in pieces, Yahweh, + +and afflict your heritage. + + +They kill the widow and the alien, + +and murder the fatherless. + + +They say, “Yah will not see, + +neither will Jacob’s God consider.” + + +Consider, you senseless among the people; + +you fools, when will you be wise? + + +He who implanted the ear, won’t he hear? + +He who formed the eye, won’t he see? + + +He who disciplines the nations, won’t he punish? + +He who teaches man knows. + + +Yahweh knows the thoughts of man, + +that they are futile. + + +Blessed is the man whom you discipline, Yah, + +and teach out of your law, + + +that you may give him rest from the days of adversity, + +until the pit is dug for the wicked. + + +For Yahweh won’t reject his people, + +neither will he forsake his inheritance. + + +For judgment will return to righteousness. + +All the upright in heart shall follow it. + + +Who will rise up for me against the wicked? + +Who will stand up for me against the evildoers? + + +Unless Yahweh had been my help, + +my soul would have soon lived in silence. + + +When I said, “My foot is slipping!” + +Your loving kindness, Yahweh, held me up. + + +In the multitude of my thoughts within me, + +your comforts delight my soul. + + +Shall the throne of wickedness have fellowship with you, + +which brings about mischief by statute? + + +They gather themselves together against the soul of the righteous, + +and condemn the innocent blood. + + +But Yahweh has been my high tower, + +my God, the rock of my refuge. + + +He has brought on them their own iniquity, + +and will cut them off in their own wickedness. + +Yahweh, our God, will cut them off. + + + + +Oh come, let’s sing to Yahweh. + +Let’s shout aloud to the rock of our salvation! + + +Let’s come before his presence with thanksgiving. + +Let’s extol him with songs! + + +For Yahweh is a great God, + +a great King above all gods. + + +In his hand are the deep places of the earth. + +The heights of the mountains are also his. + + +The sea is his, and he made it. + +His hands formed the dry land. + + +Oh come, let’s worship and bow down. + +Let’s kneel before Yahweh, our Maker, + + +for he is our God. + +We are the people of his pasture, + +and the sheep in his care. + +Today, oh that you would hear his voice! + + +Don’t harden your heart, as at Meribah, + +as in the day of Massah in the wilderness, + + +when your fathers tempted me, + +tested me, and saw my work. + + +Forty long years I was grieved with that generation, + +and said, “They are a people who err in their heart. + +They have not known my ways.” + + +Therefore I swore in my wrath, + +“They won’t enter into my rest.” + + + + +Sing to Yahweh a new song! + +Sing to Yahweh, all the earth. + + +Sing to Yahweh! + +Bless his name! + +Proclaim his salvation from day to day! + + +Declare his glory among the nations, + +his marvelous works among all the peoples. + + +For Yahweh is great, and greatly to be praised! + +He is to be feared above all gods. + + +For all the gods of the peoples are idols, + +but Yahweh made the heavens. + + +Honor and majesty are before him. + +Strength and beauty are in his sanctuary. + + +Ascribe to Yahweh, you families of nations, + +ascribe to Yahweh glory and strength. + + +Ascribe to Yahweh the glory due to his name. + +Bring an offering, and come into his courts. + + +Worship Yahweh in holy array. + +Tremble before him, all the earth. + + +Say among the nations, “Yahweh reigns.” + +The world is also established. + +It can’t be moved. + +He will judge the peoples with equity. + + +Let the heavens be glad, and let the earth rejoice. + +Let the sea roar, and its fullness! + + +Let the field and all that is in it exult! + +Then all the trees of the woods shall sing for joy + + +before Yahweh; for he comes, + +for he comes to judge the earth. + +He will judge the world with righteousness, + +the peoples with his truth. + + + + +Yahweh reigns! + +Let the earth rejoice! + +Let the multitude of islands be glad! + + +Clouds and darkness are around him. + +Righteousness and justice are the foundation of his throne. + + +A fire goes before him, + +and burns up his adversaries on every side. + + +His lightning lights up the world. + +The earth sees, and trembles. + + +The mountains melt like wax at the presence of Yahweh, + +at the presence of the Lord of the whole earth. + + +The heavens declare his righteousness. + +All the peoples have seen his glory. + + +Let all them be shamed who serve engraved images, + +who boast in their idols. + +Worship him, all you gods!97:7 +LXX reads “angels” instead of “gods”. + + +Zion heard and was glad. + +The daughters of Judah rejoiced + +because of your judgments, Yahweh. + + +For you, Yahweh, are most high above all the earth. + +You are exalted far above all gods. + + +You who love Yahweh, hate evil! + +He preserves the souls of his saints. + +He delivers them out of the hand of the wicked. + + +Light is sown for the righteous, + +and gladness for the upright in heart. + + +Be glad in Yahweh, you righteous people! + +Give thanks to his holy Name. + + + + +A Psalm. + +Sing to Yahweh a new song, + +for he has done marvelous things! + +His right hand and his holy arm have worked salvation for him. + + +Yahweh has made known his salvation. + +He has openly shown his righteousness in the sight of the nations. + + +He has remembered his loving kindness and his faithfulness toward the house of Israel. + +All the ends of the earth have seen the salvation of our God. + + +Make a joyful noise to Yahweh, all the earth! + +Burst out and sing for joy, yes, sing praises! + + +Sing praises to Yahweh with the harp, + +with the harp and the voice of melody. + + +With trumpets and sound of the ram’s horn, + +make a joyful noise before the King, Yahweh. + + +Let the sea roar with its fullness; + +the world, and those who dwell therein. + + +Let the rivers clap their hands. + +Let the mountains sing for joy together. + + +Let them sing before Yahweh, + +for he comes to judge the earth. + +He will judge the world with righteousness, + +and the peoples with equity. + + + + +Yahweh reigns! Let the peoples tremble. + +He sits enthroned among the cherubim. + +Let the earth be moved. + + +Yahweh is great in Zion. + +He is high above all the peoples. + + +Let them praise your great and awesome name. + +He is Holy! + + + +The King’s strength also loves justice. + +You establish equity. + +You execute justice and righteousness in Jacob. + + +Exalt Yahweh our God. + +Worship at his footstool. + +He is Holy! + + + +Moses and Aaron were among his priests, + +Samuel was among those who call on his name. + +They called on Yahweh, and he answered them. + + +He spoke to them in the pillar of cloud. + +They kept his testimonies, + +the statute that he gave them. + + +You answered them, Yahweh our God. + +You are a God who forgave them, + +although you took vengeance for their doings. + + +Exalt Yahweh, our God. + +Worship at his holy hill, + +for Yahweh, our God, is holy! + + + + +A Psalm of thanksgiving. + +Shout for joy to Yahweh, all you lands! + + +Serve Yahweh with gladness. + +Come before his presence with singing. + + +Know that Yahweh, he is God. + +It is he who has made us, and we are his. + +We are his people, and the sheep of his pasture. + + +Enter into his gates with thanksgiving, + +and into his courts with praise. + +Give thanks to him, and bless his name. + + +For Yahweh is good. + +His loving kindness endures forever, + +his faithfulness to all generations. + + + + +A Psalm by David. + +I will sing of loving kindness and justice. + +To you, Yahweh, I will sing praises. + + +I will be careful to live a blameless life. + +When will you come to me? + +I will walk within my house with a blameless heart. + + +I will set no vile thing before my eyes. + +I hate the deeds of faithless men. + +They will not cling to me. + + +A perverse heart will be far from me. + +I will have nothing to do with evil. + + +I will silence whoever secretly slanders his neighbor. + +I won’t tolerate one who is arrogant and conceited. + + +My eyes will be on the faithful of the land, + +that they may dwell with me. + +He who walks in a perfect way, + +he will serve me. + + +He who practices deceit won’t dwell within my house. + +He who speaks falsehood won’t be established before my eyes. + + +Morning by morning, I will destroy all the wicked of the land, + +to cut off all the workers of iniquity from Yahweh’s city. + + + + +A Prayer of the afflicted, when he is overwhelmed and pours out his complaint before Yahweh. + +Hear my prayer, Yahweh! + +Let my cry come to you. + + +Don’t hide your face from me in the day of my distress. + +Turn your ear to me. + +Answer me quickly in the day when I call. + + +For my days consume away like smoke. + +My bones are burned as a torch. + + +My heart is blighted like grass, and withered, + +for I forget to eat my bread. + + +By reason of the voice of my groaning, + +my bones stick to my skin. + + +I am like a pelican of the wilderness. + +I have become as an owl of the waste places. + + +I watch, and have become like a sparrow that is alone on the housetop. + + +My enemies reproach me all day. + +Those who are mad at me use my name as a curse. + + +For I have eaten ashes like bread, + +and mixed my drink with tears, + + +because of your indignation and your wrath; + +for you have taken me up and thrown me away. + + +My days are like a long shadow. + +I have withered like grass. + + + +But you, Yahweh, will remain forever; + +your renown endures to all generations. + + +You will arise and have mercy on Zion, + +for it is time to have pity on her. + +Yes, the set time has come. + + +For your servants take pleasure in her stones, + +and have pity on her dust. + + +So the nations will fear Yahweh’s name, + +all the kings of the earth your glory. + + +For Yahweh has built up Zion. + +He has appeared in his glory. + + +He has responded to the prayer of the destitute, + +and has not despised their prayer. + + +This will be written for the generation to come. + +A people which will be created will praise Yah, + + +for he has looked down from the height of his sanctuary. + +From heaven, Yahweh saw the earth, + + +to hear the groans of the prisoner, + +to free those who are condemned to death, + + +that men may declare Yahweh’s name in Zion, + +and his praise in Jerusalem, + + +when the peoples are gathered together, + +the kingdoms, to serve Yahweh. + + + +He weakened my strength along the course. + +He shortened my days. + + +I said, “My God, don’t take me away in the middle of my days. + +Your years are throughout all generations. + + +Of old, you laid the foundation of the earth. + +The heavens are the work of your hands. + + +They will perish, but you will endure. + +Yes, all of them will wear out like a garment. + +You will change them like a cloak, and they will be changed. + + +But you are the same. + +Your years will have no end. + + +The children of your servants will continue. + +Their offspring will be established before you.” + + + + +By David. + +Praise Yahweh, my soul! + +All that is within me, praise his holy name! + + +Praise Yahweh, my soul, + +and don’t forget all his benefits, + + +who forgives all your sins, + +who heals all your diseases, + + +who redeems your life from destruction, + +who crowns you with loving kindness and tender mercies, + + +who satisfies your desire with good things, + +so that your youth is renewed like the eagle’s. + + +Yahweh executes righteous acts, + +and justice for all who are oppressed. + + +He made known his ways to Moses, + +his deeds to the children of Israel. + + +Yahweh is merciful and gracious, + +slow to anger, and abundant in loving kindness. + + +He will not always accuse; + +neither will he stay angry forever. + + +He has not dealt with us according to our sins, + +nor repaid us for our iniquities. + + +For as the heavens are high above the earth, + +so great is his loving kindness toward those who fear him. + + +As far as the east is from the west, + +so far has he removed our transgressions from us. + + +Like a father has compassion on his children, + +so Yahweh has compassion on those who fear him. + + +For he knows how we are made. + +He remembers that we are dust. + + +As for man, his days are like grass. + +As a flower of the field, so he flourishes. + + +For the wind passes over it, and it is gone. + +Its place remembers it no more. + + +But Yahweh’s loving kindness is from everlasting to everlasting with those who fear him, + +his righteousness to children’s children, + + +to those who keep his covenant, + +to those who remember to obey his precepts. + + +Yahweh has established his throne in the heavens. + +His kingdom rules over all. + + +Praise Yahweh, you angels of his, + +who are mighty in strength, who fulfill his word, + +obeying the voice of his word. + + +Praise Yahweh, all you armies of his, + +you servants of his, who do his pleasure. + + +Praise Yahweh, all you works of his, + +in all places of his dominion. + +Praise Yahweh, my soul! + + + + +Bless Yahweh, my soul. + +Yahweh, my God, you are very great. + +You are clothed with honor and majesty. + + +He covers himself with light as with a garment. + +He stretches out the heavens like a curtain. + + +He lays the beams of his rooms in the waters. + +He makes the clouds his chariot. + +He walks on the wings of the wind. + + +He makes his messengers104:4 +or, angels winds, + +and his servants flames of fire. + + +He laid the foundations of the earth, + +that it should not be moved forever. + + +You covered it with the deep as with a cloak. + +The waters stood above the mountains. + + +At your rebuke they fled. + +At the voice of your thunder they hurried away. + + +The mountains rose, + +the valleys sank down, + +to the place which you had assigned to them. + + +You have set a boundary that they may not pass over, + +that they don’t turn again to cover the earth. + + +He sends springs into the valleys. + +They run among the mountains. + + +They give drink to every animal of the field. + +The wild donkeys quench their thirst. + + +The birds of the sky nest by them. + +They sing among the branches. + + +He waters the mountains from his rooms. + +The earth is filled with the fruit of your works. + + +He causes the grass to grow for the livestock, + +and plants for man to cultivate, + +that he may produce food out of the earth: + + +wine that makes the heart of man glad, + +oil to make his face to shine, + +and bread that strengthens man’s heart. + + +Yahweh’s trees are well watered, + +the cedars of Lebanon, which he has planted, + + +where the birds make their nests. + +The stork makes its home in the cypress trees. + + +The high mountains are for the wild goats. + +The rocks are a refuge for the rock badgers. + + +He appointed the moon for seasons. + +The sun knows when to set. + + +You make darkness, and it is night, + +in which all the animals of the forest prowl. + + +The young lions roar after their prey, + +and seek their food from God. + + +The sun rises, and they steal away, + +and lie down in their dens. + + +Man goes out to his work, + +to his labor until the evening. + + +Yahweh, how many are your works! + +In wisdom, you have made them all. + +The earth is full of your riches. + + +There is the sea, great and wide, + +in which are innumerable living things, + +both small and large animals. + + +There the ships go, + +and leviathan, whom you formed to play there. + + +These all wait for you, + +that you may give them their food in due season. + + +You give to them; they gather. + +You open your hand; they are satisfied with good. + + +You hide your face; they are troubled. + +You take away their breath; they die and return to the dust. + + +You send out your Spirit and they are created. + +You renew the face of the ground. + + +Let Yahweh’s glory endure forever. + +Let Yahweh rejoice in his works. + + +He looks at the earth, and it trembles. + +He touches the mountains, and they smoke. + + +I will sing to Yahweh as long as I live. + +I will sing praise to my God while I have any being. + + +Let my meditation be sweet to him. + +I will rejoice in Yahweh. + + +Let sinners be consumed out of the earth. + +Let the wicked be no more. + +Bless Yahweh, my soul. + +Praise Yah! + + + + +Give thanks to Yahweh! Call on his name! + +Make his doings known among the peoples. + + +Sing to him, sing praises to him! + +Tell of all his marvelous works. + + +Glory in his holy name. + +Let the heart of those who seek Yahweh rejoice. + + +Seek Yahweh and his strength. + +Seek his face forever more. + + +Remember his marvelous works that he has done: + +his wonders, and the judgments of his mouth, + + +you offspring of Abraham, his servant, + +you children of Jacob, his chosen ones. + + +He is Yahweh, our God. + +His judgments are in all the earth. + + +He has remembered his covenant forever, + +the word which he commanded to a thousand generations, + + +the covenant which he made with Abraham, + +his oath to Isaac, + + +and confirmed it to Jacob for a statute; + +to Israel for an everlasting covenant, + + +saying, “To you I will give the land of Canaan, + +the lot of your inheritance,” + + +when they were but a few men in number, + +yes, very few, and foreigners in it. + + +They went about from nation to nation, + +from one kingdom to another people. + + +He allowed no one to do them wrong. + +Yes, he reproved kings for their sakes, + + +“Don’t touch my anointed ones! + +Do my prophets no harm!” + + +He called for a famine on the land. + +He destroyed the food supplies. + + +He sent a man before them. + +Joseph was sold for a slave. + + +They bruised his feet with shackles. + +His neck was locked in irons, + + +until the time that his word happened, + +and Yahweh’s word proved him true. + + +The king sent and freed him, + +even the ruler of peoples, and let him go free. + + +He made him lord of his house, + +and ruler of all of his possessions, + + +to discipline his princes at his pleasure, + +and to teach his elders wisdom. + + +Israel also came into Egypt. + +Jacob lived in the land of Ham. + + +He increased his people greatly, + +and made them stronger than their adversaries. + + +He turned their heart to hate his people, + +to conspire against his servants. + + +He sent Moses, his servant, + +and Aaron, whom he had chosen. + + +They performed miracles among them, + +and wonders in the land of Ham. + + +He sent darkness, and made it dark. + +They didn’t rebel against his words. + + +He turned their waters into blood, + +and killed their fish. + + +Their land swarmed with frogs, + +even in the rooms of their kings. + + +He spoke, and swarms of flies came, + +and lice in all their borders. + + +He gave them hail for rain, + +with lightning in their land. + + +He struck their vines and also their fig trees, + +and shattered the trees of their country. + + +He spoke, and the locusts came + +with the grasshoppers, without number. + + +They ate up every plant in their land, + +and ate up the fruit of their ground. + + +He struck also all the firstborn in their land, + +the first fruits of all their manhood. + + +He brought them out with silver and gold. + +There was not one feeble person among his tribes. + + +Egypt was glad when they departed, + +for the fear of them had fallen on them. + + +He spread a cloud for a covering, + +fire to give light in the night. + + +They asked, and he brought quails, + +and satisfied them with the bread of the sky. + + +He opened the rock, and waters gushed out. + +They ran as a river in the dry places. + + +For he remembered his holy word, + +and Abraham, his servant. + + +He brought his people out with joy, + +his chosen with singing. + + +He gave them the lands of the nations. + +They took the labor of the peoples in possession, + + +that they might keep his statutes, + +and observe his laws. + +Praise Yah! + + + + +Praise Yahweh! + +Give thanks to Yahweh, for he is good, + +for his loving kindness endures forever. + + +Who can utter the mighty acts of Yahweh, + +or fully declare all his praise? + + +Blessed are those who keep justice. + +Blessed is one who does what is right at all times. + + +Remember me, Yahweh, with the favor that you show to your people. + +Visit me with your salvation, + + +that I may see the prosperity of your chosen, + +that I may rejoice in the gladness of your nation, + +that I may glory with your inheritance. + + + +We have sinned with our fathers. + +We have committed iniquity. + +We have done wickedly. + + +Our fathers didn’t understand your wonders in Egypt. + +They didn’t remember the multitude of your loving kindnesses, + +but were rebellious at the sea, even at the Red Sea. + + +Nevertheless he saved them for his name’s sake, + +that he might make his mighty power known. + + +He rebuked the Red Sea also, and it was dried up; + +so he led them through the depths, as through a desert. + + +He saved them from the hand of him who hated them, + +and redeemed them from the hand of the enemy. + + +The waters covered their adversaries. + +There was not one of them left. + + +Then they believed his words. + +They sang his praise. + + + +They soon forgot his works. + +They didn’t wait for his counsel, + + +but gave in to craving in the desert, + +and tested God in the wasteland. + + +He gave them their request, + +but sent leanness into their soul. + + +They envied Moses also in the camp, + +and Aaron, Yahweh’s saint. + + +The earth opened and swallowed up Dathan, + +and covered the company of Abiram. + + +A fire was kindled in their company. + +The flame burned up the wicked. + + +They made a calf in Horeb, + +and worshiped a molten image. + + +Thus they exchanged their glory + +for an image of a bull that eats grass. + + +They forgot God, their Savior, + +who had done great things in Egypt, + + +wondrous works in the land of Ham, + +and awesome things by the Red Sea. + + +Therefore he said that he would destroy them, + +had Moses, his chosen, not stood before him in the breach, + +to turn away his wrath, so that he wouldn’t destroy them. + + +Yes, they despised the pleasant land. + +They didn’t believe his word, + + +but murmured in their tents, + +and didn’t listen to Yahweh’s voice. + + +Therefore he swore to them + +that he would overthrow them in the wilderness, + + +that he would overthrow their offspring among the nations, + +and scatter them in the lands. + + +They joined themselves also to Baal Peor, + +and ate the sacrifices of the dead. + + +Thus they provoked him to anger with their deeds. + +The plague broke in on them. + + +Then Phinehas stood up and executed judgment, + +so the plague was stopped. + + +That was credited to him for righteousness, + +for all generations to come. + + +They angered him also at the waters of Meribah, + +so that Moses was troubled for their sakes; + + +because they were rebellious against his spirit, + +he spoke rashly with his lips. + + +They didn’t destroy the peoples, + +as Yahweh commanded them, + + +but mixed themselves with the nations, + +and learned their works. + + +They served their idols, + +which became a snare to them. + + +Yes, they sacrificed their sons and their daughters to demons. + + +They shed innocent blood, + +even the blood of their sons and of their daughters, + +whom they sacrificed to the idols of Canaan. + +The land was polluted with blood. + + +Thus they were defiled with their works, + +and prostituted themselves in their deeds. + + +Therefore Yahweh burned with anger against his people. + +He abhorred his inheritance. + + +He gave them into the hand of the nations. + +Those who hated them ruled over them. + + +Their enemies also oppressed them. + +They were brought into subjection under their hand. + + +He rescued them many times, + +but they were rebellious in their counsel, + +and were brought low in their iniquity. + + +Nevertheless he regarded their distress, + +when he heard their cry. + + +He remembered for them his covenant, + +and repented according to the multitude of his loving kindnesses. + + +He made them also to be pitied + +by all those who carried them captive. + + + +Save us, Yahweh, our God, + +gather us from among the nations, + +to give thanks to your holy name, + +to triumph in your praise! + + + +Blessed be Yahweh, the God of Israel, + +from everlasting even to everlasting! + +Let all the people say, “Amen.” + +Praise Yah! + + + + +

BOOK 5 +

+Give thanks to Yahweh,107:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. for he is good, + +for his loving kindness endures forever. + + +Let the redeemed by Yahweh say so, + +whom he has redeemed from the hand of the adversary, + + +and gathered out of the lands, + +from the east and from the west, + +from the north and from the south. + + + +They wandered in the wilderness in a desert way. + +They found no city to live in. + + +Hungry and thirsty, + +their soul fainted in them. + + +Then they cried to Yahweh in their trouble, + +and he delivered them out of their distresses. + + +He led them also by a straight way, + +that they might go to a city to live in. + + +Let them praise Yahweh for his loving kindness, + +for his wonderful deeds to the children of men! + + + +For he satisfies the longing soul. + +He fills the hungry soul with good. + + + +Some sat in darkness and in the shadow of death, + +being bound in affliction and iron, + + +because they rebelled against the words of God,107:11 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + +and condemned the counsel of the Most High. + + +Therefore he brought down their heart with labor. + +They fell down, and there was no one to help. + + +Then they cried to Yahweh in their trouble, + +and he saved them out of their distresses. + + +He brought them out of darkness and the shadow of death, + +and broke away their chains. + + +Let them praise Yahweh for his loving kindness, + +for his wonderful deeds to the children of men! + + + +For he has broken the gates of bronze, + +and cut through bars of iron. + + + +Fools are afflicted because of their disobedience, + +and because of their iniquities. + + +Their soul abhors all kinds of food. + +They draw near to the gates of death. + + +Then they cry to Yahweh in their trouble, + +and he saves them out of their distresses. + + +He sends his word, and heals them, + +and delivers them from their graves. + + +Let them praise Yahweh for his loving kindness, + +for his wonderful deeds to the children of men! + + + +Let them offer the sacrifices of thanksgiving, + +and declare his deeds with singing. + + + +Those who go down to the sea in ships, + +who do business in great waters, + + +these see Yahweh’s deeds, + +and his wonders in the deep. + + +For he commands, and raises the stormy wind, + +which lifts up its waves. + + +They mount up to the sky; they go down again to the depths. + +Their soul melts away because of trouble. + + +They reel back and forth, and stagger like a drunken man, + +and are at their wits’ end. + + +Then they cry to Yahweh in their trouble, + +and he brings them out of their distress. + + +He makes the storm a calm, + +so that its waves are still. + + +Then they are glad because it is calm, + +so he brings them to their desired haven. + + +Let them praise Yahweh for his loving kindness, + +for his wonderful deeds for the children of men! + + + +Let them exalt him also in the assembly of the people, + +and praise him in the seat of the elders. + + + +He turns rivers into a desert, + +water springs into a thirsty ground, + + +and a fruitful land into a salt waste, + +for the wickedness of those who dwell in it. + + +He turns a desert into a pool of water, + +and a dry land into water springs. + + +There he makes the hungry live, + +that they may prepare a city to live in, + + +sow fields, plant vineyards, + +and reap the fruits of increase. + + +He blesses them also, so that they are multiplied greatly. + +He doesn’t allow their livestock to decrease. + + +Again, they are diminished and bowed down + +through oppression, trouble, and sorrow. + + +He pours contempt on princes, + +and causes them to wander in a trackless waste. + + +Yet he lifts the needy out of their affliction, + +and increases their families like a flock. + + +The upright will see it, and be glad. + +All the wicked will shut their mouths. + + +Whoever is wise will pay attention to these things. + +They will consider the loving kindnesses of Yahweh. + + + + +A Song. A Psalm by David. + +My heart is steadfast, God. + +I will sing and I will make music with my soul. + + +Wake up, harp and lyre! + +I will wake up the dawn. + + +I will give thanks to you, Yahweh, among the nations. + +I will sing praises to you among the peoples. + + +For your loving kindness is great above the heavens. + +Your faithfulness reaches to the skies. + + +Be exalted, God, above the heavens! + +Let your glory be over all the earth. + + +That your beloved may be delivered, + +save with your right hand, and answer us. + + +God has spoken from his sanctuary: “In triumph, + +I will divide Shechem, and measure out the valley of Succoth. + + +Gilead is mine. Manasseh is mine. + +Ephraim also is my helmet. + +Judah is my scepter. + + +Moab is my wash pot. + +I will toss my sandal on Edom. + +I will shout over Philistia.” + + +Who will bring me into the fortified city? + +Who will lead me to Edom? + + +Haven’t you rejected us, God? + +You don’t go out, God, with our armies. + + +Give us help against the enemy, + +for the help of man is vain. + + +Through God, we will do valiantly, + +for it is he who will tread down our enemies. + + + + +For the Chief Musician. A Psalm by David. + +God of my praise, don’t remain silent, + + +for they have opened the mouth of the wicked and the mouth of deceit against me. + +They have spoken to me with a lying tongue. + + +They have also surrounded me with words of hatred, + +and fought against me without a cause. + + +In return for my love, they are my adversaries; + +but I am in prayer. + + +They have rewarded me evil for good, + +and hatred for my love. + + +Set a wicked man over him. + +Let an adversary stand at his right hand. + + +When he is judged, let him come out guilty. + +Let his prayer be turned into sin. + + +Let his days be few. + +Let another take his office. + + +Let his children be fatherless, + +and his wife a widow. + + +Let his children be wandering beggars. + +Let them be sought from their ruins. + + +Let the creditor seize all that he has. + +Let strangers plunder the fruit of his labor. + + +Let there be no one to extend kindness to him, + +neither let there be anyone to have pity on his fatherless children. + + +Let his posterity be cut off. + +In the generation following let their name be blotted out. + + +Let the iniquity of his fathers be remembered by Yahweh. + +Don’t let the sin of his mother be blotted out. + + +Let them be before Yahweh continually, + +that he may cut off their memory from the earth; + + +because he didn’t remember to show kindness, + +but persecuted the poor and needy man, + +the broken in heart, to kill them. + + +Yes, he loved cursing, and it came to him. + +He didn’t delight in blessing, and it was far from him. + + +He clothed himself also with cursing as with his garment. + +It came into his inward parts like water, + +like oil into his bones. + + +Let it be to him as the clothing with which he covers himself, + +for the belt that is always around him. + + +This is the reward of my adversaries from Yahweh, + +of those who speak evil against my soul. + + + +But deal with me, Yahweh the Lord,109:21 +The word translated “Lord” is “Adonai.” for your name’s sake, + +because your loving kindness is good, deliver me; + + +for I am poor and needy. + +My heart is wounded within me. + + +I fade away like an evening shadow. + +I am shaken off like a locust. + + +My knees are weak through fasting. + +My body is thin and lacks fat. + + +I have also become a reproach to them. + +When they see me, they shake their head. + + +Help me, Yahweh, my God. + +Save me according to your loving kindness; + + +that they may know that this is your hand; + +that you, Yahweh, have done it. + + +They may curse, but you bless. + +When they arise, they will be shamed, + +but your servant shall rejoice. + + +Let my adversaries be clothed with dishonor. + +Let them cover themselves with their own shame as with a robe. + + +I will give great thanks to Yahweh with my mouth. + +Yes, I will praise him among the multitude. + + +For he will stand at the right hand of the needy, + +to save him from those who judge his soul. + + + + +A Psalm by David. + +Yahweh says to my Lord, “Sit at my right hand, + +until I make your enemies your footstool for your feet.” + + +Yahweh will send out the rod of your strength out of Zion. + +Rule among your enemies. + + +Your people offer themselves willingly in the day of your power, in holy array. + +Out of the womb of the morning, you have the dew of your youth. + + +Yahweh has sworn, and will not change his mind: + +You are a priest forever in the order of Melchizedek.” + + +The Lord is at your right hand. + +He will crush kings in the day of his wrath. + + +He will judge among the nations. + +He will heap up dead bodies. + +He will crush the ruler of the whole earth. + + +He will drink of the brook on the way; + +therefore he will lift up his head. + + + + +Praise Yah!111:1 +Psalm 111 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav). + +I will give thanks to Yahweh with my whole heart, + +in the council of the upright, and in the congregation. + + +Yahweh’s works are great, + +pondered by all those who delight in them. + + +His work is honor and majesty. + +His righteousness endures forever. + + +He has caused his wonderful works to be remembered. + +Yahweh is gracious and merciful. + + +He has given food to those who fear him. + +He always remembers his covenant. + + +He has shown his people the power of his works, + +in giving them the heritage of the nations. + + +The works of his hands are truth and justice. + +All his precepts are sure. + + +They are established forever and ever. + +They are done in truth and uprightness. + + +He has sent redemption to his people. + +He has ordained his covenant forever. + +His name is holy and awesome! + + +The fear of Yahweh is the beginning of wisdom. + +All those who do his work have a good understanding. + +His praise endures forever! + + + + +Praise Yah!112:1 +Psalm 112 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav). + +Blessed is the man who fears Yahweh, + +who delights greatly in his commandments. + + +His offspring will be mighty in the land. + +The generation of the upright will be blessed. + + +Wealth and riches are in his house. + +His righteousness endures forever. + + +Light dawns in the darkness for the upright, + +gracious, merciful, and righteous. + + +It is well with the man who deals graciously and lends. + +He will maintain his cause in judgment. + + +For he will never be shaken. + +The righteous will be remembered forever. + + +He will not be afraid of evil news. + +His heart is steadfast, trusting in Yahweh. + + +His heart is established. + +He will not be afraid in the end when he sees his adversaries. + + +He has dispersed, he has given to the poor. + +His righteousness endures forever. + +His horn will be exalted with honor. + + +The wicked will see it, and be grieved. + +He shall gnash with his teeth, and melt away. + +The desire of the wicked will perish. + + + + +Praise Yah! + +Praise, you servants of Yahweh, + +praise Yahweh’s name. + + +Blessed be Yahweh’s name, + +from this time forward and forever more. + + +From the rising of the sun to its going down, + +Yahweh’s name is to be praised. + + +Yahweh is high above all nations, + +his glory above the heavens. + + +Who is like Yahweh, our God, + +who has his seat on high, + + +who stoops down to see in heaven and on the earth? + + +He raises up the poor out of the dust, + +and lifts up the needy from the ash heap, + + +that he may set him with princes, + +even with the princes of his people. + + +He settles the barren woman in her home + +as a joyful mother of children. + +Praise Yah! + + + + +When Israel went out of Egypt, + +the house of Jacob from a people of foreign language, + + +Judah became his sanctuary, + +Israel his dominion. + + +The sea saw it, and fled. + +The Jordan was driven back. + + +The mountains skipped like rams, + +the little hills like lambs. + + +What was it, you sea, that you fled? + +You Jordan, that you turned back? + + +You mountains, that you skipped like rams? + +You little hills, like lambs? + + +Tremble, you earth, at the presence of the Lord, + +at the presence of the God of Jacob, + + +who turned the rock into a pool of water, + +the flint into a spring of waters. + + + + +Not to us, Yahweh, not to us, + +but to your name give glory, + +for your loving kindness, and for your truth’s sake. + + +Why should the nations say, + +Where is their God, now?” + + +But our God is in the heavens. + +He does whatever he pleases. + + +Their idols are silver and gold, + +the work of men’s hands. + + +They have mouths, but they don’t speak. + +They have eyes, but they don’t see. + + +They have ears, but they don’t hear. + +They have noses, but they don’t smell. + + +They have hands, but they don’t feel. + +They have feet, but they don’t walk, + +neither do they speak through their throat. + + +Those who make them will be like them; + +yes, everyone who trusts in them. + + +Israel, trust in Yahweh! + +He is their help and their shield. + + +House of Aaron, trust in Yahweh! + +He is their help and their shield. + + +You who fear Yahweh, trust in Yahweh! + +He is their help and their shield. + + +Yahweh remembers us. He will bless us. + +He will bless the house of Israel. + +He will bless the house of Aaron. + + +He will bless those who fear Yahweh, + +both small and great. + + +May Yahweh increase you more and more, + +you and your children. + + +Blessed are you by Yahweh, + +who made heaven and earth. + + +The heavens are Yahweh’s heavens, + +but he has given the earth to the children of men. + + +The dead don’t praise Yah, + +nor any who go down into silence, + + +but we will bless Yah, + +from this time forward and forever more. + +Praise Yah! + + + + +I love Yahweh, because he listens to my voice, + +and my cries for mercy. + + +Because he has turned his ear to me, + +therefore I will call on him as long as I live. + + +The cords of death surrounded me, + +the pains of Sheol116:3 +Sheol is the place of the dead. got a hold of me. + +I found trouble and sorrow. + + +Then I called on Yahweh’s name: + +Yahweh, I beg you, deliver my soul.” + + +Yahweh is gracious and righteous. + +Yes, our God is merciful. + + +Yahweh preserves the simple. + +I was brought low, and he saved me. + + +Return to your rest, my soul, + +for Yahweh has dealt bountifully with you. + + +For you have delivered my soul from death, + +my eyes from tears, + +and my feet from falling. + + +I will walk before Yahweh in the land of the living. + + +I believed, therefore I said, + +I was greatly afflicted.” + + +I said in my haste, + +All people are liars.” + + +What will I give to Yahweh for all his benefits toward me? + + +I will take the cup of salvation, and call on Yahweh’s name. + + +I will pay my vows to Yahweh, + +yes, in the presence of all his people. + + +Precious in Yahweh’s sight is the death of his saints. + + +Yahweh, truly I am your servant. + +I am your servant, the son of your servant girl. + +You have freed me from my chains. + + +I will offer to you the sacrifice of thanksgiving, + +and will call on Yahweh’s name. + + +I will pay my vows to Yahweh, + +yes, in the presence of all his people, + + +in the courts of Yahweh’s house, + +in the middle of you, Jerusalem. + +Praise Yah! + + + + +Praise Yahweh, all you nations! + +Extol him, all you peoples! + + +For his loving kindness is great toward us. + +Yahweh’s faithfulness endures forever. + +Praise Yah! + + + + +Give thanks to Yahweh, for he is good, + +for his loving kindness endures forever. + + +Let Israel now say + +that his loving kindness endures forever. + + +Let the house of Aaron now say + +that his loving kindness endures forever. + + +Now let those who fear Yahweh say + +that his loving kindness endures forever. + + +Out of my distress, I called on Yah. + +Yah answered me with freedom. + + +Yahweh is on my side. I will not be afraid. + +What can man do to me? + + +Yahweh is on my side among those who help me. + +Therefore I will look in triumph at those who hate me. + + +It is better to take refuge in Yahweh, + +than to put confidence in man. + + +It is better to take refuge in Yahweh, + +than to put confidence in princes. + + +All the nations surrounded me, + +but in Yahweh’s name I cut them off. + + +They surrounded me, yes, they surrounded me. + +In Yahweh’s name I indeed cut them off. + + +They surrounded me like bees. + +They are quenched like the burning thorns. + +In Yahweh’s name I cut them off. + + +You pushed me back hard, to make me fall, + +but Yahweh helped me. + + +Yah is my strength and song. + +He has become my salvation. + + +The voice of rejoicing and salvation is in the tents of the righteous. + +The right hand of Yahweh does valiantly. + + +The right hand of Yahweh is exalted! + +The right hand of Yahweh does valiantly!” + + +I will not die, but live, + +and declare Yah’s works. + + +Yah has punished me severely, + +but he has not given me over to death. + + +Open to me the gates of righteousness. + +I will enter into them. + +I will give thanks to Yah. + + +This is the gate of Yahweh; + +the righteous will enter into it. + + +I will give thanks to you, for you have answered me, + +and have become my salvation. + + +The stone which the builders rejected + +has become the cornerstone.118:22 +Literally, +head of the corner + + +This is Yahweh’s doing. + +It is marvelous in our eyes. + + +This is the day that Yahweh has made. + +We will rejoice and be glad in it! + + +Save us now, we beg you, Yahweh! + +Yahweh, we beg you, send prosperity now. + + +Blessed is he who comes in Yahweh’s name! + +We have blessed you out of Yahweh’s house. + + +Yahweh is God, and he has given us light. + +Bind the sacrifice with cords, even to the horns of the altar. + + +You are my God, and I will give thanks to you. + +You are my God, I will exalt you. + + +Oh give thanks to Yahweh, for he is good, + +for his loving kindness endures forever. + + + + +ALEPH + +Blessed are those whose ways are blameless, + +who walk according to Yahweh’s law. + + +Blessed are those who keep his statutes, + +who seek him with their whole heart. + + +Yes, they do nothing wrong. + +They walk in his ways. + + +You have commanded your precepts, + +that we should fully obey them. + + +Oh that my ways were steadfast + +to obey your statutes! + + +Then I wouldn’t be disappointed, + +when I consider all of your commandments. + + +I will give thanks to you with uprightness of heart, + +when I learn your righteous judgments. + + +I will observe your statutes. + +Don’t utterly forsake me. + +BETH + + +How can a young man keep his way pure? + +By living according to your word. + + +With my whole heart I have sought you. + +Don’t let me wander from your commandments. + + +I have hidden your word in my heart, + +that I might not sin against you. + + +Blessed are you, Yahweh. + +Teach me your statutes. + + +With my lips, + +I have declared all the ordinances of your mouth. + + +I have rejoiced in the way of your testimonies, + +as much as in all riches. + + +I will meditate on your precepts, + +and consider your ways. + + +I will delight myself in your statutes. + +I will not forget your word. + +GIMEL + + +Do good to your servant. + +I will live and I will obey your word. + + +Open my eyes, + +that I may see wondrous things out of your law. + + +I am a stranger on the earth. + +Don’t hide your commandments from me. + + +My soul is consumed with longing for your ordinances at all times. + + +You have rebuked the proud who are cursed, + +who wander from your commandments. + + +Take reproach and contempt away from me, + +for I have kept your statutes. + + +Though princes sit and slander me, + +your servant will meditate on your statutes. + + +Indeed your statutes are my delight, + +and my counselors. + +DALETH + + +My soul is laid low in the dust. + +Revive me according to your word! + + +I declared my ways, and you answered me. + +Teach me your statutes. + + +Let me understand the teaching of your precepts! + +Then I will meditate on your wondrous works. + + +My soul is weary with sorrow; + +strengthen me according to your word. + + +Keep me from the way of deceit. + +Grant me your law graciously! + + +I have chosen the way of truth. + +I have set your ordinances before me. + + +I cling to your statutes, Yahweh. + +Don’t let me be disappointed. + + +I run in the path of your commandments, + +for you have set my heart free. + +HE + + +Teach me, Yahweh, the way of your statutes. + +I will keep them to the end. + + +Give me understanding, and I will keep your law. + +Yes, I will obey it with my whole heart. + + +Direct me in the path of your commandments, + +for I delight in them. + + +Turn my heart toward your statutes, + +not toward selfish gain. + + +Turn my eyes away from looking at worthless things. + +Revive me in your ways. + + +Fulfill your promise to your servant, + +that you may be feared. + + +Take away my disgrace that I dread, + +for your ordinances are good. + + +Behold, I long for your precepts! + +Revive me in your righteousness. + +VAV + + +Let your loving kindness also come to me, Yahweh, + +your salvation, according to your word. + + +So I will have an answer for him who reproaches me, + +for I trust in your word. + + +Don’t snatch the word of truth out of my mouth, + +for I put my hope in your ordinances. + + +So I will obey your law continually, + +forever and ever. + + +I will walk in liberty, + +for I have sought your precepts. + + +I will also speak of your statutes before kings, + +and will not be disappointed. + + +I will delight myself in your commandments, + +because I love them. + + +I reach out my hands for your commandments, which I love. + +I will meditate on your statutes. + +ZAYIN + + +Remember your word to your servant, + +because you gave me hope. + + +This is my comfort in my affliction, + +for your word has revived me. + + +The arrogant mock me excessively, + +but I don’t swerve from your law. + + +I remember your ordinances of old, Yahweh, + +and have comforted myself. + + +Indignation has taken hold on me, + +because of the wicked who forsake your law. + + +Your statutes have been my songs + +in the house where I live. + + +I have remembered your name, Yahweh, in the night, + +and I obey your law. + + +This is my way, + +that I keep your precepts. + +HETH + + +Yahweh is my portion. + +I promised to obey your words. + + +I sought your favor with my whole heart. + +Be merciful to me according to your word. + + +I considered my ways, + +and turned my steps to your statutes. + + +I will hurry, and not delay, + +to obey your commandments. + + +The ropes of the wicked bind me, + +but I won’t forget your law. + + +At midnight I will rise to give thanks to you, + +because of your righteous ordinances. + + +I am a friend of all those who fear you, + +of those who observe your precepts. + + +The earth is full of your loving kindness, Yahweh. + +Teach me your statutes. + +TETH + + +You have treated your servant well, + +according to your word, Yahweh. + + +Teach me good judgment and knowledge, + +for I believe in your commandments. + + +Before I was afflicted, I went astray; + +but now I observe your word. + + +You are good, and do good. + +Teach me your statutes. + + +The proud have smeared a lie upon me. + +With my whole heart, I will keep your precepts. + + +Their heart is as callous as the fat, + +but I delight in your law. + + +It is good for me that I have been afflicted, + +that I may learn your statutes. + + +The law of your mouth is better to me than thousands of pieces of gold and silver. + +YODH + + +Your hands have made me and formed me. + +Give me understanding, that I may learn your commandments. + + +Those who fear you will see me and be glad, + +because I have put my hope in your word. + + +Yahweh, I know that your judgments are righteous, + +that in faithfulness you have afflicted me. + + +Please let your loving kindness be for my comfort, + +according to your word to your servant. + + +Let your tender mercies come to me, that I may live; + +for your law is my delight. + + +Let the proud be disappointed, for they have overthrown me wrongfully. + +I will meditate on your precepts. + + +Let those who fear you turn to me. + +They will know your statutes. + + +Let my heart be blameless toward your decrees, + +that I may not be disappointed. + +KAPF + + +My soul faints for your salvation. + +I hope in your word. + + +My eyes fail for your word. + +I say, “When will you comfort me?” + + +For I have become like a wineskin in the smoke. + +I don’t forget your statutes. + + +How many are the days of your servant? + +When will you execute judgment on those who persecute me? + + +The proud have dug pits for me, + +contrary to your law. + + +All of your commandments are faithful. + +They persecute me wrongfully. + +Help me! + + +They had almost wiped me from the earth, + +but I didn’t forsake your precepts. + + +Preserve my life according to your loving kindness, + +so I will obey the statutes of your mouth. + +LAMEDH + + +Yahweh, your word is settled in heaven forever. + + +Your faithfulness is to all generations. + +You have established the earth, and it remains. + + +Your laws remain to this day, + +for all things serve you. + + +Unless your law had been my delight, + +I would have perished in my affliction. + + +I will never forget your precepts, + +for with them, you have revived me. + + +I am yours. + +Save me, for I have sought your precepts. + + +The wicked have waited for me, to destroy me. + +I will consider your statutes. + + +I have seen a limit to all perfection, + +but your commands are boundless. + +MEM + + +How I love your law! + +It is my meditation all day. + + +Your commandments make me wiser than my enemies, + +for your commandments are always with me. + + +I have more understanding than all my teachers, + +for your testimonies are my meditation. + + +I understand more than the aged, + +because I have kept your precepts. + + +I have kept my feet from every evil way, + +that I might observe your word. + + +I have not turned away from your ordinances, + +for you have taught me. + + +How sweet are your promises to my taste, + +more than honey to my mouth! + + +Through your precepts, I get understanding; + +therefore I hate every false way. + +NUN + + +Your word is a lamp to my feet, + +and a light for my path. + + +I have sworn, and have confirmed it, + +that I will obey your righteous ordinances. + + +I am afflicted very much. + +Revive me, Yahweh, according to your word. + + +Accept, I beg you, the willing offerings of my mouth. + +Yahweh, teach me your ordinances. + + +My soul is continually in my hand, + +yet I won’t forget your law. + + +The wicked have laid a snare for me, + +yet I haven’t gone astray from your precepts. + + +I have taken your testimonies as a heritage forever, + +for they are the joy of my heart. + + +I have set my heart to perform your statutes forever, + +even to the end. + +SAMEKH + + +I hate double-minded men, + +but I love your law. + + +You are my hiding place and my shield. + +I hope in your word. + + +Depart from me, you evildoers, + +that I may keep the commandments of my God. + + +Uphold me according to your word, that I may live. + +Let me not be ashamed of my hope. + + +Hold me up, and I will be safe, + +and will have respect for your statutes continually. + + +You reject all those who stray from your statutes, + +for their deceit is in vain. + + +You put away all the wicked of the earth like dross. + +Therefore I love your testimonies. + + +My flesh trembles for fear of you. + +I am afraid of your judgments. + +AYIN + + +I have done what is just and righteous. + +Don’t leave me to my oppressors. + + +Ensure your servant’s well-being. + +Don’t let the proud oppress me. + + +My eyes fail looking for your salvation, + +for your righteous word. + + +Deal with your servant according to your loving kindness. + +Teach me your statutes. + + +I am your servant. Give me understanding, + +that I may know your testimonies. + + +It is time to act, Yahweh, + +for they break your law. + + +Therefore I love your commandments more than gold, + +yes, more than pure gold. + + +Therefore I consider all of your precepts to be right. + +I hate every false way. + +PE + + +Your testimonies are wonderful, + +therefore my soul keeps them. + + +The entrance of your words gives light. + +It gives understanding to the simple. + + +I opened my mouth wide and panted, + +for I longed for your commandments. + + +Turn to me, and have mercy on me, + +as you always do to those who love your name. + + +Establish my footsteps in your word. + +Don’t let any iniquity have dominion over me. + + +Redeem me from the oppression of man, + +so I will observe your precepts. + + +Make your face shine on your servant. + +Teach me your statutes. + + +Streams of tears run down my eyes, + +because they don’t observe your law. + +TZADHE + + +You are righteous, Yahweh. + +Your judgments are upright. + + +You have commanded your statutes in righteousness. + +They are fully trustworthy. + + +My zeal wears me out, + +because my enemies ignore your words. + + +Your promises have been thoroughly tested, + +and your servant loves them. + + +I am small and despised. + +I don’t forget your precepts. + + +Your righteousness is an everlasting righteousness. + +Your law is truth. + + +Trouble and anguish have taken hold of me. + +Your commandments are my delight. + + +Your testimonies are righteous forever. + +Give me understanding, that I may live. + +QOPH + + +I have called with my whole heart. + +Answer me, Yahweh! + +I will keep your statutes. + + +I have called to you. Save me! + +I will obey your statutes. + + +I rise before dawn and cry for help. + +I put my hope in your words. + + +My eyes stay open through the night watches, + +that I might meditate on your word. + + +Hear my voice according to your loving kindness. + +Revive me, Yahweh, according to your ordinances. + + +They draw near who follow after wickedness. + +They are far from your law. + + +You are near, Yahweh. + +All your commandments are truth. + + +Of old I have known from your testimonies, + +that you have founded them forever. + +RESH + + +Consider my affliction, and deliver me, + +for I don’t forget your law. + + +Plead my cause, and redeem me! + +Revive me according to your promise. + + +Salvation is far from the wicked, + +for they don’t seek your statutes. + + +Great are your tender mercies, Yahweh. + +Revive me according to your ordinances. + + +Many are my persecutors and my adversaries. + +I haven’t swerved from your testimonies. + + +I look at the faithless with loathing, + +because they don’t observe your word. + + +Consider how I love your precepts. + +Revive me, Yahweh, according to your loving kindness. + + +All of your words are truth. + +Every one of your righteous ordinances endures forever. + +SIN AND SHIN + + +Princes have persecuted me without a cause, + +but my heart stands in awe of your words. + + +I rejoice at your word, + +as one who finds great plunder. + + +I hate and abhor falsehood. + +I love your law. + + +Seven times a day, I praise you, + +because of your righteous ordinances. + + +Those who love your law have great peace. + +Nothing causes them to stumble. + + +I have hoped for your salvation, Yahweh. + +I have done your commandments. + + +My soul has observed your testimonies. + +I love them exceedingly. + + +I have obeyed your precepts and your testimonies, + +for all my ways are before you. + +TAV + + +Let my cry come before you, Yahweh. + +Give me understanding according to your word. + + +Let my supplication come before you. + +Deliver me according to your word. + + +Let my lips utter praise, + +for you teach me your statutes. + + +Let my tongue sing of your word, + +for all your commandments are righteousness. + + +Let your hand be ready to help me, + +for I have chosen your precepts. + + +I have longed for your salvation, Yahweh. + +Your law is my delight. + + +Let my soul live, that I may praise you. + +Let your ordinances help me. + + +I have gone astray like a lost sheep. + +Seek your servant, for I don’t forget your commandments. + + + + +A Song of Ascents. + +In my distress, I cried to Yahweh. + +He answered me. + + +Deliver my soul, Yahweh, from lying lips, + +from a deceitful tongue. + + +What will be given to you, and what will be done more to you, + +you deceitful tongue? + + +Sharp arrows of the mighty, + +with coals of juniper. + + +Woe is me, that I live in Meshech, + +that I dwell among the tents of Kedar! + + +My soul has had her dwelling too long + +with him who hates peace. + + +I am for peace, + +but when I speak, they are for war. + + + + +A Song of Ascents. + +I will lift up my eyes to the hills. + +Where does my help come from? + + +My help comes from Yahweh, + +who made heaven and earth. + + + +He will not allow your foot to be moved. + +He who keeps you will not slumber. + + +Behold, he who keeps Israel + +will neither slumber nor sleep. + + +Yahweh is your keeper. + +Yahweh is your shade on your right hand. + + +The sun will not harm you by day, + +nor the moon by night. + + +Yahweh will keep you from all evil. + +He will keep your soul. + + +Yahweh will keep your going out and your coming in, + +from this time forward, and forever more. + + + + +A Song of Ascents. By David. + +I was glad when they said to me, + +Let’s go to Yahweh’s house!” + + +Our feet are standing within your gates, Jerusalem! + + +Jerusalem is built as a city that is compact together, + + +where the tribes go up, even Yah’s tribes, + +according to an ordinance for Israel, + +to give thanks to Yahweh’s name. + + +For there are set thrones for judgment, + +the thrones of David’s house. + + +Pray for the peace of Jerusalem. + +Those who love you will prosper. + + +Peace be within your walls, + +and prosperity within your palaces. + + +For my brothers’ and companions’ sakes, + +I will now say, “Peace be within you.” + + +For the sake of the house of Yahweh our God, + +I will seek your good. + + + + +A Song of Ascents. + +I lift up my eyes to you, + +you who sit in the heavens. + + +Behold, as the eyes of servants look to the hand of their master, + +as the eyes of a maid to the hand of her mistress, + +so our eyes look to Yahweh, our God, + +until he has mercy on us. + + +Have mercy on us, Yahweh, have mercy on us, + +for we have endured much contempt. + + +Our soul is exceedingly filled with the scoffing of those who are at ease, + +with the contempt of the proud. + + + + +A Song of Ascents. By David. + +If it had not been Yahweh who was on our side, + +let Israel now say, + + +if it had not been Yahweh who was on our side, + +when men rose up against us, + + +then they would have swallowed us up alive, + +when their wrath was kindled against us, + + +then the waters would have overwhelmed us, + +the stream would have gone over our soul. + + +Then the proud waters would have gone over our soul. + + +Blessed be Yahweh, + +who has not given us as a prey to their teeth. + + +Our soul has escaped like a bird out of the fowler’s snare. + +The snare is broken, and we have escaped. + + +Our help is in Yahweh’s name, + +who made heaven and earth. + + + + +A Song of Ascents. + +Those who trust in Yahweh are as Mount Zion, + +which can’t be moved, but remains forever. + + +As the mountains surround Jerusalem, + +so Yahweh surrounds his people from this time forward and forever more. + + +For the scepter of wickedness won’t remain over the allotment of the righteous, + +so that the righteous won’t use their hands to do evil. + + +Do good, Yahweh, to those who are good, + +to those who are upright in their hearts. + + +But as for those who turn away to their crooked ways, + +Yahweh will lead them away with the workers of iniquity. + +Peace be on Israel. + + + + +A Song of Ascents. + +When Yahweh brought back those who returned to Zion, + +we were like those who dream. + + +Then our mouth was filled with laughter, + +and our tongue with singing. + +Then they said among the nations, + +Yahweh has done great things for them.” + + +Yahweh has done great things for us, + +and we are glad. + + +Restore our fortunes again, Yahweh, + +like the streams in the Negev. + + +Those who sow in tears will reap in joy. + + +He who goes out weeping, carrying seed for sowing, + +will certainly come again with joy, carrying his sheaves. + + + + +A Song of Ascents. By Solomon. + +Unless Yahweh builds the house, + +they who build it labor in vain. + +Unless Yahweh watches over the city, + +the watchman guards it in vain. + + +It is vain for you to rise up early, + +to stay up late, + +eating the bread of toil, + +for he gives sleep to his loved ones. + + +Behold, children are a heritage of Yahweh. + +The fruit of the womb is his reward. + + +As arrows in the hand of a mighty man, + +so are the children of youth. + + +Happy is the man who has his quiver full of them. + +They won’t be disappointed when they speak with their enemies in the gate. + + + + +A Song of Ascents. + +Blessed is everyone who fears Yahweh, + +who walks in his ways. + + +For you will eat the labor of your hands. + +You will be happy, and it will be well with you. + + +Your wife will be as a fruitful vine in the innermost parts of your house, + +your children like olive shoots around your table. + + +Behold, this is how the man who fears Yahweh is blessed. + + +May Yahweh bless you out of Zion, + +and may you see the good of Jerusalem all the days of your life. + + +Yes, may you see your children’s children. + +Peace be upon Israel. + + + + +A Song of Ascents. + +Many times they have afflicted me from my youth up. + +Let Israel now say: + + +many times they have afflicted me from my youth up, + +yet they have not prevailed against me. + + +The plowers plowed on my back. + +They made their furrows long. + + +Yahweh is righteous. + +He has cut apart the cords of the wicked. + + +Let them be disappointed and turned backward, + +all those who hate Zion. + + +Let them be as the grass on the housetops, + +which withers before it grows up, + + +with which the reaper doesn’t fill his hand, + +nor he who binds sheaves, his bosom. + + +Neither do those who go by say, + +The blessing of Yahweh be on you. + +We bless you in Yahweh’s name.” + + + + +A Song of Ascents. + +Out of the depths I have cried to you, Yahweh. + + +Lord, hear my voice. + +Let your ears be attentive to the voice of my petitions. + + +If you, Yah, kept a record of sins, + +Lord, who could stand? + + +But there is forgiveness with you, + +therefore you are feared. + + +I wait for Yahweh. + +My soul waits. + +I hope in his word. + + +My soul longs for the Lord more than watchmen long for the morning, + +more than watchmen for the morning. + + +Israel, hope in Yahweh, + +for there is loving kindness with Yahweh. + +Abundant redemption is with him. + + +He will redeem Israel from all their sins. + + + + +A Song of Ascents. By David. + +Yahweh, my heart isn’t arrogant, nor my eyes lofty; + +nor do I concern myself with great matters, + +or things too wonderful for me. + + +Surely I have stilled and quieted my soul, + +like a weaned child with his mother, + +like a weaned child is my soul within me. + + +Israel, hope in Yahweh, + +from this time forward and forever more. + + + + +A Song of Ascents. + +Yahweh, remember David and all his affliction, + + +how he swore to Yahweh, + +and vowed to the Mighty One of Jacob: + + +Surely I will not come into the structure of my house, + +nor go up into my bed; + + +I will not give sleep to my eyes, + +or slumber to my eyelids, + + +until I find out a place for Yahweh, + +a dwelling for the Mighty One of Jacob.” + + +Behold, we heard of it in Ephrathah. + +We found it in the field of Jaar. + + +“We will go into his dwelling place. + +We will worship at his footstool.” + + +Arise, Yahweh, into your resting place, + +you, and the ark of your strength. + + +Let your priests be clothed with righteousness. + +Let your saints shout for joy! + + +For your servant David’s sake, + +don’t turn away the face of your anointed one. + + +Yahweh has sworn to David in truth. + +He will not turn from it: + +I will set the fruit of your body on your throne. + + +If your children will keep my covenant, + +my testimony that I will teach them, + +their children also will sit on your throne forever more.” + + +For Yahweh has chosen Zion. + +He has desired it for his habitation. + + +This is my resting place forever. + +I will live here, for I have desired it. + + +I will abundantly bless her provision. + +I will satisfy her poor with bread. + + +I will also clothe her priests with salvation. + +Her saints will shout aloud for joy. + + +I will make the horn of David to bud there. + +I have ordained a lamp for my anointed. + + +I will clothe his enemies with shame, + +but on himself, his crown will shine.” + + + + +A Song of Ascents. By David. + +See how good and how pleasant it is + +for brothers to live together in unity! + + +It is like the precious oil on the head, + +that ran down on the beard, + +even Aaron’s beard, + +that came down on the edge of his robes, + + +like the dew of Hermon, + +that comes down on the hills of Zion; + +for there Yahweh gives the blessing, + +even life forever more. + + + + +A Song of Ascents. + +Look! Praise Yahweh, all you servants of Yahweh, + +who stand by night in Yahweh’s house! + + +Lift up your hands in the sanctuary. + +Praise Yahweh! + + +May Yahweh bless you from Zion, + +even he who made heaven and earth. + + + + +Praise Yah! + +Praise Yahweh’s name! + +Praise him, you servants of Yahweh, + + +you who stand in Yahweh’s house, + +in the courts of our God’s house. + + +Praise Yah, for Yahweh is good. + +Sing praises to his name, for that is pleasant. + + +For Yah has chosen Jacob for himself, + +Israel for his own possession. + + +For I know that Yahweh is great, + +that our Lord is above all gods. + + +Whatever Yahweh pleased, that he has done, + +in heaven and in earth, in the seas and in all deeps. + + +He causes the clouds to rise from the ends of the earth. + +He makes lightnings with the rain. + +He brings the wind out of his treasuries. + + +He struck the firstborn of Egypt, + +both of man and animal. + + +He sent signs and wonders into the middle of you, Egypt, + +on Pharaoh, and on all his servants. + + +He struck many nations, + +and killed mighty kings— + + +Sihon king of the Amorites, + +Og king of Bashan, + +and all the kingdoms of Canaan— + + +and gave their land for a heritage, + +a heritage to Israel, his people. + + +Your name, Yahweh, endures forever; + +your renown, Yahweh, throughout all generations. + + +For Yahweh will judge his people + +and have compassion on his servants. + + + +The idols of the nations are silver and gold, + +the work of men’s hands. + + +They have mouths, but they can’t speak. + +They have eyes, but they can’t see. + + +They have ears, but they can’t hear, + +neither is there any breath in their mouths. + + +Those who make them will be like them, + +yes, everyone who trusts in them. + + +House of Israel, praise Yahweh! + +House of Aaron, praise Yahweh! + + +House of Levi, praise Yahweh! + +You who fear Yahweh, praise Yahweh! + + +Blessed be Yahweh from Zion, + +who dwells in Jerusalem. + +Praise Yah! + + + + +Give thanks to Yahweh, for he is good, + +for his loving kindness endures forever. + + +Give thanks to the God of gods, + +for his loving kindness endures forever. + + +Give thanks to the Lord of lords, + +for his loving kindness endures forever; + + +to him who alone does great wonders, + +for his loving kindness endures forever; + + +to him who by understanding made the heavens, + +for his loving kindness endures forever; + + +to him who spread out the earth above the waters, + +for his loving kindness endures forever; + + +to him who made the great lights, + +for his loving kindness endures forever; + + +the sun to rule by day, + +for his loving kindness endures forever; + + +the moon and stars to rule by night, + +for his loving kindness endures forever; + + +to him who struck down the Egyptian firstborn, + +for his loving kindness endures forever; + + +and brought out Israel from among them, + +for his loving kindness endures forever; + + +with a strong hand, and with an outstretched arm, + +for his loving kindness endures forever; + + +to him who divided the Red Sea apart, + +for his loving kindness endures forever; + + +and made Israel to pass through the middle of it, + +for his loving kindness endures forever; + + +but overthrew Pharaoh and his army in the Red Sea, + +for his loving kindness endures forever; + + +to him who led his people through the wilderness, + +for his loving kindness endures forever; + + +to him who struck great kings, + +for his loving kindness endures forever; + + +and killed mighty kings, + +for his loving kindness endures forever; + + +Sihon king of the Amorites, + +for his loving kindness endures forever; + + +Og king of Bashan, + +for his loving kindness endures forever; + + +and gave their land as an inheritance, + +for his loving kindness endures forever; + + +even a heritage to Israel his servant, + +for his loving kindness endures forever; + + +who remembered us in our low estate, + +for his loving kindness endures forever; + + +and has delivered us from our adversaries, + +for his loving kindness endures forever; + + +who gives food to every creature, + +for his loving kindness endures forever. + + +Oh give thanks to the God of heaven, + +for his loving kindness endures forever. + + + + +By the rivers of Babylon, there we sat down. + +Yes, we wept, when we remembered Zion. + + +On the willows in that land, + +we hung up our harps. + + +For there, those who led us captive asked us for songs. + +Those who tormented us demanded songs of joy: + +Sing us one of the songs of Zion!” + + +How can we sing Yahweh’s song in a foreign land? + + +If I forget you, Jerusalem, + +let my right hand forget its skill. + + +Let my tongue stick to the roof of my mouth if I don’t remember you, + +if I don’t prefer Jerusalem above my chief joy. + + +Remember, Yahweh, against the children of Edom in the day of Jerusalem, + +who said, “Raze it! + +Raze it even to its foundation!” + + +Daughter of Babylon, doomed to destruction, + +he will be happy who repays you, + +as you have done to us. + + +Happy shall he be, + +who takes and dashes your little ones against the rock. + + + + +By David. + +I will give you thanks with my whole heart. + +Before the gods,138:1 +The word elohim, used here, usually means “God” but can also mean “gods”, “princes”, or “angels”. I will sing praises to you. + + +I will bow down toward your holy temple, + +and give thanks to your Name for your loving kindness and for your truth; + +for you have exalted your Name and your Word above all. + + +In the day that I called, you answered me. + +You encouraged me with strength in my soul. + + +All the kings of the earth will give you thanks, Yahweh, + +for they have heard the words of your mouth. + + +Yes, they will sing of the ways of Yahweh, + +for Yahweh’s glory is great! + + +For though Yahweh is high, yet he looks after the lowly; + +but he knows the proud from afar. + + +Though I walk in the middle of trouble, you will revive me. + +You will stretch out your hand against the wrath of my enemies. + +Your right hand will save me. + + +Yahweh will fulfill that which concerns me. + +Your loving kindness, Yahweh, endures forever. + +Don’t forsake the works of your own hands. + + + + +For the Chief Musician. A Psalm by David. + +Yahweh, you have searched me, + +and you know me. + + +You know my sitting down and my rising up. + +You perceive my thoughts from afar. + + +You search out my path and my lying down, + +and are acquainted with all my ways. + + +For there is not a word on my tongue, + +but behold, Yahweh, you know it altogether. + + +You hem me in behind and before. + +You laid your hand on me. + + +This knowledge is beyond me. + +It’s lofty. + +I can’t attain it. + + +Where could I go from your Spirit? + +Or where could I flee from your presence? + + +If I ascend up into heaven, you are there. + +If I make my bed in Sheol,139:8 +Sheol is the place of the dead. behold, you are there! + + +If I take the wings of the dawn, + +and settle in the uttermost parts of the sea, + + +even there your hand will lead me, + +and your right hand will hold me. + + +If I say, “Surely the darkness will overwhelm me. + +The light around me will be night,” + + +even the darkness doesn’t hide from you, + +but the night shines as the day. + +The darkness is like light to you. + + +For you formed my inmost being. + +You knit me together in my mother’s womb. + + +I will give thanks to you, + +for I am fearfully and wonderfully made. + +Your works are wonderful. + +My soul knows that very well. + + +My frame wasn’t hidden from you, + +when I was made in secret, + +woven together in the depths of the earth. + + +Your eyes saw my body. + +In your book they were all written, + +the days that were ordained for me, + +when as yet there were none of them. + + +How precious to me are your thoughts, God! + +How vast is their sum! + + +If I would count them, they are more in number than the sand. + +When I wake up, I am still with you. + + +If only you, God, would kill the wicked. + +Get away from me, you bloodthirsty men! + + +For they speak against you wickedly. + +Your enemies take your name in vain. + + +Yahweh, don’t I hate those who hate you? + +Am I not grieved with those who rise up against you? + + +I hate them with perfect hatred. + +They have become my enemies. + + +Search me, God, and know my heart. + +Try me, and know my thoughts. + + +See if there is any wicked way in me, + +and lead me in the everlasting way. + + + + +For the Chief Musician. A Psalm by David. + +Deliver me, Yahweh, from evil men. + +Preserve me from violent men: + + +those who devise mischief in their hearts. + +They continually gather themselves together for war. + + +They have sharpened their tongues like a serpent. + +Viper’s poison is under their lips. +Selah. + + +Yahweh, keep me from the hands of the wicked. + +Preserve me from the violent men who have determined to trip my feet. + + +The proud have hidden a snare for me, + +they have spread the cords of a net by the path. + +They have set traps for me. +Selah. + + +I said to Yahweh, “You are my God.” + +Listen to the cry of my petitions, Yahweh. + + +Yahweh, the Lord, the strength of my salvation, + +you have covered my head in the day of battle. + + +Yahweh, don’t grant the desires of the wicked. + +Don’t let their evil plans succeed, or they will become proud. +Selah. + + +As for the head of those who surround me, + +let the mischief of their own lips cover them. + + +Let burning coals fall on them. + +Let them be thrown into the fire, + +into miry pits, from where they never rise. + + +An evil speaker won’t be established on the earth. + +Evil will hunt the violent man to overthrow him. + + +I know that Yahweh will maintain the cause of the afflicted, + +and justice for the needy. + + +Surely the righteous will give thanks to your name. + +The upright will dwell in your presence. + + + + +A Psalm by David. + +Yahweh, I have called on you. + +Come to me quickly! + +Listen to my voice when I call to you. + + +Let my prayer be set before you like incense; + +the lifting up of my hands like the evening sacrifice. + + +Set a watch, Yahweh, before my mouth. + +Keep the door of my lips. + + +Don’t incline my heart to any evil thing, + +to practice deeds of wickedness with men who work iniquity. + +Don’t let me eat of their delicacies. + + +Let the righteous strike me, it is kindness; + +let him reprove me, it is like oil on the head; + +don’t let my head refuse it; + +Yet my prayer is always against evil deeds. + + +Their judges are thrown down by the sides of the rock. + +They will hear my words, for they are well spoken. + + +As when one plows and breaks up the earth, + +our bones are scattered at the mouth of Sheol.”141:7 +Sheol is the place of the dead. + + +For my eyes are on you, Yahweh, the Lord. + +I take refuge in you. + +Don’t leave my soul destitute. + + +Keep me from the snare which they have laid for me, + +from the traps of the workers of iniquity. + + +Let the wicked fall together into their own nets + +while I pass by. + + + + +A contemplation by David, when he was in the cave. A Prayer. + +I cry with my voice to Yahweh. + +With my voice, I ask Yahweh for mercy. + + +I pour out my complaint before him. + +I tell him my troubles. + + +When my spirit was overwhelmed within me, + +you knew my route. + +On the path in which I walk, + +they have hidden a snare for me. + + +Look on my right, and see; + +for there is no one who is concerned for me. + +Refuge has fled from me. + +No one cares for my soul. + + +I cried to you, Yahweh. + +I said, “You are my refuge, + +my portion in the land of the living.” + + +Listen to my cry, + +for I am in desperate need. + +Deliver me from my persecutors, + +for they are too strong for me. + + +Bring my soul out of prison, + +that I may give thanks to your name. + +The righteous will surround me, + +for you will be good to me. + + + + +A Psalm by David. + +Hear my prayer, Yahweh. + +Listen to my petitions. + +In your faithfulness and righteousness, relieve me. + + +Don’t enter into judgment with your servant, + +for in your sight no man living is righteous. + + +For the enemy pursues my soul. + +He has struck my life down to the ground. + +He has made me live in dark places, as those who have been long dead. + + +Therefore my spirit is overwhelmed within me. + +My heart within me is desolate. + + +I remember the days of old. + +I meditate on all your doings. + +I contemplate the work of your hands. + + +I spread out my hands to you. + +My soul thirsts for you, like a parched land. +Selah. + + +Hurry to answer me, Yahweh. + +My spirit fails. + +Don’t hide your face from me, + +so that I don’t become like those who go down into the pit. + + +Cause me to hear your loving kindness in the morning, + +for I trust in you. + +Cause me to know the way in which I should walk, + +for I lift up my soul to you. + + +Deliver me, Yahweh, from my enemies. + +I flee to you to hide me. + + +Teach me to do your will, + +for you are my God. + +Your Spirit is good. + +Lead me in the land of uprightness. + + +Revive me, Yahweh, for your name’s sake. + +In your righteousness, bring my soul out of trouble. + + +In your loving kindness, cut off my enemies, + +and destroy all those who afflict my soul, + +for I am your servant. + + + + +By David. + +Blessed be Yahweh, my rock, + +who trains my hands to war, + +and my fingers to battle— + + +my loving kindness, my fortress, + +my high tower, my deliverer, + +my shield, and he in whom I take refuge, + +who subdues my people under me. + + +Yahweh, what is man, that you care for him? + +Or the son of man, that you think of him? + + +Man is like a breath. + +His days are like a shadow that passes away. + + +Part your heavens, Yahweh, and come down. + +Touch the mountains, and they will smoke. + + +Throw out lightning, and scatter them. + +Send out your arrows, and rout them. + + +Stretch out your hand from above, + +rescue me, and deliver me out of great waters, + +out of the hands of foreigners, + + +whose mouths speak deceit, + +whose right hand is a right hand of falsehood. + + +I will sing a new song to you, God. + +On a ten-stringed lyre, I will sing praises to you. + + +You are he who gives salvation to kings, + +who rescues David, his servant, from the deadly sword. + + +Rescue me, and deliver me out of the hands of foreigners, + +whose mouths speak deceit, + +whose right hand is a right hand of falsehood. + + + +Then our sons will be like well-nurtured plants, + +our daughters like pillars carved to adorn a palace. + + +Our barns are full, filled with all kinds of provision. + +Our sheep produce thousands and ten thousands in our fields. + + +Our oxen will pull heavy loads. + +There is no breaking in, and no going away, + +and no outcry in our streets. + + +Happy are the people who are in such a situation. + +Happy are the people whose God is Yahweh. + + + + +A praise psalm by David.145:0 +This is an acrostic psalm, with every verse (including the second half of verse 13) starting with a consecutive letter of the Hebrew alphabet. + +I will exalt you, my God, the King. + +I will praise your name forever and ever. + + +Every day I will praise you. + +I will extol your name forever and ever. + + +Great is Yahweh, and greatly to be praised! + +His greatness is unsearchable. + + +One generation will commend your works to another, + +and will declare your mighty acts. + + +I will meditate on the glorious majesty of your honor, + +on your wondrous works. + + +Men will speak of the might of your awesome acts. + +I will declare your greatness. + + +They will utter the memory of your great goodness, + +and will sing of your righteousness. + + +Yahweh is gracious, merciful, + +slow to anger, and of great loving kindness. + + +Yahweh is good to all. + +His tender mercies are over all his works. + + +All your works will give thanks to you, Yahweh. + +Your saints will extol you. + + +They will speak of the glory of your kingdom, + +and talk about your power, + + +to make known to the sons of men his mighty acts, + +the glory of the majesty of his kingdom. + + +Your kingdom is an everlasting kingdom. + +Your dominion endures throughout all generations. + +Yahweh is faithful in all his words, + +and loving in all his deeds.145:13 +Some manuscripts omit these last two lines. + + +Yahweh upholds all who fall, + +and raises up all those who are bowed down. + + +The eyes of all wait for you. + +You give them their food in due season. + + +You open your hand, + +and satisfy the desire of every living thing. + + +Yahweh is righteous in all his ways, + +and gracious in all his works. + + +Yahweh is near to all those who call on him, + +to all who call on him in truth. + + +He will fulfill the desire of those who fear him. + +He also will hear their cry, and will save them. + + +Yahweh preserves all those who love him, + +but he will destroy all the wicked. + + +My mouth will speak the praise of Yahweh. + +Let all flesh bless his holy name forever and ever. + + + + + +Praise Yah! + +Praise Yahweh, my soul. + + +While I live, I will praise Yahweh. + +I will sing praises to my God as long as I exist. + + +Don’t put your trust in princes, + +in a son of man in whom there is no help. + + +His spirit departs, and he returns to the earth. + +In that very day, his thoughts perish. + + +Happy is he who has the God of Jacob for his help, + +whose hope is in Yahweh, his God, + + +who made heaven and earth, + +the sea, and all that is in them; + +who keeps truth forever; + + +who executes justice for the oppressed; + +who gives food to the hungry. + +Yahweh frees the prisoners. + + +Yahweh opens the eyes of the blind. + +Yahweh raises up those who are bowed down. + +Yahweh loves the righteous. + + +Yahweh preserves the foreigners. + +He upholds the fatherless and widow, + +but he turns the way of the wicked upside down. + + +Yahweh will reign forever; + +your God, O Zion, to all generations. + +Praise Yah! + + + + + +Praise Yah, + +for it is good to sing praises to our God; + +for it is pleasant and fitting to praise him. + + +Yahweh builds up Jerusalem. + +He gathers together the outcasts of Israel. + + +He heals the broken in heart, + +and binds up their wounds. + + +He counts the number of the stars. + +He calls them all by their names. + + +Great is our Lord, and mighty in power. + +His understanding is infinite. + + +Yahweh upholds the humble. + +He brings the wicked down to the ground. + + +Sing to Yahweh with thanksgiving. + +Sing praises on the harp to our God, + + +who covers the sky with clouds, + +who prepares rain for the earth, + +who makes grass grow on the mountains. + + +He provides food for the livestock, + +and for the young ravens when they call. + + +He doesn’t delight in the strength of the horse. + +He takes no pleasure in the legs of a man. + + +Yahweh takes pleasure in those who fear him, + +in those who hope in his loving kindness. + + +Praise Yahweh, Jerusalem! + +Praise your God, Zion! + + +For he has strengthened the bars of your gates. + +He has blessed your children within you. + + +He makes peace in your borders. + +He fills you with the finest of the wheat. + + +He sends out his commandment to the earth. + +His word runs very swiftly. + + +He gives snow like wool, + +and scatters frost like ashes. + + +He hurls down his hail like pebbles. + +Who can stand before his cold? + + +He sends out his word, and melts them. + +He causes his wind to blow, and the waters flow. + + +He shows his word to Jacob, + +his statutes and his ordinances to Israel. + + +He has not done this for just any nation. + +They don’t know his ordinances. + +Praise Yah! + + + + + +Praise Yah! + +Praise Yahweh from the heavens! + +Praise him in the heights! + + +Praise him, all his angels! + +Praise him, all his army! + + +Praise him, sun and moon! + +Praise him, all you shining stars! + + +Praise him, you heavens of heavens, + +you waters that are above the heavens. + + +Let them praise Yahweh’s name, + +for he commanded, and they were created. + + +He has also established them forever and ever. + +He has made a decree which will not pass away. + + +Praise Yahweh from the earth, + +you great sea creatures, and all depths, + + +lightning and hail, snow and clouds, + +stormy wind, fulfilling his word, + + +mountains and all hills, + +fruit trees and all cedars, + + +wild animals and all livestock, + +small creatures and flying birds, + + +kings of the earth and all peoples, + +princes and all judges of the earth, + + +both young men and maidens, + +old men and children. + + +Let them praise Yahweh’s name, + +for his name alone is exalted. + +His glory is above the earth and the heavens. + + +He has lifted up the horn of his people, + +the praise of all his saints, + +even of the children of Israel, a people near to him. + +Praise Yah! + + + + + +Praise Yahweh! + +Sing to Yahweh a new song, + +his praise in the assembly of the saints. + + +Let Israel rejoice in him who made them. + +Let the children of Zion be joyful in their King. + + +Let them praise his name in the dance! + +Let them sing praises to him with tambourine and harp! + + +For Yahweh takes pleasure in his people. + +He crowns the humble with salvation. + + +Let the saints rejoice in honor. + +Let them sing for joy on their beds. + + +May the high praises of God be in their mouths, + +and a two-edged sword in their hand, + + +to execute vengeance on the nations, + +and punishments on the peoples; + + +to bind their kings with chains, + +and their nobles with fetters of iron; + + +to execute on them the written judgment. + +All his saints have this honor. + +Praise Yah! + + + + + +Praise Yah! + +Praise God in his sanctuary! + +Praise him in his heavens for his acts of power! + + +Praise him for his mighty acts! + +Praise him according to his excellent greatness! + + +Praise him with the sounding of the trumpet! + +Praise him with harp and lyre! + + +Praise him with tambourine and dancing! + +Praise him with stringed instruments and flute! + + +Praise him with loud cymbals! + +Praise him with resounding cymbals! + + +Let everything that has breath praise Yah! + +Praise Yah! + + +
+World English Bible (WEB) +Proverbs +The Proverbs +Proverbs +Pro +

The Proverbs +

+ + +

The proverbs of Solomon, the son of David, king of Israel: + +

+to know wisdom and instruction; + +to discern the words of understanding; + + +to receive instruction in wise dealing, + +in righteousness, justice, and equity; + + +to give prudence to the simple, + +knowledge and discretion to the young man— + + +that the wise man may hear, and increase in learning; + +that the man of understanding may attain to sound counsel; + + +to understand a proverb and parables, + +the words and riddles of the wise. + + + +The fear of Yahweh1:7 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. is the beginning of knowledge, + +but the foolish despise wisdom and instruction. + + +My son, listen to your father’s instruction, + +and don’t forsake your mother’s teaching; + + +for they will be a garland to grace your head, + +and chains around your neck. + + +My son, if sinners entice you, + +don’t consent. + + +If they say, “Come with us. + +Let’s lie in wait for blood. + +Let’s lurk secretly for the innocent without cause. + + +Let’s swallow them up alive like Sheol,1:12 +Sheol is the place of the dead. + +and whole, like those who go down into the pit. + + +We’ll find all valuable wealth. + +We’ll fill our houses with plunder. + + +You shall cast your lot among us. + +We’ll all have one purse”— + + +my son, don’t walk on the path with them. + +Keep your foot from their path, + + +for their feet run to evil. + +They hurry to shed blood. + + +For the net is spread in vain in the sight of any bird; + + +but these lay in wait for their own blood. + +They lurk secretly for their own lives. + + +So are the ways of everyone who is greedy for gain. + +It takes away the life of its owners. + + + +Wisdom calls aloud in the street. + +She utters her voice in the public squares. + + +She calls at the head of noisy places. + +At the entrance of the city gates, she utters her words: + + +How long, you simple ones, will you love simplicity? + +How long will mockers delight themselves in mockery, + +and fools hate knowledge? + + +Turn at my reproof. + +Behold,1:23 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I will pour out my spirit on you. + +I will make known my words to you. + + +Because I have called, and you have refused; + +I have stretched out my hand, and no one has paid attention; + + +but you have ignored all my counsel, + +and wanted none of my reproof; + + +I also will laugh at your disaster. + +I will mock when calamity overtakes you, + + +when calamity overtakes you like a storm, + +when your disaster comes on like a whirlwind, + +when distress and anguish come on you. + + +Then they will call on me, but I will not answer. + +They will seek me diligently, but they will not find me, + + +because they hated knowledge, + +and didn’t choose the fear of Yahweh. + + +They wanted none of my counsel. + +They despised all my reproof. + + +Therefore they will eat of the fruit of their own way, + +and be filled with their own schemes. + + +For the backsliding of the simple will kill them. + +The careless ease of fools will destroy them. + + +But whoever listens to me will dwell securely, + +and will be at ease, without fear of harm.” + + + + +My son, if you will receive my words, + +and store up my commandments within you, + + +so as to turn your ear to wisdom, + +and apply your heart to understanding; + + +yes, if you call out for discernment, + +and lift up your voice for understanding; + + +if you seek her as silver, + +and search for her as for hidden treasures; + + +then you will understand the fear of Yahweh, + +and find the knowledge of God.2:5 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + + +For Yahweh gives wisdom. + +Out of his mouth comes knowledge and understanding. + + +He lays up sound wisdom for the upright. + +He is a shield to those who walk in integrity, + + +that he may guard the paths of justice, + +and preserve the way of his saints. + + +Then you will understand righteousness and justice, + +equity and every good path. + + +For wisdom will enter into your heart. + +Knowledge will be pleasant to your soul. + + +Discretion will watch over you. + +Understanding will keep you, + + +to deliver you from the way of evil, + +from the men who speak perverse things, + + +who forsake the paths of uprightness, + +to walk in the ways of darkness, + + +who rejoice to do evil, + +and delight in the perverseness of evil, + + +who are crooked in their ways, + +and wayward in their paths, + + +to deliver you from the strange woman, + +even from the foreigner who flatters with her words, + + +who forsakes the friend of her youth, + +and forgets the covenant of her God; + + +for her house leads down to death, + +her paths to the departed spirits. + + +None who go to her return again, + +neither do they attain to the paths of life. + + +Therefore walk in the way of good men, + +and keep the paths of the righteous. + + +For the upright will dwell in the land. + +The perfect will remain in it. + + +But the wicked will be cut off from the land. + +The treacherous will be rooted out of it. + + + + +My son, don’t forget my teaching, + +but let your heart keep my commandments, + + +for they will add to you length of days, + +years of life, and peace. + + +Don’t let kindness and truth forsake you. + +Bind them around your neck. + +Write them on the tablet of your heart. + + +So you will find favor, + +and good understanding in the sight of God and man. + + +Trust in Yahweh with all your heart, + +and don’t lean on your own understanding. + + +In all your ways acknowledge him, + +and he will make your paths straight. + + +Don’t be wise in your own eyes. + +Fear Yahweh, and depart from evil. + + +It will be health to your body, + +and nourishment to your bones. + + +Honor Yahweh with your substance, + +with the first fruits of all your increase; + + +so your barns will be filled with plenty, + +and your vats will overflow with new wine. + + +My son, don’t despise Yahweh’s discipline, + +neither be weary of his correction; + + +for whom Yahweh loves, he corrects, + +even as a father reproves the son in whom he delights. + + + +Happy is the man who finds wisdom, + +the man who gets understanding. + + +For her good profit is better than getting silver, + +and her return is better than fine gold. + + +She is more precious than rubies. + +None of the things you can desire are to be compared to her. + + +Length of days is in her right hand. + +In her left hand are riches and honor. + + +Her ways are ways of pleasantness. + +All her paths are peace. + + +She is a tree of life to those who lay hold of her. + +Happy is everyone who retains her. + + +By wisdom Yahweh founded the earth. + +By understanding, he established the heavens. + + +By his knowledge, the depths were broken up, + +and the skies drop down the dew. + + +My son, let them not depart from your eyes. + +Keep sound wisdom and discretion, + + +so they will be life to your soul, + +and grace for your neck. + + +Then you shall walk in your way securely. + +Your foot won’t stumble. + + +When you lie down, you will not be afraid. + +Yes, you will lie down, and your sleep will be sweet. + + +Don’t be afraid of sudden fear, + +neither of the desolation of the wicked, when it comes; + + +for Yahweh will be your confidence, + +and will keep your foot from being taken. + + + +Don’t withhold good from those to whom it is due, + +when it is in the power of your hand to do it. + + +Don’t say to your neighbor, “Go, and come again; + +tomorrow I will give it to you,” + +when you have it by you. + + +Don’t devise evil against your neighbor, + +since he dwells securely by you. + + +Don’t strive with a man without cause, + +if he has done you no harm. + + +Don’t envy the man of violence. + +Choose none of his ways. + + +For the perverse is an abomination to Yahweh, + +but his friendship is with the upright. + + +Yahweh’s curse is in the house of the wicked, + +but he blesses the habitation of the righteous. + + +Surely he mocks the mockers, + +but he gives grace to the humble. + + +The wise will inherit glory, + +but shame will be the promotion of fools. + + + + +Listen, sons, to a father’s instruction. + +Pay attention and know understanding; + + +for I give you sound learning. + +Don’t forsake my law. + + +For I was a son to my father, + +tender and an only child in the sight of my mother. + + +He taught me, and said to me: + +“Let your heart retain my words. + +Keep my commandments, and live. + + +Get wisdom. + +Get understanding. + +Don’t forget, and don’t deviate from the words of my mouth. + + +Don’t forsake her, and she will preserve you. + +Love her, and she will keep you. + + +Wisdom is supreme. + +Get wisdom. + +Yes, though it costs all your possessions, get understanding. + + +Esteem her, and she will exalt you. + +She will bring you to honor when you embrace her. + + +She will give to your head a garland of grace. + +She will deliver a crown of splendor to you.” + + + +Listen, my son, and receive my sayings. + +The years of your life will be many. + + +I have taught you in the way of wisdom. + +I have led you in straight paths. + + +When you go, your steps will not be hampered. + +When you run, you will not stumble. + + +Take firm hold of instruction. + +Don’t let her go. + +Keep her, for she is your life. + + +Don’t enter into the path of the wicked. + +Don’t walk in the way of evil men. + + +Avoid it, and don’t pass by it. + +Turn from it, and pass on. + + +For they don’t sleep unless they do evil. + +Their sleep is taken away, unless they make someone fall. + + +For they eat the bread of wickedness + +and drink the wine of violence. + + +But the path of the righteous is like the dawning light + +that shines more and more until the perfect day. + + +The way of the wicked is like darkness. + +They don’t know what they stumble over. + + + +My son, attend to my words. + +Turn your ear to my sayings. + + +Let them not depart from your eyes. + +Keep them in the center of your heart. + + +For they are life to those who find them, + +and health to their whole body. + + +Keep your heart with all diligence, + +for out of it is the wellspring of life. + + +Put away from yourself a perverse mouth. + +Put corrupt lips far from you. + + +Let your eyes look straight ahead. + +Fix your gaze directly before you. + + +Make the path of your feet level. + +Let all of your ways be established. + + +Don’t turn to the right hand nor to the left. + +Remove your foot from evil. + + + + +My son, pay attention to my wisdom. + +Turn your ear to my understanding, + + +that you may maintain discretion, + +that your lips may preserve knowledge. + + +For the lips of an adulteress drip honey. + +Her mouth is smoother than oil, + + +but in the end she is as bitter as wormwood, + +and as sharp as a two-edged sword. + + +Her feet go down to death. + +Her steps lead straight to Sheol.5:5 +Sheol is the place of the dead. + + + +She gives no thought to the way of life. + +Her ways are crooked, and she doesn’t know it. + + + +Now therefore, my sons, listen to me. + +Don’t depart from the words of my mouth. + + +Remove your way far from her. + +Don’t come near the door of her house, + + +lest you give your honor to others, + +and your years to the cruel one; + + +lest strangers feast on your wealth, + +and your labors enrich another man’s house. + + +You will groan at your latter end, + +when your flesh and your body are consumed, + + +and say, “How I have hated instruction, + +and my heart despised reproof. + + +I haven’t obeyed the voice of my teachers, + +nor turned my ear to those who instructed me! + + +I have come to the brink of utter ruin, + +among the gathered assembly.” + + + +Drink water out of your own cistern, + +running water out of your own well. + + +Should your springs overflow in the streets, + +streams of water in the public squares? + + +Let them be for yourself alone, + +not for strangers with you. + + +Let your spring be blessed. + +Rejoice in the wife of your youth. + + +A loving doe and a graceful deer— + +let her breasts satisfy you at all times. + +Be captivated always with her love. + + +For why should you, my son, be captivated with an adulteress? + +Why embrace the bosom of another? + + +For the ways of man are before Yahweh’s eyes. + +He examines all his paths. + + +The evil deeds of the wicked ensnare him. + +The cords of his sin hold him firmly. + + +He will die for lack of instruction. + +In the greatness of his folly, he will go astray. + + + + +My son, if you have become collateral for your neighbor, + +if you have struck your hands in pledge for a stranger, + + +you are trapped by the words of your mouth; + +you are ensnared with the words of your mouth. + + +Do this now, my son, and deliver yourself, + +since you have come into the hand of your neighbor. + +Go, humble yourself. + +Press your plea with your neighbor. + + +Give no sleep to your eyes, + +nor slumber to your eyelids. + + +Free yourself, like a gazelle from the hand of the hunter, + +like a bird from the snare of the fowler. + + + +Go to the ant, you sluggard. + +Consider her ways, and be wise; + + +which having no chief, overseer, or ruler, + + +provides her bread in the summer, + +and gathers her food in the harvest. + + +How long will you sleep, sluggard? + +When will you arise out of your sleep? + + +A little sleep, a little slumber, + +a little folding of the hands to sleep— + + +so your poverty will come as a robber, + +and your scarcity as an armed man. + + + +A worthless person, a man of iniquity, + +is he who walks with a perverse mouth, + + +who winks with his eyes, who signals with his feet, + +who motions with his fingers, + + +in whose heart is perverseness, + +who devises evil continually, + +who always sows discord. + + +Therefore his calamity will come suddenly. + +He will be broken suddenly, and that without remedy. + + + +There are six things which Yahweh hates; + +yes, seven which are an abomination to him: + + +arrogant eyes, a lying tongue, + +hands that shed innocent blood, + + +a heart that devises wicked schemes, + +feet that are swift in running to mischief, + + +a false witness who utters lies, + +and he who sows discord among brothers. + + + +My son, keep your father’s commandment, + +and don’t forsake your mother’s teaching. + + +Bind them continually on your heart. + +Tie them around your neck. + + +When you walk, it will lead you. + +When you sleep, it will watch over you. + +When you awake, it will talk with you. + + +For the commandment is a lamp, + +and the law is light. + +Reproofs of instruction are the way of life, + + +to keep you from the immoral woman, + +from the flattery of the wayward wife’s tongue. + + +Don’t lust after her beauty in your heart, + +neither let her captivate you with her eyelids. + + +For a prostitute reduces you to a piece of bread. + +The adulteress hunts for your precious life. + + +Can a man scoop fire into his lap, + +and his clothes not be burned? + + +Or can one walk on hot coals, + +and his feet not be scorched? + + +So is he who goes in to his neighbor’s wife. + +Whoever touches her will not be unpunished. + + +Men don’t despise a thief + +if he steals to satisfy himself when he is hungry, + + +but if he is found, he shall restore seven times. + +He shall give all the wealth of his house. + + +He who commits adultery with a woman is void of understanding. + +He who does it destroys his own soul. + + +He will get wounds and dishonor. + +His reproach will not be wiped away. + + +For jealousy arouses the fury of the husband. + +He won’t spare in the day of vengeance. + + +He won’t regard any ransom, + +neither will he rest content, though you give many gifts. + + + + +My son, keep my words. + +Lay up my commandments within you. + + +Keep my commandments and live! + +Guard my teaching as the apple of your eye. + + +Bind them on your fingers. + +Write them on the tablet of your heart. + + +Tell wisdom, “You are my sister.” + +Call understanding your relative, + + +that they may keep you from the strange woman, + +from the foreigner who flatters with her words. + + +For at the window of my house, + +I looked out through my lattice. + + +I saw among the simple ones. + +I discerned among the youths a young man void of understanding, + + +passing through the street near her corner, + +he went the way to her house, + + +in the twilight, in the evening of the day, + +in the middle of the night and in the darkness. + + +Behold, there a woman met him with the attire of a prostitute, + +and with crafty intent. + + +She is loud and defiant. + +Her feet don’t stay in her house. + + +Now she is in the streets, now in the squares, + +and lurking at every corner. + + +So she caught him, and kissed him. + +With an impudent face she said to him: + + +Sacrifices of peace offerings are with me. + +Today I have paid my vows. + + +Therefore I came out to meet you, + +to diligently seek your face, + +and I have found you. + + +I have spread my couch with carpets of tapestry, + +with striped cloths of the yarn of Egypt. + + +I have perfumed my bed with myrrh, aloes, and cinnamon. + + +Come, let’s take our fill of loving until the morning. + +Let’s solace ourselves with loving. + + +For my husband isn’t at home. + +He has gone on a long journey. + + +He has taken a bag of money with him. + +He will come home at the full moon.” + + +With persuasive words, she led him astray. + +With the flattering of her lips, she seduced him. + + +He followed her immediately, + +as an ox goes to the slaughter, + +as a fool stepping into a noose. + + +Until an arrow strikes through his liver, + +as a bird hurries to the snare, + +and doesn’t know that it will cost his life. + + + +Now therefore, sons, listen to me. + +Pay attention to the words of my mouth. + + +Don’t let your heart turn to her ways. + +Don’t go astray in her paths, + + +for she has thrown down many wounded. + +Yes, all her slain are a mighty army. + + +Her house is the way to Sheol,7:27 +Sheol is the place of the dead. + + +going down to the rooms of death. + + + + +Doesn’t wisdom cry out? + +Doesn’t understanding raise her voice? + + +On the top of high places by the way, + +where the paths meet, she stands. + + +Beside the gates, at the entry of the city, + +at the entry doors, she cries aloud: + + +I call to you men! + +I send my voice to the sons of mankind. + + +You simple, understand prudence! + +You fools, be of an understanding heart! + + +Hear, for I will speak excellent things. + +The opening of my lips is for right things. + + +For my mouth speaks truth. + +Wickedness is an abomination to my lips. + + +All the words of my mouth are in righteousness. + +There is nothing crooked or perverse in them. + + +They are all plain to him who understands, + +right to those who find knowledge. + + +Receive my instruction rather than silver, + +knowledge rather than choice gold. + + +For wisdom is better than rubies. + +All the things that may be desired can’t be compared to it. + + + +I, wisdom, have made prudence my dwelling. + +Find out knowledge and discretion. + + +The fear of Yahweh is to hate evil. + +I hate pride, arrogance, the evil way, and the perverse mouth. + + +Counsel and sound knowledge are mine. + +I have understanding and power. + + +By me kings reign, + +and princes decree justice. + + +By me princes rule, + +nobles, and all the righteous rulers of the earth. + + +I love those who love me. + +Those who seek me diligently will find me. + + +With me are riches, honor, + +enduring wealth, and prosperity. + + +My fruit is better than gold, yes, than fine gold, + +my yield than choice silver. + + +I walk in the way of righteousness, + +in the middle of the paths of justice, + + +that I may give wealth to those who love me. + +I fill their treasuries. + + + +Yahweh possessed me in the beginning of his work, + +before his deeds of old. + + +I was set up from everlasting, from the beginning, + +before the earth existed. + + +When there were no depths, I was born, + +when there were no springs abounding with water. + + +Before the mountains were settled in place, + +before the hills, I was born; + + +while as yet he had not made the earth, nor the fields, + +nor the beginning of the dust of the world. + + +When he established the heavens, I was there. + +When he set a circle on the surface of the deep, + + +when he established the clouds above, + +when the springs of the deep became strong, + + +when he gave to the sea its boundary, + +that the waters should not violate his commandment, + +when he marked out the foundations of the earth, + + +then I was the craftsman by his side. + +I was a delight day by day, + +always rejoicing before him, + + +rejoicing in his whole world. + +My delight was with the sons of men. + + + +Now therefore, my sons, listen to me, + +for blessed are those who keep my ways. + + +Hear instruction, and be wise. + +Don’t refuse it. + + +Blessed is the man who hears me, + +watching daily at my gates, + +waiting at my door posts. + + +For whoever finds me finds life, + +and will obtain favor from Yahweh. + + +But he who sins against me wrongs his own soul. + +All those who hate me love death.” + + + + +Wisdom has built her house. + +She has carved out her seven pillars. + + +She has prepared her meat. + +She has mixed her wine. + +She has also set her table. + + +She has sent out her maidens. + +She cries from the highest places of the city: + + +Whoever is simple, let him turn in here!” + +As for him who is void of understanding, she says to him, + + +Come, eat some of my bread, + +Drink some of the wine which I have mixed! + + +Leave your simple ways, and live. + +Walk in the way of understanding.” + + + +One who corrects a mocker invites insult. + +One who reproves a wicked man invites abuse. + + +Don’t reprove a scoffer, lest he hate you. + +Reprove a wise person, and he will love you. + + +Instruct a wise person, and he will be still wiser. + +Teach a righteous person, and he will increase in learning. + + +The fear of Yahweh is the beginning of wisdom. + +The knowledge of the Holy One is understanding. + + +For by me your days will be multiplied. + +The years of your life will be increased. + + +If you are wise, you are wise for yourself. + +If you mock, you alone will bear it. + + + +The foolish woman is loud, + +undisciplined, and knows nothing. + + +She sits at the door of her house, + +on a seat in the high places of the city, + + +to call to those who pass by, + +who go straight on their ways, + + +Whoever is simple, let him turn in here.” + +As for him who is void of understanding, she says to him, + + +Stolen water is sweet. + +Food eaten in secret is pleasant.” + + +But he doesn’t know that the departed spirits are there, + +that her guests are in the depths of Sheol.9:18 +Sheol is the place of the dead. + + + + +

The proverbs of Solomon. +

+A wise son makes a glad father; + +but a foolish son brings grief to his mother. + + +Treasures of wickedness profit nothing, + +but righteousness delivers from death. + + +Yahweh will not allow the soul of the righteous to go hungry, + +but he thrusts away the desire of the wicked. + + +He becomes poor who works with a lazy hand, + +but the hand of the diligent brings wealth. + + +He who gathers in summer is a wise son, + +but he who sleeps during the harvest is a son who causes shame. + + +Blessings are on the head of the righteous, + +but violence covers the mouth of the wicked. + + +The memory of the righteous is blessed, + +but the name of the wicked will rot. + + +The wise in heart accept commandments, + +but a chattering fool will fall. + + +He who walks blamelessly walks surely, + +but he who perverts his ways will be found out. + + +One who winks with the eye causes sorrow, + +but a chattering fool will fall. + + +The mouth of the righteous is a spring of life, + +but violence covers the mouth of the wicked. + + +Hatred stirs up strife, + +but love covers all wrongs. + + +Wisdom is found on the lips of him who has discernment, + +but a rod is for the back of him who is void of understanding. + + +Wise men lay up knowledge, + +but the mouth of the foolish is near ruin. + + +The rich man’s wealth is his strong city. + +The destruction of the poor is their poverty. + + +The labor of the righteous leads to life. + +The increase of the wicked leads to sin. + + +He is in the way of life who heeds correction, + +but he who forsakes reproof leads others astray. + + +He who hides hatred has lying lips. + +He who utters a slander is a fool. + + +In the multitude of words there is no lack of disobedience, + +but he who restrains his lips does wisely. + + +The tongue of the righteous is like choice silver. + +The heart of the wicked is of little worth. + + +The lips of the righteous feed many, + +but the foolish die for lack of understanding. + + +Yahweh’s blessing brings wealth, + +and he adds no trouble to it. + + +It is a fool’s pleasure to do wickedness, + +but wisdom is a man of understanding’s pleasure. + + +What the wicked fear will overtake them, + +but the desire of the righteous will be granted. + + +When the whirlwind passes, the wicked is no more; + +but the righteous stand firm forever. + + +As vinegar to the teeth, and as smoke to the eyes, + +so is the sluggard to those who send him. + + +The fear of Yahweh prolongs days, + +but the years of the wicked shall be shortened. + + +The prospect of the righteous is joy, + +but the hope of the wicked will perish. + + +The way of Yahweh is a stronghold to the upright, + +but it is a destruction to the workers of iniquity. + + +The righteous will never be removed, + +but the wicked will not dwell in the land. + + +The mouth of the righteous produces wisdom, + +but the perverse tongue will be cut off. + + +The lips of the righteous know what is acceptable, + +but the mouth of the wicked is perverse. + + + + +A false balance is an abomination to Yahweh, + +but accurate weights are his delight. + + +When pride comes, then comes shame, + +but with humility comes wisdom. + + +The integrity of the upright shall guide them, + +but the perverseness of the treacherous shall destroy them. + + +Riches don’t profit in the day of wrath, + +but righteousness delivers from death. + + +The righteousness of the blameless will direct his way, + +but the wicked shall fall by his own wickedness. + + +The righteousness of the upright shall deliver them, + +but the unfaithful will be trapped by evil desires. + + +When a wicked man dies, hope perishes, + +and expectation of power comes to nothing. + + +A righteous person is delivered out of trouble, + +and the wicked takes his place. + + +With his mouth the godless man destroys his neighbor, + +but the righteous will be delivered through knowledge. + + +When it goes well with the righteous, the city rejoices. + +When the wicked perish, there is shouting. + + +By the blessing of the upright, the city is exalted, + +but it is overthrown by the mouth of the wicked. + + +One who despises his neighbor is void of wisdom, + +but a man of understanding holds his peace. + + +One who brings gossip betrays a confidence, + +but one who is of a trustworthy spirit is one who keeps a secret. + + +Where there is no wise guidance, the nation falls, + +but in the multitude of counselors there is victory. + + +He who is collateral for a stranger will suffer for it, + +but he who refuses pledges of collateral is secure. + + +A gracious woman obtains honor, + +but violent men obtain riches. + + +The merciful man does good to his own soul, + +but he who is cruel troubles his own flesh. + + +Wicked people earn deceitful wages, + +but one who sows righteousness reaps a sure reward. + + +He who is truly righteous gets life. + +He who pursues evil gets death. + + +Those who are perverse in heart are an abomination to Yahweh, + +but those whose ways are blameless are his delight. + + +Most certainly, the evil man will not be unpunished, + +but the offspring11:21 +or, seed of the righteous will be delivered. + + +Like a gold ring in a pig’s snout, + +is a beautiful woman who lacks discretion. + + +The desire of the righteous is only good. + +The expectation of the wicked is wrath. + + +There is one who scatters, and increases yet more. + +There is one who withholds more than is appropriate, but gains poverty. + + +The liberal soul shall be made fat. + +He who waters shall be watered also himself. + + +People curse someone who withholds grain, + +but blessing will be on the head of him who sells it. + + +He who diligently seeks good seeks favor, + +but he who searches after evil, it shall come to him. + + +He who trusts in his riches will fall, + +but the righteous shall flourish as the green leaf. + + +He who troubles his own house shall inherit the wind. + +The foolish shall be servant to the wise of heart. + + +The fruit of the righteous is a tree of life. + +He who is wise wins souls. + + +Behold, the righteous shall be repaid on the earth, + +how much more the wicked and the sinner! + + + + +Whoever loves correction loves knowledge, + +but he who hates reproof is stupid. + + +A good man shall obtain favor from Yahweh, + +but he will condemn a man of wicked plans. + + +A man shall not be established by wickedness, + +but the root of the righteous shall not be moved. + + +A worthy woman is the crown of her husband, + +but a disgraceful wife is as rottenness in his bones. + + +The thoughts of the righteous are just, + +but the advice of the wicked is deceitful. + + +The words of the wicked are about lying in wait for blood, + +but the speech of the upright rescues them. + + +The wicked are overthrown, and are no more, + +but the house of the righteous shall stand. + + +A man shall be commended according to his wisdom, + +but he who has a warped mind shall be despised. + + +Better is he who is little known, and has a servant, + +than he who honors himself and lacks bread. + + +A righteous man respects the life of his animal, + +but the tender mercies of the wicked are cruel. + + +He who tills his land shall have plenty of bread, + +but he who chases fantasies is void of understanding. + + +The wicked desires the plunder of evil men, + +but the root of the righteous flourishes. + + +An evil man is trapped by sinfulness of lips, + +but the righteous shall come out of trouble. + + +A man shall be satisfied with good by the fruit of his mouth. + +The work of a man’s hands shall be rewarded to him. + + +The way of a fool is right in his own eyes, + +but he who is wise listens to counsel. + + +A fool shows his annoyance the same day, + +but one who overlooks an insult is prudent. + + +He who is truthful testifies honestly, + +but a false witness lies. + + +There is one who speaks rashly like the piercing of a sword, + +but the tongue of the wise heals. + + +Truth’s lips will be established forever, + +but a lying tongue is only momentary. + + +Deceit is in the heart of those who plot evil, + +but joy comes to the promoters of peace. + + +No mischief shall happen to the righteous, + +but the wicked shall be filled with evil. + + +Lying lips are an abomination to Yahweh, + +but those who do the truth are his delight. + + +A prudent man keeps his knowledge, + +but the hearts of fools proclaim foolishness. + + +The hands of the diligent ones shall rule, + +but laziness ends in slave labor. + + +Anxiety in a man’s heart weighs it down, + +but a kind word makes it glad. + + +A righteous person is cautious in friendship, + +but the way of the wicked leads them astray. + + +The slothful man doesn’t roast his game, + +but the possessions of diligent men are prized. + + +In the way of righteousness is life; + +in its path there is no death. + + + + +A wise son listens to his father’s instruction, + +but a scoffer doesn’t listen to rebuke. + + +By the fruit of his lips, a man enjoys good things, + +but the unfaithful crave violence. + + +He who guards his mouth guards his soul. + +One who opens wide his lips comes to ruin. + + +The soul of the sluggard desires, and has nothing, + +but the desire of the diligent shall be fully satisfied. + + +A righteous man hates lies, + +but a wicked man brings shame and disgrace. + + +Righteousness guards the way of integrity, + +but wickedness overthrows the sinner. + + +There are some who pretend to be rich, yet have nothing. + +There are some who pretend to be poor, yet have great wealth. + + +The ransom of a man’s life is his riches, + +but the poor hear no threats. + + +The light of the righteous shines brightly, + +but the lamp of the wicked is snuffed out. + + +Pride only breeds quarrels, + +but wisdom is with people who take advice. + + +Wealth gained dishonestly dwindles away, + +but he who gathers by hand makes it grow. + + +Hope deferred makes the heart sick, + +but when longing is fulfilled, it is a tree of life. + + +Whoever despises instruction will pay for it, + +but he who respects a command will be rewarded. + + +The teaching of the wise is a spring of life, + +to turn from the snares of death. + + +Good understanding wins favor, + +but the way of the unfaithful is hard. + + +Every prudent man acts from knowledge, + +but a fool exposes folly. + + +A wicked messenger falls into trouble, + +but a trustworthy envoy gains healing. + + +Poverty and shame come to him who refuses discipline, + +but he who heeds correction shall be honored. + + +Longing fulfilled is sweet to the soul, + +but fools detest turning from evil. + + +One who walks with wise men grows wise, + +but a companion of fools suffers harm. + + +Misfortune pursues sinners, + +but prosperity rewards the righteous. + + +A good man leaves an inheritance to his children’s children, + +but the wealth of the sinner is stored for the righteous. + + +An abundance of food is in poor people’s fields, + +but injustice sweeps it away. + + +One who spares the rod hates his son, + +but one who loves him is careful to discipline him. + + +The righteous one eats to the satisfying of his soul, + +but the belly of the wicked goes hungry. + + + + +Every wise woman builds her house, + +but the foolish one tears it down with her own hands. + + +He who walks in his uprightness fears Yahweh, + +but he who is perverse in his ways despises him. + + +The fool’s talk brings a rod to his back, + +but the lips of the wise protect them. + + +Where no oxen are, the crib is clean, + +but much increase is by the strength of the ox. + + +A truthful witness will not lie, + +but a false witness pours out lies. + + +A scoffer seeks wisdom, and doesn’t find it, + +but knowledge comes easily to a discerning person. + + +Stay away from a foolish man, + +for you won’t find knowledge on his lips. + + +The wisdom of the prudent is to think about his way, + +but the folly of fools is deceit. + + +Fools mock at making atonement for sins, + +but among the upright there is good will. + + +The heart knows its own bitterness and joy; + +he will not share these with a stranger. + + +The house of the wicked will be overthrown, + +but the tent of the upright will flourish. + + +There is a way which seems right to a man, + +but in the end it leads to death. + + +Even in laughter the heart may be sorrowful, + +and mirth may end in heaviness. + + +The unfaithful will be repaid for his own ways; + +likewise a good man will be rewarded for his ways. + + +A simple man believes everything, + +but the prudent man carefully considers his ways. + + +A wise man fears and shuns evil, + +but the fool is hot headed and reckless. + + +He who is quick to become angry will commit folly, + +and a crafty man is hated. + + +The simple inherit folly, + +but the prudent are crowned with knowledge. + + +The evil bow down before the good, + +and the wicked at the gates of the righteous. + + +The poor person is shunned even by his own neighbor, + +but the rich person has many friends. + + +He who despises his neighbor sins, + +but he who has pity on the poor is blessed. + + +Don’t they go astray who plot evil? + +But love and faithfulness belong to those who plan good. + + +In all hard work there is profit, + +but the talk of the lips leads only to poverty. + + +The crown of the wise is their riches, + +but the folly of fools crowns them with folly. + + +A truthful witness saves souls, + +but a false witness is deceitful. + + +In the fear of Yahweh is a secure fortress, + +and he will be a refuge for his children. + + +The fear of Yahweh is a fountain of life, + +turning people from the snares of death. + + +In the multitude of people is the king’s glory, + +but in the lack of people is the destruction of the prince. + + +He who is slow to anger has great understanding, + +but he who has a quick temper displays folly. + + +The life of the body is a heart at peace, + +but envy rots the bones. + + +He who oppresses the poor shows contempt for his Maker, + +but he who is kind to the needy honors him. + + +The wicked is brought down in his calamity, + +but in death, the righteous has a refuge. + + +Wisdom rests in the heart of one who has understanding, + +and is even made known in the inward part of fools. + + +Righteousness exalts a nation, + +but sin is a disgrace to any people. + + +The king’s favor is toward a servant who deals wisely, + +but his wrath is toward one who causes shame. + + + + +A gentle answer turns away wrath, + +but a harsh word stirs up anger. + + +The tongue of the wise commends knowledge, + +but the mouths of fools gush out folly. + + +Yahweh’s eyes are everywhere, + +keeping watch on the evil and the good. + + +A gentle tongue is a tree of life, + +but deceit in it crushes the spirit. + + +A fool despises his father’s correction, + +but he who heeds reproof shows prudence. + + +In the house of the righteous is much treasure, + +but the income of the wicked brings trouble. + + +The lips of the wise spread knowledge; + +not so with the heart of fools. + + +The sacrifice made by the wicked is an abomination to Yahweh, + +but the prayer of the upright is his delight. + + +The way of the wicked is an abomination to Yahweh, + +but he loves him who follows after righteousness. + + +There is stern discipline for one who forsakes the way. + +Whoever hates reproof shall die. + + +Sheol15:11 +Sheol is the place of the dead. and Abaddon are before Yahweh— + +how much more then the hearts of the children of men! + + +A scoffer doesn’t love to be reproved; + +he will not go to the wise. + + +A glad heart makes a cheerful face, + +but an aching heart breaks the spirit. + + +The heart of one who has understanding seeks knowledge, + +but the mouths of fools feed on folly. + + +All the days of the afflicted are wretched, + +but one who has a cheerful heart enjoys a continual feast. + + +Better is little, with the fear of Yahweh, + +than great treasure with trouble. + + +Better is a dinner of herbs, where love is, + +than a fattened calf with hatred. + + +A wrathful man stirs up contention, + +but one who is slow to anger appeases strife. + + +The way of the sluggard is like a thorn patch, + +but the path of the upright is a highway. + + +A wise son makes a father glad, + +but a foolish man despises his mother. + + +Folly is joy to one who is void of wisdom, + +but a man of understanding keeps his way straight. + + +Where there is no counsel, plans fail; + +but in a multitude of counselors they are established. + + +Joy comes to a man with the reply of his mouth. + +How good is a word at the right time! + + +The path of life leads upward for the wise, + +to keep him from going downward to Sheol.15:24 +Sheol is the place of the dead. + + +Yahweh will uproot the house of the proud, + +but he will keep the widow’s borders intact. + + +Yahweh detests the thoughts of the wicked, + +but the thoughts of the pure are pleasing. + + +He who is greedy for gain troubles his own house, + +but he who hates bribes will live. + + +The heart of the righteous weighs answers, + +but the mouth of the wicked gushes out evil. + + +Yahweh is far from the wicked, + +but he hears the prayer of the righteous. + + +The light of the eyes rejoices the heart. + +Good news gives health to the bones. + + +The ear that listens to reproof lives, + +and will be at home among the wise. + + +He who refuses correction despises his own soul, + +but he who listens to reproof gets understanding. + + +The fear of Yahweh teaches wisdom. + +Before honor is humility. + + + + +The plans of the heart belong to man, + +but the answer of the tongue is from Yahweh. + + +All the ways of a man are clean in his own eyes, + +but Yahweh weighs the motives. + + +Commit your deeds to Yahweh, + +and your plans shall succeed. + + +Yahweh has made everything for its own end— + +yes, even the wicked for the day of evil. + + +Everyone who is proud in heart is an abomination to Yahweh; + +they shall certainly not be unpunished. + + +By mercy and truth iniquity is atoned for. + +By the fear of Yahweh men depart from evil. + + +When a man’s ways please Yahweh, + +he makes even his enemies to be at peace with him. + + +Better is a little with righteousness, + +than great revenues with injustice. + + +A man’s heart plans his course, + +but Yahweh directs his steps. + + +Inspired judgments are on the lips of the king. + +He shall not betray his mouth. + + +Honest balances and scales are Yahweh’s; + +all the weights in the bag are his work. + + +It is an abomination for kings to do wrong, + +for the throne is established by righteousness. + + +Righteous lips are the delight of kings. + +They value one who speaks the truth. + + +The king’s wrath is a messenger of death, + +but a wise man will pacify it. + + +In the light of the king’s face is life. + +His favor is like a cloud of the spring rain. + + +How much better it is to get wisdom than gold! + +Yes, to get understanding is to be chosen rather than silver. + + +The highway of the upright is to depart from evil. + +He who keeps his way preserves his soul. + + +Pride goes before destruction, + +and an arrogant spirit before a fall. + + +It is better to be of a lowly spirit with the poor, + +than to divide the plunder with the proud. + + +He who heeds the Word finds prosperity. + +Whoever trusts in Yahweh is blessed. + + +The wise in heart shall be called prudent. + +Pleasantness of the lips promotes instruction. + + +Understanding is a fountain of life to one who has it, + +but the punishment of fools is their folly. + + +The heart of the wise instructs his mouth, + +and adds learning to his lips. + + +Pleasant words are a honeycomb, + +sweet to the soul, and health to the bones. + + +There is a way which seems right to a man, + +but in the end it leads to death. + + +The appetite of the laboring man labors for him, + +for his mouth urges him on. + + +A worthless man devises mischief. + +His speech is like a scorching fire. + + +A perverse man stirs up strife. + +A whisperer separates close friends. + + +A man of violence entices his neighbor, + +and leads him in a way that is not good. + + +One who winks his eyes to plot perversities, + +one who compresses his lips, is bent on evil. + + +Gray hair is a crown of glory. + +It is attained by a life of righteousness. + + +One who is slow to anger is better than the mighty; + +one who rules his spirit, than he who takes a city. + + +The lot is cast into the lap, + +but its every decision is from Yahweh. + + + + +Better is a dry morsel with quietness, + +than a house full of feasting with strife. + + +A servant who deals wisely will rule over a son who causes shame, + +and shall have a part in the inheritance among the brothers. + + +The refining pot is for silver, and the furnace for gold, + +but Yahweh tests the hearts. + + +An evildoer heeds wicked lips. + +A liar gives ear to a mischievous tongue. + + +Whoever mocks the poor reproaches his Maker. + +He who is glad at calamity shall not be unpunished. + + +Children’s children are the crown of old men; + +the glory of children is their parents. + + +Excellent speech isn’t fitting for a fool, + +much less do lying lips fit a prince. + + +A bribe is a precious stone in the eyes of him who gives it; + +wherever he turns, he prospers. + + +He who covers an offense promotes love; + +but he who repeats a matter separates best friends. + + +A rebuke enters deeper into one who has understanding + +than a hundred lashes into a fool. + + +An evil man seeks only rebellion; + +therefore a cruel messenger shall be sent against him. + + +Let a bear robbed of her cubs meet a man, + +rather than a fool in his folly. + + +Whoever rewards evil for good, + +evil shall not depart from his house. + + +The beginning of strife is like breaching a dam, + +therefore stop contention before quarreling breaks out. + + +He who justifies the wicked, and he who condemns the righteous, + +both of them alike are an abomination to Yahweh. + + +Why is there money in the hand of a fool to buy wisdom, + +since he has no understanding? + + +A friend loves at all times; + +and a brother is born for adversity. + + +A man void of understanding strikes hands, + +and becomes collateral in the presence of his neighbor. + + +He who loves disobedience loves strife. + +One who builds a high gate seeks destruction. + + +One who has a perverse heart doesn’t find prosperity, + +and one who has a deceitful tongue falls into trouble. + + +He who becomes the father of a fool grieves. + +The father of a fool has no joy. + + +A cheerful heart makes good medicine, + +but a crushed spirit dries up the bones. + + +A wicked man receives a bribe in secret, + +to pervert the ways of justice. + + +Wisdom is before the face of one who has understanding, + +but the eyes of a fool wander to the ends of the earth. + + +A foolish son brings grief to his father, + +and bitterness to her who bore him. + + +Also to punish the righteous is not good, + +nor to flog officials for their integrity. + + +He who spares his words has knowledge. + +He who is even tempered is a man of understanding. + + +Even a fool, when he keeps silent, is counted wise. + +When he shuts his lips, he is thought to be discerning. + + + + +A man who isolates himself pursues selfishness, + +and defies all sound judgment. + + +A fool has no delight in understanding, + +but only in revealing his own opinion. + + +When wickedness comes, contempt also comes, + +and with shame comes disgrace. + + +The words of a man’s mouth are like deep waters. + +The fountain of wisdom is like a flowing brook. + + +To be partial to the faces of the wicked is not good, + +nor to deprive the innocent of justice. + + +A fool’s lips come into strife, + +and his mouth invites beatings. + + +A fool’s mouth is his destruction, + +and his lips are a snare to his soul. + + +The words of a gossip are like dainty morsels: + +they go down into a person’s innermost parts. + + +One who is slack in his work + +is brother to him who is a master of destruction. + + +Yahweh’s name is a strong tower: + +the righteous run to him, and are safe. + + +The rich man’s wealth is his strong city, + +like an unscalable wall in his own imagination. + + +Before destruction the heart of man is proud, + +but before honor is humility. + + +He who answers before he hears, + +that is folly and shame to him. + + +A man’s spirit will sustain him in sickness, + +but a crushed spirit, who can bear? + + +The heart of the discerning gets knowledge. + +The ear of the wise seeks knowledge. + + +A man’s gift makes room for him, + +and brings him before great men. + + +He who pleads his cause first seems right— + +until another comes and questions him. + + +The lot settles disputes, + +and keeps strong ones apart. + + +A brother offended is more difficult than a fortified city. + +Disputes are like the bars of a fortress. + + +A man’s stomach is filled with the fruit of his mouth. + +With the harvest of his lips he is satisfied. + + +Death and life are in the power of the tongue; + +those who love it will eat its fruit. + + +Whoever finds a wife finds a good thing, + +and obtains favor of Yahweh. + + +The poor plead for mercy, + +but the rich answer harshly. + + +A man of many companions may be ruined, + +but there is a friend who sticks closer than a brother. + + + + +Better is the poor who walks in his integrity + +than he who is perverse in his lips and is a fool. + + +It isn’t good to have zeal without knowledge, + +nor to be hasty with one’s feet and miss the way. + + +The foolishness of man subverts his way; + +his heart rages against Yahweh. + + +Wealth adds many friends, + +but the poor is separated from his friend. + + +A false witness shall not be unpunished. + +He who pours out lies shall not go free. + + +Many will entreat the favor of a ruler, + +and everyone is a friend to a man who gives gifts. + + +All the relatives of the poor shun him; + +how much more do his friends avoid him! + +He pursues them with pleas, but they are gone. + + +He who gets wisdom loves his own soul. + +He who keeps understanding shall find good. + + +A false witness shall not be unpunished. + +He who utters lies shall perish. + + +Delicate living is not appropriate for a fool, + +much less for a servant to have rule over princes. + + +The discretion of a man makes him slow to anger. + +It is his glory to overlook an offense. + + +The king’s wrath is like the roaring of a lion, + +but his favor is like dew on the grass. + + +A foolish son is the calamity of his father. + +A wife’s quarrels are a continual dripping. + + +House and riches are an inheritance from fathers, + +but a prudent wife is from Yahweh. + + +Slothfulness casts into a deep sleep. + +The idle soul shall suffer hunger. + + +He who keeps the commandment keeps his soul, + +but he who is contemptuous in his ways shall die. + + +He who has pity on the poor lends to Yahweh; + +he will reward him. + + +Discipline your son, for there is hope; + +don’t be a willing party to his death. + + +A hot-tempered man must pay the penalty, + +for if you rescue him, you must do it again. + + +Listen to counsel and receive instruction, + +that you may be wise in your latter end. + + +There are many plans in a man’s heart, + +but Yahweh’s counsel will prevail. + + +That which makes a man to be desired is his kindness. + +A poor man is better than a liar. + + +The fear of Yahweh leads to life, then contentment; + +he rests and will not be touched by trouble. + + +The sluggard buries his hand in the dish; + +he will not so much as bring it to his mouth again. + + +Flog a scoffer, and the simple will learn prudence; + +rebuke one who has understanding, and he will gain knowledge. + + +He who robs his father and drives away his mother + +is a son who causes shame and brings reproach. + + +If you stop listening to instruction, my son, + +you will stray from the words of knowledge. + + +A corrupt witness mocks justice, + +and the mouth of the wicked gulps down iniquity. + + +Penalties are prepared for scoffers, + +and beatings for the backs of fools. + + + + + +Wine is a mocker and beer is a brawler. + +Whoever is led astray by them is not wise. + + +The terror of a king is like the roaring of a lion. + +He who provokes him to anger forfeits his own life. + + +It is an honor for a man to keep aloof from strife, + +but every fool will be quarreling. + + +The sluggard will not plow by reason of the winter; + +therefore he shall beg in harvest, and have nothing. + + +Counsel in the heart of man is like deep water, + +but a man of understanding will draw it out. + + +Many men claim to be men of unfailing love, + +but who can find a faithful man? + + +A righteous man walks in integrity. + +Blessed are his children after him. + + +A king who sits on the throne of judgment + +scatters away all evil with his eyes. + + +Who can say, “I have made my heart pure. + +I am clean and without sin”? + + +Differing weights and differing measures, + +both of them alike are an abomination to Yahweh. + + +Even a child makes himself known by his doings, + +whether his work is pure, and whether it is right. + + +The hearing ear, and the seeing eye, + +Yahweh has made even both of them. + + +Don’t love sleep, lest you come to poverty. + +Open your eyes, and you shall be satisfied with bread. + + +It’s no good, it’s no good,” says the buyer; + +but when he is gone his way, then he boasts. + + +There is gold and abundance of rubies, + +but the lips of knowledge are a rare jewel. + + +Take the garment of one who puts up collateral for a stranger; + +and hold him in pledge for a wayward woman. + + +Fraudulent food is sweet to a man, + +but afterwards his mouth is filled with gravel. + + +Plans are established by advice; + +by wise guidance you wage war! + + +He who goes about as a tale-bearer reveals secrets; + +therefore don’t keep company with him who opens wide his lips. + + +Whoever curses his father or his mother, + +his lamp shall be put out in blackness of darkness. + + +An inheritance quickly gained at the beginning + +won’t be blessed in the end. + + +Don’t say, “I will pay back evil.” + +Wait for Yahweh, and he will save you. + + +Yahweh detests differing weights, + +and dishonest scales are not pleasing. + + +A man’s steps are from Yahweh; + +how then can man understand his way? + + +It is a snare to a man to make a rash dedication, + +then later to consider his vows. + + +A wise king winnows out the wicked, + +and drives the threshing wheel over them. + + +The spirit of man is Yahweh’s lamp, + +searching all his innermost parts. + + +Love and faithfulness keep the king safe. + +His throne is sustained by love. + + +The glory of young men is their strength. + +The splendor of old men is their gray hair. + + +Wounding blows cleanse away evil, + +and beatings purge the innermost parts. + + + + + +The king’s heart is in Yahweh’s hand like the watercourses. + +He turns it wherever he desires. + + +Every way of a man is right in his own eyes, + +but Yahweh weighs the hearts. + + +To do righteousness and justice + +is more acceptable to Yahweh than sacrifice. + + +A high look and a proud heart, + +the lamp of the wicked, is sin. + + +The plans of the diligent surely lead to profit; + +and everyone who is hasty surely rushes to poverty. + + +Getting treasures by a lying tongue + +is a fleeting vapor for those who seek death. + + +The violence of the wicked will drive them away, + +because they refuse to do what is right. + + +The way of the guilty is devious, + +but the conduct of the innocent is upright. + + +It is better to dwell in the corner of the housetop + +than to share a house with a contentious woman. + + +The soul of the wicked desires evil; + +his neighbor finds no mercy in his eyes. + + +When the mocker is punished, the simple gains wisdom. + +When the wise is instructed, he receives knowledge. + + +The Righteous One considers the house of the wicked, + +and brings the wicked to ruin. + + +Whoever stops his ears at the cry of the poor, + +he will also cry out, but shall not be heard. + + +A gift in secret pacifies anger, + +and a bribe in the cloak, strong wrath. + + +It is joy to the righteous to do justice; + +but it is a destruction to the workers of iniquity. + + +The man who wanders out of the way of understanding + +shall rest in the assembly of the departed spirits. + + +He who loves pleasure will be a poor man. + +He who loves wine and oil won’t be rich. + + +The wicked is a ransom for the righteous, + +the treacherous for the upright. + + +It is better to dwell in a desert land, + +than with a contentious and fretful woman. + + +There is precious treasure and oil in the dwelling of the wise, + +but a foolish man swallows it up. + + +He who follows after righteousness and kindness + +finds life, righteousness, and honor. + + +A wise man scales the city of the mighty, + +and brings down the strength of its confidence. + + +Whoever guards his mouth and his tongue + +keeps his soul from troubles. + + +The proud and arrogant man—“Scoffer” is his name— + +he works in the arrogance of pride. + + +The desire of the sluggard kills him, + +for his hands refuse to labor. + + +There are those who covet greedily all day long; + +but the righteous give and don’t withhold. + + +The sacrifice of the wicked is an abomination— + +how much more, when he brings it with a wicked mind! + + +A false witness will perish. + +A man who listens speaks to eternity. + + +A wicked man hardens his face; + +but as for the upright, he establishes his ways. + + +There is no wisdom nor understanding + +nor counsel against Yahweh. + + +The horse is prepared for the day of battle; + +but victory is with Yahweh. + + + + + +A good name is more desirable than great riches, + +and loving favor is better than silver and gold. + + +The rich and the poor have this in common: + +Yahweh is the maker of them all. + + +A prudent man sees danger and hides himself; + +but the simple pass on, and suffer for it. + + +The result of humility and the fear of Yahweh + +is wealth, honor, and life. + + +Thorns and snares are in the path of the wicked; + +whoever guards his soul stays far from them. + + +Train up a child in the way he should go, + +and when he is old he will not depart from it. + + +The rich rule over the poor. + +The borrower is servant to the lender. + + +He who sows wickedness reaps trouble, + +and the rod of his fury will be destroyed. + + +He who has a generous eye will be blessed, + +for he shares his food with the poor. + + +Drive out the mocker, and strife will go out; + +yes, quarrels and insults will stop. + + +He who loves purity of heart and speaks gracefully + +is the king’s friend. + + +Yahweh’s eyes watch over knowledge, + +but he frustrates the words of the unfaithful. + + +The sluggard says, “There is a lion outside! + +I will be killed in the streets!” + + +The mouth of an adulteress is a deep pit. + +He who is under Yahweh’s wrath will fall into it. + + +Folly is bound up in the heart of a child; + +the rod of discipline drives it far from him. + + +Whoever oppresses the poor for his own increase and whoever gives to the rich, + +both come to poverty. + + + +Turn your ear, and listen to the words of the wise. + +Apply your heart to my teaching. + + +For it is a pleasant thing if you keep them within you, + +if all of them are ready on your lips. + + +I teach you today, even you, + +so that your trust may be in Yahweh. + + +Haven’t I written to you thirty excellent things + +of counsel and knowledge, + + +To teach you truth, reliable words, + +to give sound answers to the ones who sent you? + + + +Don’t exploit the poor because he is poor; + +and don’t crush the needy in court; + + +for Yahweh will plead their case, + +and plunder the life of those who plunder them. + + + +Don’t befriend a hot-tempered man. + +Don’t associate with one who harbors anger, + + +lest you learn his ways + +and ensnare your soul. + + + +Don’t you be one of those who strike hands, + +of those who are collateral for debts. + + +If you don’t have means to pay, + +why should he take away your bed from under you? + + + +Don’t move the ancient boundary stone + +which your fathers have set up. + + + +Do you see a man skilled in his work? + +He will serve kings. + +He won’t serve obscure men. + + + + + +When you sit to eat with a ruler, + +consider diligently what is before you; + + +put a knife to your throat + +if you are a man given to appetite. + + +Don’t be desirous of his dainties, + +since they are deceitful food. + + +Don’t weary yourself to be rich. + +In your wisdom, show restraint. + + +Why do you set your eyes on that which is not? + +For it certainly sprouts wings like an eagle and flies in the sky. + + +Don’t eat the food of him who has a stingy eye, + +and don’t crave his delicacies, + + +for as he thinks about the cost, so he is. + +“Eat and drink!” he says to you, + +but his heart is not with you. + + +You will vomit up the morsel which you have eaten + +and waste your pleasant words. + + + +Don’t speak in the ears of a fool, + +for he will despise the wisdom of your words. + + + +Don’t move the ancient boundary stone. + +Don’t encroach on the fields of the fatherless, + + +for their Defender is strong. + +He will plead their case against you. + + + +Apply your heart to instruction, + +and your ears to the words of knowledge. + + +Don’t withhold correction from a child. + +If you punish him with the rod, he will not die. + + +Punish him with the rod, + +and save his soul from Sheol.23:14 +Sheol is the place of the dead. + + + +My son, if your heart is wise, + +then my heart will be glad, even mine. + + +Yes, my heart will rejoice + +when your lips speak what is right. + + +Don’t let your heart envy sinners, + +but rather fear Yahweh all day long. + + +Indeed surely there is a future hope, + +and your hope will not be cut off. + + +Listen, my son, and be wise, + +and keep your heart on the right path! + + +Don’t be among ones drinking too much wine, + +or those who gorge themselves on meat; + + +for the drunkard and the glutton shall become poor; + +and drowsiness clothes them in rags. + + +Listen to your father who gave you life, + +and don’t despise your mother when she is old. + + +Buy the truth, and don’t sell it. + +Get wisdom, discipline, and understanding. + + +The father of the righteous has great joy. + +Whoever fathers a wise child delights in him. + + +Let your father and your mother be glad! + +Let her who bore you rejoice! + + +My son, give me your heart; + +and let your eyes keep in my ways. + + +For a prostitute is a deep pit; + +and a wayward wife is a narrow well. + + +Yes, she lies in wait like a robber, + +and increases the unfaithful among men. + + + +Who has woe? + +Who has sorrow? + +Who has strife? + +Who has complaints? + +Who has needless bruises? + +Who has bloodshot eyes? + + +Those who stay long at the wine; + +those who go to seek out mixed wine. + + +Don’t look at the wine when it is red, + +when it sparkles in the cup, + +when it goes down smoothly. + + +In the end, it bites like a snake, + +and poisons like a viper. + + +Your eyes will see strange things, + +and your mind will imagine confusing things. + + +Yes, you will be as he who lies down in the middle of the sea, + +or as he who lies on top of the rigging: + + +They hit me, and I was not hurt! + +They beat me, and I don’t feel it! + +When will I wake up? I can do it again. + +I will look for more.” + + + + + +Don’t be envious of evil men, + +neither desire to be with them; + + +for their hearts plot violence + +and their lips talk about mischief. + + +Through wisdom a house is built; + +by understanding it is established; + + +by knowledge the rooms are filled + +with all rare and beautiful treasure. + + +A wise man has great power. + +A knowledgeable man increases strength, + + +for by wise guidance you wage your war, + +and victory is in many advisors. + + +Wisdom is too high for a fool. + +He doesn’t open his mouth in the gate. + + +One who plots to do evil + +will be called a schemer. + + +The schemes of folly are sin. + +The mocker is detested by men. + + +If you falter in the time of trouble, + +your strength is small. + + +Rescue those who are being led away to death! + +Indeed, hold back those who are staggering to the slaughter! + + +If you say, “Behold, we didn’t know this,” + +doesn’t he who weighs the hearts consider it? + +He who keeps your soul, doesn’t he know it? + +Shall he not give to every man according to his work? + + +My son, eat honey, for it is good, + +the droppings of the honeycomb, which are sweet to your taste; + + +so you shall know wisdom to be to your soul. + +If you have found it, then there will be a reward: + +Your hope will not be cut off. + + +Don’t lay in wait, wicked man, against the habitation of the righteous. + +Don’t destroy his resting place; + + +for a righteous man falls seven times and rises up again, + +but the wicked are overthrown by calamity. + + +Don’t rejoice when your enemy falls. + +Don’t let your heart be glad when he is overthrown, + + +lest Yahweh see it, and it displease him, + +and he turn away his wrath from him. + + +Don’t fret yourself because of evildoers, + +neither be envious of the wicked; + + +for there will be no reward to the evil man. + +The lamp of the wicked will be snuffed out. + + +My son, fear Yahweh and the king. + +Don’t join those who are rebellious, + + +for their calamity will rise suddenly. + +Who knows what destruction may come from them both? + + + +

These also are sayings of the wise: +

+ +To show partiality in judgment is not good. + + +He who says to the wicked, “You are righteous,” + +peoples will curse him, and nations will abhor him— + + +but it will go well with those who convict the guilty, + +and a rich blessing will come on them. + + +An honest answer + +is like a kiss on the lips. + + +Prepare your work outside, + +and get your fields ready. + +Afterwards, build your house. + + +Don’t be a witness against your neighbor without cause. + +Don’t deceive with your lips. + + +Don’t say, “I will do to him as he has done to me; + +I will repay the man according to his work.” + + +I went by the field of the sluggard, + +by the vineyard of the man void of understanding. + + +Behold, it was all grown over with thorns. + +Its surface was covered with nettles, + +and its stone wall was broken down. + + +Then I saw, and considered well. + +I saw, and received instruction: + + +a little sleep, a little slumber, + +a little folding of the hands to sleep, + + +so your poverty will come as a robber + +and your want as an armed man. + + + + +

These also are proverbs of Solomon, which the men of Hezekiah king of Judah copied out. + +

+It is the glory of God to conceal a thing, + +but the glory of kings is to search out a matter. + + +As the heavens for height, and the earth for depth, + +so the hearts of kings are unsearchable. + + +Take away the dross from the silver, + +and material comes out for the refiner. + + +Take away the wicked from the king’s presence, + +and his throne will be established in righteousness. + + +Don’t exalt yourself in the presence of the king, + +or claim a place among great men; + + +for it is better that it be said to you, “Come up here,” + +than that you should be put lower in the presence of the prince, + +whom your eyes have seen. + + +Don’t be hasty in bringing charges to court. + +What will you do in the end when your neighbor shames you? + + +Debate your case with your neighbor, + +and don’t betray the confidence of another, + + +lest one who hears it put you to shame, + +and your bad reputation never depart. + + + +A word fitly spoken + +is like apples of gold in settings of silver. + + +As an earring of gold, and an ornament of fine gold, + +so is a wise reprover to an obedient ear. + + +As the cold of snow in the time of harvest, + +so is a faithful messenger to those who send him; + +for he refreshes the soul of his masters. + + +As clouds and wind without rain, + +so is he who boasts of gifts deceptively. + + +By patience a ruler is persuaded. + +A soft tongue breaks the bone. + + +Have you found honey? + +Eat as much as is sufficient for you, + +lest you eat too much, and vomit it. + + +Let your foot be seldom in your neighbor’s house, + +lest he be weary of you, and hate you. + + +A man who gives false testimony against his neighbor + +is like a club, a sword, or a sharp arrow. + + +Confidence in someone unfaithful in time of trouble + +is like a bad tooth or a lame foot. + + +As one who takes away a garment in cold weather, + +or vinegar on soda, + +so is one who sings songs to a heavy heart. + + +If your enemy is hungry, give him food to eat. + +If he is thirsty, give him water to drink; + + +for you will heap coals of fire on his head, + +and Yahweh will reward you. + + +The north wind produces rain; + +so a backbiting tongue brings an angry face. + + +It is better to dwell in the corner of the housetop + +than to share a house with a contentious woman. + + +Like cold water to a thirsty soul, + +so is good news from a far country. + + +Like a muddied spring and a polluted well, + +so is a righteous man who gives way before the wicked. + + +It is not good to eat much honey, + +nor is it honorable to seek one’s own honor. + + +Like a city that is broken down and without walls + +is a man whose spirit is without restraint. + + + + +Like snow in summer, and as rain in harvest, + +so honor is not fitting for a fool. + + +Like a fluttering sparrow, + +like a darting swallow, + +so the undeserved curse doesn’t come to rest. + + +A whip is for the horse, + +a bridle for the donkey, + +and a rod for the back of fools! + + +Don’t answer a fool according to his folly, + +lest you also be like him. + + +Answer a fool according to his folly, + +lest he be wise in his own eyes. + + +One who sends a message by the hand of a fool + +is cutting off feet and drinking violence. + + +Like the legs of the lame that hang loose, + +so is a parable in the mouth of fools. + + +As one who binds a stone in a sling, + +so is he who gives honor to a fool. + + +Like a thorn bush that goes into the hand of a drunkard, + +so is a parable in the mouth of fools. + + +As an archer who wounds all, + +so is he who hires a fool + +or he who hires those who pass by. + + +As a dog that returns to his vomit, + +so is a fool who repeats his folly. + + +Do you see a man wise in his own eyes? + +There is more hope for a fool than for him. + + +The sluggard says, “There is a lion in the road! + +A fierce lion roams the streets!” + + +As the door turns on its hinges, + +so does the sluggard on his bed. + + +The sluggard buries his hand in the dish. + +He is too lazy to bring it back to his mouth. + + +The sluggard is wiser in his own eyes + +than seven men who answer with discretion. + + +Like one who grabs a dog’s ears + +is one who passes by and meddles in a quarrel not his own. + + +Like a madman who shoots torches, arrows, and death, + + +is the man who deceives his neighbor and says, “Am I not joking?” + + +For lack of wood a fire goes out. + +Without gossip, a quarrel dies down. + + +As coals are to hot embers, + +and wood to fire, + +so is a contentious man to kindling strife. + + +The words of a whisperer are as dainty morsels, + +they go down into the innermost parts. + + +Like silver dross on an earthen vessel + +are the lips of a fervent one with an evil heart. + + +A malicious man disguises himself with his lips, + +but he harbors evil in his heart. + + +When his speech is charming, don’t believe him, + +for there are seven abominations in his heart. + + +His malice may be concealed by deception, + +but his wickedness will be exposed in the assembly. + + +Whoever digs a pit shall fall into it. + +Whoever rolls a stone, it will come back on him. + + +A lying tongue hates those it hurts; + +and a flattering mouth works ruin. + + + + +Don’t boast about tomorrow; + +for you don’t know what a day may bring. + + +Let another man praise you, + +and not your own mouth; + +a stranger, and not your own lips. + + +A stone is heavy, + +and sand is a burden; + +but a fool’s provocation is heavier than both. + + +Wrath is cruel, + +and anger is overwhelming; + +but who is able to stand before jealousy? + + +Better is open rebuke + +than hidden love. + + +The wounds of a friend are faithful, + +although the kisses of an enemy are profuse. + + +A full soul loathes a honeycomb; + +but to a hungry soul, every bitter thing is sweet. + + +As a bird that wanders from her nest, + +so is a man who wanders from his home. + + +Perfume and incense bring joy to the heart; + +so does earnest counsel from a man’s friend. + + +Don’t forsake your friend and your father’s friend. + +Don’t go to your brother’s house in the day of your disaster. + +A neighbor who is near is better than a distant brother. + + +Be wise, my son, + +and bring joy to my heart, + +then I can answer my tormentor. + + +A prudent man sees danger and takes refuge; + +but the simple pass on, and suffer for it. + + +Take his garment when he puts up collateral for a stranger. + +Hold it for a wayward woman! + + +He who blesses his neighbor with a loud voice early in the morning, + +it will be taken as a curse by him. + + +A continual dropping on a rainy day + +and a contentious wife are alike: + + +restraining her is like restraining the wind, + +or like grasping oil in his right hand. + + + +Iron sharpens iron; + +so a man sharpens his friend’s countenance. + + +Whoever tends the fig tree shall eat its fruit. + +He who looks after his master shall be honored. + + +Like water reflects a face, + +so a man’s heart reflects the man. + + +Sheol27:20 +Sheol is the place of the dead. and Abaddon are never satisfied; + +and a man’s eyes are never satisfied. + + +The crucible is for silver, + +and the furnace for gold; + +but man is refined by his praise. + + +Though you grind a fool in a mortar with a pestle along with grain, + +yet his foolishness will not be removed from him. + + + +Know well the state of your flocks, + +and pay attention to your herds, + + +for riches are not forever, + +nor does the crown endure to all generations. + + +The hay is removed, and the new growth appears, + +the grasses of the hills are gathered in. + + +The lambs are for your clothing, + +and the goats are the price of a field. + + +There will be plenty of goatsmilk for your food, + +for your family’s food, + +and for the nourishment of your servant girls. + + + + +The wicked flee when no one pursues; + +but the righteous are as bold as a lion. + + +In rebellion, a land has many rulers, + +but order is maintained by a man of understanding and knowledge. + + +A needy man who oppresses the poor + +is like a driving rain which leaves no crops. + + +Those who forsake the law praise the wicked; + +but those who keep the law contend with them. + + +Evil men don’t understand justice; + +but those who seek Yahweh understand it fully. + + +Better is the poor who walks in his integrity + +than he who is perverse in his ways, and he is rich. + + +Whoever keeps the law is a wise son; + +but he who is a companion of gluttons shames his father. + + +He who increases his wealth by excessive interest + +gathers it for one who has pity on the poor. + + +He who turns away his ear from hearing the law, + +even his prayer is an abomination. + + +Whoever causes the upright to go astray in an evil way, + +he will fall into his own trap; + +but the blameless will inherit good. + + +The rich man is wise in his own eyes; + +but the poor who has understanding sees through him. + + +When the righteous triumph, there is great glory; + +but when the wicked rise, men hide themselves. + + +He who conceals his sins doesn’t prosper, + +but whoever confesses and renounces them finds mercy. + + +Blessed is the man who always fears; + +but one who hardens his heart falls into trouble. + + +As a roaring lion or a charging bear, + +so is a wicked ruler over helpless people. + + +A tyrannical ruler lacks judgment. + +One who hates ill-gotten gain will have long days. + + +A man who is tormented by blood guilt will be a fugitive until death. + +No one will support him. + + +Whoever walks blamelessly is kept safe; + +but one with perverse ways will fall suddenly. + + +One who works his land will have an abundance of food; + +but one who chases fantasies will have his fill of poverty. + + +A faithful man is rich with blessings; + +but one who is eager to be rich will not go unpunished. + + +To show partiality is not good, + +yet a man will do wrong for a piece of bread. + + +A stingy man hurries after riches, + +and doesn’t know that poverty waits for him. + + +One who rebukes a man will afterward find more favor + +than one who flatters with the tongue. + + +Whoever robs his father or his mother and says, “It’s not wrong,” + +is a partner with a destroyer. + + +One who is greedy stirs up strife; + +but one who trusts in Yahweh will prosper. + + +One who trusts in himself is a fool; + +but one who walks in wisdom is kept safe. + + +One who gives to the poor has no lack; + +but one who closes his eyes will have many curses. + + +When the wicked rise, men hide themselves; + +but when they perish, the righteous thrive. + + + + +He who is often rebuked and stiffens his neck + +will be destroyed suddenly, with no remedy. + + +When the righteous thrive, the people rejoice; + +but when the wicked rule, the people groan. + + +Whoever loves wisdom brings joy to his father; + +but a companion of prostitutes squanders his wealth. + + +The king by justice makes the land stable, + +but he who takes bribes tears it down. + + +A man who flatters his neighbor + +spreads a net for his feet. + + +An evil man is snared by his sin, + +but the righteous can sing and be glad. + + +The righteous care about justice for the poor. + +The wicked aren’t concerned about knowledge. + + +Mockers stir up a city, + +but wise men turn away anger. + + +If a wise man goes to court with a foolish man, + +the fool rages or scoffs, and there is no peace. + + +The bloodthirsty hate a man of integrity; + +and they seek the life of the upright. + + +A fool vents all of his anger, + +but a wise man brings himself under control. + + +If a ruler listens to lies, + +all of his officials are wicked. + + +The poor man and the oppressor have this in common: + +Yahweh gives sight to the eyes of both. + + +The king who fairly judges the poor, + +his throne shall be established forever. + + +The rod of correction gives wisdom, + +but a child left to himself causes shame to his mother. + + +When the wicked increase, sin increases; + +but the righteous will see their downfall. + + +Correct your son, and he will give you peace; + +yes, he will bring delight to your soul. + + +Where there is no revelation, the people cast off restraint; + +but one who keeps the law is blessed. + + +A servant can’t be corrected by words. + +Though he understands, yet he will not respond. + + +Do you see a man who is hasty in his words? + +There is more hope for a fool than for him. + + +He who pampers his servant from youth + +will have him become a son in the end. + + +An angry man stirs up strife, + +and a wrathful man abounds in sin. + + +A man’s pride brings him low, + +but one of lowly spirit gains honor. + + +Whoever is an accomplice of a thief is an enemy of his own soul. + +He takes an oath, but dares not testify. + + +The fear of man proves to be a snare, + +but whoever puts his trust in Yahweh is kept safe. + + +Many seek the ruler’s favor, + +but a man’s justice comes from Yahweh. + + +A dishonest man detests the righteous, + +and the upright in their ways detest the wicked. + + + + +

The words of Agur the son of Jakeh, the revelation: +

+the man says to Ithiel, + +to Ithiel and Ucal: + + +Surely I am the most ignorant man, + +and don’t have a man’s understanding. + + +I have not learned wisdom, + +neither do I have the knowledge of the Holy One. + + +Who has ascended up into heaven, and descended? + +Who has gathered the wind in his fists? + +Who has bound the waters in his garment? + +Who has established all the ends of the earth? + +What is his name, and what is his son’s name, if you know? + + + +Every word of God is flawless. + +He is a shield to those who take refuge in him. + + +Don’t you add to his words, + +lest he reprove you, and you be found a liar. + + + +Two things I have asked of you. + +Don’t deny me before I die. + + +Remove far from me falsehood and lies. + +Give me neither poverty nor riches. + +Feed me with the food that is needful for me, + + +lest I be full, deny you, and say, ‘Who is Yahweh?’ + +or lest I be poor, and steal, + +and so dishonor the name of my God. + + + +“Don’t slander a servant to his master, + +lest he curse you, and you be held guilty. + + + +There is a generation that curses their father, + +and doesn’t bless their mother. + + +There is a generation that is pure in their own eyes, + +yet are not washed from their filthiness. + + +There is a generation, oh how lofty are their eyes! + +Their eyelids are lifted up. + + +There is a generation whose teeth are like swords, + +and their jaws like knives, + +to devour the poor from the earth, and the needy from among men. + + + +The leech has two daughters: + +Give, give.’ + + +“There are three things that are never satisfied; + +four that don’t say, ‘Enough!’: + + +Sheol,30:16 +Sheol is the place of the dead. + +the barren womb, + +the earth that is not satisfied with water, + +and the fire that doesn’t say, ‘Enough!’ + + + +The eye that mocks at his father, + +and scorns obedience to his mother, + +the ravens of the valley shall pick it out, + +the young eagles shall eat it. + + + +There are three things which are too amazing for me, + +four which I don’t understand: + + +The way of an eagle in the air, + +the way of a serpent on a rock, + +the way of a ship in the middle of the sea, + +and the way of a man with a maiden. + + + +So is the way of an adulterous woman: + +She eats and wipes her mouth, + +and says, ‘I have done nothing wrong.’ + + + +For three things the earth trembles, + +and under four, it can’t bear up: + + +For a servant when he is king, + +a fool when he is filled with food, + + +for an unloved woman when she is married, + +and a servant who is heir to her mistress. + + + +There are four things which are little on the earth, + +but they are exceedingly wise: + + +The ants are not a strong people, + +yet they provide their food in the summer. + + +The hyraxes are but a feeble folk, + +yet make they their houses in the rocks. + + +The locusts have no king, + +yet they advance in ranks. + + +You can catch a lizard with your hands, + +yet it is in kingspalaces. + + + +There are three things which are stately in their march, + +four which are stately in going: + + +The lion, which is mightiest among animals, + +and doesn’t turn away for any; + + +the greyhound; + +the male goat; + +and the king against whom there is no rising up. + + + +“If you have done foolishly in lifting up yourself, + +or if you have thought evil, + +put your hand over your mouth. + + +For as the churning of milk produces butter, + +and the wringing of the nose produces blood, + +so the forcing of wrath produces strife.” + + + + +

The words of King Lemuelthe revelation which his mother taught him: + +

+ +“Oh, my son! + +Oh, son of my womb! + +Oh, son of my vows! + + +Don’t give your strength to women, + +nor your ways to that which destroys kings. + + +It is not for kings, Lemuel, + +it is not for kings to drink wine, + +nor for princes to say, ‘Where is strong drink?’ + + +lest they drink, and forget the law, + +and pervert the justice due to anyone who is afflicted. + + +Give strong drink to him who is ready to perish, + +and wine to the bitter in soul. + + +Let him drink, and forget his poverty, + +and remember his misery no more. + + +Open your mouth for the mute, + +in the cause of all who are left desolate. + + +Open your mouth, judge righteously, + +and serve justice to the poor and needy.” + + + +31:10 +Proverbs 31:10-31 form an acrostic, with each verse starting with each letter of the Hebrew alphabet, in order.Who can find a worthy woman? + +For her value is far above rubies. + + +The heart of her husband trusts in her. + +He shall have no lack of gain. + + +She does him good, and not harm, + +all the days of her life. + + +She seeks wool and flax, + +and works eagerly with her hands. + + +She is like the merchant ships. + +She brings her bread from afar. + + +She rises also while it is yet night, + +gives food to her household, + +and portions for her servant girls. + + +She considers a field, and buys it. + +With the fruit of her hands, she plants a vineyard. + + +She arms her waist with strength, + +and makes her arms strong. + + +She perceives that her merchandise is profitable. + +Her lamp doesn’t go out by night. + + +She lays her hands to the distaff, + +and her hands hold the spindle. + + +She opens her arms to the poor; + +yes, she extends her hands to the needy. + + +She is not afraid of the snow for her household, + +for all her household are clothed with scarlet. + + +She makes for herself carpets of tapestry. + +Her clothing is fine linen and purple. + + +Her husband is respected in the gates, + +when he sits among the elders of the land. + + +She makes linen garments and sells them, + +and delivers sashes to the merchant. + + +Strength and dignity are her clothing. + +She laughs at the time to come. + + +She opens her mouth with wisdom. + +Kind instruction is on her tongue. + + +She looks well to the ways of her household, + +and doesn’t eat the bread of idleness. + + +Her children rise up and call her blessed. + +Her husband also praises her: + + +Many women do noble things, + +but you excel them all.” + + +Charm is deceitful, and beauty is vain; + +but a woman who fears Yahweh, she shall be praised. + + +Give her of the fruit of her hands! + +Let her works praise her in the gates! + + +
+World English Bible (WEB) +Ecclesiastes +Ecclesiates or, The Preacher +Ecclesiastes +Ecc +

Ecclesiastes +

+

or, The Preacher +

+ + +

The words of the Preacher, the son of David, king in Jerusalem: + +

+

Vanity of vanities,” says the Preacher; “Vanity of vanities, all is vanity.” + +What does man gain from all his labor in which he labors under the sun? + +One generation goes, and another generation comes; but the earth remains forever. + +The sun also rises, and the sun goes down, and hurries to its place where it rises. + +The wind goes toward the south, and turns around to the north. It turns around continually as it goes, and the wind returns again to its courses. + +All the rivers run into the sea, yet the sea is not full. To the place where the rivers flow, there they flow again. + +All things are full of weariness beyond uttering. The eye is not satisfied with seeing, nor the ear filled with hearing. + +That which has been is that which shall be, and that which has been done is that which shall be done; and there is no new thing under the sun. + +Is there a thing of which it may be said, “Behold,1:10 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. this is new”? It has been long ago, in the ages which were before us. + +There is no memory of the former; neither shall there be any memory of the latter that are to come, among those that shall come after. + +

+

I, the Preacher, was king over Israel in Jerusalem. + +I applied my heart to seek and to search out by wisdom concerning all that is done under the sky. It is a heavy burden that God1:13 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). has given to the sons of men to be afflicted with. + +I have seen all the works that are done under the sun; and behold, all is vanity and a chasing after wind. + +That which is crooked can’t be made straight; and that which is lacking can’t be counted. + +I said to myself, “Behold, I have obtained for myself great wisdom above all who were before me in Jerusalem. Yes, my heart has had great experience of wisdom and knowledge.” + +I applied my heart to know wisdom, and to know madness and folly. I perceived that this also was a chasing after wind. + +For in much wisdom is much grief; and he who increases knowledge increases sorrow. + +

+ + +

I said in my heart, “Come now, I will test you with mirth; therefore enjoy pleasure;” and behold, this also was vanity. + +I said of laughter, “It is foolishness;” and of mirth, “What does it accomplish?” + +

+

I searched in my heart how to cheer my flesh with wine, my heart yet guiding me with wisdom, and how to lay hold of folly, until I might see what it was good for the sons of men that they should do under heaven all the days of their lives. + +I made myself great works. I built myself houses. I planted myself vineyards. + +I made myself gardens and parks, and I planted trees in them of all kinds of fruit. + +I made myself pools of water, to water the forest where trees were grown. + +I bought male servants and female servants, and had servants born in my house. I also had great possessions of herds and flocks, above all who were before me in Jerusalem. + +I also gathered silver and gold for myself, and the treasure of kings and of the provinces. I got myself male and female singers, and the delights of the sons of men: musical instruments of all sorts. + +So I was great, and increased more than all who were before me in Jerusalem. My wisdom also remained with me. + +Whatever my eyes desired, I didn’t keep from them. I didn’t withhold my heart from any joy, for my heart rejoiced because of all my labor, and this was my portion from all my labor. + +Then I looked at all the works that my hands had worked, and at the labor that I had labored to do; and behold, all was vanity and a chasing after wind, and there was no profit under the sun. + +

+

I turned myself to consider wisdom, madness, and folly; for what can the king’s successor do? Just that which has been done long ago. + +Then I saw that wisdom excels folly, as far as light excels darkness. + +The wise man’s eyes are in his head, and the fool walks in darknessand yet I perceived that one event happens to them all. + +Then I said in my heart, “As it happens to the fool, so will it happen even to me; and why was I then more wise?” Then I said in my heart that this also is vanity. + +For of the wise man, even as of the fool, there is no memory forever, since in the days to come all will have been long forgotten. Indeed, the wise man must die just like the fool! + +

+

So I hated life, because the work that is worked under the sun was grievous to me; for all is vanity and a chasing after wind. + +I hated all my labor in which I labored under the sun, because I must leave it to the man who comes after me. + +Who knows whether he will be a wise man or a fool? Yet he will have rule over all of my labor in which I have labored, and in which I have shown myself wise under the sun. This also is vanity. + +

+

Therefore I began to cause my heart to despair concerning all the labor in which I had labored under the sun. + +For there is a man whose labor is with wisdom, with knowledge, and with skillfulness; yet he shall leave it for his portion to a man who has not labored for it. This also is vanity and a great evil. + +For what does a man have of all his labor and of the striving of his heart, in which he labors under the sun? + +For all his days are sorrows, and his travail is grief; yes, even in the night his heart takes no rest. This also is vanity. + +There is nothing better for a man than that he should eat and drink, and make his soul enjoy good in his labor. This also I saw, that it is from the hand of God. + +For who can eat, or who can have enjoyment, more than I? + +For to the man who pleases him, God gives wisdom, knowledge, and joy; but to the sinner he gives travail, to gather and to heap up, that he may give to him who pleases God. This also is vanity and a chasing after wind. + +

+ + +

For everything there is a season, and a time for every purpose under heaven: + +

+a time to be born, + +and a time to die; + +a time to plant, + +and a time to pluck up that which is planted; + + +a time to kill, + +and a time to heal; + +a time to break down, + +and a time to build up; + + +a time to weep, + +and a time to laugh; + +a time to mourn, + +and a time to dance; + + +a time to cast away stones, + +and a time to gather stones together; + +a time to embrace, + +and a time to refrain from embracing; + + +a time to seek, + +and a time to lose; + +a time to keep, + +and a time to cast away; + + +a time to tear, + +and a time to sew; + +a time to keep silence, + +and a time to speak; + + +a time to love, + +and a time to hate; + +a time for war, + +and a time for peace. + + +

What profit has he who works in that in which he labors? + +I have seen the burden which God has given to the sons of men to be afflicted with. + +He has made everything beautiful in its time. He has also set eternity in their hearts, yet so that man can’t find out the work that God has done from the beginning even to the end. + +I know that there is nothing better for them than to rejoice, and to do good as long as they live. + +Also that every man should eat and drink, and enjoy good in all his labor, is the gift of God. + +I know that whatever God does, it shall be forever. Nothing can be added to it, nor anything taken from it; and God has done it, that men should fear before him. + +That which is has been long ago, and that which is to be has been long ago. God seeks again that which is passed away. + +

+

Moreover I saw under the sun, in the place of justice, that wickedness was there; and in the place of righteousness, that wickedness was there. + +I said in my heart, “God will judge the righteous and the wicked; for there is a time there for every purpose and for every work.” + +I said in my heart, “As for the sons of men, God tests them, so that they may see that they themselves are like animals. + +For that which happens to the sons of men happens to animals. Even one thing happens to them. As the one dies, so the other dies. Yes, they have all one breath; and man has no advantage over the animals, for all is vanity. + +All go to one place. All are from the dust, and all turn to dust again. + +Who knows the spirit of man, whether it goes upward, and the spirit of the animal, whether it goes downward to the earth?” + +

+

Therefore I saw that there is nothing better than that a man should rejoice in his works, for that is his portion; for who can bring him to see what will be after him? + +

+ + +

Then I returned and saw all the oppressions that are done under the sun: and behold, the tears of those who were oppressed, and they had no comforter; and on the side of their oppressors there was power; but they had no comforter. + +Therefore I praised the dead who have been long dead more than the living who are yet alive. + +Yes, better than them both is him who has not yet been, who has not seen the evil work that is done under the sun. + +Then I saw all the labor and achievement that is the envy of a man’s neighbor. This also is vanity and a striving after wind. + +

+

The fool folds his hands together and ruins himself. + +Better is a handful, with quietness, than two handfuls with labor and chasing after wind. + +

+

Then I returned and saw vanity under the sun. + +There is one who is alone, and he has neither son nor brother. There is no end to all of his labor, neither are his eyes satisfied with wealth. “For whom then do I labor and deprive my soul of enjoyment?” This also is vanity. Yes, it is a miserable business. + +

+

Two are better than one, because they have a good reward for their labor. + +For if they fall, the one will lift up his fellow; but woe to him who is alone when he falls, and doesn’t have another to lift him up. + +Again, if two lie together, then they have warmth; but how can one keep warm alone? + +If a man prevails against one who is alone, two shall withstand him; and a threefold cord is not quickly broken. + +

+

Better is a poor and wise youth than an old and foolish king who doesn’t know how to receive admonition any more. + +For out of prison he came out to be king; yes, even in his kingdom he was born poor. + +I saw all the living who walk under the sun, that they were with the youth, the other, who succeeded him. + +There was no end of all the people, even of all them over whom he wasyet those who come after shall not rejoice in him. Surely this also is vanity and a chasing after wind. + +

+ + +

Guard your steps when you go to God’s house; for to draw near to listen is better than to give the sacrifice of fools, for they don’t know that they do evil. + +Don’t be rash with your mouth, and don’t let your heart be hasty to utter anything before God; for God is in heaven, and you on earth. Therefore let your words be few. + +For as a dream comes with a multitude of cares, so a fool’s speech with a multitude of words. + +When you vow a vow to God, don’t defer to pay it; for he has no pleasure in fools. Pay that which you vow. + +It is better that you should not vow, than that you should vow and not pay. + +Don’t allow your mouth to lead you into sin. Don’t protest before the messenger that this was a mistake. Why should God be angry at your voice, and destroy the work of your hands? + +For in the multitude of dreams there are vanities, as well as in many words; but you must fear God. + +

+

If you see the oppression of the poor, and the violent taking away of justice and righteousness in a district, don’t marvel at the matter, for one official is eyed by a higher one, and there are officials over them. + +Moreover the profit of the earth is for all. The king profits from the field. + +

+

He who loves silver shall not be satisfied with silver, nor he who loves abundance, with increase. This also is vanity. + +When goods increase, those who eat them are increased; and what advantage is there to its owner, except to feast on them with his eyes? + +

+

The sleep of a laboring man is sweet, whether he eats little or much; but the abundance of the rich will not allow him to sleep. + +

+

There is a grievous evil which I have seen under the sun: wealth kept by its owner to his harm. + +Those riches perish by misfortune, and if he has fathered a son, there is nothing in his hand. + +As he came out of his mother’s womb, naked shall he go again as he came, and shall take nothing for his labor, which he may carry away in his hand. + +This also is a grievous evil, that in all points as he came, so shall he go. And what profit does he have who labors for the wind? + +All his days he also eats in darkness, he is frustrated, and has sickness and wrath. + +

+

Behold, that which I have seen to be good and proper is for one to eat and to drink, and to enjoy good in all his labor, in which he labors under the sun, all the days of his life which God has given him; for this is his portion. + +Every man also to whom God has given riches and wealth, and has given him power to eat of it, and to take his portion, and to rejoice in his labor—this is the gift of God. + +For he shall not often reflect on the days of his life, because God occupies him with the joy of his heart. + +

+ + +

There is an evil which I have seen under the sun, and it is heavy on men: + +a man to whom God gives riches, wealth, and honor, so that he lacks nothing for his soul of all that he desires, yet God gives him no power to eat of it, but an alien eats it. This is vanity, and it is an evil disease. + +

+

If a man fathers a hundred children, and lives many years, so that the days of his years are many, but his soul is not filled with good, and moreover he has no burial, I say that a stillborn child is better than he; + +for it comes in vanity, and departs in darkness, and its name is covered with darkness. + +Moreover it has not seen the sun nor known it. This has rest rather than the other. + +Yes, though he live a thousand years twice told, and yet fails to enjoy good, don’t all go to one place? + +All the labor of man is for his mouth, and yet the appetite is not filled. + +For what advantage has the wise more than the fool? What has the poor man, that knows how to walk before the living? + +Better is the sight of the eyes than the wandering of the desire. This also is vanity and a chasing after wind. + +Whatever has been, its name was given long ago; and it is known what man is; neither can he contend with him who is mightier than he. + +For there are many words that create vanity. What does that profit man? + +For who knows what is good for man in life, all the days of his vain life which he spends like a shadow? For who can tell a man what will be after him under the sun? + +

+ + +

A good name is better than fine perfume; and the day of death better than the day of one’s birth. + +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 should take this to heart. + +Sorrow is better than laughter; for by the sadness of the face the heart is made good. + +The heart of the wise is in the house of mourning; but the heart of fools is in the house of mirth. + +It is better to hear the rebuke of the wise than for a man to hear the song of fools. + +For as the crackling of thorns under a pot, so is the laughter of the fool. This also is vanity. + +Surely extortion makes the wise man foolish; and a bribe destroys the understanding. + +Better is the end of a thing than its beginning. +

+

The patient in spirit is better than the proud in spirit. + +Don’t be hasty in your spirit to be angry, for anger rests in the bosom of fools. + +Don’t say, “Why were the former days better than these?” For you do not ask wisely about this. + +

+

Wisdom is as good as an inheritance. Yes, it is more excellent for those who see the sun. + +For wisdom is a defense, even as money is a defense; but the excellency of knowledge is that wisdom preserves the life of him who has it. + +

+

Consider the work of God, for who can make that straight which he has made crooked? + +In the day of prosperity be joyful, and in the day of adversity consider; yes, God has made the one side by side with the other, to the end that man should not find out anything after him. + +

+

All this I have seen in my days of vanity: there is a righteous man who perishes in his righteousness, and there is a wicked man who lives long in his evildoing. + +Don’t be overly righteous, neither make yourself overly wise. Why should you destroy yourself? + +Don’t be too wicked, neither be foolish. Why should you die before your time? + +It is good that you should take hold of this. Yes, also don’t withdraw your hand from that; for he who fears God will come out of them all. + +Wisdom is a strength to the wise man more than ten rulers who are in a city. + +Surely there is not a righteous man on earth who does good and doesn’t sin. + +Also don’t take heed to all words that are spoken, lest you hear your servant curse you; + +for often your own heart knows that you yourself have likewise cursed others. + +All this I have proved in wisdom. I said, “I will be wise;” but it was far from me. + +That which is, is far off and exceedingly deep. Who can find it out? + +I turned around, and my heart sought to know and to search out, and to seek wisdom and the scheme of things, and to know that wickedness is stupidity, and that foolishness is madness. + +

+

I find more bitter than death the woman whose heart is snares and traps, whose hands are chains. Whoever pleases God shall escape from her; but the sinner will be ensnared by her. + +

+

Behold, I have found this,” says the Preacher, “to one another, to find an explanation + +which my soul still seeks, but I have not found. I have found one man among a thousand, but I have not found a woman among all those. + +Behold, I have only found this: that God made mankind upright; but they search for many inventions.” + +

+ + +

Who is like the wise man? And who knows the interpretation of a thing? A man’s wisdom makes his face shine, and the hardness of his face is changed. + +

+

I say, “Keep the king’s command!” because of the oath to God. + +Don’t be hasty to go out of his presence. Don’t persist in an evil thing, for he does whatever pleases him, + +for the king’s word is supreme. Who can say to him, “What are you doing?” + +Whoever keeps the commandment shall not come to harm, and his wise heart will know the time and procedure. + +For there is a time and procedure for every purpose, although the misery of man is heavy on him. + +For he doesn’t know that which will be; for who can tell him how it will be? + +There is no man who has power over the spirit to contain the spirit; neither does he have power over the day of death. There is no discharge in war; neither shall wickedness deliver those who practice it. + +

+

All this I have seen, and applied my mind to every work that is done under the sun. There is a time in which one man has power over another to his hurt. + +So I saw the wicked buried. Indeed they came also from holiness. They went and were forgotten in the city where they did this. This also is vanity. + +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. + +Though a sinner commits crimes a hundred times, and lives long, yet surely I know that it will be better with those who fear God, who are reverent before him. + +But it shall not be well with the wicked, neither shall he lengthen days like a shadow, because he doesn’t fear God. + +

+

There is a vanity which is done on the earth, that there are righteous men to whom it happens according to the work of the wicked. Again, there are wicked men to whom it happens according to the work of the righteous. I said that this also is vanity. + +Then I commended mirth, because a man has no better thing under the sun than to eat, to drink, and to be joyful: for that will accompany him in his labor all the days of his life which God has given him under the sun. + +

+

When I applied my heart to know wisdom, and to see the business that is done on the earth (even though eyes see no sleep day or night), + +then I saw all the work of God, that man can’t find out the work that is done under the sun, because however much a man labors to seek it out, yet he won’t find it. Yes even though a wise man thinks he can comprehend it, he won’t be able to find it. + +

+ + +

For all this I laid to my heart, even to explore all this: that the righteous, and the wise, and their works, are in the hand of God; whether it is love or hatred, man doesn’t know it; all is before them. + +All things come alike to all. There is one event to the righteous and to the wicked; to the good, to the clean, to the unclean, to him who sacrifices, and to him who doesn’t sacrifice. As is the good, so is the sinner; he who takes an oath, as he who fears an oath. + +This is an evil in all that is done under the sun, that there is one event to all. Yes 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. + +For to him who is joined with all the living there is hope; for a living dog is better than a dead lion. + +For the living know that they will die, but the dead don’t know anything, neither do they have any more a reward; for their memory is forgotten. + +Also their love, their hatred, and their envy has perished long ago; neither do they any longer have a portion forever in anything that is done under the sun. + +

+

Go your wayeat your bread with joy, and drink your wine with a merry heart; for God has already accepted your works. + +Let your garments be always white, and don’t let your head lack oil. + +Live joyfully with the wife whom you love all the days of your life of vanity, which he has given you under the sun, all your days of vanity, for that is your portion in life, and in your labor in which you labor under the sun. + +Whatever your hand finds to do, do it with your might; for there is no work, nor plan, nor knowledge, nor wisdom, in Sheol,9:10 +Sheol is the place of the dead. where you are going. + +

+

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 favor to men of skill; but time and chance happen to them all. + +For man also doesn’t know his time. As the fish that are taken in an evil net, and as the birds that are caught in the snare, even so are the sons of men snared in an evil time, when it falls suddenly on them. + +

+

I have also seen wisdom under the sun in this way, and it seemed great to me. + +There was a little city, and few men within it; and a great king came against it, besieged it, and built great bulwarks against it. + +Now a poor wise man was found in it, and he by his wisdom delivered the city; yet no man remembered that same poor man. + +Then I said, “Wisdom is better than strength.” Nevertheless the poor man’s wisdom is despised, and his words are not heard. + +The words of the wise heard in quiet are better than the cry of him who rules among fools. + +Wisdom is better than weapons of war; but one sinner destroys much good. + +

+ + +Dead flies cause the oil of the perfumer to produce an evil odor; + +so does a little folly outweigh wisdom and honor. + + +A wise man’s heart is at his right hand, + +but a fool’s heart at his left. + +Yes also when the fool walks by the way, his understanding fails him, and he says to everyone that he is a fool. + +If the spirit of the ruler rises up against you, don’t leave your place; for gentleness lays great offenses to rest. + + +

There is an evil which I have seen under the sun, the sort of error which proceeds from the ruler. + +Folly is set in great dignity, and the rich sit in a low place. + +I have seen servants on horses, and princes walking like servants on the earth. + +He who digs a pit may fall into it; and whoever breaks through a wall may be bitten by a snake. + +Whoever carves out stones may be injured by them. Whoever splits wood may be endangered by it. + +If the ax is blunt, and one doesn’t sharpen the edge, then he must use more strength; but skill brings success. + +

+

If the snake bites before it is charmed, then is there no profit for the charmer’s tongue. + +The words of a wise man’s mouth are gracious; but a fool is swallowed by his own lips. + +The beginning of the words of his mouth is foolishness; and the end of his talk is mischievous madness. + +A fool also multiplies words. +

+

Man doesn’t know what will be; and that which will be after him, who can tell him? + +The labor of fools wearies every one of them; for he doesn’t know how to go to the city. + +

+Woe to you, land, when your king is a child, + +and your princes eat in the morning! + + +Happy are you, land, when your king is the son of nobles, + +and your princes eat in due season, + +for strength, and not for drunkenness! + + +By slothfulness the roof sinks in; + +and through idleness of the hands the house leaks. + + +A feast is made for laughter, + +and wine makes the life glad; + +and money is the answer for all things. + + +Don’t curse the king, no, not in your thoughts; + +and don’t curse the rich in your bedroom, + +for a bird of the sky may carry your voice, + +and that which has wings may tell the matter. + + + + +

Cast your bread on the waters; +

+for you shall find it after many days. + + +Give a portion to seven, yes, even to eight; + +for you don’t know what evil will be on the earth. + + +If the clouds are full of rain, they empty themselves on the earth; + +and if a tree falls toward the south, or toward the north, + +in the place where the tree falls, there shall it be. + + +He who observes the wind won’t sow; + +and he who regards the clouds won’t reap. + + +As you don’t know what is the way of the wind, + +nor how the bones grow in the womb of her who is with child; + +even so you don’t know the work of God who does all. + + +In the morning sow your seed, + +and in the evening don’t withhold your hand; + +for you don’t know which will prosper, whether this or that, + +or whether they both will be equally good. + + +Truly the light is sweet, + +and it is a pleasant thing for the eyes to see the sun. + + +Yes, if a man lives many years, let him rejoice in them all; + +but let him remember the days of darkness, for they shall be many. + +All that comes is vanity. + + +Rejoice, young man, in your youth, + +and let your heart cheer you in the days of your youth, + +and walk in the ways of your heart, + +and in the sight of your eyes; + +but know that for all these things God will bring you into judgment. + + +Therefore remove sorrow from your heart, + +and put away evil from your flesh; + +for youth and the dawn of life are vanity. + + + + +

Remember also your Creator in the days of your youth, +

+before the evil days come, and the years draw near, + +when you will say, “I have no pleasure in them;” + + +Before the sun, the light, the moon, and the stars are darkened, + +and the clouds return after the rain; + + +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 who look out of the windows are darkened, + + +and the doors shall be shut in the street; + +when the sound of the grinding is low, + +and one shall rise up at the voice of a bird, + +and all the daughters of music shall be brought low; + + +yes, they shall be afraid of heights, + +and terrors will be on the way; + +and the almond tree shall blossom, + +and the grasshopper shall be a burden, + +and desire shall fail; + +because man goes to his everlasting home, + +and the mourners go about the streets; + + +before the silver cord is severed, + +or the golden bowl is broken, + +or the pitcher is broken at the spring, + +or the wheel broken at the cistern, + + +and the dust returns to the earth as it was, + +and the spirit returns to God who gave it. + + +Vanity of vanities,” says the Preacher. + +All is vanity!” + + +

Further, because the Preacher was wise, he still taught the people knowledge. Yes, he pondered, sought out, and set in order many proverbs. + +The Preacher sought to find out acceptable words, and that which was written blamelessly, words of truth. + +The words of the wise are like goads; and like nails well fastened are words from the masters of assemblies, which are given from one shepherd. + +Furthermore, my son, be admonished: of making many books there is no end; and much study is a weariness of the flesh. + +

+

This is the end of the matter. All has been heard. Fear God and keep his commandments; for this is the whole duty of man. + +For God will bring every work into judgment, with every hidden thing, whether it is good, or whether it is evil. + +

+
+World English Bible (WEB) +Song of Solomon +The Song of Solomon +Song of Solomon +Sng +

The Song of Solomon +

+ + +

The Song of songs, which is Solomon’s. + +

+

Beloved +

+Let him kiss me with the kisses of his mouth; + +for your love is better than wine. + + +Your oils have a pleasing fragrance. + +Your name is oil poured out, + +therefore the virgins love you. + + +Take me away with you. + +Let’s hurry. + +The king has brought me into his rooms. + +

Friends +

+We will be glad and rejoice in you. + +We will praise your love more than wine! + +

Beloved +

+They are right to love you. + + +I am dark, but lovely, + +you daughters of Jerusalem, + +like Kedar’s tents, + +like Solomon’s curtains. + + +Don’t stare at me because I am dark, + +because the sun has scorched me. + +My mother’s sons were angry with me. + +They made me keeper of the vineyards. + +I haven’t kept my own vineyard. + + +Tell me, you whom my soul loves, + +where you graze your flock, + +where you rest them at noon; + +for why should I be as one who is veiled + +beside the flocks of your companions? + + +

Lover +

+If you don’t know, most beautiful among women, + +follow the tracks of the sheep. + +Graze your young goats beside the shepherdstents. + + + +I have compared you, my love, + +to a steed in Pharaoh’s chariots. + + +Your cheeks are beautiful with earrings, + +your neck with strings of jewels. + + +

Friends +

+We will make you earrings of gold, + +with studs of silver. + + +

Beloved +

+While the king sat at his table, + +my perfume spread its fragrance. + + +My beloved is to me a sachet of myrrh, + +that lies between my breasts. + + +My beloved is to me a cluster of henna blossoms + +from the vineyards of En Gedi. + + +

Lover +

+Behold,1:15 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. you are beautiful, my love. + +Behold, you are beautiful. + +Your eyes are like doves. + + +

Beloved +

+Behold, you are beautiful, my beloved, yes, pleasant; + +and our couch is verdant. + + +

Lover +

+The beams of our house are cedars. + +Our rafters are firs. + + + + +

Beloved +

+I am a rose of Sharon, + +a lily of the valleys. + + +

Lover +

+As a lily among thorns, + +so is my love among the daughters. + + +

Beloved +

+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, + +his fruit was sweet to my taste. + + +He brought me to the banquet hall. + +His banner over me is love. + + +Strengthen me with raisins, + +refresh me with apples; + +for I am faint with love. + + +His left hand is under my head. + +His right hand embraces me. + + +I adjure you, daughters of Jerusalem, + +by the roes, or by the hinds of the field, + +that you not stir up, nor awaken love, + +until it so desires. + + + +The voice of my beloved! + +Behold, he comes, + +leaping on the mountains, + +skipping on the hills. + + +My beloved is like a roe or a young deer. + +Behold, he stands behind our wall! + +He looks in at the windows. + +He glances through the lattice. + + + +My beloved spoke, and said to me, + +Rise up, my love, my beautiful one, and come away. + + +For behold, the winter is past. + +The rain is over and gone. + + +The flowers appear on the earth. + +The time of the singing has come, + +and the voice of the turtledove is heard in our land. + + +The fig tree ripens her green figs. + +The vines are in blossom. + +They give out their fragrance. + +Arise, my love, my beautiful one, + +and come away.” + + +

Lover +

+My dove in the clefts of the rock, + +in the hiding places of the mountainside, + +let me see your face. + +Let me hear your voice; + +for your voice is sweet and your face is lovely. + + +Catch for us the foxes, + +the little foxes that plunder the vineyards; + +for our vineyards are in blossom. + + +

Beloved +

+My beloved is mine, and I am his. + +He browses among the lilies. + + +Until the day is cool, and the shadows flee away, + +turn, my beloved, + +and be like a roe or a young deer on the mountains of Bether. + + + + +

By night on my bed, +

+I sought him whom my soul loves. + +I sought him, but I didn’t find him. + + +I will get up now, and go about the city; + +in the streets and in the squares I will seek him whom my soul loves. + +I sought him, but I didn’t find him. + + +The watchmen who go about the city found me; + +Have you seen him whom my soul loves?” + + +I had scarcely passed from them, + +when I found him whom my soul loves. + +I held him, and would not let him go, + +until I had brought him into my mother’s house, + +into the room of her who conceived me. + + + +I adjure you, daughters of Jerusalem, + +by the roes, or by the hinds of the field, + +that you not stir up nor awaken love, + +until it so desires. + + + +Who is this who comes up from the wilderness like pillars of smoke, + +perfumed with myrrh and frankincense, + +with all spices of the merchant? + + +Behold, it is Solomon’s carriage! + +Sixty mighty men are around it, + +of the mighty men of Israel. + + +They all handle the sword, and are expert in war. + +Every man has his sword on his thigh, + +because of fear in the night. + + + +King Solomon made himself a carriage + +of the wood of Lebanon. + + +He made its pillars of silver, + +its bottom of gold, its seat of purple, + +the middle of it being paved with love, + +from the daughters of Jerusalem. + + +Go out, you daughters of Zion, and see King Solomon, + +with the crown with which his mother has crowned him, + +in the day of his weddings, + +in the day of the gladness of his heart. + + + + +

Lover +

+

Behold, you are beautiful, my love. +

+Behold, you are beautiful. + +Your eyes are like doves behind your veil. + +Your hair is as a flock of goats, + +that descend from Mount Gilead. + + +Your teeth are like a newly shorn flock, + +which have come up from the washing, + +where every one of them has twins. + +None is bereaved among them. + + +Your lips are like scarlet thread. + +Your mouth is lovely. + +Your temples are like a piece of a pomegranate behind your veil. + + +Your neck is like David’s tower built for an armory, + +on which a thousand shields hang, + +all the shields of the mighty men. + + +Your two breasts are like two fawns + +that are twins of a roe, + +which feed among the lilies. + + + +Until the day is cool, and the shadows flee away, + +I will go to the mountain of myrrh, + +to the hill of frankincense. + + + +You are all beautiful, my love. + +There is no spot in you. + + +Come with me from Lebanon, my bride, + +with me from Lebanon. + +Look from the top of Amana, + +from the top of Senir and Hermon, + +from the lions’ dens, + +from the mountains of the leopards. + + + +You have ravished my heart, my sister, my bride. + +You have ravished my heart with one of your eyes, + +with one chain of your neck. + + +How beautiful is your love, my sister, my bride! + +How much better is your love than wine, + +the fragrance of your perfumes than all kinds of spices! + + +Your lips, my bride, drip like the honeycomb. + +Honey and milk are under your tongue. + +The smell of your garments is like the smell of Lebanon. + + +My sister, my bride, is a locked up garden; + +a locked up spring, + +a sealed fountain. + + +Your shoots are an orchard of pomegranates, with precious fruits, + +henna with spikenard plants, + + +spikenard and saffron, + +calamus and cinnamon, with every kind of incense tree; + +myrrh and aloes, with all the best spices, + + +a fountain of gardens, + +a well of living waters, + +flowing streams from Lebanon. + + +

Beloved +

+Awake, north wind, and come, you south! + +Blow on my garden, that its spices may flow out. + +Let my beloved come into his garden, + +and taste his precious fruits. + + + + +

Lover +

+I have come into my garden, my sister, my bride. + +I have gathered my myrrh with my spice; + +I have eaten my honeycomb with my honey; + +I have drunk my wine with my milk. + +

Friends +

+Eat, friends! + +Drink, yes, drink abundantly, beloved. + + +

Beloved +

+I was asleep, but my heart was awake. + +It is the voice of my beloved who knocks: + +Open to me, my sister, my love, my dove, my undefiled; + +for my head is filled with dew, + +and my hair with the dampness of the night.” + + +I have taken off my robe. Indeed, must I put it on? + +I have washed my feet. Indeed, must I soil them? + + +My beloved thrust his hand in through the latch opening. + +My heart pounded for him. + + +I rose up to open for my beloved. + +My hands dripped with myrrh, + +my fingers with liquid myrrh, + +on the handles of the lock. + + +I opened to my beloved; + +but my beloved left, and had gone away. + +My heart went out when he spoke. + +I looked for him, but I didn’t find him. + +I called him, but he didn’t answer. + + +The watchmen who go about the city found me. + +They beat me. + +They bruised me. + +The keepers of the walls took my cloak away from me. + + + +I adjure you, daughters of Jerusalem, + +If you find my beloved, + +that you tell him that I am faint with love. + + +

Friends +

+How is your beloved better than another beloved, + +you fairest among women? + +How is your beloved better than another beloved, + +that you do so adjure us? + + +

Beloved +

+My beloved is white and ruddy. + +The best among ten thousand. + + +His head is like the purest gold. + +His hair is bushy, black as a raven. + + +His eyes are like doves beside the water brooks, + +washed with milk, mounted like jewels. + + +His cheeks are like a bed of spices with towers of perfumes. + +His lips are like lilies, dropping liquid myrrh. + + +His hands are like rings of gold set with beryl. + +His body is like ivory work overlaid with sapphires. + + +His legs are like pillars of marble set on sockets of fine gold. + +His appearance is like Lebanon, excellent as the cedars. + + +His mouth is sweetness; + +yes, he is altogether lovely. + +This is my beloved, and this is my friend, + +daughters of Jerusalem. + + + + +

Friends +

+Where has your beloved gone, you fairest among women? + +Where has your beloved turned, that we may seek him with you? + + +

Beloved +

+My beloved has gone down to his garden, + +to the beds of spices, + +to pasture his flock in the gardens, and to gather lilies. + + +I am my beloved’s, and my beloved is mine. + +He browses among the lilies. + + + +

Lover +

+You are beautiful, my love, as Tirzah, + +lovely as Jerusalem, + +awesome as an army with banners. + + +Turn away your eyes from me, + +for they have overcome me. + +Your hair is like a flock of goats, + +that lie along the side of Gilead. + + +Your teeth are like a flock of ewes, + +which have come up from the washing, + +of which every one has twins; + +not one is bereaved among them. + + +Your temples are like a piece of a pomegranate behind your veil. + + + +There are sixty queens, eighty concubines, + +and virgins without number. + + +My dove, my perfect one, is unique. + +She is her mother’s only daughter. + +She is the favorite one of her who bore her. + +The daughters saw her, and called her blessed. + +The queens and the concubines saw her, and they praised her. + + + +Who is she who looks out as the morning, + +beautiful as the moon, + +clear as the sun, + +and awesome as an army with banners? + + + +I went down into the nut tree grove, + +to see the green plants of the valley, + +to see whether the vine budded, + +and the pomegranates were in flower. + + +Without realizing it, + +my desire set me with my royal people’s chariots. + + +

Friends +

+Return, return, Shulammite! + +Return, return, that we may gaze at you. + +

Lover +

+Why do you desire to gaze at the Shulammite, + +as at the dance of Mahanaim? + + + + +

How beautiful are your feet in sandals, prince’s daughter! +

+Your rounded thighs are like jewels, + +the work of the hands of a skillful workman. + + +Your body is like a round goblet, + +no mixed wine is wanting. + +Your waist is like a heap of wheat, + +set about with lilies. + + +Your two breasts are like two fawns, + +that are twins of a roe. + + +Your neck is like an ivory tower. + +Your eyes are like the pools in Heshbon by the gate of Bathrabbim. + +Your nose is like the tower of Lebanon which looks toward Damascus. + + +Your head on you is like Carmel. + +The hair of your head like purple. + +The king is held captive in its tresses. + + +How beautiful and how pleasant you are, + +love, for delights! + + +This, your stature, is like a palm tree, + +your breasts like its fruit. + + +I said, “I will climb up into the palm tree. + +I will take hold of its fruit.” + +Let your breasts be like clusters of the vine, + +the smell of your breath like apples. + + +Your mouth is like the best wine, + +that goes down smoothly for my beloved, + +gliding through the lips of those who are asleep. + + +

Beloved +

+I am my beloved’s. + +His desire is toward me. + + +Come, my beloved! Let’s go out into the field. + +Let’s lodge in the villages. + + +Let’s go early up to the vineyards. + +Let’s see whether the vine has budded, + +its blossom is open, + +and the pomegranates are in flower. + +There I will give you my love. + + +The mandrakes produce fragrance. + +At our doors are all kinds of precious fruits, new and old, + +which I have stored up for you, my beloved. + + + + +

Oh that you were like my brother, +

+who nursed from the breasts of my mother! + +If I found you outside, I would kiss you; + +yes, and no one would despise me. + + +I would lead you, bringing you into the house of my mother, + +who would instruct me. + +I would have you drink spiced wine, + +of the juice of my pomegranate. + + +His left hand would be under my head. + +His right hand would embrace me. + + + +I adjure you, daughters of Jerusalem, + +that you not stir up, nor awaken love, + +until it so desires. + + +

Friends +

+Who is this who comes up from the wilderness, + +leaning on her beloved? + + +

Beloved +

+Under the apple tree I awakened you. + +There your mother conceived you. + +There she was in labor and bore you. + + + +Set me as a seal on your heart, + +as a seal on your arm; + +for love is strong as death. + +Jealousy is as cruel as Sheol.8:6 +Sheol is the place of the dead. + + +Its flashes are flashes of fire, + +a very flame of Yah.8:6 +“Yah” is a short form of “Yahweh”, which is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. + + +Many waters can’t quench love, + +neither can floods drown it. + +If a man would give all the wealth of his house for love, + +he would be utterly scorned. + + +

Brothers +

+We have a little sister. + +She has no breasts. + +What shall we do for our sister + +in the day when she is to be spoken for? + + + +If she is a wall, + +we will build on her a turret of silver. + +If she is a door, + +we will enclose her with boards of cedar. + + +

Beloved +

+I am a wall, and my breasts like towers, + +then I was in his eyes like one who found peace. + + +Solomon had a vineyard at Baal Hamon. + +He leased out the vineyard to keepers. + +Each was to bring a thousand shekels8:11 +A shekel is about 10 grams or about 0.35 ounces, so 1000 shekels is about 10 kilograms or about 22 pounds. of silver for its fruit. + + +My own vineyard is before me. + +The thousand are for you, Solomon, + +two hundred for those who tend its fruit. + + +

Lover +

+You who dwell in the gardens, with friends in attendance, + +let me hear your voice! + + +

Beloved +

+Come away, my beloved! + +Be like a gazelle or a young stag on the mountains of spices! + + +
+23-ISA-web.sfm World English Bible (WEB) +Isaiah +The Book of Isaiah +Isaiah +Isa +

The Book of the Prophet +

+

Isaiah +

+ + +

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. + +

+Hear, heavens, + +and listen, earth; for Yahweh1:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. has spoken: + +I have nourished and brought up children + +and they have rebelled against me. + + +The ox knows his owner, + +and the donkey his master’s crib; + +but Israel doesn’t know. + +My people don’t consider.” + + +Ah sinful nation, + +a people loaded with iniquity, + +offspring1:4 +or, seed of evildoers, + +children who deal corruptly! + +They have forsaken Yahweh. + +They have despised the Holy One of Israel. + +They are estranged and backward. + + +Why should you be beaten more, + +that you revolt more and more? + +The whole head is sick, + +and the whole heart faint. + + +From the sole of the foot even to the head there is no soundness in it, + +but wounds, welts, and open sores. + +They haven’t been closed, bandaged, or soothed with oil. + + +Your country is desolate. + +Your cities are burned with fire. + +Strangers devour your land in your presence + +and it is desolate, + +as overthrown by strangers. + + +The daughter of Zion is left like a shelter in a vineyard, + +like a hut in a field of melons, + +like a besieged city. + + +Unless Yahweh of Armies had left to us a very small remnant, + +we would have been as Sodom. + +We would have been like Gomorrah. + + + +Hear Yahweh’s word, you rulers of Sodom! + +Listen to the law of our God,1:10 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). you people of Gomorrah! + + +What are the multitude of your sacrifices to me?”, says Yahweh. + +I have had enough of the burnt offerings of rams + +and the fat of fed animals. + +I don’t delight in the blood of bulls, + +or of lambs, + +or of male goats. + + +When you come to appear before me, + +who has required this at your hand, to trample my courts? + + +Bring no more vain offerings. + +Incense is an abomination to me. + +New moons, Sabbaths, and convocations— + +I can’t stand evil assemblies. + + +My soul hates your New Moons and your appointed feasts. + +They are a burden to me. + +I am weary of bearing them. + + +When you spread out your hands, I will hide my eyes from you. + +Yes, when you make many prayers, I will not hear. + +Your hands are full of blood. + + +Wash yourselves. Make yourself clean. + +Put away the evil of your doings from before my eyes. + +Cease to do evil. + + +Learn to do well. + +Seek justice. + +Relieve the oppressed. + +Defend the fatherless. + +Plead for the widow.” + + + +Come now, and let’s reason together,” says Yahweh: + +“Though your sins are as scarlet, they shall be as white as snow. + +Though they are red like crimson, they shall be as wool. + + +If you are willing and obedient, + +you will eat the good of the land; + + +but if you refuse and rebel, you will be devoured with the sword; + +for Yahweh’s mouth has spoken it.” + + + +How the faithful city has become a prostitute! + +She was full of justice. + +Righteousness lodged in her, + +but now there are murderers. + + +Your silver has become dross, + +your wine mixed with water. + + +Your princes are rebellious and companions of thieves. + +Everyone loves bribes and follows after rewards. + +They don’t defend the fatherless, + +neither does the cause of the widow come to them. + + + +Therefore the Lord,1:24 +The word translated “Lord” is “Adonai.” + Yahweh of Armies, + +the Mighty One of Israel, says: + +Ah, I will get relief from my adversaries, + +and avenge myself on my enemies. + + +I will turn my hand on you, + +thoroughly purge away your dross, + +and will take away all your tin.1:25 +tin is a metal that is separated from silver during the refining and purification process. + + +I will restore your judges as at the first, + +and your counselors as at the beginning. + +Afterward you shall be calledThe city of righteousness, + +a faithful town.’ + + +Zion shall be redeemed with justice, + +and her converts with righteousness. + + +But the destruction of transgressors and sinners shall be together, + +and those who forsake Yahweh shall be consumed. + + +For they shall be ashamed of the oaks which you have desired, + +and you shall be confounded for the gardens that you have chosen. + + +For you shall be as an oak whose leaf fades, + +and as a garden that has no water. + + +The strong will be like tinder, + +and his work like a spark. + +They will both burn together, + +and no one will quench them.” + + + + +

This is what Isaiah the son of Amoz saw concerning Judah and Jerusalem. + +

+It shall happen in the latter days, that the mountain of Yahweh’s house shall be established on the top of the mountains, + +and shall be raised above the hills; + +and all nations shall flow to it. + + +Many peoples shall go and say, + +Come, let’s go up to the mountain of Yahweh, + +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 out of Zion, + +and Yahweh’s word from Jerusalem. + + +He will judge between the nations, + +and will decide concerning many peoples. + +They shall beat their swords into plowshares, + +and their spears into pruning hooks. + +Nation shall not lift up sword against nation, + +neither shall they learn war any more. + + + +House of Jacob, come, and let’s walk in the light of Yahweh. + + +For you have forsaken your people, the house of Jacob, + +because they are filled from the east, + +with those who practice divination like the Philistines, + +and they clasp hands with the children of foreigners. + + +Their land is full of silver and gold, + +neither is there any end of their treasures. + +Their land also is full of horses, + +neither is there any end of their chariots. + + +Their land also is full of idols. + +They worship the work of their own hands, + +that which their own fingers have made. + + +Man is brought low, + +and mankind is humbled; + +therefore don’t forgive them. + + +Enter into the rock, + +and hide in the dust, + +from before the terror of Yahweh, + +and from the glory of his majesty. + + +The lofty looks of man will be brought low, + +the arrogance of men will be bowed down, + +and Yahweh alone will be exalted in that day. + + + +For there will be a day of Yahweh of Armies for all that is proud and arrogant, + +and for all that is lifted up, + +and it shall be brought low— + + +for all the cedars of Lebanon, that are high and lifted up, + +for all the oaks of Bashan, + + +for all the high mountains, + +for all the hills that are lifted up, + + +for every lofty tower, + +for every fortified wall, + + +for all the ships of Tarshish, + +and for all pleasant imagery. + + +The loftiness of man shall be bowed down, + +and the arrogance of men shall be brought low; + +and Yahweh alone shall be exalted in that day. + + +The idols shall utterly pass away. + + +Men shall go into the caves of the rocks, + +and into the holes of the earth, + +from before the terror of Yahweh, + +and from the glory of his majesty, + +when he arises to shake the earth mightily. + + +In that day, men shall cast away their idols of silver + +and their idols of gold, + +which have been made for themselves to worship, + +to the moles and to the bats, + + +to go into the caverns of the rocks, + +and into the clefts of the ragged rocks, + +from before the terror of Yahweh, + +and from the glory of his majesty, + +when he arises to shake the earth mightily. + + +Stop trusting in man, whose breath is in his nostrils; + +for of what account is he? + + + + +For, behold,3:1 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. the Lord, Yahweh of Armies, takes away from Jerusalem and from Judah supply and support, + +the whole supply of bread, + +and the whole supply of water; + + +the mighty man, + +the man of war, + +the judge, + +the prophet, + +the diviner, + +the elder, + + +the captain of fifty, + +the honorable man, + +the counselor, + +the skilled craftsman, + +and the clever enchanter. + + +I will give boys to be their princes, + +and children shall rule over them. + + +The people will be oppressed, + +everyone by another, + +and everyone by his neighbor. + +The child will behave himself proudly against the old man, + +and the wicked against the honorable. + + +Indeed a man shall take hold of his brother in the house of his father, saying, + +You have clothing, you be our ruler, + +and let this ruin be under your hand.” + + +In that day he will cry out, saying, “I will not be a healer; + +for in my house is neither bread nor clothing. + +You shall not make me ruler of the people.” + + +For Jerusalem is ruined, and Judah is fallen; + +because their tongue and their doings are against Yahweh, + +to provoke the eyes of his glory. + + +The look of their faces testify against them. + +They parade their sin like Sodom. + +They don’t hide it. + +Woe to their soul! + +For they have brought disaster upon themselves. + + +Tell the righteous that it will be well with them, + +for they will eat the fruit of their deeds. + + +Woe to the wicked! + +Disaster is upon them, + +for the deeds of their hands will be paid back to them. + + +As for my people, children are their oppressors, + +and women rule over them. + +My people, those who lead you cause you to err, + +and destroy the way of your paths. + + + +Yahweh stands up to contend, + +and stands to judge the peoples. + + +Yahweh will enter into judgment with the elders of his people + +and their leaders: + +It is you who have eaten up the vineyard. + +The plunder of the poor is in your houses. + + +What do you mean that you crush my people, + +and grind the face of the poor?” says the Lord, Yahweh of Armies. + + + +Moreover Yahweh said, “Because the daughters of Zion are arrogant, + +and walk with outstretched necks and flirting eyes, + +walking daintily as they go, + +jingling ornaments on their feet; + + +therefore the Lord brings sores on the crown of the head of the women of Zion, + +and Yahweh will make their scalps bald.” + + +

In that day the Lord will take away the beauty of their anklets, the headbands, the crescent necklaces, + +the earrings, the bracelets, the veils, + +the headdresses, the ankle chains, the sashes, the perfume containers, the charms, + +the signet rings, the nose rings, + +the fine robes, the capes, the cloaks, the purses, + +the hand mirrors, the fine linen garments, the tiaras, and the shawls. + +

+It shall happen that instead of sweet spices, there shall be rottenness; + +instead of a belt, a rope; + +instead of well set hair, baldness; + +instead of a robe, a wearing of sackcloth; + +and branding instead of beauty. + + +Your men shall fall by the sword, + +and your mighty in the war. + + +Her gates shall lament and mourn. + +She shall be desolate and sit on the ground. + + + + +

Seven women shall take hold of one man in that day, saying, “We will eat our own bread, and wear our own clothing. Just let us be called by your name. Take away our reproach.” + +

+

In that day, Yahweh’s branch will be beautiful and glorious, and the fruit of the land will be the beauty and glory of the survivors of Israel. + +It will happen that he who is left in Zion and he who remains in Jerusalem shall be called holy, even everyone who is written among the living in Jerusalem, + +when the Lord shall have washed away the filth of the daughters of Zion, and shall have purged the blood of Jerusalem from within it, by the spirit of justice and by the spirit of burning. + +Yahweh will create over the whole habitation of Mount Zion and over her assemblies, a cloud and smoke by day, and the shining of a flaming fire by night, for over all the glory will be a canopy. + +There will be a pavilion for a shade in the daytime from the heat, and for a refuge and for a shelter from storm and from rain. + +

+ + +Let me sing for my well beloved a song of my beloved about his vineyard. + +My beloved had a vineyard on a very fruitful hill. + + +He dug it up, + +gathered out its stones, + +planted it with the choicest vine, + +built a tower in the middle of it, + +and also cut out a wine press in it. + +He looked for it to yield grapes, + +but it yielded wild grapes. + + + +Now, inhabitants of Jerusalem and men of Judah, + +please judge between me and my vineyard. + + +What could have been done more to my vineyard, that I have not done in it? + +Why, when I looked for it to yield grapes, did it yield wild grapes? + + +Now I will tell you what I will do to my vineyard. + +I will take away its hedge, and it will be eaten up. + +I will break down its wall, and it will be trampled down. + + +I will lay it a wasteland. + +It won’t be pruned or hoed, + +but it will grow briers and thorns. + +I will also command the clouds that they rain no rain on it.” + + +For the vineyard of Yahweh of Armies is the house of Israel, + +and the men of Judah his pleasant plant. + +He looked for justice, but behold, oppression, + +for righteousness, but behold, a cry of distress. + + + +Woe to those who join house to house, + +who lay field to field, until there is no room, + +and you are made to dwell alone in the middle of the land! + + +In my ears, Yahweh of Armies says: “Surely many houses will be desolate, + +even great and beautiful, unoccupied. + + +For ten acres5:10 +literally, ten yokes, or the amount of land that ten yokes of oxen can plow in one day, which is about 10 acres or 4 hectares. of vineyard shall yield one bath,5:10 +1 bath is about 22 liters or 5.8 U. S. gallons + +and a homer5:10 +1 homer is about 220 liters or 6 bushels of seed shall yield an ephah.”5:10 +1 ephah is about 22 liters or 0.6 bushels or about 2 pecks—only one tenth of what was sown. + + +Woe to those who rise up early in the morning, that they may follow strong drink, + +who stay late into the night, until wine inflames them! + + +The harp, lyre, tambourine, and flute, with wine, are at their feasts; + +but they don’t respect the work of Yahweh, + +neither have they considered the operation of his hands. + + + +Therefore my people go into captivity for lack of knowledge. + +Their honorable men are famished, + +and their multitudes are parched with thirst. + + +Therefore Sheol5:14 +Sheol is the place of the dead. has enlarged its desire, + +and opened its mouth without measure; + +and their glory, their multitude, their pomp, and he who rejoices among them, descend into it. + + +So man is brought low, + +mankind is humbled, + +and the eyes of the arrogant ones are humbled; + + +but Yahweh of Armies is exalted in justice, + +and God the Holy One is sanctified in righteousness. + + +Then the lambs will graze as in their pasture, + +and strangers will eat the ruins of the rich. + + + +Woe to those who draw iniquity with cords of falsehood, + +and wickedness as with cart rope, + + +who say, “Let him make haste, let him hasten his work, that we may see it; + +let the counsel of the Holy One of Israel draw near and come, + +that we may know it!” + + +Woe to those who call evil good, and good evil; + +who put darkness for light, + +and light for darkness; + +who put bitter for sweet, + +and sweet for bitter! + + +Woe to those who are wise in their own eyes, + +and prudent in their own sight! + + +Woe to those who are mighty to drink wine, + +and champions at mixing strong drink; + + +who acquit the guilty for a bribe, + +but deny justice for the innocent! + + + +Therefore as the tongue of fire devours the stubble, + +and as the dry grass sinks down in the flame, + +so their root shall be as rottenness, + +and their blossom shall go up as dust, + +because they have rejected the law of Yahweh of Armies, + +and despised the word of the Holy One of Israel. + + +Therefore Yahweh’s anger burns against his people, + +and he has stretched out his hand against them and has struck them. + +The mountains tremble, + +and their dead bodies are as refuse in the middle of the streets. + +For all this, his anger is not turned away, + +but his hand is still stretched out. + + + +He will lift up a banner to the nations from far away, + +and he will whistle for them from the end of the earth. + +Behold, they will come speedily and swiftly. + + +No one shall be weary nor stumble among them; + +no one shall slumber nor sleep, + +neither shall the belt of their waist be untied, + +nor the strap of their sandals be broken, + + +whose arrows are sharp, + +and all their bows bent. + +Their horseshoofs will be like flint, + +and their wheels like a whirlwind. + + +Their roaring will be like a lioness. + +They will roar like young lions. + +Yes, they shall roar, + +and seize their prey and carry it off, + +and there will be no one to deliver. + + +They will roar against them in that day like the roaring of the sea. + +If one looks to the land, behold, darkness and distress. + +The light is darkened in its clouds. + + + + +

In the year that King Uzziah died, I saw the Lord sitting on a throne, high and lifted up; and his train filled the temple. + +Above him stood the seraphim. Each one had six wings. With two he covered his face. With two he covered his feet. With two he flew. + +One called to another, and said, +

+Holy, holy, holy, is Yahweh of Armies! + +The whole earth is full of his glory!” + + +

The foundations of the thresholds shook at the voice of him who called, and the house was filled with smoke. + +Then I said, “Woe is me! For I am undone, because I am a man of unclean lips and I live among a people of unclean lips, for my eyes have seen the King, Yahweh of Armies!” + +

+

Then one of the seraphim flew to me, having a live coal in his hand, which he had taken with the tongs from off the altar. + +He touched my mouth with it, and said, “Behold, this has touched your lips; and your iniquity is taken away, and your sin forgiven.” + +

+

I heard the Lord’s voice, saying, “Whom shall I send, and who will go for us?” +

+

Then I said, “Here I am. Send me!” + +

+

He said, “Go, and tell this people, +

+You hear indeed, + +but don’t understand. + +You see indeed, + +but don’t perceive.’ + + +Make the heart of this people fat. + +Make their ears heavy, and shut their eyes; + +lest they see with their eyes, + +hear with their ears, + +understand with their heart, + +and turn again, and be healed.” + + +

Then I said, “Lord, how long?” +

+

He answered, +

+Until cities are waste without inhabitant, + +houses without man, + +the land becomes utterly waste, + + +and Yahweh has removed men far away, + +and the forsaken places are many within the land. + + +If there is a tenth left in it, + +that also will in turn be consumed, + +as a terebinth, and as an oak whose stump remains when they are cut down, + +so the holy seed is its stump.” + + + + +

In the days of Ahaz the son of Jotham, the son of Uzziah, king of Judah, Rezin the king of Syria and Pekah the son of Remaliah, king of Israel, went up to Jerusalem to war against it, but could not prevail against it. + +David’s house was told, “Syria is allied with Ephraim.” His heart trembled, and the heart of his people, as the trees of the forest tremble with the wind. + +

+

Then Yahweh said to Isaiah, “Go out now to meet Ahaz, you, and Shearjashub your son, at the end of the conduit of the upper pool, on the highway of the fuller’s field. + +Tell him, ‘Be careful, and keep calm. Don’t be afraid, neither let your heart be faint because of these two tails of smoking torches, for the fierce anger of Rezin and Syria, and of the son of Remaliah. + +Because Syria, Ephraim, and the son of Remaliah, have plotted evil against you, saying, + +“Let’s go up against Judah, and tear it apart, and let’s divide it among ourselves, and set up a king within it, even the son of Tabeel.” + +This is what the Lord Yahweh says: “It shall not stand, neither shall it happen.” + +For the head of Syria is Damascus, and the head of Damascus is Rezin. Within sixty-five years Ephraim shall be broken in pieces, so that it shall not be a people. + +The head of Ephraim is Samaria, and the head of Samaria is Remaliah’s son. If you will not believe, surely you shall not be established.’” + +

+

Yahweh spoke again to Ahaz, saying, + +Ask a sign of Yahweh your God; ask it either in the depth, or in the height above.” + +

+

But Ahaz said, “I won’t ask. I won’t tempt Yahweh.” + +

+

He said, “Listen now, house of David. Is it not enough for you to try the patience of men, that you will try the patience of my God also? + +Therefore the Lord himself will give you a sign. Behold, the virgin will conceive, and bear a son, and shall call his name Immanuel.7:14 +“Immanuel” means “God with us”. + +He shall eat butter and honey when he knows to refuse the evil and choose the good. + +For before the child knows to refuse the evil and choose the good, the land whose two kings you abhor shall be forsaken. + +Yahweh will bring on you, on your people, and on your father’s house days that have not come, from the day that Ephraim departed from Judah, even the king of Assyria. + +

+

It will happen in that day that Yahweh will whistle 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. + +They shall come, and shall all rest in the desolate valleys, in the clefts of the rocks, on all thorn hedges, and on all pastures. + +

+

In that day the Lord will shave with a razor that is hired in the parts beyond the River, even with the king of Assyria, the head and the hair of the feet; and it shall also consume the beard. + +

+

It shall happen in that day that a man shall keep alive a young cow, and two sheep. + +It shall happen, that because of the abundance of milk which they shall give he shall eat butter, for everyone will eat butter and honey that is left within the land. + +

+

It will happen in that day that every place where there were a thousand vines worth a thousand silver shekels,7:23 +A shekel is about 10 grams or about 0.35 ounces, so 1000 shekels is about 10 kilograms or 22 pounds. will be for briers and thorns. + +People will go there with arrows and with bow, because all the land will be briers and thorns. + +All the hills that were cultivated with the hoe, you shall not come there for fear of briers and thorns; but it shall be for the sending out of oxen, and for sheep to tread on.” + +

+ + +

Yahweh said to me, “Take a large tablet, and write on it with a man’s pen, ‘For Maher Shalal Hash Baz’;8:1 +“Maher Shalal Hash Baz” means “quick to the plunder, swift to the prey”. + +and I will take for myself faithful witnesses to testify: Uriah the priest, and Zechariah the son of Jeberechiah.” + +

+

I went to the prophetess, and she conceived, and bore a son. Then Yahweh said to me, “Call his name ‘Maher Shalal Hash Baz.’ + +For before the child knows how to say, ‘My father’ andMy mother,’ the riches of Damascus and the plunder of Samaria will be carried away by the king of Assyria.” + +

+

Yahweh spoke to me yet again, saying, + +Because this people has refused the waters of Shiloah that go softly, and rejoice in Rezin and Remaliah’s son; + +now therefore, behold, the Lord brings upon them the mighty flood waters of the River: the king of Assyria and all his glory. It will come up over all its channels, and go over all its banks. + +It will sweep onward into Judah. It will overflow and pass through. It will reach even to the neck. The stretching out of its wings will fill the width of your land, O Immanuel. + +

+

Make an uproar, you peoples, and be broken in pieces! Listen, all you from far countries: dress for battle, and be shattered! Dress for battle, and be shattered! + +Take counsel together, and it will be brought to nothing; speak the word, and it will not stand, for God is with us.” + +

+

For Yahweh spoke this to me with a strong hand, and instructed me not to walk in the way of this people, saying, + +“Don’t call a conspiracy all that this people call a conspiracy. Don’t fear their threats or be terrorized. + +Yahweh of Armies is who you must respect as holy. He is the one you must fear. He is the one you must dread. + +He will be a sanctuary, but for both houses of Israel, he will be a stumbling stone and a rock that makes them fall. For the people of Jerusalem, he will be a trap and a snare. + +Many will stumble over it, fall, be broken, be snared, and be captured.” + +

+

Wrap up the covenant. Seal the law among my disciples. + +I will wait for Yahweh, who hides his face from the house of Jacob, and I will look for him. + +Behold, I and the children whom Yahweh has given me are for signs and for wonders in Israel from Yahweh of Armies, who dwells in Mount Zion. + +

+

When they tell you, “Consult with those who have familiar spirits and with the wizards, who chirp and who mutter,” shouldn’t a people consult with their God? Should they consult the dead on behalf of the living? + +Turn to the law and to the covenant! If they don’t speak according to this word, surely there is no morning for them. + +They will pass through it, very distressed and hungry. It will happen that when they are hungry, they will worry, and curse their king and their God. They will turn their faces upward, + +then look to the earth and see distress, darkness, and the gloom of anguish. They will be driven into thick darkness. + +

+ + +

But there shall be no more gloom for her who was in anguish. In the former time, he brought into contempt the land of Zebulun and the land of Naphtali; but in the latter time he has made it glorious, by the way of the sea, beyond the Jordan, Galilee of the nations. + +

+

The people who walked in darkness have seen a great light. +

+The light has shined on those who lived in the land of the shadow of death. + + +You have multiplied the nation. + +You have increased their joy. + +

They rejoice before you according to the joy in harvest, as men rejoice when they divide the plunder. + +For the yoke of his burden, and the staff of his shoulder, the rod of his oppressor, you have broken as in the day of Midian. + +For all the armor of the armed man in the noisy battle, and the garments rolled in blood, will be for burning, fuel for the fire. + +For a child is born to us. A son is given to us; and the government will be on his shoulders. His name will be called Wonderful Counselor, Mighty God, Everlasting Father, Prince of Peace. + +Of the increase of his government and of peace there shall be no end, on David’s throne, and on his kingdom, to establish it, and to uphold it with justice and with righteousness from that time on, even forever. The zeal of Yahweh of Armies will perform this. + +

+

The Lord sent a word into Jacob, +

+and it falls on Israel. + + +All the people will know, + +including Ephraim and the inhabitants of Samaria, who say in pride and in arrogance of heart, + + +The bricks have fallen, + +but we will build with cut stone. + +The sycamore fig trees have been cut down, + +but we will put cedars in their place.” + + +Therefore Yahweh will set up on high against him the adversaries of Rezin, + +and will stir up his enemies, + + +The Syrians in front, + +and the Philistines behind; + +and they will devour Israel with open mouth. + +For all this, his anger is not turned away, + +but his hand is stretched out still. + + + +Yet the people have not turned to him who struck them, + +neither have they sought Yahweh of Armies. + + +Therefore Yahweh will cut off from Israel head and tail, + +palm branch and reed, in one day. + + +The elder and the honorable man is the head, + +and the prophet who teaches lies is the tail. + + +For those who lead this people lead them astray; + +and those who are led by them are destroyed. + + +Therefore the Lord will not rejoice over their young men, + +neither will he have compassion on their fatherless and widows; + +for everyone is profane and an evildoer, + +and every mouth speaks folly. + +For all this his anger is not turned away, + +but his hand is stretched out still. + + + +For wickedness burns like a fire. + +It devours the briers and thorns; + +yes, it kindles in the thickets of the forest, + +and they roll upward in a column of smoke. + + +Through Yahweh of Armies’ wrath, the land is burned up; + +and the people are the fuel for the fire. + +No one spares his brother. + + +One will devour on the right hand, and be hungry; + +and he will eat on the left hand, and they will not be satisfied. + +Everyone will eat the flesh of his own arm: + + +Manasseh eating Ephraim and Ephraim eating Manasseh, and they together will be against Judah. + +For all this his anger is not turned away, + +but his hand is stretched out still. + + + + +

Woe to those who decree unrighteous decrees, and to the writers who write oppressive decrees + +to deprive the needy of justice, and to rob the poor among my people of their rights, that widows may be their plunder, and that they may make the fatherless their prey! + +What will you do in the day of visitation, and in the desolation which will come from afar? To whom will you flee for help? Where will you leave your wealth? + +

+

They will only bow down under the prisoners, +

+and will fall under the slain. + +For all this his anger is not turned away, + +but his hand is stretched out still. + + + +

Alas Assyrian, the rod of my anger, the staff in whose hand is my indignation! + +I will send him against a profane nation, and against the people who anger me I will give him a command to take the plunder and to take the prey, and to tread them down like the mire of the streets. + +However, he doesn’t mean so, neither does his heart think so; but it is in his heart to destroy, and to cut off not a few nations. + +For he says, “Aren’t all of my princes kings? + +Isn’t Calno like Carchemish? Isn’t Hamath like Arpad? Isn’t Samaria like Damascus?” + +As my hand has found the kingdoms of the idols, whose engraved images exceeded those of Jerusalem and of Samaria, + +shall I not, as I have done to Samaria and her idols, so do to Jerusalem and her idols? + +

+

Therefore it will happen that when the Lord has performed his whole work on Mount Zion and on Jerusalem, I will punish the fruit of the willful proud heart of the king of Assyria, and the insolence of his arrogant looks. + +For he has said, “By the strength of my hand I have done it, and by my wisdom, for I have understanding. I have removed the boundaries of the peoples, and have robbed their treasures. Like a valiant man I have brought down their rulers. + +My hand has found the riches of the peoples like a nest, and like one gathers eggs that are abandoned, I have gathered all the earth. There was no one who moved their wing, or that opened their mouth, or chirped.” + +

+

Should an ax brag against him who chops with it? Should a saw exalt itself above him who saws with it? As if a rod should lift those who lift it up, or as if a staff should lift up someone who is not wood. + +Therefore the Lord, Yahweh of Armies, will send among his fat ones leanness; and under his glory a burning will be kindled like the burning of fire. + +The light of Israel will be for a fire, and his Holy One for a flame; and it will burn and devour his thorns and his briers in one day. + +He will consume the glory of his forest and of his fruitful field, both soul and body. It will be as when a standard bearer faints. + +The remnant of the trees of his forest shall be few, so that a child could write their number. + +

+

It will come to pass in that day that the remnant of Israel, and those who have escaped from the house of Jacob will no more again lean on him who struck them, but shall lean on Yahweh, the Holy One of Israel, in truth. + +A remnant will return, even the remnant of Jacob, to the mighty God. + +For though your people, Israel, are like the sand of the sea, only a remnant of them will return. A destruction is determined, overflowing with righteousness. + +For the Lord, Yahweh of Armies, will make a full end, and that determined, throughout all the earth. + +

+

Therefore the Lord, Yahweh of Armies, says, “My people who dwell in Zion, don’t be afraid of the Assyrian, though he strike you with the rod, and lift up his staff against you, as Egypt did. + +For yet a very little while, and the indignation against you will be accomplished, and my anger will be directed to his destruction.” + +Yahweh of Armies will stir up a scourge against him, as in the slaughter of Midian at the rock of Oreb. His rod will be over the sea, and he will lift it up like he did against Egypt. + +It will happen in that day that his burden will depart from off your shoulder, and his yoke from off your neck, and the yoke shall be destroyed because of the anointing oil. + +

+

He has come to Aiath. He has passed through Migron. At Michmash he stores his baggage. + +They have gone over the pass. They have taken up their lodging at Geba. Ramah trembles. Gibeah of Saul has fled. + +Cry aloud with your voice, daughter of Gallim! Listen, Laishah! You poor Anathoth! + +Madmenah is a fugitive. The inhabitants of Gebim flee for safety. + +This very day he will halt at Nob. He shakes his hand at the mountain of the daughter of Zion, the hill of Jerusalem. + +

+

Behold, the Lord, Yahweh of Armies, will lop the boughs with terror. The tall will be cut down, and the lofty will be brought low. + +He will cut down the thickets of the forest with iron, and Lebanon will fall by the Mighty One. + +

+ + +A shoot will come out of the stock of Jesse, + +and a branch out of his roots will bear fruit. + + +Yahweh’s Spirit will rest on him: + +the spirit of wisdom and understanding, + +the spirit of counsel and might, + +the spirit of knowledge and of the fear of Yahweh. + + +His delight will be in the fear of Yahweh. + +He will not judge by the sight of his eyes, + +neither decide by the hearing of his ears; + + +but he will judge the poor with righteousness, + +and decide with equity for the humble of the earth. + +He will strike the earth with the rod of his mouth; + +and with the breath of his lips he will kill the wicked. + + +Righteousness will be the belt around his waist, + +and faithfulness the belt around his waist. + + + +The wolf will live with the lamb, + +and the leopard will lie down with the young goat, + +the calf, the young lion, and the fattened calf together; + +and a little child will lead them. + + +The cow and the bear will graze. + +Their young ones will lie down together. + +The lion will eat straw like the ox. + + +The nursing child will play near a cobra’s hole, + +and the weaned child will put his hand on the viper’s den. + + +They will not hurt nor destroy in all my holy mountain; + +for the earth will be full of the knowledge of Yahweh, + +as the waters cover the sea. + + + +

It will happen in that day that the nations will seek the root of Jesse, who stands as a banner of the peoples; and his resting place will be glorious. + +

+

It will happen in that day that the Lord will set his hand again the second time to recover the remnant that is left of his people from Assyria, from Egypt, from Pathros, from Cush, from Elam, from Shinar, from Hamath, and from the islands of the sea. + +He will set up a banner for the nations, and will assemble the outcasts of Israel, and gather together the dispersed of Judah from the four corners of the earth. + +The envy also of Ephraim will depart, and those who persecute Judah will be cut off. Ephraim won’t envy Judah, and Judah won’t persecute Ephraim. + +They will fly down on the shoulders of the Philistines on the west. Together they will plunder the children of the east. They will extend their power over Edom and Moab, and the children of Ammon will obey them. + +Yahweh will utterly destroy the tongue of the Egyptian sea; and with his scorching wind he will wave his hand over the River, and will split it into seven streams, and cause men to march over in sandals. + +There will be a highway for the remnant that is left of his people from Assyria, like there was for Israel in the day that he came up out of the land of Egypt. + +

+ + +

In that day you will say, “I will give thanks to you, Yahweh; for though you were angry with me, your anger has turned away and you comfort me. + +Behold, God is my salvation. I will trust, and will not be afraid; for Yah, Yahweh, is my strength and song; and he has become my salvation.” + +Therefore with joy you will draw water out of the wells of salvation. + +In that day you will say, “Give thanks to Yahweh! Call on his name! Declare his doings among the peoples! Proclaim that his name is exalted! + +Sing to Yahweh, for he has done excellent things! Let this be known in all the earth! + +Cry aloud and shout, you inhabitant of Zion, for the Holy One of Israel is great among you!” + +

+ + +

The burden of Babylon, which Isaiah the son of Amoz saw. + +

+

Set up a banner on the bare mountain! Lift up your voice to them! Wave your hand, that they may go into the gates of the nobles. + +I have commanded my consecrated ones; yes, I have called my mighty men for my anger, even my proudly exulting ones. + +The noise of a multitude is in the mountains, as of a great people; the noise of an uproar of the kingdoms of the nations gathered together! Yahweh of Armies is mustering the army for the battle. + +They come from a far country, from the uttermost part of heaven, even Yahweh, and the weapons of his indignation, to destroy the whole land. + +

+

Wail, for Yahweh’s day is at hand! It will come as destruction from the Almighty. + +Therefore all hands will be feeble, and everyone’s heart will melt. + +They will be dismayed. Pangs and sorrows will seize them. They will be in pain like a woman in labor. They will look in amazement one at another. Their faces will be faces of flame. + +Behold, the day of Yahweh comes, cruel, with wrath and fierce anger; to make the land a desolation, and to destroy its sinners out of it. + +For the stars of the sky and its constellations will not give their light. The sun will be darkened in its going out, and the moon will not cause its light to shine. + +I will punish the world for their evil, and the wicked for their iniquity. I will cause the arrogance of the proud to cease, and will humble the arrogance of the terrible. + +I will make people more rare than fine gold, even a person than the pure gold of Ophir. + +Therefore I will make the heavens tremble, and the earth will be shaken out of its place in Yahweh of Armieswrath, and in the day of his fierce anger. + +It will happen that like a hunted gazelle and like sheep that no one gathers, they will each turn to their own people, and will each flee to their own land. + +Everyone who is found will be thrust through. Everyone who is captured will fall by the sword. + +Their infants also will be dashed in pieces before their eyes. Their houses will be ransacked, and their wives raped. + +

+

Behold, I will stir up the Medes against them, who will not value silver, and as for gold, they will not delight in it. + +Their bows will dash the young men in pieces; and they shall have no pity on the fruit of the womb. Their eyes will not spare children. + +Babylon, the glory of kingdoms, the beauty of the Chaldeanspride, will be like when God overthrew Sodom and Gomorrah. + +It will never be inhabited, neither will it be lived in from generation to generation. The Arabian will not pitch a tent there, neither will shepherds make their flocks lie down there. + +But wild animals of the desert will lie there, and their houses will be full of jackals. Ostriches will dwell there, and wild goats will frolic there. + +Hyenas will cry in their fortresses, and jackals in the pleasant palaces. Her time is near to come, and her days will not be prolonged. + +

+ + +

For Yahweh will have compassion on Jacob, and will yet choose Israel, and set them in their own land. The foreigner will join himself with them, and they will unite with the house of Jacob. + +The peoples will take them, and bring them to their place. The house of Israel will possess them in Yahweh’s land for servants and for handmaids. They will take as captives those whose captives they were; and they shall rule over their oppressors. + +

+

It will happen in the day that Yahweh will give you rest from your sorrow, from your trouble, and from the hard service in which you were made to serve, + +that you will take up this parable against the king of Babylon, and say, “How the oppressor has ceased! The golden city has ceased!” + +Yahweh has broken the staff of the wicked, the scepter of the rulers, + +who struck the peoples in wrath with a continual stroke, who ruled the nations in anger, with a persecution that no one restrained. + +The whole earth is at rest, and is quiet. They break out in song. + +Yes, the cypress trees rejoice with you, with the cedars of Lebanon, saying, “Since you are humbled, no lumberjack has come up against us.” + +Sheol14:9 +Sheol is the place of the dead. from beneath has moved for you to meet you at your coming. It stirs up the departed spirits for you, even all the rulers of the earth. It has raised up from their thrones all the kings of the nations. + +They all will answer and ask you, “Have you also become as weak as we are? Have you become like us?” + +Your pomp is brought down to Sheol,14:11 +Sheol is the place of the dead. + with the sound of your stringed instruments. Maggots are spread out under you, and worms cover you. + +

+

How you have fallen from heaven, shining one, son of the dawn! How you are cut down to the ground, who laid the nations low! + +You said in your heart, “I will ascend into heaven! I will exalt my throne above the stars of God! I will sit on the mountain of assembly, in the far north! + +I will ascend above the heights of the clouds! I will make myself like the Most High!” + +Yet you shall be brought down to Sheol,14:15 +Sheol is the place of the dead. to the depths of the pit. + +Those who see you will stare at you. They will ponder you, saying, “Is this the man who made the earth to tremble, who shook kingdoms, + +who made the world like a wilderness, and overthrew its cities, who didn’t release his prisoners to their home?” + +

+

All the kings of the nations sleep in glory, everyone in his own house. + +But you are cast away from your tomb like an abominable branch, clothed with the slain who are thrust through with the sword, who go down to the stones of the pit; like a dead body trodden under foot. + +You will not join them in burial, because you have destroyed your land. You have killed your people. The offspring of evildoers will not be named forever. + +

+

Prepare for slaughter of his children because of the iniquity of their fathers, that they not rise up and possess the earth, and fill the surface of the world with cities. + +I will rise up against them,” says Yahweh of Armies, “and cut off from Babylon name and remnant, and son and son’s son,” says Yahweh. + +I will also make it a possession for the porcupine, and pools of water. I will sweep it with the broom of destruction,” says Yahweh of Armies. + +

+

Yahweh of Armies has sworn, saying, “Surely, as I have thought, so shall it happen; and as I have purposed, so shall it stand: + +that I will break the Assyrian in my land, and tread him under foot on my mountains. Then his yoke will leave them, and his burden leave their shoulders. + +This is the plan that is determined for the whole earth. This is the hand that is stretched out over all the nations. + +For Yahweh of Armies has planned, and who can stop it? His hand is stretched out, and who can turn it back?” + +

+

This burden was in the year that King Ahaz died. + +

+

Don’t rejoice, O Philistia, all of you, because the rod that struck you is broken; for out of the serpent’s root an adder will emerge, and his fruit will be a fiery flying serpent. + +The firstborn of the poor will eat, and the needy will lie down in safety; and I will kill your root with famine, and your remnant will be killed. + +

+

Howl, gate! Cry, city! You are melted away, Philistia, all of you; for smoke comes out of the north, and there is no straggler in his ranks. + +

+

What will they answer the messengers of the nation? That Yahweh has founded Zion, and in her the afflicted of his people will take refuge. + +

+ + +

The burden of Moab. +

+

For in a night, Ar of Moab is laid waste, and brought to nothing. For in a night Kir of Moab is laid waste, and brought to nothing. + +They have gone up to Bayith, and to Dibon, to the high places, to weep. Moab wails over Nebo and over Medeba. Baldness is on all of their heads. Every beard is cut off. + +In their streets, they clothe themselves in sackcloth. In their streets and on their housetops, everyone wails, weeping abundantly. + +Heshbon cries out with Elealeh. Their voice is heard even to Jahaz. Therefore the armed men of Moab cry aloud. Their souls tremble within them. + +My heart cries out for Moab! Her nobles flee to Zoar, to Eglath Shelishiyah; for they go up by the ascent of Luhith with weeping; for on the way to Horonaim, they raise up a cry of destruction. + +For the waters of Nimrim will be desolate; for the grass has withered away, the tender grass fails, there is no green thing. + +Therefore they will carry away the abundance they have gotten, and that which they have stored up, over the brook of the willows. + +For the cry has gone around the borders of Moab, its wailing to Eglaim, and its wailing to Beer Elim. + +For the waters of Dimon are full of blood; for I will bring yet more on Dimon, a lion on those of Moab who escape, and on the remnant of the land. + +

+ + +

Send the lambs for the ruler of the land from Selah to the wilderness, to the mountain of the daughter of Zion. + +For it will be that as wandering birds, as a scattered nest, so will the daughters of Moab be at the fords of the Arnon. + +Give counsel! Execute justice! Make your shade like the night in the middle of the noonday! Hide the outcasts! Don’t betray the fugitive! + +Let my outcasts dwell with you! As for Moab, be a hiding place for him from the face of the destroyer. For the extortionist is brought to nothing. Destruction ceases. The oppressors are consumed out of the land. + +A throne will be established in loving kindness. One will sit on it in truth, in the tent of David, judging, seeking justice, and swift to do righteousness. + +

+

We have heard of the pride of Moab, that he is very proud; even of his arrogance, his pride, and his wrath. His boastings are nothing. + +Therefore Moab will wail for Moab. Everyone will wail. You will mourn for the raisin cakes of Kir Hareseth, utterly stricken. + +For the fields of Heshbon languish with the vine of Sibmah. The lords of the nations have broken down its choice branches, which reached even to Jazer, which wandered into the wilderness. Its shoots were spread abroad. They passed over the sea. + +Therefore I will weep with the weeping of Jazer for the vine of Sibmah. I will water you with my tears, Heshbon, and Elealeh: for on your summer fruits and on your harvest the battle shout has fallen. + +Gladness is taken away, and joy out of the fruitful field; and in the vineyards there will be no singing, neither joyful noise. Nobody will tread out wine in the presses. I have made the shouting stop. + +Therefore my heart sounds like a harp for Moab, and my inward parts for Kir Heres. + +It will happen that when Moab presents himself, when he wearies himself on the high place, and comes to his sanctuary to pray, that he will not prevail. + +

+

This is the word that Yahweh spoke concerning Moab in time past. + +But now Yahweh has spoken, saying, “Within three years, as a worker bound by contract would count them, the glory of Moab shall be brought into contempt, with all his great multitude; and the remnant will be very small and feeble.” + +

+ + +

The burden of Damascus. +

+

Behold, Damascus is taken away from being a city, and it will be a ruinous heap. + +The cities of Aroer are forsaken. They will be for flocks, which shall lie down, and no one shall make them afraid. + +The fortress shall cease from Ephraim, and the kingdom from Damascus, and the remnant of Syria. They will be as the glory of the children of Israel,” says Yahweh of Armies. + +

+

It will happen in that day that the glory of Jacob will be made thin, and the fatness of his flesh will become lean. + +It will be like when the harvester gathers the wheat, and his arm reaps the grain. Yes, it will be like when one gleans grain in the valley of Rephaim. + +Yet gleanings will be left there, like the shaking of an olive tree, two or three olives in the top of the uppermost bough, four or five in the outermost branches of a fruitful tree,” says Yahweh, the God of Israel. + +In that day, people will look to their Maker, and their eyes will have respect for the Holy One of Israel. + +They will not look to the altars, the work of their hands; neither shall they respect that which their fingers have made, either the Asherah poles or the incense altars. + +In that day, their strong cities will be like the forsaken places in the woods and on the mountain top, which were forsaken from before the children of Israel; and it will be a desolation. + +For you have forgotten the God of your salvation, and have not remembered the rock of your strength. Therefore you plant pleasant plants, and set out foreign seedlings. + +In the day of your planting, you hedge it in. In the morning, you make your seed blossom, but the harvest flees away in the day of grief and of desperate sorrow. + +

+

Ah, the uproar of many peoples who roar like the roaring of the seas; and the rushing of nations that rush like the rushing of mighty waters! + +The nations will rush like the rushing of many waters, but he will rebuke them, and they will flee far off, and will be chased like the chaff of the mountains before the wind, and like the whirling dust before the storm. + +At evening, behold, terror! Before the morning, they are no more. This is the portion of those who plunder us, and the lot of those who rob us. + +

+ + +

Ah, the land of the rustling of wings, which is beyond the rivers of Ethiopia; + +that sends ambassadors by the sea, even in vessels of papyrus on the waters, saying, “Go, you swift messengers, to a nation tall and smooth, to a people awesome from their beginning onward, a nation that measures out and treads down, whose land the rivers divide!” + +All you inhabitants of the world, and you dwellers on the earth, when a banner is lifted up on the mountains, look! When the trumpet is blown, listen! + +

+

For Yahweh said to me, “I will be still, and I will see in my dwelling place, like clear heat in sunshine, like a cloud of dew in the heat of harvest.” + +For before the harvest, when the blossom is over, and the flower becomes a ripening grape, he will cut off the sprigs with pruning hooks, and he will cut down and take away the spreading branches. + +They will be left together for the ravenous birds of the mountains, and for the animals of the earth. The ravenous birds will eat them in the summer, and all the animals of the earth will eat them in the winter. + +In that time, a present will be brought to Yahweh of Armies from a people tall and smooth, even from a people awesome from their beginning onward, a nation that measures out and treads down, whose land the rivers divide, to the place of the name of Yahweh of Armies, Mount Zion. + +

+ + +

The burden of Egypt. +

+

Behold, Yahweh rides on a swift cloud, and comes to Egypt. The idols of Egypt will tremble at his presence; and the heart of Egypt will melt within it. + +I will stir up the Egyptians against the Egyptians, and they will fight everyone against his brother, and everyone against his neighbor; city against city, and kingdom against kingdom. + +The spirit of the Egyptians will fail within them. I will destroy their counsel. They will seek the idols, the charmers, those who have familiar spirits, and the wizards. + +I will give over the Egyptians into the hand of a cruel lord. A fierce king will rule over them,” says the Lord, Yahweh of Armies. + +

+

The waters will fail from the sea, and the river will be wasted and become dry. + +The rivers will become foul. The streams of Egypt will be diminished and dried up. The reeds and flags will wither away. + +The meadows by the Nile, by the brink of the Nile, and all the sown fields of the Nile, will become dry, be driven away, and be no more. + +The fishermen will lament, and all those who fish in the Nile will mourn, and those who spread nets on the waters will languish. + +Moreover those who work in combed flax, and those who weave white cloth, will be confounded. + +The pillars will be broken in pieces. All those who work for hire will be grieved in soul. + +

+

The princes of Zoan are utterly foolish. The counsel of the wisest counselors of Pharaoh has become stupid. How do you say to Pharaoh, “I am the son of the wise, the son of ancient kings”? + +Where then are your wise men? Let them tell you now; and let them know what Yahweh of Armies has purposed concerning Egypt. + +The princes of Zoan have become fools. The princes of Memphis are deceived. They have caused Egypt to go astray, those who are the cornerstone of her tribes. + +Yahweh has mixed a spirit of perverseness in the middle of her; and they have caused Egypt to go astray in all of its works, like a drunken man staggers in his vomit. + +Neither shall there be any work for Egypt, which head or tail, palm branch or rush, may do. + +In that day the Egyptians will be like women. They will tremble and fear because of the shaking of Yahweh of Armies’s hand, which he shakes over them. + +The land of Judah will become a terror to Egypt. Everyone to whom mention is made of it will be afraid, because of the plans of Yahweh of Armies, which he determines against it. + +In that day, there will be five cities in the land of Egypt that speak the language of Canaan, and swear to Yahweh of Armies. One will be called “The city of destruction.” + +

+

In that day, there will be an altar to Yahweh in the middle of the land of Egypt, and a pillar to Yahweh at its border. + +It will be for a sign and for a witness to Yahweh of Armies in the land of Egypt; for they will cry to Yahweh because of oppressors, and he will send them a savior and a defender, and he will deliver them. + +Yahweh will be known to Egypt, and the Egyptians will know Yahweh in that day. Yes, they will worship with sacrifice and offering, and will vow a vow to Yahweh, and will perform it. + +Yahweh will strike Egypt, striking and healing. They will return to Yahweh, and he will be entreated by them, and will heal them. + +

+

In that day there will be a highway out of Egypt to Assyria, and the Assyrian shall come into Egypt, and the Egyptian into Assyria; and the Egyptians will worship with the Assyrians. + +

+

In that day, Israel will be the third with Egypt and with Assyria, a blessing within the earth; + +because Yahweh of Armies has blessed them, saying, “Blessed be Egypt my people, Assyria the work of my hands, and Israel my inheritance.” + +

+ + +

In the year that Tartan came to Ashdod, when Sargon the king of Assyria sent him, and he fought against Ashdod and took it; + +at that time Yahweh spoke by Isaiah the son of Amoz, saying, “Go, and loosen the sackcloth from off your waist, and take your sandals from off your feet.” He did so, walking naked and barefoot. + +Yahweh said, “As my servant Isaiah has walked naked and barefoot three years for a sign and a wonder concerning Egypt and concerning Ethiopia, + +so the king of Assyria will lead away the captives of Egypt and the exiles of Ethiopia, young and old, naked and barefoot, and with buttocks uncovered, to the shame of Egypt. + +They will be dismayed and confounded, because of Ethiopia their expectation, and of Egypt their glory. + +The inhabitants of this coast land will say in that day, ‘Behold, this is our expectation, where we fled for help to be delivered from the king of Assyria. And we, how will we escape?’” + +

+ + +

The burden of the wilderness of the sea. +

+

As whirlwinds in the South sweep through, it comes from the wilderness, from an awesome land. + +A grievous vision is declared to me. The treacherous man deals treacherously, and the destroyer destroys. Go up, Elam; attack! I have stopped all of Media’s sighing. + +Therefore my thighs are filled with anguish. Pains have seized me, like the pains of a woman in labor. I am in so much pain that I can’t hear. I am so dismayed that I can’t see. + +My heart flutters. Horror has frightened me. The twilight that I desired has been turned into trembling for me. + +They prepare the table. They set the watch. They eat. They drink. Rise up, you princes, oil the shield! + +For the Lord said to me, “Go, set a watchman. Let him declare what he sees. + +When he sees a troop, horsemen in pairs, a troop of donkeys, a troop of camels, he shall listen diligently with great attentiveness.” + +He cried like a lion: “Lord, I stand continually on the watchtower in the daytime, and every night I stay at my post. + +Behold, here comes a troop of men, horsemen in pairs.” He answered, “Fallen, fallen is Babylon; and all the engraved images of her gods are broken to the ground. + +

+

You are my threshing, and the grain of my floor!” That which I have heard from Yahweh of Armies, the God of Israel, I have declared to you. + +

+

The burden of Dumah. +

+

One calls to me out of Seir, “Watchman, what of the night? Watchman, what of the night?” + +The watchman said, “The morning comes, and also the night. If you will inquire, inquire. Come back again.” + +

+

The burden on Arabia. +

+

You will lodge in the thickets in Arabia, you caravans of Dedanites. + +They brought water to him who was thirsty. The inhabitants of the land of Tema met the fugitives with their bread. + +For they fled away from the swords, from the drawn sword, from the bent bow, and from the heat of battle. + +For the Lord said to me, “Within a year, as a worker bound by contract would count it, all the glory of Kedar will fail, + +and the residue of the number of the archers, the mighty men of the children of Kedar, will be few; for Yahweh, the God of Israel, has spoken it.” + +

+ + +

The burden of the valley of vision. +

+

What ails you now, that you have all gone up to the housetops? + +You that are full of shouting, a tumultuous city, a joyous town, your slain are not slain with the sword, neither are they dead in battle. + +All your rulers fled away together. They were bound by the archers. All who were found by you were bound together. They fled far away. + +Therefore I said, “Look away from me. I will weep bitterly. Don’t labor to comfort me for the destruction of the daughter of my people. + +

+

For it is a day of confusion, and of treading down, and of perplexity from the Lord, Yahweh of Armies, in the valley of vision, a breaking down of the walls, and a crying to the mountains.” + +Elam carried his quiver, with chariots of men and horsemen; and Kir uncovered the shield. + +Your choicest valleys were full of chariots, and the horsemen set themselves in array at the gate. + +He took away the covering of Judah; and you looked in that day to the armor in the house of the forest. + +You saw the breaches of David’s city, that they were many; and you gathered together the waters of the lower pool. + +You counted the houses of Jerusalem, and you broke down the houses to fortify the wall. + +You also made a reservoir between the two walls for the water of the old pool. But you didn’t look to him who had done this, neither did you have respect for him who planned it long ago. + +

+

In that day, the Lord, Yahweh of Armies, called to weeping, to mourning, to baldness, and to dressing in sackcloth; + +and behold, there is joy and gladness, killing cattle and killing sheep, eating meat and drinking wine: “Let’s eat and drink, for tomorrow we will die.” + +Yahweh of Armies revealed himself in my ears, “Surely this iniquity will not be forgiven you until you die,” says the Lord, Yahweh of Armies. + +

+

The Lord, Yahweh of Armies says, “Go, get yourself to this treasurer, even to Shebna, who is over the house, and say, + +What are you doing here? Who has you here, that you have dug out a tomb here?’ Cutting himself out a tomb on high, chiseling a habitation for himself in the rock!” + +Behold, Yahweh will overcome you and hurl you away violently. Yes, he will grasp you firmly. + +He will surely wind you around and around, and throw you like a ball into a large country. There you will die, and there the chariots of your glory will be, you disgrace of your lord’s house. + +I will thrust you from your office. You will be pulled down from your station. + +

+

It will happen in that day that I will call my servant Eliakim the son of Hilkiah, + +and I will clothe him with your robe, and strengthen him with your belt. I will commit your government into his hand; and he will be a father to the inhabitants of Jerusalem, and to the house of Judah. + +I will lay the key of David’s house on his shoulder. He will open, and no one will shut. He will shut, and no one will open. + +I will fasten him like a nail in a sure place. He will be for a throne of glory to his father’s house. + +They will hang on him all the glory of his father’s house, the offspring and the issue, every small vessel, from the cups even to all the pitchers. + +In that day,” says Yahweh of Armies, “the nail that was fastened in a sure place will give way. It will be cut down and fall. The burden that was on it will be cut off, for Yahweh has spoken it.” + +

+ + +

The burden of Tyre. +

+

Howl, you ships of Tarshish! For it is laid waste, so that there is no house, no entering in. From the land of Kittim it is revealed to them. + +Be still, you inhabitants of the coast, you whom the merchants of Sidon that pass over the sea have replenished. + +On great waters, the seed of the Shihor, the harvest of the Nile, was her revenue. She was the market of nations. + +Be ashamed, Sidon; for the sea has spoken, the stronghold of the sea, saying, “I have not travailed, nor given birth, neither have I nourished young men, nor brought up virgins.” + +When the report comes to Egypt, they will be in anguish at the report of Tyre. + +Pass over to Tarshish! Wail, you inhabitants of the coast! + +Is this your joyous city, whose antiquity is of ancient days, whose feet carried her far away to travel? + +

+

Who has planned this against Tyre, the giver of crowns, whose merchants are princes, whose traders are the honorable of the earth? + +Yahweh of Armies has planned it, to stain the pride of all glory, to bring into contempt all the honorable of the earth. + +Pass through your land like the Nile, daughter of Tarshish. There is no restraint any more. + +He has stretched out his hand over the sea. He has shaken the kingdoms. Yahweh has ordered the destruction of Canaan’s strongholds. + +He said, “You shall rejoice no more, you oppressed virgin daughter of Sidon. Arise, pass over to Kittim. Even there you will have no rest.” + +

+

Behold, the land of the Chaldeans. This people didn’t exist. The Assyrians founded it for those who dwell in the wilderness. They set up their towers. They overthrew its palaces. They made it a ruin. + +Howl, you ships of Tarshish, for your stronghold is laid waste! + +It will come to pass in that day that Tyre will be forgotten seventy years, according to the days of one king. After the end of seventy years it will be to Tyre like in the song of the prostitute. + +Take a harp; go about the city, you prostitute that has been forgotten. Make sweet melody. Sing many songs, that you may be remembered. + +It will happen after the end of seventy years that Yahweh will visit Tyre. She will return to her wages, and will play the prostitute with all the kingdoms of the world on the surface of the earth. + +Her merchandise and her wages will be holiness to Yahweh. It will not be treasured nor laid up; for her merchandise will be for those who dwell before Yahweh, to eat sufficiently, and for durable clothing. + +

+ + +

Behold, Yahweh makes the earth empty, makes it waste, turns it upside down, and scatters its inhabitants. + +It will 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 creditor, so with the debtor; as with the taker of interest, so with the giver of interest. + +The earth will be utterly emptied and utterly laid waste; for Yahweh has spoken this word. + +The earth mourns and fades away. The world languishes and fades away. The lofty people of the earth languish. + +The earth also is polluted under its inhabitants, because they have transgressed the laws, violated the statutes, and broken the everlasting covenant. + +Therefore the curse has devoured the earth, and those who dwell therein are found guilty. Therefore the inhabitants of the earth are burned, and few men are left. + +The new wine mourns. The vine languishes. All the merry-hearted sigh. + +The mirth of tambourines ceases. The sound of those who rejoice ends. The joy of the harp ceases. + +They will not drink wine with a song. Strong drink will be bitter to those who drink it. + +The confused city is broken down. Every house is shut up, that no man may come in. + +There is a crying in the streets because of the wine. All joy is darkened. The mirth of the land is gone. + +The city is left in desolation, and the gate is struck with destruction. + +For it will be so within the earth among the peoples, as the shaking of an olive tree, as the gleanings when the vintage is done. + +

+

These shall lift up their voice. They will shout for the majesty of Yahweh. They cry aloud from the sea. + +Therefore glorify Yahweh in the east, even the name of Yahweh, the God of Israel, in the islands of the sea! + +From the uttermost part of the earth have we heard songs. Glory to the righteous! +

+

But I said, “I pine away! I pine away! woe is me!” The treacherous have dealt treacherously. Yes, the treacherous have dealt very treacherously. + +Fear, the pit, and the snare are on you who inhabit the earth. + +It will happen that he who flees from the noise of the fear will fall into the pit; and he who comes up out of the middle of the pit will be taken in the snare; for the windows on high are opened, and the foundations of the earth tremble. + +The earth is utterly broken. The earth is torn apart. The earth is shaken violently. + +The earth will stagger like a drunken man, and will sway back and forth like a hammock. Its disobedience will be heavy on it, and it will fall and not rise again. + +

+

It will happen in that day that Yahweh will punish the army of the high ones on high, and the kings of the earth on the earth. + +They will be gathered together, as prisoners are gathered in the pit, and will be shut up in the prison; and after many days they will be visited. + +Then the moon will be confounded, and the sun ashamed; for Yahweh of Armies will reign on Mount Zion and in Jerusalem; and glory will be before his elders. + +

+ + +

Yahweh, you are my God. I will exalt you! I will praise your name, for you have done wonderful things, things planned long ago, in complete faithfulness and truth. + +For you have made a city into a heap, a fortified city into a ruin, a palace of strangers to be no city. It will never be built. + +Therefore a strong people will glorify you. A city of awesome nations will fear you. + +For you have been a stronghold to the poor, a stronghold to the needy in his distress, a refuge from the storm, a shade from the heat, when the blast of the dreaded ones is like a storm against the wall. + +As the heat in a dry place you will bring down the noise of strangers; as the heat by the shade of a cloud, the song of the dreaded ones will be brought low. + +

+

In this mountain, Yahweh of Armies will make all peoples a feast of choice meat,25:6 +literally, fat things a feast of choice wines, of choice meat full of marrow, of well refined choice wines. + +He will destroy in this mountain the surface of the covering that covers all peoples, and the veil that is spread over all nations. + +He has swallowed up death forever! The Lord Yahweh will wipe away tears from off all faces. He will take the reproach of his people away from off all the earth, for Yahweh has spoken it. + +

+

It shall be said in that day, “Behold, this is our God! We have waited for him, and he will save us! This is Yahweh! We have waited for him. We will be glad and rejoice in his salvation!” + +For Yahweh’s hand will rest in this mountain. +

+

Moab will be trodden down in his place, even like straw is trodden down in the water of the dunghill. + +He will spread out his hands in the middle of it, like one who swims spreads out hands to swim, but his pride will be humbled together with the craft of his hands. + +He has brought the high fortress of your walls down, laid low, and brought to the ground, even to the dust. + +

+ + +

In that day, this song will be sung in the land of Judah: +

+We have a strong city. + +God appoints salvation for walls and bulwarks. + + +Open the gates, that the righteous nation may enter: + +the one which keeps faith. + + +You will keep whoever’s mind is steadfast in perfect peace, + +because he trusts in you. + + +Trust in Yahweh forever; + +for in Yah, Yahweh, is an everlasting Rock. + + +For he has brought down those who dwell on high, the lofty city. + +He lays it low. + +He lays it low even to the ground. + +He brings it even to the dust. + + +The foot shall tread it down, + +even the feet of the poor + +and the steps of the needy.” + + +The way of the just is uprightness. + +You who are upright make the path of the righteous level. + + + +Yes, in the way of your judgments, Yahweh, we have waited for you. + +Your name and your renown are the desire of our soul. + + +With my soul I have desired you in the night. + +Yes, with my spirit within me I will seek you earnestly; + +for when your judgments are on the earth, the inhabitants of the world learn righteousness. + + +Let favor be shown to the wicked, + +yet he will not learn righteousness. + +In the land of uprightness he will deal wrongfully, + +and will not see Yahweh’s majesty. + + + +Yahweh, your hand is lifted up, yet they don’t see; + +but they will see your zeal for the people and be disappointed. + +Yes, fire will consume your adversaries. + + +Yahweh, you will ordain peace for us, + +for you have also done all our work for us. + + +Yahweh our God, other lords besides you have had dominion over us, + +but we will only acknowledge your name. + + +The dead shall not live. + +The departed spirits shall not rise. + +Therefore you have visited and destroyed them, + +and caused all memory of them to perish. + + +You have increased the nation, O Yahweh. + +You have increased the nation! + +You are glorified! + +You have enlarged all the borders of the land. + + + +Yahweh, in trouble they have visited you. + +They poured out a prayer when your chastening was on them. + + +Just as a woman with child, who draws near the time of her delivery, + +is in pain and cries out in her pangs, + +so we have been before you, Yahweh. + + +We have been with child. + +We have been in pain. + +We gave birth, it seems, only to wind. + +We have not worked any deliverance on the earth; + +neither have the inhabitants of the world fallen. + + +Your dead shall live. + +Their dead bodies shall arise. + +Awake and sing, you who dwell in the dust; + +for your dew is like the dew of herbs, + +and the earth will cast out the departed spirits. + + + +Come, my people, enter into your rooms, + +and shut your doors behind you. + +Hide yourself for a little moment, + +until the indignation is past. + + +For, behold, Yahweh comes out of his place to punish the inhabitants of the earth for their iniquity. + +The earth also will disclose her blood, and will no longer cover her slain. + + + + +

In that day, Yahweh with his hard and great and strong sword will punish leviathan, the fleeing serpent, and leviathan, the twisted serpent; and he will kill the dragon that is in the sea. + +

+

In that day, sing to her, “A pleasant vineyard! + +I, Yahweh, am its keeper. I will water it every moment. Lest anyone damage it, I will keep it night and day. + +Wrath is not in me, but if I should find briers and thorns, I would do battle! I would march on them and I would burn them together. + +Or else let him take hold of my strength, that he may make peace with me. Let him make peace with me.” + +

+

In days to come, Jacob will take root. Israel will blossom and bud. They will fill the surface of the world with fruit. + +Has he struck them as he struck those who struck them? Or are they killed like those who killed them were killed? + +In measure, when you send them away, you contend with them. He has removed them with his rough blast in the day of the east wind. + +Therefore by this the iniquity of Jacob will be forgiven, and this is all the fruit of taking away his sin: that he makes all the stones of the altar as chalk stones that are beaten in pieces, so that the Asherah poles and the incense altars shall rise no more. + +For the fortified city is solitary, a habitation deserted and forsaken, like the wilderness. The calf will feed there, and there he will lie down, and consume its branches. + +When its boughs are withered, they will be broken off. The women will come and set them on fire, for they are a people of no understanding. Therefore he who made them will not have compassion on them, and he who formed them will show them no favor. + +

+

It will happen in that day that Yahweh will thresh from the flowing stream of the Euphrates to the brook of Egypt; and you will be gathered one by one, children of Israel. + +

+

It will happen in that day that a great trumpet will be blown; and those who were ready to perish in the land of Assyria, and those who were outcasts in the land of Egypt, shall come; and they will worship Yahweh in the holy mountain at Jerusalem. + +

+ + +

Woe to the crown of pride of the drunkards of Ephraim, and to the fading flower of his glorious beauty, which is on the head of the fertile valley of those who are overcome with wine! + +Behold, the Lord has one who is mighty and strong. Like a storm of hail, a destroying storm, and like a storm of mighty waters overflowing, he will cast them down to the earth with his hand. + +The crown of pride of the drunkards of Ephraim will be trodden under foot. + +The fading flower of his glorious beauty, which is on the head of the fertile valley, shall be like the first-ripe fig before the summer, which someone picks and eats as soon as he sees it. + +In that day, Yahweh of Armies will become a crown of glory and a diadem of beauty to the residue of his people, + +and a spirit of justice to him who sits in judgment, and strength to those who turn back the battle at the gate. + +

+

They also reel with wine, and stagger with strong drink. The priest and the prophet reel with strong drink. They are swallowed up by wine. They stagger with strong drink. They err in vision. They stumble in judgment. + +For all tables are completely full of filthy vomit and filthiness. + +

+

Whom will he teach knowledge? To whom will he explain the message? Those who are weaned from the milk, and drawn from the breasts? + +For it is precept on precept, precept on precept; line on line, line on line; here a little, there a little. + +

+

But he will speak to this nation with stammering lips and in another language, + +to whom he said, “This is the resting place. Give rest to the weary,” andThis is the refreshing;” yet they would not hear. + +Therefore Yahweh’s word will be to them precept on precept, precept on precept; line on line, line on line; here a little, there a little; that they may go, fall backward, be broken, be snared, and be taken. + +

+

Therefore hear Yahweh’s word, you scoffers, that rule this people in Jerusalem: + +Because you have said, ‘We have made a covenant with death, and we are in agreement with Sheol.28:15 +Sheol is the place of the dead. When the overflowing scourge passes through, it won’t come to us; for we have made lies our refuge, and we have hidden ourselves under falsehood.’” + +Therefore the Lord Yahweh says, “Behold, I lay in Zion for a foundation a stone, a tried stone, a precious cornerstone of a sure foundation. He who believes shall not act hastily. + +I will make justice the measuring line, and righteousness the plumb line. The hail will sweep away the refuge of lies, and the waters will overflow the hiding place. + +Your covenant with death shall be annulled, and your agreement with Sheol28:18 +Sheol is the place of the dead. shall not stand. When the overflowing scourge passes through, then you will be trampled down by it. + +As often as it passes through, it will seize you; for morning by morning it will pass through, by day and by night; and it will be nothing but terror to understand the message.” + +For the bed is too short to stretch out on, and the blanket is too narrow to wrap oneself in. + +For Yahweh will rise up as on Mount Perazim. He will be angry as in the valley of Gibeon; that he may do his work, his unusual work, and bring to pass his act, his extraordinary act. + +Now therefore don’t be scoffers, lest your bonds be made strong; for I have heard a decree of destruction from the Lord, Yahweh of Armies, on the whole earth. + +

+

Give ear, and hear my voice! Listen, and hear my speech! + +Does he who plows to sow plow continually? Does he keep turning the soil and breaking the clods? + +When he has leveled its surface, doesn’t he plant the dill, and scatter the cumin seed, and put in the wheat in rows, the barley in the appointed place, and the spelt in its place? + +For his God instructs him in right judgment and teaches him. + +For the dill isn’t threshed with a sharp instrument, neither is a cart wheel turned over the cumin; but the dill is beaten out with a stick, and the cumin with a rod. + +Bread flour must be ground; so he will not always be threshing it. Although he drives the wheel of his threshing cart over it, his horses don’t grind it. + +This also comes out from Yahweh of Armies, who is wonderful in counsel, and excellent in wisdom. + +

+ + +

Woe to Ariel! Ariel, the city where David encamped! Add year to year; let the feasts come around; + +then I will distress Ariel, and there will be mourning and lamentation. She shall be to me as an altar hearth.29:2 +or, Ariel + +I will encamp against you all around you, and will lay siege against you with posted troops. I will raise siege works against you. + +You will be brought down, and will speak out of the ground. Your speech will mumble out of the dust. Your voice will be as of one who has a familiar spirit, out of the ground, and your speech will whisper out of the dust. + +

+

But the multitude of your foes will be like fine dust, and the multitude of the ruthless ones like chaff that blows away. Yes, it will be in an instant, suddenly. + +She will be visited by Yahweh of Armies with thunder, with earthquake, with great noise, with whirlwind and storm, and with the flame of a devouring fire. + +The multitude of all the nations that fight against Ariel, even all who fight against her and her stronghold, and who distress her, will be like a dream, a vision of the night. + +It will be like when a hungry man dreams, and behold, he eats; but he awakes, and his hunger isn’t satisfied; or like when a thirsty man dreams, and behold, he drinks; but he awakes, and behold, he is faint, and he is still thirsty. The multitude of all the nations that fight against Mount Zion will be like that. + +

+

Pause and wonder! Blind yourselves and be blind! They are drunken, but not with wine; they stagger, but not with strong drink. + +For Yahweh has poured out on you a spirit of deep sleep, and has closed your eyes, the prophets; and he has covered your heads, the seers. + +All vision has become to you like the words of a book that is sealed, which men deliver to one who is educated, saying, “Read this, please;” and he says, “I can’t, for it is sealed;” + +and the book is delivered to one who is not educated, saying, “Read this, please;” and he says, “I can’t read.” + +

+

The Lord said, “Because this people draws near with their mouth and honors me with their lips, but they have removed their heart far from me, and their fear of me is a commandment of men which has been taught; + +therefore, behold, I will proceed to do a marvelous work among this people, even a marvelous work and a wonder; and the wisdom of their wise men will perish, and the understanding of their prudent men will be hidden.” + +

+

Woe to those who deeply hide their counsel from Yahweh, and whose deeds are in the dark, and who say, “Who sees us?” andWho knows us?” + +You turn things upside down! Should the potter be thought to be like clay, that the thing made should say about him who made it, “He didn’t make me;” or the thing formed say of him who formed it, “He has no understanding”? + +

+

Isn’t it yet a very little while, and Lebanon will be turned into a fruitful field, and the fruitful field will be regarded as a forest? + +In that day, the deaf will hear the words of the book, and the eyes of the blind will see out of obscurity and out of darkness. + +The humble also will increase their joy in Yahweh, and the poor among men will rejoice in the Holy One of Israel. + +For the ruthless is brought to nothing, and the scoffer ceases, and all those who are alert to do evil are cut off— + +who cause a person to be indicted by a word, and lay a snare for one who reproves in the gate, and who deprive the innocent of justice with false testimony. + +

+

Therefore Yahweh, who redeemed Abraham, says concerning the house of Jacob: “Jacob shall no longer be ashamed, neither shall his face grow pale. + +But when he sees his children, the work of my hands, in the middle of him, they will sanctify my name. Yes, they will sanctify the Holy One of Jacob, and will stand in awe of the God of Israel. + +They also who err in spirit will come to understanding, and those who grumble will receive instruction.” + +

+ + +

Woe to the rebellious children”, says Yahweh, “who take counsel, but not from me; and who make an alliance, but not with my Spirit, that they may add sin to sin; + +who set out to go down into Egypt without asking for my advice, to strengthen themselves in the strength of Pharaoh, and to take refuge in the shadow of Egypt! + +Therefore the strength of Pharaoh will be your shame, and the refuge in the shadow of Egypt your confusion. + +For their princes are at Zoan, and their ambassadors have come to Hanes. + +They shall all be ashamed because of a people that can’t profit them, that are not a help nor profit, but a shame, and also a reproach.” + +

+

The burden of the animals of the South. +

+

Through the land of trouble and anguish, of the lioness and the lion, the viper and fiery flying serpent, they carry their riches on the shoulders of young donkeys, and their treasures on the humps of camels, to an unprofitable people. + +For Egypt helps in vain, and to no purpose; therefore I have called her Rahab who sits still. + +Now go, write it before them on a tablet, and inscribe it in a book, that it may be for the time to come forever and ever. + +For it is a rebellious people, lying children, children who will not hear Yahweh’s law; + +who tell the seers, “Don’t see!” and the prophets, “Don’t prophesy to us right things. Tell us pleasant things. Prophesy deceits. + +Get out of the way. Turn away from the path. Cause the Holy One of Israel to cease from before us.” + +Therefore the Holy One of Israel says, “Because you despise this word, and trust in oppression and perverseness, and rely on it, + +therefore this iniquity shall be to you like a breach ready to fall, swelling out in a high wall, whose breaking comes suddenly in an instant. + +He will break it as a potter’s vessel is broken, breaking it in pieces without sparing, so that there won’t be found among the broken pieces a piece good enough to take fire from the hearth, or to dip up water out of the cistern.” + +

+

For thus said the Lord Yahweh, the Holy One of Israel, “You will be saved in returning and rest. Your strength will be in quietness and in confidence.” You refused, + +but you said, “No, for we will flee on horses;” therefore you will flee; and, “We will ride on the swift;” therefore those who pursue you will be swift. + +One thousand will flee at the threat of one. At the threat of five, you will flee until you are left like a beacon on the top of a mountain, and like a banner on a hill. + +

+

Therefore Yahweh will wait, that he may be gracious to you; and therefore he will be exalted, that he may have mercy on you, for Yahweh is a God of justice. Blessed are all those who wait for him. + +For the people will dwell in Zion at Jerusalem. You will weep no more. He will surely be gracious to you at the voice of your cry. When he hears you, he will answer you. + +Though the Lord may give you the bread of adversity and the water of affliction, yet your teachers won’t be hidden any more, but your eyes will see your teachers; + +and when you turn to the right hand, and when you turn to the left, your ears will hear a voice behind you, saying, “This is the way. Walk in it.” + +You shall defile the overlaying of your engraved images of silver, and the plating of your molten images of gold. You shall cast them away as an unclean thing. You shall tell it, “Go away!” + +

+

He will give the rain for your seed, with which you will sow the ground; and bread of the increase of the ground will be rich and plentiful. In that day, your livestock will feed in large pastures. + +The oxen likewise and the young donkeys that till the ground will eat savory feed, which has been winnowed with the shovel and with the fork. + +There will be brooks and streams of water on every lofty mountain and on every high hill in the day of the great slaughter, when the towers fall. + +Moreover the light of the moon will be like the light of the sun, and the light of the sun will be seven times brighter, like the light of seven days, in the day that Yahweh binds up the fracture of his people, and heals the wound they were struck with. + +

+

Behold, Yahweh’s name comes from far away, burning with his anger, and in thick rising smoke. His lips are full of indignation. His tongue is as a devouring fire. + +His breath is as an overflowing stream that reaches even to the neck, to sift the nations with the sieve of destruction. A bridle that leads to ruin will be in the jaws of the peoples. + +You will have a song, as in the night when a holy feast is kept, and gladness of heart, as when one goes with a flute to come to Yahweh’s mountain, to Israel’s Rock. + +Yahweh will cause his glorious voice to be heard, and will show the descent of his arm, with the indignation of his anger and the flame of a devouring fire, with a blast, storm, and hailstones. + +For through Yahweh’s voice the Assyrian will be dismayed. He will strike him with his rod. + +Every stroke of the rod of punishment, which Yahweh will lay on him, will be with the sound of tambourines and harps. He will fight with them in battles, brandishing weapons. + +For his burning place has long been ready. Yes, it is prepared for the king. He has made its pyre deep and large with fire and much wood. Yahweh’s breath, like a stream of sulfur, kindles it. + +

+ + +Woe to those who go down to Egypt for help, + +and rely on horses, + +and trust in chariots because they are many, + +and in horsemen because they are very strong, + +but they don’t look to the Holy One of Israel, + +and they don’t seek Yahweh! + + +Yet he also is wise, and will bring disaster, + +and will not call back his words, but will arise against the house of the evildoers, + +and against the help of those who work iniquity. + + +Now the Egyptians are men, and not God; + +and their horses flesh, and not spirit. + +When Yahweh stretches out his hand, both he who helps shall stumble, + +and he who is helped shall fall, + +and they all shall be consumed together. + + + +For Yahweh says to me, + +As the lion and the young lion growling over his prey, + +if a multitude of shepherds is called together against him, + +will not be dismayed at their voice, + +nor abase himself for their noise, + +so Yahweh of Armies will come down to fight on Mount Zion and on its heights. + + +As birds hovering, so Yahweh of Armies will protect Jerusalem. + +He will protect and deliver it. + +He will pass over and preserve it.” + + +Return to him from whom you have deeply revolted, children of Israel. + +For in that day everyone shall cast away his idols of silver and his idols of goldsin which your own hands have made for you. + + +

The Assyrian will fall by the sword, not of man; +

+and the sword, not of mankind, shall devour him. + +He will flee from the sword, + +and his young men will become subject to forced labor. + + +His rock will pass away by reason of terror, + +and his princes will be afraid of the banner,” + +says Yahweh, whose fire is in Zion, + +and his furnace in Jerusalem. + + + + +Behold, a king shall reign in righteousness, + +and princes shall rule in justice. + + +A man shall be as a hiding place from the wind, + +and a covert from the storm, + +as streams of water in a dry place, + +as the shade of a large rock in a weary land. + + +The eyes of those who see will not be dim, + +and the ears of those who hear will listen. + + +The heart of the rash will understand knowledge, + +and the tongue of the stammerers will be ready to speak plainly. + + +The fool will no longer be called noble, + +nor the scoundrel be highly respected. + + +For the fool will speak folly, + +and his heart will work iniquity, + +to practice profanity, + +and to utter error against Yahweh, + +to make empty the soul of the hungry, + +and to cause the drink of the thirsty to fail. + + +The ways of the scoundrel are evil. + +He devises wicked plans to destroy the humble with lying words, + +even when the needy speaks right. + + +But the noble devises noble things, + +and he will continue in noble things. + + + +Rise up, you women who are at ease! Hear my voice! + +You careless daughters, give ear to my speech! + + +For days beyond a year you will be troubled, you careless women; + +for the vintage will fail. + +The harvest won’t come. + + +Tremble, you women who are at ease! + +Be troubled, you careless ones! + +Strip yourselves, make yourselves naked, + +and put sackcloth on your waist. + + +Beat your breasts for the pleasant fields, + +for the fruitful vine. + + +Thorns and briers will come up on my people’s land; + +yes, on all the houses of joy in the joyous city. + + +For the palace will be forsaken. + +The populous city will be deserted. + +The hill and the watchtower will be for dens forever, + +a delight for wild donkeys, + +a pasture of flocks, + + +until the Spirit is poured on us from on high, + +and the wilderness becomes a fruitful field, + +and the fruitful field is considered a forest. + + + +Then justice will dwell in the wilderness; + +and righteousness will remain in the fruitful field. + + +The work of righteousness will be peace, + +and the effect of righteousness, quietness and confidence forever. + + +My people will live in a peaceful habitation, + +in safe dwellings, + +and in quiet resting places, + + +though hail flattens the forest, + +and the city is leveled completely. + + +Blessed are you who sow beside all waters, + +who send out the feet of the ox and the donkey. + + + + +Woe to you who destroy, but you weren’t destroyed, + +and who betray, but nobody betrayed you! + +When you have finished destroying, you will be destroyed; + +and when you have finished betrayal, you will be betrayed. + + + +Yahweh, be gracious to us. We have waited for you. + +Be our strength every morning, + +our salvation also in the time of trouble. + + +At the noise of the thunder, the peoples have fled. + +When you lift yourself up, the nations are scattered. + + +Your plunder will be gathered as the caterpillar gathers. + +Men will leap on it as locusts leap. + + +Yahweh is exalted, for he dwells on high. + +He has filled Zion with justice and righteousness. + + +There will be stability in your times, abundance of salvation, wisdom, and knowledge. + +The fear of Yahweh is your treasure. + + + +Behold, their valiant ones cry outside; + +the ambassadors of peace weep bitterly. + + +The highways are desolate. + +The traveling man ceases. + +The covenant is broken. + +He has despised the cities. + +He doesn’t respect man. + + +The land mourns and languishes. + +Lebanon is confounded and withers away. + +Sharon is like a desert, and Bashan and Carmel are stripped bare. + + +Now I will arise,” says Yahweh. + +Now I will lift myself up. + +Now I will be exalted. + + +You will conceive chaff. + +You will give birth to stubble. + +Your breath is a fire that will devour you. + + +The peoples will be like the burning of lime, + +like thorns that are cut down and burned in the fire. + + + +Hear, you who are far off, what I have done; + +and, you who are near, acknowledge my might.” + + +The sinners in Zion are afraid. + +Trembling has seized the godless ones. + +Who among us can live with the devouring fire? + +Who among us can live with everlasting burning? + + +He who walks righteously + +and speaks blamelessly, + +he who despises the gain of oppressions, + +who gestures with his hands, refusing to take a bribe, + +who stops his ears from hearing of bloodshed, + +and shuts his eyes from looking at evil— + + +he will dwell on high. + +His place of defense will be the fortress of rocks. + +His bread will be supplied. + +His waters will be sure. + + + +Your eyes will see the king in his beauty. + +They will see a distant land. + + +Your heart will meditate on the terror. + +Where is he who counted? + +Where is he who weighed? + +Where is he who counted the towers? + + +You will no longer see the fierce people, + +a people of a deep speech that you can’t comprehend, + +with a strange language that you can’t understand. + + +Look at Zion, the city of our appointed festivals. + +Your eyes will see Jerusalem, a quiet habitation, + +a tent that won’t be removed. + +Its stakes will never be plucked up, + +nor will any of its cords be broken. + + +But there Yahweh will be with us in majesty, + +a place of wide rivers and streams, + +in which no galley with oars will go, + +neither will any gallant ship pass by there. + + +For Yahweh is our judge. + +Yahweh is our lawgiver. + +Yahweh is our king. + +He will save us. + + + +Your rigging is untied. + +They couldn’t strengthen the foot of their mast. + +They couldn’t spread the sail. + +Then the prey of a great plunder was divided. + +The lame took the prey. + + + +The inhabitant won’t say, “I am sick.” + +The people who dwell therein will be forgiven their iniquity. + + + + +Come near, you nations, to hear! + +Listen, you peoples. + +Let the earth and all it contains hear, + +the world, and everything that comes from it. + + +For Yahweh is enraged against all the nations, + +and angry with all their armies. + +He has utterly destroyed them. + +He has given them over for slaughter. + + +Their slain will also be cast out, + +and the stench of their dead bodies will come up. + +The mountains will melt in their blood. + + +All of the army of the sky will be dissolved. + +The sky will be rolled up like a scroll, + +and all its armies will fade away, + +as a leaf fades from off a vine or a fig tree. + + +For my sword has drunk its fill in the sky. + +Behold, it will come down on Edom, + +and on the people of my curse, for judgment. + + +Yahweh’s sword is filled with blood. + +It is covered with fat, with the blood of lambs and goats, + +with the fat of the kidneys of rams; + +for Yahweh has a sacrifice in Bozrah, + +and a great slaughter in the land of Edom. + + +The wild oxen will come down with them, + +and the young bulls with the mighty bulls; + +and their land will be drunken with blood, + +and their dust made greasy with fat. + + + +For Yahweh has a day of vengeance, + +a year of recompense for the cause of Zion. + + +Its streams will be turned into pitch, + +its dust into sulfur, + +and its land will become burning pitch. + + +It won’t be quenched night or day. + +Its smoke will go up forever. + +From generation to generation, it will lie waste. + +No one will pass through it forever and ever. + + +But the pelican and the porcupine will possess it. + +The owl and the raven will dwell in it. + +He will stretch the line of confusion over it, + +and the plumb line of emptiness. + + +They shall call its nobles to the kingdom, but none shall be there; + +and all its princes shall be nothing. + + +Thorns will come up in its palaces, + +nettles and thistles in its fortresses; + +and it will be a habitation of jackals, + +a court for ostriches. + + +The wild animals of the desert will meet with the wolves, + +and the wild goat will cry to his fellow. + +Yes, the night creature34:14 +literally, lilith, which could also be a night demon or night monster shall settle there, + +and shall find herself a place of rest. + + +The arrow snake will make her nest there, + +and lay, hatch, and gather under her shade. + +Yes, the kites will be gathered there, every one with her mate. + + + +Search in the book of Yahweh, and read: + +not one of these will be missing. + +None will lack her mate. + +For my mouth has commanded, + +and his Spirit has gathered them. + + +He has cast the lot for them, + +and his hand has divided it to them with a measuring line. + +They shall possess it forever. + +From generation to generation they will dwell in it. + + + + + +The wilderness and the dry land will be glad. + +The desert will rejoice and blossom like a rose. + + +It will blossom abundantly, + +and rejoice even with joy and singing. + +Lebanon’s glory will be given to it, + +the excellence of Carmel and Sharon. + +They will see Yahweh’s glory, + +the excellence of our God. + + + +Strengthen the weak hands, + +and make the feeble knees firm. + + +Tell those who have a fearful heart, “Be strong! + +Don’t be afraid! + +Behold, your God will come with vengeance, God’s retribution. + +He will come and save you. + + + +Then the eyes of the blind will be opened, + +and the ears of the deaf will be unstopped. + + +Then the lame man will leap like a deer, + +and the tongue of the mute will sing; + +for waters will break out in the wilderness, + +and streams in the desert. + + +The burning sand will become a pool, + +and the thirsty ground springs of water. + +Grass with reeds and rushes will be in the habitation of jackals, where they lay. + + +A highway will be there, a road, + +and it will be calledThe Holy Way”. + +The unclean shall not pass over it, + +but it will be for those who walk in the Way. + +Wicked fools shall not go there. + + +No lion will be there, + +nor will any ravenous animal go up on it. + +They will not be found there; + +but the redeemed will walk there. + + +Then Yahweh’s ransomed ones will return, + +and come with singing to Zion; + +and everlasting joy will be on their heads. + +They will obtain gladness and joy, + +and sorrow and sighing will flee away.” + + + + +

Now in the fourteenth year of King Hezekiah, Sennacherib king of Assyria attacked all of the fortified cities of Judah and captured them. + +The king of Assyria sent Rabshakeh from Lachish to Jerusalem to King Hezekiah with a large army. He stood by the aqueduct from the upper pool in the fuller’s field highway. + +Then Eliakim the son of Hilkiah, who was over the household, and Shebna the scribe, and Joah, the son of Asaph the recorder came out to him. + +

+

Rabshakeh said to them, “Now tell Hezekiah, ‘The great king, the king of Assyria, says, “What confidence is this in which you trust? + +I say that your counsel and strength for the war are only vain words. Now in whom do you trust, that you have rebelled against me? + +Behold, you trust in the staff of this bruised reed, even in Egypt, which if a man leans on it, it will go into his hand and pierce it. So is Pharaoh king of Egypt to all who trust in him. + +But if you tell me, ‘We trust in Yahweh our God,’ isn’t that he whose high places and whose altars Hezekiah has taken away, and has said to Judah and to Jerusalem, ‘You shall worship before this altar’?” + +Now therefore, please make a pledge to my master the king of Assyria, and I will give you two thousand horses, if you are able on your part to set riders on them. + +How then can you turn away the face of one captain of the least of my master’s servants, and put your trust in Egypt for chariots and for horsemen? + +Have I come up now without Yahweh against this land to destroy it? Yahweh said to me, “Go up against this land, and destroy it.”’” + +

+

Then Eliakim, Shebna and Joah said to Rabshakeh, “Please speak to your servants in Aramaic, for we understand it. Don’t speak to us in the Jews’ language in the hearing of the people who are on the wall.” + +

+

But Rabshakeh said, “Has my master sent me only to your master and to you, to speak these words, and not to the men who sit on the wall, who will eat their own dung and drink their own urine with you?” + +Then Rabshakeh stood, and called out with a loud voice in the Jews’ language, and said, “Hear the words of the great king, the king of Assyria! + +The king says, ‘Don’t let Hezekiah deceive you; for he will not be able to deliver you. + +Don’t let Hezekiah make you trust in Yahweh, saying, “Yahweh will surely deliver us. This city won’t be given into the hand of the king of Assyria.”’ + +Don’t listen to Hezekiah, for the king of Assyria says, ‘Make your peace with me, and come out to me; and each of you eat from his vine, and each one from his fig tree, and each one of you drink the waters of his own cistern; + +until I come and take you away to a land like your own land, a land of grain and new wine, a land of bread and vineyards. + +Beware lest Hezekiah persuade you, saying, “Yahweh will deliver us.” Have any of the gods of the nations delivered their lands from the hand of the king of Assyria? + +Where are the gods of Hamath and Arpad? Where are the gods of Sepharvaim? Have they delivered Samaria from my hand? + +Who are they among all the gods of these countries that have delivered their country out of my hand, that Yahweh should deliver Jerusalem out of my hand?’” + +

+

But they remained silent, and said nothing in reply, for the king’s commandment was, “Don’t answer him.” + +

+

Then Eliakim the son of Hilkiah, who was over the household, and Shebna the scribe, and Joah, the son of Asaph the recorder, came to Hezekiah with their clothes torn, and told him the words of Rabshakeh. + +

+ + +

When King Hezekiah heard it, he tore his clothes, covered himself with sackcloth, and went into Yahweh’s house. + +He sent Eliakim, who 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. + +They said to him, “Hezekiah says, ‘Today is a day of trouble, and of rebuke, and of rejection; for the children have come to the birth, and there is no strength to give birth. + +It may be Yahweh your God will hear the words of Rabshakeh, whom the king of Assyria his master has sent to defy the living God, and will rebuke the words which Yahweh your God has heard. Therefore lift up your prayer for the remnant that is left.’” + +

+

So the servants of King Hezekiah came to Isaiah. + +

+

Isaiah said to them, “Tell your master, ‘Yahweh says, “Don’t be afraid of the words that you have heard, with which the servants of the king of Assyria have blasphemed me. + +Behold, I will put a spirit in him and he will hear news, and will return to his own land. I will cause him to fall by the sword in his own land.”’” + +

+

So Rabshakeh returned, and found the king of Assyria warring against Libnah, for he heard that he had departed from Lachish. + +He heard news concerning Tirhakah king of Ethiopia, “He has come out to fight against you.” When he heard it, he sent messengers to Hezekiah, saying, + +Thus you shall speak to Hezekiah king of Judah, saying, ‘Don’t let your God in whom you trust deceive you, saying, “Jerusalem won’t be given into the hand of the king of Assyria.” + +Behold, you have heard what the kings of Assyria have done to all lands, by destroying them utterly. Shall you be delivered? + +Have the gods of the nations delivered them, which my fathers have destroyed, Gozan, Haran, Rezeph, and the children of Eden who were in Telassar? + +Where is the king of Hamath, and the king of Arpad, and the king of the city of Sepharvaim, of Hena, and Ivvah?’” + +

+

Hezekiah received the letter from the hand of the messengers and read it. Then Hezekiah went up to Yahweh’s house, and spread it before Yahweh. + +Hezekiah prayed to Yahweh, saying, + +Yahweh of Armies, the God of Israel, who is enthroned among the cherubim, you are the God, even you alone, of all the kingdoms of the earth. You have made heaven and earth. + +Turn your ear, Yahweh, and hear. Open your eyes, Yahweh, and behold. Hear all of the words of Sennacherib, who has sent to defy the living God. + +Truly, Yahweh, the kings of Assyria have destroyed all the countries and their land, + +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. + +Now therefore, Yahweh our God, save us from his hand, that all the kingdoms of the earth may know that you are Yahweh, even you only.” + +

+

Then Isaiah the son of Amoz sent to Hezekiah, saying, “Yahweh, the God of Israel says, ‘Because you have prayed to me against Sennacherib king of Assyria, + +this is the word which Yahweh has spoken concerning him: The virgin daughter of Zion has despised you and ridiculed you. The daughter of Jerusalem has shaken her head at you. + +Whom have you defied and blasphemed? Against whom have you exalted your voice and lifted up your eyes on high? Against the Holy One of Israel. + +By your servants, you have defied the Lord, and have said, “With the multitude of my chariots I have come up to the height of the mountains, to the innermost parts of Lebanon. I will cut down its tall cedars and its choice cypress trees. I will enter into its farthest height, the forest of its fruitful field. + +I have dug and drunk water, and with the sole of my feet I will dry up all the rivers of Egypt.” + +

+

“‘Have you not heard how I have done it long ago, and formed it in ancient times? Now I have brought it to pass, that it should be yours to destroy fortified cities, turning them into ruinous heaps. + +Therefore their inhabitants had little power. They were dismayed and confounded. They were like the grass of the field, and like the green herb, like the grass on the housetops, and like a field before its crop has grown. + +But I know your sitting down, your going out, your coming in, and your raging against me. + +Because of your raging against me, and because your arrogance has come up into my ears, therefore I will put my hook in your nose and my bridle in your lips, and I will turn you back by the way by which you came. + +

+

“‘This shall be the sign to you: You will eat this year that which grows of itself, and in the second year that which springs from it; and in the third year sow and reap and plant vineyards, and eat their fruit. + +The remnant that is escaped of the house of Judah will again take root downward, and bear fruit upward. + +For out of Jerusalem a remnant will go out, and survivors will escape from Mount Zion. The zeal of Yahweh of Armies will perform this.’ + +

+

Therefore Yahweh says concerning the king of Assyria, ‘He will not come to this city, nor shoot an arrow there, neither will he come before it with shield, nor cast up a mound against it. + +He will return the way that he came, and he won’t come to this city,’ says Yahweh. + +For I will defend this city to save it, for my own sake, and for my servant David’s sake.’” + +

+

Then Yahweh’s angel went out and struck one hundred and eighty-five thousand men in the camp of the Assyrians. When men arose early in the morning, behold, these were all dead bodies. + +So Sennacherib king of Assyria departed, went away, returned to Nineveh, and stayed there. + +As he was worshiping in the house of Nisroch his god, Adrammelech and Sharezer his sons struck him with the sword; and they escaped into the land of Ararat. Esar Haddon his son reigned in his place. + +

+ + +

In those days Hezekiah was sick and near death. Isaiah the prophet, the son of Amoz, came to him, and said to him, “Yahweh says, ‘Set your house in order, for you will die, and not live.’” + +

+

Then Hezekiah turned his face to the wall and prayed to Yahweh, + +and said, “Remember now, Yahweh, I beg you, how I have walked before you in truth and with a perfect heart, and have done that which is good in your sight.” Then Hezekiah wept bitterly. + +

+

Then Yahweh’s word came to Isaiah, saying, + +Go, and tell Hezekiah, ‘Yahweh, the God of David your father, says, “I have heard your prayer. I have seen your tears. Behold, I will add fifteen years to your life. + +I will deliver you and this city out of the hand of the king of Assyria, and I will defend this city. + +This shall be the sign to you from Yahweh, that Yahweh will do this thing that he has spoken. + +Behold, I will cause the shadow on the sundial, which has gone down on the sundial of Ahaz with the sun, to return backward ten steps.”’” So the sun returned ten steps on the sundial on which it had gone down. + +

+

The writing of Hezekiah king of Judah, when he had been sick, and had recovered of his sickness: + +

+I said, “In the middle of my life I go into the gates of Sheol.38:10 +Sheol is the place of the dead. + +I am deprived of the residue of my years.” + + +I said, “I won’t see Yah, + +Yah in the land of the living. + +I will see man no more with the inhabitants of the world. + + +My dwelling is removed, + +and is carried away from me like a shepherd’s tent. + +I have rolled up my life like a weaver. + +He will cut me off from the loom. + +From day even to night you will make an end of me. + + +I waited patiently until morning. + +He breaks all my bones like a lion. + +From day even to night you will make an end of me. + + +I chattered like a swallow or a crane. + +I moaned like a dove. + +My eyes weaken looking upward. + +Lord, I am oppressed. + +Be my security.” + + +What will I say? + +He has both spoken to me, and himself has done it. + +I will walk carefully all my years because of the anguish of my soul. + + +Lord, men live by these things; + +and my spirit finds life in all of them. + +You restore me, and cause me to live. + + +Behold, for peace I had great anguish, + +but you have in love for my soul delivered it from the pit of corruption; + +for you have cast all my sins behind your back. + + +For Sheol38:18 +Sheol is the place of the dead. can’t praise you. + +Death can’t celebrate you. + +Those who go down into the pit can’t hope for your truth. + + +The living, the living, he shall praise you, as I do today. + +The father shall make known your truth to the children. + + +Yahweh will save me. + +Therefore we will sing my songs with stringed instruments all the days of our life in Yahweh’s house. + + +

Now Isaiah had said, “Let them take a cake of figs, and lay it for a poultice on the boil, and he shall recover.” + +Hezekiah also had said, “What is the sign that I will go up to Yahweh’s house?” + +

+ + +

At that time, Merodach-baladan the son of Baladan, king of Babylon, sent letters and a present to Hezekiah, for he heard that he had been sick, and had recovered. + +Hezekiah was pleased with them, and showed them the house of his precious things, the silver, the gold, the spices, and the precious oil, and all the house of his armor, and all that was found in his treasures. There was nothing in his house, nor in all his dominion, that Hezekiah didn’t show them. + +Then Isaiah the prophet came to King Hezekiah, and asked him, “What did these men say? From where did they come to you?” +

+

Hezekiah said, “They have come from a country far from me, even from Babylon.” + +

+

Then he asked, “What have they seen in your house?” +

+

Hezekiah answered, “They have seen all that is in my house. There is nothing among my treasures that I have not shown them.” + +

+

Then Isaiah said to Hezekiah, “Hear the word of Yahweh of Armies: + +Behold, the days are coming when all that is in your house, and that which your fathers have stored up until today, will be carried to Babylon. Nothing will be left,’ says Yahweh. + +They will take away your sons who will issue from you, whom you shall father, and they will be eunuchs in the king of Babylon’s palace.’” + +

+

Then Hezekiah said to Isaiah, “Yahweh’s word which you have spoken is good.” He said moreover, “For there will be peace and truth in my days.” + +

+ + +

Comfort, comfort my people,” says your God. + +Speak comfortably to Jerusalem, and call out to her that her warfare is accomplished, that her iniquity is pardoned, that she has received of Yahweh’s hand double for all her sins.” + +

+The voice of one who calls out, + +Prepare the way of Yahweh in the wilderness! + +Make a level highway in the desert for our God. + + +Every valley shall be exalted, + +and every mountain and hill shall be made low. + +The uneven shall be made level, + +and the rough places a plain. + + +Yahweh’s glory shall be revealed, + +and all flesh shall see it together; + +for the mouth of Yahweh has spoken it.” + + + +The voice of one saying, “Cry out!” + +One said, “What shall I cry?” + +All flesh is like grass, + +and all its glory is like the flower of the field. + + +The grass withers, + +the flower fades, + +because Yahweh’s breath blows on it. + +Surely the people are like grass. + + +The grass withers, + +the flower fades; + +but the word of our God stands forever.” + + + +You who tell good news to Zion, go up on a high mountain. + +You who tell good news to Jerusalem, lift up your voice with strength! + +Lift it up! Don’t be afraid! + +Say to the cities of Judah, “Behold, your God!” + + +Behold, the Lord Yahweh will come as a mighty one, + +and his arm will rule for him. + +Behold, his reward is with him, + +and his recompense before him. + + +He will feed his flock like a shepherd. + +He will gather the lambs in his arm, + +and carry them in his bosom. + +He will gently lead those who have their young. + + + +Who has measured the waters in the hollow of his hand, + +and marked off the sky with his span, + +and calculated the dust of the earth in a measuring basket, + +and weighed the mountains in scales, + +and the hills in a balance? + + +Who has directed Yahweh’s Spirit, + +or has taught him as his counselor? + + +Who did he take counsel with, + +and who instructed him, + +and taught him in the path of justice, + +and taught him knowledge, + +and showed him the way of understanding? + + +Behold, the nations are like a drop in a bucket, + +and are regarded as a speck of dust on a balance. + +Behold, he lifts up the islands like a very little thing. + + +Lebanon is not sufficient to burn, + +nor its animals sufficient for a burnt offering. + + +All the nations are like nothing before him. + +They are regarded by him as less than nothing, and vanity. + + + +To whom then will you liken God? + +Or what likeness will you compare to him? + + +A workman has cast an image, + +and the goldsmith overlays it with gold, + +and casts silver chains for it. + + +He who is too impoverished for such an offering chooses a tree that will not rot. + +He seeks a skillful workman to set up a carved image for him that will not be moved. + + + +Haven’t you known? + +Haven’t you heard? + +Haven’t you been told from the beginning? + +Haven’t you understood from the foundations of the earth? + + +It is he who sits above the circle of the earth, + +and its inhabitants are like grasshoppers; + +who stretches out the heavens like a curtain, + +and spreads them out like a tent to dwell in, + + +who brings princes to nothing, + +who makes the judges of the earth meaningless. + + +They are planted scarcely. + +They are sown scarcely. + +Their stock has scarcely taken root in the ground. + +He merely blows on them, and they wither, + +and the whirlwind takes them away as stubble. + + + +To whom then will you liken me? + +Who is my equal?” says the Holy One. + + +Lift up your eyes on high, + +and see who has created these, + +who brings out their army by number. + +He calls them all by name. + +By the greatness of his might, + +and because he is strong in power, + +not one is lacking. + + + +Why do you say, Jacob, + +and speak, Israel, + +My way is hidden from Yahweh, + +and the justice due me is disregarded by my God”? + + +Haven’t you known? + +Haven’t you heard? + +The everlasting God, Yahweh, + +the Creator of the ends of the earth, doesn’t faint. + +He isn’t weary. + +His understanding is unsearchable. + + +He gives power to the weak. + +He increases the strength of him who has no might. + + +Even the youths faint and get weary, + +and the young men utterly fall; + + +but those who wait for Yahweh will renew their strength. + +They will mount up with wings like eagles. + +They will run, and not be weary. + +They will walk, and not faint. + + + + +Keep silent before me, islands, + +and let the peoples renew their strength. + +Let them come near, + +then let them speak. + +Let’s meet together for judgment. + + +Who has raised up one from the east? + +Who called him to his feet in righteousness? + +He hands over nations to him + +and makes him rule over kings. + +He gives them like the dust to his sword, + +like the driven stubble to his bow. + + +He pursues them + +and passes by safely, + +even by a way that he had not gone with his feet. + + +Who has worked and done it, + +calling the generations from the beginning? + +I, Yahweh, the first, and with the last, I am he.” + + + +The islands have seen, and fear. + +The ends of the earth tremble. + +They approach, and come. + + +Everyone helps his neighbor. + +They say to their brothers, “Be strong!” + + +So the carpenter encourages the goldsmith. + +He who smooths with the hammer encourages him who strikes the anvil, + +saying of the soldering, “It is good;” + +and he fastens it with nails, that it might not totter. + + + +But you, Israel, my servant, + +Jacob whom I have chosen, + +the offspring of Abraham my friend, + + +you whom I have taken hold of from the ends of the earth, + +and called from its corners, + +and said to you, ‘You are my servant. I have chosen you and have not cast you away.’ + + +Don’t you be afraid, for I am with you. + +Don’t be dismayed, for I am your God. + +I will strengthen you. + +Yes, I will help you. + +Yes, I will uphold you with the right hand of my righteousness. + + +Behold, all those who are incensed against you will be disappointed and confounded. + +Those who strive with you will be like nothing, and shall perish. + + +You will seek them, and won’t find them, + +even those who contend with you. + +Those who war against you will be as nothing, + +as a nonexistent thing. + + +For I, Yahweh your God, will hold your right hand, + +saying to you, ‘Don’t be afraid. + +I will help you.’ + + +Don’t be afraid, you worm Jacob, + +and you men of Israel. + +I will help you,” says Yahweh. + +Your Redeemer is the Holy One of Israel. + + +Behold, I have made you into a new sharp threshing instrument with teeth. + +You will thresh the mountains, + +and beat them small, + +and will make the hills like chaff. + + +You will winnow them, + +and the wind will carry them away, + +and the whirlwind will scatter them. + +You will rejoice in Yahweh. + +You will glory in the Holy One of Israel. + + + +The poor and needy seek water, and there is none. + +Their tongue fails for thirst. + +I, Yahweh, will answer them. + +I, the God of Israel, will not forsake them. + + +I will open rivers on the bare heights, + +and springs in the middle of the valleys. + +I will make the wilderness a pool of water, + +and the dry land springs of water. + + +I will put cedar, acacia, myrtle, and oil trees in the wilderness. + +I will set cypress trees, pine, and box trees together in the desert; + + +that they may see, know, consider, and understand together, + +that Yahweh’s hand has done this, + +and the Holy One of Israel has created it. + + + +Produce your cause,” says Yahweh. + +Bring out your strong reasons!” says the King of Jacob. + + +Let them announce and declare to us what will happen! + +Declare the former things, what they are, + +that we may consider them, and know the latter end of them; + +or show us things to come. + + +Declare the things that are to come hereafter, + +that we may know that you are gods. + +Yes, do good, or do evil, + +that we may be dismayed, + +and see it together. + + +Behold, you are nothing, + +and your work is nothing. + +He who chooses you is an abomination. + + + +I have raised up one from the north, and he has come, + +from the rising of the sun, one who calls on my name, + +and he shall come on rulers as on mortar, + +and as the potter treads clay. + + +Who has declared it from the beginning, that we may know? + +and before, that we may say, ‘He is right’? + +Surely, there is no one who declares. + +Surely, there is no one who shows. + +Surely, there is no one who hears your words. + + +I am the first to say to Zion, ‘Behold, look at them;’ + +and I will give one who brings good news to Jerusalem. + + +When I look, there is no man, + +even among them there is no counselor who, when I ask, can answer a word. + + +Behold, all of their deeds are vanity and nothing. + +Their molten images are wind and confusion. + + + + +Behold, my servant, whom I uphold, + +my chosen, in whom my soul delights: + +I have put my Spirit on him. + +He will bring justice to the nations. + + +He will not shout, + +nor raise his voice, + +nor cause it to be heard in the street. + + +He won’t break a bruised reed. + +He won’t quench a dimly burning wick. + +He will faithfully bring justice. + + +He will not fail nor be discouraged, + +until he has set justice on the earth, + +and the islands wait for his law.” + + + +God Yahweh, + +he who created the heavens and stretched them out, + +he who spread out the earth and that which comes out of it, + +he who gives breath to its people and spirit to those who walk in it, says: + + +I, Yahweh, have called you in righteousness. + +I will hold your hand. + +I will keep you, + +and make you a covenant for the people, + +as a light for the nations, + + +to open the blind eyes, + +to bring the prisoners out of the dungeon, + +and those who sit in darkness out of the prison. + + + +I am Yahweh. + +That is my name. + +I will not give my glory to another, + +nor my praise to engraved images. + + +Behold, the former things have happened + +and I declare new things. + +I tell you about them before they come up.” + + + +Sing to Yahweh a new song, + +and his praise from the end of the earth, + +you who go down to the sea, + +and all that is therein, + +the islands and their inhabitants. + + +Let the wilderness and its cities raise their voices, + +with the villages that Kedar inhabits. + +Let the inhabitants of Sela sing. + +Let them shout from the top of the mountains! + + +Let them give glory to Yahweh, + +and declare his praise in the islands. + + +Yahweh will go out like a mighty man. + +He will stir up zeal like a man of war. + +He will raise a war cry. + +Yes, he will shout aloud. + +He will triumph over his enemies. + + + +“I have been silent a long time. + +I have been quiet and restrained myself. + +Now I will cry out like a travailing woman. I will both gasp and pant. + + +I will destroy mountains and hills, + +and dry up all their herbs. + +I will make the rivers islands, + +and will dry up the pools. + + +I will bring the blind by a way that they don’t know. + +I will lead them in paths that they don’t know. + +I will make darkness light before them, + +and crooked places straight. + +I will do these things, + +and I will not forsake them. + + + +“Those who trust in engraved images, + +who tell molten images, + +‘You are our gods,’ + +will be turned back. + +They will be utterly disappointed. + + + +Hear, you deaf, + +and look, you blind, + +that you may see. + + +Who is blind, but my servant? + +Or who is as deaf as my messenger whom I send? + +Who is as blind as he who is at peace, + +and as blind as Yahweh’s servant? + + +You see many things, but don’t observe. + +His ears are open, but he doesn’t listen. + + +It pleased Yahweh, for his righteousnesssake, to magnify the law + +and make it honorable. + + +But this is a robbed and plundered people. + +All of them are snared in holes, + +and they are hidden in prisons. + +They have become captives, and no one delivers, + +and a plunder, and no one says, ‘Restore them!’ + + + +Who is there among you who will give ear to this? + +Who will listen and hear for the time to come? + + +Who gave Jacob as plunder, + +and Israel to the robbers? + +Didn’t Yahweh, he against whom we have sinned? + +For they would not walk in his ways, + +and they disobeyed his law. + + +Therefore he poured the fierceness of his anger on him, + +and the strength of battle. + +It set him on fire all around, but he didn’t know. + +It burned him, but he didn’t take it to heart.” + + + + +But now Yahweh who created you, Jacob, + +and he who formed you, Israel, says: + +“Don’t be afraid, for I have redeemed you. + +I have called you by your name. + +You are mine. + + +When you pass through the waters, I will be with you, + +and through the rivers, they will not overflow you. + +When you walk through the fire, you will not be burned, + +and flame will not scorch you. + + +For I am Yahweh your God, + +the Holy One of Israel, + +your Savior. + +I have given Egypt as your ransom, + +Ethiopia and Seba in your place. + + +Since you have been precious and honored in my sight, + +and I have loved you, + +therefore I will give people in your place, + +and nations instead of your life. + + +Don’t be afraid, for I am with you. + +I will bring your offspring from the east, + +and gather you from the west. + + +I will tell the north, ‘Give them up!’ + +and tell the south, ‘Don’t hold them back! + +Bring my sons from far away, + +and my daughters from the ends of the earth— + + +everyone who is called by my name, + +and whom I have created for my glory, + +whom I have formed, + +yes, whom I have made.’” + + + +Bring out the blind people who have eyes, + +and the deaf who have ears. + + +Let all the nations be gathered together, + +and let the peoples be assembled. + +Who among them can declare this, + +and show us former things? + +Let them bring their witnesses, that they may be justified, + +or let them hear, and say, “That is true.” + + + +You are my witnesses,” says Yahweh, + +With my servant whom I have chosen; + +that you may know and believe me, + +and understand that I am he. + +Before me there was no God formed, + +neither will there be after me. + + +I myself am Yahweh. + +Besides me, there is no savior. + + +I have declared, I have saved, and I have shown, + +and there was no strange god among you. + +Therefore you are my witnesses”, + +says Yahweh, “and I am God. + + +Yes, since the day was, I am he. + +There is no one who can deliver out of my hand. + +I will work, and who can hinder it?” + + +

Yahweh, your Redeemer, the Holy One of Israel says: “For your sake, I have sent to Babylon, and I will bring all of them down as fugitives, even the Chaldeans, in the ships of their rejoicing. + +I am Yahweh, your Holy One, the Creator of Israel, your King.” + +

+

Yahweh, who makes a way in the sea, +

+and a path in the mighty waters, + + +who brings out the chariot and horse, + +the army and the mighty man + +(they lie down together, they shall not rise; + +they are extinct, they are quenched like a wick) says: + + +“Don’t remember the former things, + +and don’t consider the things of old. + + +Behold, I will do a new thing. + +It springs out now. + +Don’t you know it? + +I will even make a way in the wilderness, + +and rivers in the desert. + + +The animals of the field, the jackals and the ostriches, shall honor me, + +because I give water in the wilderness and rivers in the desert, + +to give drink to my people, my chosen, + + +the people which I formed for myself, + +that they might declare my praise. + + + +Yet you have not called on me, Jacob; + +but you have been weary of me, Israel. + + +You have not brought me any of your sheep for burnt offerings, + +neither have you honored me with your sacrifices. + +I have not burdened you with offerings, + +nor wearied you with frankincense. + + +You have bought me no sweet cane with money, + +nor have you filled me with the fat of your sacrifices, + +but you have burdened me with your sins. + +You have wearied me with your iniquities. + + + +I, even I, am he who blots out your transgressions for my own sake; + +and I will not remember your sins. + + +Put me in remembrance. + +Let us plead together. + +Declare your case, + +that you may be justified. + + +Your first father sinned, + +and your teachers have transgressed against me. + + +Therefore I will profane the princes of the sanctuary; + +and I will make Jacob a curse, + +and Israel an insult.” + + + + +Yet listen now, Jacob my servant, + +and Israel, whom I have chosen. + + +This is what Yahweh who made you, + +and formed you from the womb, + +who will help you says: + +“Don’t be afraid, Jacob my servant; + +and you, Jeshurun, whom I have chosen. + + +For I will pour water on him who is thirsty, + +and streams on the dry ground. + +I will pour my Spirit on your descendants, + +and my blessing on your offspring; + + +and they will spring up among the grass, + +as willows by the watercourses. + + +One will say, ‘I am Yahweh’s.’ + +Another will be called by the name of Jacob; + +and another will write with his handto Yahweh,’ + +and honor the name of Israel.” + + + +This is what Yahweh, the King of Israel, + +and his Redeemer, Yahweh of Armies, says: + +I am the first, and I am the last; + +and besides me there is no God. + + +Who is like me? + +Who will call, + +and will declare it, + +and set it in order for me, + +since I established the ancient people? + +Let them declare the things that are coming, + +and that will happen. + + +Don’t fear, + +neither be afraid. + +Haven’t I declared it to you long ago, + +and shown it? + +You are my witnesses. + +Is there a God besides me? + +Indeed, there is not. + +I don’t know any other Rock.” + + + +Everyone who makes a carved image is vain. + +The things that they delight in will not profit. + +Their own witnesses don’t see, nor know, that they may be disappointed. + + +Who has fashioned a god, + +or molds an image that is profitable for nothing? + + +Behold, all his fellows will be disappointed; + +and the workmen are mere men. + +Let them all be gathered together. + +Let them stand up. + +They will fear. + +They will be put to shame together. + + + +The blacksmith takes an ax, + +works in the coals, + +fashions it with hammers, + +and works it with his strong arm. + +He is hungry, + +and his strength fails; + +he drinks no water, + +and is faint. + + +The carpenter stretches out a line. + +He marks it out with a pencil. + +He shapes it with planes. + +He marks it out with compasses, + +and shapes it like the figure of a man, + +with the beauty of a man, + +to reside in a house. + + +He cuts down cedars for himself, + +and takes the cypress and the oak, + +and strengthens for himself one among the trees of the forest. + +He plants a cypress tree, + +and the rain nourishes it. + + +Then it will be for a man to burn; + +and he takes some of it and warms himself. + +Yes, he burns it and bakes bread. + +Yes, he makes a god and worships it; + +he makes it a carved image, and falls down to it. + + +He burns part of it in the fire. + +With part of it, he eats meat. + +He roasts a roast and is satisfied. + +Yes, he warms himself + +and says, “Aha! I am warm. I have seen the fire.” + + +The rest of it he makes into a god, + +even his engraved image. + +He bows down to it and worships, + +and prays to it, and says, “Deliver me, for you are my god!” + + + +They don’t know, neither do they consider, + +for he has shut their eyes, that they can’t see, + +and their hearts, that they can’t understand. + + +No one thinks, + +neither is there knowledge nor understanding to say, + +I have burned part of it in the fire. + +Yes, I have also baked bread on its coals. + +I have roasted meat and eaten it. + +Shall I make the rest of it into an abomination? + +Shall I bow down to a tree trunk?” + + +He feeds on ashes. + +A deceived heart has turned him aside; + +and he can’t deliver his soul, + +nor say, “Isn’t there a lie in my right hand?” + + + +Remember these things, Jacob and Israel, + +for you are my servant. + +I have formed you. + +You are my servant. + +Israel, you will not be forgotten by me. + + +I have blotted out, as a thick cloud, your transgressions, + +and, as a cloud, your sins. + +Return to me, for I have redeemed you. + + + +Sing, you heavens, for Yahweh has done it! + +Shout, you lower parts of the earth! + +Break out into singing, you mountains, O forest, all of your trees, + +for Yahweh has redeemed Jacob, + +and will glorify himself in Israel. + + + +Yahweh, your Redeemer, + +and he who formed you from the womb says: + +I am Yahweh, who makes all things; + +who alone stretches out the heavens; + +who spreads out the earth by myself; + + +who frustrates the signs of the liars, + +and makes diviners mad; + +who turns wise men backward, + +and makes their knowledge foolish; + + +who confirms the word of his servant, + +and performs the counsel of his messengers; + +who says of Jerusalem, ‘She will be inhabited;’ + +and of the cities of Judah, ‘They will be built,’ + +andI will raise up its waste places;’ + + +who says to the deep, ‘Be dry,’ + +and ‘I will dry up your rivers,’ + + +who says of Cyrus, ‘He is my shepherd, and shall perform all my pleasure,’ + +even saying of Jerusalem, ‘She will be built;’ + +and of the temple, ‘Your foundation will be laid.’” + + + + +

Yahweh says to his anointed, to Cyrus, whose right hand I have held to subdue nations before him and strip kings of their armor, to open the doors before him, and the gates shall not be shut: + +

+I will go before you + +and make the rough places smooth. + +I will break the doors of bronze in pieces + +and cut apart the bars of iron. + + +I will give you the treasures of darkness + +and hidden riches of secret places, + +that you may know that it is I, Yahweh, who calls you by your name, + +even the God of Israel. + + +For Jacob my servant’s sake, + +and Israel my chosen, + +I have called you by your name. + +I have given you a title, + +though you have not known me. + + +I am Yahweh, and there is no one else. + +Besides me, there is no God. + +I will strengthen45:5 +or, equip you, + +though you have not known me, + + +that they may know from the rising of the sun, + +and from the west, + +that there is no one besides me. + +I am Yahweh, and there is no one else. + + +I form the light + +and create darkness. + +I make peace + +and create calamity. + +I am Yahweh, + +who does all these things. + + + +Rain, you heavens, from above, + +and let the skies pour down righteousness. + +Let the earth open, that it may produce salvation, + +and let it cause righteousness to spring up with it. + +I, Yahweh, have created it. + + + +Woe to him who strives with his Maker— + +a clay pot among the clay pots of the earth! + +Shall the clay ask him who fashions it, ‘What are you making?’ + +or your work, ‘He has no hands’? + + +Woe to him who says to a father, ‘What have you become the father of?’ + +or to a mother, ‘What have you given birth to?’” + + + +Yahweh, the Holy One of Israel + +and his Maker says: + +You ask me about the things that are to come, concerning my sons, + +and you command me concerning the work of my hands! + + +I have made the earth, and created man on it. + +I, even my hands, have stretched out the heavens. + +I have commanded all their army. + + +I have raised him up in righteousness, + +and I will make all his ways straight. + +He shall build my city, + +and he shall let my exiles go free, + +not for price nor reward,” says Yahweh of Armies. + + + +Yahweh says: “The labor of Egypt, + +and the merchandise of Ethiopia, + +and the Sabeans, men of stature, will come over to you, + +and they will be yours. + +They will go after you. + +They shall come over in chains. + +They will bow down to you. + +They will make supplication to you: + +Surely God is in you; and there is no one else. + +There is no other god. + + +Most certainly you are a God who has hidden yourself, + +God of Israel, the Savior.’” + + +They will be disappointed, + +yes, confounded, all of them. + +Those who are makers of idols will go into confusion together. + + +Israel will be saved by Yahweh with an everlasting salvation. + +You will not be disappointed nor confounded to ages everlasting. + + + +For Yahweh who created the heavens, + +the God who formed the earth and made it, + +who established it and didn’t create it a waste, + +who formed it to be inhabited says: + +I am Yahweh. + +There is no other. + + +I have not spoken in secret, + +in a place of the land of darkness. + +I didn’t say to the offspring of Jacob, ‘Seek me in vain.’ + +I, Yahweh, speak righteousness. + +I declare things that are right. + + + +Assemble yourselves and come. + +Draw near together, you who have escaped from the nations. + +Those have no knowledge who carry the wood of their engraved image, + +and pray to a god that can’t save. + + +Declare and present it. + +Yes, let them take counsel together. + +Who has shown this from ancient time? + +Who has declared it of old? + +Haven’t I, Yahweh? + +There is no other God besides me, a just God and a Savior. + +There is no one besides me. + + + +Look to me, and be saved, all the ends of the earth; + +for I am God, and there is no other. + + +I have sworn by myself. + +The word has gone out of my mouth in righteousness, and will not be revoked, + +that to me every knee shall bow, + +every tongue shall take an oath. + + +They will say of me, + +There is righteousness and strength only in Yahweh.’” + +Even to him will men come. + +All those who raged against him will be disappointed. + + +All the offspring of Israel will be justified in Yahweh, + +and will rejoice! + + + + +Bel bows down. + +Nebo stoops. + +Their idols are carried by animals, + +and on the livestock. + +The things that you carried around are heavy loads, + +a burden for the weary. + + +They stoop and they bow down together. + +They could not deliver the burden, + +but they have gone into captivity. + + + +Listen to me, house of Jacob, + +and all the remnant of the house of Israel, + +that have been carried from their birth, + +that have been carried from the womb. + + +Even to old age I am he, + +and even to gray hairs I will carry you. + +I have made, and I will bear. + +Yes, I will carry, and will deliver. + + + +To whom will you compare me, and consider my equal, + +and compare me, as if we were the same? + + +Some pour out gold from the bag, + +and weigh silver in the balance. + +They hire a goldsmith, + +and he makes it a god. + +They fall down— + +yes, they worship. + + +They bear it on their shoulder. + +They carry it, and set it in its place, and it stands there. + +It cannot move from its place. + +Yes, one may cry to it, yet it can not answer. + +It cannot save him out of his trouble. + + + +Remember this, and show yourselves men. + +Bring it to mind again, you transgressors. + + +Remember the former things of old; + +for I am God, and there is no other. + +I am God, and there is none like me. + + +I declare the end from the beginning, + +and from ancient times things that are not yet done. + +I say: My counsel will stand, + +and I will do all that I please. + + +I call a ravenous bird from the east, + +the man of my counsel from a far country. + +Yes, I have spoken. + +I will also bring it to pass. + +I have planned. + +I will also do it. + + + +Listen to me, you stubborn-hearted, + +who are far from righteousness! + + +I bring my righteousness near. + +It is not far off, + +and my salvation will not wait. + +I will grant salvation to Zion, + +my glory to Israel. + + + + + +

Come down and sit in the dust, virgin daughter of Babylon. +

+Sit on the ground without a throne, daughter of the Chaldeans. + +For you will no longer be called tender and delicate. + + +Take the millstones and grind flour. + +Remove your veil, lift up your skirt, uncover your legs, + +and wade through the rivers. + + +Your nakedness will be uncovered. + +Yes, your shame will be seen. + +I will take vengeance, + +and will spare no one.” + + + +Our Redeemer, Yahweh of Armies is his name, + +is the Holy One of Israel. + + + +Sit in silence, and go into darkness, + +daughter of the Chaldeans. + +For you shall no longer be called + +the mistress of kingdoms. + + +I was angry with my people. + +I profaned my inheritance + +and gave them into your hand. + +You showed them no mercy. + +You laid a very heavy yoke on the aged. + + +You said, ‘I will be a princess forever,’ + +so that you didn’t lay these things to your heart, + +nor did you remember the results. + + + +Now therefore hear this, you who are given to pleasures, + +who sit securely, + +who say in your heart, + +I am, and there is no one else besides me. + +I won’t sit as a widow, + +neither will I know the loss of children.’ + + +But these two things will come to you in a moment in one day: + +the loss of children and widowhood. + +They will come on you in their full measure, + +in the multitude of your sorceries, + +and the great abundance of your enchantments. + + +For you have trusted in your wickedness. + +You have said, ‘No one sees me.’ + +Your wisdom and your knowledge has perverted you. + +You have said in your heart, ‘I am, and there is no one else besides me.’ + + +Therefore disaster will come on you. + +You won’t know when it dawns. + +Mischief will fall on you. + +You won’t be able to put it away. + +Desolation will come on you suddenly, + +which you don’t understand. + + + +Stand now with your enchantments + +and with the multitude of your sorceries, + +in which you have labored from your youth, + +as if you might profit, + +as if you might prevail. + + +You are wearied in the multitude of your counsels. + +Now let the astrologers, the stargazers, and the monthly prognosticators stand up and save you from the things that will happen to you. + + +Behold, they are like stubble. + +The fire will burn them. + +They won’t deliver themselves from the power of the flame. + +It won’t be a coal to warm at + +or a fire to sit by. + + +The things that you labored in will be like this: + +those who have trafficked with you from your youth will each wander in his own way. + +There will be no one to save you. + + + + + +Hear this, house of Jacob, + +you who are called by the name of Israel, + +and have come out of the waters of Judah. + +You swear by Yahweh’s name, + +and make mention of the God of Israel, + +but not in truth, nor in righteousness— + + +for they call themselves citizens of the holy city, + +and rely on the God of Israel; + +Yahweh of Armies is his name. + + +I have declared the former things from of old. + +Yes, they went out of my mouth, and I revealed them. + +I did them suddenly, and they happened. + + +Because I knew that you are obstinate, + +and your neck is an iron sinew, + +and your brow bronze; + + +therefore I have declared it to you from of old; + +before it came to pass I showed it to you; + +lest you should say, ‘My idol has done them. + +My engraved image and my molten image has commanded them.’ + + +You have heard it. + +Now see all this. + +And you, won’t you declare it? + + +I have shown you new things from this time, + +even hidden things, which you have not known. + + +They are created now, and not from of old. + +Before today, you didn’t hear them, + +lest you should say, ‘Behold, I knew them.’ + + +Yes, you didn’t hear. + +Yes, you didn’t know. + +Yes, from of old your ear was not opened, + +for I knew that you dealt very treacherously, + +and were called a transgressor from the womb. + + +For my name’s sake, I will defer my anger, + +and for my praise, I hold it back for you + +so that I don’t cut you off. + + +Behold, I have refined you, + +but not as silver. + +I have chosen you in the furnace of affliction. + + +For my own sake, + +for my own sake, I will do it; + +for how would my name be profaned? + +I will not give my glory to another. + + + +Listen to me, O Jacob, + +and Israel my called: + +I am he. + +I am the first. + +I am also the last. + + +Yes, my hand has laid the foundation of the earth, + +and my right hand has spread out the heavens. + +when I call to them, they stand up together. + + + +Assemble yourselves, all of you, and hear! + +Who among them has declared these things? + +He whom Yahweh loves will do what he likes to Babylon, + +and his arm will be against the Chaldeans. + + +I, even I, have spoken. + +Yes, I have called him. + +I have brought him + +and he shall make his way prosperous. + + +

Come near to me and hear this: +

+ +From the beginning I have not spoken in secret; + +from the time that it happened, I was there.” + + +Now the Lord Yahweh has sent me + +with his Spirit. + + + +Yahweh, + +your Redeemer, + +the Holy One of Israel, says: + +I am Yahweh your God, + +who teaches you to profit, + +who leads you by the way that you should go. + + +Oh that you had listened to my commandments! + +Then your peace would have been like a river + +and your righteousness like the waves of the sea. + + +Your offspring also would have been as the sand + +and the descendants of your body like its grains. + +His name would not be cut off nor destroyed from before me.” + + + +Leave Babylon! + +Flee from the Chaldeans! + +With the sound of joyful shouting announce this, + +tell it even to the end of the earth; + +say, “Yahweh has redeemed his servant Jacob!” + + +They didn’t thirst when he led them through the deserts. + +He caused the waters to flow out of the rock for them. + +He also split the rock and the waters gushed out. + + + +There is no peace”, says Yahweh, “for the wicked.” + + + + +Listen, islands, to me. + +Listen, you peoples, from afar: + +Yahweh has called me from the womb; + +from the inside of my mother, he has mentioned my name. + + +He has made my mouth like a sharp sword. + +He has hidden me in the shadow of his hand. + +He has made me a polished shaft. + +He has kept me close in his quiver. + + +He said to me, “You are my servant, + +Israel, in whom I will be glorified.” + + +But I said, “I have labored in vain. + +I have spent my strength in vain for nothing; + +yet surely the justice due to me is with Yahweh, + +and my reward with my God.” + + + +Now Yahweh, he who formed me from the womb to be his servant, + +says to bring Jacob again to him, + +and to gather Israel to him, + +for I am honorable in Yahweh’s eyes, + +and my God has become my strength. + + +Indeed, he says, “It is too light a thing that you should be my servant to raise up the tribes of Jacob, + +and to restore the preserved of Israel. + +I will also give you as a light to the nations, + +that you may be my salvation to the end of the earth.” + + +Yahweh, the Redeemer of Israel, and his Holy One, + +says to him whom man despises, to him whom the nation abhors, to a servant of rulers: + +Kings shall see and rise up, + +princes, and they shall worship, + +because of Yahweh who is faithful, even the Holy One of Israel, who has chosen you.” + + + +Yahweh says, “I have answered you in an acceptable time. + +I have helped you in a day of salvation. + +I will preserve you and give you for a covenant of the people, + +to raise up the land, to make them inherit the desolate heritage, + + +saying to those who are bound, ‘Come out!’; + +to those who are in darkness, ‘Show yourselves!’ + +They shall feed along the paths, + +and their pasture shall be on all treeless heights. + + +They shall not hunger nor thirst; + +neither shall the heat nor sun strike them, + +for he who has mercy on them will lead them. + +He will guide them by springs of water. + + +I will make all my mountains a road, + +and my highways shall be exalted. + + +Behold, these shall come from afar, + +and behold, these from the north and from the west, + +and these from the land of Sinim.” + + +Sing, heavens, and be joyful, earth! + +Break out into singing, mountains! + +For Yahweh has comforted his people, + +and will have compassion on his afflicted. + + + +But Zion said, “Yahweh has forsaken me, + +and the Lord has forgotten me.” + + +Can a woman forget her nursing child, + +that she should not have compassion on the son of her womb? + +Yes, these may forget, + +yet I will not forget you! + + +Behold, I have engraved you on the palms of my hands. + +Your walls are continually before me. + + +Your children hurry. + +Your destroyers and those who devastated you will leave you. + + +Lift up your eyes all around, and see: + +all these gather themselves together, and come to you. + +As I live,” says Yahweh, “you shall surely clothe yourself with them all as with an ornament, + +and dress yourself with them, like a bride. + + +For, as for your waste and your desolate places, + +and your land that has been destroyed, + +surely now that land will be too small for the inhabitants, + +and those who swallowed you up will be far away. + + +The children of your bereavement will say in your ears, + +This place is too small for me. + +Give me a place to live in.’ + + +Then you will say in your heart, ‘Who has conceived these for me, since I have been bereaved of my children + +and am alone, an exile, and wandering back and forth? + +Who has brought these up? + +Behold, I was left alone. Where were these?’” + + + +The Lord Yahweh says, “Behold, I will lift up my hand to the nations, + +and lift up my banner to the peoples. + +They shall bring your sons in their bosom, + +and your daughters shall be carried on their shoulders. + + +Kings shall be your foster fathers, + +and their queens your nursing mothers. + +They will bow down to you with their faces to the earth, + +and lick the dust of your feet. + +Then you will know that I am Yahweh; + +and those who wait for me won’t be disappointed.” + + + +Shall the plunder be taken from the mighty, + +or the lawful captives be delivered? + + +But Yahweh says, “Even the captives of the mighty shall be taken away, + +and the plunder retrieved from the fierce, + +for I will contend with him who contends with you + +and I will save your children. + + +I will feed those who oppress you with their own flesh; + +and they will be drunk on their own blood, as with sweet wine. + +Then all flesh shall know that I, Yahweh, am your Savior + +and your Redeemer, the Mighty One of Jacob.” + + + + +Yahweh says, “Where is the bill of your mother’s divorce, with which I have put her away? + +Or to which of my creditors have I sold you? + +Behold, you were sold for your iniquities, + +and your mother was put away for your transgressions. + + +Why, when I came, was there no one? + +When I called, why was there no one to answer? + +Is my hand shortened at all, that it can’t 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 stink because there is no water, and die of thirst. + + +I clothe the heavens with blackness. + +I make sackcloth their covering.” + + + +The Lord Yahweh has given me the tongue of those who are taught, + +that I may know how to sustain with words him who is weary. + +He awakens morning by morning, + +he awakens my ear to hear as those who are taught. + + +The Lord Yahweh has opened my ear. + +I was not rebellious. + +I have not turned back. + + +I gave my back to those who beat me, + +and my cheeks to those who plucked off the hair. + +I didn’t hide my face from shame and spitting. + + +For the Lord Yahweh will help me. + +Therefore I have not been confounded. + +Therefore I have set my face like a flint, + +and I know that I won’t be disappointed. + + +He who justifies me is near. + +Who will bring charges against me? + +Let us stand up together. + +Who is my adversary? + +Let him come near to me. + + +Behold, the Lord Yahweh will help me! + +Who is he who will condemn me? + +Behold, they will all grow old like a garment. + +The moths will eat them up. + + + +Who among you fears Yahweh + +and obeys the voice of his servant? + +He who walks in darkness + +and has no light, + +let him trust in Yahweh’s name, + +and rely on his God. + + +Behold, all you who kindle a fire, + +who adorn yourselves with torches around yourselves, + +walk in the flame of your fire, + +and among the torches that you have kindled. + +You will have this from my hand: + +you will lie down in sorrow. + + + + +Listen to me, you who follow after righteousness, + +you who seek Yahweh. + +Look to the rock you were cut from, + +and to the quarry you were dug from. + + +Look to Abraham your father, + +and to Sarah who bore you; + +for when he was but one I called him, + +I blessed him, + +and made him many. + + +For Yahweh has comforted Zion. + +He has comforted all her waste places, + +and has made her wilderness like Eden, + +and her desert like the garden of Yahweh. + +Joy and gladness will be found in them, + +thanksgiving, and the voice of melody. + + + +Listen to me, my people; + +and hear me, my nation, + +for a law will go out from me, + +and I will establish my justice for a light to the peoples. + + +My righteousness is near. + +My salvation has gone out, + +and my arms will judge the peoples. + +The islands will wait for me, + +and they will trust my arm. + + +Lift up your eyes to the heavens, + +and look at the earth beneath; + +for the heavens will vanish away like smoke, + +and the earth will wear out like a garment. + +Its inhabitants will die in the same way, + +but my salvation will be forever, + +and my righteousness will not be abolished. + + + +Listen to me, you who know righteousness, + +the people in whose heart is my law. + +Don’t fear the reproach of men, + +and don’t be dismayed at their insults. + + +For the moth will eat them up like a garment, + +and the worm will eat them like wool; + +but my righteousness will be forever, + +and my salvation to all generations.” + + + +Awake, awake, put on strength, arm of Yahweh! + +Awake, as in the days of old, + +the generations of ancient times. + +Isn’t it you who cut Rahab in pieces, + +who pierced the monster? + + +Isn’t it you who dried up the sea, + +the waters of the great deep; + +who made the depths of the sea a way for the redeemed to pass over? + + +Those ransomed by Yahweh will return, + +and come with singing to Zion. + +Everlasting joy shall be on their heads. + +They will obtain gladness and joy. + +Sorrow and sighing shall flee away. + + + +I, even I, am he who comforts you. + +Who are you, that you are afraid of man who shall die, + +and of the son of man who will be made as grass? + + +Have you forgotten Yahweh your Maker, + +who stretched out the heavens, + +and laid the foundations of the earth? + +Do you live in fear continually all day because of the fury of the oppressor, + +when he prepares to destroy? + +Where is the fury of the oppressor? + + +The captive exile will speedily be freed. + +He will not die and go down into the pit. + +His bread won’t fail. + + +For I am Yahweh your God, who stirs up the sea + +so that its waves roar. + +Yahweh of Armies is his name. + + +I have put my words in your mouth + +and have covered you in the shadow of my hand, + +that I may plant the heavens, + +and lay the foundations of the earth, + +and tell Zion, ‘You are my people.’” + + + +Awake, awake! + +Stand up, Jerusalem, + +you who have drunk from Yahweh’s hand the cup of his wrath. + +You have drunken the bowl of the cup of staggering, + +and drained it. + + +There is no one to guide her among all the sons to whom she has given birth; + +and there is no one who takes her by the hand among all the sons whom she has brought up. + + +These two things have happened to you— + +who will grieve with you?— + +desolation and destruction, + +and famine and the sword. + +How can I comfort you? + + +Your sons have fainted. + +They lie at the head of all the streets, + +like an antelope in a net. + +They are full of Yahweh’s wrath, + +the rebuke of your God. + + + +Therefore now hear this, you afflicted, + +and drunken, but not with wine: + + +Your Lord Yahweh, + +your God who pleads the cause of his people, says, + +Behold, I have taken out of your hand the cup of staggering, + +even the bowl of the cup of my wrath. + +You will not drink it any more. + + +I will put it into the hand of those who afflict you, + +who have said to your soul, ‘Bow down, that we may walk over you;’ + +and you have laid your back as the ground, + +like a street to those who walk over.” + + + + +Awake, awake! Put on your strength, Zion. + +Put on your beautiful garments, Jerusalem, the holy city, + +for from now on the uncircumcised and the unclean will no more come into you. + + +Shake yourself from the dust! + +Arise, sit up, Jerusalem! + +Release yourself from the bonds of your neck, captive daughter of Zion! + + + +For Yahweh says, “You were sold for nothing; + +and you will be redeemed without money.” + + + +

For the Lord Yahweh says: +

+My people went down at the first into Egypt to live there; + +and the Assyrian has oppressed them without cause. + + + +Now therefore, what do I do here,” says Yahweh, + +seeing that my people are taken away for nothing? + +Those who rule over them mock,” says Yahweh, + +and my name is blasphemed continually all day long. + + +Therefore my people shall know my name. + +Therefore they shall know in that day that I am he who speaks. + +Behold, it is I.” + + + +How beautiful on the mountains are the feet of him who brings good news, + +who publishes peace, + +who brings good news, + +who proclaims salvation, + +who says to Zion, “Your God reigns!” + + +Your watchmen lift up their voice. + +Together they sing; + +for they shall see eye to eye when Yahweh returns to Zion. + + +Break out into joy! + +Sing together, you waste places of Jerusalem; + +for Yahweh has comforted his people. + +He has redeemed Jerusalem. + + +Yahweh has made his holy arm bare in the eyes of all the nations. + +All the ends of the earth have seen the salvation of our God. + + + +Depart! Depart! Go out from there! Touch no unclean thing! + +Go out from among her! + +Cleanse yourselves, you who carry Yahweh’s vessels. + + +For you shall not go out in haste, + +neither shall you go by flight; + +for Yahweh will go before you, + +and the God of Israel will be your rear guard. + + + +Behold, my servant will deal wisely. + +He will be exalted and lifted up, + +and will be very high. + + +Just as many were astonished at you— + +his appearance was marred more than any man, and his form more than the sons of men— + + +so he will cleanse52:15 +or, sprinkle many nations. + +Kings will shut their mouths at him; + +for they will see that which had not been told them, + +and they will understand that which they had not heard. + + + + +Who has believed our message? + +To whom has Yahweh’s arm been revealed? + + +For he grew up before him as a tender plant, + +and as a root out of dry ground. + +He has no good looks or majesty. + +When we see him, there is no beauty that we should desire him. + + +He was despised + +and rejected by men, + +a man of suffering + +and acquainted with disease. + +He was despised as one from whom men hide their face; + +and we didn’t respect him. + + + +Surely he has borne our sickness + +and carried our suffering; + +yet we considered him plagued, + +struck by God, and afflicted. + + +But he was pierced for our transgressions. + +He was crushed for our iniquities. + +The punishment that brought our peace was on him; + +and by his wounds we are healed. + + +All we like sheep have gone astray. + +Everyone has turned to his own way; + +and Yahweh has laid on him the iniquity of us all. + + + +He was oppressed, + +yet when he was afflicted he didn’t open his mouth. + +As a lamb that is led to the slaughter, + +and as a sheep that before its shearers is silent, + +so he didn’t open his mouth. + + +He was taken away by oppression and judgment. + +As for his generation, + +who considered that he was cut off out of the land of the living + +and stricken for the disobedience of my people? + + +They made his grave with the wicked, + +and with a rich man in his death, + +although he had done no violence, + +nor was any deceit in his mouth. + + + +Yet it pleased Yahweh to bruise him. + +He has caused him to suffer. + +When you make his soul an offering for sin, + +he will see his offspring. + +He will prolong his days + +and Yahweh’s pleasure will prosper in his hand. + + +After the suffering of his soul, + +he will see the light53:11 +So read the Dead Sea Scrolls and Septuagint. Masoretic Text omits “the light”. and be satisfied. + +My righteous servant will justify many by the knowledge of himself; + +and he will bear their iniquities. + + +Therefore I will give him a portion with the great. + +He will divide the plunder with the strong, + +because he poured out his soul to death + +and was counted with the transgressors; + +yet he bore the sins of many + +and made intercession for the transgressors. + + + + +Sing, barren, you who didn’t give birth! + +Break out into singing, and cry aloud, you who didn’t travail with child! + +For more are the children of the desolate than the children of the married wife,” says Yahweh. + + +Enlarge the place of your tent, + +and let them stretch out the curtains of your habitations; + +don’t spare; lengthen your cords, and strengthen your stakes. + + +For you will spread out on the right hand and on the left; + +and your offspring will possess the nations + +and settle in desolate cities. + + + +“Don’t be afraid, for you will not be ashamed. + +Don’t be confounded, for you will not be disappointed. + +For you will forget the shame of your youth. + +You will remember the reproach of your widowhood no more. + + +For your Maker is your husband; Yahweh of Armies is his name. + +The Holy One of Israel is your Redeemer. + +He will be called the God of the whole earth. + + +For Yahweh has called you as a wife forsaken and grieved in spirit, + +even a wife of youth, when she is cast off,” says your God. + + + +For a small moment I have forsaken you, + +but I will gather you with great mercies. + + +In overflowing wrath I hid my face from you for a moment, + +but with everlasting loving kindness I will have mercy on you,” says Yahweh your Redeemer. + + + +For this is like the waters of Noah to me; + +for as I have sworn that the waters of Noah will no more go over the earth, + +so I have sworn that I will not be angry with you, nor rebuke you. + + +For the mountains may depart, + +and the hills be removed, + +but my loving kindness will not depart from you, + +and my covenant of peace will not be removed,” + +says Yahweh who has mercy on you. + + + +You afflicted, tossed with storms, and not comforted, + +behold, I will set your stones in beautiful colors, + +and lay your foundations with sapphires. + + +I will make your pinnacles of rubies, + +your gates of sparkling jewels, + +and all your walls of precious stones. + + +All your children will be taught by Yahweh, + +and your children’s peace will be great. + + +You will be established in righteousness. + +You will be far from oppression, + +for you will not be afraid, + +and far from terror, + +for it shall not come near you. + + +Behold, they may gather together, but not by me. + +Whoever gathers together against you will fall because of you. + + + +Behold, I have created the blacksmith who fans the coals into flame, + +and forges a weapon for his work; + +and I have created the destroyer to destroy. + + +No weapon that is formed against you will prevail; + +and you will condemn every tongue that rises against you in judgment. + +This is the heritage of Yahweh’s servants, + +and their righteousness is of me,” says Yahweh. + + + + +Hey! Come, everyone who thirsts, to the waters! + +Come, he who has no money, buy, and eat! + +Yes, come, buy wine and milk without money and without price. + + +Why do you spend money for that which is not bread, + +and your labor for that which doesn’t satisfy? + +Listen diligently to me, and eat that which is good, + +and let your soul delight itself in richness. + + +Turn your ear, and come to me. + +Hear, and your soul will live. + +I will make an everlasting covenant with you, even the sure mercies of David. + + +Behold, I have given him for a witness to the peoples, + +a leader and commander to the peoples. + + +Behold, you shall call a nation that you don’t know; + +and a nation that didn’t know you shall run to you, + +because of Yahweh your God, + +and for the Holy One of Israel; + +for he has glorified you.” + + + +Seek Yahweh while he may be found. + +Call on him while he is near. + + +Let the wicked forsake his way, + +and the unrighteous man his thoughts. + +Let him return to Yahweh, and he will have mercy on him, + +to our God, for he will freely pardon. + + + +For my thoughts are not your thoughts, + +and your ways are not my ways,” says Yahweh. + + +For as the heavens are higher than the earth, + +so are my ways higher than your ways, + +and my thoughts than your thoughts. + + +For as the rain comes down and the snow from the sky, + +and doesn’t return there, but waters the earth, + +and makes it grow and bud, + +and gives seed to the sower and bread to the eater; + + +so is my word that goes out of my mouth: + +it will not return to me void, + +but it will accomplish that which I please, + +and it will prosper in the thing I sent it to do. + + +For you shall go out with joy, + +and be led out with peace. + +The mountains and the hills will break out before you into singing; + +and all the trees of the fields will clap their hands. + + +Instead of the thorn the cypress tree will come up; + +and instead of the brier the myrtle tree will come up. + +It will make a name for Yahweh, + +for an everlasting sign that will not be cut off.” + + + + +

Yahweh says: +

+Maintain justice + +and do what is right, + +for my salvation is near + +and my righteousness will soon be revealed. + + +Blessed is the man who does this, + +and the son of man who holds it fast; + +who keeps the Sabbath without profaning it + +and keeps his hand from doing any evil.” + + + +Let no foreigner who has joined himself to Yahweh speak, saying, + +Yahweh will surely separate me from his people.” + +Do not let the eunuch say, “Behold, I am a dry tree.” + + + +For Yahweh says, “To the eunuchs who keep my Sabbaths, + +choose the things that please me, + +and hold fast to my covenant, + + +I will give them in my house and within my walls a memorial and a name better than of sons and of daughters. + +I will give them an everlasting name that will not be cut off. + + + +Also the foreigners who join themselves to Yahweh + +to serve him, + +and to love Yahweh’s name, + +to be his servants, + +everyone who keeps the Sabbath from profaning it, + +and holds fast my covenant, + + +I will bring these to my holy mountain, + +and make them joyful in my house of prayer. + +Their burnt offerings and their sacrifices will be accepted on my altar; + +for my house will be called a house of prayer for all peoples.” + + +The Lord Yahweh, who gathers the outcasts of Israel, says, + +I will yet gather others to him, + +in addition to his own who are gathered.” + + + +All you animals of the field, + +come to devour, + +all you animals in the forest. + + +His watchmen are blind. + +They are all without knowledge. + +They are all mute dogs. + +They can’t bark— + +dreaming, lying down, loving to slumber. + + +Yes, the dogs are greedy. + +They can never have enough. + +They are shepherds who can’t understand. + +They have all turned to their own way, + +each one to his gain, from every quarter. + + +Come,” they say, “I will get wine, + +and we will fill ourselves with strong drink; + +and tomorrow will be as today, + +great beyond measure.” + + + + +The righteous perish, + +and no one lays it to heart. + +Merciful men are taken away, + +and no one considers that the righteous is taken away from the evil. + + +He enters into peace. + +They rest in their beds, + +each one who walks in his uprightness. + + + +But draw near here, you sons of a sorceress, + +you offspring of adulterers and prostitutes. + + +Whom do you mock? + +Against whom do you make a wide mouth + +and stick out your tongue? + +Aren’t you children of disobedience + +and offspring of falsehood, + + +you who inflame yourselves among the oaks, + +under every green tree; + +who kill the children in the valleys, + +under the clefts of the rocks? + + +Among the smooth stones of the valley is your portion. + +They, they are your lot. + +You have even poured a drink offering to them. + +You have offered an offering. + +Shall I be appeased for these things? + + +On a high and lofty mountain you have set your bed. + +You also went up there to offer sacrifice. + + +You have set up your memorial behind the doors and the posts, + +for you have exposed yourself to someone besides me, + +and have gone up. + +You have enlarged your bed + +and made a covenant for yourself with them. + +You loved what you saw on their bed. + + +You went to the king with oil, + +increased your perfumes, + +sent your ambassadors far off, + +and degraded yourself even to Sheol.57:9 +Sheol is the place of the dead. + + +You were wearied with the length of your ways; + +yet you didn’t say, ‘It is in vain.’ + +You found a reviving of your strength; + +therefore you weren’t faint. + + + +Whom have you dreaded and feared, + +so that you lie, + +and have not remembered me, nor laid it to your heart? + +Haven’t I held my peace for a long time, + +and you don’t fear me? + + +I will declare your righteousness; + +and as for your works, they will not benefit you. + + +When you cry, + +let those whom you have gathered deliver you, + +but the wind will take them. + +A breath will carry them all away, + +but he who takes refuge in me will possess the land, + +and will inherit my holy mountain.” + + + +He will say, “Build up, build up, prepare the way! + +Remove the stumbling-block out of the way of my people.” + + +For the high and lofty One who inhabits eternity, + +whose name is Holy, says: + +I dwell in the high and holy place, with him also who is of a contrite and humble spirit, + +to revive the spirit of the humble, + +and to revive the heart of the contrite. + + +For I will not contend forever, neither will I always be angry; + +for the spirit would faint before me, + +and the souls whom I have made. + + +I was angry because of the iniquity of his covetousness and struck him. + +I hid myself and was angry; + +and he went on backsliding in the way of his heart. + + +I have seen his ways, and will heal him. + +I will lead him also, + +and restore comforts to him and to his mourners. + + +I create the fruit of the lips: + +Peace, peace, to him who is far off and to him who is near,” + +says Yahweh; “and I will heal them.” + + +But the wicked are like the troubled sea; + +for it can’t rest and its waters cast up mire and mud. + + +There is no peace”, says my God, + +for the wicked.” + + + + +Cry aloud! Don’t spare! + +Lift up your voice like a trumpet! + +Declare to my people their disobedience, + +and to the house of Jacob their sins. + + +Yet they seek me daily, + +and delight to know my ways. + +As a nation that did righteousness, + +and didn’t forsake the ordinance of their God, + +they ask of me righteous judgments. + +They delight to draw near to God. + + +Why have we fasted,’ they say, ‘and you don’t see? + +Why have we afflicted our soul, and you don’t notice?’ + + +Behold, in the day of your fast you find pleasure, + +and oppress all your laborers. + + +Behold, you fast for strife and contention, + +and to strike with the fist of wickedness. + +You don’t fast today so as to make your voice to be heard on high. + + +Is this the fast that I have chosen? + +A day for a man to humble his soul? + +Is it to bow down his head like a reed, + +and to spread sackcloth and ashes under himself? + +Will you call this a fast, + +and an acceptable day to Yahweh? + + + +“Isn’t this the fast that I have chosen: + +to release the bonds of wickedness, + +to undo the straps of the yoke, + +to let the oppressed go free, + +and that you break every yoke? + + +Isn’t it to distribute your bread to the hungry, + +and that you bring the poor who are cast out to your house? + +When you see the naked, + +that you cover him; + +and that you not hide yourself from your own flesh? + + +Then your light will break out as the morning, + +and your healing will appear quickly; + +then your righteousness shall go before you, + +and Yahweh’s glory will be your rear guard. + + +Then you will call, and Yahweh will answer. + +You will cry for help, and he will say, ‘Here I am.’ + + +If you take away from among you the yoke, + +finger pointing, + +and speaking wickedly; + + +and if you pour out your soul to the hungry, + +and satisfy the afflicted soul, + +then your light will rise in darkness, + +and your obscurity will be as the noonday; + + +and Yahweh will guide you continually, + +satisfy your soul in dry places, + +and make your bones strong. + +You will be like a watered garden, + +and like a spring of water + +whose waters don’t fail. + + +Those who will be of you will build the old waste places. + +You will raise up the foundations of many generations. + +You will be called Repairer of the Breach, + +Restorer of Paths with Dwellings. + + + +“If you turn away your foot from the Sabbath, + +from doing your pleasure on my holy day, + +and call the Sabbath a delight, + +and the holy of Yahweh honorable, + +and honor it, + +not doing your own ways, + +nor finding your own pleasure, + +nor speaking your own words, + + +then you will delight yourself in Yahweh, + +and I will make you to ride on the high places of the earth, + +and I will feed you with the heritage of Jacob your father;” + +for Yahweh’s mouth has spoken it. + + + + +Behold, Yahweh’s hand is not shortened, that it can’t save; + +nor his ear dull, that it can’t hear. + + +But your iniquities have separated you and your God, + +and your sins have hidden his face from you, + +so that he will not hear. + + +For your hands are defiled with blood, + +and your fingers with iniquity. + +Your lips have spoken lies. + +Your tongue mutters wickedness. + + +No one sues in righteousness, + +and no one pleads in truth. + +They trust in vanity + +and speak lies. + +They conceive mischief + +and give birth to iniquity. + + +They hatch adderseggs + +and weave the spider’s web. + +He who eats of their eggs dies; + +and that which is crushed breaks out into a viper. + + +Their webs won’t become garments. + +They won’t cover themselves with their works. + +Their works are works of iniquity, + +and acts of violence are in their hands. + + +Their feet run to evil, + +and they hurry to shed innocent blood. + +Their thoughts are thoughts of iniquity. + +Desolation and destruction are in their paths. + + +They don’t know the way of peace; + +and there is no justice in their ways. + +They have made crooked paths for themselves; + +whoever goes in them doesn’t know peace. + + + +Therefore justice is far from us, + +and righteousness doesn’t overtake us. + +We look for light, but see darkness; + +for brightness, but we walk in obscurity. + + +We grope for the wall like the blind. + +Yes, we grope as those who have no eyes. + +We stumble at noon as if it were twilight. + +Among those who are strong, we are like dead men. + + +We all roar like bears + +and moan sadly like doves. + +We look for justice, but there is none, + +for salvation, but it is far off from us. + + + +For our transgressions are multiplied before you, + +and our sins testify against us; + +for our transgressions are with us, + +and as for our iniquities, we know them: + + +transgressing and denying Yahweh, + +and turning away from following our God, + +speaking oppression and revolt, + +conceiving and uttering from the heart words of falsehood. + + +Justice is turned away backward, + +and righteousness stands far away; + +for truth has fallen in the street, + +and uprightness can’t enter. + + +Yes, truth is lacking; + +and he who departs from evil makes himself a prey. + + +Yahweh saw it, + +and it displeased him that there was no justice. + + +He saw that there was no man, + +and wondered that there was no intercessor. + +Therefore his own arm brought salvation to him; + +and his righteousness sustained him. + + +He put on righteousness as a breastplate, + +and a helmet of salvation on his head. + +He put on garments of vengeance for clothing, + +and was clad with zeal as a mantle. + + +According to their deeds, + +he will repay as appropriate: + +wrath to his adversaries, + +recompense to his enemies. + +He will repay the islands their due. + + +So they will fear Yahweh’s name from the west, + +and his glory from the rising of the sun; + +for he will come as a rushing stream, + +which Yahweh’s breath drives. + + + +A Redeemer will come to Zion, + +and to those who turn from disobedience in Jacob,” says Yahweh. + + +

As for me, this is my covenant with them,” says Yahweh. “My Spirit who is on you, and my words which I have put in your mouth shall not depart out of your mouth, nor out of the mouth of your offspring, nor out of the mouth of your offspring’s offspring,” says Yahweh, “from now on and forever.” + +

+ + +Arise, shine; for your light has come, + +and Yahweh’s glory has risen on you! + + +For behold, darkness will cover the earth, + +and thick darkness the peoples; + +but Yahweh will arise on you, + +and his glory shall be seen on you. + + +Nations will come to your light, + +and kings to the brightness of your rising. + + + +Lift up your eyes all around, and see: + +they all gather themselves together. + +They come to you. + +Your sons will come from far away, + +and your daughters will be carried in arms. + + +Then you shall see and be radiant, + +and your heart will thrill and be enlarged; + +because the abundance of the sea will be turned to you. + +The wealth of the nations will come to you. + + +A multitude of camels will cover you, + +the dromedaries of Midian and Ephah. + +All from Sheba will come. + +They will bring gold and frankincense, + +and will proclaim the praises of Yahweh. + + +All the flocks of Kedar will be gathered together to you. + +The rams of Nebaioth will serve you. + +They will be accepted as offerings on my altar; + +and I will beautify my glorious house. + + + +Who are these who fly as a cloud, + +and as the doves to their windows? + + +Surely the islands will wait for me, + +and the ships of Tarshish first, + +to bring your sons from far away, + +their silver and their gold with them, + +for the name of Yahweh your God, + +and for the Holy One of Israel, + +because he has glorified you. + + + +Foreigners will build up your walls, + +and their kings will serve you; + +for in my wrath I struck you, + +but in my favor I have had mercy on you. + + +Your gates also shall be open continually; they shall not be shut day nor night, that men may bring to you the wealth of the nations, and their kings led captive. + + +For that nation and kingdom that will not serve you shall perish; yes, those nations shall be utterly wasted. + + + +The glory of Lebanon shall come to you, the cypress tree, the pine, and the box tree together, to beautify the place of my sanctuary; and I will make the place of my feet glorious. + + +The sons of those who afflicted you will come bowing to you; + +and all those who despised you will bow themselves down at the soles of your feet. + +They will call you Yahweh’s City, + +the Zion of the Holy One of Israel. + + + +Whereas you have been forsaken and hated, + +so that no one passed through you, + +I will make you an eternal excellency, + +a joy of many generations. + + +You will also drink the milk of the nations, + +and will nurse from royal breasts. + +Then you will know that I, Yahweh, am your Savior, + +your Redeemer, + +the Mighty One of Jacob. + + +For bronze I will bring gold; + +for iron I will bring silver; + +for wood, bronze, + +and for stones, iron. + +I will also make peace your governor, + +and righteousness your ruler. + + +Violence shall no more be heard in your land, + +nor desolation or destruction within your borders; + +but you will call your walls Salvation, + +and your gates Praise. + + +The sun will be no more your light by day, + +nor will the brightness of the moon give light to you, + +but Yahweh will be your everlasting light, + +and your God will be your glory. + + +Your sun will not go down any more, + +nor will your moon withdraw itself; + +for Yahweh will be your everlasting light, + +and the days of your mourning will end. + + +Then your people will all be righteous. + +They will inherit the land forever, + +the branch of my planting, + +the work of my hands, + +that I may be glorified. + + +The little one will become a thousand, + +and the small one a strong nation. + +I, Yahweh, will do this quickly in its time.” + + + + +The Lord Yahweh’s Spirit is on me, + +because Yahweh has anointed me to preach good news to the humble. + +He has sent me to bind up the broken hearted, + +to proclaim liberty to the captives + +and release to those who are bound,61:1 +LXX and DSS add: recovery of sight to the blind + + +to proclaim the year of Yahweh’s favor + +and the day of vengeance of our God, + +to comfort all who mourn, + + +to provide for those who mourn in Zion, + +to give to them a garland for ashes, + +the oil of joy for mourning, + +the garment of praise for the spirit of heaviness, + +that they may be called trees of righteousness, + +the planting of Yahweh, + +that he may be glorified. + + + +They will rebuild the old ruins. + +They will raise up the former devastated places. + +They will repair the ruined cities + +that have been devastated for many generations. + + +Strangers will stand and feed your flocks. + +Foreigners will work your fields and your vineyards. + + +But you will be called Yahweh’s priests. + +Men will call you the servants of our God. + +You will eat the wealth of the nations. + +You will boast in their glory. + + +Instead of your shame you will have double. + +Instead of dishonor, they will rejoice in their portion. + +Therefore in their land they will possess double. + +Everlasting joy will be to them. + + +For I, Yahweh, love justice. + +I hate robbery and iniquity. + +I will give them their reward in truth + +and I will make an everlasting covenant with them. + + +Their offspring will be known among the nations, + +and their offspring among the peoples. + +All who see them will acknowledge them, + +that they are the offspring which Yahweh has blessed.” + + + +I will greatly rejoice in Yahweh! + +My soul will be joyful in my God, + +for he has clothed me with the garments of salvation. + +He has covered me with the robe of righteousness, + +as a bridegroom decks himself with a garland + +and as a bride adorns herself with her jewels. + + +For as the earth produces its bud, + +and as the garden causes the things that are sown in it to spring up, + +so the Lord Yahweh will cause righteousness and praise to spring up before all the nations. + + + + +For Zion’s sake I will not hold my peace, + +and for Jerusalem’s sake I will not rest, + +until her righteousness shines out like the dawn, + +and her salvation like a burning lamp. + + +The nations will see your righteousness, + +and all kings your glory. + +You will be called by a new name, + +which Yahweh’s mouth will name. + + +You will also be a crown of beauty in Yahweh’s hand, + +and a royal diadem in your God’s hand. + + +You will not be called Forsaken any more, + +nor will your land be called Desolate any more; + +but you will be called Hephzibah,62:4 +Hephzibah means “I delight in her”. + +and your land Beulah;62:4 +Beulah means “married” + +for Yahweh delights in you, + +and your land will be married. + + +For as a young man marries a virgin, + +so your sons will marry you. + +As a bridegroom rejoices over his bride, + +so your God will rejoice over you. + + + +I have set watchmen on your walls, Jerusalem. + +They will never be silent day nor night. + +You who call on Yahweh, take no rest, + + +and give him no rest until he establishes, + +and until he makes Jerusalem a praise on the earth. + + + +Yahweh has sworn by his right hand, + +and by the arm of his strength, + +Surely I will no more give your grain to be food for your enemies, + +and foreigners will not drink your new wine, for which you have labored, + + +but those who have harvested it will eat it, and praise Yahweh. + +Those who have gathered it will drink it in the courts of my sanctuary.” + + + +Go through, go through the gates! + +Prepare the way of the people! + +Build up, build up the highway! + +Gather out the stones! + +Lift up a banner for the peoples. + + +Behold, Yahweh has proclaimed to the end of the earth: + +“Say to the daughter of Zion, + +Behold, your salvation comes! + +Behold, his reward is with him, + +and his recompense before him!’” + + +They will call themThe Holy People, + +Yahweh’s Redeemed”. + +You will be calledSought Out, + +A City Not Forsaken”. + + + + +Who is this who comes from Edom, + +with dyed garments from Bozrah? + +Who is this who is glorious in his clothing, + +marching in the greatness of his strength? + +It is I who speak in righteousness, + +mighty to save.” + + +Why is your clothing red, + +and your garments like him who treads in the wine vat? + + + +I have trodden the wine press alone. + +Of the peoples, no one was with me. + +Yes, I trod them in my anger + +and trampled them in my wrath. + +Their lifeblood is sprinkled on my garments, + +and I have stained all my clothing. + + +For the day of vengeance was in my heart, + +and the year of my redeemed has come. + + +I looked, and there was no one to help; + +and I wondered that there was no one to uphold. + +Therefore my own arm brought salvation to me. + +My own wrath upheld me. + + +I trod down the peoples in my anger + +and made them drunk in my wrath. + +I poured their lifeblood out on the earth.” + + + +I will tell of the loving kindnesses of Yahweh + +and the praises of Yahweh, + +according to all that Yahweh has given to us, + +and the great goodness toward the house of Israel, + +which he has given to them according to his mercies, + +and according to the multitude of his loving kindnesses. + + +For he said, “Surely, they are my people, + +children who will not deal falsely;” + +so he became their Savior. + + +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. + +He bore them, + +and carried them all the days of old. + + + +But they rebelled + +and grieved his Holy Spirit. + +Therefore he turned and became their enemy, + +and he himself fought against them. + + + +Then he remembered the days of old, + +Moses and his people, saying, + +“Where is he who brought them up out of the sea with the shepherds of his flock? + +Where is he who put his Holy Spirit among them?” + + +Who caused his glorious arm to be at Mosesright hand? + +Who divided the waters before them, to make himself an everlasting name? + + +Who led them through the depths, + +like a horse in the wilderness, + +so that they didn’t stumble? + + +As the livestock that go down into the valley, + +Yahweh’s Spirit caused them to rest. + +So you led your people to make yourself a glorious name. + + + +Look down from heaven, + +and see from the habitation of your holiness and of your glory. + +Where are your zeal and your mighty acts? + +The yearning of your heart and your compassion is restrained toward me. + + +For you are our Father, + +though Abraham doesn’t know us, + +and Israel does not acknowledge us. + +You, Yahweh, are our Father. + +Our Redeemer from everlasting is your name. + + +O Yahweh, why do you make us wander from your ways, + +and harden our heart from your fear? + +Return for your servantssake, + +the tribes of your inheritance. + + +Your holy people possessed it but a little while. + +Our adversaries have trodden down your sanctuary. + + +We have become like those over whom you never ruled, + +like those who were not called by your name. + + + + +Oh that you would tear the heavens, + +that you would come down, + +that the mountains might quake at your presence— + + +as when fire kindles the brushwood, + +and the fire causes the water to boil. + +Make your name known to your adversaries, + +that the nations may tremble at your presence! + + +When you did awesome things which we didn’t look for, + +you came down, and the mountains quaked at your presence. + + +For from of old men have not heard, + +nor perceived by the ear, + +nor has the eye seen a God besides you, + +who works for him who waits for him. + + +You meet him who rejoices and does righteousness, + +those who remember you in your ways. + +Behold, you were angry, and we sinned. + +We have been in sin for a long time. + +Shall we be saved? + + +For we have all become like one who is unclean, + +and all our righteousness is like a polluted garment. + +We all fade like a leaf; + +and our iniquities, like the wind, take us away. + + +There is no one who calls on your name, + +who stirs himself up to take hold of you; + +for you have hidden your face from us, + +and have consumed us by means of our iniquities. + + + +But now, Yahweh, you are our Father. + +We are the clay and you our potter. + +We all are the work of your hand. + + +Don’t be furious, Yahweh. + +Don’t remember iniquity forever. + +Look and see, we beg you, + +we are all your people. + + +Your holy cities have become a wilderness. + +Zion has become a wilderness, + +Jerusalem a desolation. + + +Our holy and our beautiful house where our fathers praised you + +is burned with fire. + +All our pleasant places are laid waste. + + +Will you hold yourself back for these things, Yahweh? + +Will you keep silent and punish us very severely? + + + + +I am inquired of by those who didn’t ask. + +I am found by those who didn’t seek me. + +I said, ‘See me, see me,’ to a nation that was not called by my name. + + +I have spread out my hands all day to a rebellious people, + +who walk in a way that is not good, + +after their own thoughts; + + +a people who provoke me to my face continually, + +sacrificing in gardens, + +and burning incense on bricks; + + +who sit among the graves, + +and spend nights in secret places; + +who eat pig’s meat, + +and broth of abominable things is in their vessels; + + +who say, ‘Stay by yourself, + +don’t come near to me, + +for I am holier than you.’ + +These are smoke in my nose, + +a fire that burns all day. + + + +Behold, it is written before me: + +I will not keep silence, + +but will repay, + +yes, I will repay into their bosom + + +your own iniquities and the iniquities of your fathers together”, says Yahweh, + +who have burned incense on the mountains, + +and blasphemed me on the hills. + +Therefore I will first measure their work into their bosom.” + + + +

Yahweh says, +

+As the new wine is found in the cluster, + +and one says, ‘Don’t destroy it, for a blessing is in it:’ + +so I will do for my servantssake, + +that I may not destroy them all. + + +I will bring offspring out of Jacob, + +and out of Judah an inheritor of my mountains. + +My chosen will inherit it, + +and my servants will dwell there. + + +Sharon will be a fold of flocks, + +and the valley of Achor a place for herds to lie down in, + +for my people who have sought me. + + + +But you who forsake Yahweh, + +who forget my holy mountain, + +who prepare a table for Fortune, + +and who fill up mixed wine to Destiny; + + +I will destine you to the sword, + +and you will all bow down to the slaughter; + +because when I called, you didn’t answer. + +When I spoke, you didn’t listen; + +but you did that which was evil in my eyes, + +and chose that in which I didn’t delight.” + + + +

Therefore the Lord Yahweh says, +

+Behold, my servants will eat, + +but you will be hungry; + +behold, my servants will drink, + +but you will be thirsty. + +Behold, my servants will rejoice, + +but you will be disappointed. + + +Behold, my servants will sing for joy of heart, + +but you will cry for sorrow of heart, + +and will wail for anguish of spirit. + + +You will leave your name for a curse to my chosen, + +and the Lord Yahweh will kill you. + +He will call his servants by another name, + + +so that he who blesses himself on the earth will bless himself in the God of truth; + +and he who swears on the earth will swear by the God of truth; + +because the former troubles are forgotten, + +and because they are hidden from my eyes. + + + +For, behold, I create new heavens and a new earth; + +and the former things will not be remembered, + +nor come into mind. + + +But be glad and rejoice forever in that which I create; + +for, behold, I create Jerusalem to be a delight, + +and her people a joy. + + +I will rejoice in Jerusalem, + +and delight in my people; + +and the voice of weeping and the voice of crying + +will be heard in her no more. + + + +No more will there be an infant who only lives a few days, + +nor an old man who has not filled his days; + +for the child will die one hundred years old, + +and the sinner being one hundred years old will be accursed. + + +They will build houses and inhabit them. + +They will plant vineyards and eat their fruit. + + +They will not build and another inhabit. + +They will not plant and another eat; + +for the days of my people will be like the days of a tree, + +and my chosen will long enjoy the work of their hands. + + +They will not labor in vain + +nor give birth for calamity; + +for they are the offspring of Yahweh’s blessed + +and their descendants with them. + + +It will happen that before they call, I will answer; + +and while they are yet speaking, I will hear. + + +The wolf and the lamb will feed together. + +The lion will eat straw like the ox. + +Dust will be the serpent’s food. + +They will not hurt nor destroy in all my holy mountain,” + +says Yahweh. + + + + +

Yahweh says: +

+Heaven is my throne, and the earth is my footstool. + +What kind of house will you build to me? + +Where will I rest? + + +For my hand has made all these things, + +and so all these things came to be,” says Yahweh: + +but I will look to this man, + +even to he who is poor and of a contrite spirit, + +and who trembles at my word. + + +He who kills an ox is as he who kills a man; + +he who sacrifices a lamb, as he who breaks a dog’s neck; + +he who offers an offering, as he who offers pig’s blood; + +he who burns frankincense, as he who blesses an idol. + +Yes, they have chosen their own ways, + +and their soul delights in their abominations. + + +I also will choose their delusions, + +and will bring their fears on them, + +because when I called, no one answered; + +when I spoke, they didn’t listen, + +but they did that which was evil in my eyes, + +and chose that in which I didn’t delight.” + + + +Hear Yahweh’s word, + +you who tremble at his word: + +Your brothers who hate you, + +who cast you out for my name’s sake, have said, + +‘Let Yahweh be glorified, + +that we may see your joy;’ + +but it is those who shall be disappointed. + + +A voice of tumult from the city, + +a voice from the temple, + +a voice of Yahweh that repays his enemies what they deserve. + + + +Before she travailed, she gave birth. + +Before her pain came, she delivered a son. + + +Who has heard of such a thing? + +Who has seen such things? + +Shall a land be born in one day? + +Shall a nation be born at once? + +For as soon as Zion travailed, + +she gave birth to her children. + + +Shall I bring to the birth, and not cause to be delivered?” says Yahweh. + +Shall I who cause to give birth shut the womb?” says your God. + + + +Rejoice with Jerusalem, and be glad for her, all you who love her. + +Rejoice for joy with her, all you who mourn over her; + + +that you may nurse and be satisfied at the comforting breasts; + +that you may drink deeply, + +and be delighted with the abundance of her glory.” + + + +For Yahweh says, “Behold, I will extend peace to her like a river, + +and the glory of the nations like an overflowing stream, + +and you will nurse. + +You will be carried on her side, + +and will be dandled on her knees. + + +As one whom his mother comforts, + +so I will comfort you. + +You will be comforted in Jerusalem.” + + + +You will see it, and your heart shall rejoice, + +and your bones will flourish like the tender grass. + +Yahweh’s hand will be known among his servants; + +and he will have indignation against his enemies. + + + +For, behold, Yahweh will come with fire, + +and his chariots will be like the whirlwind; + +to give his anger with fierceness, + +and his rebuke with flames of fire. + + +For Yahweh will execute judgment by fire and by his sword on all flesh; + +and those slain by Yahweh will be many. + + +

“Those who sanctify themselves and purify themselves to go to the gardens, following one in the middle, eating pig’s meat, abominable things, and the mouse, they shall come to an end together,” says Yahweh. + +

+

For I know their works and their thoughts. The time comes that I will gather all nations and languages, and they will come, and will see my glory. + +

+

I will set a sign among them, and I will send those who escape of them to the nations, to Tarshish, Pul, and Lud, who draw the bow, to Tubal and Javan, to far-away islands, who have not heard my fame, nor have seen my glory; and they shall declare my glory among the nations. + +They shall bring all your brothers out of all the nations for an offering to Yahweh, on horses, in chariots, in litters, on mules, and on camels, to my holy mountain Jerusalem, says Yahweh, as the children of Israel bring their offering in a clean vessel into Yahweh’s house. + +Of them I will also select priests and Levites,” says Yahweh. + +

+

For as the new heavens and the new earth, which I will make, shall remain before me,” says Yahweh, “so your offspring and your name shall remain. + +It shall happen that from one new moon to another, and from one Sabbath to another, all flesh will come to worship before me,” says Yahweh. + +They will go out, and look at the dead bodies of the men who have transgressed against me; for their worm will not die, nor will their fire be quenched, and they will be loathsome to all mankind.” + +

+
+24-JER-web.sfm World English Bible (WEB) +Jeremiah +The Book of Jeremiah +Jeremiah +Jer +

The Book of +

+

Jeremiah +

+ + +

The words of Jeremiah the son of Hilkiah, one of the priests who were in Anathoth in the land of Benjamin. + +Yahweh’s1:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word came to him in the days of Josiah the son of Amon, king of Judah, in the thirteenth year of his reign. + +It came also in the days of Jehoiakim the son of Josiah, king of Judah, to the end of the eleventh year of Zedekiah, the son of Josiah, king of Judah, to the carrying away of Jerusalem captive in the fifth month. + +Now Yahweh’s word came to me, saying, + +

+Before I formed you in the womb, I knew you. + +Before you were born, I sanctified you. + +I have appointed you a prophet to the nations.” + + +

Then I said, “Ah, Lord1:6 +The word translated “Lord” is “Adonai.” + Yahweh! Behold,1:6 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I don’t know how to speak; for I am a child.” + +

+

But Yahweh said to me, “Don’t say, ‘I am a child;’ for you must go to whomever I send you, and you must say whatever I command you. + +Don’t be afraid because of them, for I am with you to rescue you,” says Yahweh. + +

+

Then Yahweh stretched out his hand and touched my mouth. Then Yahweh said to me, “Behold, I have put my words in your mouth. + +Behold, I have today set you over the nations and over the kingdoms, to uproot and to tear down, to destroy and to overthrow, to build and to plant.” + +

+

Moreover Yahweh’s word came to me, saying, “Jeremiah, what do you see?” +

+

I said, “I see a branch of an almond tree.” + +

+

Then Yahweh said to me, “You have seen well; for I watch over my word to perform it.” + +

+

Yahweh’s word came to me the second time, saying, “What do you see?” +

+

I said, “I see a boiling cauldron; and it is tipping away from the north.” + +

+

Then Yahweh said to me, “Out of the north, evil will break out on all the inhabitants of the land. + +For behold, I will call all the families of the kingdoms of the north,” says Yahweh. +

+They will come, and they will each set his throne at the entrance of the gates of Jerusalem, + +and against all its walls all around, and against all the cities of Judah. + + +I will utter my judgments against them concerning all their wickedness, + +in that they have forsaken me, + +and have burned incense to other gods, + +and worshiped the works of their own hands. + + +

You therefore put your belt on your waist, arise, and say to them all that I command you. Don’t be dismayed at them, lest I dismay you before them. + +For behold, I have made you today a fortified city, an iron pillar, and bronze walls against the whole land—against the kings of Judah, against its princes, against its priests, and against the people of the land. + +They will fight against you, but they will not prevail against you; for I am with you”, says Yahweh, “to rescue you.” + +

+ + +

Yahweh’s word came to me, saying, + +Go and proclaim in the ears of Jerusalem, saying, ‘Yahweh says, +

+I remember for you the kindness of your youth, + +your love as a bride, + +how you went after me in the wilderness, + +in a land that was not sown. + + +Israel was holiness to Yahweh, + +the first fruits of his increase. + +All who devour him will be held guilty. + +Evil will come on them,”’ says Yahweh.” + + +

Hear Yahweh’s word, O house of Jacob, and all the families of the house of Israel! + +Yahweh says, +

+What unrighteousness have your fathers found in me, + +that they have gone far from me, + +and have walked after worthless vanity, + +and have become worthless? + + +They didn’t say, ‘Where is Yahweh who brought us up out of the land of Egypt, + +who 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 one passed through, + +and where no man lived?’ + + +I brought you into a plentiful land + +to eat its fruit and its goodness; + +but when you entered, you defiled my land, + +and made my heritage an abomination. + + +The priests didn’t say, ‘Where is Yahweh?’ + +and those who handle the law didn’t know me. + +The rulers also transgressed against me, + +and the prophets prophesied by Baal + +and followed things that do not profit. + + +Therefore I will yet contend with you,” says Yahweh, + +and I will contend with your children’s children. + + +For pass over to the islands of Kittim, and see. + +Send to Kedar, and consider diligently, + +and see if there has been such a thing. + + +Has a nation changed its gods, + +which really are no gods? + +But my people have changed their glory for that which doesn’t profit. + + +Be astonished, you heavens, at this + +and be horribly afraid. + +Be very desolate,” says Yahweh. + + +For my people have committed two evils: + +they have forsaken me, the spring of living waters, + +and cut out cisterns for themselves: broken cisterns that can’t hold water. + + +Is Israel a slave? + +Is he born into slavery? + +Why has he become a captive? + + +The young lions have roared at him and raised their voices. + +They have made his land waste. + +His cities are burned up, without inhabitant. + + +The children also of Memphis and Tahpanhes have broken the crown of your head. + + +“Haven’t you brought this on yourself, + +in that you have forsaken Yahweh your God,2:17 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). when he led you by the way? + + +Now what do you gain by going to Egypt, to drink the waters of the Shihor? + +Or why do you go on the way to Assyria, to drink the waters of the River?2:18 +i.e., the Euphrates River + + +Your own wickedness will correct you, + +and your backsliding will rebuke you. + +Know therefore and see that it is an evil and bitter thing, + +that you have forsaken Yahweh your God, + +and that my fear is not in you,” says the Lord, Yahweh of Armies. + + +For long ago I broke off your yoke, + +and burst your bonds. + +You said, ‘I will not serve;’ + +for on every high hill and under every green tree you bowed yourself, + +playing the prostitute. + + +Yet I had planted you a noble vine, + +a pure and faithful seed. + +How then have you turned into the degenerate branches of a foreign vine to me? + + +For though you wash yourself with lye, + +and use much soap, + +yet your iniquity is marked before me,” says the Lord Yahweh. + + +How can you say, ‘I am not defiled. + +I have not gone after the Baals’? + +See your way in the valley. + +Know what you have done. + +You are a swift dromedary traversing her ways, + +a wild donkey used to the wilderness, that sniffs the wind in her craving. + +When she is in heat, who can turn her away? + +All those who seek her will not weary themselves. In her month, they will find her. + + +Keep your feet from being bare, + +and your throat from thirst. + +But you said, ‘It is in vain. + +No, for I have loved strangers, + +and I will go after them.’ + + +As the thief is ashamed when he is found, + +so the house of Israel is ashamed— + +they, their kings, their princes, their priests, and their prophets, + + +who tell wood, ‘You are my father,’ + +and a stone, ‘You have given birth to me,’ + +for they have turned their back to me, + +and not their face, + +but in the time of their trouble they will say, ‘Arise, and save us!’ + + +But where are your gods that you have made for yourselves? + +Let them arise, if they can save you in the time of your trouble, + +for you have as many gods as you have towns, O Judah. + + +Why will you contend with me? + +You all have transgressed against me,” says Yahweh. + + +I have struck your children in vain. + +They received no correction. + +Your own sword has devoured your prophets, + +like a destroying lion. + + +Generation, consider Yahweh’s word. + +Have I been a wilderness to Israel? + +Or a land of thick darkness? + +Why do my people say, ‘We have broken loose. + +We will come to you no more’? + + +“Can a virgin forget her ornaments, + +or a bride her attire? + +Yet my people have forgotten me for days without number. + + +How well you prepare your way to seek love! + +Therefore you have even taught the wicked women your ways. + + +Also the blood of the souls of the innocent poor is found in your skirts. + +You didn’t find them breaking in, + +but it is because of all these things. + + +Yet you said, ‘I am innocent. + +Surely his anger has turned away from me.’ + +Behold, I will judge you, + +because you say, ‘I have not sinned.’ + + +Why do you go about so much to change your ways? + +You will be ashamed of Egypt also, + +as you were ashamed of Assyria. + + +You will also leave that place with your hands on your head; + +for Yahweh has rejected those in whom you trust, + +and you won’t prosper with them. + + + + +

They say, ‘If a man puts away his wife, and she goes from him, and becomes another man’s, should he return to her again?’ Wouldn’t that land be greatly polluted? But you have played the prostitute with many lovers; yet return again to me,” says Yahweh. + +

+

Lift up your eyes to the bare heights, and see! Where have you not been lain with? You have sat waiting for them by the road, as an Arabian in the wilderness. You have polluted the land with your prostitution and with your wickedness. + +Therefore the showers have been withheld and there has been no latter rain; yet you have had a prostitute’s forehead and you refused to be ashamed. + +Will you not from this time cry to me, ‘My Father, you are the guide of my youth!’? + +

+

“‘Will he retain his anger forever? Will he keep it to the end?’ Behold, you have spoken and have done evil things, and have had your way.” + +

+

Moreover, Yahweh said to me in the days of Josiah the king, “Have you seen that which backsliding Israel has done? She has gone up on every high mountain and under every green tree, and has played the prostitute there. + +I said after she had done all these things, ‘She will return to me;’ but she didn’t return, and her treacherous sister Judah saw it. + +I saw when, for this very cause, that backsliding Israel had committed adultery, I had put her away and given her a certificate of divorce, yet treacherous Judah, her sister, had no fear, but she also went and played the prostitute. + +Because she took her prostitution lightly, the land was polluted, and she committed adultery with stones and with wood. + +Yet for all this her treacherous sister, Judah, has not returned to me with her whole heart, but only in pretense,” says Yahweh. + +

+

Yahweh said to me, “Backsliding Israel has shown herself more righteous than treacherous Judah. + +Go, and proclaim these words toward the north, and say, ‘Return, you backsliding Israel,’ says Yahweh; ‘I will not look in anger on you, for I am merciful,’ says Yahweh. ‘I will not keep anger forever. + +Only acknowledge your iniquity, that you have transgressed against Yahweh your God, and have scattered your ways to the strangers under every green tree, and you have not obeyed my voice,’” says Yahweh. + +Return, backsliding children,” says Yahweh, “for I am a husband to you. I will take one of you from a city, and two from a family, and I will bring you to Zion. + +I will give you shepherds according to my heart, who will feed you with knowledge and understanding. + +It will come to pass, when you are multiplied and increased in the land in those days,” says Yahweh, “they will no longer say, ‘the ark of Yahweh’s covenant!’ It will not come to mind. They won’t remember it. They won’t miss it, nor will another be made. + +At that time they will call JerusalemYahweh’s Throne;’ and all the nations will be gathered to it, to Yahweh’s name, to Jerusalem. They will no longer walk after the stubbornness of their evil heart. + +In those days the house of Judah will walk with the house of Israel, and they will come together out of the land of the north to the land that I gave for an inheritance to your fathers. + +

+

But I said, ‘How I desire to put you among the children, and give you a pleasant land, a goodly heritage of the armies of the nations!’ and I said, ‘You shall call meMy Father”, and shall not turn away from following me.’ + +

+

Surely as a wife treacherously departs from her husband, so you have dealt treacherously with me, house of Israel,” says Yahweh. + +A voice is heard on the bare heights, the weeping and the petitions of the children of Israel; because they have perverted their way, they have forgotten Yahweh their God. + +Return, you backsliding children, and I will heal your backsliding. +

+

Behold, we have come to you; for you are Yahweh our God. + +Truly help from the hills, the tumult on the mountains, is in vain. Truly the salvation of Israel is in Yahweh our God. + +But the shameful thing has devoured the labor of our fathers from our youth, their flocks and their herds, their sons and their daughters. + +Let us lie down in our shame, and let our confusion cover us; for we have sinned against Yahweh our God, we and our fathers, from our youth even to this day. We have not obeyed Yahweh our God’s voice.” + +

+ + +

“If you will return, Israel,” says Yahweh, “if you will return to me, and if you will put away your abominations out of my sight; then you will not be removed; + +and you will swear, ‘As Yahweh lives,’ in truth, in justice, and in righteousness. The nations will bless themselves in him, and they will glory in him.” + +

+

For Yahweh says to the men of Judah and to Jerusalem, “Break up your fallow ground, and don’t sow among thorns. + +Circumcise yourselves to Yahweh, and take away the foreskins of your heart, you men of Judah and inhabitants of Jerusalem; lest my wrath go out like fire, and burn so that no one can quench it, because of the evil of your doings. + +Declare in Judah, and publish in Jerusalem; and say, ‘Blow the trumpet in the land!’ Cry aloud and say, ‘Assemble yourselves! Let’s go into the fortified cities!’ + +Set up a standard toward Zion. Flee for safety! Don’t wait; for I will bring evil from the north, and a great destruction.” + +

+

A lion has gone up from his thicket, and a destroyer of nations. He is on his way. He has gone out from his place, to make your land desolate, that your cities be laid waste, without inhabitant. + +For this, clothe yourself with sackcloth, lament and wail; for the fierce anger of Yahweh hasn’t turned back from us. + +It will happen at that day,” says Yahweh, “that the heart of the king will perish, along with the heart of the princes. The priests will be astonished, and the prophets will wonder.” + +

+

Then I said, “Ah, Lord Yahweh! Surely you have greatly deceived this people and Jerusalem, saying, ‘You will have peace;’ whereas the sword reaches to the heart.” + +

+

At that time it will be said to this people and to Jerusalem, “A hot wind blows from the bare heights in the wilderness toward the daughter of my people, not to winnow, nor to cleanse. + +A full wind from these will come for me. Now I will also utter judgments against them.” + +

+

Behold, he will come up as clouds, and his chariots will be as the whirlwind. His horses are swifter than eagles. Woe to us! For we are ruined. + +Jerusalem, wash your heart from wickedness, that you may be saved. How long will your evil thoughts lodge within you? + +For a voice declares from Dan, and publishes evil from the hills of Ephraim: + +Tell the nations, behold, publish against Jerusalem, ‘Watchers come from a far country, and raise their voice against the cities of Judah. + +As keepers of a field, they are against her all around, because she has been rebellious against me,’” says Yahweh. + +Your way and your doings have brought these things to you. This is your wickedness, for it is bitter, for it reaches to your heart.” + +

+

My anguish, my anguish! I am pained at my very heart! My heart trembles within me. I can’t hold my peace, because you have heard, O my soul, the sound of the trumpet, the alarm of war. + +Destruction on destruction is decreed, for the whole land is laid waste. Suddenly my tents are destroyed, and my curtains gone in a moment. + +How long will I see the standard and hear the sound of the trumpet? + +

+

For my people are foolish. They don’t know me. They are foolish children, and they have no understanding. They are skillful in doing evil, but they don’t know how to do good.” + +I saw the earth and, behold, it was waste and void, and the heavens, and they had no light. + +I saw the mountains, and behold, they trembled, and all the hills moved back and forth. + +I saw, and behold, there was no man, and all the birds of the sky had fled. + +I saw, and behold, the fruitful field was a wilderness, and all its cities were broken down at the presence of Yahweh, before his fierce anger. + +For Yahweh says, “The whole land will be a desolation; yet I will not make a full end. + +For this the earth will mourn, and the heavens above be black, because I have spoken it. I have planned it, and I have not repented, neither will I turn back from it.” + +

+

Every city flees for the noise of the horsemen and archers. They go into the thickets and climb up on the rocks. Every city is forsaken, and not a man dwells therein. + +You, when you are made desolate, what will you do? Though you clothe yourself with scarlet, though you deck yourself with ornaments of gold, though you enlarge your eyes with makeup, you make yourself beautiful in vain. Your lovers despise you. They seek your life. + +For I have heard a voice as of a woman in travail, the anguish as of her who gives birth to her first child, the voice of the daughter of Zion, who gasps for breath, who spreads her hands, saying, “Woe is me now! For my soul faints before the murderers.” + +

+ + +

Run back and forth through the streets of Jerusalem, and see now, and know, and seek in its wide places, if you can find a man, if there is anyone who does justly, who seeks truth, then I will pardon her. + +Though they say, ‘As Yahweh lives,’ surely they swear falsely.” + +

+

O Yahweh, don’t your eyes look on truth? You have stricken them, but they were not grieved. You have consumed them, but they have refused to receive correction. They have made their faces harder than a rock. They have refused to return. + +

+

Then I said, “Surely these are poor. They are foolish; for they don’t know Yahweh’s way, nor the law of their God. + +I will go to the great men and will speak to them, for they know the way of Yahweh, and the law of their God.” But these with one accord have broken the yoke, and burst the bonds. + +Therefore a lion out of the forest will kill them. A wolf of the evenings will destroy them. A leopard will watch against their cities. Everyone who goes out there will be torn in pieces, because their transgressions are many and their backsliding has increased. + +

+

“How can I pardon you? Your children have forsaken me, and sworn by what are no gods. When I had fed them to the full, they committed adultery, and assembled themselves in troops at the prostituteshouses. + +They were as fed horses roaming at large. Everyone neighed after his neighbor’s wife. + +Shouldn’t I punish them for these things?” says Yahweh. “Shouldn’t my soul be avenged on such a nation as this? + +

+

Go up on her walls, and destroy, but don’t make a full end. Take away her branches, for they are not Yahweh’s. + +For the house of Israel and the house of Judah have dealt very treacherously against me,” says Yahweh. + +

+

They have denied Yahweh, and said, “It is not he. Evil won’t come on us. We won’t see sword or famine. + +The prophets will become wind, and the word is not in them. Thus it will be done to them.” + +

+

Therefore Yahweh, the God of Armies says, “Because you speak this word, behold, I will make my words in your mouth fire, and this people wood, and it will devour them. + +Behold, I will bring a nation on you from far away, house of Israel,” says Yahweh. “It is a mighty nation. It is an ancient nation, a nation whose language you don’t know and don’t understand what they say. + +Their quiver is an open tomb. They are all mighty men. + +They will eat up your harvest and your bread, which your sons and your daughters should eat. They will eat up your flocks and your herds. They will eat up your vines and your fig trees. They will beat down your fortified cities in which you trust with the sword. + +

+

But even in those days,” says Yahweh, “I will not make a full end of you. + +It will happen when you say, ‘Why has Yahweh our God done all these things to us?’ Then you shall say to them, ‘Just as you have forsaken me and served foreign gods in your land, so you will serve strangers in a land that is not yours.’ + +

+

Declare this in the house of Jacob, and publish it in Judah, saying, + +Hear this now, foolish people without understanding, who have eyes, and don’t see, who have ears, and don’t hear: + +Don’t you fear me?’ says Yahweh; ‘Won’t you tremble at my presence, who have placed the sand for the bound of the sea by a perpetual decree, that it can’t pass it? Though its waves toss themselves, yet they can’t prevail. Though they roar, they still can’t pass over it.’ + +

+

But this people has a revolting and a rebellious heart. They have revolted and gone. + +They don’t say in their heart, ‘Let’s now fear Yahweh our God, who gives rain, both the former and the latter, in its season, who preserves to us the appointed weeks of the harvest.’ + +

+

Your iniquities have turned away these things, and your sins have withheld good from you. + +For wicked men are found among my people. They watch, as fowlers lie in wait. They set a trap. They catch men. + +As a cage is full of birds, so are their houses full of deceit. Therefore they have become great, and grew rich. + +They have grown fat. They shine; yes, they excel in deeds of wickedness. They don’t plead the cause, the cause of the fatherless, that they may prosper; and they don’t defend the rights of the needy. + +

+

“Shouldn’t I punish for these things?” says Yahweh. “Shouldn’t my soul be avenged on such a nation as this? + +

+

An astonishing and horrible thing has happened in the land. + +The prophets prophesy falsely, and the priests rule by their own authority; and my people love to have it so. What will you do in the end of it? + +

+ + +

Flee for safety, you children of Benjamin, out of the middle of Jerusalem! Blow the trumpet in Tekoa and raise up a signal on Beth Haccherem, for evil looks out from the north with a great destruction. + +I will cut off the beautiful and delicate one, the daughter of Zion. + +Shepherds with their flocks will come to her. They will pitch their tents against her all around. They will feed everyone in his place.” + +

+

Prepare war against her! Arise! Let’s go up at noon. Woe to us! For the day declines, for the shadows of the evening are stretched out. + +Arise! Let’s go up by night, and let’s destroy her palaces.” + +For Yahweh of Armies said, “Cut down trees, and cast up a mound against Jerusalem. This is the city to be visited. She is filled with oppression within herself. + +As a well produces its waters, so she produces her wickedness. Violence and destruction is heard in her. Sickness and wounds are continually before me. + +Be instructed, Jerusalem, lest my soul be alienated from you, lest I make you a desolation, an uninhabited land.” + +

+

Yahweh of Armies says, “They will thoroughly glean the remnant of Israel like a vine. Turn again your hand as a grape gatherer into the baskets.” + +

+

To whom should I speak and testify, that they may hear? Behold, their ear is uncircumcised, and they can’t listen. Behold, Yahweh’s word has become a reproach to them. They have no delight in it. + +Therefore I am full of Yahweh’s wrath. I am weary with holding it in. +

+Pour it out on the children in the street, + +and on the assembly of young men together; + +for even the husband with the wife will be taken, + +the aged with him who is full of days. + + +Their houses will be turned to others, + +their fields and their wives together; + +for I will stretch out my hand on the inhabitants of the land, says Yahweh.” + + +For from their least even to their greatest, everyone is given to covetousness. + +From the prophet even to the priest, everyone deals falsely. + + +They have healed also the hurt of my people superficially, + +saying, ‘Peace, peace!’ when there is no peace. + + +Were they ashamed when they had committed abomination? + +No, they were not at all ashamed, neither could they blush. + +Therefore they will fall among those who fall. + +When I visit them, they will be cast down,” says Yahweh. + + +

Yahweh says, “Stand in the ways and see, and ask for the old paths, ‘Where is the good way?’ and walk in it, and you will find rest for your souls. But they said, ‘We will not walk in it.’ + +I set watchmen over you, saying, ‘Listen to the sound of the trumpet!’ But they said, ‘We will not listen!’ + +Therefore hear, you nations, and know, congregation, what is among them. + +Hear, earth! Behold, I will bring evil on this people, even the fruit of their thoughts, because they have not listened to my words; and as for my law, they have rejected it. + +To what purpose does frankincense from Sheba come to me, and the sweet cane from a far country? Your burnt offerings are not acceptable, and your sacrifices are not pleasing to me.” + +

+

Therefore Yahweh says, “Behold, I will lay stumbling blocks before this people. The fathers and the sons together will stumble against them. The neighbor and his friend will perish.” + +Yahweh says, “Behold, a people comes from the north country. A great nation will be stirred up from the uttermost parts of the earth. + +They take hold of bow and spear. They are cruel, and have no mercy. Their voice roars like the sea, and they ride on horses, everyone set in array, as a man to the battle, against you, daughter of Zion.” + +

+

We have heard its report. Our hands become feeble. Anguish has taken hold of us, and pains as of a woman in labor. + +Don’t go out into the field or walk by the way; for the sword of the enemy and terror are on every side. + +Daughter of my people, clothe yourself with sackcloth, and wallow in ashes! Mourn, as for an only son, most bitter lamentation, for the destroyer will suddenly come on us. + +

+

I have made you a tester of metals and a fortress among my people, that you may know and try their way. + +They are all grievous rebels, going around to slander. They are bronze and iron. All of them deal corruptly. + +The bellows blow fiercely. The lead is consumed in the fire. In vain they go on refining, for the wicked are not plucked away. + +Men will call them rejected silver, because Yahweh has rejected them.” + +

+ + +

The word that came to Jeremiah from Yahweh, saying, + +Stand in the gate of Yahweh’s house, and proclaim this word there, and say, ‘Hear Yahweh’s word, all you of Judah, who enter in at these gates to worship Yahweh.’” + +

+

Yahweh of Armies, the God of Israel says, “Amend your ways and your doings, and I will cause you to dwell in this place. + +Don’t trust in lying words, saying, ‘Yahweh’s temple, Yahweh’s temple, Yahweh’s temple, are these.’ + +For if you thoroughly amend your ways and your doings, if you thoroughly execute justice between a man and his neighbor; + +if you don’t oppress the foreigner, the fatherless, and the widow, and don’t shed innocent blood in this place, and don’t walk after other gods to your own hurt, + +then I will cause you to dwell in this place, in the land that I gave to your fathers, from of old even forever more. + +Behold, you trust in lying words that can’t profit. + +Will you steal, murder, commit adultery, swear falsely, burn incense to Baal, and walk after other gods that you have not known, + +then come and stand before me in this house, which is called by my name, and say, ‘We are delivered,’ that you may do all these abominations? + +Has this house, which is called by my name, become a den of robbers in your eyes? Behold, I myself have seen it,” says Yahweh. + +

+

But go now to my place which was in Shiloh, where I caused my name to dwell at the first, and see what I did to it for the wickedness of my people Israel. + +Now, because you have done all these works,” says Yahweh, “and I spoke to you, rising up early and speaking, but you didn’t hear; and I called you, but you didn’t answer; + +therefore I will do to the house which is called by my name, in which you trust, and to the place which I gave to you and to your fathers, as I did to Shiloh. + +I will cast you out of my sight, as I have cast out all your brothers, even the whole offspring7:15 +or, seed of Ephraim. + +

+

Therefore don’t pray for this people. Don’t lift up a cry or prayer for them or make intercession to me; for I will not hear you. + +Don’t you see what they do in the cities of Judah and in the streets of Jerusalem? + +The children gather wood, and the fathers kindle the fire, and the women knead the dough, to make cakes to the queen of the sky, and to pour out drink offerings to other gods, that they may provoke me to anger. + +Do they provoke me to anger?” says Yahweh. “Don’t they provoke themselves, to the confusion of their own faces?” + +

+

Therefore the Lord Yahweh says: “Behold, my anger and my wrath will be poured out on this place, on man, on animal, on the trees of the field, and on the fruit of the ground; and it will burn and will not be quenched.” + +

+

Yahweh of Armies, the God of Israel says: “Add your burnt offerings to your sacrifices and eat meat. + +For I didn’t speak to your fathers or command them in the day that I brought them out of the land of Egypt concerning burnt offerings or sacrifices; + +but this thing I commanded them, saying, ‘Listen to my voice, and I will be your God, and you shall be my people. Walk in all the way that I command you, that it may be well with you.’ + +But they didn’t listen or turn their ear, but walked in their own counsels and in the stubbornness of their evil heart, and went backward, and not forward. + +Since the day that your fathers came out of the land of Egypt to this day, I have sent to you all my servants the prophets, daily rising up early and sending them. + +Yet they didn’t listen to me or incline their ear, but made their neck stiff. They did worse than their fathers. + +

+

You shall speak all these words to them, but they will not listen to you. You shall also call to them, but they will not answer you. + +You shall tell them, ‘This is the nation that has not listened to Yahweh their God’s voice, nor received instruction. Truth has perished, and is cut off from their mouth.’ + +Cut off your hair, and throw it away, and take up a lamentation on the bare heights; for Yahweh has rejected and forsaken the generation of his wrath. + +

+

For the children of Judah have done that which is evil in my sight,” says Yahweh. “They have set their abominations in the house which is called by my name, to defile it. + +They have built the high places of Topheth, which is in the valley of the son of Hinnom, to burn their sons and their daughters in the fire, which I didn’t command, nor did it come into my mind. + +Therefore behold, the days come”, says Yahweh, “that it will no more be called ‘TophethorThe valley of the son of Hinnom’, butThe valley of Slaughter’; for they will bury in Topheth until there is no place to bury. + +The dead bodies of this people will be food for the birds of the sky, and for the animals of the earth. No one will frighten them away. + +Then I will 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 will become a waste.” + +

+ + +

At that time,” says Yahweh, “they will bring the bones of the kings of Judah, the bones of his princes, the bones of the priests, the bones of the prophets, and the bones of the inhabitants of Jerusalem, out of their graves. + +They will spread them before the sun, the moon, and all the army of the sky, which they have loved, which they have served, after which they have walked, which they have sought, and which they have worshiped. They will not be gathered or be buried. They will be like dung on the surface of the earth. + +Death will be chosen rather than life by all the residue that remain of this evil family, that remain in all the places where I have driven them,” says Yahweh of Armies. + +Moreover you shall tell them, ‘Yahweh says: +

+“‘Do men fall, and not rise up again? + +Does one turn away, and not return? + + +Why then have the people of Jerusalem fallen back by a perpetual backsliding? + +They cling to deceit. + +They refuse to return. + + +I listened and heard, but they didn’t say what is right. + +No one repents of his wickedness, saying, “What have I done?” + +Everyone turns to his course, + +as a horse that rushes headlong in the battle. + + +Yes, the stork in the sky knows her appointed times. + +The turtledove, the swallow, and the crane observe the time of their coming; + +but my people don’t know Yahweh’s law. + + + +“‘How do you say, “We are wise, and Yahweh’s law is with us”? + +But, behold, the false pen of the scribes has made that a lie. + + +The wise men are disappointed. + +They are dismayed and trapped. + +Behold, they have rejected Yahweh’s word. + +What kind of wisdom is in them? + + +Therefore I will give their wives to others + +and their fields to those who will possess them. + +For everyone from the least even to the greatest is given to covetousness; + +from the prophet even to the priest everyone deals falsely. + + +They have healed the hurt of the daughter of my people slightly, saying, + +Peace, peace,” when there is no peace. + + +Were they ashamed when they had committed abomination? + +No, they were not at all ashamed. + +They couldn’t blush. + +Therefore they will fall among those who fall. + +In the time of their visitation they will be cast down, says Yahweh. + + + +“‘I will utterly consume them, says Yahweh. + +No grapes will be on the vine, + +no figs on the fig tree, + +and the leaf will fade. + +The things that I have given them + +will pass away from them.’” + + + +Why do we sit still? + +Assemble yourselves! + +Let’s enter into the fortified cities, + +and let’s be silent there; + +for Yahweh our God has put us to silence, + +and given us poisoned water to drink, + +because we have sinned against Yahweh. + + +We looked for peace, but no good came; + +and for a time of healing, and behold, dismay! + + +The snorting of his horses is heard from Dan. + +The whole land trembles at the sound of the neighing of his strong ones; + +for they have come, and have devoured the land and all that is in it, + +the city and those who dwell therein.” + + +For, behold, I will send serpents, + +adders among you, + +which will not be charmed; + +and they will bite you,” says Yahweh. + + +Oh that I could comfort myself against sorrow! + +My heart is faint within me. + + +Behold, the voice of the cry of the daughter of my people from a land that is very far off: + +“Isn’t Yahweh in Zion? + +Isn’t her King in her?” + + +Why have they provoked me to anger with their engraved images, + +and with foreign idols?” + + + +The harvest is past. + +The summer has ended, + +and we are not saved.” + + + +For the hurt of the daughter of my people, I am hurt. + +I mourn. + +Dismay has taken hold of me. + + +Is there no balm in Gilead? + +Is there no physician there? + +Why then isn’t the health of the daughter of my people recovered? + + + + +Oh that my head were waters, + +and my eyes a spring of tears, + +that I might weep day and night + +for the slain of the daughter of my people! + + +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 are all adulterers, + +an assembly of treacherous men. + + +They bend their tongue, + +as their bow, for falsehood. + +They have grown strong in the land, + +but not for truth; + +for they proceed from evil to evil, + +and they don’t know me,” says Yahweh. + + +“Everyone beware of his neighbor, + +and don’t trust in any brother; + +for every brother will utterly supplant, + +and every neighbor will go around like a slanderer. + + +Friends deceive each other, + +and will not speak the truth. + +They have taught their tongue to speak lies. + +They weary themselves committing iniquity. + + +Your habitation is in the middle of deceit. + +Through deceit, they refuse to know me,” says Yahweh. + + +

Therefore Yahweh of Armies says, +

+“Behold, I will melt them and test them; + +for how should I deal with the daughter of my people? + + +Their tongue is a deadly arrow. + +It speaks deceit. + +One speaks peaceably to his neighbor with his mouth, + +but in his heart, he waits to ambush him. + + +Shouldn’t I punish them for these things?” says Yahweh. + +“Shouldn’t my soul be avenged on a nation such as this? + + +I will weep and wail for the mountains, + +and lament for the pastures of the wilderness, + +because they are burned up, so that no one passes through; + +Men can’t hear the voice of the livestock. + +Both the birds of the sky and the animals have fled. + +They are gone. + + + +I will make Jerusalem heaps, + +a dwelling place of jackals. + +I will make the cities of Judah a desolation, + +without inhabitant.” + + +

Who is wise enough to understand this? Who is he to whom the mouth of Yahweh has spoken, that he may declare it? Why has the land perished and burned up like a wilderness, so that no one passes through? + +

+

Yahweh says, “Because they have forsaken my law which I set before them, and have not obeyed my voice or walked in my ways, + +but have walked after the stubbornness of their own heart and after the Baals, which their fathers taught them.” + +Therefore Yahweh of Armies, the God of Israel, says, “Behold, I will feed them, even this people, with wormwood and give them poisoned water to drink. + +I will scatter them also among the nations, whom neither they nor their fathers have known. I will send the sword after them, until I have consumed them.” + +

+

Yahweh of Armies says, +

+Consider, and call for the mourning women, that they may come. + +Send for the skillful women, that they may come. + + +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. + + +For a voice of wailing is heard out of Zion, + +How we are ruined! + +We are greatly confounded + +because we have forsaken the land, + +because they have cast down our dwellings.’” + + + +Yet hear Yahweh’s word, you women. + +Let your ear receive the word of his mouth. + +Teach your daughters wailing. + +Everyone teach her neighbor a lamentation. + + +For death has come up into our windows. + +It has entered into our palaces + +to cut off the children from outside, + +and the young men from the streets. + + +

Speak, “Yahweh says, +

+“‘The dead bodies of men will fall as dung on the open field, + +and as the handful after the harvester. + +No one will gather them.’” + + +

Yahweh says, +

+“Don’t let the wise man glory in his wisdom. + +Don’t let the mighty man glory in his might. + +Don’t let the rich man glory in his riches. + + +But let him who glories glory in this, + +that he has understanding, and knows me, + +that I am Yahweh who exercises loving kindness, justice, and righteousness on the earth, + +for I delight in these things,” says Yahweh. + + +

“Behold, the days come,” says Yahweh, “that I will punish all those who are circumcised only in their flesh: + +Egypt, Judah, Edom, the children of Ammon, Moab, and all who have the corners of their hair cut off, who dwell in the wilderness, for all the nations are uncircumcised, and all the house of Israel are uncircumcised in heart.” + +

+ + +

Hear the word which Yahweh speaks to you, house of Israel! + +Yahweh says, +

+“Don’t learn the way of the nations, + +and don’t be dismayed at the signs of the sky; + +for the nations are dismayed at them. + + +For the customs of the peoples are vanity; + +for one cuts a tree out of the forest, + +the work of the hands of the workman with the ax. + + +They deck it with silver and with gold. + +They fasten it with nails and with hammers, + +so that it can’t move. + + +They are like a palm tree, of turned work, + +and don’t speak. + +They must be carried, + +because they can’t move. + +Don’t be afraid of them; + +for they can’t do evil, + +neither is it in them to do good.” + + +There is no one like you, Yahweh. + +You are great, + +and your name is great in might. + + +Who shouldn’t fear you, + +King of the nations? + +For it belongs to you. + +Because among all the wise men of the nations, + +and in all their royal estate, + +there is no one like you. + + +But they are together brutish and foolish, + +instructed by idols! + +It is just wood. + + +There is silver beaten into plates, which is brought from Tarshish, + +and gold from Uphaz, + +the work of the engraver and of the hands of the goldsmith. + +Their clothing is blue and purple. + +They are all the work of skillful men. + + +But Yahweh is the true God. + +He is the living God, + +and an everlasting King. + +At his wrath, the earth trembles. + +The nations aren’t able to withstand his indignation. + + +

You shall say this to them: ‘The gods that have not made the heavens and the earth will perish from the earth, and from under the heavens.’” + +

+God has made the earth by his power. + +He has established the world by his wisdom, + +and by his understanding has he stretched out the heavens. + + +When he utters his voice, + +the waters in the heavens roar, + +and he causes the vapors to ascend from the ends of the earth. + +He makes lightnings for the rain, + +and brings the wind out of his treasuries. + + +Every man has become brutish and without knowledge. + +Every goldsmith is disappointed by his engraved image; + +for his molten image is falsehood, + +and there is no breath in them. + + +They are vanity, a work of delusion. + +In the time of their visitation they will perish. + + +The portion of Jacob is not like these; + +for he is the maker of all things; + +and Israel is the tribe of his inheritance. + +Yahweh of Armies is his name. + + +Gather up your wares out of the land, + +you who live under siege. + + +For Yahweh says, + +Behold, I will sling out the inhabitants of the land at this time, + +and will distress them, that they may feel it.” + + +Woe is me because of my injury! + +My wound is serious; + +but I said, + +“Truly this is my grief, and I must bear it.” + + +My tent has been destroyed, + +and all my cords are broken. + +My children have gone away from me, and they are no more. + +There is no one to spread my tent any more, + +to set up my curtains. + + +For the shepherds have become brutish, + +and have not inquired of Yahweh. + +Therefore they have not prospered, + +and all their flocks have scattered. + + +The voice of news, behold, it comes, + +and a great commotion out of the north country, + +to make the cities of Judah a desolation, + +a dwelling place of jackals. + + +Yahweh, I know that the way of man is not in himself. + +It is not in man who walks to direct his steps. + + +Yahweh, correct me, but gently; + +not in your anger, + +lest you reduce me to nothing. + + +Pour out your wrath on the nations that don’t know you, + +and on the families that don’t call on your name; + +for they have devoured Jacob. + +Yes, they have devoured him, consumed him, + +and have laid waste his habitation. + + + + +

The word that came to Jeremiah from Yahweh, saying, + +Hear the words of this covenant, and speak to the men of Judah, and to the inhabitants of Jerusalem; + +and say to them, Yahweh, the God of Israel says: ‘Cursed is the man who doesn’t hear the words of this covenant, + +which I commanded your fathers in the day that I brought them out of the land of Egypt, out of the iron furnace,’ saying, ‘Obey my voice and do them, according to all which I command you; so you shall be my people, and I will be your God; + +that I may establish the oath which I swore to your fathers, to give them a land flowing with milk and honey,’ as it is today.” +

+

Then I answered, and said, “Amen, Yahweh.” + +

+

Yahweh said to me, “Proclaim all these words in the cities of Judah, and in the streets of Jerusalem, saying, ‘Hear the words of this covenant, and do them. + +For I earnestly protested to your fathers in the day that I brought them up out of the land of Egypt, even to this day, rising early and protesting, saying, “Obey my voice.” + +Yet they didn’t obey, nor turn their ear, but everyone walked in the stubbornness of their evil heart. Therefore I brought on them all the words of this covenant, which I commanded them to do, but they didn’t do them.’” + +

+

Yahweh said to me, “A conspiracy is found among the men of Judah, and among the inhabitants of Jerusalem. + +They have turned back to the iniquities of their forefathers, who refused to hear my words. They have gone 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. + +Therefore Yahweh says, ‘Behold, I will bring evil on them which they will not be able to escape; and they will cry to me, but I will not listen to them. + +Then the cities of Judah and the inhabitants of Jerusalem will go and cry to the gods to which they offer incense, but they will not save them at all in the time of their trouble. + +For according to the number of your cities are your gods, Judah; and according to the number of the streets of Jerusalem you have set up altars to the shameful thing, even altars to burn incense to Baal.’ + +

+

Therefore don’t pray for this people. Don’t lift up cry or prayer for them; for I will not hear them in the time that they cry to me because of their trouble. + +

+What has my beloved to do in my house, + +since she has behaved lewdly with many, + +and the holy flesh has passed from you? + +When you do evil, + +then you rejoice.” + + + +Yahweh called your name, “A green olive tree, + +beautiful with goodly fruit.” + +With the noise of a great roar he has kindled fire on it, + +and its branches are broken. + + +

For Yahweh of Armies, who planted you, has pronounced evil against you, because of the evil of the house of Israel and of the house of Judah, which they have done to themselves in provoking me to anger by offering incense to Baal. + +

+

Yahweh gave me knowledge of it, and I knew it. Then you showed me their doings. + +But I was like a gentle lamb that is led to the slaughter. I didn’t know that they had devised plans against me, saying, +

+Let’s destroy the tree with its fruit, + +and let’s cut him off from the land of the living, + +that his name may be no more remembered.” + + +But, Yahweh of Armies, who judges righteously, + +who tests the heart and the mind, + +I will see your vengeance on them; + +for to you I have revealed my cause. + + +

Therefore Yahweh says concerning the men of Anathoth, who seek your life, saying, ‘You shall not prophesy in Yahweh’s name, that you not die by our hand’— + +therefore Yahweh of Armies says, ‘Behold, I will punish them. The young men will die by the sword. Their sons and their daughters will die by famine. + +There will be no remnant to them, for I will bring evil on the men of Anathoth, even the year of their visitation.’” + +

+ + +You are righteous, Yahweh, + +when I contend with you; + +yet I would like to plead a case with you. + +Why does the way of the wicked prosper? + +Why are they all at ease who deal very treacherously? + + +You have planted them. Yes, they have taken root. + +They grow. Yes, they produce fruit. + +You are near in their mouth, + +and far from their heart. + + +But you, Yahweh, know me. + +You see me, and test my heart toward you. + +Pull them out like sheep for the slaughter, + +and prepare them for the day of slaughter. + + +How long will the land mourn, + +and the herbs of the whole country wither? + +Because of the wickedness of those who dwell therein, + +the animals and birds are consumed; + +because they said, + +He won’t see our latter end.” + + +If you have run with the footmen, + +and they have wearied you, + +then how can you contend with horses? + +Though in a land of peace you are secure, + +yet how will you do in the pride of the Jordan? + + +For even your brothers, and the house of your father, + +even they have dealt treacherously with you! + +Even they have cried aloud after you! + +Don’t believe them, + +though they speak beautiful words to you. + + + +I have forsaken my house. + +I have cast off my heritage. + +I have given the dearly beloved of my soul into the hand of her enemies. + + +My heritage has become to me as a lion in the forest. + +She has uttered her voice against me. + +Therefore I have hated her. + + +Is my heritage to me as a speckled bird of prey? + +Are the birds of prey against her all around? + +Go, assemble all the animals of the field. + +Bring them to devour. + + +Many shepherds have destroyed my vineyard. + +They have trodden my portion under foot. + +They have made my pleasant portion a desolate wilderness. + + +They have made it a desolation. + +It mourns to me, being desolate. + +The whole land is made desolate, + +because no one cares. + + +Destroyers have come on all the bare heights in the wilderness; + +for the sword of Yahweh devours from the one end of the land even to the other end of the land. + +No flesh has peace. + + +They have sown wheat, + +and have reaped thorns. + +They have exhausted themselves, + +and profit nothing. + +You will be ashamed of your fruits, + +because of Yahweh’s fierce anger.” + + + +

Yahweh says, “Concerning all my evil neighbors, who touch the inheritance which I have caused my people Israel to inherit: Behold, I will pluck them up from off their land, and will pluck up the house of Judah from among them. + +It will happen that after I have plucked them up, I will return and have compassion on them. I will bring them again, every man to his heritage, and every man to his land. + +It will happen, if they will diligently learn the ways of my people, to swear by my name, ‘As Yahweh lives;’ even as they taught my people to swear by Baal, then they will be built up in the middle of my people. + +But if they will not hear, then I will pluck up that nation, plucking up and destroying it,” says Yahweh. + +

+ + +

Yahweh said to me, “Go, and buy yourself a linen belt, and put it on your waist, and don’t put it in water.” + +

+

So I bought a belt according to Yahweh’s word, and put it on my waist. + +

+

Yahweh’s word came to me the second time, saying, + +Take the belt that you have bought, which is on your waist, and arise, go to the Euphrates, and hide it there in a cleft of the rock.” + +

+

So I went and hid it by the Euphrates, as Yahweh commanded me. + +

+

After many days, Yahweh said to me, “Arise, go to the Euphrates, and take the belt from there, which I commanded you to hide there.” + +

+

Then I went to the Euphrates, and dug, and took the belt from the place where I had hidden it; and behold, the belt was ruined. It was profitable for nothing. + +

+

Then Yahweh’s word came to me, saying, + +Yahweh says, ‘In this way I will ruin the pride of Judah, and the great pride of Jerusalem. + +This evil people, who refuse to hear my words, who walk in the stubbornness of their heart, and have gone after other gods to serve them and to worship them, will even be as this belt, which is profitable for nothing. + +For as the belt clings to the waist of a man, so I have caused the whole house of Israel and the whole house of Judah to cling to me,’ says Yahweh; ‘that they may be to me for a people, for a name, for praise, and for glory; but they would not hear.’ + +

+

Therefore you shall speak to them this word: ‘Yahweh, the God of Israel says, “Every container should be filled with wine.”’ They will tell you, ‘Do we not certainly know that every container should be filled with wine?’ + +Then tell them, ‘Yahweh says, “Behold, I will fill all the inhabitants of this land, even the kings who sit on David’s throne, the priests, the prophets, and all the inhabitants of Jerusalem, with drunkenness. + +I will dash them one against another, even the fathers and the sons together,” says Yahweh: “I will not pity, spare, or have compassion, that I should not destroy them.”’” + +

+Hear, and give ear. + +Don’t be proud, + +for Yahweh has spoken. + + +Give glory to Yahweh your God, + +before he causes darkness, + +and before your feet stumble on the dark mountains, + +and while you look for light, + +he turns it into the shadow of death, + +and makes it deep darkness. + + +But if you will not hear it, + +my soul will weep in secret for your pride. + +My eye will weep bitterly, + +and run down with tears, + +because Yahweh’s flock has been taken captive. + + +Say to the king and to the queen mother, + +Humble yourselves. + +Sit down, for your crowns have come down, + +even the crown of your glory. + + +The cities of the South are shut up, + +and there is no one to open them. + +Judah is carried away captive: all of them. + +They are wholly carried away captive. + + +Lift up your eyes, + +and see those who come from the north. + +Where is the flock that was given to you, + +your beautiful flock? + + +What will you say when he sets over you as head those whom you have yourself taught to be friends to you? + +Won’t sorrows take hold of you, as of a woman in travail? + + +If you say in your heart, + +Why have these things come on me?” + +Your skirts are uncovered because of the greatness of your iniquity, + +and your heels suffer violence. + + +Can the Ethiopian change his skin, + +or the leopard his spots? + +Then may you also do good, + +who are accustomed to do evil. + + + +“Therefore I will scatter them + +as the stubble that passes away + +by the wind of the wilderness. + + +This is your lot, + +the portion measured to you from me,” says Yahweh, + +because you have forgotten me, + +and trusted in falsehood.” + + +Therefore I will also uncover your skirts on your face, + +and your shame will appear. + + +I have seen your abominations, even your adulteries + +and your neighing, the lewdness of your prostitution, + +on the hills in the field. + +Woe to you, Jerusalem! + +You will not be made clean. + +How long will it yet be?” + + + + +

This is Yahweh’s word that came to Jeremiah concerning the drought: + +

+Judah mourns, + +and its gates languish. + +They sit in black on the ground. + +The cry of Jerusalem goes up. + + +Their nobles send their little ones to the waters. + +They come to the cisterns, + +and find no water. + +They return with their vessels empty. + +They are disappointed and confounded, + +and cover their heads. + + +Because of the ground which is cracked, + +because no rain has been in the land, + +the plowmen are disappointed. + +They cover their heads. + + +Yes, the doe in the field also calves and forsakes her young, + +because there is no grass. + + +The wild donkeys stand on the bare heights. + +They pant for air like jackals. + +Their eyes fail, + +because there is no vegetation. + + +Though our iniquities testify against us, + +work for your name’s sake, Yahweh; + +for our rebellions are many. + +We have sinned against you. + + +You hope of Israel, + +its Savior in the time of trouble, + +why should you be as a foreigner in the land, + +and as a wayfaring man who turns aside to stay for a night? + + +Why should you be like a scared man, + +as a mighty man who can’t save? + +Yet you, Yahweh, are in the middle of us, + +and we are called by your name. + +Don’t leave us. + + +

Yahweh says to this people: +

+Even so they have loved to wander. + +They have not restrained their feet. + +Therefore Yahweh does not accept them. + +Now he will remember their iniquity, + +and punish them for their sins.” + + +

Yahweh said to me, “Don’t pray for this people for their good. + +When they fast, I will not hear their cry; and when they offer burnt offering and meal offering, I will not accept them; but I will consume them by the sword, by famine, and by pestilence.” + +

+

Then I said, “Ah, Lord Yahweh! Behold, the prophets tell them, ‘You will not see the sword, neither will you have famine; but I will give you assured peace in this place.’” + +

+

Then Yahweh said to me, “The prophets prophesy lies in my name. I didn’t send them. I didn’t command them. I didn’t speak to them. They prophesy to you a lying vision, divination, and a thing of nothing, and the deceit of their own heart. + +Therefore Yahweh says concerning the prophets who prophesy in my name, but I didn’t send them, yet they say, ‘Sword and famine will not be in this land.’ Those prophets will be consumed by sword and famine. + +The people to whom they prophesy will be cast out in the streets of Jerusalem because of the famine and the sword. They will have no one to bury themthem, their wives, their sons, or their daughters, for I will pour their wickedness on them. + +

+

You shall say this word to them: +

+“‘Let my 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 wound. + + +If I go out into the field, + +then behold, the slain with the sword! + +If I enter into the city, + +then behold, those who are sick with famine! + +For both the prophet and the priest go about in the land, + +and have no knowledge.’” + + + +Have you utterly rejected Judah? + +Has your soul loathed Zion? + +Why have you struck us, and there is no healing for us? + +We looked for peace, but no good came; + +and for a time of healing, and behold, dismay! + + +We acknowledge, Yahweh, our wickedness, + +and the iniquity of our fathers; + +for we have sinned against you. + + +Do not abhor us, for your name’s sake. + +Do not disgrace the throne of your glory. + +Remember, and don’t break your covenant with us. + + +Are there any among the vanities of the nations that can cause rain? + +Or can the sky give showers? + +Aren’t you he, Yahweh our God? + +Therefore we will wait for you; + +for you have made all these things. + + + + +

Then Yahweh said to me, “Though Moses and Samuel stood before me, yet my mind would not turn toward this people. Cast them out of my sight, and let them go out! + +It will happen when they ask you, ‘Where shall we go out?’ then you shall tell them, ‘Yahweh says: +

+Such as are for death, to death; + +such as are for the sword, to the sword; + +such as are for the famine, to the famine; + +and such as are for captivity, to captivity.”’ + + +

I will appoint over them four kinds,” says Yahweh: “the sword to kill, the dogs to tear, the birds of the sky, and the animals of the earth, to devour and to destroy. + +I will cause them to be tossed back and forth among all the kingdoms of the earth, because of Manasseh, the son of Hezekiah, king of Judah, for that which he did in Jerusalem. + +

+For who will have pity on you, Jerusalem? + +Who will mourn you? + +Who will come to ask of your welfare? + + +You have rejected me,” says Yahweh. + +You have gone backward. + +Therefore I have stretched out my hand against you + +and destroyed you. + +I am weary of showing compassion. + + +I have winnowed them with a fan in the gates of the land. + +I have bereaved them of children. + +I have destroyed my people. + +They didn’t return from their ways. + + +Their widows are increased more than the sand of the seas. + +I have brought on them against the mother of the young men a destroyer at noonday. + +I have caused anguish and terrors to fall on her suddenly. + + +She who has borne seven languishes. + +She has given up the spirit. + +Her sun has gone down while it was yet day. + +She has been disappointed and confounded. + +I will deliver their residue to the sword before their enemies,” says Yahweh. + + + +Woe is me, my mother, that you have borne me, a man of strife, + +and a man of contention to the whole earth! + +I have not lent, neither have men lent to me; + +yet every one of them curses me. + + +

Yahweh said, +

+Most certainly I will strengthen you for good. + +Most certainly I will cause the enemy to make supplication to you in the time of evil + +and in the time of affliction. + + +Can one break iron, + +even iron from the north, and bronze? + + +I will give your substance and your treasures for a plunder without price, + +and that for all your sins, + +even in all your borders. + + +I will make them to pass with your enemies into a land which you don’t know; + +for a fire is kindled in my anger, + +which will burn on you.” + + + +Yahweh, you know. + +Remember me, visit me, + +and avenge me of my persecutors. + +You are patient, so don’t take me away. + +Know that for your sake I have suffered reproach. + + +Your words were found, + +and I ate them. + +Your words were to me a joy and the rejoicing of my heart, + +for I am called by your name, Yahweh, God of Armies. + + +I didn’t sit in the assembly of those who make merry and rejoice. + +I sat alone because of your hand, + +for you have filled me with indignation. + + +Why is my pain perpetual, + +and my wound incurable, + +which refuses to be healed? + +Will you indeed be to me as a deceitful brook, + +like waters that fail? + + +

Therefore Yahweh says, +

+If you return, then I will bring you again, + +that you may stand before me; + +and if you take out the precious from the vile, + +you will be as my mouth. + +They will return to you, + +but you will not return to them. + + +I will make you to this people a fortified bronze wall. + +They will fight against you, + +but they will not prevail against you; + +for I am with you to save you + +and to deliver you,” says Yahweh. + + +I will deliver you out of the hand of the wicked, + +and I will redeem you out of the hand of the terrible.” + + + + +

Then Yahweh’s word came to me, saying, + +You shall not take a wife, neither shall you have sons or daughters, in this place.” + +For Yahweh says concerning the sons and concerning the daughters who are born in this place, and concerning their mothers who bore them, and concerning their fathers who became their father in this land: + +They will die grievous deaths. They will not be lamented, neither will they be buried. They will be as dung on the surface of the ground. They will be consumed by the sword and by famine. Their dead bodies will be food for the birds of the sky and for the animals of the earth.” + +

+

For Yahweh says, “Don’t enter into the house of mourning. Don’t go to lament. Don’t bemoan them, for I have taken away my peace from this people,” says Yahweh, “even loving kindness and tender mercies. + +Both great and small will die in this land. They will not be buried. Men won’t lament for them, cut themselves, or make themselves bald for them. + +Men won’t break bread for them in mourning, to comfort them for the dead. Men won’t give them the cup of consolation to drink for their father or for their mother. + +

+

You shall not go into the house of feasting to sit with them, to eat and to drink.” + +For Yahweh of Armies, the God of Israel says: “Behold, I will cause to cease out of this place, before 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. + +It will happen, when you tell this people all these words, and they ask you, ‘Why has Yahweh pronounced all this great evil against us?’ orWhat is our iniquity?’ orWhat is our sin that we have committed against Yahweh our God?’ + +then you shall tell them, ‘Because your fathers have forsaken me,’ says Yahweh, ‘and have walked after other gods, have served them, have worshiped them, have forsaken me, and have not kept my law. + +You have done evil more than your fathers, for behold, you each walk after the stubbornness of his evil heart, so that you don’t listen to me. + +Therefore I will cast you out of this land into the land that you have not known, neither you nor your fathers. There you will serve other gods day and night, for I will show you no favor.’ + +

+

Therefore behold, the days come,” says Yahweh, “that it will no more be said, ‘As Yahweh lives, who brought up the children of Israel out of the land of Egypt;’ + +but, ‘As Yahweh lives, who brought up the children of Israel from the land of the north, and from all the countries where he had driven them.’ I will bring them again into their land that I gave to their fathers. + +

+

Behold, I will send for many fishermen,” says Yahweh, “and they will fish them up. Afterward I will send for many hunters, and they will hunt them from every mountain, from every hill, and out of the clefts of the rocks. + +For my eyes are on all their ways. They are not hidden from my face. Their iniquity isn’t concealed from my eyes. + +First I will recompense their iniquity and their sin double, because they have polluted my land with the carcasses of their detestable things, and have filled my inheritance with their abominations.” + +

+ +Yahweh, my strength, my stronghold, + +and my refuge in the day of affliction, + +the nations will come to you from the ends of the earth, + +and will say, + +Our fathers have inherited nothing but lies, + +vanity and things in which there is no profit. + + +Should a man make to himself gods + +which yet are no gods?” + + + +Therefore behold, I will cause them to know, + +this once I will cause them to know my hand and my might. + +Then they will know that my name is Yahweh.” + + + + +The sin of Judah is written with a pen of iron, + +and with the point of a diamond. + +It is engraved on the tablet of their heart, + +and on the horns of your altars. + + +Even their children remember their altars + +and their Asherah poles by the green trees on the high hills. + + +My mountain in the field, + +I will give your substance and all your treasures for a plunder, + +and your high places, because of sin, throughout all your borders. + + +You, even of yourself, will discontinue from your heritage that I gave you. + +I will cause you to serve your enemies in the land which you don’t know, + +for you have kindled a fire in my anger which will burn forever.” + + +

Yahweh says: +

+“Cursed is the man who trusts in man, + +relies on strength of flesh, + +and whose heart departs from Yahweh. + + +For he will be like a bush in the desert, + +and will not see when good comes, + +but will inhabit the parched places in the wilderness, + +an uninhabited salt land. + + + +Blessed is the man who trusts in Yahweh, + +and whose confidence is in Yahweh. + + +For he will be as a tree planted by the waters, + +who spreads out its roots by the river, + +and will not fear when heat comes, + +but its leaf will be green, + +and will not be concerned in the year of drought. + +It won’t cease from yielding fruit. + + +The heart is deceitful above all things + +and it is exceedingly corrupt. + +Who can know it? + + + +I, Yahweh, search the mind. + +I try the heart, + +even to give every man according to his ways, + +according to the fruit of his doings.” + + + +As the partridge that sits on eggs which she has not laid, + +so is he who gets riches, and not by right. + +In the middle of his days, they will leave him. + +At his end, he will be a fool. + + +A glorious throne, set on high from the beginning, + +is the place of our sanctuary. + + +Yahweh, the hope of Israel, + +all who forsake you will be disappointed. + +Those who depart from me will be written in the earth, + +because they have forsaken Yahweh, + +the spring of living waters. + + +Heal me, O Yahweh, and I will be healed. + +Save me, and I will be saved; + +for you are my praise. + + +Behold, they ask me, + +Where is Yahweh’s word? + +Let it be fulfilled now.” + + +As for me, I have not hurried from being a shepherd after you. + +I haven’t desired the woeful day. You know. + +That which came out of my lips was before your face. + + +Don’t be a terror to me. + +You are my refuge in the day of evil. + + +Let them be disappointed who persecute me, + +but don’t let me be disappointed. + +Let them be dismayed, + +but don’t let me be dismayed. + +Bring on them the day of evil, + +and destroy them with double destruction. + + +

Yahweh said this to me: “Go and stand in the gate of the children of the people, through which the kings of Judah come in and by which they go out, and in all the gates of Jerusalem. + +Tell them, ‘Hear Yahweh’s word, you kings of Judah, all Judah, and all the inhabitants of Jerusalem, that enter in by these gates: + +Yahweh says, “Be careful, and bear no burden on the Sabbath day, nor bring it in by the gates of Jerusalem. + +Don’t carry a burden out of your houses on the Sabbath day. Don’t do any work, but make the Sabbath day holy, as I commanded your fathers. + +But they didn’t listen. They didn’t turn their ear, but made their neck stiff, that they might not hear, and might not receive instruction. + +It will happen, if you diligently listen to me,” says Yahweh, “to bring in no burden through the gates of this city on the Sabbath day, but to make the Sabbath day holy, to do no work therein; + +then there will enter in by the gates of this city kings and princes sitting on David’s throne, riding in chariots and on horses, they and their princes, the men of Judah and the inhabitants of Jerusalem; and this city will remain forever. + +They will come from the cities of Judah, and from the places around Jerusalem, from the land of Benjamin, from the lowland, from the hill country, and from the South, bringing burnt offerings, sacrifices, meal offerings, and frankincense, and bringing sacrifices of thanksgiving to Yahweh’s house. + +But if you will not listen to me to make the Sabbath day holy, and not to bear a burden and enter in at the gates of Jerusalem on the Sabbath day, then I will kindle a fire in its gates, and it will devour the palaces of Jerusalem. It will not be quenched.”’” + +

+ + +

The word which came to Jeremiah from Yahweh, saying, + +Arise, and go down to the potter’s house, and there I will cause you to hear my words.” + +

+

Then I went down to the potter’s house, and behold, he was making something on the wheels. + +When the vessel that he made of the clay was marred in the hand of the potter, he made it again another vessel, as seemed good to the potter to make it. + +

+

Then Yahweh’s word came to me, saying, + +House of Israel, can’t I do with you as this potter?” says Yahweh. “Behold, as the clay in the potter’s hand, so are you in my hand, house of Israel. + +At the instant I speak concerning a nation, and concerning a kingdom, to pluck up and to break down and to destroy it, + +if that nation, concerning which I have spoken, turns from their evil, I will repent of the evil that I thought to do to them. + +At the instant I speak concerning a nation, and concerning a kingdom, to build and to plant it, + +if they do that which is evil in my sight, that they don’t obey my voice, then I will repent of the good with which I said I would benefit them. + +

+

Now therefore, speak to the men of Judah, and to the inhabitants of Jerusalem, saying, ‘Yahweh says: “Behold, I frame evil against you, and devise a plan against you. Everyone return from his evil way now, and amend your ways and your doings.”’ + +But they say, ‘It is in vain; for we will walk after our own plans, and we will each follow the stubbornness of his evil heart.’” + +

+

Therefore Yahweh says: +

+Ask now among the nations, + +Who has heard such things?’ + +The virgin of Israel has done a very horrible thing. + + +Will the snow of Lebanon fail from the rock of the field? + +Will the cold waters that flow down from afar be dried up? + + +For my people have forgotten me. + +They have burned incense to false gods. + +They have been made to stumble in their ways + +in the ancient paths, + +to walk in byways, in a way not built up, + + +to make their land an astonishment, + +and a perpetual hissing. + +Everyone who passes by it will be astonished, + +and shake his head. + + +I will scatter them as with an east wind before the enemy. + +I will show them the back, and not the face, + +in the day of their calamity. + + +

Then they said, “Come! Let’s devise plans against Jeremiah; for the law won’t perish from the priest, nor counsel from the wise, nor the word from the prophet. Come, and let’s strike him with the tongue, and let’s not give heed to any of his words.” + +

+Give heed to me, Yahweh, + +and listen to the voice of those who contend with me. + + +Should evil be recompensed for good? + +For they have dug a pit for my soul. + +Remember how I stood before you to speak good for them, + +to turn away your wrath from them. + + +Therefore deliver up their children to the famine, + +and give them over to the power of the sword. + +Let their wives become childless and widows. + +Let their men be killed + +and their young men struck by the sword in battle. + + +Let a cry be heard from their houses + +when you bring a troop suddenly on them; + +for they have dug a pit to take me + +and hidden snares for my feet. + + +Yet, Yahweh, you know all their counsel against me to kill me. + +Don’t forgive their iniquity. + +Don’t blot out their sin from your sight, + +Let them be overthrown before you. + +Deal with them in the time of your anger. + + + + +

Thus said Yahweh, “Go, and buy a potter’s earthen container, and take some of the elders of the people and of the elders of the priests; + +and go out to the valley of the son of Hinnom, which is by the entry of the gate Harsith, and proclaim there the words that I will tell you. + +Say, ‘Hear Yahweh’s word, kings of Judah and inhabitants of Jerusalem: Yahweh of Armies, the God of Israel says, “Behold, I will bring evil on this place, which whoever hears, his ears will tingle. + +Because they have forsaken me, and have defiled this place, and have burned incense in it to other gods that they didn’t knowthey, their fathers, and the kings of Judahand have filled this place with the blood of innocents, + +and have built the high places of Baal to burn their children in the fire for burnt offerings to Baal, which I didn’t command, nor speak, which didn’t even enter into my mind. + +Therefore, behold, the days come,” says Yahweh, “that this place will no more be calledTopheth’, norThe Valley of the son of Hinnom’, butThe valley of Slaughter’. + +

+

“‘“I will make the counsel of Judah and Jerusalem void in this place. I will cause them to fall by the sword before their enemies, and by the hand of those who seek their life. I will give their dead bodies to be food for the birds of the sky and for the animals of the earth. + +I will make this city an astonishment and a hissing. Everyone who passes by it will be astonished and hiss because of all its plagues. + +I will cause them to eat the flesh of their sons and the flesh of their daughters. They will each eat the flesh of his friend in the siege and in the distress with which their enemies, and those who seek their life, will distress them.”’ + +

+

Then you shall break the container in the sight of the men who go with you, + +and shall tell them, ‘Yahweh of Armies says: “Even so I will break this people and this city as one breaks a potter’s vessel, that can’t be made whole again. They will bury in Topheth until there is no place to bury. + +This is what I will do to this place,” says Yahweh, “and to its inhabitants, even making this city as Topheth. + +The houses of Jerusalem and the houses of the kings of Judah, which are defiled, will be as the place of Topheth, even all the houses on whose roofs they have burned incense to all the army of the sky and have poured out drink offerings to other gods.”’” + +

+

Then Jeremiah came from Topheth, where Yahweh had sent him to prophesy, and he stood in the court of Yahweh’s house, and said to all the people: + +Yahweh of Armies, the God of Israel says, ‘Behold, I will bring on this city and on all its towns all the evil that I have pronounced against it, because they have made their neck stiff, that they may not hear my words.’” + +

+ + +

Now Pashhur, the son of Immer the priest, who was chief officer in Yahweh’s house, heard Jeremiah prophesying these things. + +Then Pashhur struck Jeremiah the prophet and put him in the stocks that were in the upper gate of Benjamin, which was in Yahweh’s house. + +On the next day, Pashhur released Jeremiah out of the stocks. Then Jeremiah said to him, “Yahweh has not called your name Pashhur, but Magormissabib.20:3 +“Magormissabib” means “surrounded by terror” + +For Yahweh says, ‘Behold, I will make you a terror to yourself and to all your friends. They will fall by the sword of their enemies, and your eyes will see it. I will give all Judah into the hand of the king of Babylon, and he will carry them captive to Babylon, and will kill them with the sword. + +Moreover I will give all the riches of this city, and all its gains, and all its precious things, yes, I will give all the treasures of the kings of Judah into the hand of their enemies. They will make them captives, take them, and carry them to Babylon. + +You, Pashhur, and all who dwell in your house will go into captivity. You will come to Babylon, and there you will die, and there you will be buried, you, and all your friends, to whom you have prophesied falsely.’” + +

+ +Yahweh, you have persuaded me, and I was persuaded. + +You are stronger than I, and have prevailed. + +I have become a laughingstock all day. + +Everyone mocks me. + + +For as often as I speak, I cry out; + +I cry, “Violence and destruction!” + +because Yahweh’s word has been made a reproach to me, + +and a derision, all day. + + +If I say that I will not make mention of him, + +or speak any more in his name, + +then there is in my heart as it were a burning fire shut up in my bones. + +I am weary with holding it in. + +I can’t. + + +For I have heard the defaming of many: + +Terror on every side! + +Denounce, and we will denounce him!” + +say all my familiar friends, + +those who watch for my fall. + +Perhaps he will be persuaded, + +and we will prevail against him, + +and we will take our revenge on him.” + + +But Yahweh is with me as an awesome mighty one. + +Therefore my persecutors will stumble, + +and they won’t prevail. + +They will be utterly disappointed + +because they have not dealt wisely, + +even with an everlasting dishonor which will never be forgotten. + + +But Yahweh of Armies, who tests the righteous, + +who sees the heart and the mind, + +let me see your vengeance on them, + +for I have revealed my cause to you. + + +Sing to Yahweh! + +Praise Yahweh, + +for he has delivered the soul of the needy from the hand of evildoers. + + +Cursed is the day in which I was born. + +Don’t let the day in which my mother bore me be blessed. + + +Cursed is the man who brought news to my father, saying, + +A boy is born to you,” making him very glad. + + +Let that man be as the cities which Yahweh overthrew, + +and didn’t repent. + +Let him hear a cry in the morning, + +and shouting at noontime, + + +because he didn’t kill me from the womb. + +So my mother would have been my grave, + +and her womb always great. + + +Why did I come out of the womb to see labor and sorrow, + +that my days should be consumed with shame? + + + + +

The word which came to Jeremiah from Yahweh, when King Zedekiah sent to him Pashhur the son of Malchijah, and Zephaniah the son of Maaseiah, the priest, saying, + +Please inquire of Yahweh for us; for Nebuchadnezzar king of Babylon makes war against us. Perhaps Yahweh will deal with us according to all his wondrous works, that he may withdraw from us.” + +

+

Then Jeremiah said to them, “Tell Zedekiah: + +Yahweh, the God of Israel says, “Behold, I will turn back the weapons of war that are in your hands, with which you fight against the king of Babylon, and against the Chaldeans who besiege you outside the walls; and I will gather them into the middle of this city. + +I myself will fight against you with an outstretched hand and with a strong arm, even in anger, in wrath, and in great indignation. + +I will strike the inhabitants of this city, both man and animal. They will die of a great pestilence. + +Afterward,” says Yahweh, “I will deliver Zedekiah king of Judah, his servants, and the people, even those who are left in this city from the pestilence, from the sword, and from the famine, into the hand of Nebuchadnezzar king of Babylon, and into the hand of their enemies, and into the hand of those who seek their life. He will strike them with the edge of the sword. He will not spare them, have pity, or have mercy.”’ + +

+

You shall say to this people, ‘Yahweh says: “Behold, I set before you the way of life and the way of death. + +He who remains in this city will die by the sword, by the famine, and by the pestilence, but he who goes out and passes over to the Chaldeans who besiege you, he will live, and he will escape with his life. + +For I have set my face on this city for evil, and not for good,” says Yahweh. “It will be given into the hand of the king of Babylon, and he will burn it with fire.”’ + +

+

Concerning the house of the king of Judah, hear Yahweh’s word: + +House of David, Yahweh says, +

+Execute justice in the morning, + +and deliver him who is robbed out of the hand of the oppressor, + +lest my wrath go out like fire, + +and burn so that no one can quench it, + +because of the evil of your doings. + + +Behold, I am against you, O inhabitant of the valley, + +and of the rock of the plain,’ says Yahweh. + +You that say, “Who would come down against us?” + +or, “Who would enter into our homes?” + + +I will punish you according to the fruit of your doings,’ says Yahweh; + +and I will kindle a fire in her forest, + +and it will devour all that is around her.’” + + + + +

Yahweh said, “Go down to the house of the king of Judah, and speak this word there: + +Hear Yahweh’s word, king of Judah, who sits on David’s throneyou, your servants, and your people who enter in by these gates. + +Yahweh says: “Execute justice and righteousness, and deliver him who is robbed out of the hand of the oppressor. Do no wrong. Do no violence to the foreigner, the fatherless, or the widow. Don’t shed innocent blood in this place. + +For if you do this thing indeed, then kings sitting on David’s throne will enter in by the gates of this house, riding in chariots and on horsesthey, their servants, and their people. + +But if you will not hear these words, I swear by myself,” says Yahweh, “that this house will become a desolation.”’” + +

+

For Yahweh says concerning the house of the king of Judah: +

+You are Gilead to me, + +the head of Lebanon. + +Yet surely I will make you a wilderness, + +cities which are not inhabited. + + +I will prepare destroyers against you, + +everyone with his weapons, + +and they will cut down your choice cedars, + +and cast them into the fire. + + +

Many nations will pass by this city, and they will each ask his neighbor, ‘Why has Yahweh done this to this great city?’ + +Then they will answer, ‘Because they abandoned the covenant of Yahweh their God, worshiped other gods, and served them.’” + +

+Don’t weep for the dead. + +Don’t bemoan him; + +but weep bitterly for him who goes away, + +for he will return no more, + +and not see his native country. + + +

For Yahweh says touching Shallum the son of Josiah, king of Judah, who reigned instead of Josiah his father, and who went out of this place: “He won’t return there any more. + +But he will die in the place where they have led him captive. He will see this land no more.” + +

+Woe to him who builds his house by unrighteousness, + +and his rooms by injustice; + +who uses his neighbor’s service without wages, + +and doesn’t give him his hire; + + +who says, ‘I will build myself a wide house and spacious rooms,’ + +and cuts out windows for himself, + +with a cedar ceiling, + +and painted with red. + + + +Should you reign because you strive to excel in cedar? + +Didn’t your father eat and drink, + +and do justice and righteousness? + +Then it was well with him. + + +He judged the cause of the poor and needy; + +so then it was well. + +Wasn’t this to know me?” + +says Yahweh. + + +But your eyes and your heart are only for your covetousness, + +for shedding innocent blood, + +for oppression, and for doing violence.” + + +

Therefore Yahweh says concerning Jehoiakim the son of Josiah, king of Judah: +

+They won’t lament for him, + +saying, ‘Ah my brother!’ or, ‘Ah sister!’ + +They won’t lament for him, + +saying ‘Ah lord!’ or, ‘Ah his glory!’ + + +He will be buried with the burial of a donkey, + +drawn and cast out beyond the gates of Jerusalem.” + + + +Go up to Lebanon, and cry out. + +Lift up your voice in Bashan, + +and cry from Abarim; + +for all your lovers have been destroyed. + + +I spoke to you in your prosperity, + +but you said, ‘I will not listen.’ + +This has been your way from your youth, + +that you didn’t obey my voice. + + +The wind will feed all your shepherds, + +and your lovers will go into captivity. + +Surely then you will be ashamed + +and confounded for all your wickedness. + + +Inhabitant of Lebanon, + +who makes your nest in the cedars, + +how greatly to be pitied you will be when pangs come on you, + +the pain as of a woman in travail! + + +

As I live,” says Yahweh, “though Coniah the son of Jehoiakim king of Judah were the signet on my right hand, I would still pluck you from there. + +I would give you into the hand of those who seek your life, and into the hand of them of whom you are afraid, even into the hand of Nebuchadnezzar king of Babylon, and into the hand of the Chaldeans. + +I will cast you out with your mother who bore you into another country, where you were not born; and there you will die. + +But to the land to which their soul longs to return, there they will not return.” + +

+Is this man Coniah a despised broken vessel? + +Is he a vessel in which no one delights? + +Why are they cast out, he and his offspring, + +and cast into a land which they don’t know? + + +O earth, earth, earth, + +hear Yahweh’s word! + + +Yahweh says, + +Record this man as childless, + +a man who will not prosper in his days; + +for no more will a man of his offspring prosper, + +sitting on David’s throne + +and ruling in Judah.” + + + + +

Woe to the shepherds who destroy and scatter the sheep of my pasture!” says Yahweh. + +Therefore Yahweh, the God of Israel, says against the shepherds who feed my people: “You have scattered my flock, driven them away, and have not visited them. Behold, I will visit on you the evil of your doings,” says Yahweh. + +I will gather the remnant of my flock out of all the countries where I have driven them, and will bring them again to their folds; and they will be fruitful and multiply. + +I will set up shepherds over them who will feed them. They will no longer be afraid or dismayed, neither will any be lacking,” says Yahweh. + +

+Behold, the days come,” says Yahweh, + +that I will raise to David a righteous Branch; + +and he will reign as king and deal wisely, + +and will execute justice and righteousness in the land. + + +In his days Judah will be saved, + +and Israel will dwell safely. + +This is his name by which he will be called: + +Yahweh our righteousness. + + +

Therefore, behold, the days come,” says Yahweh, “that they will no more say, ‘As Yahweh lives, who brought up the children of Israel out of the land of Egypt;’ + +but, ‘As Yahweh lives, who brought up and who led the offspring of the house of Israel out of the north country, and from all the countries where I had driven them.’ Then they will dwell in their own land.” + +

+

Concerning the prophets: +

+My heart within me is broken. + +All my bones shake. + +I am like a drunken man, + +and like a man whom wine has overcome, + +because of Yahweh, + +and because of his holy words. + + +For the land is full of adulterers; + +for because of the curse the land mourns. + +The pastures of the wilderness have dried up. + +Their course is evil, + +and their might is not right; + + +for both prophet and priest are profane. + +Yes, in my house I have found their wickedness,” says Yahweh. + + +Therefore their way will be to them as slippery places in the darkness. + +They will be driven on, + +and fall therein; + +for I will bring evil on them, + +even the year of their visitation,” says Yahweh. + + + +I have seen folly in the prophets of Samaria. + +They prophesied by Baal, + +and caused my people Israel to err. + + +In the prophets of Jerusalem I have also seen a horrible thing: + +they commit adultery and walk in lies. + +They strengthen the hands of evildoers, + +so that no one returns from his wickedness. + +They have all become to me as Sodom, + +and its inhabitants as Gomorrah.” + + +

Therefore Yahweh of Armies says concerning the prophets: +

+Behold, I will feed them with wormwood, + +and make them drink poisoned water; + +for from the prophets of Jerusalem ungodliness has gone out into all the land.” + + +

Yahweh of Armies says, +

+“Don’t listen to the words of the prophets who prophesy to you. + +They teach you vanity. + +They speak a vision of their own heart, + +and not out of the mouth of Yahweh. + + +They say continually to those who despise me, + +Yahweh has said, “You will have peace;”’ + +and to everyone who walks in the stubbornness of his own heart they say, + +No evil will come on you.’ + + +For who has stood in the council of Yahweh, + +that he should perceive and hear his word? + +Who has listened to my word, and heard it? + + +Behold, Yahweh’s storm, his wrath, has gone out. + +Yes, a whirling storm! + +It will burst on the head of the wicked. + + +Yahweh’s anger will not return until he has executed + +and performed the intents of his heart. + +In the latter days, you will understand it perfectly. + + +I didn’t send these prophets, yet they ran. + +I didn’t speak to them, yet they prophesied. + + +But if they had stood in my council, + +then they would have caused my people to hear my words, + +and would have turned them from their evil way, + +and from the evil of their doings. + + + +Am I a God at hand,” says Yahweh, + +and not a God afar off? + + +Can anyone hide himself in secret places + +so that I can’t see him?” says Yahweh. + +“Don’t I fill heaven and earth?” says Yahweh. + + +

I have heard what the prophets have said, who prophesy lies in my name, saying, ‘I had a dream! I had a dream!’ + +How long will this be in the heart of the prophets who prophesy lies, even the prophets of the deceit of their own heart? + +They intend to cause my people to forget my name by their dreams which they each tell his neighbor, as their fathers forgot my name because of Baal. + +The prophet who has a dream, let him tell a dream; and he who has my word, let him speak my word faithfully. What is the straw to the wheat?” says Yahweh. + +“Isn’t my word like fire?” says Yahweh; “and like a hammer that breaks the rock in pieces? + +

+

Therefore behold, I am against the prophets,” says Yahweh, “who each steal my words from his neighbor. + +Behold, I am against the prophets,” says Yahweh, “who use their tongues, and say, ‘He says.’ + +Behold, I am against those who prophesy lying dreams,” says Yahweh, “who tell them, and cause my people to err by their lies, and by their vain boasting; yet I didn’t send them or command them. They don’t profit this people at all,” says Yahweh. + +

+

When this people, or the prophet, or a priest, asks you, saying, ‘What is the message from Yahweh?’ Then you shall tell them, ‘“What message? I will cast you off,” says Yahweh.’ + +As for the prophet, the priest, and the people, who say, ‘The message from Yahweh,’ I will even punish that man and his household. + +You will say everyone to his neighbor, and everyone to his brother, ‘What has Yahweh answered?’ and, ‘What has Yahweh said?’ + +You will mention the message from Yahweh no more, for every man’s own word has become his message; for you have perverted the words of the living God, of Yahweh of Armies, our God. + +You will say to the prophet, ‘What has Yahweh answered you?’ and, ‘What has Yahweh spoken?’ + +Although you say, ‘The message from Yahweh,’ therefore Yahweh says: ‘Because you say this word, “The message from Yahweh,” and I have sent to you, telling you not to say, “The message from Yahweh,” + +therefore behold, I will utterly forget you, and I will cast you off with the city that I gave to you and to your fathers, away from my presence. + +I will bring an everlasting reproach on you, and a perpetual shame, which will not be forgotten.’” + +

+ + +

Yahweh showed me, and behold, two baskets of figs were set before Yahweh’s temple, after Nebuchadnezzar king of Babylon had carried away captive Jeconiah the son of Jehoiakim, king of Judah, and the princes of Judah, with the craftsmen and smiths, from Jerusalem, and had brought them to Babylon. + +One basket had very good figs, like the figs that are first-ripe; and the other basket had very bad figs, which could not be eaten, they were so bad. + +

+

Then Yahweh asked me, “What do you see, Jeremiah?” +

+

I said, “Figs. The good figs are very good, and the bad are very bad, so bad that they can’t be eaten.” + +

+

Yahweh’s word came to me, saying, + +Yahweh, the God of Israel says: ‘Like these good figs, so I will regard the captives of Judah, whom I have sent out of this place into the land of the Chaldeans, as good. + +For I will set my eyes on them for good, and I will bring them again to this land. I will build them, and not pull them down. I will plant them, and not pluck them up. + +I will give them a heart to know me, that I am Yahweh. They will be my people, and I will be their God; for they will return to me with their whole heart. + +

+

“‘As the bad figs, which can’t be eaten, they are so bad,’ surely Yahweh says, ‘So I will give up Zedekiah the king of Judah, and his princes, and the remnant of Jerusalem who remain in this land, and those who dwell in the land of Egypt. + +I will even give them up to be tossed back and forth among all the kingdoms of the earth for evil, to be a reproach and a proverb, a taunt and a curse, in all places where I will drive them. + +I will send the sword, the famine, and the pestilence among them, until they are consumed from off the land that I gave to them and to their fathers.’” + +

+ + +

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 (this was the first year of Nebuchadnezzar king of Babylon), + +which Jeremiah the prophet spoke to all the people of Judah, and to all the inhabitants of Jerusalem: + +From the thirteenth year of Josiah the son of Amon, king of Judah, even to this day, these twenty-three years, Yahweh’s word has come to me, and I have spoken to you, rising up early and speaking; but you have not listened. + +

+

Yahweh has sent to you all his servants the prophets, rising up early and sending them (but you have not listened or inclined your ear to hear), + +saying, “Return now everyone from his evil way, and from the evil of your doings, and dwell in the land that Yahweh has given to you and to your fathers, from of old and even forever more. + +Don’t go after other gods to serve them or worship them, and don’t provoke me to anger with the work of your hands; then I will do you no harm.” + +

+

Yet you have not listened to me,” says Yahweh, “that you may provoke me to anger with the work of your hands to your own hurt.” + +

+

Therefore Yahweh of Armies says: “Because you have not heard my words, + +behold, I will send and take all the families of the north,” says Yahweh, “and I will send to Nebuchadnezzar the king of Babylon, my servant, and will bring them against this land, and against its inhabitants, and against all these nations around. I will utterly destroy them, and make them an astonishment, and a hissing, and perpetual desolations. + +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 lamp. + +This whole land will be a desolation, and an astonishment; and these nations will serve the king of Babylon seventy years. + +

+

It will happen, when seventy years are accomplished, that I will punish the king of Babylon and that nation,” says Yahweh, “for their iniquity. I will make the land of the Chaldeans desolate forever. + +I will bring on that land all my words which I have pronounced against it, even all that is written in this book, which Jeremiah has prophesied against all the nations. + +For many nations and great kings will make bondservants of them, even of them. I will recompense them according to their deeds, and according to the work of their hands.” + +

+

For Yahweh, the God of Israel, says to me: “Take this cup of the wine of wrath from my hand, and cause all the nations to whom I send you to drink it. + +They will drink, and reel back and forth, and be insane, because of the sword that I will send among them.” + +

+

Then I took the cup at Yahweh’s hand, and made all the nations to drink, to whom Yahweh had sent me: + +Jerusalem, and the cities of Judah, with its kings and its princes, to make them a desolation, an astonishment, a hissing, and a curse, as it is today; + +Pharaoh king of Egypt, with his servants, his princes, and all his people; + +and all the mixed people, and all the kings of the land of Uz, all the kings of the Philistines, Ashkelon, Gaza, Ekron, and the remnant of Ashdod; + +Edom, Moab, and the children of Ammon; + +and all the kings of Tyre, all the kings of Sidon, and the kings of the isle which is beyond the sea; + +Dedan, Tema, Buz, and all who have the corners of their beard cut off; + +and all the kings of Arabia, all the kings of the mixed people who dwell in the wilderness; + +and all the kings of Zimri, all the kings of Elam, and all the kings of the Medes; + +and all the kings of the north, far and near, one with another; and all the kingdoms of the world, which are on the surface of the earth. The king of Sheshach will drink after them. + +

+

You shall tell them, ‘Yahweh of Armies, the God of Israel says: “Drink, and be drunk, vomit, fall, and rise no more, because of the sword which I will send among you.”’ + +It shall be, if they refuse to take the cup at your hand to drink, then you shall tell them, ‘Yahweh of Armies says: “You shall surely drink. + +For, behold, I begin to work evil at the city which is called by my name; and should you be utterly unpunished? You will not be unpunished; for I will call for a sword on all the inhabitants of the earth, says Yahweh of Armies.”’ + +

+

Therefore prophesy against them all these words, and tell them, +

+“‘Yahweh will roar from on high, + +and utter his voice from his holy habitation. + +He will mightily roar against his fold. + +He will give a shout, as those who tread grapes, + +against all the inhabitants of the earth. + + +A noise will come even to the end of the earth; + +for Yahweh has a controversy with the nations. + +He will enter into judgment with all flesh. + +As for the wicked, he will give them to the sword,”’ says Yahweh.” + + +

Yahweh of Armies says, +

+Behold, evil will go out from nation to nation, + +and a great storm will be raised up from the uttermost parts of the earth.” + + +

The slain of Yahweh will be at that day from one end of the earth even to the other end of the earth. They won’t be lamented. They won’t be gathered or buried. They will be dung on the surface of the ground. + +

+Wail, you shepherds, and cry. + +Wallow in dust, you leader of the flock; + +for the days of your slaughter and of your dispersions have fully come, + +and you will fall like fine pottery. + + +The shepherds will have no way to flee. + +The leader of the flock will have no escape. + + +A voice of the cry of the shepherds, + +and the wailing of the leader of the flock, + +for Yahweh destroys their pasture. + + +The peaceful folds are brought to silence + +because of the fierce anger of Yahweh. + + +He has left his covert, as the lion; + +for their land has become an astonishment because of the fierceness of the oppression, + +and because of his fierce anger. + + + + +

In the beginning of the reign of Jehoiakim the son of Josiah, king of Judah, this word came from Yahweh: + +Yahweh says: ‘Stand in the court of Yahweh’s house, and speak to all the cities of Judah which come to worship in Yahweh’s house, all the words that I command you to speak to them. Don’t omit a word. + +It may be they will listen, and every man turn from his evil way, that I may relent from the evil which I intend to do to them because of the evil of their doings.’” + +You shall tell them, “Yahweh says: ‘If you will not listen to me, to walk in my law which I have set before you, + +to listen to the words of my servants the prophets whom I send to you, even rising up early and sending thembut you have not listened— + +then I will make this house like Shiloh, and will make this city a curse to all the nations of the earth.’” + +

+

The priests and the prophets and all the people heard Jeremiah speaking these words in Yahweh’s house. + +When Jeremiah had finished speaking all that Yahweh had commanded him to speak to all the people, the priests and the prophets and all the people seized him, saying, “You shall surely die! + +Why have you prophesied in Yahweh’s name, saying, ‘This house will be like Shiloh, and this city will be desolate, without inhabitant’?” All the people were crowded around Jeremiah in Yahweh’s house. + +

+

When the princes of Judah heard these things, they came up from the king’s house to Yahweh’s house; and they sat in the entry of the new gate of Yahweh’s house. + +Then the priests and the prophets spoke to the princes and to all the people, saying, “This man is worthy of death, for he has prophesied against this city, as you have heard with your ears.” + +

+

Then Jeremiah spoke to all the princes and to all the people, saying, “Yahweh sent me to prophesy against this house and against this city all the words that you have heard. + +Now therefore amend your ways and your doings, and obey Yahweh your God’s voice; then Yahweh will relent from the evil that he has pronounced against you. + +But as for me, behold, I am in your hand. Do with me what is good and right in your eyes. + +Only know for certain that if you put me to death, you will bring innocent blood on yourselves, on this city, and on its inhabitants; for in truth Yahweh has sent me to you to speak all these words in your ears.” + +

+

Then the princes and all the people said to the priests and to the prophets: “This man is not worthy of death; for he has spoken to us in the name of Yahweh our God.” + +

+

Then certain of the elders of the land rose up, and spoke to all the assembly of the people, saying, + +Micah the Morashtite prophesied in the days of Hezekiah king of Judah; and he spoke to all the people of Judah, saying, ‘Yahweh of Armies says: +

+“‘Zion will be plowed as a field, + +and Jerusalem will become heaps, + +and the mountain of the house as the high places of a forest.’ + + +

Did Hezekiah king of Judah and all Judah put him to death? Didn’t he fear Yahweh, and entreat the favor of Yahweh, and Yahweh relented of the disaster which he had pronounced against them? We would commit great evil against our own souls that way!” + +

+

There was also a man who prophesied in Yahweh’s name, Uriah the son of Shemaiah of Kiriath Jearim; and he prophesied against this city and against this land according to all the words of Jeremiah. + +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 Uriah heard it, he was afraid, and fled, and went into Egypt. + +Then Jehoiakim the king sent Elnathan the son of Achbor and certain men with him into Egypt. + +They fetched Uriah out of Egypt and brought him to Jehoiakim the king, who killed him with the sword and cast his dead body into the graves of the common people. + +

+

But the hand of Ahikam the son of Shaphan was with Jeremiah, so that they didn’t give him into the hand of the people to put him to death. + +

+ + +

In the beginning of the reign of Jehoiakim the son of Josiah, king of Judah, this word came to Jeremiah from Yahweh, saying, + +Yahweh says to me: “Make bonds and bars, and put them on your neck. + +Then send them to the king of Edom, to the king of Moab, to the king of the children of Ammon, to the king of Tyre, and to the king of Sidon, by the hand of the messengers who come to Jerusalem to Zedekiah king of Judah. + +Give them a command to their masters, saying, ‘Yahweh of Armies, the God of Israel says, “You shall tell your masters: + +I have made the earth, the men, and the animals that are on the surface of the earth by my great power and by my outstretched arm. I give it to whom it seems right to me. + +Now I have given all these lands into the hand of Nebuchadnezzar the king of Babylon, my servant. I have also given the animals of the field to him to serve him. + +All the nations will serve him, his son, and his son’s son, until the time of his own land comes. Then many nations and great kings will make him their bondservant. + +

+

“‘“‘It will happen that I will punish the nation and the kingdom which will not serve the same Nebuchadnezzar king of Babylon, and that will not put their neck under the yoke of the king of Babylon,’ says Yahweh, ‘with the sword, with famine, and with pestilence, until I have consumed them by his hand. + +But as for you, don’t listen to your prophets, to your diviners, to your dreams, to your soothsayers, or to your sorcerers, who speak to you, saying, “You shall not serve the king of Babylon;” + +for they prophesy a lie to you, to remove you far from your land, so that I would drive you out, and you would perish. + +But the nation that brings their neck under the yoke of the king of Babylon and serves him, that nation I will let remain in their own land,’ says Yahweh; ‘and they will till it and dwell in it.’”’” + +

+

I spoke 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. + +Why will you die, you and your people, by the sword, by the famine, and by the pestilence, as Yahweh has spoken concerning the nation that will not serve the king of Babylon? + +Don’t listen to the words of the prophets who speak to you, saying, ‘You shall not serve the king of Babylon;’ for they prophesy a lie to you. + +For I have not sent them,” says Yahweh, “but they prophesy falsely in my name; that I may drive you out, and that you may perish, you, and the prophets who prophesy to you.” + +

+

Also I spoke to the priests and to all this people, saying, Yahweh says, “Don’t listen to the words of your prophets who prophesy to you, saying, ‘Behold, the vessels of Yahweh’s house will now shortly be brought again from Babylon;’ for they prophesy a lie to you. + +Don’t listen to them. Serve the king of Babylon, and live. Why should this city become a desolation? + +But if they are prophets, and if Yahweh’s word is with them, let them now make intercession to Yahweh of Armies, that the vessels which are left in Yahweh’s house, in the house of the king of Judah, and at Jerusalem, don’t go to Babylon. + +For Yahweh of Armies says concerning the pillars, concerning the sea, concerning the bases, and concerning the rest of the vessels that are left in this city, + +which Nebuchadnezzar king of Babylon didn’t take 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— + +yes, Yahweh of Armies, the God of Israel, says concerning the vessels that are left in Yahweh’s house, and in the house of the king of Judah, and at Jerusalem: + +They will be carried to Babylon, and there they will be, until the day that I visit them,’ says Yahweh; ‘then I will bring them up, and restore them to this place.’” + +

+ + +

That same year, in the beginning of the reign of Zedekiah king of Judah, in the fourth year, in the fifth month, Hananiah the son of Azzur, the prophet, who was of Gibeon, spoke to me in Yahweh’s house, in the presence of the priests and of all the people, saying, + +Yahweh of Armies, the God of Israel, says, ‘I have broken the yoke of the king of Babylon. + +Within two full years I will bring again into this place all the vessels of Yahweh’s house that Nebuchadnezzar king of Babylon took away from this place and carried to Babylon. + +I will bring again to this place Jeconiah the son of Jehoiakim, king of Judah, with all the captives of Judah, who went to Babylon,’ says Yahweh; ‘for I will break the yoke of the king of Babylon.’” + +

+

Then the prophet Jeremiah said to the prophet Hananiah in the presence of the priests, and in the presence of all the people who stood in Yahweh’s house, + +even the prophet Jeremiah said, “Amen! May Yahweh do so. May Yahweh perform your words which you have prophesied, to bring again the vessels of Yahweh’s house, and all those who are captives, from Babylon to this place. + +Nevertheless listen now to this word that I speak in your ears, and in the ears of all the people: + +The prophets who have been before me and before you of old prophesied against many countries, and against great kingdoms, of war, of evil, and of pestilence. + +As for the prophet who prophesies of peace, when the word of the prophet happens, then the prophet will be known, that Yahweh has truly sent him.” + +

+

Then Hananiah the prophet took the bar from off the prophet Jeremiah’s neck, and broke it. + +Hananiah spoke in the presence of all the people, saying, “Yahweh says: ‘Even so I will break the yoke of Nebuchadnezzar king of Babylon from off the neck of all the nations within two full years.’” Then the prophet Jeremiah went his way. + +

+

Then Yahweh’s word came to Jeremiah, after Hananiah the prophet had broken the bar from off the neck of the prophet Jeremiah, saying, + +Go, and tell Hananiah, saying, ‘Yahweh says, “You have broken the bars of wood, but you have made in their place bars of iron.” + +For Yahweh of Armies, the God of Israel says, “I have put a yoke of iron on the neck of all these nations, that they may serve Nebuchadnezzar king of Babylon; and they will serve him. I have also given him the animals of the field.”’” + +

+

Then the prophet Jeremiah said to Hananiah the prophet, “Listen, Hananiah! Yahweh has not sent you, but you make this people trust in a lie. + +Therefore Yahweh says, ‘Behold, I will send you away from off the surface of the earth. This year you will die, because you have spoken rebellion against Yahweh.’” + +

+

So Hananiah the prophet died the same year in the seventh month. + +

+ + +

Now these are the words of the letter that Jeremiah the prophet sent from Jerusalem to the residue of the elders of the captivity, and to the priests, to the prophets, and to all the people whom Nebuchadnezzar had carried away captive from Jerusalem to Babylon, + +(after Jeconiah the king, the queen mother, the eunuchs, the princes of Judah and Jerusalem, the craftsmen, and the smiths had departed from Jerusalem), + +by the hand of Elasah the son of Shaphan and Gemariah the son of Hilkiah, (whom Zedekiah king of Judah sent to Babylon to Nebuchadnezzar king of Babylon). It said: + +

+

Yahweh of Armies, the God of Israel, says to all the captives whom I have caused to be carried away captive from Jerusalem to Babylon: + +Build houses and dwell in them. Plant gardens and eat their fruit. + +Take wives and father sons and daughters. Take wives for your sons, and give your daughters to husbands, that they may bear sons and daughters. Multiply there, and don’t be diminished. + +Seek the peace of the city where I have caused you to be carried away captive, and pray to Yahweh for it; for in its peace you will have peace.” + +For Yahweh of Armies, the God of Israel says: “Don’t let your prophets who are among you and your diviners deceive you. Don’t listen to your dreams which you cause to be dreamed. + +For they prophesy falsely to you in my name. I have not sent them,” says Yahweh. + +For Yahweh says, “After seventy years are accomplished for Babylon, I will visit you and perform my good word toward you, in causing you to return to this place. + +For I know the thoughts that I think toward you,” says Yahweh, “thoughts of peace, and not of evil, to give you hope and a future. + +You shall call on me, and you shall go and pray to me, and I will listen to you. + +You shall seek me and find me, when you search for me with all your heart. + +I will be found by you,” says Yahweh, “and I will turn again your captivity, and I will gather you from all the nations, and from all the places where I have driven you,” says Yahweh. “I will bring you again to the place from where I caused you to be carried away captive.” + +

+

Because you have said, “Yahweh has raised us up prophets in Babylon,” + +Yahweh says concerning the king who sits on David’s throne, and concerning all the people who dwell in this city, your brothers who haven’t gone with you into captivity, + +Yahweh of Armies says: “Behold, I will send on them the sword, the famine, and the pestilence, and will make them like rotten figs that can’t be eaten, they are so bad. + +I will pursue after them with the sword, with the famine, and with the pestilence, and will deliver them to be tossed back and forth among all the kingdoms of the earth, to be an object of horror, an astonishment, a hissing, and a reproach among all the nations where I have driven them, + +because they have not listened to my words,” says Yahweh, “with which I sent to them my servants the prophets, rising up early and sending them; but you would not hear,” says Yahweh. + +

+

Hear therefore Yahweh’s word, all you captives whom I have sent away from Jerusalem to Babylon. + +Yahweh of Armies, the God of Israel, says concerning Ahab the son of Kolaiah, and concerning Zedekiah the son of Maaseiah, who prophesy a lie to you in my name: “Behold, I will deliver them into the hand of Nebuchadnezzar king of Babylon; and he will kill them before your eyes. + +A curse will be taken up about them by all the captives of Judah who are in Babylon, saying, ‘Yahweh make you like Zedekiah and like Ahab, whom the king of Babylon roasted in the fire;’ + +because they have done foolish things in Israel, and have committed adultery with their neighbors’ wives, and have spoken words in my name falsely, which I didn’t command them. I am he who knows, and am witness,” says Yahweh. + +

+

Concerning Shemaiah the Nehelamite you shall speak, saying, + +Yahweh of Armies, the God of Israel, says, ‘Because you have sent letters in your own name to all the people who are at Jerusalem, and to Zephaniah the son of Maaseiah, the priest, and to all the priests, saying, + +Yahweh has made you priest in the place of Jehoiada the priest, that there may be officers in Yahweh’s house, for every man who is crazy and makes himself a prophet, that you should put him in the stocks and in shackles. + +Now therefore, why have you not rebuked Jeremiah of Anathoth, who makes himself a prophet to you, + +because he has sent to us in Babylon, saying, The captivity is long. Build houses, and dwell in them. Plant gardens, and eat their fruit?”’” + +

+

Zephaniah the priest read this letter in the hearing of Jeremiah the prophet. + +Then Yahweh’s word came to Jeremiah, saying, + +Send to all of the captives, saying, ‘Yahweh says concerning Shemaiah the Nehelamite: “Because Shemaiah has prophesied to you, and I didn’t send him, and he has caused you to trust in a lie,” + +therefore Yahweh says, “Behold, I will punish Shemaiah the Nehelamite and his offspring. He will not have a man to dwell among this people. He won’t see the good that I will do to my people,” says Yahweh, “because he has spoken rebellion against Yahweh.”’” + +

+ + +

The word that came to Jeremiah from Yahweh, saying, + +Yahweh, the God of Israel, says, ‘Write all the words that I have spoken to you in a book. + +For, behold, the days come,’ says Yahweh, ‘that I will reverse the captivity of my people Israel and Judah,’ says Yahweh. ‘I will cause them to return to the land that I gave to their fathers, and they will possess it.’” + +

+

These are the words that Yahweh spoke concerning Israel and concerning Judah. + +For Yahweh says: +

+We have heard a voice of trembling; + +a voice of fear, and not of peace. + + +Ask now, and see whether a man travails with child. + +Why do I see every man with his hands on his waist, as a woman in travail, + +and all faces are turned pale? + + +Alas, for that day is great, so that none is like it! + +It is even the time of Jacob’s trouble; + +but he will be saved out of it. + + +It will come to pass in that day, says Yahweh of Armies, that I will break his yoke from off your neck, + +and will burst your bonds. + +Strangers will no more make them their bondservants; + + +but they will serve Yahweh their God, + +and David their king, + +whom I will raise up to them. + + +Therefore don’t be afraid, O Jacob my servant, says Yahweh. + +Don’t be dismayed, Israel. + +For, behold, I will save you from afar, + +and save your offspring from the land of their captivity. + +Jacob will return, + +and will be quiet and at ease. + +No one will make him afraid. + + +For I am with you, says Yahweh, to save you; + +for I will make a full end of all the nations where I have scattered you, + +but I will not make a full end of you; + +but I will correct you in measure, + +and will in no way leave you unpunished.” + + +

For Yahweh says, +

+Your hurt is incurable. + +Your wound is grievous. + + +There is no one to plead your cause, + +that you may be bound up. + +You have no healing medicines. + + +All your lovers have forgotten you. + +They don’t seek you. + +For I have wounded you with the wound of an enemy, + +with the chastisement of a cruel one, + +for the greatness of your iniquity, + +because your sins were increased. + + +Why do you cry over your injury? + +Your pain is incurable. + +For the greatness of your iniquity, + +because your sins have increased, + +I have done these things to you. + + +Therefore all those who devour you will be devoured. + +All your adversaries, everyone of them, will go into captivity. + +Those who plunder you will be plunder. + +I will make all who prey on you become prey. + + +For I will restore health to you, + +and I will heal you of your wounds,” says Yahweh, + +because they have called you an outcast, + +saying, ‘It is Zion, whom no man seeks after.’” + + +

Yahweh says: +

+Behold, I will reverse the captivity of Jacob’s tents, + +and have compassion on his dwelling places. + +The city will be built on its own hill, + +and the palace will be inhabited in its own place. + + +Thanksgiving will proceed out of them + +with the voice of those who make merry. + +I will multiply them, + +and they will not be few; + +I will also glorify them, + +and they will not be small. + + +Their children also will be as before, + +and their congregation will be established before me. + +I will punish all who oppress them. + + +Their prince will be one of them, + +and their ruler will proceed from among them. + +I will cause him to draw near, + +and he will approach me; + +for who is he who has had boldness to approach me?” says Yahweh. + + +You shall be my people, + +and I will be your God. + + +Behold, Yahweh’s storm, his wrath, has gone out, + +a sweeping storm; + +it will burst on the head of the wicked. + + +The fierce anger of Yahweh will not return until he has accomplished, + +and until he has performed the intentions of his heart. + +In the latter days you will understand it.” + + + + +

At that time,” says Yahweh, “I will be the God of all the families of Israel, and they will be my people.” + +

+

Yahweh says, “The people who survive the sword found favor in the wilderness; even Israel, when I went to cause him to rest.” + +

+

Yahweh appeared of old to me, saying, +

+Yes, I have loved you with an everlasting love. + +Therefore I have drawn you with loving kindness. + + +I will build you again, + +and you will be built, O virgin of Israel. + +You will again be adorned with your tambourines, + +and will go out in the dances of those who make merry. + + +Again you will plant vineyards on the mountains of Samaria. + +The planters will plant, + +and will enjoy its fruit. + + +For there will be a day that the watchmen on the hills of Ephraim cry, + +Arise! Let’s go up to Zion to Yahweh our God.’” + + +

For Yahweh says, +

+Sing with gladness for Jacob, + +and shout for the chief of the nations. + +Publish, praise, and say, + +Yahweh, save your people, + +the remnant of Israel!’ + + +Behold, I will bring them from the north country, + +and gather them from the uttermost parts of the earth, + +along with the blind and the lame, + +the woman with child and her who travails with child together. + +They will return as a great company. + + +They will come with weeping. + +I will lead them with petitions. + +I will cause them to walk by rivers of waters, + +in a straight way in which they won’t stumble; + +for I am a father to Israel. + +Ephraim is my firstborn. + + + +Hear Yahweh’s word, you nations, + +and declare it in the distant islands. Say, + +He who scattered Israel will gather him, + +and keep him, as a shepherd does his flock.’ + + +For Yahweh has ransomed Jacob, + +and redeemed him from the hand of him who was stronger than he. + + +They will come and sing in the height of Zion, + +and will flow to the goodness of Yahweh, + +to the grain, to the new wine, to the oil, + +and to the young of the flock and of the herd. + +Their soul will be as a watered garden. + +They will not sorrow any more at all. + + +Then the virgin will rejoice in the dance, + +the young men and the old together; + +for I will turn their mourning into joy, + +and will comfort them, and make them rejoice from their sorrow. + + +I will satiate the soul of the priests with fatness, + +and my people will be satisfied with my goodness,” says Yahweh. + + + +

Yahweh says: +

+A voice is heard in Ramah, + +lamentation and bitter weeping, + +Rachel weeping for her children. + +She refuses to be comforted for her children, + +because they are no more.” + + +

Yahweh says: +

+Refrain your voice from weeping, + +and your eyes from tears, + +for your work will be rewarded,” says Yahweh. + +They will come again from the land of the enemy. + + +There is hope for your latter end,” says Yahweh. + +Your children will come again to their own territory. + + + +I have surely heard Ephraim grieving thus, + +You have chastised me, + +and I was chastised, as an untrained calf. + +Turn me, and I will be turned, + +for you are Yahweh my God. + + +Surely after that I was turned. + +I repented. + +After that I was instructed. + +I struck my thigh. + +I was ashamed, yes, even confounded, + +because I bore the reproach of my youth.’ + + +Is Ephraim my dear son? + +Is he a darling child? + +For as often as I speak against him, + +I still earnestly remember him. + +Therefore my heart yearns for him. + +I will surely have mercy on him,” says Yahweh. + + + +Set up road signs. + +Make guideposts. + +Set your heart toward the highway, + +even the way by which you went. + +Turn again, virgin of Israel. + +Turn again to these your cities. + + +How long will you go here and there, + +you backsliding daughter? + +For Yahweh has created a new thing on the earth: + +a woman will encompass a man.” + + + +

Yahweh of Armies, the God of Israel, says: “Yet again they will use this speech in the land of Judah and in its cities, when I reverse their captivity: ‘Yahweh bless you, habitation of righteousness, mountain of holiness.’ + +Judah and all its cities will dwell therein together, the farmers, and those who go about with flocks. + +For I have satiated the weary soul, and I have replenished every sorrowful soul.” + +

+

On this I awakened, and saw; and my sleep was sweet to me. + +

+

Behold, the days come,” says Yahweh, “that I will sow the house of Israel and the house of Judah with the seed of man and with the seed of animal. + +It will happen that, like as I have watched over them to pluck up and to break down and to overthrow and to destroy and to afflict, so I will watch over them to build and to plant,” says Yahweh. + +In those days they will say no more, +

+“‘The fathers have eaten sour grapes, + +and the children’s teeth are set on edge.’ + + +

But everyone will die for his own iniquity. Every man who eats the sour grapes, his teeth will be set on edge. + +

+

Behold, the days come,” says Yahweh, “that I will make a new covenant with the house of Israel, and with the house of Judah, + +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 covenant of mine they broke, although I was a husband to them,” says Yahweh. + +But this is the covenant that I will make with the house of Israel after those days,” says Yahweh: +

+I will put my law in their inward parts, + +and I will write it in their heart. + +I will be their God, + +and they shall be my people. + + +They will no longer each teach his neighbor, + +and every man teach his brother, saying, ‘Know Yahweh;’ + +for they will all know me, + +from their least to their greatest,” says Yahweh, + +for I will forgive their iniquity, + +and I will remember their sin no more.” + + +Yahweh, who gives the sun for a light by day, + +and the ordinances of the moon and of the stars for a light by night, + +who stirs up the sea, so that its waves roar— + +Yahweh of Armies is his name, says: + + +If these ordinances depart from before me,” says Yahweh, + +then the offspring of Israel also will cease from being a nation before me forever.” + + +Yahweh says: “If heaven above can be measured, + +and the foundations of the earth searched out beneath, + +then I will also cast off all the offspring of Israel for all that they have done,” says Yahweh. + + +

Behold, the days come,” says Yahweh, “that the city will be built to Yahweh from the tower of Hananel to the gate of the corner. + +The measuring line will go out further straight onward to the hill Gareb, and will turn toward Goah. + +The whole valley of the dead bodies and of the ashes, and all the fields to the brook Kidron, to the corner of the horse gate toward the east, will be holy to Yahweh. It will not be plucked up or thrown down any more forever.” + +

+ + +

This is the word that came to Jeremiah from Yahweh in the tenth year of Zedekiah king of Judah, which was the eighteenth year of Nebuchadnezzar. + +Now at that time the king of Babylon’s army was besieging Jerusalem. Jeremiah the prophet was shut up in the court of the guard, which was in the king of Judah’s house. + +

+

For Zedekiah king of Judah had shut him up, saying, “Why do you prophesy, and say, ‘Yahweh says, “Behold, I will give this city into the hand of the king of Babylon, and he will take it; + +and Zedekiah king of Judah won’t escape out of the hand of the Chaldeans, but will surely be delivered into the hand of the king of Babylon, and will speak with him mouth to mouth, and his eyes will see his eyes; + +and he will bring Zedekiah to Babylon, and he will be there until I visit him,” says Yahweh, “though you fight with the Chaldeans, you will not prosper”’?” + +

+

Jeremiah said, “Yahweh’s word came to me, saying, + +Behold, Hanamel the son of Shallum your uncle will come to you, saying, “Buy my field that is in Anathoth; for the right of redemption is yours to buy it.”’” + +

+

So Hanamel my uncle’s son came to me in the court of the guard according to Yahweh’s word, and said to me, ‘Please buy my field that is in Anathoth, which is in the land of Benjamin; for the right of inheritance is yours, and the redemption is yours. Buy it for yourself.’ +

+

Then I knew that this was Yahweh’s word. + +I bought the field that was in Anathoth of Hanamel my uncle’s son, and weighed him the money, even seventeen shekels32:9 +A shekel is about 10 grams or about 0.35 ounces. of silver. + +I signed the deed, sealed it, called witnesses, and weighed the money in the balances to him. + +So I took the deed of the purchase, both that which was sealed, containing the terms and conditions, and that which was open; + +and I delivered the deed of the purchase to Baruch the son of Neriah, the son of Mahseiah, in the presence of Hanamel my uncle’s son, and in the presence of the witnesses who signed the deed of the purchase, before all the Jews who sat in the court of the guard. + +

+

I commanded Baruch before them, saying, + +Yahweh of Armies, the God of Israel, says: ‘Take these deeds, this deed of the purchase which is sealed, and this deed which is open, and put them in an earthen vessel, that they may last many days.’ + +For Yahweh of Armies, the God of Israel says: ‘Houses and fields and vineyards will yet again be bought in this land.’ + +

+

Now after I had delivered the deed of the purchase to Baruch the son of Neriah, I prayed to Yahweh, saying, + +

+ +

“Ah Lord Yahweh! Behold, you have made the heavens and the earth by your great power and by your outstretched arm. There is nothing too hard for you. + +You show loving kindness to thousands, and repay the iniquity of the fathers into the bosom of their children after them. The great, the mighty God, Yahweh of Armies is your name: + +great in counsel, and mighty in work; whose eyes are open to all the ways of the children of men, to give everyone according to his ways, and according to the fruit of his doings; + +who performed signs and wonders in the land of Egypt, even to this day, both in Israel and among other men; and made yourself a name, as it is today; + +and brought your people Israel out of the land of Egypt with signs, with wonders, with a strong hand, with an outstretched arm, and with great terror; + +and gave them this land, which you swore to their fathers to give them, a land flowing with milk and honey. + +They came in and possessed it, but they didn’t obey your voice and didn’t walk in your law. They have done nothing of all that you commanded them to do. Therefore you have caused all this evil to come upon them. + +

+

Behold, siege ramps have been built against the city to take it. The city is given into the hand of the Chaldeans who fight against it, because of the sword, of the famine, and of the pestilence. What you have spoken has happened. Behold, you see it. + +You have said to me, Lord Yahweh, ‘Buy the field for money, and call witnesses;’ whereas the city is given into the hand of the Chaldeans.” + +

+

Then Yahweh’s word came to Jeremiah, saying, + +Behold, I am Yahweh, the God of all flesh. Is there anything too hard for me? + +Therefore Yahweh says: Behold, I will give this city into the hand of the Chaldeans, and into the hand of Nebuchadnezzar king of Babylon, and he will take it. + +The Chaldeans, who fight against this city, will come and set this city on fire, and burn it with the houses on whose roofs they have offered incense to Baal, and poured out drink offerings to other gods, to provoke me to anger. + +

+

For the children of Israel and the children of Judah have done only that which was evil in my sight from their youth; for the children of Israel have only provoked me to anger with the work of their hands, says Yahweh. + +For this city has been to me a provocation of my anger and of my wrath from the day that they built it even to this day, so that I should remove it from before my face, + +because of all the evil of the children of Israel and of the children of Judah, which they have done to provoke me to angerthey, their kings, their princes, their priests, their prophets, the men of Judah, and the inhabitants of Jerusalem. + +They have turned their backs to me, and not their faces. Although I taught them, rising up early and teaching them, yet they have not listened to receive instruction. + +But they set their abominations in the house which is called by my name, to defile it. + +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 fire to Molech, which I didn’t command them. It didn’t even come into my mind, that they should do this abomination, to cause Judah to sin.” + +

+

Now therefore Yahweh, the God of Israel, says concerning this city, about which you say, “It is given into the hand of the king of Babylon by the sword, by the famine, and by the pestilence:” + +Behold, I will gather them out of all the countries where I have driven them in my anger, and in my wrath, and in great indignation; and I will bring them again to this place. I will cause them to dwell safely. + +Then they will be my people, and I will be their God. + +I will give them one heart and one way, that they may fear me forever, for their good and the good of their children after them. + +I will make an everlasting covenant with them, that I will not turn away from following them, to do them good. I will put my fear in their hearts, that they may not depart from me. + +Yes, 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.” + +

+

For Yahweh says: “Just as I have brought all this great evil on this people, so I will bring on them all the good that I have promised them. + +Fields will be bought in this land, about which you say, ‘It is desolate, without man or animal. It is given into the hand of the Chaldeans.’ + +Men will buy fields for money, sign the deeds, seal them, and call witnesses, in the land of Benjamin, and in the places around Jerusalem, in the cities of Judah, in the cities of the hill country, in the cities of the lowland, and in the cities of the South; for I will cause their captivity to be reversed,” says Yahweh. + +

+ + +

Moreover Yahweh’s word came to Jeremiah the second time, while he was still locked up in the court of the guard, saying, + +Yahweh who does it, Yahweh who forms it to establish itYahweh is his name, says: + +Call to me, and I will answer you, and will show you great and difficult things, which you don’t know.’ + +For Yahweh, the God of Israel, says concerning the houses of this city and concerning the houses of the kings of Judah, which are broken down to make a defense against the mounds and against the sword: + +While men come to fight with the Chaldeans, and to fill them with the dead bodies of men, whom I have killed in my anger and in my wrath, and for all whose wickedness I have hidden my face from this city, + +behold, I will bring it health and healing, and I will cure them; and I will reveal to them abundance of peace and truth. + +I will restore the fortunes of Judah and Israel, and will build them as at the first. + +I will cleanse them from all their iniquity by which they have sinned against me. I will pardon all their iniquities by which they have sinned against me and by which they have transgressed against me. + +This city will be to me for a name of joy, for praise, and for glory, before all the nations of the earth, which will hear all the good that I do to them, and will fear and tremble for all the good and for all the peace that I provide to it.’” + +

+

Yahweh says: “Yet again there will be heard in this place, about which you say, ‘It is waste, without man and without animal, even in the cities of Judah, and in the streets of Jerusalem, that are desolate, without man and without inhabitant and without animal,’ + +the voice of joy and the voice of gladness, the voice of the bridegroom and the voice of the bride, the voice of those who say, ‘Give thanks to Yahweh of Armies, for Yahweh is good, for his loving kindness endures forever;’ who bring thanksgiving into Yahweh’s house. For I will cause the captivity of the land to be reversed as at the first,” says Yahweh. + +

+

Yahweh of Armies says: “Yet again there will be in this place, which is waste, without man and without animal, and in all its cities, a habitation of shepherds causing their flocks to lie down. + +In the cities of the hill country, in the cities of the lowland, in the cities of the South, in the land of Benjamin, in the places around Jerusalem, and in the cities of Judah, the flocks will again pass under the hands of him who counts them,” says Yahweh. + +

+

Behold, the days come,” says Yahweh, “that I will perform that good word which I have spoken concerning the house of Israel and concerning the house of Judah. + +

+In those days and at that time, + +I will cause a Branch of righteousness to grow up to David. + +He will execute justice and righteousness in the land. + + +In those days Judah will be saved, + +and Jerusalem will dwell safely. + +This is the name by which she will be called: + +Yahweh our righteousness.” + + +

For Yahweh says: “David will never lack a man to sit on the throne of the house of Israel. + +The Levitical priests won’t lack a man before me to offer burnt offerings, to burn meal offerings, and to do sacrifice continually.” + +

+

Yahweh’s word came to Jeremiah, saying, + +Yahweh says: ‘If you can break my covenant of the day and my covenant of the night, so that there will not be day and night in their time, + +then my covenant could also be broken with David my servant, that he won’t have a son to reign on his throne; and with the Levitical priests, my ministers. + +As the army of the sky can’t be counted, and the sand of the sea can’t be measured, so I will multiply the offspring of David my servant and the Levites who minister to me.’” + +

+

Yahweh’s word came to Jeremiah, saying, + +“Don’t consider what this people has spoken, saying, ‘Has Yahweh cast off the two families which he chose?’ Thus they despise my people, that they should be no more a nation before them.” + +Yahweh says: “If my covenant of day and night fails, if I have not appointed the ordinances of heaven and earth, + +then I will also cast away the offspring of Jacob, and of David my servant, so that I will not take of his offspring to be rulers over the offspring of Abraham, Isaac, and Jacob; for I will cause their captivity to be reversed and will have mercy on them.” + +

+ + +

The word which came to Jeremiah from Yahweh, when Nebuchadnezzar king of Babylon, with all his army, all the kingdoms of the earth that were under his dominion, and all the peoples, were fighting against Jerusalem and against all its cities, saying: + +Yahweh, the God of Israel, says, ‘Go, and speak to Zedekiah king of Judah, and tell him, Yahweh says, “Behold, I will give this city into the hand of the king of Babylon and he will burn it with fire. + +You won’t escape out of his hand, but will surely be taken and delivered into his hand. Your eyes will see the eyes of the king of Babylon, and he will speak with you mouth to mouth. You will go to Babylon.”’ + +

+

Yet hear Yahweh’s word, O Zedekiah king of Judah. Yahweh says concerning you, ‘You won’t die by the sword. + +You will die in peace; and with the burnings of your fathers, the former kings who were before you, so they will make a burning for you. They will lament you, saying, “Ah Lord!” for I have spoken the word,’ says Yahweh.” + +

+

Then Jeremiah the prophet spoke all these words to Zedekiah king of Judah in Jerusalem, + +when the king of Babylon’s army was fighting against Jerusalem and against all the cities of Judah that were left, against Lachish and against Azekah; for these alone remained of the cities of Judah as fortified cities. + +

+

The word came to Jeremiah from Yahweh, after King Zedekiah had made a covenant with all the people who were at Jerusalem, to proclaim liberty to them, + +that every man should let his male servant, and every man his female servant, who is a Hebrew or a Hebrewess, go free, that no one should make bondservants of them, of a Jew his brother. + +All the princes and all the people obeyed who had entered into the covenant, that everyone should let his male servant and everyone his female servant go free, that no one should make bondservants of them any more. They obeyed and let them go, + +but afterwards 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. + +

+

Therefore Yahweh’s word came to Jeremiah from Yahweh, saying, + +Yahweh, the God of Israel, says: ‘I made a covenant with your fathers in the day that I brought them out of the land of Egypt, out of the house of bondage, saying: + +At the end of seven years, every man of you shall release his brother who is a Hebrew, who has been sold to you, and has served you six years. You shall let him go free from you. But your fathers didn’t listen to me, and didn’t incline their ear. + +You had now turned, and had done that which is right in my eyes, in every man proclaiming liberty to his neighbor. You had made a covenant before me in the house which is called by my name; + +but you turned and profaned my name, and every man caused his servant and every man his handmaid, whom you had let go free at their pleasure, to return. You brought them into subjection, to be to you for servants and for handmaids.’” + +

+

Therefore Yahweh says: “You have not listened to me, to proclaim liberty, every man to his brother, and every man to his neighbor. Behold, I proclaim to you a liberty,” says Yahweh, “to the sword, to the pestilence, and to the famine. I will make you be tossed back and forth among all the kingdoms of the earth. + +I will give the men who have transgressed my covenant, who have not performed the words of the covenant which they made before me when they cut the calf in two and passed between its parts: + +the princes of Judah, the princes of Jerusalem, the eunuchs, the priests, and all the people of the land, who passed between the parts of the calf. + +I will even give them into the hand of their enemies and into the hand of those who seek their life. Their dead bodies will be food for the birds of the sky and for the animals of the earth. + +

+

I will give Zedekiah king of Judah and his princes into the hands of their enemies, into the hands of those who seek their life and into the hands of the king of Babylon’s army, who has gone away from you. + +Behold, I will command,” says Yahweh, “and cause them to return to this city. They will fight against it, take it, and burn it with fire. I will make the cities of Judah a desolation, without inhabitant.” + +

+ + +

The word which came to Jeremiah from Yahweh in the days of Jehoiakim the son of Josiah, king of Judah, saying, + +Go to the house of the Rechabites, and speak to them, and bring them into Yahweh’s house, into one of the rooms, and give them wine to drink.” + +

+

Then I took Jaazaniah the son of Jeremiah, the son of Habazziniah, with his brothers, all his sons, and the whole house of the Rechabites; + +and I brought them into Yahweh’s house, into the room of the sons of Hanan the son of Igdaliah, the man of God, which was by the room of the princes, which was above the room of Maaseiah the son of Shallum, the keeper of the threshold. + +I set before the sons of the house of the Rechabites bowls full of wine, and cups; and I said to them, “Drink wine!” + +

+

But they said, “We will drink no wine; for Jonadab the son of Rechab, our father, commanded us, saying, ‘You shall drink no wine, neither you nor your children, forever. + +You shall not build a house, sow seed, plant a vineyard, or have any; but all your days you shall dwell in tents, that you may live many days in the land in which you live as nomads.’ + +We have obeyed the voice of Jonadab the son of Rechab, our father, in all that he commanded us, to drink no wine all our days, we, our wives, our sons, or our daughters; + +and not to build houses for ourselves to dwell in. We have no vineyard, field, or seed; + +but we have lived in tents, and have obeyed, and done according to all that Jonadab our father commanded us. + +But when Nebuchadnezzar king of Babylon came up into the land, we said, ‘Come! Let’s go to Jerusalem for fear of the army of the Chaldeans, and for fear of the army of the Syrians; so we will dwell at Jerusalem.’” + +

+

Then Yahweh’s word came to Jeremiah, saying, + +Yahweh of Armies, the God of Israel, says: ‘Go and tell the men of Judah and the inhabitants of Jerusalem, “Will you not receive instruction to listen to my words?” says Yahweh. + +The words of Jonadab the son of Rechab that he commanded his sons, not to drink wine, are performed; and to this day they drink none, for they obey their father’s commandment; but I have spoken to you, rising up early and speaking, and you have not listened to me. + +I have sent also to you all my servants the prophets, rising up early and sending them, saying, ‘Every one of you must return now from his evil way, amend your doings, and don’t go after other gods to serve them. Then you will dwell in the land which I have given to you and to your fathers;’ but you have not inclined your ear, nor listened to me. + +The sons of Jonadab the son of Rechab have performed the commandment of their father which he commanded them, but this people has not listened to me.”’ + +

+

Therefore Yahweh, the God of Armies, the God of Israel, says: ‘Behold, I will bring on Judah and on all the inhabitants of Jerusalem all the evil that I have pronounced against them, because I have spoken to them, but they have not heard; and I have called to them, but they have not answered.’” + +

+

Jeremiah said to the house of the Rechabites, “Yahweh of Armies, the God of Israel, says: ‘Because you have obeyed the commandment of Jonadab your father, and kept all his precepts, and done according to all that he commanded you,’ + +therefore Yahweh of Armies, the God of Israel, says: ‘Jonadab the son of Rechab will not lack a man to stand before me forever.’” + +

+ + +

In the fourth year of Jehoiakim the son of Josiah, king of Judah, this word came to Jeremiah from Yahweh, saying, + +Take a scroll of a book, and write in it all the words that I have spoken to you against Israel, against Judah, and against all the nations, from the day I spoke to you, from the days of Josiah even to this day. + +It may be that the house of Judah will hear all the evil which I intend to do to them, that they may each return from his evil way; that I may forgive their iniquity and their sin.” + +

+

Then Jeremiah called Baruch the son of Neriah; and Baruch wrote from the mouth of Jeremiah all Yahweh’s words, which he had spoken to him, on a scroll of a book. + +Jeremiah commanded Baruch, saying, “I am restricted. I can’t go into Yahweh’s house. + +Therefore you go, and read from the scroll which you have written from my mouth, Yahweh’s words, in the ears of the people in Yahweh’s house on the fast day. Also you shall read them in the ears of all Judah who come out of their cities. + +It may be they will present their supplication before Yahweh, and will each return from his evil way; for Yahweh has pronounced great anger and wrath against this people.” + +

+

Baruch the son of Neriah did according to all that Jeremiah the prophet commanded him, reading in the book Yahweh’s words in Yahweh’s house. + +Now in the fifth year of Jehoiakim the son of Josiah, king of Judah, in the ninth month, all the people in Jerusalem and all the people who came from the cities of Judah to Jerusalem, proclaimed a fast before Yahweh. + +Then Baruch read the words of Jeremiah from the book in Yahweh’s house, in the room of Gemariah the son of Shaphan the scribe, in the upper court, at the entry of the new gate of Yahweh’s house, in the ears of all the people. + +

+

When Micaiah the son of Gemariah, the son of Shaphan, had heard out of the book all Yahweh’s words, + +he went down into the king’s house, into the scribe’s room; and behold, all the princes were sitting there, Elishama the scribe, Delaiah the son of Shemaiah, Elnathan the son of Achbor, Gemariah the son of Shaphan, Zedekiah the son of Hananiah, and all the princes. + +Then Micaiah declared to them all the words that he had heard, when Baruch read the book in the ears of the people. + +Therefore all the princes sent Jehudi the son of Nethaniah, the son of Shelemiah, the son of Cushi, to Baruch, saying, “Take in your hand the scroll in which you have read in the ears of the people, and come.” +

+

So Baruch the son of Neriah took the scroll in his hand, and came to them. + +They said to him, “Sit down now, and read it in our hearing.” +

+

So Baruch read it in their hearing. + +

+

Now when they had heard all the words, they turned in fear one toward another, and said to Baruch, “We will surely tell the king of all these words.” + +They asked Baruch, saying, “Tell us now, how did you write all these words at his mouth?” + +

+

Then Baruch answered them, “He dictated all these words to me with his mouth, and I wrote them with ink in the book.” + +

+

Then the princes said to Baruch, “You and Jeremiah go hide. Don’t let anyone know where you are.” + +

+

They went in to the king into the court, but they had laid up the scroll in the room of Elishama the scribe. Then they told all the words in the hearing of the king. + +So the king sent Jehudi to get the scroll, and he took it out of the room of Elishama the scribe. Jehudi read it in the hearing of the king, and in the hearing of all the princes who stood beside the king. + +Now the king was sitting in the winter house in the ninth month, and there was a fire in the brazier burning before him. + +When Jehudi had read three or four columns, the king cut it with the penknife, and cast it into the fire that was in the brazier, until all the scroll was consumed in the fire that was in the brazier. + +The king and his servants who heard all these words were not afraid, and didn’t tear their garments. + +Moreover Elnathan and Delaiah and Gemariah had made intercession to the king that he would not burn the scroll; but he would not listen to them. + +The king commanded Jerahmeel the king’s son, and Seraiah the son of Azriel, and Shelemiah the son of Abdeel, to arrest Baruch the scribe and Jeremiah the prophet; but Yahweh hid them. + +

+

Then Yahweh’s word came to Jeremiah, after the king had burned the scroll, and the words which Baruch wrote at the mouth of Jeremiah, saying, + +Take again another scroll, and write in it all the former words that were in the first scroll, which Jehoiakim the king of Judah has burned. + +Concerning Jehoiakim king of Judah you shall say, ‘Yahweh says: “You have burned this scroll, saying, ‘Why have you written therein, saying, “The king of Babylon will certainly come and destroy this land, and will cause to cease from there man and animal”?’” + +Therefore Yahweh says concerning Jehoiakim king of Judah: “He will have no one to sit on David’s throne. His dead body will be cast out in the day to the heat, and in the night to the frost. + +I will punish him, his offspring, and his servants for their iniquity. I will bring on them, on the inhabitants of Jerusalem, and on the men of Judah, all the evil that I have pronounced against them, but they didn’t listen.”’” + +

+

Then Jeremiah took another scroll, 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 many similar words were added to them. + +

+ + +

Zedekiah the son of Josiah reigned as king instead of Coniah the son of Jehoiakim, whom Nebuchadnezzar king of Babylon made king in the land of Judah. + +But neither he, nor his servants, nor the people of the land, listened to Yahweh’s words, which he spoke by the prophet Jeremiah. + +

+

Zedekiah the king sent Jehucal the son of Shelemiah and Zephaniah the son of Maaseiah, the priest, to the prophet Jeremiah, saying, “Pray now to Yahweh our God for us.” + +

+

Now Jeremiah came in and went out among the people, for they had not put him into prison. + +Pharaoh’s army had come out of Egypt; and when the Chaldeans who were besieging Jerusalem heard news of them, they withdrew from Jerusalem. + +

+

Then Yahweh’s word came to the prophet Jeremiah, saying, + +Yahweh, the God of Israel, says, ‘You shall tell the king of Judah, who sent you to me to inquire of me: “Behold, Pharaoh’s army, which has come out to help you, will return to Egypt into their own land. + +The Chaldeans will come again, and fight against this city. They will take it and burn it with fire.”’ + +

+

Yahweh says, ‘Don’t deceive yourselves, saying, “The Chaldeans will surely depart from us;” for they will not depart. + +For though you had struck the whole army of the Chaldeans who fight against you, and only wounded men remained among them, they would each rise up in his tent and burn this city with fire.’” + +

+

When the army of the Chaldeans had withdrawn from Jerusalem for fear of Pharaoh’s army, + +then Jeremiah went out of Jerusalem to go into the land of Benjamin, to receive his portion there, in the middle of the people. + +When he was in Benjamin’s gate, a captain of the guard was there, whose name was Irijah, the son of Shelemiah, the son of Hananiah; and he seized Jeremiah the prophet, saying, “You are defecting to the Chaldeans!” + +

+

Then Jeremiah said, “That is false! I am not defecting to the Chaldeans.” +

+

But he didn’t listen to him; so Irijah seized Jeremiah, and brought him to the princes. + +The princes were angry with Jeremiah, and struck him, and put him in prison in the house of Jonathan the scribe; for they had made that the prison. + +

+

When Jeremiah had come into the dungeon house and into the cells, and Jeremiah had remained there many days, + +then Zedekiah the king sent and had him brought out. The king asked him secretly in his house, “Is there any word from Yahweh?” +

+

Jeremiah said, “There is.” He also said, “You will be delivered into the hand of the king of Babylon.” + +

+

Moreover Jeremiah said to King Zedekiah, “How have I sinned against you, against your servants, or against this people, that you have put me in prison? + +Now where are your prophets who prophesied to you, saying, ‘The king of Babylon will not come against you, nor against this land’? + +Now please hear, my lord the king: please let my supplication be presented before you, that you not cause me to return to the house of Jonathan the scribe, lest I die there.” + +

+

Then Zedekiah the king commanded, and they committed Jeremiah into the court of the guard. They gave him daily a loaf of bread out of the bakers’ street, until all the bread in the city was gone. Thus Jeremiah remained in the court of the guard. + +

+ + +

Shephatiah the son of Mattan, Gedaliah the son of Pashhur, Jucal the son of Shelemiah, and Pashhur the son of Malchijah heard the words that Jeremiah spoke to all the people, saying, + +Yahweh says, ‘He who remains in this city will die by the sword, by the famine, and by the pestilence, but he who goes out to the Chaldeans will live. He will escape with his life and he will live.’ + +Yahweh says, ‘This city will surely be given into the hand of the army of the king of Babylon, and he will take it.’” + +

+

Then the princes said to the king, “Please let this man be put to death, because he weakens the hands of the men of war who remain in this city, and the hands of all the people, in speaking such words to them; for this man doesn’t seek the welfare of this people, but harm.” + +

+

Zedekiah the king said, “Behold, he is in your hand; for the king can’t do anything to oppose you.” + +

+

Then they took Jeremiah and threw him into the dungeon of Malchijah the king’s son, that was in the court of the guard. They let down Jeremiah with cords. In the dungeon there was no water, but mire; and Jeremiah sank in the mire. + +

+

Now when Ebedmelech the Ethiopian, a eunuch, who was in the king’s house, heard that they had put Jeremiah in the dungeon (the king was then sitting in Benjamin’s gate), + +Ebedmelech went out of the king’s house, and spoke to the king, saying, + +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. He is likely to die in the place where he is, because of the famine; for there is no more bread in the city.” + +

+

Then the king commanded Ebedmelech the Ethiopian, saying, “Take from here thirty men with you, and take up Jeremiah the prophet out of the dungeon, before he dies.” + +

+

So Ebedmelech took the men with him, and went into the house of the king under the treasury, and took from there rags and worn-out garments, and let them down by cords into the dungeon to Jeremiah. + +Ebedmelech the Ethiopian said to Jeremiah, “Now put these rags and worn-out garments under your armpits under the cords.” +

+

Jeremiah did so. + +So they lifted Jeremiah up with the cords, and took him up out of the dungeon; and Jeremiah remained in the court of the guard. + +

+

Then Zedekiah the king sent and took Jeremiah the prophet to himself into the third entry that is in Yahweh’s house. Then the king said to Jeremiah, “I will ask you something. Hide nothing from me.” + +

+

Then Jeremiah said to Zedekiah, “If I declare it to you, will you not surely put me to death? If I give you counsel, you will not listen to me.” + +

+

So Zedekiah the king swore secretly to Jeremiah, saying, “As Yahweh lives, who made our souls, I will not put you to death, neither will I give you into the hand of these men who seek your life.” + +

+

Then Jeremiah said to Zedekiah, “Yahweh, the God of Armies, the God of Israel, says: ‘If you will go out to the king of Babylon’s princes, then your soul will live, and this city will not be burned with fire. You will live, along with your house. + +But if you will not go out to the king of Babylon’s princes, then this city will be given into the hand of the Chaldeans, and they will burn it with fire, and you won’t escape out of their hand.’” + +

+

Zedekiah the king said to Jeremiah, “I am afraid of the Jews who have defected to the Chaldeans, lest they deliver me into their hand, and they mock me.” + +

+

But Jeremiah said, “They won’t deliver you. Obey, I beg you, Yahweh’s voice, in that which I speak to you; so it will be well with you, and your soul will live. + +But if you refuse to go out, this is the word that Yahweh has shown me: + +Behold, all the women who are left in the king of Judah’s house will be brought out to the king of Babylon’s princes, and those women will say, +

+Your familiar friends have turned on you, + +and have prevailed over you. + +Your feet are sunk in the mire, + +they have turned away from you.” + + +

They will bring out all your wives and your children to the Chaldeans. You won’t escape out of their hand, but will be taken by the hand of the king of Babylon. You will cause this city to be burned with fire.’” + +

+

Then Zedekiah said to Jeremiah, “Let no man know of these words, and you won’t die. + +But if the princes hear that I have talked with you, and they come to you, and tell you, ‘Declare to us now what you have said to the king; don’t hide it from us, and we will not put you to death; also tell us what the king said to you;’ + +then you shall tell them, ‘I presented my supplication before the king, that he would not cause me to return to Jonathan’s house, to die there.’” + +

+

Then all the princes came to Jeremiah, and asked him; and he told them according to all these words that the king had commanded. So they stopped speaking with him, for the matter was not perceived. + +

+

So Jeremiah stayed in the court of the guard until the day that Jerusalem was taken. + +

+ + +

In the ninth year of Zedekiah king of Judah, in the tenth month, Nebuchadnezzar king of Babylon and all his army came against Jerusalem, and besieged it. + +In the eleventh year of Zedekiah, in the fourth month, the ninth day of the month, a breach was made in the city. + +All the princes of the king of Babylon came in, and sat in the middle gate: Nergal Sharezer, Samgarnebo, Sarsechim the Rabsaris, Nergal Sharezer the Rabmag, with all the rest of the princes of the king of Babylon. + +When Zedekiah the king of Judah and all the men of war saw them, then they fled and went out of the city by night, by the way of the king’s garden, through the gate between the two walls; and he went out toward the Arabah. + +

+

But the army of the Chaldeans pursued them, and overtook Zedekiah in the plains of Jericho. When they had taken him, they brought him up to Nebuchadnezzar king of Babylon to Riblah in the land of Hamath; and he pronounced judgment on him. + +Then the king of Babylon killed Zedekiah’s sons in Riblah before his eyes. The king of Babylon also killed all the nobles of Judah. + +Moreover he put out Zedekiah’s eyes and bound him in fetters, to carry him to Babylon. + +

+

The Chaldeans burned the king’s house and the people’s houses with fire and broke down the walls of Jerusalem. + +Then Nebuzaradan the captain of the guard carried away captive into Babylon the rest of the people who remained in the city, the deserters also who fell away to him, and the rest of the people who remained. + +But Nebuzaradan the captain of the guard left of the poor of the people, who had nothing, in the land of Judah, and gave them vineyards and fields at the same time. + +

+

Now Nebuchadnezzar king of Babylon commanded Nebuzaradan the captain of the guard concerning Jeremiah, saying, + +Take him and take care of him. Do him no harm; but do to him even as he tells you.” + +

+

So Nebuzaradan the captain of the guard, Nebushazban, Rabsaris, and Nergal Sharezer, Rabmag, and all the chief officers of the king of Babylon + +sent and took Jeremiah out of the court of the guard, and committed him to Gedaliah the son of Ahikam, the son of Shaphan, that he should bring him home. So he lived among the people. + +

+

Now Yahweh’s word came to Jeremiah while he was shut up in the court of the guard, saying, + +Go, and speak to Ebedmelech the Ethiopian, saying, ‘Yahweh of Armies, the God of Israel, says: “Behold, I will bring my words on this city for evil, and not for good; and they will be accomplished before you in that day. + +But I will deliver you in that day,” says Yahweh; “and you will not be given into the hand of the men of whom you are afraid. + +For I will surely save you. You won’t fall by the sword, but you will escape with your life, because you have put your trust in me,” says Yahweh.’” + +

+ + +

The word which came to Jeremiah from Yahweh, after Nebuzaradan the captain of the guard had let him go from Ramah, when he had taken him being bound in chains among all the captives of Jerusalem and Judah who were carried away captive to Babylon. + +The captain of the guard took Jeremiah and said to him, “Yahweh your God pronounced this evil on this place; + +and Yahweh has brought it, and done according as he spoke. Because you have sinned against Yahweh, and have not obeyed his voice, therefore this thing has come on you. + +Now, behold, I release you today from the chains which are on your hand. If it seems good to you to come with me into Babylon, come, and I will take care of you; but if it seems bad to you to come with me into Babylon, don’t. Behold, all the land is before you. Where it seems good and right to you to go, go there.” + +Now while he had not yet gone back, “Go back then,” he said, “to Gedaliah the son of Ahikam, the son of Shaphan, whom the king of Babylon has made governor over the cities of Judah, and dwell with him among the people; or go wherever it seems right to you to go.” +

+

So the captain of the guard gave him food and a present, and let him go. + +Then Jeremiah went to Gedaliah the son of Ahikam to Mizpah, and lived with him among the people who were left in the land. + +

+

Now when all the captains of the forces who 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 to him men, women, children, and of the poorest of the land, of those who were not carried away captive to Babylon, + +then 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 the Maacathite, they and their men came to Gedaliah to Mizpah. + +Gedaliah the son of Ahikam the son of Shaphan swore to them and to their men, saying, “Don’t be afraid to serve the Chaldeans. Dwell in the land, and serve the king of Babylon, and it will be well with you. + +As for me, behold, I will dwell at Mizpah, to stand before the Chaldeans who will come to us; but you, gather wine and summer fruits and oil, and put them in your vessels, and dwell in your cities that you have taken.” + +

+

Likewise when all the Jews who were in Moab, and among the children of Ammon, and in Edom, and who 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, + +then all the Jews returned out of all places where they were driven, and came to the land of Judah, to Gedaliah, to Mizpah, and gathered very much wine and summer fruits. + +

+

Moreover Johanan the son of Kareah, and all the captains of the forces who were in the fields, came to Gedaliah to Mizpah, + +and said to him, “Do you know that Baalis the king of the children of Ammon has sent Ishmael the son of Nethaniah to take your life?” +

+

But Gedaliah the son of Ahikam didn’t believe them. + +

+

Then Johanan the son of Kareah spoke to Gedaliah in Mizpah secretly, saying, “Please let me go, and I will kill Ishmael the son of Nethaniah, and no man will know it. Why should he take your life, that all the Jews who are gathered to you should be scattered, and the remnant of Judah perish?” + +

+

But Gedaliah the son of Ahikam said to Johanan the son of Kareah, “You shall not do this thing, for you speak falsely of Ishmael.” + +

+ + +

Now in the seventh month, Ishmael the son of Nethaniah, the son of Elishama, of the royal offspring and one of the chief officers of the king, and ten men with him, came to Gedaliah the son of Ahikam to Mizpah; and there they ate bread together in Mizpah. + +Then Ishmael the son of Nethaniah arose, and the ten men who were with him, and struck Gedaliah the son of Ahikam the son of Shaphan with the sword and killed him, whom the king of Babylon had made governor over the land. + +Ishmael also killed all the Jews who were with Gedaliah at Mizpah, and the Chaldean men of war who were found there. + +

+

The second day after he had killed Gedaliah, and no man knew it, + +men came from Shechem, from Shiloh, and from Samaria, even eighty men, having their beards shaved and their clothes torn, and having cut themselves, with meal offerings and frankincense in their hand, to bring them to Yahweh’s house. + +Ishmael the son of Nethaniah went out from Mizpah to meet them, weeping all along as he went, and as he met them, he said to them, “Come to Gedaliah the son of Ahikam.” + +It was so, when they came into the middle of the city, that Ishmael the son of Nethaniah killed them, and cast them into the middle of the pit, he, and the men who were with him. + +But ten men were found among those who said to Ishmael, “Don’t kill us; for we have stores hidden in the field, of wheat, and of barley, and of oil, and of honey.” +

+

So he stopped, and didn’t kill them among their brothers. + +Now the pit in which Ishmael cast all the dead bodies of the men whom he had killed, by the side of Gedaliah (this was that which Asa the king had made for fear of Baasha king of Israel), Ishmael the son of Nethaniah filled it with those who were killed. + +

+

Then Ishmael carried away captive all of the people who were left in Mizpah, even the king’s daughters, and all the people who remained in Mizpah, whom Nebuzaradan the captain of the guard had committed to Gedaliah the son of Ahikam. Ishmael the son of Nethaniah carried them away captive, and departed to go over to the children of Ammon. + +

+

But when Johanan the son of Kareah, and all the captains of the forces who were with him, heard of all the evil that Ishmael the son of Nethaniah had done, + +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. + +Now when all the people who were with Ishmael saw Johanan the son of Kareah, and all the captains of the forces who were with him, then they were glad. + +So all the people who Ishmael had carried away captive from Mizpah turned about and came back, and went to Johanan the son of Kareah. + +But Ishmael the son of Nethaniah escaped from Johanan with eight men, and went to the children of Ammon. + +

+

Then Johanan the son of Kareah and all the captains of the forces who were with him took all the remnant of the people whom he had recovered from Ishmael the son of Nethaniah, from Mizpah, after he had killed Gedaliah the son of Ahikam—the men of war, with the women, the children, and the eunuchs, whom he had brought back from Gibeon. + +They departed and lived in Geruth Chimham, which is by Bethlehem, to go to enter into Egypt + +because of the Chaldeans; for they were afraid of them, because Ishmael the son of Nethaniah had killed Gedaliah the son of Ahikam, whom the king of Babylon made governor over the land. + +

+ + +

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 to the greatest, came near, + +and said to Jeremiah the prophet, “Please let our supplication be presented before you, and pray for us to Yahweh your God, even for all this remnant, for we are left but a few of many, as your eyes see us, + +that Yahweh your God may show us the way in which we should walk, and the things that we should do.” + +

+

Then Jeremiah the prophet said to them, “I have heard you. Behold, I will pray to Yahweh your God according to your words; and it will happen that whatever thing Yahweh answers you, I will declare it to you. I will keep nothing back from you.” + +

+

Then they said to Jeremiah, “May Yahweh be a true and faithful witness among us, if we don’t do according to all the word with which Yahweh your God sends you to tell us. + +Whether it is good, or whether it is bad, we will obey the voice of Yahweh our God, to whom we send you; that it may be well with us, when we obey the voice of Yahweh our God.” + +

+

After ten days, Yahweh’s word came to Jeremiah. + +Then he called Johanan the son of Kareah, and all the captains of the forces who were with him, and all the people from the least even to the greatest, + +and said to them, “Yahweh, the God of Israel, to whom you sent me to present your supplication before him, says: + +If you will still live in this land, then I will build you, and not pull you down, and I will plant you, and not pluck you up; for I grieve over the distress that I have brought on you. + +Don’t be afraid of the king of Babylon, of whom you are afraid. Don’t be afraid of him,’ says Yahweh, ‘for I am with you to save you, and to deliver you from his hand. + +I will grant you mercy, that he may have mercy on you, and cause you to return to your own land. + +

+

“‘But if you say, “We will not dwell in this land,” so that you don’t obey Yahweh your God’s voice, + +saying, “No, but we will go into the land of Egypt, where we will see no war, nor hear the sound of the trumpet, nor have hunger of bread; and there we will dwell;”’ + +now therefore hear Yahweh’s word, O remnant of Judah! Yahweh of Armies, the God of Israel, says, ‘If you indeed set your faces to enter into Egypt, and go to live there, + +then it will happen that the sword, which you fear, will overtake you there in the land of Egypt; and the famine, about which you are afraid, will follow close behind you there in Egypt; and you will die there. + +So will it be with all the men who set their faces to go into Egypt to live there. They will die by the sword, by the famine, and by the pestilence. None of them will remain or escape from the evil that I will bring on them.’ + +For Yahweh of Armies, the God of Israel, says: ‘As my anger and my wrath has been poured out on the inhabitants of Jerusalem, so my wrath will be poured out on you, when you enter into Egypt; and you will be an object of horror, an astonishment, a curse, and a reproach; and you will see this place no more.’ + +

+

Yahweh has spoken concerning you, remnant of Judah, ‘Don’t go into Egypt!’ Know certainly that I have testified to you today. + +For you have dealt deceitfully against your own souls; for you sent me to Yahweh your God, saying, ‘Pray for us to Yahweh our God; and according to all that Yahweh our God says, so declare to us, and we will do it.’ + +I have declared it to you today; but you have not obeyed Yahweh your God’s voice in anything for which he has sent me to you. + +Now therefore know certainly that you will die by the sword, by the famine, and by the pestilence in the place where you desire to go to live.” + +

+ + +

When Jeremiah had finished speaking to all the people all the words of Yahweh their God, with which Yahweh their God had sent him to them, even all these words, + +then Azariah the son of Hoshaiah, Johanan the son of Kareah, and all the proud men spoke, saying to Jeremiah, “You speak falsely. Yahweh our God has not sent you to say, ‘You shall not go into Egypt to live there;’ + +but Baruch the son of Neriah has turned you against us, to deliver us into the hand of the Chaldeans, that they may put us to death or carry us away captive to Babylon.” + +

+

So Johanan the son of Kareah, and all the captains of the forces, and all the people, didn’t obey Yahweh’s voice, to dwell in the land of Judah. + +But Johanan the son of Kareah and all the captains of the forces took all the remnant of Judah, who had returned from all the nations where they had been driven, to live in the land of Judah— + +the men, the women, the children, the king’s daughters, and every person who 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. + +They came into the land of Egypt, for they didn’t obey Yahweh’s voice; and they came to Tahpanhes. + +

+

Then Yahweh’s word came to Jeremiah in Tahpanhes, saying, + +Take great stones in your hand and hide them in mortar in the brick work which is at the entry of Pharaoh’s house in Tahpanhes, in the sight of the men of Judah. + +Tell them, Yahweh of Armies, the God of Israel, says: ‘Behold, I will send and take Nebuchadnezzar the king of Babylon, my servant, and will set his throne on these stones that I have hidden; and he will spread his royal pavilion over them. + +He will come, and will strike the land of Egypt; such as are for death will be put to death, and such as are for captivity to captivity, and such as are for the sword to the sword. + +I will kindle a fire in the houses of the gods of Egypt. He will burn them, and carry them away captive. He will array himself with the land of Egypt, as a shepherd puts on his garment; and he will go out from there in peace. + +He will also break the pillars of Beth Shemesh that is in the land of Egypt; and he will burn the houses of the gods of Egypt with fire.’” + +

+ + +

The word that came to Jeremiah concerning all the Jews who lived in the land of Egypt, who lived at Migdol, and at Tahpanhes, and at Memphis, and in the country of Pathros, saying, + +Yahweh of Armies, the God of Israel, says: ‘You have seen all the evil that I have brought on Jerusalem, and on all the cities of Judah. Behold, today they are a desolation, and no man dwells in them, + +because of their wickedness which they have committed to provoke me to anger, in that they went to burn incense, to serve other gods that they didn’t know, neither they, nor you, nor your fathers. + +However I sent to you all my servants the prophets, rising up early and sending them, saying, “Oh, don’t do this abominable thing that I hate.” + +But they didn’t listen and didn’t incline their ear. They didn’t turn from their wickedness, to stop burning incense to other gods. + +Therefore my wrath and my anger was poured out, and was kindled in the cities of Judah and in the streets of Jerusalem; and they are wasted and desolate, as it is today.’ + +

+

Therefore now Yahweh, the God of Armies, the God of Israel, says: ‘Why do you commit great evil against your own souls, to cut off from yourselves man and woman, infant and nursing child out of the middle of Judah, to leave yourselves no one remaining, + +in that you provoke me to anger with the works of your hands, burning incense to other gods in the land of Egypt where you have gone to live, that you may be cut off, and that you may be a curse and a reproach among all the nations of the earth? + +Have you forgotten the wickedness of your fathers, the wickedness of the kings of Judah, the wickedness of their wives, your own wickedness, and the wickedness of your wives which they committed in the land of Judah and in the streets of Jerusalem? + +They are not humbled even to this day, neither have they feared, nor walked in my law, nor in my statutes, that I set before you and before your fathers.’ + +

+

Therefore Yahweh of Armies, the God of Israel, says: ‘Behold, I will set my face against you for evil, even to cut off all Judah. + +I will take the remnant of Judah that have set their faces to go into the land of Egypt to live there, and they will all be consumed. They will fall in the land of Egypt. They will be consumed by the sword and by the famine. They will die, from the least even to the greatest, by the sword and by the famine. They will be an object of horror, an astonishment, a curse, and a reproach. + +For I will punish those who dwell in the land of Egypt, as I have punished Jerusalem, by the sword, by the famine, and by the pestilence; + +so that none of the remnant of Judah, who have gone into the land of Egypt to live there, will escape or be left to return into the land of Judah, to which they have a desire to return to dwell there; for no one will return except those who will escape.’” + +

+

Then all the men who knew that their wives burned incense to other gods, and all the women who stood by, a great assembly, even all the people who lived in the land of Egypt, in Pathros, answered Jeremiah, saying, + +As for the word that you have spoken to us in Yahweh’s name, we will not listen to you. + +But we will certainly perform every word that has gone out of our mouth, to burn incense to the queen of the sky and to pour out drink offerings to 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 we had plenty of food, and were well, and saw no evil. + +But since we stopped burning incense to the queen of the sky, and pouring out drink offerings to her, we have lacked all things, and have been consumed by the sword and by the famine.” + +

+

The women said, “When we burned incense to the queen of the sky and poured out drink offerings to her, did we make her cakes to worship her, and pour out drink offerings to her, without our husbands?” + +

+

Then Jeremiah said to all the peopleto the men and to the women, even to all the people who had given him an answer, saying, + +The incense that you burned in the cities of Judah, and in the streets of Jerusalem, you and your fathers, your kings and your princes, and the people of the land, didn’t Yahweh remember them, and didn’t it come into his mind? + +Thus Yahweh could no longer bear it, because of the evil of your doings and because of the abominations which you have committed. Therefore your land has become a desolation, an astonishment, and a curse, without inhabitant, as it is today. + +Because you have burned incense and because you have sinned against Yahweh, and have not obeyed Yahweh’s voice, nor walked in his law, nor in his statutes, nor in his testimonies; therefore this evil has happened to you, as it is today.” + +

+

Moreover Jeremiah said to all the people, including all the women, “Hear Yahweh’s word, all Judah who are in the land of Egypt! + +Yahweh of Armies, the God of Israel, says, ‘You and your wives have both spoken with your mouths, and with your hands have fulfilled it, saying, “We will surely perform our vows that we have vowed, to burn incense to the queen of the sky, and to pour out drink offerings to her.” +

+

“‘Establish then your vows, and perform your vows.’ + +

+

Therefore hear Yahweh’s word, all Judah who dwell in the land of Egypt: ‘Behold, I have sworn by my great name,’ says Yahweh, ‘that my name will no more be named in the mouth of any man of Judah in all the land of Egypt, saying, “As the Lord Yahweh lives.” + +Behold, I watch over them for evil, and not for good; and all the men of Judah who are in the land of Egypt will be consumed by the sword and by the famine, until they are all gone. + +Those who escape the sword will return out of the land of Egypt into the land of Judah few in number. All the remnant of Judah, who have gone into the land of Egypt to live there, will know whose word will stand, mine or theirs. + +

+

“‘This will be the sign to you,’ says Yahweh, ‘that I will punish you in this place, that you may know that my words will surely stand against you for evil.’ + +Yahweh says, ‘Behold, I will give Pharaoh Hophra king of Egypt into the hand of his enemies and into the hand of those who seek his life, just as I gave Zedekiah king of Judah into the hand of Nebuchadnezzar king of Babylon, who was his enemy and sought his life.’” + +

+ + +

The message that Jeremiah the prophet spoke to Baruch the son of Neriah, when he wrote these words in a book at the mouth of Jeremiah, in the fourth year of Jehoiakim the son of Josiah, king of Judah, saying, + +Yahweh, the God of Israel, says to you, Baruch: + +You said, “Woe is me now! For Yahweh has added sorrow to my pain! I am weary with my groaning, and I find no rest.”’ + +

+

You shall tell him, Yahweh says: ‘Behold, that which I have built, I will break down, and that which I have planted I will pluck up; and this in the whole land. + +Do you seek great things for yourself? Don’t seek them; for, behold, I will bring evil on all flesh,’ says Yahweh, ‘but I will let you escape with your life wherever you go.’” + +

+ + +

Yahweh’s word which came to Jeremiah the prophet concerning the nations. + +

+

Of Egypt: concerning the army of Pharaoh Necoh king of Egypt, which was by the river Euphrates in Carchemish, which Nebuchadnezzar king of Babylon struck in the fourth year of Jehoiakim the son of Josiah, king of Judah. + +

+Prepare the buckler and shield, + +and draw near to battle! + + +Harness the horses, and get up, you horsemen, + +and stand up with your helmets. + +Polish the spears, + +put on the coats of mail. + + +Why have I seen it? + +They are dismayed and are turned backward. + +Their mighty ones are beaten down, + +have fled in haste, + +and don’t look back. + +Terror is on every side,” + +says Yahweh. + + +“Don’t let the swift flee away, + +nor the mighty man escape. + +In the north by the river Euphrates + +they have stumbled and fallen. + + + +Who is this who rises up like the Nile, + +like rivers whose waters surge? + + +Egypt rises up like the Nile, + +like rivers whose waters surge. + +He says, ‘I will rise up. I will cover the earth. + +I will destroy cities and its inhabitants.’ + + +Go up, you horses! + +Rage, you chariots! + +Let the mighty men go out: + +Cush and Put, who handle the shield; + +and the Ludim, who handle and bend the bow. + + +For that day is of the Lord, Yahweh of Armies, + +a day of vengeance, + +that he may avenge himself of his adversaries. + +The sword will devour and be satiated, + +and will drink its fill of their blood; + +for the Lord, Yahweh of Armies, has a sacrifice in the north country by the river Euphrates. + + +Go up into Gilead, and take balm, virgin daughter of Egypt. + +You use many medicines in vain. + +There is no healing for you. + + +The nations have heard of your shame, + +and the earth is full of your cry; + +for the mighty man has stumbled against the mighty, + +they both fall together.” + + + +

The word that Yahweh spoke to Jeremiah the prophet, how that Nebuchadnezzar king of Babylon should come and strike the land of Egypt: + +

+Declare in Egypt, + +publish in Migdol, + +and publish in Memphis and in Tahpanhes; + +say, ‘Stand up, and prepare, + +for the sword has devoured around you.’ + + +Why are your strong ones swept away? + +They didn’t stand, because Yahweh pushed them. + + +He made many to stumble. + +Yes, they fell on one another. + +They said, ‘Arise! Let’s go again to our own people, + +and to the land of our birth, + +from the oppressing sword.’ + + +They cried there, ‘Pharaoh king of Egypt is but a noise; + +he has let the appointed time pass by.’ + + + +As I live,” says the King, + +whose name is Yahweh of Armies, + +surely like Tabor among the mountains, + +and like Carmel by the sea, + +so he will come. + + +You daughter who dwells in Egypt, + +furnish yourself to go into captivity; + +for Memphis will become a desolation, + +and will be burned up, + +without inhabitant. + + + +Egypt is a very beautiful heifer; + +but destruction out of the north has come. + +It has come. + + +Also her hired men in the middle of her are like calves of the stall, + +for they also are turned back. + +They have fled away together. + +They didn’t stand, + +for the day of their calamity has come on them, + +the time of their visitation. + + +Its sound will go like the serpent, + +for they will march with an army, + +and come against her with axes, as wood cutters. + + +They will cut down her forest,” says Yahweh, + +though it can’t be searched; + +because they are more than the locusts, + +and are innumerable. + + +The daughter of Egypt will be disappointed; + +she will be delivered into the hand of the people of the north.” + + +

Yahweh of Armies, the God of Israel, says: “Behold, I will punish Amon of No, and Pharaoh, and Egypt, with her gods and her kings, even Pharaoh, and those who trust in him. + +I will deliver them into the hand of those who seek their lives, and into the hand of Nebuchadnezzar king of Babylon, and into the hand of his servants. Afterwards it will be inhabited, as in the days of old,” says Yahweh. + +

+But don’t you be afraid, Jacob my servant. + +Don’t be dismayed, Israel; + +for, behold, I will save you from afar, + +and your offspring from the land of their captivity. + +Jacob will return, + +and will be quiet and at ease. + +No one will make him afraid. + + +Don’t be afraid, O Jacob my servant,” says Yahweh, + +for I am with you; + +for I will make a full end of all the nations where I have driven you, + +but I will not make a full end of you, + +but I will correct you in measure, + +and will in no way leave you unpunished.” + + + + +

Yahweh’s word that came to Jeremiah the prophet concerning the Philistines, before Pharaoh struck Gaza. + +

+

Yahweh says: +

+Behold, waters rise up out of the north, + +and will become an overflowing stream, + +and will overflow the land and all that is therein, + +the city and those who dwell therein. + +The men will cry, + +and all the inhabitants of the land will wail. + + +At the noise of the stamping of the hoofs of his strong ones, + +at the rushing of his chariots, + +at the rumbling of his wheels, + +the fathers don’t look back for their children + +because their hands are so feeble, + + +because of the day that comes to destroy all the Philistines, + +to cut off from Tyre and Sidon every helper who remains; + +for Yahweh will destroy the Philistines, + +the remnant of the isle of Caphtor. + + +Baldness has come on Gaza; + +Ashkelon is brought to nothing. + +You remnant of their valley, + +how long will you cut yourself? + + + +“‘You sword of Yahweh, how long will it be before you are quiet? + +Put yourself back into your scabbard; + +rest, and be still.’ + + + +“How can you be quiet, + +since Yahweh has given you a command? + +Against Ashkelon, and against the seashore, + +there he has appointed it.” + + + + +

Of Moab. Yahweh of Armies, the God of Israel, says: +

+Woe to Nebo! + +For it is laid waste. + +Kiriathaim is disappointed. + +It is taken. + +Misgab48:1 +or, The stronghold is put to shame + +and broken down. + + +The praise of Moab is no more. + +In Heshbon they have devised evil against her: + +Come! Let’s cut her off from being a nation.’ + +You also, Madmen, will be brought to silence. + +The sword will pursue you. + + +The sound of a cry from Horonaim, + +desolation and great destruction! + + +Moab is destroyed. + +Her little ones have caused a cry to be heard. + + +For they will go up by the ascent of Luhith with continual weeping. + +For at the descent of Horonaim they have heard the distress of the cry of destruction. + + +Flee! Save your lives! + +Be like the juniper bush in the wilderness. + + +For, because you have trusted in your works and in your treasures, + +you also will be taken. + +Chemosh will go out into captivity, + +his priests and his princes together. + + +The destroyer will come on every city, + +and no city will escape; + +the valley also will perish, + +and the plain will be destroyed, as Yahweh has spoken. + + +Give wings to Moab, + +that she may fly and get herself away: + +and her cities will become a desolation, + +without anyone to dwell in them. + + + +“Cursed is he who does the work of Yahweh negligently; + +and cursed is he who keeps back his sword from blood. + + + +Moab has been at ease from his youth, + +and he has settled on his dregs, + +and has not been emptied from vessel to vessel, + +neither has he gone into captivity; + +therefore his taste remains in him, + +and his scent is not changed. + + +Therefore behold, the days come,” says Yahweh, + +that I will send to him those who pour off, + +and they will pour him off; + +and they will empty his vessels, + +and break their containers in pieces. + + +Moab will be ashamed of Chemosh, + +as the house of Israel was ashamed of Bethel, their confidence. + + + +“How do you say, ‘We are mighty men, + +and valiant men for the war’? + + +Moab is laid waste, + +and they have gone up into his cities, + +and his chosen young men have gone down to the slaughter,” + +says the King, whose name is Yahweh of Armies. + + +The calamity of Moab is near to come, + +and his affliction hurries fast. + + +All you who are around him, bemoan him; + +and all you who know his name, say, + +How the strong staff is broken, + +the beautiful rod!’ + + + +You daughter who dwells in Dibon, + +come down from your glory, + +and sit in thirst; + +for the destroyer of Moab has come up against you. + +He has destroyed your strongholds. + + +Inhabitant of Aroer, stand by the way and watch. + +Ask him who flees, and her who escapes; + +say, ‘What has been done?’ + + +Moab is disappointed; + +for it is broken down. + +Wail and cry! + +Tell it by the Arnon, that Moab is laid waste. + + +Judgment has come on the plain country— + +on Holon, on Jahzah, on Mephaath, + + +on Dibon, on Nebo, on Beth Diblathaim, + + +on Kiriathaim, on Beth Gamul, on Beth Meon, + + +on Kerioth, on Bozrah, + +and on all the cities of the land of Moab, far or near. + + +The horn of Moab is cut off, + +and his arm is broken,” says Yahweh. + + + +Make him drunk, + +for he magnified himself against Yahweh. + +Moab will wallow in his vomit, + +and he also will be in derision. + + +For wasn’t Israel a derision to you? + +Was he found among thieves? + +For as often as you speak of him, + +you shake your head. + + +You inhabitants of Moab, leave the cities, and dwell in the rock. + +Be like the dove that makes her nest over the mouth of the abyss. + + + +We have heard of the pride of Moab. + +He is very proud in his loftiness, his pride, + +his arrogance, and the arrogance of his heart. + + +I know his wrath,” says Yahweh, “that it is nothing; + +his boastings have done nothing. + + +Therefore I will wail for Moab. + +Yes, I will cry out for all Moab. + +They will mourn for the men of Kir Heres. + + +With more than the weeping of Jazer + +I will weep for you, vine of Sibmah. + +Your branches passed over the sea. + +They reached even to the sea of Jazer. + +The destroyer has fallen on your summer fruits + +and on your vintage. + + +Gladness and joy is taken away from the fruitful field + +and from the land of Moab. + +I have caused wine to cease from the wine presses. + +No one will tread with shouting. + +The shouting will be no shouting. + + +From the cry of Heshbon even to Elealeh, + +even to Jahaz they have uttered their voice, + +from Zoar even to Horonaim, to Eglath Shelishiyah; + +for the waters of Nimrim will also become desolate. + + +Moreover I will cause to cease in Moab,” says Yahweh, + +him who offers in the high place, + +and him who burns incense to his gods. + + +Therefore my heart sounds for Moab like flutes, + +and my heart sounds like flutes for the men of Kir Heres. + +Therefore the abundance that he has gotten has perished. + + +For every head is bald, + +and every beard clipped. + +There are cuttings on all the hands, + +and sackcloth on the waist. + + +On all the housetops of Moab, + +and in its streets, there is lamentation everywhere; + +for I have broken Moab like a vessel in which no one delights,” says Yahweh. + + +“How it is broken down! + +How they wail! + +How Moab has turned the back with shame! + +So will Moab become a derision + +and a terror to all who are around him.” + + +For Yahweh says: “Behold, he will fly as an eagle, + +and will spread out his wings against Moab. + + +Kerioth is taken, + +and the strongholds are seized. + +The heart of the mighty men of Moab at that day + +will be as the heart of a woman in her pangs. + + +Moab will be destroyed from being a people, + +because he has magnified himself against Yahweh. + + +Terror, the pit, and the snare are on you, + +inhabitant of Moab,” says Yahweh. + + +He who flees from the terror will fall into the pit; + +and he who gets up out of the pit will be taken in the snare, + +for I will bring on him, even on Moab, + +the year of their visitation,” says Yahweh. + + + +Those who fled stand without strength under the shadow of Heshbon; + +for a fire has gone out of Heshbon, + +and a flame from the middle of Sihon, + +and has devoured the corner of Moab, + +and the crown of the head of the tumultuous ones. + + +Woe to you, O Moab! + +The people of Chemosh are undone; + +for your sons are taken away captive, + +and your daughters into captivity. + + + +Yet I will reverse the captivity of Moab in the latter days,” + +says Yahweh. + +

Thus far is the judgment of Moab. + +

+ + +

Of the children of Ammon. Yahweh says: +

+Has Israel no sons? + +Has he no heir? + +Why then does Malcam possess Gad, + +and his people dwell in its cities? + + +Therefore behold, the days come,” + +says Yahweh, + +that I will cause an alarm of war to be heard against Rabbah of the children of Ammon, + +and it will become a desolate heap, + +and her daughters will be burned with fire; + +then Israel will possess those who possessed him,” + +says Yahweh. + + +Wail, Heshbon, for Ai is laid waste! + +Cry, you daughters of Rabbah! + +Clothe yourself in sackcloth. + +Lament, and run back and forth among the fences; + +for Malcam will go into captivity, + +his priests and his princes together. + + +Why do you boast in the valleys, + +your flowing valley, backsliding daughter? + +You trusted in her treasures, + +saying, ‘Who will come to me?’ + + +Behold, I will bring a terror on you,” + +says the Lord, Yahweh of Armies, + +from all who are around you. + +All of you will be driven completely out, + +and there will be no one to gather together the fugitives. + + + +But afterward I will reverse the captivity of the children of Ammon,” + +says Yahweh. + + + +

Of Edom, Yahweh of Armies says: +

+Is wisdom no more in Teman? + +Has counsel perished from the prudent? + +Has their wisdom vanished? + + +Flee! Turn back! + +Dwell in the depths, inhabitants of Dedan; + +for I will bring the calamity of Esau on him when I visit him. + + +If grape gatherers came to you, + +would they not leave some gleaning grapes? + +If thieves came by night, + +wouldn’t they steal until they had enough? + + +But I have made Esau bare, + +I have uncovered his secret places, + +and he will not be able to hide himself. + +His offspring is destroyed, + +with his brothers and his neighbors; + +and he is no more. + + +Leave your fatherless children. + +I will preserve them alive. + +Let your widows trust in me.” + + +

For Yahweh says: “Behold, they to whom it didn’t pertain to drink of the cup will certainly drink; and are you he who will altogether go unpunished? You won’t go unpunished, but you will surely drink. + +For I have sworn by myself,” says Yahweh, “that Bozrah will become an astonishment, a reproach, a waste, and a curse. All its cities will be perpetual wastes.” + +

+I have heard news from Yahweh, + +and an ambassador is sent among the nations, + +saying, “Gather yourselves together! + +Come against her! + +Rise up to the battle!” + + + +For, behold, I have made you small among the nations, + +and despised among men. + + +As for your terror, + +the pride of your heart has deceived you, + +O you who dwell in the clefts of the rock, + +who hold the height of the hill, + +though you should make your nest as high as the eagle, + +I will bring you down from there,” says Yahweh. + + +“Edom will become an astonishment. + +Everyone who passes by it will be astonished, + +and will hiss at all its plagues. + + +As in the overthrow of Sodom and Gomorrah and its neighbor cities,” says Yahweh, + +no man will dwell there, + +neither will any son of man live therein. + + + +Behold, he will come up like a lion from the pride of the Jordan against the strong habitation; + +for I will suddenly make them run away from it, + +and whoever is chosen, + +I will appoint him over it. + +For who is like me? + +Who will appoint me a time? + +Who is the shepherd who will stand before me?” + + +Therefore hear the counsel of Yahweh, that he has taken against Edom, + +and his purposes that he has purposed against the inhabitants of Teman: + +Surely they will drag them away, + +the little ones of the flock. + +Surely he will make their habitation desolate over them. + + +The earth trembles at the noise of their fall; + +there is a cry, the noise which is heard in the Red Sea. + + +Behold, he will come up and fly as the eagle, + +and spread out his wings against Bozrah. + +The heart of the mighty men of Edom at that day will be as the heart of a woman in her pangs. + + + +

Of Damascus: +

+Hamath and Arpad are confounded, + +for they have heard evil news. + +They have melted away. + +There is sorrow on the sea. + +It can’t be quiet. + + +Damascus has grown feeble, + +she turns herself to flee, + +and trembling has seized her. + +Anguish and sorrows have taken hold of her, + +as of a woman in travail. + + +How is the city of praise not forsaken, + +the city of my joy? + + +Therefore her young men will fall in her streets, + +and all the men of war will be brought to silence in that day,” + +says Yahweh of Armies. + + +“I will kindle a fire in the wall of Damascus, + +and it will devour the palaces of Ben Hadad.” + + + +Of Kedar, and of the kingdoms of Hazor, which Nebuchadnezzar king of Babylon struck, Yahweh says: + +Arise, go up to Kedar, + +and destroy the children of the east. + + +They will take their tents and their flocks. + +they will carry away for themselves their curtains, + +all their vessels, and their camels; + +and they will cry to them, ‘Terror on every side!’ + + +Flee! + +Wander far off! + +Dwell in the depths, you inhabitants of Hazor,” says Yahweh; + +for Nebuchadnezzar king of Babylon has taken counsel against you, + +and has conceived a purpose against you. + + +Arise! Go up to a nation that is at ease, + +that dwells without care,” says Yahweh; + +that has neither gates nor bars, + +that dwells alone. + + +Their camels will be a booty, + +and the multitude of their livestock a plunder. + +I will scatter to all winds those who have the corners of their beards cut off; + +and I will bring their calamity from every side of them,” + +says Yahweh. + + +Hazor will be a dwelling place of jackals, + +a desolation forever. + +No man will dwell there, + +neither will any son of man live therein.” + + + +

Yahweh’s word that came to Jeremiah the prophet concerning Elam, in the beginning of the reign of Zedekiah king of Judah, saying, + +Yahweh of Armies says: +

+Behold, I will break the bow of Elam, + +the chief of their might. + + +I will bring on Elam the four winds from the four quarters of the sky, + +and will scatter them toward all those winds. + +There will be no nation where the outcasts of Elam will not come. + + +I will cause Elam to be dismayed before their enemies, + +and before those who seek their life. + +I will bring evil on them, even my fierce anger,’ says Yahweh; + +and I will send the sword after them, + +until I have consumed them. + + +I will set my throne in Elam, + +and will destroy from there king and princes,’ says Yahweh. + + +But it will happen in the latter days + +that I will reverse the captivity of Elam,’ says Yahweh.” + + + + +

The word that Yahweh spoke concerning Babylon, concerning the land of the Chaldeans, by Jeremiah the prophet. + +

+Declare among the nations and publish, + +and set up a standard; + +publish, and don’t conceal; + +say, ‘Babylon has been taken, + +Bel is disappointed, + +Merodach is dismayed! + +Her images are disappointed. + +Her idols are dismayed.’ + + +For a nation comes up out of the north against her, + +which will make her land desolate, + +and no one will dwell in it. + +They have fled. + +They are gone, + +both man and animal. + + + +In those days, and in that time,” says Yahweh, + +the children of Israel will come, + +they and the children of Judah together; + +they will go on their way weeping, + +and will seek Yahweh their God. + + +They will inquire concerning Zion with their faces turned toward it, + +saying, ‘Come, and join yourselves to Yahweh in an everlasting covenant + +that will not be forgotten.’ + + +My people have 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 resting place. + + +All who found them have devoured them. + +Their adversaries said, ‘We are not guilty, + +because they have sinned against Yahweh, + +the habitation of righteousness, + +even Yahweh, the hope of their fathers.’ + + + +Flee out of the middle of Babylon! + +Go out of the land of the Chaldeans, + +and be as the male goats before the flocks. + + +For, behold, I will stir up + +and cause to come up against Babylon a company of great nations from the north country; + +and they will set themselves in array against her. + +She will be taken from there. + +Their arrows will be as of an expert mighty man. + +None of them will return in vain. + + +Chaldea will be a prey. + +All who prey on her will be satisfied,” says Yahweh. + + + +Because you are glad, + +because you rejoice, + +O you who plunder my heritage, + +because you are wanton as a heifer that treads out the grain, + +and neigh as strong horses, + + +your mother will be utterly disappointed. + +She who bore you will be confounded. + +Behold, she will be the least of the nations, + +a wilderness, a dry land, and a desert. + + +Because of Yahweh’s wrath she won’t be inhabited, + +but she will be wholly desolate. + +Everyone who goes by Babylon will be astonished, + +and hiss at all her plagues. + + +Set yourselves in array against Babylon all around, + +all you who bend the bow; + +shoot at her. + +Spare no arrows, + +for she has sinned against Yahweh. + + +Shout against her all around. + +She has submitted herself. + +Her bulwarks have fallen. + +Her walls have been thrown down, + +for it is the vengeance of Yahweh. + +Take vengeance on her. + +As she has done, do to her. + + +Cut off the sower from Babylon, + +and him who handles the sickle in the time of harvest. + +For fear of the oppressing sword, + +they will each return to their own people, + +and they will each flee to their own land. + + + +Israel is a hunted sheep. + +The lions have driven him away. + +First, the king of Assyria devoured him, + +and now at last Nebuchadnezzar king of Babylon has broken his bones.” + + +

Therefore Yahweh of Armies, the God of Israel, says: +

+Behold, I will punish the king of Babylon and his land, + +as I have punished the king of Assyria. + + +I will bring Israel again to his pasture, + +and he will feed on Carmel and Bashan. + +His soul will be satisfied on the hills of Ephraim and in Gilead. + + +In those days, and in that time,” says Yahweh, + +the iniquity of Israel will be sought for, + +and there will be none, + +also the sins of Judah, + +and they won’t be found; + +for I will pardon them whom I leave as a remnant. + + + +Go up against the land of Merathaim, + +even against it, and against the inhabitants of Pekod. + +Kill and utterly destroy after them,” says Yahweh, + +and do according to all that I have commanded you. + + +A sound of battle is in the land, + +and of great destruction. + + +How the hammer of the whole earth is cut apart and broken! + +How Babylon has become a desolation among the nations! + + +I have laid a snare for you, + +and you are also taken, Babylon, + +and you weren’t aware. + +You are found, + +and also caught, + +because you have fought against Yahweh. + + +Yahweh has opened his armory, + +and has brought out the weapons of his indignation; + +for the Lord, Yahweh of Armies, has a work to do in the land of the Chaldeans. + + +Come against her from the farthest border. + +Open her storehouses. + +Cast her up as heaps. + +Destroy her utterly. + +Let nothing of her be left. + + +Kill all her bulls. + +Let them go down to the slaughter. + +Woe to them! For their day has come, + +the time of their visitation. + + +Listen to those who flee and escape out of the land of Babylon, + +to declare in Zion the vengeance of Yahweh our God, + +the vengeance of his temple. + + + +Call together the archers against Babylon, + +all those who bend the bow. + +Encamp against her all around. + +Let none of it escape. + +Pay her back according to her work. + +According to all that she has done, do to her; + +for she has been proud against Yahweh, + +against the Holy One of Israel. + + +Therefore her young men will fall in her streets. + +All her men of war will be brought to silence in that day,” says Yahweh. + + +Behold, I am against you, you proud one,” says the Lord, Yahweh of Armies; + +for your day has come, + +the time that I will visit you. + + +The proud one will stumble and fall, + +and no one will raise him up. + +I will kindle a fire in his cities, + +and it will devour all who are around him.” + + +Yahweh of Armies says: “The children of Israel and the children of Judah are oppressed together. + +All who took them captive hold them fast. + +They refuse to let them go. + + +Their Redeemer is strong. + +Yahweh of Armies is his name. + +He will thoroughly plead their cause, + +that he may give rest to the earth, + +and disquiet the inhabitants of Babylon. + + + +A sword is on the Chaldeans,” says Yahweh, + +and on the inhabitants of Babylon, + +on her princes, + +and on her wise men. + + +A sword is on the boasters, + +and they will become fools. + +A sword is on her mighty men, + +and they will be dismayed. + + +A sword is on their horses, + +on their chariots, + +and on all the mixed people who are in the middle of her; + +and they will become as women. + +A sword is on her treasures, + +and they will be robbed. + + +A drought is on her waters, + +and they will be dried up; + +for it is a land of engraved images, + +and they are mad over idols. + + +Therefore the wild animals of the desert + +with the wolves will dwell there. + +The ostriches will dwell therein. + +It will be inhabited no more forever, + +neither will it be lived in from generation to generation. + + +As when God overthrew Sodom and Gomorrah and its neighbor cities,” says Yahweh, + +so no man will dwell there, + +neither will any son of man live therein. + + + +Behold, a people comes from the north. + +A great nation and many kings will be stirred up from the uttermost parts of the earth. + + +They take up bow and spear. + +They are cruel, and have no mercy. + +Their voice roars like the sea. + +They ride on horses, + +everyone set in array, + +as a man to the battle, + +against you, daughter of Babylon. + + +The king of Babylon has heard the news of them, + +and his hands become feeble. + +Anguish has taken hold of him, + +pains as of a woman in labor. + + +Behold, the enemy will come up like a lion + +from the thickets of the Jordan against the strong habitation; + +for I will suddenly make them run away from it. + +Whoever is chosen, + +I will appoint him over it, + +for who is like me? + +Who will appoint me a time? + +Who is the shepherd who can stand before me?” + + +Therefore hear the counsel of Yahweh + +that he has taken against Babylon; + +and his purposes + +that he has purposed against the land of the Chaldeans: + +Surely they will drag them away, + +even the little ones of the flock. + +Surely he will make their habitation desolate over them. + + +The earth trembles at the noise of the taking of Babylon. + +The cry is heard among the nations. + + + + +

Yahweh says: +

+Behold, I will raise up against Babylon, + +and against those who dwell in Lebkamai, a destroying wind. + + +I will send to Babylon strangers, who will winnow her. + +They will empty her land; + +for in the day of trouble they will be against her all around. + + +Against him who bends, let the archer bend his bow, + +also against him who lifts himself up in his coat of mail. + +Don’t spare her young men! + +Utterly destroy all her army! + + +They will fall down slain in the land of the Chaldeans, + +and thrust through in her streets. + + +For Israel is not forsaken, nor Judah, by his God, + +by Yahweh of Armies; + +though their land is full of guilt against the Holy One of Israel. + + + +Flee out of the middle of Babylon! + +Everyone save his own life! + +Don’t be cut off in her iniquity, + +for it is the time of Yahweh’s vengeance. + +He will give to her a recompense. + + +Babylon has been a golden cup in Yahweh’s hand, + +who made all the earth drunk. + +The nations have drunk of her wine; + +therefore the nations have gone mad. + + +Babylon has suddenly fallen and been destroyed! + +Wail for her! + +Take balm for her pain. + +Perhaps she may be healed. + + + +We would have healed Babylon, + +but she is not healed. + +Forsake her, + +and let’s each go into his own country; + +for her judgment reaches to heaven, + +and is lifted up even to the skies. + + +Yahweh has produced our righteousness. + +Come, and let’s declare in Zion the work of Yahweh our God.’ + + + +Make the arrows sharp! + +Hold the shields firmly! + +Yahweh has stirred up the spirit of the kings of the Medes, + +because his purpose is against Babylon, to destroy it; + +for it is the vengeance of Yahweh, + +the vengeance of his temple. + + +Set up a standard against the walls of Babylon! + +Make the watch strong! + +Set the watchmen, + +and prepare the ambushes; + +for Yahweh has both purposed and done + +that which he spoke concerning the inhabitants of Babylon. + + +You who dwell on many waters, abundant in treasures, + +your end has come, the measure of your covetousness. + + +Yahweh of Armies has sworn by himself, saying, + +Surely I will fill you with men, + +as with locusts, + +and they will lift up a shout against you.’ + + + +He has made the earth by his power. + +He has established the world by his wisdom. + +By his understanding he has stretched out the heavens. + + +When he utters his voice, + +there is a roar of waters in the heavens, + +and he causes the vapors to ascend from the ends of the earth. + +He makes lightning for the rain, + +and brings the wind out of his treasuries. + + + +Every man has become stupid and without knowledge. + +Every goldsmith is disappointed by his image, + +for his molten images are falsehood, + +and there is no breath in them. + + +They are vanity, + +a work of delusion. + +In the time of their visitation, they will perish. + + +The portion of Jacob is not like these, + +for he formed all things, + +including the tribe of his inheritance. + +Yahweh of Armies is his name. + + + +You are my battle ax and weapons of war. + +With you I will break the nations into pieces. + +With you I will destroy kingdoms. + + +With you I will break in pieces + +the horse and his rider. + + +With you I will break in pieces + +the chariot and him who rides therein. + +With you I will break in pieces + +man and woman. + +With you I will break in pieces + +the old man and the youth. + +With you I will break in pieces + +the young man and the virgin. + + +With you I will break in pieces + +the shepherd and his flock. + +With you I will break in pieces + +the farmer and his yoke. + +With you I will break in pieces + +governors and deputies. + + +

I will give to Babylon and to all the inhabitants of Chaldea all their evil that they have done in Zion in your sight,” says Yahweh. + +

+Behold, I am against you, destroying mountain,” says Yahweh, + +which destroys all the earth. + +I will stretch out my hand on you, + +roll you down from the rocks, + +and will make you a burned mountain. + + +They won’t take a cornerstone from you, + +nor a stone for foundations; + +but you will be desolate forever,” says Yahweh. + + + +Set 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 Ashkenaz! + +Appoint a marshal against her! + +Cause the horses to come up as the swarming locusts! + + +Prepare against her the nations, + +the kings of the Medes, its governors, and all its deputies, and all the land of their dominion! + + +The land trembles and is in pain; + +for the purposes of Yahweh against Babylon stand, + +to make the land of Babylon a desolation, without inhabitant. + + +The mighty men of Babylon have stopped fighting, + +they remain in their strongholds. + +Their might has failed. + +They have become as women. + +Her dwelling places are set on fire. + +Her bars are broken. + + +One runner will run to meet another, + +and one messenger to meet another, + +to show the king of Babylon that his city is taken on every quarter. + + +So the passages are seized. + +They have burned the reeds with fire. + +The men of war are frightened.” + + +

For Yahweh of Armies, the God of Israel says: +

+The daughter of Babylon is like a threshing floor at the time when it is trodden. + +Yet a little while, and the time of harvest comes for her.” + + + +Nebuchadnezzar the king of Babylon has devoured me. + +He has crushed me. + +He has made me an empty vessel. + +He has, like a monster, swallowed me up. + +He has filled his mouth with my delicacies. + +He has cast me out. + + +May the violence done to me and to my flesh be on Babylon!” + +the inhabitant of Zion will say; and, + +“May my blood be on the inhabitants of Chaldea!” + +will Jerusalem say. + + + +

Therefore Yahweh says: +

+Behold, I will plead your cause, + +and take vengeance for you. + +I will dry up her sea, + +and make her fountain dry. + + +Babylon will become heaps, + +a dwelling place for jackals, + +an astonishment, and a hissing, + +without inhabitant. + + +They will roar together like young lions. + +They will growl as lionscubs. + + +When they are inflamed, I will make their feast, + +and I will make them drunk, + +that they may rejoice, + +and sleep a perpetual sleep, + +and not wake up,” says Yahweh. + + + +“I will bring them down like lambs to the slaughter, + +like rams with male goats. + + + +“How Sheshach is taken! + +How the praise of the whole earth is seized! + +How Babylon has become a desolation among the nations! + + +The sea has come up on Babylon. + +She is covered with the multitude of its waves. + + +Her cities have become a desolation, + +a dry land, and a desert, + +a land in which no man dwells. + +No son of man passes by it. + + +I will execute judgment on Bel in Babylon, + +and I will bring out of his mouth that which he has swallowed up. + +The nations will not flow any more to him. + +Yes, the wall of Babylon will fall. + + + +My people, go away from the middle of her, + +and each of you save yourselves from Yahweh’s fierce anger. + + +Don’t let your heart faint. + +Don’t fear for the news that will be heard in the land. + +For news will come one year, + +and after that in another year news will come, + +and violence in the land, + +ruler against ruler. + + +Therefore behold, the days come that I will execute judgment on the engraved images of Babylon; + +and her whole land will be confounded. + +All her slain will fall in the middle of her. + + +Then the heavens and the earth, + +and all that is therein, + +will sing for joy over Babylon; + +for the destroyers will come to her from the north,” says Yahweh. + + + +As Babylon has caused the slain of Israel to fall, + +so the slain of all the land will fall at Babylon. + + +You who have escaped the sword, go! + +Don’t stand still! + +Remember Yahweh from afar, + +and let Jerusalem come into your mind.” + + + +We are confounded + +because we have heard reproach. + +Confusion has covered our faces, + +for strangers have come into the sanctuaries of Yahweh’s house.” + + + +Therefore behold, the days come,” says Yahweh, + +that I will execute judgment on her engraved images; + +and through all her land the wounded will groan. + + +Though Babylon should mount up to the sky, + +and though she should fortify the height of her strength, + +yet destroyers will come to her from me,” says Yahweh. + + + +The sound of a cry comes from Babylon, + +and of great destruction from the land of the Chaldeans! + + +For Yahweh lays Babylon waste, + +and destroys out of her the great voice! + +Their waves roar like many waters. + +The noise of their voice is uttered. + + +For the destroyer has come on her, + +even on Babylon. + +Her mighty men are taken. + +Their bows are broken in pieces, + +for Yahweh is a God of retribution. + +He will surely repay. + + +I will make her princes, her wise men, + +her governors, her deputies, and her mighty men drunk. + +They will sleep a perpetual sleep, + +and not wake up,” + +says the King, whose name is Yahweh of Armies. + + +

Yahweh of Armies says: +

+The wide walls of Babylon will be utterly overthrown. + +Her high gates will be burned with fire. + +The peoples will labor for vanity, + +and the nations for the fire; + +and they will be weary.” + + +

The word which Jeremiah the prophet commanded Seraiah the son of Neriah, the son of Mahseiah, when he went with Zedekiah the king of Judah to Babylon in the fourth year of his reign. Now Seraiah was chief quartermaster. + +Jeremiah wrote in a book all the evil that should come on Babylon, even all these words that are written concerning Babylon. + +Jeremiah said to Seraiah, “When you come to Babylon, then see that you read all these words, + +and say, ‘Yahweh, you have spoken concerning this place, to cut it off, that no one will dwell in it, neither man nor animal, but that it will be desolate forever.’ + +It will be, when you have finished reading this book, that you shall bind a stone to it, and cast it into the middle of the Euphrates. + +Then you shall say, ‘Thus will Babylon sink, and will not rise again because of the evil that I will bring on her; and they will be weary.’” +

+

Thus far are the words of Jeremiah. + +

+ + +

Zedekiah was twenty-one years old when he began to reign. He reigned eleven years in Jerusalem. His mother’s name was Hamutal the daughter of Jeremiah of Libnah. + +He did that which was evil in Yahweh’s sight, according to all that Jehoiakim had done. + +For through Yahweh’s anger this happened in Jerusalem and Judah, until he had cast them out from his presence. +

+

Zedekiah rebelled against the king of Babylon. + +In the ninth year of his reign, in the tenth month, in the tenth day of the month, Nebuchadnezzar king of Babylon came, he and all his army, against Jerusalem, and encamped against it; and they built forts against it round about. + +So the city was besieged to the eleventh year of King Zedekiah. + +

+

In the fourth month, in the ninth day of the month, the famine was severe in the city, so that there was no bread for the people of the land. + +Then a breach was made in the city, and all the men of war fled, and went 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 against the city all around. The men of war went toward the Arabah, + +but the army of the Chaldeans pursued the king, and overtook Zedekiah in the plains of Jericho; and all his army was scattered from him. + +Then they took the king, and carried him up to the king of Babylon to Riblah in the land of Hamath; and he pronounced judgment on him. + +The king of Babylon killed the sons of Zedekiah before his eyes. He also killed all the princes of Judah in Riblah. + +He put out the eyes of Zedekiah; and the king of Babylon bound him in fetters, and carried him to Babylon, and put him in prison until the day of his death. + +

+

Now in the fifth month, in the tenth day of the month, which was the nineteenth year of King Nebuchadnezzar, king of Babylon, Nebuzaradan the captain of the guard, who stood before the king of Babylon, came into Jerusalem. + +He burned Yahweh’s house, and the king’s house; and all the houses of Jerusalem, even every great house, he burned with fire. + +All the army of the Chaldeans, who were with the captain of the guard, broke down all the walls of Jerusalem all around. + +Then Nebuzaradan the captain of the guard carried away captive of the poorest of the people, and the rest of the people who were left in the city, and those who fell away, who defected to the king of Babylon, and the rest of the multitude. + +But Nebuzaradan the captain of the guard left of the poorest of the land to be vineyard keepers and farmers. + +

+

The Chaldeans broke the pillars of bronze that were in Yahweh’s house and the bases and the bronze sea that were in Yahweh’s house in pieces, and carried all of their bronze to Babylon. + +They also took away the pots, the shovels, the snuffers, the basins, the spoons, and all the vessels of bronze with which they ministered. + +The captain of the guard took away the cups, the fire pans, the basins, the pots, the lamp stands, the spoons, and the bowls; that which was of gold, as gold, and that which was of silver, as silver. + +

+

They took the two pillars, the one sea, and the twelve bronze bulls that were under the bases, which King Solomon had made for Yahweh’s house. The bronze of all these vessels was without weight. + +As for the pillars, the height of the one pillar was eighteen cubits;52:21 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and a line of twelve cubits encircled it; and its thickness was four fingers. It was hollow. + +A capital of bronze was on it; and the height of the one capital was five cubits,52:22 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. with network and pomegranates on the capital all around, all of bronze. The second pillar also had the same, with pomegranates. + +There were ninety-six pomegranates on the sides; all the pomegranates were one hundred on the network all around. + +

+

The captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the threshold, + +and out of the city he took an officer who was set over the men of war; and seven men of those who saw the king’s face, who were found in the city; and the scribe of the captain of the army, who mustered the people of the land; and sixty men of the people of the land, who were found in the middle of the city. + +Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon to Riblah. + +The king of Babylon struck them, and put them to death at Riblah in the land of Hamath. +

+

So Judah was carried away captive out of his land. + +This is the number of the people whom Nebuchadnezzar carried away captive: +

+

in the seventh year, three thousand twenty-three Jews; + +

+

in the eighteenth year of Nebuchadnezzar, he carried away captive from Jerusalem eight hundred thirty-two persons; + +

+

in the twenty-third year of Nebuchadnezzar, Nebuzaradan the captain of the guard carried away captive of the Jews seven hundred forty-five people. +

+

All the people numbered four thousand six hundred. + +

+

In the thirty-seventh year of the captivity of Jehoiachin king of Judah, in the twelfth month, in the twenty-fifth day of the month, Evilmerodach king of Babylon, in the first year of his reign, lifted up the head of Jehoiachin king of Judah, and released him from prison. + +He spoke kindly to him, and set his throne above the throne of the kings who were with him in Babylon, + +and changed his prison garments. Jehoiachin ate bread before him continually all the days of his life. + +For his allowance, there was a continual allowance given him by the king of Babylon, every day a portion until the day of his death, all the days of his life. + +

+
+25-LAM-web.sfm World English Bible (WEB) +Lamentations +The Lamentations of Jeremiah +Lamentations +Lam +

The +

+

Lamentations +

+

of Jeremiah +

+ + +

How the city sits solitary, +

+that was full of people! + +She has become as a widow, + +who was great among the nations! + +She who was a princess among the provinces + +has become a slave! + + + +She weeps bitterly in the night. + +Her tears are on her cheeks. + +Among all her lovers + +she has no one to comfort her. + +All her friends have dealt treacherously with her. + +They have become her enemies. + + + +Judah has gone into captivity because of affliction + +and because of great servitude. + +She dwells among the nations. + +She finds no rest. + +All her persecutors overtook her in her distress. + + + +The roads to Zion mourn, + +because no one comes to the solemn assembly. + +All her gates are desolate. + +Her priests sigh. + +Her virgins are afflicted, + +and she herself is in bitterness. + + + +Her adversaries have become the head. + +Her enemies prosper; + +for Yahweh1:5 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. has afflicted her for the multitude of her transgressions. + +Her young children have gone into captivity before the adversary. + + + +All majesty has departed from the daughter of Zion. + +Her princes have become like deer that find no pasture. + +They have gone without strength before the pursuer. + + + +Jerusalem remembers in the days of her affliction and of her miseries + +all her pleasant things that were from the days of old; + +when her people fell into the hand of the adversary, + +and no one helped her. + +The adversaries saw her. + +They mocked at her desolations. + + + +Jerusalem has grievously sinned. + +Therefore she has become unclean. + +All who honored her despise her, + +because they have seen her nakedness. + +Yes, she sighs and turns backward. + + + +Her filthiness was in her skirts. + +She didn’t remember her latter end. + +Therefore she has come down astoundingly. + +She has no comforter. + +See, Yahweh, my affliction; + +for the enemy has magnified himself.” + + + +The adversary has spread out his hand on all her pleasant things; + +for she has seen that the nations have entered into her sanctuary, + +concerning whom you commanded that they should not enter into your assembly. + + + +All her people sigh. + +They seek bread. + +They have given their pleasant things for food to refresh their soul. + +Look, Yahweh, and see, + +for I have become despised.” + + + +Is it nothing to you, all you who pass by? + +Look, and see if there is any sorrow like my sorrow, + +which is brought on me, + +with which Yahweh has afflicted me in the day of his fierce anger. + + + +From on high has he sent fire into my bones, + +and it prevails against them. + +He has spread a net for my feet. + +He has turned me back. + +He has made me desolate and I faint all day long. + + + +The yoke of my transgressions is bound by his hand. + +They are knit together. + +They have come up on my neck. + +He made my strength fail. + +The Lord1:14 +The word translated “Lord” is “Adonai.” has delivered me into their hands, + +against whom I am not able to stand. + + + +The Lord has set at nothing all my mighty men within me. + +He has called a solemn assembly against me to crush my young men. + +The Lord has trodden the virgin daughter of Judah as in a wine press. + + + +For these things I weep. + +My eye, my eye runs down with water, + +because the comforter who should refresh my soul is far from me. + +My children are desolate, + +because the enemy has prevailed.” + + + +Zion spreads out her hands. + +There is no one to comfort her. + +Yahweh has commanded concerning Jacob, + +that those who are around him should be his adversaries. + +Jerusalem is among them as an unclean thing. + + + +Yahweh is righteous, + +for I have rebelled against his commandment. + +Please hear all you peoples, + +and see my sorrow. + +My virgins and my young men have gone into captivity. + + + +I called for my lovers, + +but they deceived me. + +My priests and my elders gave up the spirit in the city, + +while they sought food for themselves to refresh their souls. + + + +Look, Yahweh; for I am in distress. + +My heart is troubled. + +My heart turns over within me, + +for I have grievously rebelled. + +Abroad, the sword bereaves. + +At home, it is like death. + + + +They have heard that I sigh. + +There is no one to comfort me. + +All my enemies have heard of my trouble. + +They are glad that you have done it. + +You will bring the day that you have proclaimed, + +and they will be like me. + + + +“Let all their wickedness come before you. + +Do to them as you have done to me for all my transgressions. + +For my sighs are many, + +and my heart is faint. + + + + +

How has the Lord covered the daughter of Zion with a cloud in his anger! +

+He has cast the beauty of Israel down from heaven to the earth, + +and hasn’t remembered his footstool in the day of his anger. + + + +The Lord has swallowed up all the dwellings of Jacob + +without pity. + +He has thrown down in his wrath the strongholds of the daughter of Judah. + +He has brought them down to the ground. + +He has profaned the kingdom and its princes. + + + +He has cut off all the horn of Israel in fierce anger. + +He has drawn back his right hand from before the enemy. + +He has burned up Jacob like a flaming fire, + +which devours all around. + + + +He has bent his bow like an enemy. + +He has stood with his right hand as an adversary. + +He has killed all that were pleasant to the eye. + +In the tent of the daughter of Zion, he has poured out his wrath like fire. + + + +The Lord has become as an enemy. + +He has swallowed up Israel. + +He has swallowed up all her palaces. + +He has destroyed his strongholds. + +He has multiplied mourning and lamentation in the daughter of Judah. + + + +He has violently taken away his tabernacle, + +as if it were a garden. + +He has destroyed his place of assembly. + +Yahweh has caused solemn assembly and Sabbath to be forgotten in Zion. + +In the indignation of his anger, he has despised the king and the priest. + + + +The Lord has cast off his altar. + +He has abhorred his sanctuary. + +He has given the walls of her palaces into the hand of the enemy. + +They have made a noise in Yahweh’s house, + +as in the day of a solemn assembly. + + + +Yahweh has purposed to destroy the wall of the daughter of Zion. + +He has stretched out the line. + +He has not withdrawn his hand from destroying; + +He has made the rampart and wall lament. + +They languish together. + + + +Her gates have sunk into the ground. + +He has destroyed and broken her bars. + +Her king and her princes are among the nations where the law is not. + +Yes, her prophets find no vision from Yahweh. + + + +The elders of the daughter of Zion sit on the ground. + +They keep silence. + +They have cast up dust on their heads. + +They have clothed themselves with sackcloth. + +The virgins of Jerusalem hang down their heads to the ground. + + + +My eyes fail with tears. + +My heart is troubled. + +My bile is poured on the earth, + +because of the destruction of the daughter of my people, + +because the young children and the infants swoon in the streets of the city. + + + +They ask their mothers, + +“Where is grain and wine?” + +when they swoon as the wounded in the streets of the city, + +when their soul is poured out into their mothers’ bosom. + + + +What shall I testify to you? + +What shall I liken to you, daughter of Jerusalem? + +What shall I compare to you, + +that I may comfort you, virgin daughter of Zion? + +For your breach is as big as the sea. + +Who can heal you? + + + +Your prophets have seen false and foolish visions for you. + +They have not uncovered your iniquity, + +to reverse your captivity, + +but have seen for you false revelations and causes of banishment. + + + +All that pass by clap their hands at you. + +They hiss and wag their head at the daughter of Jerusalem, saying, + +Is this the city that men called ‘The perfection of beauty, + +the joy of the whole earth’?” + + + +All your enemies have opened their mouth wide against you. + +They hiss and gnash their teeth. + +They say, “We have swallowed her up. + +Certainly this is the day that we looked for. + +We have found it. + +We have seen it.” + + + +Yahweh has done that which he planned. + +He has fulfilled his word that he commanded in the days of old. + +He has thrown down, + +and has not pitied. + +He has caused the enemy to rejoice over you. + +He has exalted the horn of your adversaries. + + + +Their heart cried to the Lord. + +O wall of the daughter of Zion, + +let tears run down like a river day and night. + +Give yourself no relief. + +Don’t let your eyes rest. + + + +Arise, cry out in the night, + +at the beginning of the watches! + +Pour out your heart like water before the face of the Lord. + +Lift up your hands toward him for the life of your young children, + +who faint for hunger at the head of every street. + + + +Look, Yahweh, and see to whom you have done thus! + +Should the women eat their offspring, + +the children that they held and bounced on their knees? + +Should the priest and the prophet be killed in the sanctuary of the Lord? + + + +The youth and the old man lie on the ground in the streets. + +My virgins and my young men have fallen by the sword. + +You have killed them in the day of your anger. + +You have slaughtered, and not pitied. + + + +You have called, as in the day of a solemn assembly, my terrors on every side. + +There was no one that escaped or remained in the day of Yahweh’s anger. + +My enemy has consumed those whom I have cared for and brought up. + + + + +I am the man who has seen affliction + +by the rod of his wrath. + + +He has led me and caused me to walk in darkness, + +and not in light. + + +Surely he turns his hand against me + +again and again all day long. + + + +He has made my flesh and my skin old. + +He has broken my bones. + + +He has built against me, + +and surrounded me with bitterness and hardship. + + +He has made me dwell in dark places, + +as those who have been long dead. + + + +He has walled me about, so that I can’t go out. + +He has made my chain heavy. + + +Yes, when I cry, and call for help, + +he shuts out my prayer. + + +He has walled up my ways with cut stone. + +He has made my paths crooked. + + + +He is to me as a bear lying in wait, + +as a lion in hiding. + + +He has turned away my path, + +and pulled me in pieces. + +He has made me desolate. + + +He has bent his bow, + +and set me as a mark for the arrow. + + + +He has caused the shafts of his quiver to enter into my kidneys. + + +I have become a derision to all my people, + +and their song all day long. + + +He has filled me with bitterness. + +He has stuffed me with wormwood. + + + +He has also broken my teeth with gravel. + +He has covered me with ashes. + + +You have removed my soul far away from peace. + +I forgot prosperity. + + +I said, “My strength has perished, + +along with my expectation from Yahweh.” + + + +Remember my affliction and my misery, + +the wormwood and the bitterness. + + +My soul still remembers them, + +and is bowed down within me. + + +This I recall to my mind; + +therefore I have hope. + + + +It is because of Yahweh’s loving kindnesses that we are not consumed, + +because his mercies don’t fail. + + +They are new every morning. + +Great is your faithfulness. + + +Yahweh is my portion,” says my soul. + +Therefore I will hope in him.” + + + +Yahweh is good to those who wait for him, + +to the soul who seeks him. + + +It is good that a man should hope + +and quietly wait for the salvation of Yahweh. + + +It is good for a man that he bear the yoke in his youth. + + + +Let him sit alone and keep silence, + +because he has laid it on him. + + +Let him put his mouth in the dust, + +if it is so that there may be hope. + + +Let him give his cheek to him who strikes him. + +Let him be filled full of reproach. + + + +For the Lord will not cast off forever. + + +For though he causes grief, + +yet he will have compassion according to the multitude of his loving kindnesses. + + +For he does not afflict willingly, + +nor grieve the children of men. + + + +To crush under foot all the prisoners of the earth, + + +to turn away the right of a man before the face of the Most High, + + +to subvert a man in his cause, the Lord doesn’t approve. + + + +Who is he who says, and it comes to pass, + +when the Lord doesn’t command it? + + +Doesn’t evil and good come out of the mouth of the Most High? + + +Why should a living man complain, + +a man for the punishment of his sins? + + + +Let us search and try our ways, + +and turn again to Yahweh. + + +Let’s lift up our heart with our hands to God3:41 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). in the heavens. + + +We have transgressed and have rebelled. + +You have not pardoned. + + + +You have covered us with anger and pursued us. + +You have killed. + +You have not pitied. + + +You have covered yourself with a cloud, + +so that no prayer can pass through. + + +You have made us an off-scouring and refuse + +in the middle of the peoples. + + + +All our enemies have opened their mouth wide against us. + + +Terror and the pit have come on us, + +devastation and destruction.” + + + +My eye runs down with streams of water, + +for the destruction of the daughter of my people. + + +My eye pours down + +and doesn’t cease, + +without any intermission, + + +until Yahweh looks down, + +and sees from heaven. + + +My eye affects my soul, + +because of all the daughters of my city. + + + +They have chased me relentlessly like a bird, + +those who are my enemies without cause. + + +They have cut off my life in the dungeon, + +and have cast a stone on me. + + +Waters flowed over my head. + +I said, “I am cut off.” + + + +I called on your name, Yahweh, + +out of the lowest dungeon. + + +You heard my voice: + +“Don’t hide your ear from my sighing, + +and my cry.” + + + +You came near in the day that I called on you. + +You said, “Don’t be afraid.” + + + +Lord, you have pleaded the causes of my soul. + +You have redeemed my life. + + +Yahweh, you have seen my wrong. + +Judge my cause. + + +You have seen all their vengeance + +and all their plans against me. + + + +You have heard their reproach, Yahweh, + +and all their plans against me, + + +the lips of those that rose up against me, + +and their plots against me all day long. + + +You see their sitting down and their rising up. + +I am their song. + + + +You will pay them back, Yahweh, + +according to the work of their hands. + + +You will give them hardness of heart, + +your curse to them. + + +You will pursue them in anger, + +and destroy them from under the heavens of Yahweh. + + + + +How the gold has become dim! + +The most pure gold has changed! + +The stones of the sanctuary are poured out + +at the head of every street. + + + +The precious sons of Zion, + +comparable to fine gold, + +how they are esteemed as earthen pitchers, + +the work of the hands of the potter! + + + +Even the jackals offer their breast. + +They nurse their young ones. + +But the daughter of my people has become cruel, + +like the ostriches in the wilderness. + + + +The tongue of the nursing child clings to the roof of his mouth for thirst. + +The young children ask for bread, + +and no one breaks it for them. + + + +Those who ate delicacies are desolate in the streets. + +Those who were brought up in purple embrace dunghills. + + + +For the iniquity of the daughter of my people is greater than the sin of Sodom, + +which was overthrown as in a moment. + +No hands were laid on her. + + + +Her nobles were purer than snow. + +They were whiter than milk. + +They were more ruddy in body than rubies. + +Their polishing was like sapphire. + + + +Their appearance is blacker than a coal. + +They are not known in the streets. + +Their skin clings to their bones. + +It is withered. + +It has become like wood. + + + +Those who are killed with the sword are better than those who are killed with hunger; + +for these pine away, stricken through, + +for lack of the fruits of the field. + + + +The hands of the pitiful women have boiled their own children. + +They were their food in the destruction of the daughter of my people. + + + +Yahweh has accomplished his wrath. + +He has poured out his fierce anger. + +He has kindled a fire in Zion, + +which has devoured its foundations. + + + +The kings of the earth didn’t believe, + +neither did all the inhabitants of the world, + +that the adversary and the enemy would enter into the gates of Jerusalem. + + + +It is because of the sins of her prophets + +and the iniquities of her priests, + +that have shed the blood of the just in the middle of her. + + + +They wander as blind men in the streets. + +They are polluted with blood, + +So that men can’t touch their garments. + + + +Go away!” they cried to them. + +Unclean! Go away! Go away! Don’t touch! + +When they fled away and wandered, men said among the nations, + +They can’t live here any more.” + + + +Yahweh’s anger has scattered them. + +He will not pay attention to them any more. + +They didn’t respect the persons of the priests. + +They didn’t favor the elders. + + + +Our eyes still fail, + +looking in vain for our help. + +In our watching we have watched for a nation that could not save. + + + +They hunt our steps, + +so that we can’t go in our streets. + +Our end is near. + +Our days are fulfilled, + +for our end has come. + + + +Our pursuers were swifter than the eagles of the sky. + +They chased us on the mountains. + +They set an ambush for us in the wilderness. + + + +The breath of our nostrils, + +the anointed of Yahweh, + +was taken in their pits; + +of whom we said, + +under his shadow we will live among the nations. + + + +Rejoice and be glad, daughter of Edom, + +who dwells in the land of Uz. + +The cup will pass through to you also. + +You will be drunken, + +and will make yourself naked. + + + +The punishment of your iniquity is accomplished, daughter of Zion. + +He will no more carry you away into captivity. + +He will visit your iniquity, daughter of Edom. + +He will uncover your sins. + + + + +Remember, Yahweh, what has come on us. + +Look, and see our reproach. + + +Our inheritance has been turned over to strangers, + +our houses to aliens. + + +We are orphans and fatherless. + +Our mothers are as widows. + + +We must pay for water to drink. + +Our wood is sold to us. + + +Our pursuers are on our necks. + +We are weary, and have no rest. + + +We have given our hands to the Egyptians, + +and to the Assyrians, to be satisfied with bread. + + +Our fathers sinned, and are no more. + +We have borne their iniquities. + + +Servants rule over us. + +There is no one to deliver us out of their hand. + + +We get our bread at the peril of our lives, + +because of the sword in the wilderness. + + +Our skin is black like an oven, + +because of the burning heat of famine. + + +They ravished the women in Zion, + +the virgins in the cities of Judah. + + +Princes were hanged up by their hands. + +The faces of elders were not honored. + + +The young men carry millstones. + +The children stumbled under loads of wood. + + +The elders have ceased from the gate, + +and the young men from their music. + + +The joy of our heart has ceased. + +Our dance is turned into mourning. + + +The crown has fallen from our head. + +Woe to us, for we have sinned! + + +For this our heart is faint. + +For these things our eyes are dim: + + +for the mountain of Zion, which is desolate. + +The foxes walk on it. + + + +You, Yahweh, remain forever. + +Your throne is from generation to generation. + + +Why do you forget us forever, + +and forsake us for so long a time? + + +Turn us to yourself, Yahweh, and we will be turned. + +Renew our days as of old. + + +But you have utterly rejected us. + +You are very angry against us. + + +
+6-EZK-web.sfm World English Bible (WEB) +Ezekiel +The Book of Ezekiel +Ezekiel +Eze +

The Book of +

+

Ezekiel +

+ + +

Now in the thirtieth year, in the fourth month, in the fifth day of the month, as I was among the captives by the river Chebar, the heavens were opened, and I saw visions of God.1:1 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + +

+

In the fifth of the month, which was the fifth year of King Jehoiachin’s captivity, + +Yahweh’s1:3 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word came to Ezekiel the priest, the son of Buzi, in the land of the Chaldeans by the river Chebar; and Yahweh’s hand was there on him. + +

+

I looked, and behold,1:4 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. a stormy wind came out of the north: a great cloud, with flashing lightning, and a brightness around it, and out of the middle of it as it were glowing metal, out of the middle of the fire. + +Out of its center came the likeness of four living creatures. This was their appearance: They had the likeness of a man. + +Everyone had four faces, and each one of them had four wings. + +Their feet were straight feet. The sole of their feet was like the sole of a calf’s foot; and they sparkled like burnished bronze. + +They had the hands of a man under their wings on their four sides. The four of them had their faces and their wings like this: + +Their wings were joined to one another. They didn’t turn when they went. Each one went straight forward. + +

+

As for the likeness of their faces, they had the face of a man. The four of them had the face of a lion on the right side. The four of them had the face of an ox on the left side. The four of them also had the face of an eagle. + +Such were their faces. Their wings were spread out above. Two wings of each one touched another, and two covered their bodies. + +Each one went straight forward. Where the spirit was to go, they went. They didn’t turn when they went. + +As for the likeness of the living creatures, their appearance was like burning coals of fire, like the appearance of torches. The fire went up and down among the living creatures. The fire was bright, and lightning went out of the fire. + +The living creatures ran and returned as the appearance of a flash of lightning. + +

+

Now as I saw the living creatures, behold, there was one wheel on the earth beside the living creatures, for each of the four faces of it. + +The appearance of the wheels and their work was like a beryl. The four of them had one likeness. Their appearance and their work was as it were a wheel within a wheel. + +When they went, they went in their four directions. They didn’t turn when they went. + +As for their rims, they were high and dreadful; and the four of them had their rims full of eyes all around. + +

+

When the living creatures went, the wheels went beside them. When the living creatures were lifted up from the earth, the wheels were lifted up. + +Wherever the spirit was to go, they went. The spirit was to go there. The wheels were lifted up beside them; for the spirit of the living creature was in the wheels. + +When those went, these went. When those stood, these stood. When those were lifted up from the earth, the wheels were lifted up beside them; for the spirit of the living creature was in the wheels. + +

+

Over the head of the living creature there was the likeness of an expanse, like an awesome crystal to look at, stretched out over their heads above. + +Under the expanse, their wings were straight, one toward the other. Each one had two which covered on this side, and each one had two which covered their bodies on that side. + +When they went, I heard the noise of their wings like the noise of great waters, like the voice of the Almighty, a noise of tumult like the noise of an army. When they stood, they let down their wings. + +

+

There was a voice above the expanse that was over their heads. When they stood, they let down their wings. + +Above the expanse that was over their heads was the likeness of a throne, as the appearance of a sapphire1:26 +or, lapis lazuli stone. On the likeness of the throne was a likeness as the appearance of a man on it above. + +I saw as it were glowing metal, as the appearance of fire within it all around, from the appearance of his waist and upward; and from the appearance of his waist and downward I saw as it were the appearance of fire, and there was brightness around him. + +As the appearance of the rainbow that is in the cloud in the day of rain, so was the appearance of the brightness all around. +

+

This was the appearance of the likeness of Yahweh’s glory. When I saw it, I fell on my face, and I heard a voice of one that spoke. + +

+ + +

He said to me, “Son of man, stand on your feet, and I will speak with you.” + +The Spirit entered into me when he spoke to me, and set me on my feet; and I heard him who spoke to me. + +

+

He said to me, “Son of man, I send you to the children of Israel, to a nation of rebels who have rebelled against me. They and their fathers have transgressed against me even to this very day. + +The children are impudent and stiff-hearted. I am sending you to them, and you shall tell them, ‘This is what the Lord2:4 +The word translated “Lord” is “Adonai.” Yahweh says.’ + +They, whether they will hear, or whether they will refusefor they are a rebellious houseyet they will know that there has been a prophet among them. + +You, son of man, don’t be afraid of them, neither be afraid of their words, though briers and thorns are with you, and you dwell among scorpions. Don’t be afraid of their words, nor be dismayed at their looks, though they are a rebellious house. + +You shall speak my words to them, whether they will hear or whether they will refuse; for they are most rebellious. + +But you, son of man, hear what I tell you. Don’t be rebellious like that rebellious house. Open your mouth, and eat that which I give you.” + +

+

When I looked, behold, a hand was stretched out to me; and behold, a scroll of a book was in it. + +He spread it before me. It was written within and without; and lamentations, mourning, and woe were written in it. + +

+ + +

He said to me, “Son of man, eat what you find. Eat this scroll, and go, speak to the house of Israel.” + +

+

So I opened my mouth, and he caused me to eat the scroll. + +

+

He said to me, “Son of man, eat this scroll that I give you and fill your belly and your bowels with it.” +

+

Then I ate it. It was as sweet as honey in my mouth. + +

+

He said to me, “Son of man, go to the house of Israel, and speak my words to them. + +For you are not sent to a people of a strange speech and of a hard language, but to the house of Israel— + +not to many peoples of a strange speech and of a hard language, whose words you can’t understand. Surely, if I sent you to them, they would listen to you. + +But the house of Israel will not listen to you, for they will not listen to me; for all the house of Israel are obstinate3:7 +Literally, have a hard forehead and hard-hearted. + +Behold, I have made your face hard against their faces, and your forehead hard against their foreheads. + +I have made your forehead as a diamond, harder than flint. Don’t be afraid of them, neither be dismayed at their looks, though they are a rebellious house.” + +

+

Moreover he said to me, “Son of man, receive in your heart and hear with your ears all my words that I speak to you. + +Go to them of the captivity, to the children of your people, and speak to them, and tell them, ‘This is what the Lord Yahweh says,’ whether they will hear, or whether they will refuse.” + +

+

Then the Spirit lifted me up, and I heard behind me the voice of a great rushing, saying, “Blessed be Yahweh’s glory from his place.” + +I heard the noise of the wings of the living creatures as they touched one another, and the noise of the wheels beside them, even the noise of a great rushing. + +So the Spirit lifted me up, and took me away; and I went in bitterness, in the heat of my spirit; and Yahweh’s hand was strong on me. + +Then I came to them of the captivity at Tel Aviv who lived by the river Chebar, and to where they lived; and I sat there overwhelmed among them seven days. + +

+

At the end of seven days, Yahweh’s word came to me, saying, + +Son of man, I have made you a watchman to the house of Israel. Therefore hear the word from my mouth, and warn them from me. + +When I tell the wicked, ‘You will surely die;’ and you give him no warning, nor speak to warn the wicked from his wicked way, to save his life, that wicked man will die in his iniquity; but I will require his blood at your hand. + +Yet if you warn the wicked, and he doesn’t turn from his wickedness, nor from his wicked way, he will die in his iniquity; but you have delivered your soul.” + +

+

Again, when a righteous man turns from his righteousness and commits iniquity, and I lay a stumbling block before him, he will die. Because you have not given him warning, he will die in his sin, and his righteous deeds which he has done will not be remembered; but I will require his blood at your hand. + +Nevertheless if you warn the righteous man, that the righteous not sin, and he does not sin, he will surely live, because he took warning; and you have delivered your soul.” + +

+

Yahweh’s hand was there on me; and he said to me, “Arise, go out into the plain, and I will talk with you there.” + +

+

Then I arose, and went out into the plain, and behold, Yahweh’s glory stood there, like the glory which I saw by the river Chebar. Then I fell on my face. + +

+

Then the Spirit entered into me and set me on my feet. He spoke with me, and said to me, “Go, shut yourself inside your house. + +But you, son of man, behold, they will put ropes on you, and will bind you with them, and you will not go out among them. + +I will make your tongue stick to the roof of your mouth so that you will be mute and will not be able to correct them, for they are a rebellious house. + +But when I speak with you, I will open your mouth, and you shall tell them, ‘This is what the Lord Yahweh says.’ He who hears, let him hear; and he who refuses, let him refuse; for they are a rebellious house.” + +

+ + +

You also, son of man, take a tile, and lay it before yourself, and portray on it a city, even Jerusalem. + +Lay siege against it, build forts against it, and cast up a mound against it. Also set camps against it and plant battering rams against it all around. + +Take for yourself an iron pan and set it for a wall of iron between you and the city. Then set your face toward it. It will be besieged, and you shall lay siege against it. This shall be a sign to the house of Israel. + +

+

“Moreover lie on your left side, and lay the iniquity of the house of Israel on it. According to the number of the days that you shall lie on it, you shall bear their iniquity. + +For I have appointed the years of their iniquity to be to you a number of days, even three hundred ninety days. So you shall bear the iniquity of the house of Israel. + +

+

Again, when you have accomplished these, you shall lie on your right side, and shall bear the iniquity of the house of Judah. I have appointed forty days, each day for a year, to you. + +You shall set your face toward the siege of Jerusalem, with your arm uncovered; and you shall prophesy against it. + +Behold, I put ropes on you, and you shall not turn yourself from one side to the other, until you have accomplished the days of your siege. + +

+

Take for yourself also wheat, barley, beans, lentils, millet, and spelt, and put them in one vessel. Make bread of it. According to the number of the days that you will lie on your side, even three hundred ninety days, you shall eat of it. + +Your food which you shall eat shall be by weight, twenty shekels4:10 +A shekel is about 10 grams or about 0.35 ounces. a day. From time to time you shall eat it. + +You shall drink water by measure, the sixth part of a hin.4:11 +A hin is about 6.5 liters or 1.7 gallons. From time to time you shall drink. + +You shall eat it as barley cakes, and you shall bake it in their sight with dung that comes out of man.” + +Yahweh said, “Even thus will the children of Israel eat their bread unclean, among the nations where I will drive them.” + +

+

Then I said, “Ah Lord Yahweh! Behold, my soul has not been polluted; for from my youth up even until now I have not eaten of that which dies of itself, or is torn of animals. No abominable meat has come into my mouth!” + +

+

Then he said to me, “Behold, I have given you cow’s dung for man’s dung, and you shall prepare your bread on it.” + +

+

Moreover he said to me, “Son of man, behold, I will break the staff of bread in Jerusalem. They will eat bread by weight, and with fearfulness. They will drink water by measure, and in dismay; + +that they may lack bread and water, be dismayed one with another, and pine away in their iniquity. + +

+ + +

You, son of man, take a sharp sword. You shall take it as a barber’s razor to yourself, and shall cause it to pass over your head and over your beard. Then take balances to weigh and divide the hair. + +A third part you shall burn in the fire in the middle of the city, when the days of the siege are fulfilled. You shall take a third part, and strike with the sword around it. A third part you shall scatter to the wind, and I will draw out a sword after them. + +You shall take a small number of these and bind them in the folds of your robe. + +Of these again you shall take, and cast them into the middle of the fire, and burn them in the fire. From it a fire will come out into all the house of Israel. + +

+

The Lord Yahweh says: ‘This is Jerusalem. I have set her in the middle of the nations, and countries are around her. + +She has rebelled against my ordinances in doing wickedness more than the nations, and against my statutes more than the countries that are around her; for they have rejected my ordinances, and as for my statutes, they have not walked in them.’ + +

+

Therefore the Lord Yahweh says: ‘Because you are more turbulent than the nations that are around you, and have not walked in my statutes, neither have kept my ordinances, neither have followed the ordinances of the nations that are around you; + +therefore the Lord Yahweh says: ‘Behold, I, even I, am against you; and I will execute judgments among you in the sight of the nations. + +I will do in you that which I have not done, and which I will not do anything like it any more, because of all your abominations. + +Therefore the fathers will eat the sons within you, and the sons will eat their fathers. I will execute judgments on you; and I will scatter the whole remnant of you to all the winds. + +Therefore as I live,’ says the Lord Yahweh, ‘surely, because you have defiled my sanctuary with all your detestable things, and with all your abominations, therefore I will also diminish you. My eye won’t spare, and I will have no pity. + +A third part of you will die with the pestilence, and they will be consumed with famine within you. A third part will fall by the sword around you. A third part I will scatter to all the winds, and will draw out a sword after them. + +

+

“‘Thus my anger will be accomplished, and I will cause my wrath toward them to rest, and I will be comforted. They will know that I, Yahweh, have spoken in my zeal, when I have accomplished my wrath on them. + +

+

“‘Moreover I will make you a desolation and a reproach among the nations that are around you, in the sight of all that pass by. + +So it will be a reproach and a taunt, an instruction and an astonishment, to the nations that are around you, when I execute judgments on you in anger and in wrath, and in wrathful rebukesI, Yahweh, have spoken it— + +when I send on them the evil arrows of famine that are for destruction, which I will send to destroy you. I will increase the famine on you and will break your staff of bread. + +I will send on you famine and evil animals, and they will bereave you. Pestilence and blood will pass through you. I will bring the sword on you. I, Yahweh, have spoken it.’” + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, set your face toward the mountains of Israel, and prophesy to them, + +and say, ‘You mountains of Israel, hear the word of the Lord Yahweh! The Lord Yahweh says to the mountains and to the hills, to the watercourses and to the valleys: “Behold, I, even I, will bring a sword on you, and I will destroy your high places. + +Your altars will become desolate, and your incense altars will be broken. I will cast down your slain men before your idols. + +I will lay the dead bodies of the children of Israel before their idols. I will scatter your bones around your altars. + +In all your dwelling places, the cities will be laid waste and the high places will be desolate, so that your altars may be laid waste and made desolate, and your idols may be broken and cease, and your incense altars may be cut down, and your works may be abolished. + +The slain will fall among you, and you will know that I am Yahweh. + +

+

“‘“Yet I will leave a remnant, in that you will have some that escape the sword among the nations, when you are scattered through the countries. + +Those of you that escape will remember me among the nations where they are carried captive, how I have been broken with their lewd heart, which has departed from me, and with their eyes, which play the prostitute after their idols. Then they will loathe themselves in their own sight for the evils which they have committed in all their abominations. + +They will know that I am Yahweh. I have not said in vain that I would do this evil to them.”’ + +

+

The Lord Yahweh says: ‘Strike with your hand, and stamp with your foot, and say, “Alas!”, because of all the evil abominations of the house of Israel; for they will fall by the sword, by the famine, and by the pestilence. + +He who is far off will die of the pestilence. He who is near will fall by the sword. He who remains and is besieged will die by the famine. Thus I will accomplish my wrath on them. + +You will know that I am Yahweh when their slain men are among their idols around their altars, on every high hill, on all the tops of the mountains, under every green tree, and under every thick oak—the places where they offered pleasant aroma to all their idols. + +I will stretch out my hand on them and make the land desolate and waste, from the wilderness toward Diblah, throughout all their habitations. Then they will know that I am Yahweh.’” + +

+ + + +

Moreover Yahweh’s word came to me, saying, + +You, son of man, the Lord Yahweh says to the land of Israel, ‘An end! The end has come on the four corners of the land. + +Now the end is on you, and I will send my anger on you, and will judge you according to your ways. I will bring on you all your abominations. + +My eye will not spare you, neither will I have pity; but I will bring your ways on you, and your abominations will be among you. Then you will know that I am Yahweh.’ + +

+

The Lord Yahweh says: ‘A disaster! A unique disaster! Behold, it comes. + +An end has come. The end has come! It awakes against you. Behold, it comes. + +Your doom has come to you, inhabitant of the land! The time has come! The day is near, a day of tumult, and not of joyful shouting, on the mountains. + +Now I will shortly pour out my wrath on you, and accomplish my anger against you, and will judge you according to your ways. I will bring on you all your abominations. + +My eye won’t spare, neither will I have pity. I will punish you according to your ways. Your abominations will be among you. Then you will know that I, Yahweh, strike. + +

+

“‘Behold, the day! Behold, it comes! Your doom has gone out. The rod has blossomed. Pride has budded. + +Violence has risen up into a rod of wickedness. None of them will remain, nor of their multitude, nor of their wealth. There will be nothing of value among them. + +The time has come! The day draws near. Don’t let the buyer rejoice, nor the seller mourn; for wrath is on all its multitude. + +For the seller won’t return to that which is sold, although they are still alive; for the vision concerns the whole multitude of it. None will return. None will strengthen himself in the iniquity of his life. + +They have blown the trumpet, and have made all ready; but no one goes to the battle, for my wrath is on all its multitude. + +

+

“‘The sword is outside, and the pestilence and the famine within. He who is in the field will die by the sword. He who is in the city will be devoured by famine and pestilence. + +But of those who escape, they will escape and will be on the mountains like doves of the valleys, all of them moaning, everyone in his iniquity. + +All hands will be feeble, and all knees will be weak as water. + +They will also clothe themselves with sackcloth, and horror will cover them. Shame will be on all faces, and baldness on all their heads. + +They will cast their silver in the streets, and their gold will be as an unclean thing. Their silver and their gold won’t be able to deliver them in the day of Yahweh’s wrath. They won’t satisfy their souls or fill their bellies; because it has been the stumbling block of their iniquity. + +As for the beauty of his ornament, he set it in majesty; but they made the images of their abominations and their detestable things therein. Therefore I have made it to them as an unclean thing. + +I will give it into the hands of the strangers for a prey, and to the wicked of the earth for a plunder; and they will profane it. + +I will also turn my face from them, and they will profane my secret place. Robbers will enter into it, and profane it. + +

+

“‘Make chains, for the land is full of bloody crimes, and the city is full of violence. + +Therefore I will bring the worst of the nations, and they will possess their houses. I will also make the pride of the strong to cease. Their holy places will be profaned. + +Destruction comes! They will seek peace, and there will be none. + +Mischief will come on mischief, and rumor will be on rumor. They will seek a vision of the prophet; but the law will perish from the priest, and counsel from the elders. + +The king will mourn, and the prince will be clothed with desolation. The hands of the people of the land will be troubled. I will do to them after their way, and according to their own judgments I will judge them. Then they will know that I am Yahweh.’” + +

+ + +

In the sixth year, in the sixth month, in the fifth day of the month, as I sat in my house, and the elders of Judah sat before me, the Lord Yahweh’s hand fell on me there. + +Then I saw, and behold, a likeness as the appearance of fire—from the appearance of his waist and downward, fire, and from his waist and upward, as the appearance of brightness, as it were glowing metal. + +He stretched out the form of a hand, and took me by a lock of my head; and the Spirit lifted me up between earth and the sky, and brought me in the visions of God to Jerusalem, to the door of the gate of the inner court that looks toward the north, where there was the seat of the image of jealousy, which provokes to jealousy. + +Behold, the glory of the God of Israel was there, according to the appearance that I saw in the plain. + +

+

Then he said to me, “Son of man, lift up your eyes now the way toward the north.” +

+

So I lifted up my eyes the way toward the north, and saw, northward of the gate of the altar this image of jealousy in the entry. + +

+

He said to me, “Son of man, do you see what they do? Even the great abominations that the house of Israel commit here, that I should go far off from my sanctuary? But you will again see yet other great abominations.” + +

+

He brought me to the door of the court; and when I looked, behold, a hole in the wall. + +Then he said to me, “Son of man, dig now in the wall.” +

+

When I had dug in the wall, I saw a door. + +

+

He said to me, “Go in, and see the wicked abominations that they do here.” + +

+

So I went in and looked, and saw every form of creeping things, abominable animals, and all the idols of the house of Israel, portrayed around on the wall. + +Seventy men of the elders of the house of Israel stood before them. In the middle of them Jaazaniah the son of Shaphan stood, every man with his censer in his hand; and the smell of the cloud of incense went up. + +

+

Then he said to me, “Son of man, have you seen what the elders of the house of Israel do in the dark, every man in his rooms of imagery? For they say, ‘Yahweh doesn’t see us. Yahweh has forsaken the land.’” + +He said also to me, “You will again see more of the great abominations which they do.” + +

+

Then he brought me to the door of the gate of Yahweh’s house which was toward the north; and I saw the women sit there weeping for Tammuz. + +Then he said to me, “Have you seen this, son of man? You will again see yet greater abominations than these.” + +

+

He brought me into the inner court of Yahweh’s house; and I saw at the door of Yahweh’s temple, between the porch and the altar, there were about twenty-five men with their backs toward Yahweh’s temple and their faces toward the east. They were worshiping the sun toward the east. + +

+

Then he said to me, “Have you seen this, 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 turned again to provoke me to anger. Behold, they put the branch to their nose. + +Therefore I will also deal in wrath. My eye won’t spare, neither will I have pity. Though they cry in my ears with a loud voice, yet I will not hear them.” + +

+ + +

Then he cried in my ears with a loud voice, saying, “Cause those who are in charge of the city to draw near, each man with his destroying weapon in his hand.” + +Behold, six men came from the way of the upper gate, which lies toward the north, every man with his slaughter weapon in his hand. One man in the middle of them was clothed in linen, with a writer’s inkhorn by his side. They went in, and stood beside the bronze altar. + +

+

The glory of the God of Israel went up from the cherub, whereupon it was, to the threshold of the house; and he called to the man clothed in linen, who had the writer’s inkhorn by his side. + +Yahweh said to him, “Go through the middle of the city, through the middle of Jerusalem, and set a mark on the foreheads of the men that sigh and that cry over all the abominations that are done within it.” + +

+

To the others he said in my hearing, “Go through the city after him, and strike. Don’t let your eye spare, neither have pity. + +Kill utterly the old man, the young man, the virgin, little children and women; but don’t come near any man on whom is the mark. Begin at my sanctuary.” +

+

Then they began at the old men who were before the house. + +

+

He said to them, “Defile the house, and fill the courts with the slain. Go out!” +

+

They went out, and struck in the city. + +

+

While they were killing, and I was left, I fell on my face, and cried, and said, “Ah Lord Yahweh! Will you destroy all the residue of Israel in your pouring out of your wrath on Jerusalem?” + +

+

Then he said to me, “The iniquity of the house of Israel and Judah is exceedingly great, and the land is full of blood, and the city full of perversion; for they say, ‘Yahweh has forsaken the land, and Yahweh doesn’t see.’ + +As for me also, my eye won’t spare, neither will I have pity, but I will bring their way on their head.” + +

+

Behold, the man clothed in linen, who had the inkhorn by his side, reported the matter, saying, “I have done as you have commanded me.” + +

+ + +

Then I looked, and see, in the expanse that was over the head of the cherubim there appeared above them as it were a sapphire10:1 +or, lapis lazuli + stone, as the appearance of the likeness of a throne. + +He spoke to the man clothed in linen, and said, “Go in between the whirling wheels, even under the cherub, and fill both your hands with coals of fire from between the cherubim, and scatter them over the city.” +

+

He went in as I watched. + +Now the cherubim stood on the right side of the house when the man went in; and the cloud filled the inner court. + +Yahweh’s glory mounted 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 Yahweh’s glory. + +The sound of the wings of the cherubim was heard even to the outer court, as the voice of God Almighty when he speaks. + +

+

It came to pass, when he commanded the man clothed in linen, saying, “Take fire from between the whirling wheels, from between the cherubim,” that he went in and stood beside a wheel. + +The cherub stretched out his hand from between the cherubim to the fire that was between the cherubim, and took some of it, and put it into the hands of him who was clothed in linen, who took it and went out. + +The form of a man’s hand appeared here in the cherubim under their wings. + +

+

I looked, and behold, there were four wheels beside the cherubim, one wheel beside one cherub, and another wheel beside another cherub. The appearance of the wheels was like a beryl stone. + +As for their appearance, the four of them had one likeness, like a wheel within a wheel. + +When they went, they went in their four directions. They didn’t turn as they went, but to the place where the head looked they followed it. They didn’t turn as they went. + +Their whole body, including their backs, their hands, their wings, and the wheels, were full of eyes all around, even the wheels that the four of them had. + +As for the wheels, they were called in my hearing, “the whirling wheels”. + +Every one of them had four faces. The first face was the face of the cherub. The second face was the face of a man. The third face was the face of a lion. The fourth was the face of an eagle. + +

+

The cherubim mounted up. This is the living creature that I saw by the river Chebar. + +When the cherubim went, the wheels went beside them; and when the cherubim lifted up their wings to mount up from the earth, the wheels also didn’t turn from beside them. + +When they stood, these stood. When they mounted up, these mounted up with them; for the spirit of the living creature was in them. + +

+

Yahweh’s glory went out from over the threshold of the house and stood over the cherubim. + +The cherubim lifted up their wings and mounted up from the earth in my sight when they went out, with the wheels beside them. Then they stood at the door of the east gate of Yahweh’s house; and the glory of the God of Israel was over them above. + +

+

This is the living creature that I saw under the God of Israel by the river Chebar; and I knew that they were cherubim. + +Every one had four faces, and every one four wings. The likeness of the hands of a man was under their wings. + +As for the likeness of their faces, they were the faces which I saw by the river Chebar, their appearances and themselves. They each went straight forward. + +

+ + +

Moreover the Spirit lifted me up and brought me to the east gate of Yahweh’s house, which looks eastward. Behold, twenty-five men were at the door of the gate; and I saw among them Jaazaniah the son of Azzur, and Pelatiah the son of Benaiah, princes of the people. + +He said to me, “Son of man, these are the men who devise iniquity, and who give wicked counsel in this city; + +who say, ‘The time is not near to build houses. This is the cauldron, and we are the meat.’ + +Therefore prophesy against them. Prophesy, son of man.” + +

+

Yahweh’s Spirit fell on me, and he said to me, “Speak, ‘Yahweh says: “Thus you have said, house of Israel; for I know the things that come into your mind. + +You have multiplied your slain in this city, and you have filled its streets with the slain.” + +

+

“‘Therefore the Lord Yahweh says: “Your slain whom you have laid in the middle of it, they are the meat, and this is the cauldron; but you will be brought out of the middle of it. + +You have feared the sword; and I will bring the sword on you,” says the Lord Yahweh. + +I will bring you out of the middle of it, and deliver you into the hands of strangers, and will execute judgments among you. + +You will fall by the sword. I will judge you in the border of Israel. Then you will know that I am Yahweh. + +This will not be your cauldron, neither will you be the meat in the middle of it. I will judge you in the border of Israel. + +You will know that I am Yahweh, for you have not walked in my statutes. You have not executed my ordinances, but have done after the ordinances of the nations that are around you.”’” + +

+

When I prophesied, Pelatiah the son of Benaiah died. Then I fell down on my face, and cried with a loud voice, and said, “Ah Lord Yahweh! Will you make a full end of the remnant of Israel?” + +

+

Yahweh’s word came to me, saying, + +Son of man, your brothers, even your brothers, the men of your relatives, and all the house of Israel, all of them, are the ones to whom the inhabitants of Jerusalem have said, ‘Go far away from Yahweh. This land has been given to us for a possession.’ + +

+

Therefore say, ‘The Lord Yahweh says: “Whereas I have removed them far off among the nations, and whereas I have scattered them among the countries, yet I will be to them a sanctuary for a little while in the countries where they have come.”’ + +

+

Therefore say, ‘The Lord Yahweh says: “I will gather you from the peoples, and assemble you out of the countries where you have been scattered, and I will give you the land of Israel.” + +

+

“‘They will come there, and they will take away all its detestable things and all its abominations from there. + +I will give them one heart, and I will put a new spirit within them. I will take the stony heart out of their flesh, and will give them a heart of flesh, + +that they may walk in my statutes, and keep my ordinances, and do them. They will be my people, and I will be their God. + +But as for them whose heart walks after the heart of their detestable things and their abominations, I will bring their way on their own heads,’ says the Lord Yahweh.” + +

+

Then the cherubim lifted up their wings, and the wheels were beside them. The glory of the God of Israel was over them above. + +Yahweh’s glory went up from the middle of the city, and stood on the mountain which is on the east side of the city. + +The Spirit lifted me up, and brought me in the vision by the Spirit of God into Chaldea, to the captives. +

+

So the vision that I had seen went up from me. + +Then I spoke to the captives all the things that Yahweh had shown me. + +

+ + +

Yahweh’s word also came to me, saying, + +Son of man, you dwell in the middle of the rebellious house, who have eyes to see, and don’t see, who have ears to hear, and don’t hear; for they are a rebellious house. + +

+

Therefore, you son of man, prepare your baggage for moving, and move by day in their sight. You shall move from your place to another place in their sight. It may be they will consider, though they are a rebellious house. + +You shall bring out your baggage by day in their sight, as baggage for moving. You shall go out yourself at evening in their sight, as when men go out into exile. + +Dig through the wall in their sight, and carry your baggage out that way. + +In their sight you shall bear it on your shoulder, and carry it out in the dark. You shall cover your face, so that you don’t see the land, for I have set you for a sign to the house of Israel.” + +

+

I did so as I was commanded. I brought out my baggage by day, as baggage for moving, and in the evening I dug through the wall with my hand. I brought it out in the dark, and bore it on my shoulder in their sight. + +

+

In the morning, Yahweh’s word came to me, saying, + +Son of man, hasn’t the house of Israel, the rebellious house, said to you, ‘What are you doing?’ + +

+

Say to them, ‘The Lord Yahweh says: “This burden concerns the prince in Jerusalem, and all the house of Israel among whom they are.”’ + +

+

“Say, ‘I am your sign. As I have done, so will it be done to them. They will go into exile, into captivity. + +

+

“‘The prince who is among them will bear his baggage on his shoulder in the dark, and will go out. They will dig through the wall to carry things out that way. He will cover his face, because he will not see the land with his eyes. + +I will also spread my net on him, and he will be taken in my snare. I will bring him to Babylon to the land of the Chaldeans; yet he will not see it, though he will die there. + +I will scatter toward every wind all who are around him to help him, and all his bands. I will draw out the sword after them. + +

+

“‘They will know that I am Yahweh when I disperse them among the nations and scatter them through the countries. + +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 nations where they come. Then they will know that I am Yahweh.’” + +

+

Moreover Yahweh’s word came to me, saying, + +Son of man, eat your bread with quaking, and drink your water with trembling and with fearfulness. + +Tell the people of the land, ‘The Lord Yahweh says concerning the inhabitants of Jerusalem and the land of Israel: “They will eat their bread with fearfulness and drink their water in dismay, that her land may be desolate, and all that is therein, because of the violence of all those who dwell therein. + +The cities that are inhabited will be laid waste, and the land will be a desolation. Then you will know that I am Yahweh.”’” + +

+

Yahweh’s word came to me, saying, + +Son of man, what is this proverb that you have in the land of Israel, saying, ‘The days are prolonged, and every vision fails’? + +Tell them therefore, ‘The Lord Yahweh says: “I will make this proverb to cease, and they will no more use it as a proverb in Israel;”’ but tell them, ‘“The days are at hand, and the fulfillment of every vision. + +For there will be no more any false vision nor flattering divination within the house of Israel. + +For I am Yahweh. I will speak, and the word that I speak will be performed. It will be no more deferred; for in your days, rebellious house, I will speak the word and will perform it,” says the Lord Yahweh.’” + +

+

Again Yahweh’s word came to me, saying, + +Son of man, behold, they of the house of Israel say, ‘The vision that he sees is for many days to come, and he prophesies of times that are far off.’ + +

+

Therefore tell them, ‘The Lord Yahweh says: “None of my words will be deferred any more, but the word which I speak will be performed,” says the Lord Yahweh.’” + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, prophesy against the prophets of Israel who prophesy, and say to those who prophesy out of their own heart, ‘Hear Yahweh’s word: + +The Lord Yahweh says, “Woe to the foolish prophets, who follow their own spirit, and have seen nothing! + +Israel, your prophets have been like foxes in the waste places. + +You have not gone up into the gaps or built up the wall for the house of Israel, to stand in the battle in Yahweh’s day. + +They have seen falsehood and lying divination, who say, ‘Yahweh says;’ but Yahweh has not sent them. They have made men to hope that the word would be confirmed. + +Haven’t you seen a false vision, and haven’t you spoken a lying divination, in that you say, ‘Yahweh says;’ but I have not spoken?” + +

+

“‘Therefore the Lord Yahweh says: “Because you have spoken falsehood and seen lies, therefore, behold, I am against you,” says the Lord Yahweh. + +My hand will be against the prophets who see false visions and who utter lying divinations. They will not be in the council of my people, neither will they be written in the writing of the house of Israel, neither will they enter into the land of Israel. Then you will know that I am the Lord Yahweh.” + +

+

“‘Because, even because they have seduced my people, saying, “Peace;” and there is no peace. When one builds up a wall, behold, they plaster it with whitewash. + +Tell those who plaster it with whitewash that it will fall. There will be an overflowing shower; and you, great hailstones, will fall. A stormy wind will tear it. + +Behold, when the wall has fallen, won’t it be said to you, “Where is the plaster with which you have plastered it?” + +

+

“‘Therefore the Lord Yahweh says: “I will even tear it with a stormy wind in my wrath. There will be an overflowing shower in my anger, and great hailstones in wrath to consume it. + +So I will break down the wall that you have plastered with whitewash, and bring it down to the ground, so that its foundation will be uncovered. It will fall, and you will be consumed in the middle of it. Then you will know that I am Yahweh. + +Thus I will accomplish my wrath on the wall, and on those who have plastered it with whitewash. I will tell you, ‘The wall is no more, nor those who plastered it— + +to wit, the prophets of Israel who prophesy concerning Jerusalem, and who see visions of peace for her, and there is no peace,’” says the Lord Yahweh.’” + +

+

You, son of man, set your face against the daughters of your people, who prophesy out of their own heart; and prophesy against them, + +and say, “The Lord Yahweh says: ‘Woe to the women who sew magic bands on all elbows and make veils for the head of persons of every stature to hunt souls! Will you hunt the souls of my people and save souls alive for yourselves? + +You have profaned me among my people for handfuls of barley and for pieces of bread, to kill the souls who should not die and to save the souls alive who should not live, by your lying to my people who listen to lies.’ + +

+

Therefore the Lord Yahweh says: ‘Behold, I am against your magic bands, with which you hunt the souls to make them fly, and I will tear them from your arms. I will let the souls fly free, even the souls whom you ensnare like birds. + +I will also tear your veils and deliver my people out of your hand; and they will no longer be in your hand to be ensnared. Then you will know that I am Yahweh. + +Because with lies you have grieved the heart of the righteous, whom I have not made sad; and strengthened the hands of the wicked, that he should not return from his wicked way, and be saved alive. + +Therefore you shall no more see false visions nor practice divination. I will deliver my people out of your hand. Then you will know that I am Yahweh.’” + +

+ + +

Then some of the elders of Israel came to me and sat before me. + +Yahweh’s word came to me, saying, + +Son of man, these men have taken their idols into their heart, and put the stumbling block of their iniquity before their face. Should I be inquired of at all by them? + +Therefore speak to them and tell them, ‘The Lord Yahweh says: “Every man of the house of Israel who takes his idols into his heart and puts the stumbling block of his iniquity before his face then comes to the prophet, I Yahweh will answer him there according to the multitude of his idols, + +that I may take the house of Israel in their own heart, because they are all estranged from me through their idols.”’ + +

+

Therefore tell the house of Israel, ‘The Lord Yahweh says: “Return, and turn yourselves from your idols! Turn away your faces from all your abominations. + +

+

“‘“For everyone of the house of Israel, or of the strangers who live in Israel, who separates himself from me and takes his idols into his heart, and puts the stumbling block of his iniquity before his face, and comes to the prophet to inquire for himself of me, I Yahweh will answer him by myself. + +I will set my face against that man and will make him an astonishment, for a sign and a proverb, and I will cut him off from among my people. Then you will know that I am Yahweh. + +

+

“‘“If the prophet is deceived and speaks a word, I, Yahweh, have deceived that prophet, and I will stretch out my hand on him, and will destroy him from among my people Israel. + +They will bear their iniquity. The iniquity of the prophet will be even as the iniquity of him who seeks him, + +that the house of Israel may no more go astray from me, neither defile themselves any more with all their transgressions; but that they may be my people, and I may be their God,” says the Lord Yahweh.’” + +

+

Yahweh’s word came to me, saying, + +Son of man, when a land sins against me by committing a trespass, and I stretch out my hand on it, and break the staff of its bread and send famine on it, and cut off from it man and animal— + +though these three men, Noah, Daniel, and Job, were in it, they would deliver only their own souls by their righteousness,” says the Lord Yahweh. + +

+

If I cause evil animals to pass through the land, and they ravage it and it is made desolate, so that no man may pass through because of the animals— + +though these three men were in it, as I live,” says the Lord Yahweh, “they would deliver neither sons nor daughters. They only would be delivered, but the land would be desolate. + +

+

Or if I bring a sword on that land, and say, ‘Sword, go through the land, so that I cut off from it man and animal’— + +though these three men were in it, as I live,” says the Lord Yahweh, “they would deliver neither sons nor daughters, but they only would be delivered themselves. + +

+

Or if I send a pestilence into that land, and pour out my wrath on it in blood, to cut off from it man and animal— + +though Noah, Daniel, and Job, were in it, as I live,” says the Lord Yahweh, “they would deliver neither son nor daughter; they would deliver only their own souls by their righteousness.” + +

+

For the Lord Yahweh says: “How much more when I send my four severe judgments on Jerusalemthe sword, the famine, the evil animals, and the pestilenceto cut off from it man and animal! + +Yet, behold, there will be left a remnant in it that will be carried out, both sons and daughters. Behold, they will come out to you, and you will see their way and their doings. Then you will be comforted concerning the evil that I have brought on Jerusalem, even concerning all that I have brought on it. + +They will comfort you, when you see their way and their doings; then you will know that I have not done all that I have done in it without cause,” says the Lord Yahweh. + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, what is the vine tree more than any tree, the vine branch which is among the trees of the forest? + +Will wood be taken of it to make anything? Will men take a pin of it to hang any vessel on it? + +Behold, it is cast into the fire for fuel; the fire has devoured both its ends, and the middle of it is burned. Is it profitable for any work? + +Behold, when it was whole, it was suitable for no work. How much less, when the fire has devoured it, and it has been burned, will it yet be suitable for any work?” + +

+

Therefore the Lord Yahweh says: “As the vine wood among the trees of the forest, which I have given to the fire for fuel, so I will give the inhabitants of Jerusalem. + +I will set my face against them. They will go out from the fire, but the fire will still devour them. Then you will know that I am Yahweh, when I set my face against them. + +I will make the land desolate, because they have acted unfaithfully,” says the Lord Yahweh. + +

+ + +

Again Yahweh’s word came to me, saying, + +Son of man, cause Jerusalem to know her abominations; + +and say, ‘The Lord Yahweh says to Jerusalem: “Your origin and your birth is of the land of the Canaanite. An Amorite was your father, and your mother was a Hittite. + +As for your birth, in the day you were born your navel was not cut. You weren’t washed in water to cleanse you. You weren’t salted at all, nor wrapped in blankets at all. + +No eye pitied you, to do any of these things to you, to have compassion on you; but you were cast out in the open field, because you were abhorred in the day that you were born. + +

+

“‘“When I passed by you, and saw you wallowing in your blood, I said to you, ‘Though you are in your blood, live!’ Yes, I said to you, ‘Though you are in your blood, live!’ + +I caused you to multiply as that which grows in the field, and you increased and grew great, and you attained to excellent beauty. Your breasts were formed, and your hair grew; yet you were naked and bare. + +

+

“‘“Now when I passed by you, and looked at you, behold, your time was the time of love; and I spread my garment over you and covered your nakedness. Yes, I pledged myself to you and entered into a covenant with you,” says the Lord Yahweh, “and you became mine. + +

+

“‘“Then I washed you with water. Yes, I thoroughly washed away your blood from you, and I anointed you with oil. + +I clothed you also with embroidered work and put leather sandals on you. I dressed you with fine linen and covered you with silk. + +I decked you with ornaments, put bracelets on your hands, and put a chain on your neck. + +I put a ring on your nose, earrings in your ears, and a beautiful crown on your head. + +Thus you were decked with gold and silver. Your clothing was of fine linen, silk, and embroidered work. You ate fine flour, honey, and oil. You were exceedingly beautiful, and you prospered to royal estate. + +Your renown went out among the nations for your beauty; for it was perfect, through my majesty which I had put on you,” says the Lord Yahweh. + +

+

“‘“But you trusted in your beauty, and played the prostitute because of your renown, and poured out your prostitution on everyone who passed by. It was his. + +You took some of your garments, and made for yourselves high places decked with various colors, and played the prostitute on them. This shouldn’t happen, neither shall it be. + +You also took your beautiful jewels of my gold and of my silver, which I had given you, and made for yourself images of men, and played the prostitute with them. + +You took your embroidered garments, covered them, and set my oil and my incense before them. + +My bread also which I gave you, fine flour, oil, and honey, with which I fed you, you even set it before them for a pleasant aroma; and so it was,” says the Lord Yahweh. + +

+

“‘“Moreover you have taken your sons and your daughters, whom you have borne to me, and you have sacrificed these to them to be devoured. Was your prostitution a small matter, + +that you have slain my children and delivered them up, in causing them to pass through the fire to them? + +In all your abominations and your prostitution you have not remembered the days of your youth, when you were naked and bare, and were wallowing in your blood. + +

+

“‘“It has happened after all your wickedness—woe, woe to you!” says the Lord Yahweh— + +that you have built for yourselves a vaulted place, and have made yourselves a lofty place in every street. + +You have built your lofty place at the head of every way, and have made your beauty an abomination, and have opened your feet to everyone who passed by, and multiplied your prostitution. + +You have also committed sexual immorality with the Egyptians, your neighbors, great of flesh; and have multiplied your prostitution, to provoke me to anger. + +See therefore, I have stretched out my hand over you, and have diminished your portion, and delivered you to the will of those who hate you, the daughters of the Philistines, who are ashamed of your lewd way. + +You have played the prostitute also with the Assyrians, because you were insatiable; yes, you have played the prostitute with them, and yet you weren’t satisfied. + +You have moreover multiplied your prostitution to the land of merchants, to Chaldea; and yet you weren’t satisfied with this. + +

+

“‘“How weak is your heart,” says the Lord Yahweh, “since you do all these things, the work of an impudent prostitute; + +in that you build your vaulted place at the head of every way, and make your lofty place in every street, and have not been as a prostitute, in that you scorn pay. + +

+

“‘“Adulterous wife, who takes strangers instead of her husband! + +People give gifts to all prostitutes; but you give your gifts to all your lovers, and bribe them, that they may come to you on every side for your prostitution. + +You are different from other women in your prostitution, in that no one follows you to play the prostitute; and whereas you give hire, and no hire is given to you, therefore you are different.”’ + +

+

Therefore, prostitute, hear Yahweh’s word: + +The Lord Yahweh says, “Because your filthiness was poured out, and your nakedness uncovered through your prostitution with your lovers; and because of all the idols of your abominations, and for the blood of your children, that you gave to them; + +therefore see, I will gather all your lovers, with whom you have taken pleasure, and all those whom you have loved, with all those whom you have hated. I will even gather them against you on every side, and will uncover your nakedness to them, that they may see all your nakedness. + +I will judge you as women who break wedlock and shed blood are judged; and I will bring on you the blood of wrath and jealousy. + +I will also give you into their hand, and they will throw down your vaulted place, and break down your lofty places. They will strip you of your clothes and take your beautiful jewels. They will leave you naked and bare. + +They will also bring up a company against you, and they will stone you with stones, and thrust you through with their swords. + +They will burn your houses with fire, and execute judgments on you in the sight of many women. I will cause you to cease from playing the prostitute, and you will also give no hire any more. + +So I will cause my wrath toward you to rest, and my jealousy will depart from you. I will be quiet, and will not be angry any more. + +

+

“‘“Because you have not remembered the days of your youth, but have raged against me in all these things; therefore, behold, I also will bring your way on your head,” says the Lord Yahweh: “and you shall not commit this lewdness with all your abominations. + +

+

“‘“Behold, everyone who uses proverbs will use this proverb against you, saying, ‘As is the mother, so is her daughter.’ + +You are the daughter of your mother, who loathes her husband and her children; and you are the sister of your sisters, who loathed their husbands and their children. Your mother was a Hittite, and your father an Amorite. + +Your elder sister is Samaria, who dwells at your left hand, she and her daughters; and your younger sister, who dwells at your right hand, is Sodom with her daughters. + +Yet you have not walked in their ways, nor done their abominations; but soon you were more corrupt than they in all your ways. + +As I live,” says the Lord Yahweh, “Sodom your sister has not done, she nor her daughters, as you have done, you and your daughters. + +

+

“‘“Behold, this was the iniquity of your sister Sodom: pride, fullness of bread, and prosperous ease was in her and in her daughters. She also didn’t strengthen the hand of the poor and needy. + +They were arrogant and committed abomination before me. Therefore I took them away when I saw it. + +Samaria hasn’t committed half of your sins; but you have multiplied your abominations more than they, and have justified your sisters by all your abominations which you have done. + +You also bear your own shame yourself, in that you have given judgment for your sisters; through your sins that you have committed more abominable than they, they are more righteous than you. Yes, be also confounded, and bear your shame, in that you have justified your sisters. + +

+

“‘“I will reverse their captivity, the captivity of Sodom and her daughters, and the captivity of Samaria and her daughters, and the captivity of your captives among them; + +that you may bear your own shame, and may be ashamed because of all that you have done, in that you are a comfort to them. + +Your sisters, Sodom and her daughters, will return to their former estate; and Samaria and her daughters will return to their former estate; and you and your daughters will return to your former estate. + +For your sister Sodom was not mentioned by your mouth in the day of your pride, + +before your wickedness was uncovered, as at the time of the reproach of the daughters of Syria, and of all who are around her, the daughters of the Philistines, who despise you all around. + +You have borne your lewdness and your abominations,” says Yahweh. + +

+

“‘For the Lord Yahweh says: “I will also deal with you as you have done, who have despised the oath in breaking the covenant. + +Nevertheless I will remember my covenant with you in the days of your youth, and I will establish an everlasting covenant with you. + +Then you will remember your ways and be ashamed when you receive your sisters, your elder sisters and your younger; and I will give them to you for daughters, but not by your covenant. + +I will establish my covenant with you. Then you will know that I am Yahweh; + +that you may remember, and be confounded, and never open your mouth any more because of your shame, when I have forgiven you all that you have done,” says the Lord Yahweh.’” + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, tell a riddle, and speak a parable to the house of Israel; + +and say, ‘The Lord Yahweh says: “A great eagle with great wings and long feathers, full of feathers which had various colors, came to Lebanon and took the top of the cedar. + +He cropped off the topmost of its young twigs, and carried it to a land of traffic. He planted it in a city of merchants. + +

+

“‘“He also took some of the seed of the land and planted it in fruitful soil. He placed it beside many waters. He set it as a willow tree. + +It grew and became a spreading vine of low stature, whose branches turned toward him, and its roots were under him. So it became a vine, produced branches, and shot out sprigs. + +

+

“‘“There was also another great eagle with great wings and many feathers. Behold, this vine bent its roots toward him, and shot out its branches toward him, from the ground where it was planted, that he might water it. + +It was planted in a good soil by many waters, that it might produce branches and that it might bear fruit, that it might be a good vine.”’ + +

+

“Say, ‘The Lord Yahweh says: “Will it prosper? Won’t he pull up its roots and cut off its fruit, that it may wither, that all its fresh springing leaves may wither? It can’t be raised from its roots by a strong arm or many people. + +Yes, behold, being planted, will it prosper? Won’t it utterly wither when the east wind touches it? It will wither in the ground where it grew.”’” + +

+

Moreover Yahweh’s word came to me, saying, + +“Say now to the rebellious house, ‘Don’t you know what these things mean?’ Tell them, ‘Behold, the king of Babylon came to Jerusalem, and took its king, and its princes, and brought them to him to Babylon. + +He took one of the royal offspring,17:13 +or, seed and made a covenant with him. He also brought him under an oath, and took away the mighty of the land, + +that the kingdom might be brought low, that it might not lift itself up, but that by keeping his covenant it might stand. + +But he rebelled against him in sending his ambassadors into Egypt, that they might give him horses and many people. Will he prosper? Will he who does such things escape? Will he break the covenant, and still escape? + +

+

“‘As I live,’ says the Lord Yahweh, ‘surely in the place where the king dwells who made him king, whose oath he despised, and whose covenant he broke, even with him in the middle of Babylon he will die. + +Pharaoh with his mighty army and great company won’t help him in the war, when they cast up mounds and build forts to cut off many persons. + +For he has despised the oath by breaking the covenant; and behold, he had given his hand, and yet has done all these things. He won’t escape. + +

+

Therefore the Lord Yahweh says: ‘As I live, I will surely bring on his own head my oath that he has despised and my covenant that he has broken. + +I will spread my net on him, and he will be taken in my snare. I will bring him to Babylon, and will enter into judgment with him there for his trespass that he has trespassed against me. + +All his fugitives in all his bands will fall by the sword, and those who remain will be scattered toward every wind. Then you will know that I, Yahweh, have spoken it.’ + +

+

The Lord Yahweh says: ‘I will also take some of the lofty top of the cedar, and will plant it. I will crop off from the topmost of its young twigs a tender one, and I will plant it on a high and lofty mountain. + +I will plant it in the mountain of the height of Israel; and it will produce boughs, and bear fruit, and be a good cedar. Birds of every kind will dwell in the shade of its branches. + +All the trees of the field will know that I, Yahweh, have brought down the high tree, have exalted the low tree, have dried up the green tree, and have made the dry tree flourish. +

+

“‘I, Yahweh, have spoken and have done it.’” + +

+ + +

Yahweh’s word came to me again, saying, + +What do you mean, that you use this proverb concerning the land of Israel, saying, +

+The fathers have eaten sour grapes, + +and the children’s teeth are set on edge’? + + +

As I live,” says the Lord Yahweh, “you shall not use this proverb any more in Israel. + +Behold, all souls are mine; as the soul of the father, so also the soul of the son is mine. The soul who sins, he shall die. + +

+ +But if a man is just, + +and does that which is lawful and right, + + +and has not eaten on the mountains, + +hasn’t lifted up his eyes to the idols of the house of Israel, + +hasn’t defiled his neighbor’s wife, + +hasn’t come near a woman in her impurity, + + +and has not wronged any, + +but has restored to the debtor his pledge, + +has taken nothing by robbery, + +has given his bread to the hungry, + +and has covered the naked with a garment; + + +he who hasn’t lent to them with interest, + +hasn’t taken any increase from them, + +who has withdrawn his hand from iniquity, + +has executed true justice between man and man, + + +has walked in my statutes, + +and has kept my ordinances, + +to deal truly; + +he is just, + +he shall surely live,” says the Lord Yahweh. + + + +

If he fathers a son who is a robber who sheds blood, and who does any one of these things, + +or who does not do any of those things +

+but has eaten at the mountain shrines + +and defiled his neighbor’s wife, + + +has wronged the poor and needy, + +has taken by robbery, + +has not restored the pledge, + +and has lifted up his eyes to the idols, + +has committed abomination, + + +has lent with interest, + +and has taken increase from the poor, + +

shall he then live? He shall not live. He has done all these abominations. He shall surely die. His blood will be on him. + +

+

Now, behold, if he fathers a son who sees all his father’s sins which he has done, and fears, and doesn’t do likewise, + +

+who hasn’t eaten on the mountains, + +hasn’t lifted up his eyes to the idols of the house of Israel, + +hasn’t defiled his neighbor’s wife, + + +hasn’t wronged any, + +hasn’t taken anything to pledge, + +hasn’t taken by robbery, + +but has given his bread to the hungry, + +and has covered the naked with a garment; + + +who has withdrawn his hand from the poor, + +who hasn’t received interest or increase, + +has executed my ordinances, + +has walked in my statutes; + +

he shall not die for the iniquity of his father. He shall surely live. + +As for his father, because he cruelly oppressed, robbed his brother, and did that which is not good among his people, behold, he will die in his iniquity. + +

+

Yet you say, ‘Why doesn’t the son bear the iniquity of the father?’ When the son has done that which is lawful and right, and has kept all my statutes, and has done them, he will surely live. + +The soul who sins, he 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 on him, and the wickedness of the wicked shall be on him. + +

+

But if the wicked turns from all his sins that he has committed, and keeps all my statutes, and does that which is lawful and right, he shall surely live. He shall not die. + +None of his transgressions that he has committed will be remembered against him. In his righteousness that he has done, he shall live. + +Have I any pleasure in the death of the wicked?” says the Lord Yahweh, “and not rather that he should return from his way, and live? + +

+

But when the righteous turns away from his righteousness, and commits iniquity, and does according to all the abominations that the wicked man does, should he live? None of his righteous deeds that he has done will be remembered. In his trespass that he has trespassed, and in his sin that he has sinned, in them he shall die. + +

+

Yet you say, ‘The way of the Lord is not equal.’ Hear now, house of Israel: Is my way not equal? Aren’t your ways unequal? + +When the righteous man turns away from his righteousness, and commits iniquity, and dies in it, then he dies in his iniquity that he has done. + +Again, when the wicked man turns away from his wickedness that he has committed, and does that which is lawful and right, he will save his soul alive. + +Because he considers, and turns away from all his transgressions that he has committed, he shall surely live. He shall not die. + +Yet the house of Israel says, ‘The way of the Lord is not fair.’ House of Israel, aren’t my ways fair? Aren’t your ways unfair? + +

+

Therefore I will judge you, house of Israel, everyone according to his ways,” says the Lord Yahweh. “Return, and turn yourselves from all your transgressions, so iniquity will not be your ruin. + +Cast away from you all your transgressions in which you have transgressed; and make yourself a new heart and a new spirit. For why will you die, house of Israel? + +For I have no pleasure in the death of him who dies,” says the Lord Yahweh. “Therefore turn yourselves, and live! + +

+ + +

“Moreover, take up a lamentation for the princes of Israel, + +and say, +

+What was your mother? + +A lioness. + +She couched among lions, + +in the middle of the young lions she nourished her cubs. + + +She brought up one of her cubs. + +He became a young lion. + +He learned to catch the prey. + +He devoured men. + + +The nations also heard of him. + +He was taken in their pit; + +and they brought him with hooks to the land of Egypt. + + + +“‘Now when she saw that she had waited, + +and her hope was lost, + +then she took another of her cubs, + +and made him a young lion. + + +He went up and down among the lions. + +He became a young lion. + +He learned to catch the prey. + +He devoured men. + + +He knew their palaces, + +and laid waste their cities. + +The land was desolate with its fullness, + +because of the noise of his roaring. + + +Then the nations attacked him on every side from the provinces. + +They spread their net over him. + +He was taken in their pit. + + +They put him in a cage with hooks, + +and brought him to the king of Babylon. + +They brought him into strongholds, + +so that his voice should no more be heard on the mountains of Israel. + + + +“‘Your mother was like a vine in your blood, planted by the waters. + +It was fruitful and full of branches by reason of many waters. + + +It had strong branches for the scepters of those who ruled. + +Their stature was exalted among the thick boughs. + +They were seen in their height + +with the multitude of their branches. + + +But it was plucked up in fury. + +It was cast down to the ground, + +and the east wind dried up its fruit. + +Its strong branches were broken off and withered. + +The fire consumed them. + + +Now it is planted in the wilderness, + +in a dry and thirsty land. + + +Fire has gone out of its branches. + +It has devoured its fruit, + +so that there is in it no strong branch to be a scepter to rule.’ + +

This is a lamentation, and shall be for a lamentation.” + +

+ + +

In the seventh year, in the fifth month, the tenth day of the month, some of the elders of Israel came to inquire of Yahweh, and sat before me. + +

+

Yahweh’s word came to me, saying, + +Son of man, speak to the elders of Israel, and tell them, ‘The Lord Yahweh says: “Is it to inquire of me that you have come? As I live,” says the Lord Yahweh, “I will not be inquired of by you.”’ + +

+

Will you judge them, son of man? Will you judge them? Cause them to know the abominations of their fathers. + +Tell them, ‘The Lord Yahweh says: “In the day when I chose Israel, and swore to the offspring of the house of Jacob, and made myself known to them in the land of Egypt, when I swore to them, saying, ‘I am Yahweh your God;’ + +in that day I swore to them to bring them out of the land of Egypt into a land that I had searched out for them, flowing with milk and honey, which is the glory of all lands. + +I said to them, ‘Each of you throw away the abominations of his eyes. Don’t defile yourselves with the idols of Egypt. I am Yahweh your God.’ + +

+

“‘“But they rebelled against me and wouldn’t listen to me. They didn’t all throw away the abominations of their eyes. They also didn’t forsake the idols of Egypt. Then I said I would pour out my wrath on them, to accomplish my anger against them in the middle of the land of Egypt. + +But I worked for my name’s sake, that it should not be profaned in the sight of the nations among which they were, in whose sight I made myself known to them in bringing them out of the land of Egypt. + +So I caused them to go out of the land of Egypt and brought them into the wilderness. + +I gave them my statutes and showed them my ordinances, which if a man does, he will live in them. + +Moreover also I gave them my Sabbaths, to be a sign between me and them, that they might know that I am Yahweh who sanctifies them. + +

+

“‘“But the house of Israel rebelled against me in the wilderness. They didn’t walk in my statutes and they rejected my ordinances, which if a man keeps, he shall live in them. They greatly profaned my Sabbaths. Then I said I would pour out my wrath on them in the wilderness, to consume them. + +But I worked for my name’s sake, that it should not be profaned in the sight of the nations, in whose sight I brought them out. + +Moreover also I swore to 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, + +because they rejected my ordinances, and didn’t walk in my statutes, and profaned my Sabbaths; for their heart went after their idols. + +Nevertheless my eye spared them, and I didn’t destroy them. I didn’t make a full end of them in the wilderness. + +I said to their children in the wilderness, ‘Don’t walk in the statutes of your fathers. Don’t observe their ordinances or defile yourselves with their idols. + +I am Yahweh your God. Walk in my statutes, keep my ordinances, and do them. + +Make my Sabbaths holy. They shall be a sign between me and you, that you may know that I am Yahweh your God.’ + +

+

“‘“But the children rebelled against me. They didn’t walk in my statutes, and didn’t keep my ordinances to do them, which if a man does, he shall live in them. They profaned my Sabbaths. Then I said I would pour out my wrath on them, to accomplish my anger against them in the wilderness. + +Nevertheless I withdrew my hand and worked for my name’s sake, that it should not be profaned in the sight of the nations, in whose sight I brought them out. + +Moreover I swore to them in the wilderness, that I would scatter them among the nations and disperse them through the countries, + +because they had not executed my ordinances, but had rejected my statutes, and had profaned my Sabbaths, and their eyes were after their fathers’ idols. + +Moreover also I gave them statutes that were not good, and ordinances in which they couldn’t live. + +I polluted them in their own gifts, in that they caused all that opens the womb to pass through the fire, that I might make them desolate, to the end that they might know that I am Yahweh.”’ + +

+

Therefore, son of man, speak to the house of Israel, and tell them, ‘The Lord Yahweh says: “Moreover, in this your fathers have blasphemed me, in that they have committed a trespass against me. + +For when I had brought them into the land which I swore to give to them, then they saw every high hill and every thick tree, and they offered there their sacrifices, and there they presented the provocation of their offering. There they also made their pleasant aroma, and there they poured out their drink offerings. + +Then I said to them, ‘What does the high place where you go mean?’ So its name is called Bamah20:29 +“Bamah” means “High Place”. to this day.”’ + +

+

Therefore tell the house of Israel, ‘The Lord Yahweh says: “Do you pollute yourselves in the way of your fathers? Do you play the prostitute after their abominations? + +When you offer your gifts, when you make your sons pass through the fire, do you pollute yourselves with all your idols to this day? Should I be inquired of by you, house of Israel? As I live, says the Lord Yahweh, I will not be inquired of by you! + +

+

“‘“That which comes into your mind will not be at all, in that you say, ‘We will be as the nations, as the families of the countries, to serve wood and stone.’ + +As I live,” says the Lord Yahweh, “surely with a mighty hand, with an outstretched arm, and with wrath poured out, I will be king over you. + +I will bring you out from the peoples, and will gather you out of the countries in which you are scattered with a mighty hand, with an outstretched arm, and with wrath poured out. + +I will bring you into the wilderness of the peoples, and there I will enter into judgment with you face to face. + +Just as I entered into judgment with your fathers in the wilderness of the land of Egypt, so I will enter into judgment with you,” says the Lord Yahweh. + +I will cause you to pass under the rod, and I will bring you into the bond of the covenant. + +I will purge out from among you the rebels and those who disobey me. I will bring them out of the land where they live, but they shall not enter into the land of Israel. Then you will know that I am Yahweh.” + +

+

“‘As for you, house of Israel, the Lord Yahweh says: “Go, everyone serve his idols, and hereafter also, if you will not listen to me; but you shall no more profane my holy name with your gifts and with your idols. + +For in my holy mountain, in the mountain of the height of Israel,” says the Lord Yahweh, “there all the house of Israel, all of them, shall serve me in the land. There I will accept them, and there I will require your offerings and the first fruits of your offerings, with all your holy things. + +I will accept you as a pleasant aroma when I bring you out from the peoples and gather you out of the countries in which you have been scattered. I will be sanctified in you in the sight of the nations. + +You will know that I am Yahweh when I bring you into the land of Israel, into the country which I swore to give to your fathers. + +There you will remember your ways, and all your deeds in which you have polluted yourselves. Then you will loathe yourselves in your own sight for all your evils that you have committed. + +You will know that I am Yahweh, when I have dealt with you for my name’s sake, not according to your evil ways, nor according to your corrupt doings, you house of Israel,” says the Lord Yahweh.’” + +

+

Yahweh’s word came to me, saying, + +“Son of man, set your face toward the south, and preach toward the south, and prophesy against the forest of the field in the south. + +Tell the forest of the south, ‘Hear Yahweh’s word: The Lord Yahweh says, “Behold, I will kindle a fire in you, and it will devour every green tree in you, and every dry tree. The burning flame will not be quenched, and all faces from the south to the north will be burned by it. + +All flesh will see that I, Yahweh, have kindled it. It will not be quenched.”’” + +

+

Then I said, “Ah Lord Yahweh! They say of me, ‘Isn’t he a speaker of parables?’” + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, set your face toward Jerusalem, and preach toward the sanctuaries, and prophesy against the land of Israel. + +Tell the land of Israel, ‘Yahweh says: “Behold, I am against you, and will draw my sword out of its sheath, and will cut off from you the righteous and the wicked. + +Seeing then that I will cut off from you the righteous and the wicked, therefore my sword will go out of its sheath against all flesh from the south to the north. + +All flesh will know that I, Yahweh, have drawn my sword out of its sheath. It will not return any more.”’ + +

+

Therefore sigh, you son of man. You shall sigh before their eyes with a broken heart21:6 +literally, the breaking of your thighs and with bitterness. + +It shall be, when they ask you, ‘Why do you sigh?’ that you shall say, ‘Because of the news, for it comes! Every heart will melt, all hands will be feeble, every spirit will faint, and all knees will be weak as water. Behold, it comes, and it shall be done, says the Lord Yahweh.’” + +

+

Yahweh’s word came to me, saying, + +“Son of man, prophesy, and say, ‘Yahweh says: +

+A sword! A sword! + +It is sharpened, + +and also polished. + + +It is sharpened that it may make a slaughter. + +It is polished that it may be as lightning. + +Should we then make mirth? + +The rod of my son condemns every tree. + + +It is given to be polished, + +that it may be handled. + +The sword is sharpened. + +Yes, it is polished + +to give it into the hand of the killer.”’ + + +Cry and wail, son of man; + +for it is on my people. + +It is on all the princes of Israel. + +They are delivered over to the sword with my people. + +Therefore beat your thigh. + + + +

For there is a trial. What if even the rod that condemns will be no more?” says the Lord Yahweh. + +

+You therefore, son of man, prophesy, + +and strike your hands together. + +Let the sword be doubled the third time, + +the sword of the fatally wounded. + +It is the sword of the great one who is fatally wounded, + +which enters into their rooms. + + +I have set the threatening sword against all their gates, + +that their heart may melt, + +and their stumblings be multiplied. + +Ah! It is made as lightning. + +It is pointed for slaughter. + + +Gather yourselves together. + +Go to the right. + +Set yourselves in array. + +Go to the left, + +wherever your face is set. + + +I will also strike my hands together, + +and I will cause my wrath to rest. + +I, Yahweh, have spoken it.” + + +

Yahweh’s word came to me again, saying, + +Also, you son of man, appoint two ways, that the sword of the king of Babylon may come. They both will come out of one land, and mark out a place. Mark it out at the head of the way to the city. + +You shall appoint a way for the sword to come to Rabbah of the children of Ammon, and to Judah in Jerusalem the fortified. + +For the king of Babylon stood at the parting of the way, at the head of the two ways, to use divination. He shook the arrows back and forth. He consulted the teraphim.21:21 +teraphim were household idols that may have been associated with inheritance rights to the household property. He looked in the liver. + +In his right hand was the lot for Jerusalem, to set battering rams, to open the mouth in the slaughter, to lift up the voice with shouting, to set battering rams against the gates, to cast up mounds, and to build forts. + +It will be to them as a false divination in their sight, who have sworn oaths to them; but he brings iniquity to memory, that they may be taken. + +

+

“Therefore the Lord Yahweh says: ‘Because you have caused your iniquity to be remembered, in that your transgressions are uncovered, so that in all your doings your sins appear; because you have come to memory, you will be taken with the hand. + +

+

“‘You, deadly wounded wicked one, the prince of Israel, whose day has come, in the time of the iniquity of the end, + +the Lord Yahweh says: “Remove the turban, and take off the crown. This will not be as it was. Exalt that which is low, and humble that which is high. + +I will overturn, overturn, overturn it. This also will be no more, until he comes whose right it is; and I will give it.”’ + +

+

You, son of man, prophesy and say, ‘The Lord Yahweh says this concerning the children of Ammon, and concerning their reproach: +

+A sword! A sword is drawn! + +It is polished for the slaughter, + +to cause it to devour, + +that it may be as lightning; + + +while they see for you false visions, + +while they divine lies to you, + +to lay you on the necks of the wicked who are deadly wounded, + +whose day has come in the time of the iniquity of the end. + + +Cause it to return into its sheath. + +In the place where you were created, + +in the land of your birth, I will judge you. + + +I will pour out my indignation on you. + +I will blow on you with the fire of my wrath. + +I will deliver you into the hand of brutish men, + +skillful to destroy. + + +You will be for fuel to the fire. + +Your blood will be in the middle of the land. + +You will be remembered no more; + +for I, Yahweh, have spoken it.”’” + + + + +

Moreover Yahweh’s word came to me, saying, + +You, son of man, will you judge? Will you judge the bloody city? Then cause her to know all her abominations. + +You shall say, ‘The Lord Yahweh says: “A city that sheds blood within herself, that her time may come, and that makes idols against herself to defile her! + +You have become guilty in your blood that you have shed, and are defiled in your idols which you have made! You have caused your days to draw near, and have come to the end of your years. Therefore I have made you a reproach to the nations, and a mocking to all the countries. + +Those who are near and those who are far from you will mock you, you infamous one, full of tumult. + +

+

“‘“Behold, the princes of Israel, everyone according to his power, have been in you to shed blood. + +In you have they treated father and mother with contempt.22:7 +Literally, +made light of father and mother. Among you they have oppressed the foreigner. In you they have wronged the fatherless and the widow. + +You have despised my holy things, and have profaned my Sabbaths. + +Slanderous men have been in you to shed blood. In you they have eaten on the mountains. They have committed lewdness among you. + +In you have they uncovered their fathers’ nakedness. In you have they humbled her who was unclean in her impurity. + +One has committed abomination with his neighbor’s wife, and another has lewdly defiled his daughter-in-law. Another in you has humbled his sister, his father’s daughter. + +In you have they taken bribes to shed blood. You have taken interest and increase, and you have greedily gained of your neighbors by oppression, and have forgotten me,” says the Lord Yahweh. + +

+

“‘“Behold, therefore I have struck my hand at your dishonest gain which you have made, and at the blood which has been shed within you. + +Can your heart endure, or can your hands be strong, in the days that I will deal with you? I, Yahweh, have spoken it, and will do it. + +I will scatter you among the nations, and disperse you through the countries. I will purge your filthiness out of you. + +You will be profaned in yourself in the sight of the nations. Then you will know that I am Yahweh.”’” + +

+

Yahweh’s word came to me, saying, + +Son of man, the house of Israel has become dross to me. All of them are bronze, tin, iron, and lead in the middle of the furnace. They are the dross of silver. + +Therefore the Lord Yahweh says: ‘Because you have all become dross, therefore, behold, I will gather you into the middle of Jerusalem. + +As they gather silver, bronze, iron, lead, and tin into the middle of the furnace, to blow the fire on it, to melt it, so I will gather you in my anger and in my wrath, and I will lay you there and melt you. + +Yes, I will gather you, and blow on you with the fire of my wrath, and you will be melted in the middle of it. + +As silver is melted in the middle of the furnace, so you will be melted in the middle of it; and you will know that I, Yahweh, have poured out my wrath on you.’” + +

+

Yahweh’s word came to me, saying, + +Son of man, tell her, ‘You are a land that is not cleansed nor rained on in the day of indignation.’ + +There is a conspiracy of her prophets within it, like a roaring lion ravening the prey. They have devoured souls. They take treasure and precious things. They have made many widows within it. + +Her priests have done violence to my law and have profaned my holy things. They have made no distinction between the holy and the common, neither have they caused men to discern between the unclean and the clean, and have hidden their eyes from my Sabbaths. So I am profaned among them. + +Her princes within it are like wolves ravening the prey, to shed blood and to destroy souls, that they may get dishonest gain. + +Her prophets have plastered for them with whitewash, seeing false visions, and divining lies to them, saying, ‘The Lord Yahweh says,’ when Yahweh has not spoken. + +The people of the land have used oppression and exercised robbery. Yes, they have troubled the poor and needy, and have oppressed the foreigner wrongfully. + +

+

I sought for a man among them who would build up the wall and stand in the gap before me for the land, that I would not destroy it; but I found no one. + +Therefore I have poured out my indignation on them. I have consumed them with the fire of my wrath. I have brought their own way on their heads,” says the Lord Yahweh. + +

+ + +

Yahweh’s word came again to me, saying, + +Son of man, there were two women, the daughters of one mother. + +They played the prostitute in Egypt. They played the prostitute in their youth. Their breasts were fondled there, and their youthful nipples were caressed there. + +Their names were Oholah the elder, and Oholibah her sister. They became mine, and they bore sons and daughters. As for their names, Samaria is Oholah, and Jerusalem Oholibah. + +

+

“Oholah played the prostitute when she was mine. She doted on her lovers, on the Assyrians her neighbors, + +who were clothed with bluegovernors and rulers, all of them desirable young men, horsemen riding on horses. + +She gave herself as a prostitute to them, all of them the choicest men of Assyria. She defiled herself with the idols of whomever she lusted after. + +She hasn’t left her prostitution since leaving Egypt; for in her youth they lay with her. They caressed her youthful nipples and they poured out their prostitution on her. + +

+

Therefore I delivered her into the hand of her lovers, into the hand of the Assyrians on whom she doted. + +These uncovered her nakedness. They took her sons and her daughters, and they killed her with the sword. She became a byword among women; for they executed judgments on her. + +

+

Her sister Oholibah saw this, yet she was more corrupt in her lusting than she, and in her prostitution which was more depraved than the prostitution of her sister. + +She lusted after the Assyrians, governors and rulersher neighbors, clothed most gorgeously, horsemen riding on horses, all of them desirable young men. + +I saw that she was defiled. They both went the same way. + +

+

She increased her prostitution; for she saw men portrayed on the wall, the images of the Chaldeans portrayed with red, + +dressed with belts on their waists, with flowing turbans on their heads, all of them looking like princes, after the likeness of the Babylonians in Chaldea, the land of their birth. + +As soon as she saw them, she lusted after them and sent messengers to them into Chaldea. + +The Babylonians came to her into the bed of love, and they defiled her with their prostitution. She was polluted with them, and her soul was alienated from them. + +So she uncovered her prostitution and uncovered her nakedness. Then my soul was alienated from her, just like my soul was alienated from her sister. + +Yet she multiplied her prostitution, remembering the days of her youth, in which she had played the prostitute in the land of Egypt. + +She lusted after their lovers, whose flesh is as the flesh of donkeys, and whose issue is like the issue of horses. + +Thus you called to memory the lewdness of your youth, in the caressing of your nipples by the Egyptians because of your youthful breasts. + +

+

Therefore, Oholibah, the Lord Yahweh says: ‘Behold, I will raise up your lovers against you, from whom your soul is alienated, and I will bring them against you on every side: + +the Babylonians and all the Chaldeans, Pekod, Shoa, Koa, and all the Assyrians with them; all of them desirable young men, governors and rulers, princes and men of renown, all of them riding on horses. + +They will come against you with weapons, chariots, and wagons, and with a company of peoples. They will set themselves against you with buckler, shield, and helmet all around. I will commit the judgment to them, and they will judge you according to their judgments. + +I will set my jealousy against you, and they will deal with you in fury. They will take away your nose and your ears. Your remnant will fall by the sword. They will take your sons and your daughters; and the rest of you will be devoured by the fire. + +They will also strip you of your clothes and take away your beautiful jewels. + +Thus I will make your lewdness to cease from you, and remove your prostitution from the land of Egypt, so that you will not lift up your eyes to them, nor remember Egypt any more.’ + +

+

For the Lord Yahweh says: ‘Behold, I will deliver you into the hand of them whom you hate, into the hand of them from whom your soul is alienated. + +They will deal with you in hatred, and will take away all your labor, and will leave you naked and bare. The nakedness of your prostitution will be uncovered, both your lewdness and your prostitution. + +These things will be done to you because you have played the prostitute after the nations, and because you are polluted with their idols. + +You have walked in the way of your sister; therefore I will give her cup into your hand.’ + +

+

The Lord Yahweh says: +

+You will drink of your sister’s cup, + +which is deep and large. + +You will be ridiculed and held in derision. + +It contains much. + + +You will be filled with drunkenness and sorrow, + +with the cup of astonishment and desolation, + +with the cup of your sister Samaria. + + +You will even drink it and drain it out. + +You will gnaw the broken pieces of it, + +and will tear your breasts; + +

for I have spoken it,’ says the Lord Yahweh. + +

+

Therefore the Lord Yahweh says: ‘Because you have forgotten me and cast me behind your back, therefore you also bear your lewdness and your prostitution.’” + +

+

Yahweh said moreover to me: “Son of man, will you judge Oholah and Oholibah? Then declare to them their abominations. + +For they have committed adultery, and blood is in their hands. They have committed adultery with their idols. They have also caused their sons, whom they bore to me, to pass through the fire to them to be devoured. + +Moreover this they have done to me: they have defiled my sanctuary in the same day, and have profaned my Sabbaths. + +For when they had slain their children to their idols, then they came the same day into my sanctuary to profane it; and behold, they have done this in the middle of my house. + +

+

Furthermore you sisters have sent for men who come from far away, to whom a messenger was sent, and behold, they came; for whom you washed yourself, painted your eyes, decorated yourself with ornaments, + +and sat on a stately bed, with a table prepared before it, whereupon you set my incense and my oil. + +

+

The voice of a multitude being at ease was with her. With men of the common sort were brought drunkards from the wilderness; and they put bracelets on their hands, and beautiful crowns on their heads. + +Then I said of her who was old in adulteries, ‘Now they will play the prostitute with her, and she with them.’ + +They went in to her, as they go in to a prostitute. So they went in to Oholah and to Oholibah, the lewd women. + +Righteous men will judge them with the judgment of adulteresses and with the judgment of women who shed blood, because they are adulteresses, and blood is in their hands. + +

+

For the Lord Yahweh says: ‘I will bring up a mob against them, and will give them to be tossed back and forth and robbed. + +The company will stone them with stones and dispatch them with their swords. They will kill their sons and their daughters, and burn up their houses with fire. + +

+

“‘Thus I will cause lewdness to cease out of the land, that all women may be taught not to be lewd like you. + +They will recompense your lewdness on you, and you will bear the sins of your idols. Then you will know that I am the Lord Yahweh.’” + +

+ + +

Again, in the ninth year, in the tenth month, in the tenth day of the month, Yahweh’s word came to me, saying, + +Son of man, write the name of the day, this same day. The king of Babylon drew close to Jerusalem this same day. + +Utter a parable to the rebellious house, and tell them, ‘The Lord Yahweh says, +

+Put the cauldron on the fire. + +Put it on, + +and also pour water into it. + + +Gather its pieces into it, + +even every good piece: + +the thigh and the shoulder. + +Fill it with the choice bones. + + +Take the choice of the flock, + +and also a pile of wood for the bones under the cauldron. + +Make it boil well. + +Yes, let its bones be boiled within it.” + + +

“‘Therefore the Lord Yahweh says: +

+“Woe to the bloody city, + +to the cauldron whose rust is in it, + +and whose rust hasn’t gone out of it! + +Take out of it piece after piece + +without casting lots for it. + + + +“‘“For the blood she shed is in the middle of her. + +She set it on the bare rock. + +She didn’t pour it on the ground, + +to cover it with dust. + + +That it may cause wrath to come up to take vengeance, + +I have set her blood on the bare rock, + +that it should not be covered.” + + +

“‘Therefore the Lord Yahweh says: +

+“Woe to the bloody city! + +I also will make the pile great. + + +Heap on the wood. + +Make the fire hot. + +Boil the meat well. + +Make the broth thick, + +and let the bones be burned. + + +Then set it empty on its coals, + +that it may be hot, + +and its bronze may burn, + +and that its filthiness may be molten in it, + +that its rust may be consumed. + + +She is weary with toil; + +yet her great rust, + +rust by fire, doesn’t leave her. + + +

“‘“In your filthiness is lewdness. Because I have cleansed you and you weren’t cleansed, you won’t be cleansed from your filthiness any more, until I have caused my wrath toward you to rest. + +

+

“‘“I, Yahweh, have spoken it. It will happen, and I will do it. I won’t go back. I won’t spare. I won’t repent. According to your ways and according to your doings, they will judge you,” says the Lord Yahweh.’” + +

+

Also Yahweh’s word came to me, saying, + +Son of man, behold, I will take away from you the desire of your eyes with one stroke; yet you shall neither mourn nor weep, neither shall your tears run down. + +Sigh, but not aloud. Make no mourning for the dead. Bind your headdress on you, and put your sandals on your feet. Don’t cover your lips, and don’t eat mourner’s bread.” + +

+

So I spoke to the people in the morning, and at evening my wife died. So I did in the morning as I was commanded. + +

+

The people asked me, “Won’t you tell us what these things mean to us, that you act like this?” + +

+

Then I said to them, “Yahweh’s word came to me, saying, + +‘Speak to the house of Israel, “The Lord Yahweh says: ‘Behold, I will profane my sanctuary, the pride of your power, the desire of your eyes, and that which your soul pities; and your sons and your daughters whom you have left behind will fall by the sword. + +You will do as I have done. You won’t cover your lips or eat mourner’s bread. + +Your turbans will be on your heads, and your sandals on your feet. You won’t mourn or weep; but you will pine away in your iniquities, and moan one toward another. + +Thus Ezekiel will be a sign to you; according to all that he has done, you will do. When this comes, then you will know that I am the Lord Yahweh.’”’” + +

+

You, son of man, shouldn’t it 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 hearttheir sons and their daughters— + +that in that day he who escapes will come to you, to cause you to hear it with your ears? + +In that day your mouth will be opened to him who has escaped, and you will speak and be no more mute. So you will be a sign to them. Then they will know that I am Yahweh.” + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, set your face toward the children of Ammon, and prophesy against them. + +Tell the children of Ammon, ‘Hear the word of the Lord Yahweh! The Lord Yahweh says, “Because you said, ‘Aha!’ against my sanctuary when it was profaned, and against the land of Israel when it was made desolate, and against the house of Judah when they went into captivity, + +therefore, behold, I will deliver you to the children of the east for a possession. They will set their encampments in you and make their dwellings in you. They will eat your fruit and they will drink your milk. + +I will make Rabbah a stable for camels and the children of Ammon a resting place for flocks. Then you will know that I am Yahweh.” + +For the Lord Yahweh says: “Because you have clapped your hands, stamped with the feet, and rejoiced with all the contempt of your soul against the land of Israel, + +therefore, behold, I have stretched out my hand on you, and will deliver you for a plunder to the nations. I will cut you off from the peoples, and I will cause you to perish out of the countries. I will destroy you. Then you will know that I am Yahweh.” + +

+

“‘The Lord Yahweh says: “Because Moab and Seir say, ‘Behold, the house of Judah is like all the nations,’ + +therefore, behold, I will open the side of Moab from the cities, from his cities which are on its frontiers, the glory of the country, Beth Jeshimoth, Baal Meon, and Kiriathaim, + +to the children of the east, to go against the children of Ammon; and I will give them for a possession, that the children of Ammon may not be remembered among the nations. + +I will execute judgments on Moab. Then they will know that I am Yahweh.” + +

+

“‘The Lord Yahweh says: “Because Edom has dealt against the house of Judah by taking vengeance, and has greatly offended, and taken revenge on them,” + +therefore the Lord Yahweh says, “I will stretch out my hand on Edom, and will cut off man and animal from it; and I will make it desolate from Teman. They will fall by the sword even to Dedan. + +I will lay my vengeance on Edom by the hand of my people Israel. They will do in Edom according to my anger and according to my wrath. Then they will know my vengeance,” says the Lord Yahweh. + +

+

“‘The Lord Yahweh says: “Because the Philistines have taken revenge, and have taken vengeance with contempt of soul to destroy with perpetual hostility,” + +therefore the Lord Yahweh says, “Behold, I will stretch out my hand on the Philistines, and I will cut off the Cherethites, and destroy the remnant of the sea coast. + +I will execute great vengeance on them with wrathful rebukes. Then they will know that I am Yahweh, when I lay my vengeance on them.”’” + +

+ + +

In the eleventh year, in the first of the month, Yahweh’s word came to me, saying, + +Son of man, because Tyre has said against Jerusalem, ‘Aha! She is broken! She who was the gateway of the peoples has been returned to me. I will be replenished, now that she is laid waste;’ + +therefore the Lord Yahweh says, ‘Behold, I am against you, Tyre, and will cause many nations to come up against you, as the sea causes its waves to come up. + +They will destroy the walls of Tyre, and break down her towers. I will also scrape her dust from her, and make her a bare rock. + +She will be a place for the spreading of nets in the middle of the sea; for I have spoken it,’ says the Lord Yahweh. ‘She will become plunder for the nations. + +Her daughters who are in the field will be slain with the sword. Then they will know that I am Yahweh.’ + +

+

For the Lord Yahweh says: ‘Behold, I will bring on Tyre Nebuchadnezzar king of Babylon, king of kings, from the north, with horses, with chariots, with horsemen, and an army with many people. + +He will kill your daughters in the field with the sword. He will make forts against you, cast up a mound against you, and raise up the buckler against you. + +He will set his battering engines against your walls, and with his axes he will break down your towers. + +By reason of the abundance of his horses, their dust will cover you. Your walls will shake at the noise of the horsemen, of the wagons, and of the chariots, when he enters into your gates, as men enter into a city which is broken open. + +He will tread down all your streets with the hoofs of his horses. He will kill your people with the sword. The pillars of your strength will go down to the ground. + +They will make a plunder of your riches and make a prey of your merchandise. They will break down your walls and destroy your pleasant houses. They will lay your stones, your timber, and your dust in the middle of the waters. + +I will cause the noise of your songs to cease. The sound of your harps won’t be heard any more. + +I will make you a bare rock. You will be a place for the spreading of nets. You will be built no more; for I Yahweh have spoken it,’ says the Lord Yahweh. + +

+

The Lord Yahweh says to Tyre: ‘Won’t the islands shake at the sound of your fall, when the wounded groan, when the slaughter is made within you? + +Then all the princes of the sea will come down from their thrones, and lay aside their robes, and strip off their embroidered garments. They will clothe themselves with trembling. They will sit on the ground, and will tremble every moment, and be astonished at you. + +They will take up a lamentation over you, and tell you, +

+“How you are destroyed, + +who were inhabited by seafaring men, + +the renowned city, + +who was strong in the sea, + +she and her inhabitants, + +who caused their terror to be on all who lived there!” + + +Now the islands will tremble in the day of your fall. + +Yes, the islands that are in the sea will be dismayed at your departure.’ + + +

For the Lord Yahweh says: ‘When I make you a desolate city, like the cities that are not inhabited, when I bring up the deep on you, and the great waters cover you, + +then I will bring you down with those who descend into the pit, to the people of old time, and will make you dwell in the lower parts of the earth, in the places that are desolate of old, with those who go down to the pit, that you be not inhabited; and I will set glory in the land of the living. + +I will make you a terror, and you will no more have any being. Though you are sought for, yet you will never be found again,’ says the Lord Yahweh.” + +

+ + +

Yahweh’s word came again to me, saying, + +You, son of man, take up a lamentation over Tyre; + +and tell Tyre, ‘You who dwell at the entry of the sea, who are the merchant of the peoples to many islands, the Lord Yahweh says: +

+You, Tyre, have said, + +I am perfect in beauty.’ + + +Your borders are in the heart of the seas. + +Your builders have perfected your beauty. + + +They have made all your planks of cypress trees from Senir. + +They have taken a cedar from Lebanon to make a mast for you. + + +They have made your oars of the oaks of Bashan. + +They have made your benches of ivory inlaid in cypress wood from the islands of Kittim. + + +Your sail was of fine linen with embroidered work from Egypt, + +that it might be to you for a banner. + +Blue and purple from the islands of Elishah was your awning. + + +The inhabitants of Sidon and Arvad were your rowers. + +Your wise men, Tyre, were in you. + +They were your pilots. + + +The old men of Gebal + +and its wise men were your repairers of ship seams in you. + +All the ships of the sea with their mariners were in you + +to deal in your merchandise. + + + +“‘“Persia, Lud, and Put were in your army, + +your men of war. + +They hung the shield and helmet in you. + +They showed your beauty. + + +The men of Arvad with your army were on your walls all around, + +and valiant men were in your towers. + +They hung their shields on your walls all around. + +They have perfected your beauty. + + +

“‘“Tarshish was your merchant by reason of the multitude of all kinds of riches. They traded for your wares with silver, iron, tin, and lead. + +

+

“‘“Javan, Tubal, and Meshech were your traders. They traded the persons of men and vessels of bronze for your merchandise. + +

+

“‘“They of the house of Togarmah traded for your wares with horses, war horses, and mules. + +

+

“‘“The men of Dedan traded with you. Many islands were the market of your hand. They brought you horns of ivory and ebony in exchange. + +

+

“‘“Syria was your merchant by reason of the multitude of your handiworks. They traded for your wares with emeralds, purple, embroidered work, fine linen, coral, and rubies. + +

+

“‘“Judah and the land of Israel were your traders. They traded wheat of Minnith, confections, honey, oil, and balm for your merchandise. + +

+

“‘“Damascus was your merchant for the multitude of your handiworks by reason of the multitude of all kinds of riches, with the wine of Helbon, and white wool. + +

+

“‘“Vedan and Javan traded with yarn for your wares; wrought iron, cassia, and calamus were among your merchandise. + +

+

“‘“Dedan was your merchant in precious saddle blankets for riding. + +

+

“‘“Arabia and all the princes of Kedar were your favorite dealers in lambs, rams, and goats. In these, they were your merchants. + +

+

“‘“The traders of Sheba and Raamah were your traders. They traded for your wares with the best of all spices, all precious stones, and gold. + +

+

“‘“Haran, Canneh, Eden, the traders of Sheba, Asshur and Chilmad, were your traders. + +These were your traders in choice wares, in wrappings of blue and embroidered work, and in cedar chests of rich clothing bound with cords, among your merchandise. + +

+“‘“The ships of Tarshish were your caravans for your merchandise. + +You were replenished + +and made very glorious in the heart of the seas. + + +Your rowers have brought you into great waters. + +The east wind has broken you in the heart of the seas. + + +Your riches, your wares, your merchandise, + +your mariners, your pilots, your repairers of ship seams, + +the dealers in your merchandise, + +and all your men of war who are in you, + +with all your company which is among you, + +will fall into the heart of the seas in the day of your ruin. + + +At the sound of the cry of your pilots, + +the pasture lands will shake. + + +All who handle the oars, + +the mariners and all the pilots of the sea, + +will come down from their ships. + +They will stand on the land, + + +and will cause their voice to be heard over you, + +and will cry bitterly. + +They will cast up dust on their heads. + +They will wallow in the ashes. + + +They will make themselves bald for you, + +and clothe themselves with sackcloth. + +They will weep for you in bitterness of soul, + +with bitter mourning. + + +In their wailing they will take up a lamentation for you, + +and lament over you, saying, + +Who is there like Tyre, + +like her who is brought to silence in the middle of the sea?’ + + +When your wares came from the seas, + +you filled many peoples. + +You enriched the kings of the earth + +with the multitude of your riches and of your merchandise. + + +In the time that you were broken by the seas, + +in the depths of the waters, + +your merchandise and all your company fell within you. + + +All the inhabitants of the islands are astonished at you, + +and their kings are horribly afraid. + +They are troubled in their face. + + +The merchants among the peoples hiss at you. + +You have come to a terrible end, + +and you will be no more.”’” + + + + +

Yahweh’s word came again to me, saying, + +Son of man, tell the prince of Tyre, ‘The Lord Yahweh says: +

+Because your heart is lifted up, + +and you have said, ‘I am a god, + +I sit in the seat of God, + +in the middle of the seas;’ + +yet you are man, + +and no god, + +though you set your heart as the heart of a god— + + +behold, you are wiser than Daniel. + +There is no secret that is hidden from you. + + +By your wisdom and by your understanding you have gotten yourself riches, + +and have gotten gold and silver into your treasuries. + + +By your great wisdom + +and by your trading you have increased your riches, + +and your heart is lifted up because of your riches—” + + +

“‘therefore the Lord Yahweh says: +

+Because you have set your heart as the heart of God, + + +therefore, behold, I will bring strangers on you, + +the terrible of the nations. + +They will draw their swords against the beauty of your wisdom. + +They will defile your brightness. + + +They will bring you down to the pit. + +You will die the death of those who are slain + +in the heart of the seas. + + +Will you yet say before him who kills you, ‘I am God’? + +But you are man, and not God, + +in the hand of him who wounds you. + + +You will die the death of the uncircumcised + +by the hand of strangers; + +for I have spoken it,” says the Lord Yahweh.’” + + + +

Moreover Yahweh’s word came to me, saying, + +Son of man, take up a lamentation over the king of Tyre, and tell him, ‘The Lord Yahweh says: +

+You were the seal of full measure, + +full of wisdom, + +and perfect in beauty. + + +You were in Eden, + +the garden of God. + +Every precious stone adorned you: + +ruby, topaz, emerald, + +chrysolite, onyx, jasper, + +sapphire,28:13 +or, lapis lazuli + turquoise, and beryl. + +Gold work of tambourines + +and of pipes was in you. + +They were prepared in the day that you were created. + + +You were the anointed cherub who covers. + +Then I set you up on the holy mountain of God. + +You have walked up and down in the middle of the stones of fire. + + +You were perfect in your ways from the day that you were created, + +until unrighteousness was found in you. + + +By the abundance of your commerce, your insides were filled with violence, + +and you have sinned. + +Therefore I have cast you as profane out of God’s mountain. + +I have destroyed you, covering cherub, + +from the middle of the stones of fire. + + +Your heart was lifted up because of your beauty. + +You have corrupted your wisdom by reason of your splendor. + +I have cast you to the ground. + +I have laid you before kings, + +that they may see you. + + +By the multitude of your iniquities, + +in the unrighteousness of your commerce, + +you have profaned your sanctuaries. + +Therefore I have brought out a fire from the middle of you. + +It has devoured you. + +I have turned you to ashes on the earth + +in the sight of all those who see you. + + +All those who know you among the peoples will be astonished at you. + +You have become a terror, + +and you will exist no more.”’” + + + +

Yahweh’s word came to me, saying, + +Son of man, set your face toward Sidon, and prophesy against it, + +and say, ‘The Lord Yahweh says: +

+Behold, I am against you, Sidon. + +I will be glorified among you. + +Then they will know that I am Yahweh, + +when I have executed judgments in her, + +and am sanctified in her. + + +For I will send pestilence into her, + +and blood into her streets. + +The wounded will fall within her, + +with the sword on her on every side. + +Then they will know that I am Yahweh. + + +

“‘“There will no longer be a pricking brier to the house of Israel, nor a hurting thorn of any that are around them that scorned them. Then they will know that I am the Lord Yahweh.” + +

+

“‘The Lord Yahweh says: “When I have gathered the house of Israel from the peoples among whom they are scattered, and am shown as holy among them in the sight of the nations, then they will dwell in their own land which I gave to my servant Jacob. + +They will dwell in it securely. Yes, they will build houses, plant vineyards, and will dwell securely when I have executed judgments on all those around them who have treated them with contempt. Then they will know that I am Yahweh their God.”’” + +

+ + +

In the tenth year, in the tenth month, on the twelfth day of the month, Yahweh’s word came to me, saying, + +Son of man, set your face against Pharaoh king of Egypt, and prophesy against him and against all Egypt. + +Speak and say, ‘The Lord Yahweh says: +

+Behold, I am against you, Pharaoh king of Egypt, + +the great monster that lies in the middle of his rivers, + +that has said, ‘My river is my own, + +and I have made it for myself.’ + + +I will put hooks in your jaws, + +and I will make the fish of your rivers stick to your scales. + +I will bring you up out of the middle of your rivers, + +with all the fish of your rivers which stick to your scales. + + +I’ll cast you out into the wilderness, + +you and all the fish of your rivers. + +You’ll fall on the open field. + +You won’t be brought together or gathered. + +I have given you for food to the animals of the earth + +and to the birds of the sky. + + +

“‘“All the inhabitants of Egypt will know that I am Yahweh, because they have been a staff of reed to the house of Israel. + +When they took hold of you by your hand, you broke and tore all their shoulders. When they leaned on you, you broke and paralyzed all of their thighs.” + +

+

“‘Therefore the Lord Yahweh says: “Behold, I will bring a sword on you, and will cut off man and animal from you. + +The land of Egypt will be a desolation and a waste. Then they will know that I am Yahweh. +

+

“‘“Because he has said, ‘The river is mine, and I have made it,’ + +therefore, behold, I am against you and against your rivers. I will make the land of Egypt an utter waste and desolation, from the tower of Seveneh even to the border of Ethiopia. + +No foot of man will pass through it, nor will any animal foot pass through it. It won’t be inhabited for forty years. + +I will make the land of Egypt a desolation in the middle of the countries that are desolate. Her cities among the cities that are laid waste will be a desolation forty years. I will scatter the Egyptians among the nations, and will disperse them through the countries.” + +

+

“‘For the Lord Yahweh says: “At the end of forty years I will gather the Egyptians from the peoples where they were scattered. + +I will reverse the captivity of Egypt, and will cause them to return into the land of Pathros, into the land of their birth. There they will be a lowly kingdom. + +It will be the lowest of the kingdoms. It won’t lift itself up above the nations any more. I will diminish them so that they will no longer rule over the nations. + +It will no longer be the confidence of the house of Israel, bringing iniquity to memory, when they turn to look after them. Then they will know that I am the Lord Yahweh.”’” + +

+ +

It came to pass in the twenty-seventh year, in the first month, in the first day of the month, Yahweh’s word came to me, saying, + +Son of man, Nebuchadnezzar king of Babylon caused his army to serve a great service against Tyre. Every head was made bald, and every shoulder was worn; yet he had no wages, nor did his army, from Tyre, for the service that he had served against it. + +Therefore the Lord Yahweh says: ‘Behold, I will give the land of Egypt to Nebuchadnezzar king of Babylon. He will carry off her multitude, take her plunder, and take her prey. That will be the wages for his army. + +I have given him the land of Egypt as his payment for which he served, because they worked for me,’ says the Lord Yahweh. + +

+

In that day I will cause a horn to sprout for the house of Israel, and I will open your mouth among them. Then they will know that I am Yahweh.” + +

+ + +

Yahweh’s word came again to me, saying, + +Son of man, prophesy, and say, ‘The Lord Yahweh says: +

+Wail, ‘Alas for the day!’ + + +For the day is near, + +even Yahweh’s day is near. + +It will be a day of clouds, + +a time of the nations. + + +A sword will come on Egypt, + +and anguish will be in Ethiopia, + +when the slain fall in Egypt. + +They take away her multitude, + +and her foundations are broken down. + + +

“‘“Ethiopia, Put, Lud, all the mixed people, Cub, and the children of the land that is allied with them, will fall with them by the sword.” + +

+

“‘Yahweh says: +

+They also who uphold Egypt will fall. + +The pride of her power will come down. + +They will fall by the sword in it from the tower of Seveneh,” + +says the Lord Yahweh. + + +They will be desolate in the middle of the countries that are desolate. + +Her cities will be among the cities that are wasted. + + +They will know that I am Yahweh + +when I have set a fire in Egypt, + +and all her helpers are destroyed. + + +

“‘“In that day messengers will go out from before me in ships to make the careless Ethiopians afraid. There will be anguish on them, as in the day of Egypt; for, behold, it comes.” + +

+

“‘The Lord Yahweh says: +

+I will also make the multitude of Egypt to cease, + +by the hand of Nebuchadnezzar king of Babylon. + + +He and his people with him, + +the terrible of the nations, + +will be brought in to destroy the land. + +They will draw their swords against Egypt, + +and fill the land with the slain. + + +I will make the rivers dry, + +and will sell the land into the hand of evil men. + +I will make the land desolate, + +and all that is therein, + +by the hand of foreigners. + +I, Yahweh, have spoken it.” + + +

“‘The Lord Yahweh says: +

+I will also destroy the idols, + +and I will cause the images to cease from Memphis. + +There will be no more a prince from the land of Egypt. + +I will put a fear in the land of Egypt. + + +I will make Pathros desolate, + +and will set a fire in Zoan, + +and will execute judgments on No. + + +I will pour my wrath on Sin, + +the stronghold of Egypt. + +I will cut off the multitude of No. + + +I will set a fire in Egypt + +Sin will be in great anguish. + +No will be broken up. + +Memphis will have adversaries in the daytime. + + +The young men of Aven and of Pibeseth will fall by the sword. + +They will go into captivity. + + +At Tehaphnehes also the day will withdraw itself, + +when I break the yokes of Egypt there. + +The pride of her power will cease in her. + +As for her, a cloud will cover her, + +and her daughters will go into captivity. + + +Thus I will execute judgments on Egypt. + +Then they will know that I am Yahweh.”’” + + + +

In the eleventh year, in the first month, in the seventh day of the month, Yahweh’s word came to me, saying, + +Son of man, I have broken the arm of Pharaoh king of Egypt. Behold, it has not been bound up, to apply medicines, to put a bandage to bind it, that it may become strong to hold the sword. + +Therefore the Lord Yahweh says: ‘Behold, I am against Pharaoh king of Egypt, and will break his arms, the strong arm, and that which was broken. I will cause the sword to fall out of his hand. + +I will scatter the Egyptians among the nations, and will disperse them through the countries. + +I will strengthen the arms of the king of Babylon, and put my sword in his hand; but I will break the arms of Pharaoh, and he will groan before the king of Babylon with the groaning of a mortally wounded man. + +I will hold up the arms of the king of Babylon, but the arms of Pharaoh will fall down. Then they will know that I am Yahweh when I put my sword into the hand of the king of Babylon, and he stretches it out on the land of Egypt. + +I will scatter the Egyptians among the nations and disperse them through the countries. Then they will know that I am Yahweh.’” + +

+ + +

In the eleventh year, in the third month, in the first day of the month, Yahweh’s word came to me, saying, + +Son of man, tell Pharaoh king of Egypt and his multitude: +

+Whom are you like in your greatness? + + +Behold, the Assyrian was a cedar in Lebanon + +with beautiful branches, + +and with a forest-like shade, + +of high stature; + +and its top was among the thick boughs. + + +The waters nourished it. + +The deep made it to grow. + +Its rivers ran all around its plantation. + +It sent out its channels to all the trees of the field. + + +Therefore its stature was exalted above all the trees of the field; + +and its boughs were multiplied. + +Its branches became long by reason of many waters, + +when it spread them out. + + +All the birds of the sky made their nests in its boughs. + +Under its branches, all the animals of the field gave birth to their young. + +All great nations lived under its shadow. + + +Thus it was beautiful in its greatness, + +in the length of its branches; + +for its root was by many waters. + + +The cedars in the garden of God could not hide it. + +The cypress trees were not like its branches. + +The pine trees were not like its branches; + +nor was any tree in the garden of God like it in its beauty. + + +I made it beautiful by the multitude of its branches, + +so that all the trees of Eden, + +that were in the garden of God, envied it.’ + + +

Therefore thus said the Lord Yahweh: ‘Because he is exalted in stature, and he has set his top among the thick branches, and his heart is lifted up in his height, + +I will deliver him into the hand of the mighty one of the nations. He will surely deal with him. I have driven him out for his wickedness. + +Foreigners, the tyrants of the nations, have cut him off and have left him. His branches have fallen on the mountains and in all the valleys, and his boughs are broken by all the watercourses of the land. All the peoples of the earth have gone down from his shadow and have left him. + +All the birds of the sky will dwell on his ruin, and all the animals of the field will be on his branches, + +to the end that none of all the trees by the waters exalt themselves in their stature, and don’t set their top among the thick boughs. Their mighty ones don’t stand up on their height, even all who drink water; for they are all delivered to death, to the lower parts of the earth, among the children of men, with those who go down to the pit.’ + +

+

The Lord Yahweh says: ‘In the day when he went down to Sheol,31:15 +Sheol is the place of the dead. I caused a mourning. I covered the deep for him, and I restrained its rivers. The great waters were stopped. I caused Lebanon to mourn for him, and all the trees of the field fainted for him. + +I made the nations to shake at the sound of his fall, when I cast him down to Sheol31:16 +Sheol is the place of the dead. with those who descend into the pit. All the trees of Eden, the choice and best of Lebanon, all that drink water, were comforted in the lower parts of the earth. + +They also went down into Sheol with him to those who are slain by the sword; yes, those who were his arm, who lived under his shadow in the middle of the nations. + +

+

“‘To whom are you thus like in glory and in greatness among the trees of Eden? Yet you will be brought down with the trees of Eden to the lower parts of the earth. You will lie in the middle of the uncircumcised, with those who are slain by the sword. +

+

“‘This is Pharaoh and all his multitude,’ says the Lord Yahweh.” + +

+ + +

In the twelfth year, in the twelfth month, in the first day of the month, Yahweh’s word came to me, saying, + +Son of man, take up a lamentation over Pharaoh king of Egypt, and tell him, +

+You were likened to a young lion of the nations; + +yet you are as a monster in the seas. + +You broke out with your rivers, + +and troubled the waters with your feet, + +and fouled their rivers.’” + + +The Lord Yahweh says: + +I will spread out my net on you with a company of many peoples. + +They will bring you up in my net. + + +I will leave you on the land. + +I will cast you out on the open field, + +and will cause all the birds of the sky to settle on you. + +I will satisfy the animals of the whole earth with you. + + +I will lay your flesh on the mountains, + +and fill the valleys with your height. + + +I will also water the land in which you swim with your blood, + +even to the mountains. + +The watercourses will be full of you. + + +When I extinguish you, I will cover the heavens + +and make its stars dark. + +I will cover the sun with a cloud, + +and the moon won’t give its light. + + +I will make all the bright lights of the sky dark over you, + +and set darkness on your land,” says the Lord Yahweh. + + +I will also trouble the hearts of many peoples, + +when I bring your destruction among the nations, + +into the countries which you have not known. + + +Yes, I will make many peoples amazed at you, + +and their kings will be horribly afraid for you, + +when I brandish my sword before them. + +They will tremble at every moment, + +every man for his own life, + +in the day of your fall.” + + +For the Lord Yahweh says: + +The sword of the king of Babylon will come on you. + + +I will cause your multitude to fall by the swords of the mighty. + +They are all the ruthless of the nations. + +They will bring the pride of Egypt to nothing, + +and all its multitude will be destroyed. + + +I will destroy also all its animals from beside many waters. + +The foot of man won’t trouble them any more, + +nor will the hoofs of animals trouble them. + + +Then I will make their waters clear, + +and cause their rivers to run like oil,” + +says the Lord Yahweh. + + +When I make the land of Egypt desolate and waste, + +a land destitute of that of which it was full, + +when I strike all those who dwell therein, + +then they will know that I am Yahweh. + + +

“‘“This is the lamentation with which they will lament. The daughters of the nations will lament with this. They will lament with it over Egypt, and over all her multitude,” says the Lord Yahweh.’” + +

+ +

Also in the twelfth year, in the fifteenth day of the month, Yahweh’s word came to me, saying, + +Son of man, wail for the multitude of Egypt, and cast them down, even her and the daughters of the famous nations, to the lower parts of the earth, with those who go down into the pit. + +Whom do you pass in beauty? Go down, and be laid with the uncircumcised. + +They will fall among those who are slain by the sword. She is delivered to the sword. Draw her away with all her multitudes. + +The strong among the mighty will speak to him out of the middle of Sheol32:21 +Sheol is the place of the dead. with those who help him. They have gone down. The uncircumcised lie still, slain by the sword. + +

+

“Asshur is there with all her company. Her graves are all around her. All of them are slain, fallen by the sword, + +whose graves are set in the uttermost parts of the pit, and her company is around her grave, all of them slain, fallen by the sword, who caused terror in the land of the living. + +

+

There is Elam and all her multitude around her grave; all of them slain, fallen by the sword, who have gone down uncircumcised into the lower parts of the earth, who caused their terror in the land of the living, and have borne their shame with those who go down to the pit. + +They have made Elam a bed among the slain with all her multitude. Her graves are around her, all of them uncircumcised, slain by the sword; for their terror was caused in the land of the living, and they have borne their shame with those who go down to the pit. He is put among those who are slain. + +

+

There is Meshech, Tubal, and all their multitude. Their graves are around them, all of them uncircumcised, slain by the sword; for they caused their terror in the land of the living. + +They will not lie with the mighty who are fallen of the uncircumcised, who have gone down to Sheol with their weapons of war and have laid their swords under their heads. Their iniquities are on their bones; for they were the terror of the mighty in the land of the living. + +

+

“But you will be broken among the uncircumcised, and will lie with those who are slain by the sword. + +

+

There is Edom, her kings, and all her princes, who in their might are laid with those who are slain by the sword. They will lie with the uncircumcised, and with those who go down to the pit. + +

+

There are the princes of the north, all of them, and all the Sidonians, who have gone down with the slain. They are put to shame in the terror which they caused by their might. They lie uncircumcised with those who are slain by the sword, and bear their shame with those who go down to the pit. + +

+

Pharaoh will see them and will be comforted over all his multitude, even Pharaoh and all his army, slain by the sword,” says the Lord Yahweh. + +For I have put his terror in the land of the living. He will be laid among the uncircumcised, with those who are slain by the sword, even Pharaoh and all his multitude,” says the Lord Yahweh. + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, speak to the children of your people, and tell them, ‘When I bring the sword on a land, and the people of the land take a man from among them, and set him for their watchman, + +if, when he sees the sword come on the land, he blows the trumpet and warns the people, + +then whoever hears the sound of the trumpet and doesn’t heed the warning, if the sword comes and takes him away, his blood will be on his own head. + +He heard the sound of the trumpet and didn’t take warning. His blood will be on him; whereas if he had heeded the warning, he would have delivered his soul. + +But if the watchman sees the sword come and doesn’t blow the trumpet, and the people aren’t warned, and the sword comes and takes any person from among them, he is taken away in his iniquity, but his blood I will require at the watchman’s hand.’ + +

+

So you, son of man, I have set you a watchman to the house of Israel. Therefore hear the word from my mouth, and give them warnings from me. + +When I tell the wicked, ‘O wicked man, you will surely die,’ and you don’t speak to warn the wicked from his way, that wicked man will die in his iniquity, but I will require his blood at your hand. + +Nevertheless, if you warn the wicked of his way to turn from it, and he doesn’t turn from his way; he will die in his iniquity, but you have delivered your soul. + +

+

You, son of man, tell the house of Israel: ‘You say this, “Our transgressions and our sins are on us, and we pine away in them. How then can we live?”’ + +Tell them, ‘“As I live,” says the Lord Yahweh, “I have no pleasure in the death of the wicked, but that the wicked turn from his way and live. Turn, turn from your evil ways! For why will you die, house of Israel?”’ + +

+

You, son of man, tell the children of your people, ‘The righteousness of the righteous will not deliver him in the day of his disobedience. And as for the wickedness of the wicked, he will not fall by it in the day that he turns from his wickedness; neither will he who is righteous be able to live by it in the day that he sins. + +When I tell the righteous that he will surely live, if he trusts in his righteousness and commits iniquity, none of his righteous deeds will be remembered; but he will die in his iniquity that he has committed. + +Again, when I say to the wicked, “You will surely die,” if he turns from his sin and does that which is lawful and right, + +if the wicked restore the pledge, give again that which he had taken by robbery, walk in the statutes of life, committing no iniquity, he will surely live. He will not die. + +None of his sins that he has committed will be remembered against him. He has done that which is lawful and right. He will surely live. + +

+

“‘Yet the children of your people say, “The way of the Lord is not fair;” but as for them, their way is not fair. + +When the righteous turns from his righteousness and commits iniquity, he will even die therein. + +When the wicked turns from his wickedness and does that which is lawful and right, he will live by it. + +Yet you say, “The way of the Lord is not fair.” House of Israel, I will judge every one of you after his ways.’” + +

+ +

In the twelfth year of our captivity, in the tenth month, in the fifth day of the month, one who had escaped out of Jerusalem came to me, saying, “The city has been defeated!” + +Now Yahweh’s hand had been on me in the evening, before he who had escaped came; and he had opened my mouth until he came to me in the morning; and my mouth was opened, and I was no longer mute. + +

+

Yahweh’s word came to me, saying, + +Son of man, those who inhabit the waste places in 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.’ + +Therefore tell them, ‘The Lord Yahweh says: “You eat with the blood, and lift up your eyes to your idols, and shed blood. So should you possess the land? + +You stand on your sword, you work abomination, and every one of you defiles his neighbor’s wife. So should you possess the land?”’ + +

+

You shall tell them, ‘The Lord Yahweh says: “As I live, surely those who are in the waste places will fall by the sword. I will give whoever is in the open field to the animals to be devoured, and those who are in the strongholds and in the caves will die of the pestilence. + +I will make the land a desolation and an astonishment. The pride of her power will cease. The mountains of Israel will be desolate, so that no one will pass through. + +Then they will know that I am Yahweh, when I have made the land a desolation and an astonishment because of all their abominations which they have committed.”’ + +

+

As for you, son of man, the children of your people talk about you by the walls and in the doors of the houses, and speak to one another, everyone to his brother, saying, ‘Please come and hear what the word is that comes out from Yahweh.’ + +They come to you as the people come, and they sit before you as my people, and they hear your words, but don’t do them; for with their mouth they show much love, but their heart goes after their gain. + +Behold, you are to them as a very lovely song of one who has a pleasant voice, and can play well on an instrument; for they hear your words, but they don’t do them. + +

+

When this comes to passbehold, it comesthen they will know that a prophet has been among them.” + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, prophesy against the shepherds of Israel. Prophesy, and tell them, even the shepherds, ‘The Lord Yahweh says: “Woe to the shepherds of Israel who feed themselves! Shouldn’t the shepherds feed the sheep? + +You eat the fat. You clothe yourself with the wool. You kill the fatlings, but you don’t feed the sheep. + +You haven’t strengthened the diseased. You haven’t healed that which was sick. You haven’t bound up that which was broken. You haven’t brought back that which was driven away. You haven’t sought that which was lost, but you have ruled over them with force and with rigor. + +They were scattered, because there was no shepherd. They became food to all the animals of the field, and were scattered. + +My sheep wandered through all the mountains and on every high hill. Yes, my sheep were scattered on all the surface of the earth. There was no one who searched or sought.” + +

+

“‘Therefore, you shepherds, hear Yahweh’s word: + +As I live,” says the Lord Yahweh, “surely because my sheep became a prey, and my sheep became food to all the animals of the field, because there was no shepherd, and my shepherds didn’t search for my sheep, but the shepherds fed themselves, and didn’t feed my sheep, + +therefore, you shepherds, hear Yahweh’s word!” + +The Lord Yahweh says: “Behold, I am against the shepherds. I will require my sheep at their hand, and cause them to cease from feeding the sheep. The shepherds won’t feed themselves any more. I will deliver my sheep from their mouth, that they may not be food for them.” + +

+

“‘For the Lord Yahweh says: “Behold, I myself, even I, will search for my sheep, and will seek them out. + +As a shepherd seeks out his flock in the day that he is among his sheep that are scattered abroad, so I will seek out my sheep. I will deliver them out of all places where they have been scattered in the cloudy and dark day. + +I will bring them out from the peoples, and gather them from the countries, and will bring them into their own land. I will feed them on the mountains of Israel, by the watercourses, and in all the inhabited places of the country. + +I will feed them with good pasture, and their fold will be on the mountains of the height of Israel. There they will lie down in a good fold. They will feed on rich pasture on the mountains of Israel. + +I myself will be the shepherd of my sheep, and I will cause them to lie down,” says the Lord Yahweh. + +I will seek that which was lost, and will bring back 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 in justice.”’ + +

+

“As for you, O my flock, the Lord Yahweh says: ‘Behold, I judge between sheep and sheep, the rams and the male goats. + +Does it seem a small thing to you to have fed on the good pasture, but you must tread down with your feet the residue of your pasture? And to have drunk of the clear waters, but must you foul the residue with your feet? + +As for my sheep, they eat that which you have trodden with your feet, and they drink that which you have fouled with your feet.’ + +

+

Therefore the Lord Yahweh says to them: ‘Behold, I, even I, will judge between the fat sheep and the lean sheep. + +Because you thrust with side and with shoulder, and push all the diseased with your horns, until you have scattered them abroad, + +therefore I will save my flock, and they will no more be a prey. I will judge between sheep and sheep. + +I will set up one shepherd over them, and he will feed them, even my servant David. He will feed them, and he will be their shepherd. + +I, Yahweh, will be their God, and my servant David prince among them. I, Yahweh, have spoken it. + +

+

“‘I will make with them a covenant of peace, and will cause evil animals to cease out of the land. They will dwell securely in the wilderness and sleep in the woods. + +I will make them and the places around my hill a blessing. I will cause the shower to come down in its season. There will be showers of blessing. + +The tree of the field will yield its fruit, and the earth will yield its increase, and they will be secure in their land. Then they will know that I am Yahweh, when I have broken the bars of their yoke, and have delivered them out of the hand of those who made slaves of them. + +They will no more be a prey to the nations, neither will the animals of the earth devour them; but they will dwell securely, and no one will make them afraid. + +I will raise up to them a plantation for renown, and they will no more be consumed with famine in the land, and not bear the shame of the nations any more. + +They will know that I, Yahweh, their God am with them, and that they, the house of Israel, are my people, says the Lord Yahweh. + +You my sheep, the sheep of my pasture, are men, and I am your God,’ says the Lord Yahweh.” + +

+ + +

Moreover Yahweh’s word came to me, saying, + +Son of man, set your face against Mount Seir, and prophesy against it, + +and tell it, ‘The Lord Yahweh says: “Behold, I am against you, Mount Seir, and I will stretch out my hand against you. I will make you a desolation and an astonishment. + +I will lay your cities waste, and you will be desolate. Then you will know that I am Yahweh. + +

+

“‘“Because you have had a perpetual hostility, and have given over the children of Israel to the power of the sword in the time of their calamity, in the time of the iniquity of the end, + +therefore, as I live,” says the Lord Yahweh, “I will prepare you for blood, and blood will pursue you. Since you have not hated blood, therefore blood will pursue you. + +Thus I will make Mount Seir an astonishment and a desolation. I will cut off from it him who passes through and him who returns. + +I will fill its mountains with its slain. The slain with the sword will fall in your hills and in your valleys and in all your watercourses. + +I will make you a perpetual desolation, and your cities will not be inhabited. Then you will know that I am Yahweh. + +

+

“‘“Because you have said, ‘These two nations and these two countries will be mine, and we will possess it,’ although Yahweh was there, + +therefore, as I live,” says the Lord Yahweh, “I will do according to your anger, and according to your envy which you have shown out of your hatred against them; and I will make myself known among them when I judge you. + +You will know that I, Yahweh, have heard all your insults which you have spoken against the mountains of Israel, saying, ‘They have been laid desolate. They have been given to us to devour.’ + +You have magnified yourselves against me with your mouth, and have multiplied your words against me. I have heard it.” + +The Lord Yahweh says: “When the whole earth rejoices, I will make you desolate. + +As you rejoiced over the inheritance of the house of Israel because it was desolate, so I will do to you. You will be desolate, Mount Seir, and all Edom, even all of it. Then they will know that I am Yahweh.’” + +

+ + +

You, son of man, prophesy to the mountains of Israel, and say, “You mountains of Israel, hear Yahweh’s word. + +The Lord Yahweh says: ‘Because the enemy has said against you, “Aha!” and, “The ancient high places are ours in possession!”’ + +therefore prophesy, and say, ‘The Lord Yahweh says: “Because, even because they have made you desolate, and swallowed you up on every side, that you might be a possession to the residue of the nations, and you are taken up in the lips of talkers, and the evil report of the people;” + +therefore, you mountains of Israel, hear the word of the Lord Yahweh: The Lord Yahweh says to the mountains and to the hills, to the watercourses and to the valleys, to the desolate wastes and to the cities that are forsaken, which have become a prey and derision to the residue of the nations that are all around; + +therefore the Lord Yahweh says: “Surely in the fire of my jealousy I have spoken against the residue of the nations, and against all Edom, that have appointed my land to themselves for a possession with the joy of all their heart, with despite of soul, to cast it out for a prey.”’ + +Therefore prophesy concerning the land of Israel, and tell the mountains, the hills, the watercourses and the valleys, ‘The Lord Yahweh says: “Behold, I have spoken in my jealousy and in my wrath, because you have borne the shame of the nations.” + +Therefore the Lord Yahweh says: “I have sworn, ‘Surely the nations that are around you will bear their shame.’ + +

+

“‘“But you, mountains of Israel, you shall shoot out your branches and yield your fruit to my people Israel; for they are at hand to come. + +For, behold, I am for you, and I will come to you, and you will be tilled and sown. + +I will multiply men on you, all the house of Israel, even all of it. The cities will be inhabited and the waste places will be built. + +I will multiply man and animal on you. They will increase and be fruitful. I will cause you to be inhabited as you were before, and you will do better than at your beginnings. Then you will know that I am Yahweh. + +Yes, I will cause men to walk on you, even my people Israel. They will possess you, and you will be their inheritance, and you will never again bereave them of their children.” + +

+

“‘The Lord Yahweh says: “Because they say to you, ‘You are a devourer of men, and have been a bereaver of your nation;’ + +therefore you shall devour men no more, and not bereave your nation any more,” says the Lord Yahweh. + +I won’t let you hear the shame of the nations any more. You won’t bear the reproach of the peoples any more, and you won’t cause your nation to stumble any more,” says the Lord Yahweh.’” + +

+

Moreover Yahweh’s word came to me, saying, + +Son of man, when the house of Israel lived in their own land, they defiled it by their ways and by their deeds. Their way before me was as the uncleanness of a woman in her impurity. + +Therefore I poured out my wrath on them for the blood which they had poured out on the land, and because they had defiled it with their idols. + +I scattered them among the nations, and they were dispersed through the countries. I judged them according to their way and according to their deeds. + +When they came to the nations where they went, they profaned my holy name, in that men said of them, ‘These are Yahweh’s people, and have left his land.’ + +But I had respect for my holy name, which the house of Israel had profaned among the nations where they went. + +

+

Therefore tell the house of Israel, ‘The Lord Yahweh says: “I don’t do this for your sake, house of Israel, but for my holy name, which you have profaned among the nations where you went. + +I will sanctify my great name, which has been profaned among the nations, which you have profaned among them. Then the nations will know that I am Yahweh,” says the Lord Yahweh, “when I am proven holy in you before their eyes. + +

+

“‘“For I will take you from among the nations and gather you out of all the countries, and will bring you into your own land. + +I will sprinkle clean water on you, and you will be clean. I will cleanse you from all your filthiness and from all your idols. + +I will also give you a new heart, and I will put a new spirit within you. I will take away the stony heart out of your flesh, and I will give you a heart of flesh. + +I will put my Spirit within you, and cause you to walk in my statutes. You will keep my ordinances and do them. + +You will dwell in the land that I gave to your fathers. You will be my people, and I will be your God. + +I will save you from all your uncleanness. I will call for the grain and will multiply it, and lay no famine on you. + +I will multiply the fruit of the tree and the increase of the field, that you may receive no more the reproach of famine among the nations. + +

+

“‘“Then you will remember your evil ways, and your deeds that were not good; and you will loathe yourselves in your own sight for your iniquities and for your abominations. + +I don’t do this for your sake,” says the Lord Yahweh. “Let it be known to you. Be ashamed and confounded for your ways, house of Israel.” + +

+

“‘The Lord Yahweh says: “In the day that I cleanse you from all your iniquities, I will cause the cities to be inhabited and the waste places will be built. + +The land that was desolate will be tilled instead of being a desolation in the sight of all who passed by. + +They will say, ‘This land that was desolate has become like the garden of Eden. The waste, desolate, and ruined cities are fortified and inhabited.’ + +Then the nations that are left around you will know that I, Yahweh, have built the ruined places and planted that which was desolate. I, Yahweh, have spoken it, and I will do it.” + +

+

“‘The Lord Yahweh says: “For this, moreover, I will be inquired of by the house of Israel, to do it for them: I will increase them with men like a flock. + +As the flock for sacrifice, as the flock of Jerusalem in her appointed feasts, so the waste cities will be filled with flocks of men. Then they will know that I am Yahweh.’” + +

+ + +

Yahweh’s hand was on me, and he brought me out in Yahweh’s Spirit, and set me down in the middle of the valley; and it was full of bones. + +He caused me to pass by them all around; and behold, there were very many in the open valley, and behold, they were very dry. + +He said to me, “Son of man, can these bones live?” +

+

I answered, “Lord Yahweh, you know.” + +

+

Again he said to me, “Prophesy over these bones, and tell them, ‘You dry bones, hear Yahweh’s word. + +The Lord Yahweh says to these bones: “Behold, I will cause breath to enter into you, and you will live. + +I will lay sinews on you, and will bring up flesh on you, and cover you with skin, and put breath in you, and you will live. Then you will know that I am Yahweh.”’” + +

+

So I prophesied as I was commanded. As I prophesied, there was a noise, and behold, there was an earthquake. Then the bones came together, bone to its bone. + +I saw, and, behold, there were sinews on them, and flesh came up, and skin covered them above; but there was no breath in them. + +

+

Then he said to me, “Prophesy to the wind, prophesy, son of man, and tell the wind, ‘The Lord Yahweh says: “Come from the four winds, breath, and breathe on these slain, that they may live.”’” + +

+

So I prophesied as he commanded me, and the breath came into them, and they lived, and stood up on their feet, an exceedingly great army. + +

+

Then he said to me, “Son of man, these bones are the whole house of Israel. Behold, they say, ‘Our bones are dried up, and our hope is lost. We are completely cut off.’ + +Therefore prophesy, and tell them, ‘The Lord Yahweh says: “Behold, I will open your graves, and cause you to come up out of your graves, my people; and I will bring you into the land of Israel. + +You will know that I am Yahweh, when I have opened your graves and caused you to come up out of your graves, my people. + +I will put my Spirit in you, and you will live. Then I will place you in your own land; and you will know that I, Yahweh, have spoken it and performed it,” says Yahweh.’” + +

+ +

Yahweh’s word came again to me, saying, + +You, son of man, take one stick and write on it, ‘For Judah, and for the children of Israel his companions.’ Then take another stick, and write on it, ‘For Joseph, the stick of Ephraim, and for all the house of Israel his companions.’ + +Then join them for yourself to one another into one stick, that they may become one in your hand. + +

+

When the children of your people speak to you, saying, ‘Won’t you show us what you mean by these?’ + +tell them, ‘The Lord Yahweh says: “Behold, I will take the stick of Joseph, which is in the hand of Ephraim, and the tribes of Israel his companions; and I will put them with it, with the stick of Judah, and make them one stick, and they will be one in my hand. + +The sticks on which you write will be in your hand before their eyes.”’ + +Say to them, ‘The Lord Yahweh says: “Behold, I will take the children of Israel from among the nations where they have gone, and will gather them on every side, and bring them into their own land. + +I will make them one nation in the land, on the mountains of Israel. One king will be king to them all. They will no longer be two nations. They won’t be divided into two kingdoms any more at all. + +They won’t 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 dwelling places in which they have sinned, and will cleanse them. So they will be my people, and I will be their God. + +

+

“‘“My servant David will be king over them. They all will have one shepherd. They will also walk in my ordinances and observe my statutes, and do them. + +They will dwell in the land that I have given to Jacob my servant, in which your fathers lived. They will dwell therein, they, and their children, and their children’s children, forever. David my servant will be their prince forever. + +Moreover I will make a covenant of peace with them. It will be an everlasting covenant with them. I will place them, multiply them, and will set my sanctuary among them forever more. + +My tent also will be with them. I will be their God, and they will be my people. + +The nations will know that I am Yahweh who sanctifies Israel, when my sanctuary is among them forever more.”’” + +

+ + +

Yahweh’s word came to me, saying, + +Son of man, set your face toward Gog, of the land of Magog, the prince of Rosh, Meshech, and Tubal, and prophesy against him, + +and say, ‘The Lord Yahweh says: “Behold, I am against you, Gog, prince of Rosh, Meshech, and Tubal. + +I will turn you around, and put hooks into your jaws, and I will bring you out, with all your army, horses and horsemen, all of them clothed in full armor, a great company with buckler and shield, all of them handling swords; + +Persia, Cush, and Put with them, all of them with shield and helmet; + +Gomer, and all his hordes; the house of Togarmah in the uttermost parts of the north, and all his hordes—even many peoples with you. + +

+

“‘“Be prepared, yes, prepare yourself, you, and all your companies who are assembled to you, and be a guard to them. + +After many days you will be visited. In the latter years you will come into the land that is brought back from the sword, that is gathered out of many peoples, on the mountains of Israel, which have been a continual waste; but it is brought out of the peoples and they will dwell securely, all of them. + +You will ascend. You will come like a storm. You will be like a cloud to cover the land, you and all your hordes, and many peoples with you.” + +

+

“‘The Lord Yahweh says: “It will happen in that day that things will come into your mind, and you will devise an evil plan. + +You will say, ‘I will go up to the land of unwalled villages. I will go to those who are at rest, who dwell securely, all of them dwelling without walls, and having neither bars nor gates, + +to take the plunder and to take prey; to turn your hand against the waste places that are inhabited, and against the people who are gathered out of the nations, who have gotten livestock and goods, who dwell in the middle of the earth.’ + +Sheba, Dedan, and the merchants of Tarshish, with all its young lions, will ask you, ‘Have you come to take the plunder? Have you assembled your company to take the prey, to carry away silver and gold, to take away livestock and goods, to take great plunder?’”’ + +

+

Therefore, son of man, prophesy, and tell Gog, ‘The Lord Yahweh says: “In that day when my people Israel dwells securely, will you not know it? + +You will come from your place out of the uttermost parts of the north, you, and many peoples with you, all of them riding on horses, a great company and a mighty army. + +You will come up against my people Israel as a cloud to cover the land. It will happen in the latter days that I will bring you against my land, that the nations may know me when I am sanctified in you, Gog, before their eyes.” + +

+

“‘The Lord Yahweh says: “Are you he of whom I spoke in old time by my servants the prophets of Israel, who prophesied in those days for years that I would bring you against them? + +It will happen in that day, when Gog comes against the land of Israel,” says the Lord Yahweh, “that my wrath will come up into my nostrils. + +For in my jealousy and in the fire of my wrath I have spoken. Surely in that day there will be a great shaking in the land of Israel, + +so that the fish of the sea, the birds of the sky, the animals of the field, all creeping things who creep on the earth, and all the men who are on the surface of the earth will shake at my presence. Then the mountains will be thrown down, the steep places will fall, and every wall will fall to the ground. + +I will call for a sword against him to all my mountains,” says the Lord Yahweh. “Every man’s sword will be against his brother. + +I will enter into judgment with him with pestilence and with blood. I will rain on him, on his hordes, and on the many peoples who are with him, torrential rains with great hailstones, fire, and sulfur. + +I will magnify myself and sanctify myself, and I will make myself known in the eyes of many nations. Then they will know that I am Yahweh.”’ + +

+ + +

You, son of man, prophesy against Gog, and say, ‘The Lord Yahweh says: “Behold, I am against you, Gog, prince of Rosh, Meshech, and Tubal. + +I will turn you around, will lead you on, and will cause you to come up from the uttermost parts of the north; and I will bring you onto the mountains of Israel. + +I will strike your bow out of your left hand, and will cause your arrows to fall out of your right hand. + +You will fall on the mountains of Israel, you, and all your hordes, and the peoples who are with you. I will give you to the ravenous birds of every sort and to the animals of the field to be devoured. + +You will fall on the open field, for I have spoken it,” says the Lord Yahweh. + +I will send a fire on Magog and on those who dwell securely in the islands. Then they will know that I am Yahweh. + +

+

“‘“I will make my holy name known among my people Israel. I won’t allow my holy name to be profaned any more. Then the nations will know that I am Yahweh, the Holy One in Israel. + +Behold, it comes, and it will be done,” says the Lord Yahweh. “This is the day about which I have spoken. + +

+

“‘“Those who dwell in the cities of Israel will go out and will make fires of the weapons and burn them, both the shields and the bucklers, the bows and the arrows, and the war clubs and the spears, and they will make fires with them for seven years; + +so that they will take no wood out of the field, and not cut down any out of the forests; for they will make fires with the weapons. They will plunder those who plundered them, and rob those who robbed them,” says the Lord Yahweh. + +

+

“‘“It will happen in that day, that I will give to Gog a place for burial in Israel, the valley of those who pass through on the east of the sea; and it will stop those who pass through. They will bury Gog and all his multitude there, and they will call itThe valley of Hamon Gog’. + +

+

“‘“The house of Israel will be burying them for seven months, that they may cleanse the land. + +Yes, all the people of the land will bury them; and they will become famous in the day that I will be glorified,” says the Lord Yahweh. + +

+

“‘“They will set apart men of continual employment who will pass through the land. Those who pass through will go with those who bury those who remain on the surface of the land, to cleanse it. After the end of seven months they will search. + +Those who search through the land will pass through; and when anyone sees a man’s bone, then he will set up a sign by it, until the undertakers have buried it in the valley of Hamon Gog. + +Hamonah will also be the name of a city. Thus they will cleanse the land.”’ + +

+

You, son of man, the Lord Yahweh says: ‘Speak to the birds of every sort, and to every animal of the field, “Assemble yourselves, and come; gather yourselves on every side to my sacrifice that I sacrifice for you, even a great sacrifice on the mountains of Israel, that you may eat meat and drink blood. + +You 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 bulls, all of them fatlings of Bashan. + +You shall eat fat until you are full, and drink blood until you are drunk, of my sacrifice which I have sacrificed for you. + +You shall be filled at my table with horses and charioteers, with mighty men, and with all men of war,” says the Lord Yahweh.’ + +

+

I will set my glory among the nations. Then all the nations will see my judgment that I have executed, and my hand that I have laid on them. + +So the house of Israel will know that I am Yahweh their God, from that day and forward. + +The nations will know that the house of Israel went into captivity for their iniquity, because they trespassed against me, and I hid my face from them; so I gave them into the hand of their adversaries, and they all fell by the sword. + +I did to them according to their uncleanness and according to their transgressions. I hid my face from them. + +

+

Therefore the Lord Yahweh says: ‘Now I will reverse the captivity of Jacob and have mercy on the whole house of Israel. I will be jealous for my holy name. + +They will forget their shame and all their trespasses by which they have trespassed against me, when they dwell securely in their land. No one will make them afraid + +when I have brought them back from the peoples, gathered them out of their enemies’ lands, and am shown holy among them in the sight of many nations. + +They will know that I am Yahweh their God, in that I caused them to go into captivity among the nations, and have gathered them to their own land. Then I will leave none of them captive any more. + +I won’t hide my face from them any more, for I have poured out my Spirit on the house of Israel,’ says the Lord Yahweh.” + +

+ + +

In the twenty-fifth year of our captivity, in the beginning of the year, in the tenth day of the month, in the fourteenth year after the city was struck, in the same day, Yahweh’s hand was on me, and he brought me there. + +In the visions of God he brought me into the land of Israel, and set me down on a very high mountain, on which was something like the frame of a city to the south. + +He brought me there; and, behold, there was a man whose appearance was like the appearance of bronze, with a line of flax in his hand and a measuring reed; and he stood in the gate. + +The man said to me, “Son of man, see with your eyes, and hear with your ears, and set your heart on all that I will show you; for you have been brought here so that I may show them to you. Declare all that you see to the house of Israel.” + +

+

Behold, there was a wall on the outside of the house all around, and in the man’s hand a measuring reed six cubits40:5 +A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A handbreadth is about 4.3 inches or 11 centimeters, so the long cubit described here would be about 22.3 inches or 57 centimeters long. Thus, a 6 long cubit measuring reed would have been about 3 yards 26.6 inches or about 3.42 meters long. long, of a cubit and a hand width each. So he measured the thickness of the building, one reed; and the height, one reed. + +

+

Then he came to the gate which looks toward the east, and went up its steps. He measured the threshold of the gate, one reed wide; and the other threshold, one reed wide. + +Every lodge was one reed long and one reed wide. Between the lodges was five cubits. The threshold of the gate by the porch of the gate toward the house was one reed. + +

+

He measured also the porch of the gate toward the house, one reed. + +Then he measured the porch of the gate, eight cubits; and its posts, two cubits; and the porch of the gate was toward the house. + +

+

The side rooms of the gate eastward were three on this side, and three on that side. The three of them were of one measure. The posts had one measure on this side and on that side. + +He measured the width of the opening of the gate, ten cubits; and the length of the gate, thirteen cubits; + +and a border before the lodges, one cubit on this side, and a border, one cubit on that side; and the side rooms, six cubits on this side, and six cubits on that side. + +He measured the gate from the roof of the one side room to the roof of the other, a width of twenty-five cubits, door against door. + +He also made posts, sixty cubits; and the court reached to the posts, around the gate. + +From the forefront of the gate at the entrance to the forefront of the inner porch of the gate were fifty cubits. + +There were closed windows to the side rooms, and to their posts within the gate all around, and likewise to the arches. Windows were around inward. Palm trees were on each post. + +

+

Then he brought me into the outer court. Behold, there were rooms and a pavement made for the court all around. Thirty rooms were on the pavement. + +The pavement was by the side of the gates, corresponding to the length of the gates, even the lower pavement. + +Then he measured the width from the forefront of the lower gate to the forefront of the inner court outside, one hundred cubits, both on the east and on the north. + +

+

He measured the length and width of the gate of the outer court which faces toward the north. + +The lodges of it were three on this side and three on that side. Its posts and its arches were the same as the measure of the first gate: its length was fifty cubits, and the width twenty-five cubits. + +Its windows, its arches, and its palm trees were the same as the measure of the gate which faces toward the east. They went up to it by seven steps. Its arches were before them. + +There was a gate to the inner court facing the other gate, on the north and on the east. He measured one hundred cubits from gate to gate. + +

+

He led me toward the south; and behold, there was a gate toward the south. He measured its posts and its arches according to these measurements. + +There were windows in it and in its arches all around, like the other windows: the length was fifty cubits, and the width twenty-five cubits. + +There were seven steps to go up to it, and its arches were before them. It had palm trees, one on this side, and another on that side, on its posts. + +There was a gate to the inner court toward the south. He measured one hundred cubits from gate to gate toward the south. + +

+

Then he brought me to the inner court by the south gate. He measured the south gate according to these measurements; + +with its lodges, its posts, and its arches, according to these measurements. There were windows in it and in its arches all around. It was fifty cubits long, and twenty-five cubits wide. + +There were arches all around, twenty-five cubits long and five cubits wide. + +Its arches were toward the outer court. Palm trees were on its posts. The ascent to it had eight steps. + +

+

He brought me into the inner court toward the east. He measured the gate according to these measurements; + +with its lodges, its posts, and its arches, according to these measurements. There were windows in it and in its arches all around. It was fifty cubits long, and twenty-five cubits wide. + +Its arches were toward the outer court. Palm trees were on its posts on this side and on that side. The ascent to it had eight steps. + +

+

He brought me to the north gate, and he measured it according to these measurements— + +its lodges, its posts, and its arches. There were windows in it all around. The length was fifty cubits and the width twenty-five cubits. + +Its posts were toward the outer court. Palm trees were on its posts on this side and on that side. The ascent to it had eight steps. + +

+

A room with its door was by the posts at the gates. They washed the burnt offering there. + +In the porch of the gate were two tables on this side and two tables on that side, on which to kill the burnt offering, the sin offering, and the trespass offering. + +On the one side outside, as one goes up to the entry of the gate toward the north, were two tables; and on the other side, which belonged to the porch of the gate, were two tables. + +Four tables were on this side, and four tables on that side, by the side of the gate: eight tables, on which they killed the sacrifices. + +There were four cut stone tables for the burnt offering, a cubit and a half long, a cubit and a half wide, and one cubit high. They laid the instruments with which they killed the burnt offering and the sacrifice on them. + +The hooks, a hand width long, were fastened within all around. The meat of the offering was on the tables. + +

+

Outside of the inner gate were rooms for the singers in the inner court, which was at the side of the north gate. They faced toward the south. One at the side of the east gate faced toward the north. + +He said to me, “This room, which faces toward the south, is for the priests who perform the duty of the house. + +The room which faces toward the north is for the priests who perform the duty of the altar. These are the sons of Zadok, who from among the sons of Levi come near to Yahweh to minister to him.” + +He measured the court, one hundred cubits long and one hundred cubits wide, square. The altar was before the house. + +

+

Then 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. The width of the gate was three cubits on this side and three cubits on that side. + +The length of the porch was twenty cubits and the width eleven cubits, even by the steps by which they went up to it. There were pillars by the posts, one on this side, and another on that side. + +

+ + +

He brought me to the nave and measured the posts, six cubits wide on the one side and six cubits wide on the other side, which was the width of the tent. + +The width of the entrance was ten cubits,41:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and the sides of the entrance were five cubits on the one side, and five cubits on the other side. He measured its length, forty cubits, and the width, twenty cubits. + +

+

Then he went inward and measured each post of the entrance, two cubits; and the entrance, six cubits; and the width of the entrance, seven cubits. + +He measured its length, twenty cubits, and the width, twenty cubits, before the nave. He said to me, “This is the most holy place.” + +

+

Then he measured the wall of the house, six cubits; and the width of every side room, four cubits, all around the house on every side. + +The side rooms were in three stories, one over another, and thirty in each story. They entered into the wall which belonged to the house for the side rooms all around, that they might be supported and not penetrate the wall of the house. + +The side rooms were wider on the higher levels, because the walls were narrower at the higher levels. Therefore the width of the house increased upward; and so one went up from the lowest level to the highest through the middle level. + +

+

I saw also that the house had a raised base all around. The foundations of the side rooms were a full reed of six great cubits. + +The thickness of the outer wall of the side rooms was five cubits. That which was left was the place of the side rooms that belonged to the house. + +Between the rooms was a width of twenty cubits around the house on every side. + +The doors of the side rooms were toward an open area that was left, one door toward the north, and another door toward the south. The width of the open area was five cubits all around. + +

+

The building that was before the separate place at the side toward the west was seventy cubits wide; and the wall of the building was five cubits thick all around, and its length ninety cubits. + +

+

So he measured the temple, one hundred cubits long; and the separate place, and the building, with its walls, one hundred cubits long; + +also the width of the face of the temple, and of the separate place toward the east, one hundred cubits. + +

+

He measured the length of the building before the separate place which was at its back, and its galleries on the one side and on the other side, one hundred cubits from the inner temple, and the porches of the court, + +the thresholds, and the closed windows, and the galleries around on their three stories, opposite the threshold, with wood ceilings all around, and from the ground up to the windows, (now the windows were covered), + +to the space above the door, even to the inner house, and outside, and by all the wall all around inside and outside, by measure. + +It was made with cherubim and palm trees. A palm tree was between cherub and cherub, and every cherub had two faces, + +so that there was the face of a man 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 like this through all the house all around. + +Cherubim and palm trees were made from the ground to above the door. The wall of the temple was like this. + +

+

The door posts of the nave were squared. As for the face of the nave, its appearance was as the appearance of the temple. + +The altar was of wood, three cubits high, and its length two cubits. Its corners, its base, and its walls were of wood. He said to me, “This is the table that is before Yahweh.” + +The temple and the sanctuary had two doors. + +The doors had two leaves each, two turning leaves: two for the one door, and two leaves for the other. + +There were made on them, on the doors of the nave, cherubim and palm trees, like those made on the walls. There was a threshold of wood on the face of the porch outside. + +There were closed windows and palm trees on the one side and on the other side, on the sides of the porch. This is how the side rooms of the temple and the thresholds were arranged. + +

+ + +

Then he brought me out into the outer court, the way toward the north. Then he brought me into the room that was opposite the separate place, and which was opposite the building toward the north. + +Facing the length of one hundred cubits42:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. was the north door, and the width was fifty cubits. + +Opposite the twenty cubits which belonged to the inner court, and opposite the pavement which belonged to the outer court, was gallery against gallery in the three stories. + +Before the rooms was a walk of ten cubits’ width inward, a way of one cubit; and their doors were toward the north. + +Now the upper rooms were shorter; for the galleries took away from these more than from the lower and the middle in the building. + +For they were in three stories, and they didn’t have pillars as the pillars of the courts. Therefore the uppermost was set back more than the lowest and the middle from the ground. + +The wall that was outside by the side of the rooms, toward the outer court before the rooms, was fifty cubits long. + +For the length of the rooms that were in the outer court was fifty cubits. Behold, those facing the temple were one hundred cubits. + +From under these rooms was the entry on the east side, as one goes into them from the outer court. + +

+

In the thickness of the wall of the court toward the east, before the separate place, and before the building, there were rooms. + +The way before them was like the appearance of the rooms which were toward the north. Their length and width were the same. All their exits had the same arrangement and doors. + +Like the doors of the rooms that were toward the south was a door at the head of the way, even the way directly before the wall toward the east, as one enters into them. + +

+

Then he said to me, “The north rooms and the south rooms, which are opposite the separate place, are the holy rooms, where the priests who are near to Yahweh shall eat the most holy things. There they shall lay the most holy things, with the meal offering, the sin offering, and the trespass offering; for the place is holy. + +When the priests enter in, then they shall not go out of the holy place into the outer court until they lay their garments in which they minister there; for they are holy. Then they shall put on other garments, and shall approach that which is for the people.” + +

+

Now when he had finished measuring the inner house, he brought me out by the way of the gate which faces toward the east, and measured it all around. + +He measured on the east side with the measuring reed five hundred reeds, with the measuring reed all around. + +He measured on the north side five hundred reeds with the measuring reed all around. + +He measured on the south side five hundred reeds with the measuring reed. + +He turned about to the west side, and measured five hundred reeds with the measuring reed. + +He measured it on the four sides. It had a wall around it, the length five hundred cubits, and the width five hundred cubits, to make a separation between that which was holy and that which was common. + +

+ + +

Afterward he brought me to the gate, even the gate that looks toward the east. + +Behold, the glory of the God of Israel came from the way of the east. His voice was like the sound of many waters; and the earth was illuminated with his glory. + +It was like 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 on my face. + +Yahweh’s glory came into the house by the way of the gate which faces toward the east. + +The Spirit took me up and brought me into the inner court; and behold, Yahweh’s glory filled the house. + +

+

I heard one speaking to me out of the house, and a man stood by me. + +He said to me, “Son of man, this is the place of my throne and the place of the soles of my feet, where I will dwell among the children of Israel forever. The house of Israel will no more defile my holy name, neither they nor their kings, by their prostitution and by the dead bodies of their kings in their high places; + +in their setting of their threshold by my threshold and their door post beside my door post. There was a wall between me and them; and they have defiled my holy name by their abominations which they have committed. Therefore I have consumed them in my anger. + +Now let them put away their prostitution, and the dead bodies of their kings far from me. Then I will dwell among them forever. + +

+

You, son of man, show the house to the house of Israel, that they may be ashamed of their iniquities; and let them measure the pattern. + +If they are ashamed of all that they have done, make known to them the form of the house, its fashion, its exits, its entrances, its structure, all its ordinances, all its forms, and all its laws; and write it in their sight, that they may keep the whole form of it, and all its ordinances, and do them. + +

+

This is the law of the house. On the top of the mountain the whole limit around it shall be most holy. Behold, this is the law of the house. + +

+

These are the measurements of the altar by cubits (the cubit43:13 +A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A hand width is about 4.3 inches or 11 cm. is a cubit and a hand width): the bottom shall be a cubit, and the width a cubit, and its border around its edge a span;43:13 +A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) and this shall be the base of the altar. + +From the bottom on the ground to the lower ledge shall be two cubits, and the width one cubit; and from the lesser ledge to the greater ledge shall be four cubits, and the width a cubit. + +The upper altar shall be four cubits; and from the altar hearth and upward there shall be four horns. + +The altar hearth shall be twelve cubits long by twelve wide, square in its four sides. + +The ledge shall be fourteen cubits long by fourteen wide in its four sides; and the border about it shall be half a cubit; and its bottom shall be a cubit around; and its steps shall look toward the east.” + +

+

He said to me, “Son of man, the Lord Yahweh says: ‘These are the ordinances of the altar in the day when they make it, to offer burnt offerings on it, and to sprinkle blood on it. + +You shall give to the Levitical priests who are of the offspring of Zadok, who are near to me, to minister to me,’ says the Lord Yahweh, ‘a young bull for a sin offering. + +You shall take of its blood and put it on its four horns, and on the four corners of the ledge, and on the border all around. You shall cleanse it and make atonement for it that way. + +You shall also take the bull of the sin offering, and it shall be burned in the appointed place of the house, outside of the sanctuary. + +

+

On the second day you shall offer a male goat without defect for a sin offering; and they shall cleanse the altar, as they cleansed it with the bull. + +When you have finished cleansing it, you shall offer a young bull without defect and a ram out of the flock without defect. + +You shall bring them near to Yahweh, and the priests shall cast salt on them, and they shall offer them up for a burnt offering to Yahweh. + +

+

Seven days you shall prepare every day a goat for a sin offering. They shall also prepare a young bull and a ram out of the flock, without defect. + +Seven days shall they make atonement for the altar and purify it. So shall they consecrate it. + +When they have accomplished the days, it shall be that on the eighth day and onward, the priests shall make your burnt offerings on the altar and your peace offerings. Then I will accept you,’ says the Lord Yahweh.” + +

+ + +

Then he brought me back by the way of the outer gate of the sanctuary, which looks toward the east; and it was shut. + +Yahweh said to me, “This gate shall be shut. It shall not be opened, no man shall enter in by it; for Yahweh, the God of Israel, has entered in by it. Therefore it shall be shut. + +As for the prince, he shall sit in it as prince to eat bread before Yahweh. He shall enter by the way of the porch of the gate, and shall go out the same way.” + +

+

Then he brought me by the way of the north gate before the house; and I looked, and behold, Yahweh’s glory filled Yahweh’s house; so I fell on my face. + +

+

Yahweh said to me, “Son of man, mark well, and see with your eyes, and hear with your ears all that I tell you concerning all the ordinances of Yahweh’s house and all its laws; and mark well the entrance of the house, with every exit of the sanctuary. + +You shall tell the rebellious, even the house of Israel, ‘The Lord Yahweh says: “You house of Israel, let that be enough of all your abominations, + +in that you have brought in foreigners, uncircumcised in heart and uncircumcised in flesh, to be in my sanctuary, to profane it, even my house, when you offer my bread, the fat and the blood; and they have broken my covenant, to add to all your abominations. + +You have not performed the duty of my holy things; but you have set performers of my duty in my sanctuary for yourselves.” + +The Lord Yahweh says, “No foreigner, uncircumcised in heart and uncircumcised in flesh, shall enter into my sanctuary, of any foreigners who are among the children of Israel. + +

+

“‘“But the Levites who went far from me when Israel went astray, who went astray from me after their idols, they will bear their iniquity. + +Yet they shall be ministers in my sanctuary, having oversight at the gates of the house, and ministering in the house. They shall kill the burnt offering and the sacrifice for the people, and they shall stand before them to minister to them. + +Because they ministered to them before their idols, and became a stumbling block of iniquity to the house of Israel, therefore I have lifted up my hand against them,” says the Lord Yahweh, “and they will bear their iniquity. + +They shall not come near to me, to execute the office of priest to me, nor to come near to any of my holy things, to the things that are most holy; but they will bear their shame and their abominations which they have committed. + +Yet I will make them performers of the duty of the house, for all its service and for all that will be done therein. + +

+

“‘“But the Levitical priests, the sons of Zadok, who performed the duty of my sanctuary when the children of Israel went astray from me, shall come near to me to minister to me. They shall stand before me to offer to me the fat and the blood,” says the Lord Yahweh. + +They shall enter into my sanctuary, and they shall come near to my table, to minister to me, and they shall keep my instruction. + +

+

“‘“It will be that when they enter in at the gates of the inner court, they shall be clothed with linen garments. No wool shall come on them while they minister in the gates of the inner court, and within. + +They shall have linen turbans on their heads, and shall have linen trousers on their waists. They shall not clothe themselves with anything that makes them sweat. + +When they go out into the outer court, even into the outer court to the people, they shall put off their garments in which they minister and lay them in the holy rooms. They shall put on other garments, that they not sanctify the people with their garments. + +

+

“‘“They shall not shave their heads, or allow their locks to grow long. They shall only cut off the hair of their heads. + +None of the priests shall drink wine when they enter into the inner court. + +They shall not take for their wives a widow, or her who is put away; but they shall take virgins of the offspring of the house of Israel, or a widow who is the widow of a priest. + +They shall teach my people the difference between the holy and the common, and cause them to discern between the unclean and the clean. + +

+

“‘“In a controversy they shall stand to judge. They shall judge it according to my ordinances. They shall keep my laws and my statutes in all my appointed feasts. They shall make my Sabbaths holy. + +

+

“‘“They shall go in to no dead person to defile themselves; but for father, or for mother, or for son, or for daughter, for brother, or for sister who has had no husband, they may defile themselves. + +After he is cleansed, they shall reckon to him seven days. + +In the day that he goes into the sanctuary, into the inner court, to minister in the sanctuary, he shall offer his sin offering,” says the Lord Yahweh. + +

+

“‘They shall have an inheritance: I am their inheritance; and you shall give them no possession in Israel. I am their possession. + +They shall eat the meal offering, and the sin offering, and the trespass offering; and every devoted thing in Israel shall be theirs. + +The first of all the first fruits of every thing, and every offering of everything, of all your offerings, shall be for the priest. You shall also give to the priests the first of your dough, to cause a blessing to rest on your house. + +The priests shall not eat of anything that dies of itself or is torn, whether it is bird or animal. + +

+ + +

“‘“Moreover, when you divide by lot the land for inheritance, you shall offer an offering to Yahweh, a holy portion of the land. The length shall be the length of twenty-five thousand reeds, and the width shall be ten thousand. It shall be holy in all its border all around. + +Of this there shall be a five hundred by five hundred square for the holy place, and fifty cubits45:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. for its pasture lands all around. + +Of this measure you shall measure a length of twenty-five thousand, and a width of ten thousand. In it shall be the sanctuary, which is most holy. + +It is a holy portion of the land; it shall be for the priests, the ministers of the sanctuary, who come near to minister to Yahweh. It shall be a place for their houses and a holy place for the sanctuary. + +Twenty-five thousand cubits in length and ten thousand in width shall be for the Levites, the ministers of the house, as a possession for themselves, for twenty rooms. + +

+

“‘“You shall appoint the possession of the city five thousand cubits wide and twenty-five thousand long, side by side with the offering of the holy portion. It shall be for the whole house of Israel. + +

+

“‘“What is for the prince shall be on the one side and on the other side of the holy allotment and of the possession of the city, in front of the holy allotment and in front of the possession of the city, on the west side westward, and on the east side eastward, and in length corresponding to one of the portions, from the west border to the east border. + +In the land it shall be to him for a possession in Israel. My princes shall no more oppress my people, but they shall give the land to the house of Israel according to their tribes.” + +

+

“‘The Lord Yahweh says: “Enough, you princes of Israel! Remove violence and plunder, and execute justice and righteousness! Stop dispossessing my people!” says the Lord Yahweh. + +You shall have just balances, a just ephah,45:10 +1 ephah is about 22 liters or about 2/3 of a bushel and a just bath. + +The ephah and the bath shall be of one measure, that the bath may contain one tenth of a homer,45:11 +1 homer is about 220 liters or 6 bushels and the ephah one tenth of a homer. Its measure shall be the same as the homer. + +The shekel45:12 +A shekel is about 10 grams or about 0.35 ounces. shall be twenty gerahs.45:12 +a gerah is about 0.5 grams or about 7.7 grains Twenty shekels plus twenty-five shekels plus fifteen shekels shall be your mina.45:12 +A mina is about 600 grams or 1.3 U. S. pounds. + +

+

“‘“This is the offering that you shall offer: the sixth part of an ephah from a homer of wheat, and you shall give the sixth part of an ephah from a homer of barley, + +and the set portion of oil, of the bath of oil, one tenth of a bath out of the cor, which is ten baths, even a homer (for ten baths are a homer),45:14 +1 cor is the same as 1 homer in volume, and is about 211 liters, 55.9 gallons, or 6 bushels. 1 bath is about 21.1 liters, 5.59 gallons, or 2.4 pecks. + +and one lamb of the flock out of two hundred, from the well-watered pastures of Israelfor a meal offering, for a burnt offering, and for peace offerings, to make atonement for them,” says the Lord Yahweh. + +All the people of the land shall give to this offering for the prince in Israel. + +It shall be the prince’s part to give the burnt offerings, the meal offerings, and the drink offerings, in the feasts, and on the new moons, and on the Sabbaths, in all the appointed feasts of the house of Israel. He shall prepare the sin offering, the meal offering, the burnt offering, and the peace offerings, to make atonement for the house of Israel.” + +

+

“‘The Lord Yahweh says: “In the first month, on the first day of the month, you shall take a young bull without defect, and you shall cleanse the sanctuary. + +The priest shall take of the blood of the sin offering and put it on the door posts of the house, and on the four corners of the ledge of the altar, and on the posts of the gate of the inner court. + +So you shall do on the seventh day of the month for everyone who errs, and for him who is simple. So you shall make atonement for the house. + +

+

“‘“In the first month, on the fourteenth day of the month, you shall have the Passover, a feast of seven days; unleavened bread shall be eaten. + +On that day the prince shall prepare for himself and for all the people of the land a bull for a sin offering. + +The seven days of the feast he shall prepare a burnt offering to Yahweh, seven bulls and seven rams without defect daily the seven days; and a male goat daily for a sin offering. + +He shall prepare a meal offering, an ephah45:24 +1 ephah is about 22 liters or about 2/3 of a bushel for a bull, an ephah for a ram, and a hin45:24 +A hin is about 6.5 liters or 1.7 gallons. of oil to an ephah. + +

+

“‘“In the seventh month, on the fifteenth day of the month, during the feast, he shall do like that for seven days. He shall make the same provision for sin offering, the burnt offering, the meal offering, and the oil.” + +

+ + +

“‘The Lord Yahweh says: “The gate of the inner court that looks toward the east shall be shut the six working days; but on the Sabbath day it shall be opened, and on the day of the new moon it shall be opened. + +The prince shall enter by the way of the porch of the gate outside, 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 out, but the gate shall not be shut until the evening. + +The people of the land shall worship at the door of that gate before Yahweh on the Sabbaths and on the new moons. + +The burnt offering that the prince shall offer to Yahweh shall be on the Sabbath day, six lambs without defect and a ram without defect; + +and the meal offering shall be an ephah for the ram, and the meal offering for the lambs as he is able to give, and a hin46:5 +A hin is about 6.5 liters or 1.7 gallons. of oil to an ephah.46:5 +1 ephah is about 22 liters or about 2/3 of a bushel + +On the day of the new moon it shall be a young bull without defect, six lambs, and a ram. They shall be without defect. + +He shall prepare a meal offering: an ephah for the bull, and an ephah for the ram, and for the lambs according as he is able, and a hin of oil to an ephah. + +When the prince enters, he shall go in by the way of the porch of the gate, and he shall go out by its way. + +

+

“‘“But when the people of the land come before Yahweh in the appointed feasts, he who enters by the way of the north gate to worship shall go out by the way of the south gate; and he who enters by the way of the south gate shall go out by the way of the north gate. He shall not return by the way of the gate by which he came in, but shall go out straight before him. + +The prince shall go in with them when they go in. When they go out, he shall go out. + +

+

“‘“In the feasts and in the appointed holidays, the meal offering shall be an ephah46:11 +1 ephah is about 22 liters or about 2/3 of a bushel for a bull, and an ephah for a ram, and for the lambs as he is able to give, and a hin of oil to an ephah. + +When the prince prepares a free will offering, a burnt offering or peace offerings as a free will offering to Yahweh, one shall open for him the gate that looks toward the east; and he shall prepare his burnt offering and his peace offerings, as he does on the Sabbath day. Then he shall go out; and after his going out one shall shut the gate. + +

+

“‘“You shall prepare a lamb a year old without defect for a burnt offering to Yahweh daily. Morning by morning you shall prepare it. + +You shall prepare a meal offering with it morning by morning, the sixth part of an ephah,46:14 +1 ephah is about 22 liters or about 2/3 of a bushel and the third part of a hin of oil to moisten the fine flour; a meal offering to Yahweh continually by a perpetual ordinance. + +Thus they shall prepare the lamb, the meal offering, and the oil, morning by morning, for a continual burnt offering.” + +

+

“‘The Lord Yahweh says: “If the prince gives a gift to any of his sons, it is his inheritance. It shall belong to his sons. It is their possession by inheritance. + +But if he gives of his inheritance a gift to one of his servants, it shall be his to the year of liberty; then it shall return to the prince; but as for his inheritance, it shall be for his sons. + +Moreover the prince shall not take of the people’s inheritance, to thrust them out of their possession. He shall give inheritance to his sons out of his own possession, that my people not each be scattered from his possession.”’” + +

+

Then he brought me through the entry, which was at the side of the gate, into the holy rooms for the priests, which looked toward the north. Behold, there was a place on the back part westward. + +He said to me, “This is the place where the priests shall boil the trespass offering and the sin offering, and where they shall bake the meal offering, that they not bring them out into the outer court, to sanctify the people.” + +

+

Then he brought me out into the outer 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. + +In the four corners of the court there were courts enclosed, forty cubits46:22 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. long and thirty wide. These four in the corners were the same size. + +There was a wall around in them, around the four, and boiling places were made under the walls all around. + +Then he said to me, “These are the boiling houses, where the ministers of the house shall boil the sacrifice of the people.” + +

+ + +

He brought me back to the door of the temple; and behold, waters flowed out from under the threshold of the temple eastward, for the front of the temple faced toward the east. The waters came down from underneath, from the right side of the temple, on the south of the altar. + +Then he brought me out by the way of the gate northward, and led me around by the way outside to the outer gate, by the way of the gate that looks toward the east. Behold, waters ran out on the right side. + +

+

When the man went out eastward with the line in his hand, he measured one thousand cubits,47:3 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and he caused me to pass through the waters, waters that were to the ankles. + +Again he measured one thousand, and caused me to pass through the waters, waters that were to the knees. Again he measured one thousand, and caused me to pass through waters that were to the waist. + +Afterward he measured one thousand; and it was a river that I could not pass through, for the waters had risen, waters to swim in, a river that could not be walked through. + +

+

He said to me, “Son of man, have you seen this?” +

+

Then he brought me and caused me to return to the bank of the river. + +Now when I had returned, behold, on the bank of the river were very many trees on the one side and on the other. + +Then he said to me, “These waters flow out toward the eastern region and will go down into the Arabah. Then they will go toward the sea and flow into the sea which will be made to flow out; and the waters will be healed. + +It will happen that every living creature which swarms, in every place where the rivers come, will live. Then there will be a very great multitude of fish; for these waters have come there, and the waters of the sea will be healed, and everything will live wherever the river comes. + +It will happen that fishermen will stand by it. From En Gedi even to En Eglaim will be a place for the spreading of nets. Their fish will be after their kinds, as the fish of the great sea, exceedingly many. + +But its swamps and marshes will not be healed. They will be given up to salt. + +By the river banks, on both sides, will grow every tree for food, whose leaf won’t wither, neither will its fruit fail. It will produce new fruit every month, because its waters issue out of the sanctuary. Its fruit will be for food, and its leaf for healing.” + +

+

The Lord Yahweh says: “This shall be the border by which you shall divide the land for inheritance according to the twelve tribes of Israel. Joseph shall have two portions. + +You shall inherit it, one as well as another; for I swore to give it to your fathers. This land will fall to you for inheritance. + +

+

This shall be the border of the land: +

+

On the north side, from the great sea, by the way of Hethlon, to the entrance of Zedad; + +Hamath, Berothah, Sibraim (which is between the border of Damascus and the border of Hamath), to Hazer Hatticon, which is by the border of Hauran. + +The border from the sea shall be Hazar Enon at the border of Damascus; and on the north northward is the border of Hamath. This is the north side. + +

+

The east side, between Hauran, Damascus, Gilead, and the land of Israel, shall be the Jordan; from the north border to the east sea you shall measure. This is the east side. + +

+

The south side southward shall be from Tamar as far as the waters of Meriboth Kadesh, to the brook, to the great sea. This is the south side southward. + +

+

The west side shall be the great sea, from the south border as far as opposite the entrance of Hamath. This is the west side. + +

+

So you shall divide this land to yourselves according to the tribes of Israel. + +You shall divide it by lot for an inheritance to you and to the aliens who live among you, who will father children among you. Then they shall be to you as the native-born among the children of Israel. They shall have inheritance with you among the tribes of Israel. + +In whatever tribe the stranger lives, there you shall give him his inheritance,” says the Lord Yahweh. + +

+ + +

Now these are the names of the tribes: From the north end, beside the way of Hethlon to the entrance of Hamath, Hazar Enan at the border of Damascus, northward beside Hamath (and they shall have their sides east and west), Dan, one portion. + +

+

By the border of Dan, from the east side to the west side, Asher, one portion. + +

+

By the border of Asher, from the east side even to the west side, Naphtali, one portion. + +

+

By the border of Naphtali, from the east side to the west side, Manasseh, one portion. + +

+

By the border of Manasseh, from the east side to the west side, Ephraim, one portion. + +

+

By the border of Ephraim, from the east side even to the west side, Reuben, one portion. + +

+

By the border of Reuben, from the east side to the west side, Judah, one portion. + +

+

By the border of Judah, from the east side to the west side, shall be the offering which you shall offer, twenty-five thousand reeds in width, and in length as one of the portions, from the east side to the west side; and the sanctuary shall be in the middle of it. + +

+

The offering that you shall offer to Yahweh shall be twenty-five thousand reeds in length, and ten thousand in width. + +For these, even for the priests, shall be the holy offering: toward the north twenty-five thousand in length, and toward the west ten thousand in width, and toward the east ten thousand in width, and toward the south twenty-five thousand in length; and the sanctuary of Yahweh shall be in the middle of it. + +It shall be for the priests who are sanctified of the sons of Zadok, who have kept my instruction, who didn’t go astray when the children of Israel went astray, as the Levites went astray. + +It shall be to them an offering from the offering of the land, a most holy thing, by the border of the Levites. + +

+

Alongside the border of the priests, the Levites shall have twenty-five thousand cubits in length and ten thousand in width. All the length shall be twenty-five thousand, and the width ten thousand. + +They shall sell none of it, nor exchange it, nor shall the first fruits of the land be alienated, for it is holy to Yahweh. + +

+

The five thousand cubits that are left in the width, in front of the twenty-five thousand, shall be for common use, for the city, for dwelling and for pasture lands; and the city shall be in the middle of it. + +These shall be its measurements: 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. + +The city shall have pasture lands: toward the north two hundred fifty, and toward the south two hundred fifty, and toward the east two hundred fifty, and toward the west two hundred fifty. + +The remainder of the length, alongside the holy offering, shall be ten thousand eastward and ten thousand westward; and it shall be alongside the holy offering. Its increase shall be for food to those who labor in the city. + +Those who labor in the city, out of all the tribes of Israel, shall cultivate it. + +All the offering shall be a square of twenty-five thousand by twenty-five thousand. You shall offer it as a holy offering, with the possession of the city. + +

+

The remainder shall be for the prince, on the one side and on the other of the holy offering and of the possession of the city; in front of the twenty-five thousand of the offering toward the east border, and westward in front of the twenty-five thousand toward the west border, alongside the portions, it shall be for the prince. The holy offering and the sanctuary of the house shall be in the middle of it. + +Moreover, from the possession of the Levites, and from the possession of the city, being in the middle of that which is the prince’s, between the border of Judah and the border of Benjamin, shall be for the prince. + +

+

As for the rest of the tribes: from the east side to the west side, Benjamin, one portion. + +

+

By the border of Benjamin, from the east side to the west side, Simeon, one portion. + +

+

By the border of Simeon, from the east side to the west side, Issachar, one portion. + +

+

By the border of Issachar, from the east side to the west side, Zebulun, one portion. + +

+

By the border of Zebulun, from the east side to the west side, Gad, one portion. + +

+

By the border of Gad, at the south side southward, the border shall be even from Tamar to the waters of Meribath Kadesh, to the brook, to the great sea. + +

+

This is the land which you shall divide by lot to the tribes of Israel for inheritance, and these are their several portions, says the Lord Yahweh. + +

+

“These are the exits of the city: On the north side four thousand five hundred reeds by measure; + +and the gates of the city shall be named after the tribes of Israel, three gates northward: the gate of Reuben, one; the gate of Judah, one; the gate of Levi, one. + +

+

At the east side four thousand five hundred reeds, and three gates: even the gate of Joseph, one; the gate of Benjamin, one; the gate of Dan, one. + +

+

At the south side four thousand five hundred reeds by measure, and three gates: the gate of Simeon, one; the gate of Issachar, one; the gate of Zebulun, one. + +

+

At the west side four thousand five hundred reeds, with their three gates: the gate of Gad, one; the gate of Asher, one; the gate of Naphtali, one. + +

+

It shall be eighteen thousand reeds in circumference; and the name of the city from that day shall be, ‘Yahweh is there.’ + +

+
+27-DAN-web.sfm World English Bible (WEB) +Daniel +The Book of Daniel +Daniel +Dan +

The Book of +

+

Daniel +

+ + +

In the third year of the reign of Jehoiakim king of Judah, Nebuchadnezzar king of Babylon came to Jerusalem and besieged it. + +The Lord1:2 +The word translated “Lord” is “Adonai.” gave Jehoiakim king of Judah into his hand, with some of the vessels of the house of God;1:2 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). and he carried them into the land of Shinar to the house of his god. He brought the vessels into the treasure house of his god. + +

+

The king spoke to Ashpenaz, the master of his eunuchs, that he should bring in some of the children of Israel, even of the royal offspring1:3 +or, seed and of the nobles: + +youths in whom was no defect, but well-favored, skillful in all wisdom, endowed with knowledge, understanding science, and who had the ability to stand in the king’s palace; and that he should teach them the learning and the language of the Chaldeans. + +The king appointed for them a daily portion of the king’s delicacies and of the wine which he drank, and that they should be nourished three years, that at its end they should stand before the king. + +

+

Now among these of the children of Judah were Daniel, Hananiah, Mishael, and Azariah. + +The prince of the eunuchs gave names to them: to Daniel he gave the name Belteshazzar; to Hananiah, Shadrach; to Mishael, Meshach; and to Azariah, Abednego. + +

+

But Daniel purposed in his heart that he would not defile himself with the king’s delicacies, nor with the wine which he drank. Therefore he requested of the prince of the eunuchs that he might not defile himself. + +Now God made Daniel find kindness and compassion in the sight of the prince of the eunuchs. + +The prince of the eunuchs said to Daniel, “I fear my lord the king, who has appointed your food and your drink. For why should he see your faces worse looking than the youths who are of your own age? Then you would endanger my head with the king.” + +

+

Then Daniel said to the steward whom the prince of the eunuchs had appointed over Daniel, Hananiah, Mishael, and Azariah: + +Test your servants, I beg you, ten days; and let them give us vegetables to eat and water to drink. + +Then let our faces be examined before you, and the face of the youths who eat of the king’s delicacies; and as you see, deal with your servants.” + +So he listened to them in this matter, and tested them for ten days. + +

+

At the end of ten days, their faces appeared fairer and they were fatter in flesh than all the youths who ate of the king’s delicacies. + +So the steward took away their delicacies and the wine that they were given to drink, and gave them vegetables. + +

+

Now as for these four youths, God gave them knowledge and skill in all learning and wisdom; and Daniel had understanding in all visions and dreams. + +

+

At the end of the days which the king had appointed for bringing them in, the prince of the eunuchs brought them in before Nebuchadnezzar. + +The king talked with them; and among them all was found no one like Daniel, Hananiah, Mishael, and Azariah. Therefore they stood before the king. + +In every matter of wisdom and understanding concerning which the king inquired of them, he found them ten times better than all the magicians and enchanters who were in all his realm. + +

+

Daniel continued even to the first year of King Cyrus. + +

+ + +

In the second year of the reign of Nebuchadnezzar, Nebuchadnezzar dreamed dreams; and his spirit was troubled, and his sleep went from him. + +Then the king commanded that the magicians, the enchanters, the sorcerers, and the Chaldeans be called to tell the king his dreams. So they came in and stood before the king. + +The king said to them, “I have dreamed a dream, and my spirit is troubled to know the dream.” + +

+

Then the Chaldeans spoke to the king in the Syrian language, “O king, live forever! Tell your servants the dream, and we will show the interpretation.” + +

+

The king answered the Chaldeans, “The thing has gone from me. If you don’t make known to me the dream and its interpretation, you will be cut in pieces, and your houses will be made a dunghill. + +But if you show the dream and its interpretation, you will receive from me gifts, rewards, and great honor. Therefore show me the dream and its interpretation.” + +

+

They answered the second time and said, “Let the king tell his servants the dream, and we will show the interpretation.” + +

+

The king answered, “I know of a certainty that you are trying to gain time, because you see the thing has gone from me. + +But if you don’t make known to me the dream, there is but one law for you; for you have prepared lying and corrupt words to speak before me, until the situation changes. Therefore tell me the dream, and I will know that you can show me its interpretation.” + +

+

The Chaldeans answered the king and said, “There is not a man on the earth who can show the king’s matter, because no king, lord, or ruler has asked such a thing of any magician, enchanter, or Chaldean. + +It is a rare thing that the king requires, and there is no other who can show it before the king except the gods, whose dwelling is not with flesh.” + +

+

Because of this, the king was angry and very furious, and commanded that all the wise men of Babylon be destroyed. + +So the decree went out, and the wise men were to be slain. They sought Daniel and his companions to be slain. + +

+

Then Daniel returned answer with counsel and prudence to Arioch the captain of the king’s guard, who had gone out to kill the wise men of Babylon. + +He answered Arioch the king’s captain, “Why is the decree so urgent from the king?” Then Arioch made the thing known to Daniel. + +Daniel went in, and desired of the king that he would appoint him a time, and he would show the king the interpretation. + +

+

Then Daniel went to his house and made the thing known to Hananiah, Mishael, and Azariah, his companions: + +that they would desire mercies of the God of heaven concerning this secret, that Daniel and his companions would not perish with the rest of the wise men of Babylon. + +Then the secret was revealed to Daniel in a vision of the night. Then Daniel blessed the God of heaven. + +Daniel answered, +

+Blessed be the name of God forever and ever; + +for wisdom and might are his. + + +He changes the times and the seasons. + +He removes kings and sets up kings. + +He gives wisdom to the wise, + +and knowledge to those who have understanding. + + +He reveals the deep and secret things. + +He knows what is in the darkness, + +and the light dwells with him. + + +I thank you and praise you, + +O God of my fathers, + +who have given me wisdom and might, + +and have now made known to me what we desired of you; + +for you have made known to us the king’s matter.” + + +

Therefore Daniel went in to Arioch, whom the king had appointed to destroy the wise men of Babylon. He went and said this to him: “Don’t destroy the wise men of Babylon. Bring me in before the king, and I will show to the king the interpretation.” + +

+

Then Arioch brought in Daniel before the king in haste, and said this to him: “I have found a man of the children of the captivity of Judah who will make known to the king the interpretation.” + +

+

The king answered Daniel, whose name was Belteshazzar, “Are you able to make known to me the dream which I have seen, and its interpretation?” + +

+

Daniel answered before the king, and said, “The secret which the king has demanded can’t be shown to the king by wise men, enchanters, magicians, or soothsayers; + +but there is a God in heaven who reveals secrets, and he has made known to King Nebuchadnezzar what will be in the latter days. Your dream and the visions of your head on your bed are these: + +

+

As for you, O king, your thoughts came on your bed, what should happen hereafter; and he who reveals secrets has made known to you what will happen. + +But as for me, this secret is not revealed to me for any wisdom that I have more than any living, but to the intent that the interpretation may be made known to the king, and that you may know the thoughts of your heart. + +

+

You, O king, saw, and behold,2:31 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. a great image. This image, which was mighty, and whose brightness was excellent, stood before you; and its appearance was terrifying. + +As for this image, its head was of fine gold, its chest and its arms of silver, its belly and its thighs of bronze, + +its legs of iron, its feet part of iron and part of clay. + +You saw until a stone was cut out without hands, which struck the image on its feet that were of iron and clay, and broke them in pieces. + +Then the iron, the clay, the bronze, the silver, and the gold were broken in pieces together, and became like the chaff of the summer threshing floors. The wind carried them away, so that no place was found for them. The stone that struck the image became a great mountain and filled the whole earth. + +

+

This is the dream; and we will tell its interpretation before the king. + +You, O king, are king of kings, to whom the God of heaven has given the kingdom, the power, the strength, and the glory. + +Wherever the children of men dwell, he has given the animals of the field and the birds of the sky into your hand, and has made you rule over them all. You are the head of gold. + +

+

After you, another kingdom will arise that is inferior to you; and another third kingdom of bronze, which will rule over all the earth. + +The fourth kingdom will be strong as iron, because iron breaks in pieces and subdues all things; and as iron that crushes all these, it will break in pieces and crush. + +Whereas you saw the feet and toes, part of potters’ clay and part of iron, it will be a divided kingdom; but there will be in it of the strength of the iron, because you saw the iron mixed with miry clay. + +As the toes of the feet were part of iron, and part of clay, so the kingdom will be partly strong and partly brittle. + +Whereas you saw the iron mixed with miry clay, they will mingle themselves with the seed of men; but they won’t cling to one another, even as iron does not mix with clay. + +

+

In the days of those kings the God of heaven will set up a kingdom which will never be destroyed, nor will its sovereignty be left to another people; but it will break in pieces and consume all these kingdoms, and it will stand forever. + +Because you saw that a stone was cut out of the mountain without hands, and that it broke in pieces the iron, the bronze, the clay, the silver, and the gold, the great God has made known to the king what will happen hereafter. The dream is certain, and its interpretation sure.” + +

+

Then King Nebuchadnezzar fell on his face, worshiped Daniel, and commanded that they should offer an offering and sweet odors to him. + +The king answered to Daniel, and said, “Of a truth your God is the God of gods, and the Lord of kings, and a revealer of secrets, since you have been able to reveal this secret.” + +

+

Then the king made Daniel great and gave him many great gifts, and made him rule over the whole province of Babylon and to be chief governor over all the wise men of Babylon. + +Daniel requested of the king, and he appointed Shadrach, Meshach, and Abednego over the affairs of the province of Babylon, but Daniel was in the king’s gate. + +

+ + +

Nebuchadnezzar the king made an image of gold, whose height was sixty cubits3:1 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and its width six cubits. He set it up in the plain of Dura, in the province of Babylon. + +Then Nebuchadnezzar the king sent to gather together the local governors, the deputies, and the governors, the judges, the treasurers, the counselors, the sheriffs, and all the rulers of the provinces, to come to the dedication of the image which Nebuchadnezzar the king had set up. + +Then the local governors, the deputies, and the governors, the judges, the treasurers, the counselors, the sheriffs, and all the rulers of the provinces were gathered together to the dedication of the image that Nebuchadnezzar the king had set up; and they stood before the image that Nebuchadnezzar had set up. + +

+

Then the herald cried aloud, “To you it is commanded, peoples, nations, and languages, + +that whenever you hear the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music, you fall down and worship the golden image that Nebuchadnezzar the king has set up. + +Whoever doesn’t fall down and worship shall be cast into the middle of a burning fiery furnace the same hour.” + +

+

Therefore at that time, when all the peoples heard the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music, all the peoples, the nations, and the languages fell down and worshiped the golden image that Nebuchadnezzar the king had set up. + +

+

Therefore at that time certain Chaldeans came near and brought accusation against the Jews. + +They answered Nebuchadnezzar the king, “O king, live for ever! + +You, O king, have made a decree that every man who hears the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music shall fall down and worship the golden image; + +and whoever doesn’t fall down and worship shall be cast into the middle of a burning fiery furnace. + +There are certain Jews whom you have appointed over the affairs of the province of Babylon: Shadrach, Meshach, and Abednego. These men, O king, have not respected you. They don’t serve your gods, and don’t worship the golden image which you have set up.” + +

+

Then Nebuchadnezzar in rage and fury commanded that Shadrach, Meshach, and Abednego be brought. Then these men were brought before the king. + +Nebuchadnezzar answered them, “Is it true, Shadrach, Meshach, and Abednego, that you don’t serve my gods and you don’t worship the golden image which I have set up? + +Now if you are ready whenever you hear the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music to fall down and worship the image which I have made, good; but if you don’t worship, you shall be cast the same hour into the middle of a burning fiery furnace. Who is that god who will deliver you out of my hands?” + +

+

Shadrach, Meshach, and Abednego answered the king, “Nebuchadnezzar, we have no need to answer you in this matter. + +If it happens, our God whom we serve is able to deliver us from the burning fiery furnace; and he will deliver us out of your hand, O king. + +But if not, let it be known to you, O king, that we will not serve your gods or worship the golden image which you have set up.” + +

+

Then Nebuchadnezzar was full of fury, and the form of his appearance was changed against Shadrach, Meshach, and Abednego. He spoke, and commanded that they should heat the furnace seven times more than it was usually heated. + +He commanded certain mighty men who were in his army to bind Shadrach, Meshach, and Abednego, and to cast them into the burning fiery furnace. + +Then these men were bound in their pants, their tunics, and their mantles, and their other clothes, and were cast into the middle of the burning fiery furnace. + +Therefore because the king’s commandment was urgent and the furnace exceedingly hot, the flame of the fire killed those men who took up Shadrach, Meshach, and Abednego. + +These three men, Shadrach, Meshach, and Abednego, fell down bound into the middle of the burning fiery furnace. + +

+

Then Nebuchadnezzar the king was astonished and rose up in haste. He spoke and said to his counselors, “Didn’t we cast three men bound into the middle of the fire?” +

+

They answered the king, “True, O king.” + +

+

He answered, “Look, I see four men loose, walking in the middle of the fire, and they are unharmed. The appearance of the fourth is like a son of the gods.3:25 +Or, the Son of God.” + +

+

Then Nebuchadnezzar came near to the mouth of the burning fiery furnace. He spoke and said, “Shadrach, Meshach, and Abednego, you servants of the Most High God, come out, and come here!” +

+

Then Shadrach, Meshach, and Abednego came out of the middle of the fire. + +The local governors, the deputies, and the governors, and the king’s counselors, being gathered together, saw these men, that the fire had no power on their bodies. The hair of their head wasn’t singed. Their pants weren’t changed. The smell of fire wasn’t even on them. + +

+

Nebuchadnezzar spoke and said, “Blessed be the God of Shadrach, Meshach, and Abednego, who has sent his angel and delivered his servants who trusted in him, and have changed the king’s word, and have yielded their bodies, that they might not serve nor worship any god except their own God. + +Therefore I make a decree that every people, nation, and language which speak anything evil 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 who is able to deliver like this.” + +

+

Then the king promoted Shadrach, Meshach, and Abednego in the province of Babylon. + +

+ + +

Nebuchadnezzar the king, +

+

to all the peoples, nations, and languages, who dwell in all the earth: +

+

Peace be multiplied to you. + +

+

It has seemed good to me to show the signs and wonders that the Most High God has worked toward me. + +

+How great are his signs! + +How mighty are his wonders! + +His kingdom is an everlasting kingdom. + +His dominion is from generation to generation. + + +

I, Nebuchadnezzar, was at rest in my house, and flourishing in my palace. + +I saw a dream which made me afraid; and the thoughts on my bed and the visions of my head troubled me. + +Therefore I made a decree to bring in all the wise men of Babylon before me, that they might make known to me the interpretation of the dream. + +Then the magicians, the enchanters, the Chaldeans, and the soothsayers came in; and I told them the dream, but they didn’t make known to me its interpretation. + +But at 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. I told the dream before him, saying, + +

+

“Belteshazzar, master of the magicians, because I know that the spirit of the holy gods is in you and no secret troubles you, tell me the visions of my dream that I have seen, and its interpretation. + +These were the visions of my head on my bed: I saw, and behold, a tree in the middle of the earth; and its height was great. + +The tree grew and was strong. Its height reached to the sky and its sight to the end of all the earth. + +Its leaves were beautiful, and it had much fruit, and in it was food for all. The animals of the field had shade under it, and the birds of the sky lived in its branches, and all flesh was fed from it. + +

+

I saw in the visions of my head on my bed, and behold, a holy watcher came down from the sky. + +He cried aloud and said this: ‘Cut down the tree, and cut off its branches! Shake off its leaves and scatter its fruit! Let the animals get away from under it and the birds from its branches. + +Nevertheless leave the stump of its roots in the earth, even with a band of iron and bronze, in the tender grass of the field; and let it be wet with the dew of the sky. Let his portion be with the animals in the grass of the earth. + +Let his heart be changed from man’s, and let an animal’s heart be given to him. Then let seven times pass over him. + +

+

“‘The sentence 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 rules in the kingdom of men, and gives it to whomever he will, and sets up over it the lowest of men.’ + +

+

This dream I, King Nebuchadnezzar, have seen; and you, Belteshazzar, declare the interpretation, because all the wise men of my kingdom are not able to make known to me the interpretation; but you are able, for the spirit of the holy gods is in you.” + +

+

Then Daniel, whose name was Belteshazzar, was stricken mute for a while, and his thoughts troubled him. The king answered, “Belteshazzar, don’t let the dream or the interpretation, trouble you.” +

+

Belteshazzar answered, “My lord, may the dream be for those who hate you, and its interpretation to your adversaries. + +The tree that you saw, which grew and was strong, whose height reached to the sky and its sight to all the earth; + +whose leaves were beautiful and its fruit plentiful, and in it was food for all; under which the animals of the field lived, and on whose branches the birds of the sky had their habitation— + +it is you, O king, that have grown and become strong; for your greatness has grown, and reaches to the sky, and your dominion to the end of the earth. + +

+

Whereas the king saw a holy watcher coming down from the sky and saying, ‘Cut down the tree, and destroy it; nevertheless leave the stump of its roots in the earth, even with a band of iron and bronze, in the tender grass of the field, and let it be wet with the dew of the sky. Let his portion be with the animals of the field, until seven times pass over him.’ + +

+

This is the interpretation, O king, and it is the decree of the Most High, which has come on my lord the king: + +You will be driven from men and your dwelling shall be with the animals of the field. You will be made to eat grass as oxen, and will be wet with the dew of the sky, and seven times shall pass over you, until you know that the Most High rules in the kingdom of men, and gives it to whomever he will. + +Whereas it was commanded to leave the stump of the roots of the tree, your kingdom shall be sure to you after you know that Heaven rules. + +Therefore, O king, let my counsel be acceptable to you, and break off your sins by righteousness, and your iniquities by showing mercy to the poor. Perhaps there may be a lengthening of your tranquility.” + +

+

All this came on the King Nebuchadnezzar. + +At the end of twelve months he was walking in the royal palace of Babylon. + +The king spoke and said, “Is not this great Babylon, which I have built for the royal dwelling place by the might of my power and for the glory of my majesty?” + +

+

While the word was in the king’s mouth, a voice came from the sky, saying, “O King Nebuchadnezzar, to you it is spoken: ‘The kingdom has departed from you. + +You shall be driven from men, and your dwelling shall be with the animals of the field. You shall be made to eat grass like oxen. Seven times shall pass over you, until you know that the Most High rules in the kingdom of men, and gives it to whomever he will.’” + +

+

This was fulfilled the same hour on Nebuchadnezzar. He was driven from men and ate grass like oxen; and his body was wet with the dew of the sky until his hair had grown like eagles’ feathers, and his nails like birds’ claws. + +

+

At the end of the days I, Nebuchadnezzar, lifted up my eyes to heaven, and my understanding returned to me; and I blessed the Most High, and I praised and honored him who lives forever, +

+for his dominion is an everlasting dominion, + +and his kingdom from generation to generation. + + +All the inhabitants of the earth are reputed as nothing; + +and he does according to his will in the army of heaven, + +and among the inhabitants of the earth; + +and no one can stop his hand, + +or ask him, “What are you doing?” + + +

At the same time my understanding returned to me; and for the glory of my kingdom, my majesty and brightness returned to me. My counselors and my lords sought me; and I was established in my kingdom, and excellent greatness was added to me. + +Now I, Nebuchadnezzar, praise and extol and honor the King of heaven; for all his works are truth, and his ways justice; and those who walk in pride he is able to abase. + +

+ + +

Belshazzar the king made a great feast to a thousand of his lords, and drank wine before the thousand. + +Belshazzar, while he tasted the wine, commanded that the golden and silver vessels which Nebuchadnezzar his father had taken out of the temple which was in Jerusalem be brought to him, that the king and his lords, his wives and his concubines, might drink from them. + +Then they brought the golden vessels that were taken out of the temple of God’s house which was at Jerusalem; and the king and his lords, his wives and his concubines, drank from them. + +They drank wine, and praised the gods of gold, and of silver, of bronze, of iron, of wood, and of stone. + +

+

In the same hour, the fingers of a man’s hand came out and wrote near the lamp stand on the plaster of the wall of the king’s palace. The king saw the part of the hand that wrote. + +Then the king’s face was changed in him, and his thoughts troubled him; and the joints of his thighs were loosened, and his knees struck one against another. + +

+

The king cried aloud to bring in the enchanters, the Chaldeans, and the soothsayers. The king spoke and said to the wise men of Babylon, “Whoever reads this writing and shows me its interpretation shall be clothed with purple, and have a chain of gold about his neck, and shall be the third ruler in the kingdom.” + +

+

Then all the king’s wise men came in; but they could not read the writing, and couldn’t make known to the king the interpretation. + +Then King Belshazzar was greatly troubled, and his face was changed in him, and his lords were perplexed. + +

+

The queen by reason of the words of the king and his lords came into the banquet house. The queen spoke and said, “O king, live forever; don’t let your thoughts trouble you, nor let your face be changed. + +There is a man in your kingdom in whom is the spirit of the holy gods; and in the days of your father, light and understanding and wisdom, like the wisdom of the gods, were found in him. The king, Nebuchadnezzar, your father—yes, the king, your father—made him master of the magicians, enchanters, Chaldeans, and soothsayers, + +because an excellent spirit, knowledge, understanding, interpreting of dreams, showing of dark sentences, and dissolving of doubts were found in the same Daniel, whom the king named Belteshazzar. Now let Daniel be called, and he will show the interpretation.” + +

+

Then Daniel was brought in before the king. The king spoke and said to Daniel, “Are you that Daniel of the children of the captivity of Judah, whom the king my father brought out of Judah? + +I have heard of you, that the spirit of the gods is in you and that light, understanding, and excellent wisdom are found in you. + +Now the wise men, the enchanters, have been brought in before me, that they should read this writing, and make known to me its interpretation; but they could not show the interpretation of the thing. + +But I have heard of you, that you can give interpretations and dissolve doubts. Now if you can read the writing and make known to me its interpretation, you shall be clothed with purple, and have a chain of gold around your neck, and shall be the third ruler in the kingdom.” + +

+

Then Daniel answered before the king, “Let your gifts be to yourself, and give your rewards to another. Nevertheless, I will read the writing to the king, and make known to him the interpretation. + +

+

To you, king, the Most High God gave Nebuchadnezzar your father the kingdom, and greatness, and glory, and majesty. + +Because of the greatness that he gave him, all the peoples, nations, and languages trembled and feared before him. He killed whom he wanted to, and he kept alive whom he wanted to. He raised up whom he wanted to, and he put down whom he wanted to. + +But when his heart was lifted up, and his spirit was hardened so that he dealt proudly, he was deposed from his kingly throne, and they took his glory from him. + +He was driven from the sons of men, and his heart was made like the animals’, and his dwelling was with the wild donkeys. He was fed with grass like oxen, and his body was wet with the dew of the sky, until he knew that the Most High God rules in the kingdom of men, and that he sets up over it whomever he will. + +

+

You, his son, Belshazzar, have not humbled your heart, though you knew all this, + +but have lifted up yourself against the Lord of heaven; and they have brought the vessels of his house before you, and you and your lords, your wives, and your concubines, have drunk wine from them. You have praised the gods of silver and gold, of bronze, iron, wood, and stone, which don’t see, or hear, or know; and you have not glorified the God in whose hand your breath is, and whose are all your ways. + +Then the part of the hand was sent from before him, and this writing was inscribed. + +

+

This is the writing that was inscribed: ‘MENE, MENE, TEKEL, UPHARSIN.’ + +

+

This is the interpretation of the thing: +

+

MENE: God has counted your kingdom, and brought it to an end. + +

+

TEKEL: you are weighed in the balances, and are found wanting. + +

+

PERES: your kingdom is divided, and given to the Medes and Persians.” + +

+

Then Belshazzar commanded, and they clothed Daniel with purple, and put a chain of gold about his neck, and made proclamation concerning him, that he should be the third ruler in the kingdom. + +

+

In that night Belshazzar the Chaldean King was slain. + +Darius the Mede received the kingdom, being about sixty-two years old. + +

+ + +

It pleased Darius to set over the kingdom one hundred twenty local governors, who should be throughout the whole kingdom; + +and over them three presidents, of whom Daniel was one, that these local governors might give account to them, and that the king should suffer no loss. + +Then this Daniel was distinguished above the presidents and the local governors, because an excellent spirit was in him; and the king thought to set him over the whole realm. + +

+

Then the presidents and the local governors sought to find occasion against Daniel as touching the kingdom; but they could find no occasion or fault, because he was faithful. There wasn’t any error or fault found in him. + +Then these men said, “We won’t find any occasion against this Daniel, unless we find it against him concerning the law of his God.” + +

+

Then these presidents and local governors assembled together to the king, and said this to him, “King Darius, live forever! + +All the presidents of the kingdom, the deputies and the local governors, the counselors and the governors, have consulted together to establish a royal statute and to make a strong decree, that whoever asks a petition of any god or man for thirty days, except of you, O king, he shall be cast into the den of lions. + +Now, O king, establish the decree and sign the writing, that it not be changed, according to the law of the Medes and Persians, which doesn’t alter.” + +Therefore King Darius signed the writing and the decree. + +

+

When Daniel knew that the writing was signed, he went into his house (now his windows were open in his room toward Jerusalem) and he kneeled on his knees three times a day, and prayed, and gave thanks before his God, as he did before. + +Then these men assembled together, and found Daniel making petition and supplication before his God. + +Then they came near, and spoke before the king concerning the king’s decree: “Haven’t you signed a decree that every man who makes a petition to any god or man within thirty days, except to you, O king, shall be cast into the den of lions?” +

+

The king answered, “This thing is true, according to the law of the Medes and Persians, which doesn’t alter.” + +

+

Then they answered and said before the king, “That Daniel, who is of the children of the captivity of Judah, doesn’t respect you, O king, nor the decree that you have signed, but makes his petition three times a day.” + +Then the king, when he heard these words, was very displeased, and set his heart on Daniel to deliver him; and he labored until the going down of the sun to rescue him. + +

+

Then these men assembled together to the king, and said to the king, “Know, O king, that it is a law of the Medes and Persians, that no decree nor statute which the king establishes may be changed.” + +

+

Then the king commanded, and they brought Daniel and cast him into the den of lions. The king spoke and said to Daniel, “Your God whom you serve continually, he will deliver you.” + +

+

A stone was brought, and laid on the mouth of the den; and the king sealed it with his own signet, and with the signet of his lords; that nothing might be changed concerning Daniel. + +Then the king went to his palace, and passed the night fasting. No musical instruments were brought before him; and his sleep fled from him. + +

+

Then the king arose very early in the morning, and went in haste to the den of lions. + +When he came near to the den to Daniel, he cried with a troubled voice. The king spoke and said to Daniel, “Daniel, servant of the living God, is your God, whom you serve continually, able to deliver you from the lions?” + +

+

Then Daniel said to the king, “O king, live forever! + +My God has sent his angel, and has shut the lions’ mouths, and they have not hurt me, because innocence was found in me before him; and also before you, O king, I have done no harm.” + +

+

Then the king was exceedingly glad, and commanded that they should take Daniel up out of the den. So Daniel was taken up out of the den, and no kind of harm was found on him, because he had trusted in his God. + +

+

The king commanded, and they brought those men who had accused Daniel, and they cast them into the den of lions—them, their children, and their wives; and the lions mauled them, and broke all their bones in pieces before they came to the bottom of the den. + +

+

Then King Darius wrote to all the peoples, nations, and languages who dwell in all the earth: +

+

“Peace be multiplied to you. + +

+

I make a decree that in all the dominion of my kingdom men tremble and fear before the God of Daniel. +

+For he is the living God, + +and steadfast forever. + +His kingdom is that which will not be destroyed. + +His dominion will be even to the end. + + +He delivers and rescues. + +He works signs and wonders in heaven and in earth, + +who has delivered Daniel from the power of the lions.” + + +

So this Daniel prospered in the reign of Darius and in the reign of Cyrus the Persian. + +

+ + +

In the first year of Belshazzar king of Babylon, Daniel had a dream and visions of his head while on his bed. Then he wrote the dream and told the sum of the matters. + +

+

Daniel spoke and said, “I saw in my vision by night, and, behold, the four winds of the sky broke out on the great sea. + +Four great animals came up from the sea, different from one another. + +

+

The first was like a lion, and had eagle’s wings. I watched until its wings were plucked, and it was lifted up from the earth and made to stand on two feet as a man. A man’s heart was given to it. + +

+

“Behold, there was another animal, a second, like a bear. It was raised up on one side, and three ribs were in its mouth between its teeth. They said this to it: ‘Arise! Devour much flesh!’ + +

+

“After this I saw, and behold, another, like a leopard, which had on its back four wings of a bird. The animal also had four heads; and dominion was given to it. + +

+

After this I saw in the night visions, and, behold, there was a fourth animal, awesome, powerful, and exceedingly strong. It had great iron teeth. It devoured and broke in pieces, and stamped the residue with its feet. It was different from all the animals that were before it. It had ten horns. + +

+

I considered the horns, and behold, there came up among them another horn, a little one, before which three of the first horns were plucked up by the roots; and behold, in this horn were eyes like the eyes of a man, and a mouth speaking arrogantly. + +

+I watched until thrones were placed, + +and one who was Ancient of Days sat. + +His clothing was white as snow, + +and the hair of his head like pure wool. + +His throne was fiery flames, + +and its wheels burning fire. + + +A fiery stream issued and came out from before him. + +Thousands of thousands ministered to him. + +Ten thousand times ten thousand stood before him. + +The judgment was set. + +The books were opened. + + +

I watched at that time because of the voice of the arrogant words which the horn spoke. I watched even until the animal was slain, and its body destroyed, and it was given to be burned with fire. + +As for the rest of the animals, their dominion was taken away; yet their lives were prolonged for a season and a time. + +

+

“I saw in the night visions, and behold, there came with the clouds of the sky one like a son of man, and he came even to the Ancient of Days, and they brought him near before him. + +Dominion was given him, and glory, and a kingdom, that all the peoples, nations, and languages should serve him. His dominion is an everlasting dominion, which will not pass away, and his kingdom one that will not be destroyed. + +

+

“As for me, Daniel, my spirit was grieved within my body, and the visions of my head troubled me. + +I came near to one of those who stood by, and asked him the truth concerning all this. +

+

So he told me, and made me know the interpretation of the things. + +These great animals, which are four, are four kings, who will arise out of the earth. + +But the saints of the Most High will receive the kingdom, and possess the kingdom forever, even forever and ever.’ + +

+

Then I desired to know the truth concerning the fourth animal, which was different from all of them, exceedingly terrible, whose teeth were of iron, and its nails of bronze; which devoured, broke in pieces, and stamped the residue with its feet; + +and concerning the ten horns that were on its head and the other horn which came up, and before which three fell, even that horn that had eyes and a mouth that spoke arrogantly, whose look was more stout than its fellows. + +I saw, and the same horn made war with the saints, and prevailed against them, + +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. + +

+

So he said, ‘The fourth animal will be a fourth kingdom on earth, which will be different from all the kingdoms, and will devour the whole earth, and will tread it down and break it in pieces. + +As for the ten horns, ten kings will arise out of this kingdom. Another will arise after them; and he will be different from the former, and he will put down three kings. + +He will speak words against the Most High, and will wear out the saints of the Most High. He will plan to change the times and the law; and they will be given into his hand until a time and times and half a time. + +

+

“‘But the judgment will be set, and they will take away his dominion, to consume and to destroy it to the end. + +The kingdom and the dominion, and the greatness of the kingdoms under the whole sky, will be given to the people of the saints of the Most High. His kingdom is an everlasting kingdom, and all dominions will serve and obey him.’ + +

+

“Here is the end of the matter. As for me, Daniel, my thoughts troubled me greatly, and my face was changed in me; but I kept the matter in my heart.” + +

+ + +

In the third year of the reign of King Belshazzar, a vision appeared to me, even to me, Daniel, after that which appeared to me at the first. + +I saw the vision. Now it was so, that when I saw, I was in the citadel of Susa, which is in the province of Elam. I saw in the vision, and I was by the river Ulai. + +Then I lifted up my eyes and saw, and behold, a ram which had two horns stood before the river. The two horns were high, but one was higher than the other, and the higher came up last. + +I saw the ram pushing westward, northward, and southward. No animals could stand before him. There wasn’t any who could deliver out of his hand, but he did according to his will, and magnified himself. + +

+

As I was considering, behold, a male goat came from the west over the surface of the whole earth, and didn’t touch the ground. The goat had a notable horn between his eyes. + +He came to the ram that had the two horns, which I saw standing before the river, and ran on him in the fury of his power. + +I saw him come close to the ram, and he was moved with anger against him, and struck the ram, and broke his two horns. There was no power in the ram to stand before him; but he cast him down to the ground and trampled on him. There was no one who could deliver the ram out of his hand. + +The male goat magnified himself exceedingly. When he was strong, the great horn was broken; and instead of it there came up four notable horns toward the four winds of the sky. + +

+

Out of one of them came out a little horn which grew exceedingly greattoward the south, and toward the east, and toward the glorious land. + +It grew great, even to the army of the sky; and it cast down some of the army and of the stars to the ground and trampled on them. + +Yes, it magnified itself, even to the prince of the army; and it took away from him the continual burnt offering, and the place of his sanctuary was cast down. + +The army was given over to it together with the continual burnt offering through disobedience. It cast down truth to the ground, and it did its pleasure and prospered. + +

+

Then I heard a holy one speaking; and another holy one said to that certain one who spoke, “How long will the vision about the continual burnt offering, and the disobedience that makes desolate, to give both the sanctuary and the army to be trodden under foot be?” + +

+

He said to me, “To two thousand and three hundred evenings and mornings. Then the sanctuary will be cleansed.” + +

+

When I, even I Daniel, had seen the vision, I sought to understand it. Then behold, there stood before me someone with the appearance of a man. + +I heard a man’s voice between the banks of the Ulai, which called and said, “Gabriel, make this man understand the vision.” + +

+

So he came near where I stood; and when he came, I was frightened, and fell on my face; but he said to me, “Understand, son of man, for the vision belongs to the time of the end.” + +

+

Now as he was speaking with me, I fell into a deep sleep with my face toward the ground; but he touched me and set me upright. + +

+

He said, “Behold, I will make you know what will be in the latter time of the indignation, for it belongs to the appointed time of the end. + +The ram which you saw, that had the two horns, they are the kings of Media and Persia. + +The rough male goat is the king of Greece. The great horn that is between his eyes is the first king. + +As for that which was broken, in the place where four stood up, four kingdoms will stand up out of the nation, but not with his power. + +

+

In the latter time of their kingdom, when the transgressors have come to the full, a king of fierce face, and understanding riddles, will stand up. + +His power will be mighty, but not by his own power. He will destroy awesomely, and will prosper in what he does. He will destroy the mighty ones and the holy people. + +Through his policy he will cause deceit to prosper in his hand. He will magnify himself in his heart, and he will destroy many in their security. He will also stand up against the prince of princes, but he will be broken without human hands. + +

+

The vision of the evenings and mornings which has been told is true; but seal up the vision, for it belongs to many days to come.” + +

+

I, Daniel, fainted, and was sick for some days. Then I rose up and did the king’s business. I wondered at the vision, but no one understood it. + +

+ + +

In the first year of Darius the son of Ahasuerus, of the offspring of the Medes, who was made king over the realm of the Chaldeans— + +in the first year of his reign I, Daniel, understood by the books the number of the years about which Yahweh’s9:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. + word came to Jeremiah the prophet for the accomplishing of the desolations of Jerusalem, even seventy years. + +I set my face to the Lord God, to seek by prayer and petitions, with fasting and sackcloth and ashes. + +

+

I prayed to Yahweh my God, and made confession, and said, +

+

“Oh, Lord, the great and dreadful God, who keeps covenant and loving kindness with those who love him and keep his commandments, + +we have sinned, and have dealt perversely, and have done wickedly, and have rebelled, even turning aside from your precepts and from your ordinances. + +We haven’t listened to your servants the prophets, who spoke in your name to our kings, our princes, and our fathers, and to all the people of the land. + +

+

“Lord, righteousness belongs to you, but to us confusion of face, as it is today; to the men of Judah, and to the inhabitants of Jerusalem, and to all Israel, who are near and who are far off, through all the countries where you have driven them, because of their trespass that they have trespassed against you. + +Lord, to us belongs confusion of face, to our kings, to our princes, and to our fathers, because we have sinned against you. + +To the Lord our God belong mercies and forgiveness, for we have rebelled against him. + +We haven’t obeyed Yahweh our God’s voice, to walk in his laws, which he set before us by his servants the prophets. + +Yes, all Israel have transgressed your law, turning aside, that they should not obey your voice. +

+

Therefore the curse and the oath written in the law of Moses the servant of God has been poured out on us, for we have sinned against him. + +He has confirmed his words, which he spoke against us and against our judges who judged us, by bringing on us a great evil; for under the whole sky, such has not been done as has been done to Jerusalem. + +As it is written in the law of Moses, all this evil has come on us. Yet we have not entreated the favor of Yahweh our God, that we should turn from our iniquities and have discernment in your truth. + +Therefore Yahweh has watched over the evil, and brought it on us; for Yahweh our God is righteous in all his works which he does, and we have not obeyed his voice. + +

+

Now, Lord our God, who has brought your people out of the land of Egypt with a mighty hand, and have gotten yourself renown, as it is today, we have sinned. We have done wickedly. + +Lord, according to all your righteousness, please let your anger and your wrath be turned away from your city Jerusalem, your holy mountain; because for our sins and for the iniquities of our fathers, Jerusalem and your people have become a reproach to all who are around us. + +

+

Now therefore, our God, listen to the prayer of your servant and to his petitions, and cause your face to shine on your sanctuary that is desolate, for the Lord’s sake. + +My God, turn your ear and hear. Open your eyes and see our desolations, and the city which is called by your name; for we do not present our petitions before you for our righteousness, but for your great merciessake. + +Lord, hear. Lord, forgive. Lord, listen and do. Don’t defer, for your own sake, my God, because your city and your people are called by your name.” + +

+ +

While I was speaking, praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before Yahweh my God for the holy mountain of my God— + +yes, while I was speaking in prayerthe 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 offering. + +He instructed me and talked with me, and said, “Daniel, I have now come to give you wisdom and understanding. + +At the beginning of your petitions the commandment went out, and I have come to tell you, for you are greatly beloved. Therefore consider the matter and understand the vision. + +

+

Seventy weeks are decreed on your people and on your holy city, to finish disobedience, to make an end of sins, to make reconciliation for iniquity, to bring in everlasting righteousness, to seal up vision and prophecy, and to anoint the most holy. + +

+

Know therefore and discern that from the going out of the commandment to restore and build Jerusalem to the Anointed One,9:25 +“Anointed One” can also be translated “Messiah” (same as “Christ”). the prince, will be seven weeks and sixty-two weeks. It will be built again, with street and moat, even in troubled times. + +After the sixty-two weeks the Anointed One9:26 +“Anointed One” can also be translated “Messiah” (same as “Christ”). will be cut off, and will have nothing. The people of the prince who come will destroy the city and the sanctuary. Its end will be with a flood, and war will be even to the end. Desolations are determined. + +He will make a firm covenant with many for one week. In the middle of the week he will cause the sacrifice and the offering to cease. On the wing of abominations will come one who makes desolate; and even to the decreed full end, wrath will be poured out on the desolate.” + +

+ + +

In the third year of Cyrus king of Persia a message was revealed to Daniel, whose name was called Belteshazzar; and the message was true, even a great warfare. He understood the message, and had understanding of the vision. + +

+

In those days I, Daniel, was mourning three whole weeks. + +I ate no pleasant food. No meat or wine came into my mouth. I didn’t anoint myself at all, until three whole weeks were fulfilled. + +

+

In the twenty-fourth day of the first month, as I was by the side of the great river, which is Hiddekel,10:4 +or, Tigris River + +I lifted up my eyes and looked, and behold, there was a man clothed in linen, whose waist was adorned with pure gold of Uphaz. + +His body also was like beryl, and his face as the appearance of lightning, and his eyes as flaming torches. His arms and his feet were like burnished bronze. The voice of his words was like the voice of a multitude. + +

+

I, Daniel, alone saw the vision, for the men who were with me didn’t see the vision, but a great quaking fell on them, and they fled to hide themselves. + +So I was left alone and saw this great vision. No strength remained in me; for my face grew deathly pale, and I retained no strength. + +Yet I heard the voice of his words. When I heard the voice of his words, then I fell into a deep sleep on my face, with my face toward the ground. + +

+

Behold, a hand touched me, which set me on my knees and on the palms of my hands. + +He said to me, “Daniel, you greatly beloved man, understand the words that I speak to you, and stand upright, for I have been sent to you, now.” When he had spoken this word to me, I stood trembling. + +

+

Then he said to me, “Don’t be afraid, Daniel; for from the first day that you set your heart to understand, and to humble yourself before your God, your words were heard. I have come for your wordssake. + +But the prince of the kingdom of Persia withstood me twenty-one days; but, behold, Michael, one of the chief princes, came to help me because I remained there with the kings of Persia. + +Now I have come to make you understand what will happen to your people in the latter days, for the vision is yet for many days.” + +

+

When he had spoken these words to me, I set my face toward the ground and was mute. + +Behold, one in the likeness of the sons of men touched my lips. Then I opened my mouth, and spoke and said to him who stood before me, “My lord, by reason of the vision my sorrows have overtaken me, and I retain no strength. + +For how can the servant of this my lord talk with this my lord? For as for me, immediately there remained no strength in me. There was no breath left in me.” + +

+

Then one like the appearance of a man touched me again, and he strengthened me. + +He said, “Greatly beloved man, don’t be afraid. Peace be to you. Be strong. Yes, be strong.” +

+

When he spoke to me, I was strengthened, and said, “Let my lord speak, for you have strengthened me.” + +

+

Then he said, “Do you know why I have come to you? Now I will return to fight with the prince of Persia. When I go out, behold, the prince of Greece will come. + +But I will tell you that which is inscribed in the writing of truth. There is no one who holds with me against these but Michael your prince. + +

+ + +

As for me, in the first year of Darius the Mede, I stood up to confirm and strengthen him. + +

+

Now I will show you the truth. Behold, three more kings will stand up in Persia. The fourth will be far richer than all of them. When he has grown strong through his riches, he will stir up all against the realm of Greece. + +A mighty king will stand up, who will rule with great dominion, and do according to his will. + +When he stands up, his kingdom will be broken and will be divided toward the four winds of the sky, but not to his posterity, nor according to his dominion with which he ruled; for his kingdom will be plucked up, even for others besides these. + +

+

The king of the south will be strong. One of his princes will become stronger than him, and have dominion. His dominion will be a great dominion. + +At the end of years they will join themselves together; and the daughter of the king of the south will come to the king of the north to make an agreement, but she will not retain the strength of her arm. He will also not stand, nor will his arm; but she will be given up, with those who brought her, and he who became the father of her, and he who strengthened her in those times. + +

+

But out of a shoot from her roots one will stand up in his place, who will come to the army and will enter into the fortress of the king of the north, and will deal against them and will prevail. + +He will also carry their gods with their molten images, and with their goodly vessels of silver and of gold, captive into Egypt. He will refrain some years from the king of the north. + +He will come into the realm of the king of the south, but he will return into his own land. + +His sons will wage war, and will assemble a multitude of great forces which will come on, and overflow, and pass through. They will return and wage war, even to his fortress. + +

+

The king of the south will be moved with anger and will come out and fight with him, even with the king of the north. He will send out a great multitude, and the multitude will be given into his hand. + +The multitude will be carried off, and his heart will be exalted. He will cast down tens of thousands, but he won’t prevail. + +The king of the north will return, and will send out a multitude greater than the former. He will come on at the end of the times, even of years, with a great army and with abundant supplies. + +

+

In those times many will stand up against the king of the south. Also the children of the violent among your people will lift themselves up to establish the vision, but they will fall. + +So the king of the north will come and cast up a mound, and take a well-fortified city. The forces of the south won’t stand, neither will his select troops, neither will there be any strength to stand. + +But he who comes against him will do according to his own will, and no one will stand before him. He will stand in the glorious land, and destruction will be in his hand. + +He will set his face to come with the strength of his whole kingdom, and with him equitable conditions. He will perform them. He will give him the daughter of women, to destroy the kingdom, but she will not stand, and won’t be for him. + +After this he will turn his face to the islands, and will take many, but a prince will cause the reproach offered by him to cease. Yes, moreover, he will cause his reproach to turn on him. + +Then he will turn his face toward the fortresses of his own land; but he will stumble and fall, and won’t be found. + +

+

Then one who will cause a tax collector to pass through the kingdom to maintain its glory will stand up in his place; but within few days he shall be destroyed, not in anger, and not in battle. + +

+

In his place a contemptible person will stand up, to whom they had not given the honor of the kingdom; but he will come in time of security, and will obtain the kingdom by flatteries. + +The overwhelming forces will be overwhelmed from before him, and will be broken. Yes, also the prince of the covenant. + +After the treaty made with him he will work deceitfully; for he will come up and will become strong with few people. + +In time of security he will come even on the fattest places of the province. He will do that which his fathers have not done, nor his fathers’ fathers. He will scatter among them prey, plunder, and wealth. Yes, he will devise his plans against the strongholds, but only for a time. + +

+

He will stir up his power and his courage against the king of the south with a great army; and the king of the south will wage war in battle with an exceedingly great and mighty army, but he won’t stand; for they will devise plans against him. + +Yes, those who eat of his delicacies will destroy him, and his army will be swept away. Many will fall down slain. + +As for both these kings, their hearts will be to do evil, and they will speak lies at one table; but it won’t prosper, for the end will still be at the appointed time. + +Then he will return into his land with great wealth. His heart will be against the holy covenant. He will take action, and return to his own land. + +

+

He will return at the appointed time and come into the south; but it won’t be in the latter time as it was in the former. + +For ships of Kittim will come against him. Therefore he will be grieved, and will return, and have indignation against the holy covenant, and will take action. He will even return, and have regard to those who forsake the holy covenant. + +

+

Forces from him will profane the sanctuary, even the fortress, and will take away the continual burnt offering. Then they will set up the abomination that makes desolate. + +He will corrupt those who do wickedly against the covenant by flatteries; but the people who know their God will be strong and take action. + +

+

Those who are wise among the people will instruct many; yet they will fall by the sword and by flame, by captivity and by plunder, many days. + +Now when they fall, they will be helped with a little help; but many will join themselves to them with flatteries. + +Some of those who are wise will fallto refine them, and to purify, and to make them white, even to the time of the end, because it is yet for the time appointed. + +

+

The king will do according to his will. He will exalt himself and magnify himself above every god, and will speak marvelous things against the God of gods. He will prosper until the indignation is accomplished, for that which is determined will be done. + +He won’t regard the gods of his fathers, or the desire of women, or regard any god; for he will magnify himself above all. + +But in their place, he will honor the god of fortresses. He will honor a god whom his fathers didn’t know with gold, silver, and with precious stones and pleasant things. + +He will deal with the strongest fortresses by the help of a foreign god. He will increase with glory whoever acknowledges him. He will cause them to rule over many, and will divide the land for a price. + +

+

At the time of the end the king of the south will contend with him; and the king of the north will come against him like a whirlwind, with chariots, with horsemen, and with many ships. He will enter into the countries, and will overflow and pass through. + +He will enter also into the glorious land, and many countries will be overthrown; but these will be delivered out of his hand: Edom, Moab, and the chief of the children of Ammon. + +He will also stretch out his hand on the countries. The land of Egypt won’t escape. + +But he will have power over the treasures of gold and of silver, and over all the precious things of Egypt. The Libyans and the Ethiopians will follow his steps. + +But news out of the east and out of the north will trouble him; and he will go out with great fury to destroy and utterly to sweep away many. + +He will plant the tents of his palace between the sea and the glorious holy mountain; yet he will come to his end, and no one will help him. + +

+ + +

At that time Michael will stand up, the great prince who stands for the children of your people; and there will be a time of trouble, such as never was since there was a nation even to that same time. At that time your people will be delivered, everyone who is found written in the book. + +Many of those who sleep in the dust of the earth will awake, some to everlasting life, and some to shame and everlasting contempt. + +Those who are wise will shine as the brightness of the expanse. Those who turn many to righteousness will shine as the stars forever and ever. + +But you, Daniel, shut up the words and seal the book, even to the time of the end. Many will run back and forth, and knowledge will be increased.” + +

+

Then I, Daniel, looked, and behold, two others stood, one on the river bank on this side, and the other on the river bank on that side. + +One said to the man clothed in linen, who was above the waters of the river, “How long will it be to the end of these wonders?” + +

+

I heard the man clothed in linen, who was above the waters of the river, when he held up his right hand and his left hand to heaven, and swore by him who lives forever that it will be for a time, times, and a half; and when they have finished breaking in pieces the power of the holy people, all these things will be finished. + +

+

I heard, but I didn’t understand. Then I said, “My lord, what will be the outcome of these things?” + +

+

He said, “Go your way, Daniel; for the words are shut up and sealed until the time of the end. + +Many will purify themselves, and make themselves white, and be refined, but the wicked will do wickedly; and none of the wicked will understand, but those who are wise will understand. + +

+

From the time that the continual burnt offering is taken away and the abomination that makes desolate set up, there will be one thousand two hundred ninety days. + +Blessed is he who waits, and comes to the one thousand three hundred thirty-five days. + +

+

But go your way until the end; for you will rest, and will stand in your inheritance at the end of the days.” + +

+
+28-HOS-web.sfm World English Bible (WEB) +Hosea +The Book of Hosea +Hosea +Hos +

The Book of +

+

Hosea +

+ + +

Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word that came to 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. + +

+

When Yahweh spoke at first by Hosea, Yahweh said to Hosea, “Go, take for yourself a wife of prostitution and children of unfaithfulness; for the land commits great adultery, forsaking Yahweh.” + +

+

So he went and took Gomer the daughter of Diblaim; and she conceived, and bore him a son. + +

+

Yahweh said to him, “Call his name Jezreel, for yet a little while, and I will avenge the blood of Jezreel on the house of Jehu, and will cause the kingdom of the house of Israel to cease. + +It will happen in that day that I will break the bow of Israel in the valley of Jezreel.” + +

+

She conceived again, and bore a daughter. +

+

Then he said to him, “Call her name Lo-Ruhamah,1:6 +Lo-Ruhamah means “not loved”. for I will no longer have mercy on the house of Israel, that I should in any way pardon them. + +But I will have mercy on the house of Judah, and will save them by Yahweh their God,1:7 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). and will not save them by bow, sword, battle, horses, or horsemen.” + +

+

Now when she had weaned Lo-Ruhamah, she conceived, and bore a son. + +

+

He said, “Call his name Lo-Ammi,1:9 +Lo-Ammi means “not my people”. for you are not my people, and I will not be yours. + +Yet the number of the children of Israel will be as the sand of the sea, which can’t be measured or counted; and it will come to pass that, in the place where it was said to them, ‘You are not my people,’ they will be called ‘sons of the living God.’ + +The children of Judah and the children of Israel will be gathered together, and they will appoint themselves one head, and will go up from the land; for great will be the day of Jezreel. + +

+ + +

Say to your brothers, ‘My people!’2:1 +‘Ammi’ in Hebrew +

+and to your sisters, ‘My loved one!’2:1 +‘Ruhamah’ in Hebrew + + +Contend with your mother! + +Contend, for she is not my wife, + +neither am I her husband; + +and let her put away her prostitution from her face, + +and her adulteries from between her breasts; + + +lest I strip her naked, + +and make her bare as in the day that she was born, + +and make her like a wilderness, + +and set her like a dry land, + +and kill her with thirst. + + +Indeed, on her children I will have no mercy, + +for they are children of unfaithfulness. + + +For their mother has played the prostitute. + +She who conceived them has done shamefully; + +for she said, ‘I will go after my lovers, + +who give me my bread and my water, + +my wool and my flax, + +my oil and my drink.’ + + +Therefore behold,2:6 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I will hedge up your way with thorns, + +and I will build a wall against her, + +that she can’t find her way. + + +She will follow after her lovers, + +but she won’t overtake them; + +and she will seek them, + +but won’t find them. + +Then she will say, ‘I will go and return to my first husband, + +for then it was better with me than now.’ + + +For she didn’t know that I gave her the grain, the new wine, and the oil, + +and multiplied to her silver and gold, which they used for Baal. + + +Therefore I will take back my grain in its time, + +and my new wine in its season, + +and will pluck away my wool and my flax which should have covered her nakedness. + + +Now I will uncover her lewdness in the sight of her lovers, + +and no one will deliver her out of my hand. + + +I will also cause all her celebrations to cease: + +her feasts, her new moons, her Sabbaths, and all her solemn assemblies. + + +I will lay waste her vines and her fig trees, + +about which she has said, ‘These are my wages that my lovers have given me,’ + +and I will make them a forest, + +and the animals of the field shall eat them. + + +I will visit on her the days of the Baals, + +to which she burned incense + +when she decked herself with her earrings and her jewels, + +and went after her lovers + +and forgot me,” says Yahweh. + + +“Therefore behold, I will allure her, + +and bring her into the wilderness, + +and speak tenderly to her. + + +I will give her vineyards from there, + +and the valley of Achor for a door of hope; + +and she will respond there + +as in the days of her youth, + +and as in the day when she came up out of the land of Egypt. + + +It will be in that day,” says Yahweh, + +that you will call memy husband,’ + +and no longer call memy master.’ + + +For I will take away the names of the Baals out of her mouth, + +and they will no longer be mentioned by name. + + +In that day I will make a covenant for them with the animals of the field, + +and with the birds of the sky, + +and with the creeping things of the ground. + +I will break the bow, the sword, and the battle out of the land, + +and will make them lie down safely. + + +I will betroth you to me forever. + +Yes, I will betroth you to me in righteousness, in justice, in loving kindness, and in compassion. + + +I will even betroth you to me in faithfulness; + +and you shall know Yahweh. + + +It will happen in that day, that I will respond,” says Yahweh. + +“I will respond to the heavens, + +and they will respond to the earth; + + +and the earth will respond to the grain, and the new wine, and the oil; + +and they will respond to Jezreel. + + +I will sow her to me in the earth; + +and I will have mercy on her who had not obtained mercy; + +and I will tell those who were not my people, ‘You are my people;’ + +and they will say, ‘You are My God!’” + + + + +

Yahweh said to me, “Go again, love a woman loved by another, and an adulteress, even as Yahweh loves the children of Israel, though they turn to other gods, and love cakes of raisins.” + +

+

So I bought her for myself for fifteen pieces of silver and a homer3:2 +1 homer is about 220 liters or 6 bushels and a half of barley. + +I said to her, “You shall stay with me many days. You shall not play the prostitute, and you shall not be with any other man. I will also be so toward you.” + +

+

For the children of Israel shall live many days without king, without prince, without sacrifice, without sacred stone, and without ephod or idols. + +Afterward the children of Israel shall return and seek Yahweh their God, and David their king, and shall come with trembling to Yahweh and to his blessings in the last days. + +

+ + +

Hear Yahweh’s word, you children of Israel, +

+for Yahweh has a charge against the inhabitants of the land: + +Indeed there is no truth, nor goodness, + +nor knowledge of God in the land. + + +There is cursing, lying, murder, stealing, and committing adultery; + +they break boundaries, and bloodshed causes bloodshed. + + +Therefore the land will mourn, + +and everyone who dwells in it will waste away, + +with all living things in her, + +even the animals of the field and the birds of the sky; + +yes, the fish of the sea also die. + + + +Yet let no man bring a charge, neither let any man accuse; + +for your people are like those who bring charges against a priest. + + +You will stumble in the day, + +and the prophet will also stumble with you in the night; + +and I will destroy your mother. + + +My people are destroyed for lack of knowledge. + +Because you have rejected knowledge, I will also reject you, + +that you may be no priest to me. + +Because you have forgotten your God’s law, + +I will also forget your children. + + +As they were multiplied, so they sinned against me. + +I will change their glory into shame. + + +They feed on the sin of my people, + +and set their heart on their iniquity. + + +It will be like people, like priest; + +and I will punish them for their ways, + +and will repay them for their deeds. + + +They will eat, and not have enough. + +They will play the prostitute, and will not increase; + +because they have abandoned listening to Yahweh. + + +Prostitution, wine, and new wine take away understanding. + + +My people consult with their wooden idol, + +and answer to a stick of wood. + +Indeed the spirit of prostitution has led them astray, + +and they have been unfaithful to their God. + + +They sacrifice on the tops of the mountains, + +and burn incense on the hills, under oaks, poplars, and terebinths, + +because its shade is good. + +Therefore your daughters play the prostitute, + +and your brides commit adultery. + + +I will not punish your daughters when they play the prostitute, + +nor your brides when they commit adultery; + +because the men consort with prostitutes, + +and they sacrifice with the shrine prostitutes; + +so the people without understanding will come to ruin. + + + +“Though you, Israel, play the prostitute, + +yet don’t let Judah offend; + +and don’t come to Gilgal, + +neither go up to Beth Aven, + +nor swear, ‘As Yahweh lives.’ + + +For Israel has behaved extremely stubbornly, like a stubborn heifer. + +Then how will Yahweh feed them like a lamb in a meadow? + + +Ephraim is joined to idols. + +Leave him alone! + + +Their drink has become sour. + +They play the prostitute continually. + +Her rulers dearly love their shameful way. + + +The wind has wrapped her up in its wings; + +and they shall be disappointed because of their sacrifices. + + + + + +

Listen to this, you priests! +

+Listen, house of Israel, + +and give ear, house of the king! + +For the judgment is against you; + +for you have been a snare at Mizpah, + +and a net spread on Tabor. + + +The rebels are deep in slaughter, + +but I discipline all of them. + + +I know Ephraim, + +and Israel is not hidden from me; + +for now, Ephraim, you have played the prostitute. + +Israel is defiled. + + +Their deeds won’t allow them to turn to their God, + +for the spirit of prostitution is within them, + +and they don’t know Yahweh. + + +The pride of Israel testifies to his face. + +Therefore Israel and Ephraim will stumble in their iniquity. + +Judah also will stumble with them. + + +They will go with their flocks and with their herds to seek Yahweh, + +but they won’t find him. + +He has withdrawn himself from them. + + +They are unfaithful to Yahweh; + +for they have borne illegitimate children. + +Now the new moon will devour them with their fields. + + + +Blow the cornet in Gibeah, + +and the trumpet in Ramah! + +Sound a battle cry at Beth Aven, behind you, Benjamin! + + +Ephraim will become a desolation in the day of rebuke. + +Among the tribes of Israel, I have made known that which will surely be. + + +The princes of Judah are like those who remove a landmark. + +I will pour out my wrath on them like water. + + +Ephraim is oppressed, + +he is crushed in judgment, + +because he is intent in his pursuit of idols. + + +Therefore I am to Ephraim like a moth, + +and to the house of Judah like rottenness. + + + +When Ephraim saw his sickness, + +and Judah his wound, + +then Ephraim went to Assyria, + +and sent to King Jareb: + +but he is not able to heal you, + +neither will he cure you of your wound. + + +For I will be to Ephraim like a lion, + +and like a young lion to the house of Judah. + +I myself will tear in pieces and go away. + +I will carry off, and there will be no one to deliver. + + +I will go and return to my place, + +until they acknowledge their offense, + +and seek my face. + +In their affliction they will seek me earnestly.” + + + + + +

Come! Let’s return to Yahweh; +

+for he has torn us to pieces, + +and he will heal us; + +he has injured us, + +and he will bind up our wounds. + + +After two days he will revive us. + +On the third day he will raise us up, + +and we will live before him. + + +Let’s acknowledge Yahweh. + +Let’s press on to know Yahweh. + +As surely as the sun rises, + +Yahweh will appear. + +He will come to us like the rain, + +like the spring rain that waters the earth.” + + + +“Ephraim, what shall I do to you? + +Judah, what shall I do to you? + +For your love is like a morning cloud, + +and like the dew that disappears early. + + +Therefore I have cut them to pieces with the prophets; + +I killed them with the words of my mouth. + +Your judgments are like a flash of lightning. + + +For I desire mercy, and not sacrifice; + +and the knowledge of God more than burnt offerings. + + +But they, like Adam, have broken the covenant. + +They were unfaithful to me there. + + +Gilead is a city of those who work iniquity; + +it is stained with blood. + + +As gangs of robbers wait to ambush a man, + +so the company of priests murder on the path toward Shechem, + +committing shameful crimes. + + +In the house of Israel I have seen a horrible thing. + +There is prostitution in Ephraim. + +Israel is defiled. + + + +Also, Judah, there is a harvest appointed for you, + +when I restore the fortunes of my people. + + + + +

When I would heal Israel, +

+then the iniquity of Ephraim is uncovered, + +also the wickedness of Samaria; + +for they commit falsehood, + +and the thief enters in, + +and the gang of robbers ravages outside. + + +They don’t consider in their hearts that I remember all their wickedness. + +Now their own deeds have engulfed them. + +They are before my face. + + +They make the king glad with their wickedness, + +and the princes with their lies. + + +They are all adulterers. + +They are burning like an oven that the baker stops stirring, + +from the kneading of the dough, until it is leavened. + + +On the day of our king, the princes made themselves sick with the heat of wine. + +He joined his hand with mockers. + + +For they have prepared their heart like an oven, + +while they lie in wait. + +Their anger smolders all night. + +In the morning it burns as a flaming fire. + + +They are all hot as an oven, + +and devour their judges. + +All their kings have fallen. + +There is no one among them who calls to me. + + +Ephraim mixes himself among the nations. + +Ephraim is a pancake not turned over. + + +Strangers have devoured his strength, + +and he doesn’t realize it. + +Indeed, gray hairs are here and there on him, + +and he doesn’t realize it. + + +The pride of Israel testifies to his face; + +yet they haven’t returned to Yahweh their God, + +nor sought him, for all this. + + + +“Ephraim is like an easily deceived dove, without understanding. + +They call to Egypt. + +They go to Assyria. + + +When they go, I will spread my net on them. + +I will bring them down like the birds of the sky. + +I will chastise them, as their congregation has heard. + + +Woe to them! + +For they have wandered from me. + +Destruction to them! + +For they have trespassed against me. + +Though I would redeem them, + +yet they have spoken lies against me. + + +They haven’t cried to me with their heart, + +but they howl on their beds. + +They assemble themselves for grain and new wine. + +They turn away from me. + + +Though I have taught and strengthened their arms, + +yet they plot evil against me. + + +They return, but not to the Most High. + +They are like a faulty bow. + +Their princes will fall by the sword for the rage of their tongue. + +This will be their derision in the land of Egypt. + + + + + +

Put the trumpet to your lips! +

+Something like an eagle is over Yahweh’s house, + +because they have broken my covenant + +and rebelled against my law. + + +They cry to me, ‘My God, we, Israel, acknowledge you!’ + + +Israel has cast off that which is good. + +The enemy will pursue him. + + +They have set up kings, but not by me. + +They have made princes, and I didn’t approve. + +Of their silver and their gold they have made themselves idols, + +that they may be cut off. + + +Let Samaria throw out his calf idol! + +My anger burns against them! + +How long will it be until they are capable of purity? + + +For this is even from Israel! + +The workman made it, and it is no God; + +indeed, the calf of Samaria shall be broken in pieces. + + +For they sow the wind, + +and they will reap the whirlwind. + +He has no standing grain. + +The stalk will yield no head. + +If it does yield, strangers will swallow it up. + + +Israel is swallowed up. + +Now they are among the nations like a worthless thing. + + +For they have gone up to Assyria, + +like a wild donkey wandering alone. + +Ephraim has hired lovers for himself. + + +But although they sold themselves among the nations, + +I will now gather them; + +and they begin to waste away because of the oppression of the king of mighty ones. + + +Because Ephraim has multiplied altars for sinning, + +they became for him altars for sinning. + + +I wrote for him the many things of my law, + +but they were regarded as a strange thing. + + +As for the sacrifices of my offerings, + +they sacrifice meat and eat it, + +but Yahweh doesn’t accept them. + +Now he will remember their iniquity, + +and punish their sins. + +They will return to Egypt. + + +For Israel has forgotten his Maker and built palaces; + +and Judah has multiplied fortified cities; + +but I will send a fire on his cities, + +and it will devour its fortresses.” + + + + + +

Don’t rejoice, Israel, to jubilation like the nations; +

+for you were unfaithful to your God. + +You love the wages of a prostitute at every grain threshing floor. + + +The threshing floor and the wine press won’t feed them, + +and the new wine will fail her. + + +They won’t dwell in Yahweh’s land; + +but Ephraim will return to Egypt, + +and they will eat unclean food in Assyria. + + +They won’t pour out wine offerings to Yahweh, + +neither will they be pleasing to him. + +Their sacrifices will be to them like the bread of mourners; + +all who eat of it will be polluted; + +for their bread will be for their appetite. + +It will not come into Yahweh’s house. + + +What will you do in the day of solemn assembly, + +and in the day of the feast of Yahweh? + + +For, behold, when they flee destruction, + +Egypt will gather them up. + +Memphis will bury them. + +Nettles will possess their pleasant things of silver. + +Thorns will be in their tents. + + +The days of visitation have come. + +The days of reckoning have come. + +Israel will consider the prophet to be a fool, + +and the man who is inspired to be insane, + +because of the abundance of your sins, + +and because your hostility is great. + + +A prophet watches over Ephraim with my God. + +A fowler’s snare is on all of his paths, + +and hostility in the house of his God. + + +They have deeply corrupted themselves, + +as in the days of Gibeah. + +He will remember their iniquity. + +He will punish them for their sins. + + +I found Israel like grapes in the wilderness. + +I saw your fathers as the first ripe in the fig tree at its first season; + +but they came to Baal Peor, and consecrated themselves to the shameful thing, + +and became abominable like that which they loved. + + +As for Ephraim, their glory will fly away like a bird. + +There will be no birth, no one with child, and no conception. + + +Though they bring up their children, + +yet I will bereave them, so that not a man shall be left. + +Indeed, woe also to them when I depart from them! + + +I have seen Ephraim, like Tyre, planted in a pleasant place; + +but Ephraim will bring out his children to the murderer. + + +Give themYahweh what will you give? + +Give them a miscarrying womb and dry breasts. + + + +All their wickedness is in Gilgal; + +for there I hated them. + +Because of the wickedness of their deeds, I will drive them out of my house! + +I will love them no more. + +All their princes are rebels. + + +Ephraim is struck. + +Their root has dried up. + +They will bear no fruit. + +Even though they give birth, yet I will kill the beloved ones of their womb.” + + + +My God will cast them away, because they didn’t listen to him; + +and they will be wanderers among the nations. + + + + +

Israel is a luxuriant vine that produces his fruit. +

+According to the abundance of his fruit he has multiplied his altars. + +As their land has prospered, they have adorned their sacred stones. + + +Their heart is divided. + +Now they will be found guilty. + +He will demolish their altars. + +He will destroy their sacred stones. + + +Surely now they will say, “We have no king; for we don’t fear Yahweh; + +and the king, what can he do for us?” + + +They make promises, swearing falsely in making covenants. + +Therefore judgment springs up like poisonous weeds in the furrows of the field. + + +The inhabitants of Samaria will be in terror for the calves of Beth Aven, + +for its people will mourn over it, + +along with its priests who rejoiced over it, + +for its glory, because it has departed from it. + + +It also will be carried to Assyria for a present to a great king. + +Ephraim will receive shame, + +and Israel will be ashamed of his own counsel. + + +Samaria and her king float away + +like a twig on the water. + + +The high places also of Aven, the sin of Israel, will be destroyed. + +The thorn and the thistle will come up on their altars. + +They will tell the mountains, “Cover us!” and the hills, “Fall on us!” + + + +Israel, you have sinned from the days of Gibeah. + +There they remained. + +The battle against the children of iniquity doesn’t overtake them in Gibeah. + + +When it is my desire, I will chastise them; + +and the nations will be gathered against them + +when they are bound to their two transgressions. + + +Ephraim is a trained heifer that loves to thresh, + +so I will put a yoke on her beautiful neck. + +I will set a rider on Ephraim. + +Judah will plow. + +Jacob will break his clods. + + +Sow to yourselves in righteousness, + +reap according to kindness. + +Break up your fallow ground, + +for it is time to seek Yahweh, + +until he comes and rains righteousness on you. + + +You have plowed wickedness. + +You have reaped iniquity. + +You have eaten the fruit of lies, + +for you trusted in your way, in the multitude of your mighty men. + + +Therefore a battle roar will arise among your people, + +and all your fortresses will be destroyed, + +as Shalman destroyed Beth Arbel in the day of battle. + +The mother was dashed in pieces with her children. + + +So Bethel will do to you because of your great wickedness. + +At daybreak the king of Israel will be destroyed. + + + + + +

When Israel was a child, then I loved him, +

+and called my son out of Egypt. + + +They called to them, so they went from them. + +They sacrificed to the Baals, + +and burned incense to engraved images. + + +Yet I taught Ephraim to walk. + +I took them by their arms, + +but they didn’t know that I healed them. + + +I drew them with cords of a man, with ties of love; + +and I was to them like those who lift up the yoke on their necks; + +and I bent down to him and I fed him. + + + +They won’t return into the land of Egypt; + +but the Assyrian will be their king, + +because they refused to repent. + + +The sword will fall on their cities, + +and will destroy the bars of their gates, + +and will put an end to their plans. + + +My people are determined to turn from me. + +Though they call to the Most High, + +he certainly won’t exalt them. + + + +“How can I give you up, Ephraim? + +How can I hand you over, Israel? + +How can I make you like Admah? + +How can I make you like Zeboiim? + +My heart is turned within me, + +my compassion is aroused. + + +I will not execute the fierceness of my anger. + +I will not return to destroy Ephraim, + +for I am God, and not man—the Holy One among you. + +I will not come in wrath. + + +They will walk after Yahweh, + +who will roar like a lion; + +for he will roar, and the children will come trembling from the west. + + +They will come trembling like a bird out of Egypt, + +and like a dove out of the land of Assyria; + +and I will settle them in their houses,” says Yahweh. + + + +Ephraim surrounds me with falsehood, + +and the house of Israel with deceit. + +Judah still strays from God, + +and is unfaithful to the Holy One. + + + + +

Ephraim feeds on wind, +

+and chases the east wind. + +He continually multiplies lies and desolation. + +They make a covenant with Assyria, + +and oil is carried into Egypt. + + +Yahweh also has a controversy with Judah, + +and will punish Jacob according to his ways; + +according to his deeds he will repay him. + + +In the womb he took his brother by the heel, + +and in his manhood he contended with God. + + +Indeed, he struggled with the angel, and prevailed; + +he wept, and made supplication to him. + +He found him at Bethel, and there he spoke with us— + + +even Yahweh, the God of Armies. + +Yahweh is his name of renown! + + +Therefore turn to your God. + +Keep kindness and justice, + +and wait continually for your God. + + + +A merchant has dishonest scales in his hand. + +He loves to defraud. + + +Ephraim said, “Surely I have become rich. + +I have found myself wealth. + +In all my wealth they won’t find in me any iniquity that is sin.” + + + +But I am Yahweh your God from the land of Egypt. + +I will yet again make you dwell in tents, + +as in the days of the solemn feast. + + +I have also spoken to the prophets, + +and I have multiplied visions; + +and by the ministry of the prophets I have used parables. + + +If Gilead is wicked, + +surely they are worthless. + +In Gilgal they sacrifice bulls. + +Indeed, their altars are like heaps in the furrows of the field. + + +Jacob fled into the country of Aram. + +Israel served to get a wife. + +For a wife he tended flocks and herds. + + +By a prophet Yahweh brought Israel up out of Egypt, + +and by a prophet he was preserved. + + +Ephraim has bitterly provoked anger. + +Therefore his blood will be left on him, + +and his Lord12:14 +The word translated “Lord” is “Adonai.” will repay his contempt. + + + + +

When Ephraim spoke, there was trembling. +

+He exalted himself in Israel, + +but when he became guilty through Baal, he died. + + +Now they sin more and more, + +and have made themselves molten images of their silver, + +even idols according to their own understanding, + +all of them the work of the craftsmen. + +They say of them, ‘They offer human sacrifice and kiss the calves.’ + + +Therefore they will be like the morning mist, + +like the dew that passes away early, + +like the chaff that is driven with the whirlwind out of the threshing floor, + +and like the smoke out of the chimney. + + + +Yet I am Yahweh your God from the land of Egypt; + +and you shall acknowledge no god but me, + +and besides me there is no savior. + + +I knew you in the wilderness, + +in the land of great drought. + + +According to their pasture, so were they filled; + +they were filled, and their heart was exalted. + +Therefore they have forgotten me. + + +Therefore I am like a lion to them. + +Like a leopard, I will lurk by the path. + + +I will meet them like a bear that is bereaved of her cubs, + +and will tear the covering of their heart. + +There I will devour them like a lioness. + +The wild animal will tear them. + + +You are destroyed, Israel, because you are against me, + +against your helper. + + +Where is your king now, that he may save you in all your cities? + +And your judges, of whom you said, ‘Give me a king and princes’? + + +I have given you a king in my anger, + +and have taken him away in my wrath. + + +The guilt of Ephraim is stored up. + +His sin is stored up. + + +The sorrows of a travailing woman will come on him. + +He is an unwise son, + +for when it is time, he doesn’t come to the opening of the womb. + + +I will ransom them from the power of Sheol.13:14 +Sheol is the place of the dead. + +I will redeem them from death! + +Death, where are your plagues? + +Sheol, where is your destruction? + + +Compassion will be hidden from my eyes. + + +Though he is fruitful among his brothers, an east wind will come, + +the breath of Yahweh coming up from the wilderness; + +and his spring will become dry, + +and his fountain will be dried up. + +He will plunder the storehouse of treasure. + + +Samaria will bear her guilt, + +for she has rebelled against her God. + +They will fall by the sword. + +Their infants will be dashed in pieces, + +and their pregnant women will be ripped open.” + + + + + +Israel, return to Yahweh your God; + +for you have fallen because of your sin. + + +Take words with you, and return to Yahweh. + +Tell him, “Forgive all our sins, + +and accept that which is good; + +so we offer bulls as we vowed of our lips. + + +Assyria can’t save us. + +We won’t ride on horses; + +neither will we say any more to the work of our hands, ‘Our gods!’ + +for in you the fatherless finds mercy.” + + + +I will heal their waywardness. + +I will love them freely; + +for my anger is turned away from them. + + +I will be like the dew to Israel. + +He will blossom like the lily, + +and send down his roots like Lebanon. + + +His branches will spread, + +and his beauty will be like the olive tree, + +and his fragrance like Lebanon. + + +Men will dwell in his shade. + +They will revive like the grain, + +and blossom like the vine. + +Their fragrance will be like the wine of Lebanon. + + +Ephraim, what have I to do any more with idols? + +I answer, and will take care of him. + +I am like a green cypress tree; + +from me your fruit is found.” + + + +Who is wise, that he may understand these things? + +Who is prudent, that he may know them? + +For the ways of Yahweh are right, + +and the righteous walk in them, + +but the rebellious stumble in them. + + +
+29-JOL-web.sfm World English Bible (WEB) +Joel +The Book of Joel +Joel +Jol +

The Book of +

+

Joel +

+ + +

Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word that came to Joel, the son of Pethuel. + +

+Hear this, you elders, + +and listen, all you inhabitants of the land! + +Has this ever happened in your days, + +or in the days of your fathers? + + +Tell your children about it, + +and have your children tell their children, + +and their children, another generation. + + +What the swarming locust has left, the great locust has eaten. + +What the great locust has left, the grasshopper has eaten. + +What the grasshopper has left, the caterpillar has eaten. + + +Wake up, you drunkards, and weep! + +Wail, all you drinkers of wine, because of the sweet wine, + +for it is cut off from your mouth. + + +For a nation has come up on my land, strong, and without number. + +His teeth are the teeth of a lion, + +and he has the fangs of a lioness. + + +He has laid my vine waste, + +and stripped my fig tree. + +He has stripped its bark, and thrown it away. + +Its branches are made white. + + +Mourn like a virgin dressed in sackcloth + +for the husband of her youth! + + +The meal offering and the drink offering are cut off from Yahweh’s house. + +The priests, Yahweh’s ministers, mourn. + + +The field is laid waste. + +The land mourns, for the grain is destroyed, + +The new wine has dried up, + +and the oil languishes. + + +Be confounded, you farmers! + +Wail, you vineyard keepers, + +for the wheat and for the barley; + +for the harvest of the field has perished. + + +The vine has dried up, and the fig tree withered— + +the pomegranate tree, the palm tree also, and the apple tree, + +even all of the trees of the field are withered; + +for joy has withered away from the sons of men. + + +Put on sackcloth and mourn, you priests! + +Wail, you ministers of the altar. + +Come, lie all night in sackcloth, you ministers of my God,1:13 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + +for the meal offering and the drink offering are withheld from your God’s house. + + +Sanctify a fast. + +Call a solemn assembly. + +Gather the elders and all the inhabitants of the land to the house of Yahweh, your God, + +and cry to Yahweh. + + +Alas for the day! + +For the day of Yahweh is at hand, + +and it will come as destruction from the Almighty. + + +Isn’t the food cut off before our eyes, + +joy and gladness from the house of our God? + + +The seeds rot under their clods. + +The granaries are laid desolate. + +The barns are broken down, for the grain has withered. + + +How the animals groan! + +The herds of livestock are perplexed, because they have no pasture. + +Yes, the flocks of sheep are made desolate. + + +Yahweh, I cry to you, + +for the fire has devoured the pastures of the wilderness, + +and the flame has burned all the trees of the field. + + +Yes, the animals of the field pant to you, + +for the water brooks have dried up, + +and the fire has devoured the pastures of the wilderness. + + + + + +Blow the trumpet in Zion, + +and sound an alarm in my holy mountain! + +Let all the inhabitants of the land tremble, + +for the day of Yahweh comes, + +for it is close at hand: + + +A day of darkness and gloominess, + +a day of clouds and thick darkness. + +As the dawn spreading on the mountains, + +a great and strong people; + +there has never been the like, + +neither will there be any more after them, + +even to the years of many generations. + + +A fire devours before them, + +and behind them, a flame burns. + +The land is as the garden of Eden before them, + +and behind them, a desolate wilderness. + +Yes, and no one has escaped them. + + +Their appearance is as the appearance of horses, + +and they run as horsemen. + + +Like the noise of chariots on the tops of the mountains, they leap, + +like the noise of a flame of fire that devours the stubble, + +like a strong people set in battle array. + + +At their presence the peoples are in anguish. + +All faces have grown pale. + + +They run like mighty men. + +They climb the wall like warriors. + +They each march in his line, and they don’t swerve off course. + + +One doesn’t jostle another. + +They each march in their own path. + +They burst through the defenses + +and don’t break ranks. + + +They rush on the city. + +They run on the wall. + +They climb up into the houses. + +They enter in at the windows like thieves. + + +The earth quakes before them. + +The heavens tremble. + +The sun and the moon are darkened, + +and the stars withdraw their shining. + + +Yahweh thunders his voice before his army, + +for his forces are very great; + +for he is strong who obeys his command; + +for the day of Yahweh is great and very awesome, + +and who can endure it? + + +Yet even now,” says Yahweh, “turn to me with all your heart, + +and with fasting, and with weeping, and with mourning.” + + +Tear your heart and not your garments, + +and turn to Yahweh, your God; + +for he is gracious and merciful, + +slow to anger, and abundant in loving kindness, + +and relents from sending calamity. + + +Who knows? He may turn and relent, + +and leave a blessing behind him, + +even a meal offering and a drink offering to Yahweh, your God. + + +Blow the trumpet in Zion! + +Sanctify a fast. + +Call a solemn assembly. + + +Gather the people. + +Sanctify the assembly. + +Assemble the elders. + +Gather the children, and those who nurse from breasts. + +Let the bridegroom go out of his room, + +and the bride out of her chamber. + + +Let the priests, the ministers of Yahweh, weep between the porch and the altar, + +and let them say, “Spare your people, Yahweh, + +and don’t give your heritage to reproach, + +that the nations should rule over them. + +Why should they say among the peoples, + +Where is their God?’” + + +Then Yahweh was jealous for his land, + +and had pity on his people. + + +Yahweh answered his people, + +Behold,2:19 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I will send you grain, new wine, and oil, + +and you will be satisfied with them; + +and I will no more make you a reproach among the nations. + + +But I will remove the northern army far away from you, + +and will drive it into a barren and desolate land, + +its front into the eastern sea, + +and its back into the western sea; + +and its stench will come up, + +and its bad smell will rise.” + +Surely he has done great things. + + +Land, don’t be afraid. + +Be glad and rejoice, for Yahweh has done great things. + + +Don’t be afraid, you animals of the field; + +for the pastures of the wilderness spring up, + +for the tree bears its fruit. + +The fig tree and the vine yield their strength. + + + +Be glad then, you children of Zion, + +and rejoice in Yahweh, your God; + +for he gives you the early rain in just measure, + +and he causes the rain to come down for you, + +the early rain and the latter rain, as before. + + +The threshing floors will be full of wheat, + +and the vats will overflow with new wine and oil. + + +I will restore to you the years that the swarming locust has eaten, + +the great locust, the grasshopper, and the caterpillar, + +my great army, which I sent among you. + + +You will have plenty to eat and be satisfied, + +and will praise the name of Yahweh, your God, + +who has dealt wondrously with you; + +and my people will never again be disappointed. + + +You will know that I am among Israel, + +and that I am Yahweh, your God, and there is no one else; + +and my people will never again be disappointed. + + + +“It will happen afterward, that I will pour out my Spirit on all flesh; + +and your sons and your daughters will prophesy. + +Your old men will dream dreams. + +Your young men will see visions. + + +And also on the servants and on the handmaids in those days, + +I will pour out my Spirit. + + +I will show wonders in the heavens and on the earth: + +blood, fire, and pillars of smoke. + + +The sun will be turned into darkness, + +and the moon into blood, + +before the great and terrible day of Yahweh comes. + + +It will happen that whoever will call on Yahweh’s name shall be saved; + +for in Mount Zion and in Jerusalem there will be those who escape, + +as Yahweh has said, + +and among the remnant, those whom Yahweh calls. + + + + + +For, behold, in those days, + +and in that time, + +when I restore the fortunes of Judah and Jerusalem, + + +I will gather all nations, + +and will bring them down into the valley of Jehoshaphat; + +and I will execute judgment on them there for my people, + +and for my heritage, Israel, whom they have scattered among the nations. + +They have divided my land, + + +and have cast lots for my people, + +and have given a boy for a prostitute, + +and sold a girl for wine, that they may drink. + + + +“Yes, and what are you to me, Tyre and Sidon, + +and all the regions of Philistia? + +Will you repay me? + +And if you repay me, + +I will swiftly and speedily return your repayment on your own head. + + +Because you have taken my silver and my gold, + +and have carried my finest treasures into your temples, + + +and have sold the children of Judah and the children of Jerusalem to the sons of the Greeks, + +that you may remove them far from their border. + + +Behold, I will stir them up out of the place where you have sold them, + +and will return your repayment on your own head; + + +and I will sell your sons and your daughters into the hands of the children of Judah, + +and they will sell them to the men of Sheba, + +to a faraway nation, + +for Yahweh has spoken it.” + + + +Proclaim this among the nations: + +“Prepare for war! + +Stir up the mighty men. + +Let all the warriors draw near. + +Let them come up. + +Beat your plowshares into swords, + +and your pruning hooks into spears. + +Let the weak say, ‘I am strong.’ + + +Hurry and come, all you surrounding nations, + +and gather yourselves together.” + +Cause your mighty ones to come down there, Yahweh. + + +“Let the nations arouse themselves, + +and come up to the valley of Jehoshaphat; + +for there I will sit to judge all the surrounding nations. + + +Put in the sickle; + +for the harvest is ripe. + +Come, tread, for the wine press is full, + +the vats overflow, for their wickedness is great.” + + +Multitudes, multitudes in the valley of decision! + +For the day of Yahweh is near in the valley of decision. + + +The sun and the moon are darkened, + +and the stars withdraw their shining. + + +Yahweh will roar from Zion, + +and thunder from Jerusalem; + +and the heavens and the earth will shake; + +but Yahweh will be a refuge to his people, + +and a stronghold to the children of Israel. + + +“So you will know that I am Yahweh, your God, + +dwelling in Zion, my holy mountain. + +Then Jerusalem will be holy, + +and no strangers will pass through her any more. + + +It will happen in that day, + +that the mountains will drop down sweet wine, + +the hills will flow with milk, + +all the brooks of Judah will flow with waters; + +and a fountain will flow out from Yahweh’s house, + +and will water the valley of Shittim. + + +Egypt will be a desolation + +and Edom will be a desolate wilderness, + +for the violence done to the children of Judah, + +because they have shed innocent blood in their land. + + +But Judah will be inhabited forever, + +and Jerusalem from generation to generation. + + +I will cleanse their blood + +that I have not cleansed, + +for Yahweh dwells in Zion.” + + +
+30-AMO-web.sfm World English Bible (WEB) +Amos +The Book of Amos +Amos +Amo +

The Book of +

+

Amos +

+ + +

The words of Amos, who was among the herdsmen 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. + +He said: +

+Yahweh1:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. will roar from Zion, + +and utter his voice from Jerusalem; + +and the pastures of the shepherds will mourn, + +and the top of Carmel will wither.” + + +

Yahweh says: +

+For three transgressions of Damascus, yes, for four, + +I will not turn away its punishment, + +because they have threshed Gilead with threshing instruments of iron; + + +but I will send a fire into the house of Hazael, + +and it will devour the palaces of Ben Hadad. + + +I will break the bar of Damascus, + +and cut off the inhabitant from the valley of Aven, + +and him who holds the scepter from the house of Eden; + +and the people of Syria shall go into captivity to Kir,” + +

says Yahweh. + +

+

Yahweh says: +

+For three transgressions of Gaza, yes, for four, + +I will not turn away its punishment, + +because they carried away captive the whole community, + +to deliver them up to Edom; + + +but I will send a fire on the wall of Gaza, + +and it will devour its palaces. + + +I will cut off the inhabitant from Ashdod, + +and him who holds the scepter from Ashkelon; + +and I will turn my hand against Ekron; + +and the remnant of the Philistines will perish,” + +

says the Lord1:8 +The word translated “Lord” is “Adonai.” Yahweh. + +

+

Yahweh says: +

+For three transgressions of Tyre, yes, for four, + +I will not turn away its punishment; + +because they delivered up the whole community to Edom, + +and didn’t remember the brotherly covenant; + + +but I will send a fire on the wall of Tyre, + +and it will devour its palaces.” + + +

Yahweh says: +

+For three transgressions of Edom, yes, for four, + +I will not turn away its punishment, + +because he pursued his brother with the sword + +and cast off all pity, + +and his anger raged continually, + +and he kept his wrath forever; + + +but I will send a fire on Teman, + +and it will devour the palaces of Bozrah.” + + +

Yahweh says: +

+For three transgressions of the children of Ammon, yes, for four, + +I will not turn away its punishment, + +because they have ripped open the pregnant women of Gilead, + +that they may enlarge their border. + + +But I will kindle a fire in the wall of Rabbah, + +and it will devour its palaces, + +with shouting in the day of battle, + +with a storm in the day of the whirlwind; + + +and their king will go into captivity, + +he and his princes together,” + +

says Yahweh. + +

+ + +

Yahweh says: +

+For three transgressions of Moab, yes, for four, + +I will not turn away its punishment, + +because he burned the bones of the king of Edom into lime; + + +but I will send a fire on Moab, + +and it will devour the palaces of Kerioth; + +and Moab will die with tumult, with shouting, and with the sound of the trumpet; + + +and I will cut off the judge from among them, + +and will kill all its princes with him,” + +

says Yahweh. + +

+

Yahweh says: +

+For three transgressions of Judah, yes, for four, + +I will not turn away its punishment, + +because they have rejected Yahweh’s law, + +and have not kept his statutes, + +and their lies have led them astray, + +after which their fathers walked; + + +but I will send a fire on Judah, + +and it will devour the palaces of Jerusalem.” + + +

Yahweh says: +

+For three transgressions of Israel, yes, for four, + +I will not turn away its punishment, + +because they have sold the righteous for silver, + +and the needy for a pair of sandals; + + +They trample the heads of the poor into the dust of the earth + +and deny justice to the oppressed. + +A man and his father use the same maiden, to profane my holy name. + + +They lay themselves down beside every altar on clothes taken in pledge. + +In the house of their God2:8 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). they drink the wine of those who have been fined. + + +Yet I destroyed 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. + + +Also I brought you up out of the land of Egypt + +and led you forty years in the wilderness, + +to possess the land of the Amorite. + + +I raised up some of your sons for prophets, + +and some of your young men for Nazirites. + +Isn’t this true, + +you children of Israel?” says Yahweh. + + +But you gave the Nazirites wine to drink, + +and commanded the prophets, saying, ‘Don’t prophesy!’ + + +Behold,2:13 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I will crush you in your place, + +as a cart crushes that is full of grain. + + +Flight will perish from the swift. + +The strong won’t strengthen his force. + +The mighty won’t deliver himself. + + +He who handles the bow won’t stand. + +He who is swift of foot won’t escape. + +He who rides the horse won’t deliver himself. + + +He who is courageous among the mighty + +will flee away naked on that day,” + +

says Yahweh. + +

+ + +

Hear this word that Yahweh has spoken against you, children of Israel, against the whole family which I brought up out of the land of Egypt, saying: + +

+I have only chosen you of all the families of the earth. + +Therefore I will punish you for all of your sins.” + + +Do two walk together, + +unless they have agreed? + + +Will a lion roar in the thicket, + +when he has no prey? + +Does a young lion cry out of his den, + +if he has caught nothing? + + +Can a bird fall in a trap on the earth, + +where no snare is set for him? + +Does a snare spring up from the ground, + +when there is nothing to catch? + + +Does the trumpet alarm sound in a city, + +without the people being afraid? + +Does evil happen to a city, + +and Yahweh hasn’t done it? + + +Surely the Lord Yahweh will do nothing, + +unless he reveals his secret to his servants the prophets. + + +The lion has roared. + +Who will not fear? + +The Lord Yahweh has spoken. + +Who can but prophesy? + + +Proclaim in the palaces at Ashdod, + +and in the palaces in the land of Egypt, + +and say, “Assemble yourselves on the mountains of Samaria, + +and see what unrest is in her, + +and what oppression is among them.” + + +Indeed they don’t know to do right,” says Yahweh, + +Who hoard plunder and loot in their palaces.” + + +

Therefore the Lord Yahweh says: +

+An adversary will overrun the land; + +and he will pull down your strongholds, + +and your fortresses will be plundered.” + + +

Yahweh says: +

+As the shepherd rescues out of the mouth of the lion two legs, + +or a piece of an ear, + +so shall the children of Israel be rescued who sit in Samaria on the corner of a couch, + +and on the silken cushions of a bed.” + + +

Listen, and testify against the house of Jacob,” says the Lord Yahweh, the God of Armies. + +

+For in the day that I visit the transgressions of Israel on him, + +I will also visit the altars of Bethel; + +and the horns of the altar will be cut off, + +and fall to the ground. + + +I will strike the winter house with the summer house; + +and the houses of ivory will perish, + +and the great houses will have an end,” + +

says Yahweh. + +

+ + +

Listen to this word, you cows of Bashan, who are on the mountain of Samaria, who oppress the poor, who crush the needy, who tell their husbands, “Bring us drinks!” + +

+The Lord Yahweh has sworn by his holiness, + +Behold, the days shall come on you that they will take you away with hooks, + +and the last of you with fish hooks. + + +You will go out at the breaks in the wall, + +everyone straight before her; + +and you will cast yourselves into Harmon,” says Yahweh. + + +“Go to Bethel, and sin; + +to Gilgal, and sin more. + +Bring your sacrifices every morning, + +your tithes every three days, + + +offer a sacrifice of thanksgiving of that which is leavened, + +and proclaim free will offerings and brag about them; + +for this pleases you, you children of Israel,” says the Lord Yahweh. + + +I also have given you cleanness of teeth in all your cities, + +and lack of bread in every town; + +yet you haven’t returned to me,” says Yahweh. + + +I also have withheld the rain from you, + +when there were yet three months to the harvest; + +and I caused it to rain on one city, + +and caused it not to rain on another city. + +One field was rained on, + +and the field where it didn’t rain withered. + + +So two or three cities staggered to one city to drink water, + +and were not satisfied; + +yet you haven’t returned to me,” says Yahweh. + + +I struck you with blight and mildew many times in your gardens and your vineyards, + +and the swarming locusts have devoured your fig trees and your olive trees; + +yet you haven’t returned to me,” says Yahweh. + + +I sent plagues among you like I did Egypt. + +I have slain your young men with the sword, + +and have carried away your horses. + +I filled your nostrils with the stench of your camp, + +yet you haven’t returned to me,” says Yahweh. + + +I have overthrown some of you, + +as when God overthrew Sodom and Gomorrah, + +and you were like a burning stick plucked out of the fire; + +yet you haven’t returned to me,” says Yahweh. + + +Therefore I will do this to you, Israel; + +because I will do this to you, + +prepare to meet your God, Israel. + + +For, behold, he who forms the mountains, creates the wind, declares to man what is his thought, + +who makes the morning darkness, and treads on the high places of the earth: + +Yahweh, the God of Armies, is his name.” + + + + +

Listen to this word which I take up for a lamentation over you, O house of Israel: + +

+The virgin of Israel has fallen; + +She shall rise no more. + +She is cast down on her land; + +there is no one to raise her up.” + + +

For the Lord Yahweh says: +

+The city that went out a thousand shall have a hundred left, + +and that which went out one hundred shall have ten left to the house of Israel.” + + +

For Yahweh says to the house of Israel: +

+Seek me, and you will live; + + +but don’t seek Bethel, + +nor enter into Gilgal, + +and don’t pass to Beersheba; + +for Gilgal shall surely go into captivity, + +and Bethel shall come to nothing. + + +Seek Yahweh, and you will live, + +lest he break out like fire in the house of Joseph, + +and it devour, and there be no one to quench it in Bethel. + + +You who turn justice to wormwood, + +and cast down righteousness to the earth! + + +Seek him who made the Pleiades and Orion, + +and turns the shadow of death into the morning, + +and makes the day dark with night; + +who calls for the waters of the sea, + +and pours them out on the surface of the earth, Yahweh is his name, + + +who brings sudden destruction on the strong, + +so that destruction comes on the fortress. + + +They hate him who reproves in the gate, + +and they abhor him who speaks blamelessly. + + +Therefore, because you trample on the poor and take taxes from him of wheat, + +you have built houses of cut stone, but you will not dwell in them. + +You have planted pleasant vineyards, + +but you shall not drink their wine. + + +For I know how many are your offenses, + +and how great are your sins— + +you who afflict the just, + +who take a bribe, + +and who turn away the needy in the courts. + + +Therefore a prudent person keeps silent in such a time, + +for it is an evil time. + + +Seek good, and not evil, + +that you may live; + +and so Yahweh, the God of Armies, will be with you, + +as you say. + + +Hate evil, love good, + +and establish justice in the courts. + +It may be that Yahweh, the God of Armies, will be gracious to the remnant of Joseph.” + + +

Therefore Yahweh, the God of Armies, the Lord, says: +

+Wailing will be in all the wide ways. + +They will say in all the streets, ‘Alas! Alas!’ + +They will call the farmer to mourning, + +and those who are skillful in lamentation to wailing. + + +In all vineyards there will be wailing, + +for I will pass through the middle of you,” says Yahweh. + + +Woe to you who desire the day of Yahweh! + +Why do you long for the day of Yahweh? + +It is darkness, + +and not light. + + +As if a man fled from a lion, + +and a bear met him; + +or he went into the house and leaned his hand on the wall, + +and a snake bit him. + + +Won’t the day of Yahweh be darkness, and not light? + +Even very dark, and no brightness in it? + + +I hate, I despise your feasts, + +and I can’t stand your solemn assemblies. + + +Yes, though you offer me your burnt offerings and meal offerings, + +I will not accept them; + +neither will I regard the peace offerings of your fat animals. + + +Take away from me the noise of your songs! + +I will not listen to the music of your harps. + + +But let justice roll on like rivers, + +and righteousness like a mighty stream. + + +

Did you bring to me sacrifices and offerings in the wilderness forty years, house of Israel? + +You also carried the tent of your king and the shrine of your images, the star of your god, which you made for yourselves. + +Therefore I will cause you to go into captivity beyond Damascus,” says Yahweh, whose name is the God of Armies. + +

+ + +

Woe to those who are at ease in Zion, +

+and to those who are secure on the mountain of Samaria, + +the notable men of the chief of the nations, + +to whom the house of Israel come! + + +Go to Calneh, and see. + +From there go to Hamath the great. + +Then go down to Gath of the Philistines. + +Are they better than these kingdoms? + +Is their border greater than your border? + + +Alas for you who put far away the evil day, + +and cause the seat of violence to come near, + + +who lie on beds of ivory, + +and stretch themselves on their couches, + +and eat the lambs out of the flock, + +and the calves out of the middle of the stall, + + +who strum on the strings of a harp, + +who invent for themselves instruments of music, like David; + + +who drink wine in bowls, + +and anoint themselves with the best oils, + +but they are not grieved for the affliction of Joseph. + + +Therefore they will now go captive with the first who go captive. + +The feasting and lounging will end. + + +The Lord Yahweh has sworn by himself,” says Yahweh, the God of Armies: + +I abhor the pride of Jacob, + +and detest his fortresses. + +Therefore I will deliver up the city with all that is in it. + + +It will happen that if ten men remain in one house, + +they will die. + + +

When a man’s relative carries him, even he who burns him, to bring bodies out of the house, and asks him who is in the innermost parts of the house, ‘Is there yet any with you?’ And he says, ‘No;’ then he will say, ‘Hush! Indeed we must not mention Yahweh’s name.’ + +

+ +For, behold, Yahweh commands, and the great house will be smashed to pieces, + +and the little house into bits. + + +Do horses run on the rocky crags? + +Does one plow there with oxen? + +But you have turned justice into poison, + +and the fruit of righteousness into bitterness, + + +you who rejoice in a thing of nothing, who say, + +‘Haven’t we taken for ourselves horns by our own strength?’ + + +For, behold, I will raise up against you a nation, house of Israel,” + +says Yahweh, the God of Armies; + +and they will afflict you from the entrance of Hamath to the brook of the Arabah.” + + + + +

Thus the Lord Yahweh showed me: behold, he formed locusts in the beginning of the shooting up of the latter growth; and behold, it was the latter growth after the king’s harvest. + +When they finished eating the grass of the land, then I said, “Lord Yahweh, forgive, I beg you! How could Jacob stand? For he is small.” + +

+

Yahweh relented concerning this. “It shall not be,” says Yahweh. + +

+

Thus the Lord Yahweh showed me: behold, the Lord Yahweh called for judgment by fire; and it dried up the great deep, and would have devoured the land. + +Then I said, “Lord Yahweh, stop, I beg you! How could Jacob stand? For he is small.” + +

+

Yahweh relented concerning this. “This also shall not be,” says the Lord Yahweh. + +

+

Thus he showed me: behold, the Lord stood beside a wall made by a plumb line, with a plumb line in his hand. + +Yahweh said to me, “Amos, what do you see?” +

+

I said, “A plumb line.” +

+

Then the Lord said, “Behold, I will set a plumb line in the middle of my people Israel. I will not again pass by them any more. + +The high places of Isaac will be desolate, the sanctuaries of Israel will be laid waste; and I will rise against the house of Jeroboam with the sword.” + +

+

Then Amaziah the priest of Bethel sent to Jeroboam king of Israel, saying, “Amos has conspired against you in the middle of the house of Israel. The land is not able to bear all his words. + +For Amos says, ‘Jeroboam will die by the sword, and Israel shall surely be led away captive out of his land.’” + +

+

Amaziah also said to Amos, “You seer, go, flee away into the land of Judah, and there eat bread, and prophesy there, + +but don’t prophesy again any more at Bethel; for it is the king’s sanctuary, and it is a royal house!” + +

+

Then Amos answered Amaziah, “I was no prophet, neither was I a prophet’s son, but I was a herdsman, and a farmer of sycamore figs; + +and Yahweh took me from following the flock, and Yahweh said to me, ‘Go, prophesy to my people Israel.’ + +Now therefore listen to Yahweh’s word: ‘You say, Don’t prophesy against Israel, and don’t preach against the house of Isaac.’ + +Therefore Yahweh says: ‘Your wife shall be a prostitute in the city, and your sons and your daughters shall fall by the sword, and your land shall be divided by line; and you yourself shall die in a land that is unclean, and Israel shall surely be led away captive out of his land.’” + +

+ + +

Thus the Lord Yahweh showed me: behold, a basket of summer fruit. + +

+

He said, “Amos, what do you see?” +

+

I said, “A basket of summer fruit.” +

+

Then Yahweh said to me, +

+The end has come on my people Israel. + +I will not again pass by them any more. + + +The songs of the temple will be wailing in that day,” says the Lord Yahweh. + +The dead bodies will be many. In every place they will throw them out with silence. + + +Hear this, you who desire to swallow up the needy, + +and cause the poor of the land to fail, + + +saying, ‘When will the new moon be gone, that we may sell grain? + +And the Sabbath, that we may market wheat, + +making the ephah8:5 +1 ephah is about 22 liters or about 2/3 of a bushel + small, and the shekel8:5 +a normal shekel is about 10 grams or about 0.35 ounces. large, + +and dealing falsely with balances of deceit; + + +that we may buy the poor for silver, + +and the needy for a pair of sandals, + +and sell the sweepings with the wheat?’” + + +Yahweh has sworn by the pride of Jacob, + +“Surely I will never forget any of their works. + + +Won’t the land tremble for this, + +and everyone mourn who dwells in it? + +Yes, it will rise up wholly like the River; + +and it will be stirred up and sink again, like the River of Egypt. + + +It will happen in that day,” says the Lord Yahweh, + +that I will cause the sun to go down at noon, + +and I will darken the earth in the clear day. + + +I will turn your feasts into mourning, + +and all your songs into lamentation; + +and I will make you wear sackcloth on all your bodies, + +and baldness on every head. + +I will make it like the mourning for an only son, + +and its end like a bitter day. + + +Behold, the days come,” says the Lord Yahweh, + +that I will send a famine in the land, + +not a famine of bread, + +nor a thirst for water, + +but of hearing Yahweh’s words. + + +They will wander from sea to sea, + +and from the north even to the east; + +they will run back and forth to seek Yahweh’s word, + +and will not find it. + + +In that day the beautiful virgins + +and the young men will faint for thirst. + + +Those who swear by the sin of Samaria, + +and say, ‘As your god, Dan, lives,’ + +and, ‘As the way of Beersheba lives,’ + +they will fall, and never rise up again.” + + + + +

I saw the Lord standing beside the altar, and he said, “Strike the tops of the pillars, that the thresholds may shake. Break them in pieces on the head of all of them. I will kill the last of them with the sword. Not one of them will flee away. Not one of them will escape. + +Though they dig into Sheol,9:2 +Sheol is the place of the dead. there my hand will take them; and though they climb up to heaven, there I will bring them down. + +Though they hide themselves in the top of Carmel, I will search and take them out from there; and though they be hidden from my sight in the bottom of the sea, there I will command the serpent, and it will bite them. + +Though they go into captivity before their enemies, there I will command the sword, and it will kill them. I will set my eyes on them for evil, and not for good. + +For the Lord, Yahweh of Armies, is he who touches the land and it melts, and all who dwell in it will mourn; and it will rise up wholly like the River, and will sink again, like the River of Egypt. + +It is he who builds his rooms in the heavens, and has founded his vault on the earth; he who calls for the waters of the sea, and pours them out on the surface of the earthYahweh is his name. + +Are you not like the children of the Ethiopians to me, children of Israel?” says Yahweh. “Haven’t I brought up Israel out of the land of Egypt, and the Philistines from Caphtor, and the Syrians from Kir? + +Behold, the eyes of the Lord Yahweh are on the sinful kingdom, and I will destroy it from off the surface of the earth, except that I will not utterly destroy the house of Jacob,” says Yahweh. + +For behold, I will command, and I will sift the house of Israel among all the nations as grain is sifted in a sieve, yet not the least kernel will fall on the earth. + +All the sinners of my people will die by the sword, who say, ‘Evil won’t overtake nor meet us.’ + +In that day I will raise up the tent of David who is fallen and close up its breaches, and I will raise up its ruins, and I will build it as in the days of old, + +that they may possess the remnant of Edom and all the nations who are called by my name,” says Yahweh who does this. + +

+Behold, the days come,” says Yahweh, + +that the plowman shall overtake the reaper, + +and the one treading grapes him who sows seed; + +and sweet wine will drip from the mountains, + +and flow from the hills. + + +I will bring my people Israel back from captivity, + +and they will rebuild the ruined cities, and inhabit them; + +and they will plant vineyards, and drink wine from them. + +They shall also make gardens, + +and eat their fruit. + + +I will plant them on their land, + +and they will no more be plucked up out of their land which I have given them,” + +says Yahweh your God. + + +
+31-OBA-web.sfm World English Bible (WEB) +Obadiah +The Book of Obadiah +Obadiah +Oba +

The Book of +

+

Obadiah +

+ + +

The vision of Obadiah. This is what the Lord1:1 +The word translated “Lord” is “Adonai.” Yahweh1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. says about Edom. We have heard news from Yahweh, and an ambassador is sent among the nations, saying, “Arise, and let’s rise up against her in battle. + +Behold,1:2 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I have made you small among the nations. You are greatly despised. + +The pride of your heart has deceived you, you who dwell in the clefts of the rock, whose habitation is high, who says in his heart, ‘Who will bring me down to the ground?’ + +Though you mount on high as the eagle, and though your nest is set among the stars, I will bring you down from there,” says Yahweh. + +“If thieves came to you, if robbers by night—oh, what disaster awaits you—wouldn’t they only steal until they had enough? If grape pickers came to you, wouldn’t they leave some gleaning grapes? + +How Esau will be ransacked! How his hidden treasures are sought out! + +All the men of your alliance have brought you on your way, even to the border. The men who were at peace with you have deceived you, and prevailed against you. Friends who eat your bread lay a snare under you. There is no understanding in him.” + +

+

“Won’t I in that day”, says Yahweh, “destroy the wise men out of Edom, and understanding out of the mountain of Esau? + +Your mighty men, Teman, will be dismayed, to the end that everyone may be cut off from the mountain of Esau by slaughter. + +For the violence done to your brother Jacob, shame will cover you, and you will be cut off forever. + +In the day that you stood on the other side, in the day that strangers carried away his substance and foreigners entered into his gates and cast lots for Jerusalem, even you were like one of them. + +But don’t look down on your brother in the day of his disaster, and don’t rejoice over the children of Judah in the day of their destruction. Don’t speak proudly in the day of distress. + +Don’t enter into the gate of my people in the day of their calamity. Don’t look down on their affliction in the day of their calamity, neither seize their wealth on the day of their calamity. + +Don’t stand in the crossroads to cut off those of his who escape. Don’t deliver up those of his who remain in the day of distress. + +For the day of Yahweh is near all the nations! As you have done, it will be done to you. Your deeds will return upon your own head. + +For as you have drunk on my holy mountain, so all the nations will drink continually. Yes, they will drink, swallow down, and will be as though they had not been. + +But in Mount Zion, there will be those who escape, and it will be holy. The house of Jacob will possess their possessions. + +The house of Jacob will be a fire, the house of Joseph a flame, and the house of Esau for stubble. They will burn among them and devour them. There will not be any remaining to the house of Esau.” Indeed, Yahweh has spoken. + +

+

Those of the South will possess the mountain of Esau, and those of the lowland, the Philistines. They will possess the field of Ephraim, and the field of Samaria. Benjamin will possess Gilead. + +The captives of this army of the children of Israel, who are among the Canaanites, will possess even to Zarephath; and the captives of Jerusalem, who are in Sepharad, will possess the cities of the Negev. + +Saviors will go up on Mount Zion to judge the mountains of Esau, and the kingdom will be Yahweh’s. + +

+
+2-JON-web.sfm World English Bible (WEB) +Jonah +The Book of Jonah +Jonah +Jon +

The Book of +

+

Jonah +

+ + +

Now Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word came to Jonah the son of Amittai, saying, + +Arise, go to Nineveh, that great city, and preach against it, for their wickedness has come up before me.” + +

+

But Jonah rose up to flee to Tarshish from the presence of Yahweh. He went down to Joppa, and found a ship going to Tarshish; so he paid its fare, and went down into it, to go with them to Tarshish from the presence of Yahweh. + +

+

But Yahweh sent out a great wind on the sea, and there was a mighty storm on the sea, so that the ship was likely to break up. + +Then the mariners were afraid, and every man cried to his god. They threw the cargo that was in the ship into the sea to lighten the ship. But Jonah had gone down into the innermost parts of the ship and he was laying down, and was fast asleep. + +So the ship master came to him, and said to him, “What do you mean, sleeper? Arise, call on your God!1:6 +or, gods Maybe your God1:6 +or, gods + will notice us, so that we won’t perish.” + +

+

They all said to each other, “Come! Let’s cast lots, that we may know who is responsible for this evil that is on us.” So they cast lots, and the lot fell on Jonah. + +Then they asked him, “Tell us, please, for whose cause this evil is on us. What is your occupation? Where do you come from? What is your country? Of what people are you?” + +

+

He said to them, “I am a Hebrew, and I fear Yahweh, the God1:9 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). of heaven, who has made the sea and the dry land.” + +

+

Then the men were exceedingly afraid, and said to him, “What have you done?” For the men knew that he was fleeing from the presence of Yahweh, because he had told them. + +Then they said to him, “What shall we do to you, that the sea may be calm to us?” For the sea grew more and more stormy. + +

+

He said to them, “Take me up, and throw me into the sea. Then the sea will be calm for you; for I know that because of me this great storm is on you.” + +

+

Nevertheless the men rowed hard to get them back to the land; but they could not, for the sea grew more and more stormy against them. + +Therefore they cried to Yahweh, and said, “We beg you, Yahweh, we beg you, don’t let us die for this man’s life, and don’t lay on us innocent blood; for you, Yahweh, have done as it pleased you.” + +So they took up Jonah and threw him into the sea; and the sea ceased its raging. + +Then the men feared Yahweh exceedingly; and they offered a sacrifice to Yahweh and made vows. + +

+

Yahweh prepared a huge fish to swallow up Jonah, and Jonah was in the belly of the fish three days and three nights. + +

+ + +

Then Jonah prayed to Yahweh, his God, out of the fish’s belly. + +He said, +

+I called because of my affliction to Yahweh. + +He answered me. + +Out of the belly of Sheol2:2 +Sheol is the place of the dead. I cried. + +You heard my voice. + + +For you threw me into the depths, + +in the heart of the seas. + +The flood was all around me. + +All your waves and your billows passed over me. + + +I said, ‘I have been banished from your sight; + +yet I will look again toward your holy temple.’ + + +The waters surrounded me, + +even to the soul. + +The deep was around me. + +The weeds were wrapped around my head. + + +I went down to the bottoms of the mountains. + +The earth barred me in forever; + +yet you have brought my life up from the pit, Yahweh my God. + + + +When my soul fainted within me, I remembered Yahweh. + +My prayer came in to you, into your holy temple. + + +Those who regard vain idols forsake their own mercy. + + +But I will sacrifice to you with the voice of thanksgiving. + +I will pay that which I have vowed. + +Salvation belongs to Yahweh.” + + +

Then Yahweh spoke to the fish, and it vomited out Jonah on the dry land. + +

+ + +

Yahweh’s word came to Jonah the second time, saying, + +Arise, go to Nineveh, that great city, and preach to it the message that I give you.” + +

+

So Jonah arose, and went to Nineveh, according to Yahweh’s word. Now Nineveh was an exceedingly great city, three daysjourney across. + +Jonah began to enter into the city a day’s journey, and he cried out, and said, “In forty days, Nineveh will be overthrown!” + +

+

The people of Nineveh believed God; and they proclaimed a fast and put on sackcloth, from their greatest even to their least. + +The news reached the king of Nineveh, and he arose from his throne, took off his royal robe, covered himself with sackcloth, and sat in ashes. + +He made a proclamation and published through Nineveh by the decree of the king and his nobles, saying, “Let neither man nor animal, herd nor flock, taste anything; let them not feed, nor drink water; + +but let them be covered with sackcloth, both man and animal, and let them cry mightily to God. Yes, let them turn everyone from his evil way and from the violence that is in his hands. + +Who knows whether God will not turn and relent, and turn away from his fierce anger, so that we might not perish?” + +

+

God saw their works, that they turned from their evil way. God relented of the disaster which he said he would do to them, and he didn’t do it. + +

+ + +

But it displeased Jonah exceedingly, and he was angry. + +He prayed to Yahweh, and said, “Please, Yahweh, wasn’t this what I said when I was still in my own country? Therefore I hurried to flee to Tarshish, for I knew that you are a gracious God and merciful, slow to anger, and abundant in loving kindness, and you relent of doing harm. + +Therefore now, Yahweh, take, I beg you, my life from me, for it is better for me to die than to live.” + +

+

Yahweh said, “Is it right for you to be angry?” + +

+

Then Jonah went out of the city and sat on the east side of the city, and there made himself a booth and sat under it in the shade, until he might see what would become of the city. + +Yahweh God prepared a vine and made it to come up over Jonah, that it might be a shade over his head to deliver him from his discomfort. So Jonah was exceedingly glad because of the vine. + +But God prepared a worm at dawn the next day, and it chewed on the vine so that it withered. + +When the sun arose, God prepared a sultry east wind; and the sun beat on Jonah’s head, so that he was faint and requested for himself that he might die. He said, “It is better for me to die than to live.” + +

+

God said to Jonah, “Is it right for you to be angry about the vine?” +

+

He said, “I am right to be angry, even to death.” + +

+

Yahweh said, “You have been concerned for the vine, for which you have not labored, neither made it grow; which came up in a night and perished in a night. + +Shouldn’t I be concerned for Nineveh, that great city, in which are more than one hundred twenty thousand persons who can’t discern between their right hand and their left hand, and also many animals?” + +

+
+33-MIC-web.sfm World English Bible (WEB) +Micah +The Book of Micah +Micah +Mic +

The Book of +

+

Micah +

+ + +

Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word that came to Micah of Morasheth in the days of Jotham, Ahaz, and Hezekiah, kings of Judah, which he saw concerning Samaria and Jerusalem. + +

+Hear, you peoples, all of you! + +Listen, O earth, and all that is therein. + +Let the Lord1:2 +The word translated “Lord” is “Adonai.” Yahweh be witness against you, + +the Lord from his holy temple. + + +For behold,1:3 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. Yahweh comes out of his place, + +and will come down and tread on the high places of the earth. + + +The mountains melt under him, + +and the valleys split apart like wax before the fire, + +like waters that are poured down a steep place. + + + +All this is for the disobedience of Jacob, + +and for the sins of the house of Israel. + +What is the disobedience of Jacob? + +Isn’t it Samaria? + +And what are the high places of Judah? + +Aren’t they Jerusalem? + + +Therefore I will make Samaria like a rubble heap of the field, + +like places for planting vineyards; + +and I will pour down its stones into the valley, + +and I will uncover its foundations. + + +All her idols will be beaten to pieces, + +all her temple gifts will be burned with fire, + +and I will destroy all her images; + +for of the hire of a prostitute has she gathered them, + +and to the hire of a prostitute shall they return.” + + + +For this I will lament and wail. + +I will go stripped and naked. + +I will howl like the jackals + +and mourn like the ostriches. + + +For her wounds are incurable; + +for it has come even to Judah. + +It reaches to the gate of my people, + +even to Jerusalem. + + +Don’t tell it in Gath. + +Don’t weep at all. + +At Beth Ophrah1:10 +Beth Ophrah means literally “House of Dust.” I have rolled myself in the dust. + + +Pass on, inhabitant of Shaphir, in nakedness and shame. + +The inhabitant of Zaanan won’t come out. + +The wailing of Beth Ezel will take from you his protection. + + +For the inhabitant of Maroth waits anxiously for good, + +because evil has come down from Yahweh to the gate of Jerusalem. + + +Harness the chariot to the swift steed, inhabitant of Lachish. + +She was the beginning of sin to the daughter of Zion; + +for the transgressions of Israel were found in you. + + +Therefore you will give a parting gift to Moresheth Gath. + +The houses of Achzib will be a deceitful thing to the kings of Israel. + + +I will yet bring a conqueror to you, inhabitants of Mareshah. + +The glory of Israel will come to Adullam. + + +Shave your heads, + +and cut off your hair for the children of your delight. + +Enlarge your baldness like the vulture, + +for they have gone into captivity from you! + + + + + +Woe to those who devise iniquity + +and work evil on their beds! + +When the morning is light, they practice it, + +because it is in the power of their hand. + + +They covet fields and seize them, + +and houses, then take them away. + +They oppress a man and his house, + +even a man and his heritage. + + +Therefore Yahweh says: + +Behold, I am planning against these people a disaster, + +from which you will not remove your necks, + +neither will you walk haughtily, + +for it is an evil time. + + +In that day they will take up a parable against you, + +and lament with a doleful lamentation, saying, + +We are utterly ruined! + +My people’s possession is divided up. + +Indeed he takes it from me and assigns our fields to traitors!’” + + +Therefore you will have no one who divides the land by lot in Yahweh’s assembly. + + +“Don’t prophesy!”—they prophesy— + +“Don’t prophesy about these things. + +Disgrace won’t overtake us.” + + +Shall it be said, O house of Jacob, + +Is Yahweh’s Spirit angry? + +Are these his doings? + +Don’t my words do good to him who walks blamelessly?” + + +But lately my people have risen up as an enemy. + +You strip the robe and clothing from those who pass by without a care, returning from battle. + + +You drive the women of my people out from their pleasant houses; + +from their young children you take away my blessing forever. + + +Arise, and depart! + +For this is not your resting place, + +because of uncleanness that destroys, + +even with a grievous destruction. + + +If a man walking in a spirit of falsehood lies, saying, + +I will prophesy to you of wine and of strong drink,” + +he would be the prophet of this people. + + +I will surely assemble all of you, Jacob. + +I will surely gather the remnant of Israel. + +I will put them together as the sheep of Bozrah, + +as a flock in the middle of their pasture. + +They will swarm with people. + + +He who breaks open the way goes up before them. + +They break through the gate, and go out. + +Their king passes on before them, + +with Yahweh at their head. + + + + +

I said, +

+Please listen, you heads of Jacob, + +and rulers of the house of Israel: + +Isn’t it for you to know justice? + + +You who hate the good, + +and love the evil; + +who tear off their skin, + +and their flesh from off their bones; + + +who also eat the flesh of my people, + +and peel their skin from off them, + +and break their bones, + +and chop them in pieces, as for the pot, + +and as meat within the cauldron. + + +Then they will cry to Yahweh, + +but he will not answer them. + +Yes, he will hide his face from them at that time, + +because they made their deeds evil.” + + +

Yahweh says concerning the prophets who lead my people astrayfor those who feed their teeth, they proclaim, “Peace!” and whoever doesn’t provide for their mouths, they prepare war against him: + +

+Therefore night is over you, with no vision, + +and it is dark to you, that you may not divine; + +and the sun will go down on the prophets, + +and the day will be black over them. + + +The seers shall be disappointed, + +and the diviners confounded. + +Yes, they shall all cover their lips, + +for there is no answer from God.”3:7 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + + +But as for me, I am full of power by Yahweh’s Spirit, + +and of judgment, and of might, + +to declare to Jacob his disobedience, + +and to Israel his sin. + + +Please listen to this, you heads of the house of Jacob, + +and rulers of the house of Israel, + +who abhor justice, + +and pervert all equity, + + +who build up Zion with blood, + +and Jerusalem with iniquity. + + +Her leaders judge for bribes, + +and her priests teach for a price, + +and her prophets of it tell fortunes for money; + +yet they lean on Yahweh, and say, + +“Isn’t Yahweh among us? + +No disaster will come on us.” + + +Therefore Zion for your sake will be plowed like a field, + +and Jerusalem will become heaps of rubble, + +and the mountain of the temple like the high places of a forest. + + + + + +But in the latter days, + +it will happen that the mountain of Yahweh’s temple will be established on the top of the mountains, + +and it will be exalted above the hills; + +and peoples will stream to it. + + +Many nations will go and say, + +Come! Let’s go up to the mountain of Yahweh, + +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 will go out of Zion, + +and Yahweh’s word from Jerusalem; + + +and he will judge between many peoples, + +and will decide concerning strong nations afar off. + +They will beat their swords into plowshares, + +and their spears into pruning hooks. + +Nation will not lift up sword against nation, + +neither will they learn war any more. + + +But every man will sit under his vine and under his fig tree. + +No one will make them afraid, + +for the mouth of Yahweh of Armies has spoken. + +Indeed all the nations may walk in the name of their gods, + +but we will walk in the name of Yahweh our God forever and ever. + + +In that day,” says Yahweh, + +I will assemble that which is lame, + +and I will gather that which is driven away, + +and that which I have afflicted; + + +and I will make that which was lame a remnant, + +and that which was cast far off a strong nation: + +and Yahweh will reign over them on Mount Zion from then on, even forever.” + + +You, tower of the flock, the hill of the daughter of Zion, + +to you it will come. + +Yes, the former dominion will come, + +the kingdom of the daughter of Jerusalem. + + + +Now why do you cry out aloud? + +Is there no king in you? + +Has your counselor perished, + +that pains have taken hold of you as of a woman in travail? + + +Be in pain, and labor to give birth, daughter of Zion, + +like a woman in travail; + +for now you will go out of the city, + +and will dwell in the field, + +and will come even to Babylon. + +There you will be rescued. + +There Yahweh will redeem you from the hand of your enemies. + + + +Now many nations have assembled against you, that say, + +Let her be defiled, + +and let our eye gloat over Zion.” + + +But they don’t know the thoughts of Yahweh, + +neither do they understand his counsel; + +for he has gathered them like the sheaves to the threshing floor. + + +Arise and thresh, daughter of Zion, + +for I will make your horn iron, + +and I will make your hoofs bronze. + +You will beat in pieces many peoples. + +I will devote their gain to Yahweh, + +and their substance to the Lord of the whole earth. + + + + + +Now you shall gather yourself in troops, + +daughter of troops. + +He has laid siege against us. + +They will strike the judge of Israel with a rod on the cheek. + + +But you, Bethlehem Ephrathah, + +being small among the clans of Judah, + +out of you one will come out to me who is to be ruler in Israel; + +whose goings out are from of old, from ancient times. + + +Therefore he will abandon them until the time that she who is in labor gives birth. + +Then the rest of his brothers will return to the children of Israel. + + +He shall stand, and shall shepherd in the strength of Yahweh, + +in the majesty of the name of Yahweh his God. + +They will live, for then he will be great to the ends of the earth. + + +He will be our peace when Assyria invades our land + +and when he marches through our fortresses, + +then we will raise against him seven shepherds, + +and eight leaders of men. + + +They will rule the land of Assyria with the sword, + +and the land of Nimrod in its gates. + +He will deliver us from the Assyrian, + +when he invades our land, + +and when he marches within our border. + + +The remnant of Jacob will be among many peoples + +like dew from Yahweh, + +like showers on the grass, + +that don’t wait for man + +nor wait for the sons of men. + + +The remnant of Jacob will be among the nations, + +among many peoples, + +like a lion among the animals of the forest, + +like a young lion among the flocks of sheep; + +who, if he goes through, treads down and tears in pieces, + +and there is no one to deliver. + + +Let your hand be lifted up above your adversaries, + +and let all of your enemies be cut off. + + +It will happen in that day”, says Yahweh, + +that I will cut off your horses from among you + +and will destroy your chariots. + + +I will cut off the cities of your land + +and will tear down all your strongholds. + + +I will destroy witchcraft from your hand. + +You shall have no soothsayers. + + +I will cut off your engraved images and your pillars from among you; + +and you shall no more worship the work of your hands. + + +I will uproot your Asherah poles from among you; + +and I will destroy your cities. + + +I will execute vengeance in anger + +and wrath on the nations that didn’t listen.” + + + + +

Listen now to what Yahweh says: +

+Arise, plead your case before the mountains, + +and let the hills hear what you have to say. + + +Hear, you mountains, Yahweh’s indictment, + +and you enduring foundations of the earth; + +for Yahweh has a case against his people, + +and he will contend with Israel. + + +My people, what have I done to you? + +How have I burdened you? + +Answer me! + + +For I brought you up out of the land of Egypt, + +and redeemed you out of the house of bondage. + +I sent before you Moses, Aaron, and Miriam. + + +My people, remember now what Balak king of Moab devised, + +and what Balaam the son of Beor answered him from Shittim to Gilgal, + +that you may know the righteous acts of Yahweh.” + + + +How shall I come before Yahweh, + +and bow myself before the exalted God? + +Shall I come before him with burnt offerings, + +with calves a year old? + + +Will Yahweh be pleased with thousands of rams? + +With tens of thousands of rivers of oil? + +Shall I give my firstborn for my disobedience? + +The fruit of my body for the sin of my soul? + + +He has shown you, O man, what is good. + +What does Yahweh require of you, but to act justly, + +to love mercy, and to walk humbly with your God? + + + +Yahweh’s voice calls to the city— + +and wisdom fears your name— + +Listen to the rod, + +and he who appointed it. + + +Are there yet treasures of wickedness in the house of the wicked, + +and a short ephah6:10 +An ephah is a measure of volume (about 22 liters or about 2/3 of a bushel), and a short ephah is made smaller than a full ephah for the purpose of cheating customers. that is accursed? + + +Shall I tolerate dishonest scales, + +and a bag of deceitful weights? + + +Her rich men are full of violence, + +her inhabitants speak lies, + +and their tongue is deceitful in their speech. + + +Therefore I also have struck you with a grievous wound. + +I have made you desolate because of your sins. + + +You shall eat, but not be satisfied. + +Your hunger will be within you. + +You will store up, but not save, + +and that which you save I will give up to the sword. + + +You will sow, but won’t reap. + +You will tread the olives, but won’t anoint yourself with oil; + +and crush grapes, but won’t drink the wine. + + +For the statutes of Omri are kept, + +and all the works of Ahab’s house. + +You walk in their counsels, + +that I may make you a ruin, + +and your inhabitants a hissing. + +You will bear the reproach of my people.” + + + + + +Misery is mine! + +Indeed, I am like one who gathers the summer fruits, as gleanings of the vineyard. + +There is no cluster of grapes to eat. + +My soul desires to eat the early fig. + + +The godly man has perished out of the earth, + +and there is no one upright among men. + +They all lie in wait for blood; + +every man hunts his brother with a net. + + +Their hands are on that which is evil to do it diligently. + +The ruler and judge ask for a bribe. + +The powerful man dictates the evil desire of his soul. + +Thus they conspire together. + + +The best of them is like a brier. + +The most upright is worse than a thorn hedge. + +The day of your watchmen, + +even your visitation, has come; + +now is the time of their confusion. + + +Don’t trust in a neighbor. + +Don’t put confidence in a friend. + +With the woman lying in your embrace, + +be careful of the words of your mouth! + + +For the son dishonors the father, + +the daughter rises up against her mother, + +the daughter-in-law against her mother-in-law; + +a man’s enemies are the men of his own house. + + +But as for me, I will look to Yahweh. + +I will wait for the God of my salvation. + +My God will hear me. + + +Don’t rejoice against me, my enemy. + +When I fall, I will arise. + +When I sit in darkness, Yahweh will be a light to me. + + +I will bear the indignation of Yahweh, + +because I have sinned against him, + +until he pleads my case and executes judgment for me. + +He will bring me out to the light. + +I will see his righteousness. + + +Then my enemy will see it, + +and shame will cover her who said to me, + +“Where is Yahweh your God?” + +My eyes will see her. + +Now she will be trodden down like the mire of the streets. + + +A day to build your walls! + +In that day, he will extend your boundary. + + +In that day they will come to you from Assyria and the cities of Egypt, + +and from Egypt even to the River, + +and from sea to sea, + +and mountain to mountain. + + +Yet the land will be desolate because of those who dwell therein, + +for the fruit of their doings. + + +Shepherd your people with your staff, + +the flock of your heritage, + +who dwell by themselves in a forest. + +Let them feed in the middle of fertile pasture land, + +in Bashan and Gilead, as in the days of old. + + +As in the days of your coming out of the land of Egypt, + +I will show them marvelous things.” + + +The nations will see and be ashamed of all their might. + +They will lay their hand on their mouth. + +Their ears will be deaf. + + +They will lick the dust like a serpent. + +Like crawling things of the earth, they will come trembling out of their dens. + +They will come with fear to Yahweh our God, + +and will be afraid because of you. + + +Who is a God like you, who pardons iniquity, + +and passes over the disobedience of the remnant of his heritage? + +He doesn’t retain his anger forever, + +because he delights in loving kindness. + + +He will again have compassion on us. + +He will tread our iniquities under foot. + +You will cast all their sins into the depths of the sea. + + +You will give truth to Jacob, + +and mercy to Abraham, + +as you have sworn to our fathers from the days of old. + + +
+34-NAM-web.sfm World English Bible (WEB) +Nahum +The Book of Nahum +Nahum +Nah +

The Book of +

+

Nahum +

+ + +

A revelation about Nineveh. The book of the vision of Nahum the Elkoshite. + +Yahweh1:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. is a jealous God1:2 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). and avenges. Yahweh avenges and is full of wrath. Yahweh takes vengeance on his adversaries, and he maintains wrath against his enemies. + +Yahweh is slow to anger, and great in power, and will by no means leave the guilty unpunished. Yahweh has his way in the whirlwind and in the storm, and the clouds are the dust of his feet. + +He rebukes the sea and makes it dry, and dries up all the rivers. Bashan and Carmel languish. The flower of Lebanon languishes. + +The mountains quake before him, and the hills melt away. The earth trembles at his presence, yes, the world, and all who dwell in it. + +Who can stand before his indignation? Who can endure the fierceness of his anger? His wrath is poured out like fire, and the rocks are broken apart by him. + +Yahweh is good, a stronghold in the day of trouble; and he knows those who take refuge in him. + +But with an overflowing flood, he will make a full end of her place, and will pursue his enemies into darkness. + +What do you plot against Yahweh? He will make a full end. Affliction won’t rise up the second time. + +For entangled like thorns, and drunken as with their drink, they are consumed utterly like dry stubble. + +One has gone out of you who devises evil against Yahweh, who counsels wickedness. + +

+

Yahweh says: “Though they are in full strength and likewise many, even so they will be cut down and pass away. Though I have afflicted you, I will afflict you no more. + +Now I will break his yoke from off you, and will burst your bonds apart.” + +

+

Yahweh has commanded concerning you: “No more descendants will bear your name. Out of the house of your gods, I will cut off the engraved image and the molten image. I will make your grave, for you are vile.” + +

+

Behold,1:15 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. on the mountains the feet of him who brings good news, who publishes peace! Keep your feasts, Judah! Perform your vows, for the wicked one will no more pass through you. He is utterly cut off. + +

+ + +

He who dashes in pieces has come up against you. Keep the fortress! Watch the way! Strengthen your waist! Fortify your power mightily! + +

+

For Yahweh restores the excellency of Jacob as the excellency of Israel, for the destroyers have destroyed them and ruined their vine branches. + +

+

The shield of his mighty men is made red. The valiant men are in scarlet. The chariots flash with steel in the day of his preparation, and the pine spears are brandished. + +The chariots rage in the streets. They rush back and forth in the wide ways. Their appearance is like torches. They run like the lightnings. + +He summons his picked troops. They stumble on their way. They dash to its wall, and the protective shield is put in place. + +The gates of the rivers are opened, and the palace is dissolved. + +It is decreed: she is uncovered, she is carried away; and her servants moan as with the voice of doves, beating on their breasts. + +But Nineveh has been from of old like a pool of water, yet they flee away. “Stop! Stop!” they cry, but no one looks back. + +Take the plunder of silver. Take the plunder of gold, for there is no end of treasure, an abundance of every precious thing. + +She is empty, void, and waste. The heart melts, the knees knock together, their bodies and faces have grown pale. + +Where is the den of the lions, and the feeding place of the young lions, where the lion and the lioness walked with the lion’s cubs, and no one made them afraid? + +The lion tore in pieces enough for his cubs, and strangled prey for his lionesses, and filled his caves with the kill and his dens with prey. + +“Behold, I am against you,” says Yahweh of Armies, “and I will burn her chariots in the smoke, and the sword will devour your young lions; and I will cut off your prey from the earth, and the voice of your messengers will no longer be heard.” + +

+ + +

Woe to the bloody city! It is all full of lies and robberyno end to the prey. + +The noise of the whip, the noise of the rattling of wheels, prancing horses, and bounding chariots, + +the horseman charging, and the flashing sword, the glittering spear, and a multitude of slain, and a great heap of corpses, and there is no end of the bodies. They stumble on their bodies + +because of the multitude of the prostitution of the alluring prostitute, the mistress of witchcraft, who sells nations through her prostitution, and families through her witchcraft. + +Behold, I am against you,” says Yahweh of Armies, “and I will lift your skirts over your face. I will show the nations your nakedness, and the kingdoms your shame. + +I will throw abominable filth on you and make you vile, and will make you a spectacle. + +It will happen that all those who look at you will flee from you, and say, ‘Nineveh is laid waste! Who will mourn for her?’ Where will I seek comforters for you?” + +

+

Are you better than No-Amon,3:8 +or, Thebes who was situated among the rivers,3:8 +or, Nile who had the waters around her, whose rampart was the sea, and her wall was of the sea? + +Cush and Egypt were her boundless strength. Put and Libya were her helpers. + +Yet was she carried away. She went into captivity. Her young children also were dashed in pieces at the head of all the streets, and they cast lots for her honorable men, and all her great men were bound in chains. + +You also will be drunken. You will be hidden. You also will seek a stronghold because of the enemy. + +All your fortresses will be like fig trees with the first-ripe figs. If they are shaken, they fall into the mouth of the eater. + +Behold, your troops among you are women. The gates of your land are set wide open to your enemies. The fire has devoured your bars. + +

+

Draw water for the siege. Strengthen your fortresses. Go into the clay, and tread the mortar. Make the brick kiln strong. + +There the fire will devour you. The sword will cut you off. It will devour you like the grasshopper. Multiply like grasshoppers. Multiply like the locust. + +You have increased your merchants more than the stars of the skies. The grasshopper strips and flees away. + +Your guards are like the locusts, and your officials like the swarms of locusts, which settle on the walls on a cold day, but when the sun appears, they flee away, and their place is not known where they are. + +

+

Your shepherds slumber, king of Assyria. Your nobles lie down. Your people are scattered on the mountains, and there is no one to gather them. + +There is no healing your wound, for your injury is fatal. All who hear the report of you clap their hands over you, for who hasn’t felt your endless cruelty? + +

+
+35-HAB-web.sfm World English Bible (WEB) +Habakkuk +The Book of Habakkuk +Habakkuk +Hab +

The Book of +

+

Habakkuk +

+ + +

The revelation which Habakkuk the prophet saw. + +Yahweh,1:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. how long will I cry, and you will not hear? I cry out to youViolence!” and will you not save? + +Why do you show me iniquity, and look at perversity? For destruction and violence are before me. There is strife, and contention rises up. + +Therefore the law is paralyzed, and justice never prevails; for the wicked surround the righteous; therefore justice comes out perverted. + +

+

Look among the nations, watch, and wonder marvelously; for I am working a work in your days which you will not believe though it is told you. + +For, behold,1:6 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I am raising up the Chaldeans, that bitter and hasty nation who march through the width of the earth, to possess dwelling places that are not theirs. + +They are feared and dreaded. Their judgment and their dignity proceed from themselves. + +Their horses also are swifter than leopards, and are more fierce than the evening wolves. Their horsemen press proudly on. Yes, their horsemen come from afar. They fly as an eagle that hurries to devour. + +All of them come for violence. Their hordes face forward. They gather prisoners like sand. + +Yes, they scoff at kings, and princes are a derision to them. They laugh at every stronghold, for they build up an earthen ramp and take it. + +Then they sweep by like the wind and go on. They are indeed guilty, whose strength is their god.” + +

+

Aren’t you from everlasting, Yahweh my God,1:12 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). my Holy One? We will not die. Yahweh, you have appointed them for judgment. You, Rock, have established him to punish. + +You who have purer eyes than to see evil, and who cannot look on perversity, why do you tolerate those who deal treacherously and keep silent when the wicked swallows up the man who is more righteous than he, + +and make men like the fish of the sea, like the creeping things that have no ruler over them? + +He takes up all of them with the hook. He catches them in his net and gathers them in his dragnet. Therefore he rejoices and is glad. + +Therefore he sacrifices to his net and burns incense to his dragnet, because by them his life is luxurious and his food is good. + +Will he therefore continually empty his net, and kill the nations without mercy? + +

+ + +

I will stand at my watch and set myself on the ramparts, and will look out to see what he will say to me, and what I will answer concerning my complaint. + +

+

Yahweh answered me, “Write the vision, and make it plain on tablets, that he who runs may read it. + +For the vision is yet for the appointed time, and it hurries toward the end, and won’t prove false. Though it takes time, wait for it, because it will surely come. It won’t delay. + +Behold, his soul is puffed up. It is not upright in him, but the righteous will live by his faith. + +Yes, moreover, wine is treacherous: an arrogant man who doesn’t stay at home, who enlarges his desire as Sheol;2:5 +Sheol is the place of the dead. + he is like death and can’t be satisfied, but gathers to himself all nations and heaps to himself all peoples. + +

+

Won’t all these take up a parable against him, and a taunting proverb against him, and say, ‘Woe to him who increases that which is not his, and who enriches himself by extortion! How long?’ + +Won’t your debtors rise up suddenly, and wake up those who make you tremble, and you will be their victim? + +Because you have plundered many nations, all the remnant of the peoples will plunder you because of men’s blood, and for the violence done to the land, to the city and to all who dwell in it. + +

+

Woe to him who gets an evil gain for his house, that he may set his nest on high, that he may be delivered from the hand of evil! + +You have devised shame to your house by cutting off many peoples, and have sinned against your soul. + +For the stone will cry out of the wall, and the beam out of the woodwork will answer it. + +

+

Woe to him who builds a town with blood, and establishes a city by iniquity! + +Behold, isn’t it from Yahweh of Armies that the peoples labor for the fire, and the nations weary themselves for vanity? + +For the earth will be filled with the knowledge of Yahweh’s glory, as the waters cover the sea. + +

+

Woe to him who gives his neighbor drink, pouring your inflaming wine until they are drunk, so that you may gaze at their naked bodies! + +You are filled with shame, and not glory. You will also drink and be exposed! The cup of Yahweh’s right hand will come around to you, and disgrace will cover your glory. + +For the violence done to Lebanon will overwhelm you, and the destruction of the animals will terrify you, because of men’s blood and for the violence done to the land, to every city and to those who dwell in them. + +

+

What value does the engraved image have, that its maker has engraved it; the molten image, even the teacher of lies, that he who fashions its form trusts in it, to make mute idols? + +Woe to him who says to the wood, ‘Awake!’ or to the mute stone, ‘Arise!’ Shall this teach? Behold, it is overlaid with gold and silver, and there is no breath at all within it. + +But Yahweh is in his holy temple. Let all the earth be silent before him!” + +

+ + +

A prayer of Habakkuk, the prophet, set to victorious music. + +

+Yahweh, I have heard of your fame. + +I stand in awe of your deeds, Yahweh. + +Renew your work in the middle of the years. + +In the middle of the years make it known. + +In wrath, you remember mercy. + + +God came from Teman, + +the Holy One from Mount Paran. +Selah. + + +His glory covered the heavens, + +and his praise filled the earth. + + +His splendor is like the sunrise. + +Rays shine from his hand, where his power is hidden. + + +Plague went before him, + +and pestilence followed his feet. + + +He stood, and shook the earth. + +He looked, and made the nations tremble. + +The ancient mountains were crumbled. + +The age-old hills collapsed. + +His ways are eternal. + + +I saw the tents of Cushan in affliction. + +The dwellings of the land of Midian trembled. + + +Was Yahweh displeased with the rivers? + +Was your anger against the rivers, + +or your wrath against the sea, + +that you rode on your horses, + +on your chariots of salvation? + + +You uncovered your bow. + +You called for your sworn arrows. +Selah. + +You split the earth with rivers. + + +The mountains saw you, and were afraid. + +The storm of waters passed by. + +The deep roared and lifted up its hands on high. + + +The sun and moon stood still in the sky + +at the light of your arrows as they went, + +at the shining of your glittering spear. + + +You marched through the land in wrath. + +You threshed the nations in anger. + + +You went out for the salvation of your people, + +for the salvation of your anointed. + +You crushed the head of the land of wickedness. + +You stripped them head to foot. +Selah. + + + +You pierced the heads of his warriors with their own spears. + +They came as a whirlwind to scatter me, + +gloating as if to devour the wretched in secret. + + +You trampled the sea with your horses, + +churning mighty waters. + + +I heard, and my body trembled. + +My lips quivered at the voice. + +Rottenness enters into my bones, and I tremble in my place + +because I must wait quietly for the day of trouble, + +for the coming up of the people who invade us. + + +For even though the fig tree doesn’t flourish, + +nor fruit be in the vines, + +the labor of the olive fails, + +the fields yield no food, + +the flocks are cut off from the fold, + +and there is no herd in the stalls, + + +yet I will rejoice in Yahweh. + +I will be joyful in the God of my salvation! + + +Yahweh, the Lord,3:19 +The word translated “Lord” is “Adonai.” is my strength. + +He makes my feet like deer’s feet, + +and enables me to go in high places. + +

For the music director, on my stringed instruments. + +

+
+36-ZEP-web.sfm World English Bible (WEB) +Zephaniah +The Book of Zephaniah +Zephaniah +Zep +

The Book of +

+

Zephaniah +

+ + +

Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word which came to Zephaniah, the son of Cushi, the son of Gedaliah, the son of Amariah, the son of Hezekiah, in the days of Josiah, the son of Amon, king of Judah. + +

+

I will utterly sweep away everything from the surface of the earth, says Yahweh. + +I will sweep away man and animal. I will sweep away the birds of the sky, the fish of the sea, and the heaps of rubble with the wicked. I will cut off man from the surface of the earth, says Yahweh. + +I will stretch out my hand against Judah and against all the inhabitants of Jerusalem. I will cut off the remnant of Baal from this placethe name of the idolatrous and pagan priests, + +those who worship the army of the sky on the housetops, those who worship and swear by Yahweh and also swear by Malcam, + +those who have turned back from following Yahweh, and those who haven’t sought Yahweh nor inquired after him. + +

+

Be silent at the presence of the Lord1:7 +The word translated “Lord” is “Adonai.” Yahweh, for the day of Yahweh is at hand. For Yahweh has prepared a sacrifice. He has consecrated his guests. + +It will happen in the day of Yahweh’s sacrifice that I will punish the princes, the king’s sons, and all those who are clothed with foreign clothing. + +In that day, I will punish all those who leap over the threshold, who fill their master’s house with violence and deceit. + +

+

In that day, says Yahweh, there will be the noise of a cry from the fish gate, a wailing from the second quarter, and a great crashing from the hills. + +Wail, you inhabitants of Maktesh, for all the people of Canaan are undone! All those who were loaded with silver are cut off. + +It will happen at that time, that I will search Jerusalem with lamps, and I will punish the men who are settled on their dregs, who say in their heart, “Yahweh will not do good, neither will he do evil.” + +Their wealth will become a plunder, and their houses a desolation. Yes, they will build houses, but won’t inhabit them. They will plant vineyards, but won’t drink their wine. + +

+

The great day of Yahweh is near. It is near and hurries greatly, the voice of the day of Yahweh. The mighty man cries there bitterly. + +That day is a day of wrath, a day of distress and anguish, a day of trouble and ruin, a day of darkness and gloom, a day of clouds and blackness, + +a day of the trumpet and alarm against the fortified cities and against the high battlements. + +I will bring such distress on men that they will walk like blind men because they have sinned against Yahweh. Their blood will be poured out like dust and their flesh like dung. + +Neither their silver nor their gold will be able to deliver them in the day of Yahweh’s wrath, but the whole land will be devoured by the fire of his jealousy; for he will make an end, yes, a terrible end, of all those who dwell in the land. + +

+ + +

Gather yourselves together, yes, gather together, you nation that has no shame, + +before the appointed time when the day passes as the chaff, before the fierce anger of Yahweh comes on you, before the day of Yahweh’s anger comes on you. + +Seek Yahweh, all you humble of the land, who have kept his ordinances. Seek righteousness. Seek humility. It may be that you will be hidden in the day of Yahweh’s anger. + +For Gaza will be forsaken, and Ashkelon a desolation. They will drive out Ashdod at noonday, and Ekron will be rooted up. + +Woe to the inhabitants of the sea coast, the nation of the Cherethites! Yahweh’s word is against you, Canaan, the land of the Philistines. I will destroy you until there is no inhabitant. + +The sea coast will be pastures, with cottages for shepherds and folds for flocks. + +The coast will be for the remnant of the house of Judah. They will find pasture. In the houses of Ashkelon, they will lie down in the evening, for Yahweh, their God,2:7 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). will visit them and restore them. + +I have heard the reproach of Moab and the insults of the children of Ammon, with which they have reproached my people and magnified themselves against their border. + +Therefore, as I live, says Yahweh of Armies, the God of Israel, surely Moab will be as Sodom, and the children of Ammon as Gomorrah, a possession of nettles and salt pits, and a perpetual desolation. The remnant of my people will plunder them, and the survivors of my nation will inherit them. + +This they will have for their pride, because they have reproached and magnified themselves against the people of Yahweh of Armies. + +Yahweh will be awesome to them, for he will famish all the gods of the land. Men will worship him, everyone from his place, even all the shores of the nations. + +

+

You Cushites also, you will be killed by my sword. + +

+

He will stretch out his hand against the north, destroy Assyria, and will make Nineveh a desolation, as dry as the wilderness. + +Herds will lie down in the middle of her, all kinds of animals. Both the pelican and the porcupine will lodge in its capitals. Their calls will echo through the windows. Desolation will be in the thresholds, for he has laid bare the cedar beams. + +This is the joyous city that lived carelessly, that said in her heart, “I am, and there is no one besides me.” How she has become a desolation, a place for animals to lie down in! Everyone who passes by her will hiss and shake their fists. + +

+ + +

Woe to her who is rebellious and polluted, the oppressing city! + +She didn’t obey the voice. She didn’t receive correction. She didn’t trust in Yahweh. She didn’t draw near to her God. + +

+

Her princes within her are roaring lions. Her judges are evening wolves. They leave nothing until the next day. + +Her prophets are arrogant and treacherous people. Her priests have profaned the sanctuary. They have done violence to the law. + +Yahweh, within her, is righteous. He will do no wrong. Every morning he brings his justice to light. He doesn’t fail, but the unjust know no shame. + +

+

I have cut off nations. Their battlements are desolate. I have made their streets waste, so that no one passes by. Their cities are destroyed, so that there is no man, so that there is no inhabitant. + +I said, “Just fear me. Receive correction,” so that her dwelling won’t be cut off, according to all that I have appointed concerning her. But they rose early and corrupted all their doings. + +

+

Therefore wait for me”, says Yahweh, “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 on them my indignation, even all my fierce anger, for all the earth will be devoured with the fire of my jealousy. + +

+

For then I will purify the lips of the peoples, that they may all call on Yahweh’s name, to serve him shoulder to shoulder. + +From beyond the rivers of Cush, my worshipers, even the daughter of my dispersed people, will bring my offering. + +In that day you will not be disappointed for all your doings in which you have transgressed against me; for then I will take away out from among you your proudly exulting ones, and you will no more be arrogant in my holy mountain. + +But I will leave among you an afflicted and poor people, and they will take refuge in Yahweh’s name. + +The remnant of Israel will not do iniquity nor speak lies, neither will a deceitful tongue be found in their mouth, for they will feed and lie down, and no one will make them afraid.” + +

+

Sing, daughter of Zion! Shout, Israel! Be glad and rejoice with all your heart, daughter of Jerusalem. + +Yahweh has taken away your judgments. He has thrown out your enemy. The King of Israel, Yahweh, is among you. You will not be afraid of evil any more. + +In that day, it will be said to Jerusalem, “Don’t be afraid, Zion. Don’t let your hands be weak.” + +Yahweh, your God, is among you, a mighty one who will save. He will rejoice over you with joy. He will calm you in his love. He will rejoice over you with singing. + +I will remove those who grieve about the appointed feasts from you. They are a burden and a reproach to you. + +Behold,3:19 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. at that time I will deal with all those who afflict you; and I will save those who are lame and gather those who were driven away. I will give them praise and honor, whose shame has been in all the earth. + +At that time I will bring you in, and at that time I will gather you; for I will give you honor and praise among all the peoples of the earth when I restore your fortunes before your eyes, says Yahweh. + +

+
+7-HAG-web.sfm World English Bible (WEB) +Haggai +The Book of Haggai +Haggai +Hag +

The Book of +

+

Haggai +

+ + +

In the second year of Darius the king, in the sixth month, in the first day of the month, Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word came by Haggai the prophet, to Zerubbabel the son of Shealtiel, governor of Judah, and to Joshua the son of Jehozadak, the high priest, saying, + +This is what Yahweh of Armies says: These people say, ‘The time hasn’t yet come, the time for Yahweh’s house to be built.’” + +

+

Then Yahweh’s word came by Haggai the prophet, saying, + +Is it a time for you yourselves to dwell in your paneled houses, while this house lies waste? + +Now therefore this is what Yahweh of Armies says: ‘Consider your ways. + +You have sown much, and bring in little. You eat, but you don’t have enough. You drink, but you aren’t filled with drink. You clothe yourselves, but no one is warm; and he who earns wages earns wages to put them into a bag with holes in it.’ + +

+

This is what Yahweh of Armies says: ‘Consider your ways. + +Go up to the mountain, bring wood, and build the house. I will take pleasure in it, and I will be glorified,” says Yahweh. + +You looked for much, and, behold,1:9 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. it came to little; and when you brought it home, I blew it away. Why?” says Yahweh of Armies, “Because of my house that lies waste, while each of you is busy with his own house. + +Therefore for your sake the heavens withhold the dew, and the earth withholds its fruit. + +I called for a drought on the land, on the mountains, on the grain, on the new wine, on the oil, on that which the ground produces, on men, on livestock, and on all the labor of the hands.” + +

+

Then Zerubbabel the son of Shealtiel and Joshua the son of Jehozadak, the high priest, with all the remnant of the people, obeyed Yahweh their God’s1:12 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). voice, and the words of Haggai the prophet, as Yahweh their God had sent him; and the people feared Yahweh. + +

+

Then Haggai, Yahweh’s messenger, spoke Yahweh’s message to the people, saying, “I am with you,” says Yahweh. + +

+

Yahweh stirred up the spirit of Zerubbabel the son of Shealtiel, governor of Judah, and the spirit of Joshua the son of Jehozadak, the high priest, and the spirit of all the remnant of the people; and they came and worked on the house of Yahweh of Armies, their God, + +in the twenty-fourth day of the month, in the sixth month, in the second year of Darius the king. + +

+ + +

In the seventh month, in the twenty-first day of the month, Yahweh’s word came by Haggai the prophet, saying, + +“Speak now to Zerubbabel the son of Shealtiel, governor of Judah, and to Joshua the son of Jehozadak, the high priest, and to the remnant of the people, saying, + +Who is left among you who saw this house in its former glory? How do you see it now? Isn’t it in your eyes as nothing? + +Yet now be strong, Zerubbabel,’ says Yahweh. ‘Be strong, Joshua son of Jehozadak, the high priest. Be strong, all you people of the land,’ says Yahweh, ‘and work, for I am with you,’ says Yahweh of Armies. + +This is the word that I covenanted with you when you came out of Egypt, and my Spirit lived among you. ‘Don’t be afraid.’ + +For this is what Yahweh of Armies says: ‘Yet once more, it is a little while, and I will shake the heavens, the earth, the sea, and the dry land; + +and I will shake all nations. The treasure of all nations will come, and I will fill this house with glory, says Yahweh of Armies. + +The silver is mine, and the gold is mine,’ says Yahweh of Armies. + +The latter glory of this house will be greater than the former,’ says Yahweh of Armies; ‘and in this place I will give peace,’ says Yahweh of Armies.” + +

+

In the twenty-fourth day of the ninth month, in the second year of Darius, Yahweh’s word came by Haggai the prophet, saying, + +Yahweh of Armies says: Ask now the priests concerning the law, saying, + +If someone carries holy meat in the fold of his garment, and with his fold touches bread, stew, wine, oil, or any food, will it become holy?’” +

+

The priests answered, “No.” + +

+

Then Haggai said, “If one who is unclean by reason of a dead body touches any of these, will it be unclean?” +

+

The priests answered, “It will be unclean.” + +

+

Then Haggai answered, “‘So is this people, and so is this nation before me,’ says Yahweh; ‘and so is every work of their hands. That which they offer there is unclean. + +Now, please consider from this day and backward, before a stone was laid on a stone in Yahweh’s temple. + +Through all that time, when one came to a heap of twenty measures, there were only ten. When one came to the wine vat to draw out fifty, there were only twenty. + +I struck you with blight, mildew, and hail in all the work of your hands; yet you didn’t turn to me,’ says Yahweh. + +Consider, please, from this day and backward, from the twenty-fourth day of the ninth month, since the day that the foundation of Yahweh’s temple was laid, consider it. + +Is the seed yet in the barn? Yes, the vine, the fig tree, the pomegranate, and the olive tree haven’t produced. From today I will bless you.’” + +

+

Yahweh’s word came the second time to Haggai in the twenty-fourth day of the month, saying, + +“Speak to Zerubbabel, governor of Judah, saying, ‘I will shake the heavens and the earth. + +I will overthrow the throne of kingdoms. I will destroy the strength of the kingdoms of the nations. I will overthrow the chariots and those who ride in them. The horses and their riders will come down, everyone by the sword of his brother. + +In that day, says Yahweh of Armies, I will take you, Zerubbabel my servant, the son of Shealtiel,’ says Yahweh, ‘and will make you like a signet ring, for I have chosen you,’ says Yahweh of Armies.” + +

+
+38-ZEC-web.sfm World English Bible (WEB) +Zechariah +The Book of Zechariah +Zechariah +Zec +

The Book of +

+

Zechariah +

+ + +

In the eighth month, in the second year of Darius, Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word came to the prophet Zechariah the son of Berechiah, the son of Iddo, saying, + +Yahweh was very displeased with your fathers. + +Therefore tell them, Yahweh of Armies says: ‘Return to me,’ says Yahweh of Armies, ‘and I will return to you,’ says Yahweh of Armies. + +Don’t you be like your fathers, to whom the former prophets proclaimed, saying: Yahweh of Armies says, ‘Return now from your evil ways and from your evil doings;’ but they didn’t hear nor listen to me, says Yahweh. + +Your fathers, where are they? And the prophets, do they live forever? + +But my words and my decrees, which I commanded my servants the prophets, didn’t they overtake your fathers? +

+

Then they repented and said, ‘Just as Yahweh of Armies determined to do to us, according to our ways and according to our practices, so he has dealt with us.’” + +

+

On the twenty-fourth day of the eleventh month, which is the month Shebat, in the second year of Darius, Yahweh’s word came to the prophet Zechariah the son of Berechiah, the son of Iddo, saying, + +I had a vision in the night, and behold,1:8 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. a man riding on a red horse, and he stood among the myrtle trees that were in a ravine; and behind him there were red, brown, and white horses. + +Then I asked, ‘My lord, what are these?’” +

+

The angel who talked with me said to me, “I will show you what these are.” + +

+

The man who stood among the myrtle trees answered, “They are the ones Yahweh has sent to go back and forth through the earth.” + +

+

They reported to Yahweh’s angel who stood among the myrtle trees, and said, “We have walked back and forth through the earth, and behold, all the earth is at rest and in peace.” + +

+

Then Yahweh’s angel replied, “O Yahweh of Armies, how long will you not have mercy on Jerusalem and on the cities of Judah, against which you have had indignation these seventy years?” + +

+

Yahweh answered the angel who talked with me with kind and comforting words. + +So the angel who talked with me said to me, “Proclaim, saying, ‘Yahweh of Armies says: “I am jealous for Jerusalem and for Zion with a great jealousy. + +I am very angry with the nations that are at ease; for I was but a little displeased, but they added to the calamity.” + +Therefore Yahweh says: “I have returned to Jerusalem with mercy. My house shall be built in it,” says Yahweh of Armies, “and a line shall be stretched out over Jerusalem.”’ + +

+

Proclaim further, saying, ‘Yahweh of Armies says: “My cities will again overflow with prosperity, and Yahweh will again comfort Zion, and will again choose Jerusalem.”’” + +

+

I lifted up my eyes and saw, and behold, four horns. + +I asked the angel who talked with me, “What are these?” +

+

He answered me, “These are the horns which have scattered Judah, Israel, and Jerusalem.” + +

+

Yahweh showed me four craftsmen. + +Then I asked, “What are these coming to do?” +

+

He said, “These are the horns which scattered Judah, so that no man lifted up his head; but these have come to terrify them, to cast down the horns of the nations that lifted up their horn against the land of Judah to scatter it.” + +

+ + +

I lifted up my eyes, and saw, and behold, a man with a measuring line in his hand. + +Then I asked, “Where are you going?” +

+

He said to me, “To measure Jerusalem, to see what is its width and what is its length.” + +

+

Behold, the angel who talked with me went out, and another angel went out to meet him, + +and said to him, “Run, speak to this young man, saying, ‘Jerusalem will be inhabited as villages without walls, because of the multitude of men and livestock in it. + +For I,’ says Yahweh, ‘will be to her a wall of fire around it, and I will be the glory in the middle of her. + +

+

Come! Come! Flee from the land of the north,’ says Yahweh; ‘for I have spread you abroad as the four winds of the sky,’ says Yahweh. + +Come, Zion! Escape, you who dwell with the daughter of Babylon.’ + +For Yahweh of Armies says: ‘For honor he has sent me to the nations which plundered you; for he who touches you touches the apple of his eye. + +For, behold, I will shake my hand over them, and they will be a plunder to those who served them; and you will know that Yahweh of Armies has sent me. + +Sing and rejoice, daughter of Zion! For behold, I come and I will dwell within you,’ says Yahweh. + +Many nations shall join themselves to Yahweh in that day, and shall be my people; and I will dwell among you, and you shall know that Yahweh of Armies has sent me to you. + +Yahweh will inherit Judah as his portion in the holy land, and will again choose Jerusalem. + +Be silent, all flesh, before Yahweh; for he has roused himself from his holy habitation!” + +

+ + +

He showed me Joshua the high priest standing before Yahweh’s angel, and Satan standing at his right hand to be his adversary. + +Yahweh said to Satan, “Yahweh rebuke you, Satan! Yes, Yahweh who has chosen Jerusalem rebuke you! Isn’t this a burning stick plucked out of the fire?” + +

+

Now Joshua was clothed with filthy garments, and was standing before the angel. + +He answered and spoke to those who stood before him, saying, “Take the filthy garments off him.” To him he said, “Behold, I have caused your iniquity to pass from you, and I will clothe you with rich clothing.” + +

+

I said, “Let them set a clean turban on his head.” +

+

So they set a clean turban on his head, and clothed him; and Yahweh’s angel was standing by. + +

+

Yahweh’s angel solemnly assured Joshua, saying, + +Yahweh of Armies says: ‘If you will walk in my ways, and if you will follow my instructions, then you also shall judge my house, and shall also keep my courts, and I will give you a place of access among these who stand by. + +Hear now, Joshua the high priest, you and your fellows who sit before you, for they are men who are a sign; for, behold, I will bring out my servant, the Branch. + +For, behold, the stone that I have set before Joshua: on one stone are seven eyes; behold, I will engrave its inscription,’ says Yahweh of Armies, ‘and I will remove the iniquity of that land in one day. + +In that day,’ says Yahweh of Armies, ‘you will invite every man his neighbor under the vine and under the fig tree.’” + +

+ + +

The angel who talked with me came again and wakened me, as a man who is wakened out of his sleep. + +He said to me, “What do you see?” +

+

I said, “I have seen, and behold, a lamp stand all of gold, with its bowl on the top of it, and its seven lamps on it; there are seven pipes to each of the lamps which are on the top of it; + +and two olive trees by it, one on the right side of the bowl, and the other on the left side of it.” + +

+

I answered and spoke to the angel who talked with me, saying, “What are these, my lord?” + +

+

Then the angel who talked with me answered me, “Don’t you know what these are?” +

+

I said, “No, my lord.” + +

+

Then he answered and spoke to me, saying, “This is Yahweh’s word to Zerubbabel, saying, ‘Not by might, nor by power, but by my Spirit,’ says Yahweh of Armies. + +Who are you, great mountain? Before Zerubbabel you are a plain; and he will bring out the capstone with shouts ofGrace, grace, to it!’” + +

+

Moreover Yahweh’s word came to me, saying, + +The hands of Zerubbabel have laid the foundation of this house. His hands shall also finish it; and you will know that Yahweh of Armies has sent me to you. + +Indeed, who despises the day of small things? For these seven shall rejoice, and shall see the plumb line in the hand of Zerubbabel. These are Yahweh’s eyes, which run back and forth through the whole earth.” + +

+

Then I asked him, “What are these two olive trees on the right side of the lamp stand and on the left side of it?” + +

+

I asked him the second time, “What are these two olive branches, which are beside the two golden spouts that pour the golden oil out of themselves?” + +

+

He answered me, “Don’t you know what these are?” +

+

I said, “No, my lord.” + +

+

Then he said, “These are the two anointed ones who stand by the Lord4:14 +The word translated “Lord” is “Adonai.” of the whole earth.” + +

+ + +

Then again I lifted up my eyes and saw, and behold, a flying scroll. + +He said to me, “What do you see?” +

+

I answered, “I see a flying scroll; its length is twenty cubits,5:2 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and its width ten cubits.” + +

+

Then he said to me, “This is the curse that goes out over the surface of the whole land, for everyone who steals shall be cut off according to it on the one side; and everyone who swears falsely shall be cut off according to it on the other side. + +I will cause it to go out,” says Yahweh of Armies, “and it will enter into the house of the thief, and into the house of him who swears falsely by my name; and it will remain in the middle of his house, and will destroy it with its timber and its stones.” + +

+

Then the angel who talked with me came forward and said to me, “Lift up now your eyes and see what this is that is appearing.” + +

+

I said, “What is it?” +

+

He said, “This is the ephah5:6 +An ephah is a measure of volume of about 22 liters, 5.8 U. S. gallons, or about 2/3 of a bushel. + basket that is appearing.” He said moreover, “This is their appearance in all the land— + +and behold, a lead cover weighing one talent5:7 +A talent is about 30 kilograms or 66 pounds. was lifted upand there was a woman sitting in the middle of the ephah5:7 +1 ephah is about 22 liters or about 2/3 of a bushel basket.” + +He said, “This is Wickedness;” and he threw her down into the middle of the ephah basket; and he threw the lead weight on its mouth. + +

+

Then I lifted up my eyes and saw, and behold, there were two women; and the wind was in their wings. Now they had wings like the wings of a stork, and they lifted up the ephah basket between earth and the sky. + +Then I said to the angel who talked with me, “Where are these carrying the ephah basket?” + +

+

He said to me, “To build her a house in the land of Shinar. When it is prepared, she will be set there in her own place.” + +

+ + +

Again I lifted up my eyes, and saw, and behold, four chariots came out from between two mountains; and the mountains were mountains of bronze. + +In the first chariot were red horses. In the second chariot were black horses. + +In the third chariot were white horses. In the fourth chariot were dappled horses, all of them powerful. + +Then I asked the angel who talked with me, “What are these, my lord?” + +

+

The angel answered me, “These are the four winds of the sky, which go out from standing before the Lord of all the earth. + +The one with the black horses goes out toward the north country; and the white went out after them; and the dappled went out toward the south country.” + +The strong went out, and sought to go that they might walk back and forth through the earth. He said, “Go around and through the earth!” So they walked back and forth through the earth. + +

+

Then he called to me, and spoke to me, saying, “Behold, those who go toward the north country have quieted my spirit in the north country.” + +

+

Yahweh’s word came to me, saying, + +Take of them of the captivity, even of Heldai, of Tobijah, and of Jedaiah; and come the same day, and go into the house of Josiah the son of Zephaniah, where they have come from Babylon. + +Yes, take silver and gold, and make crowns, and set them on the head of Joshua the son of Jehozadak, the high priest; + +and speak to him, saying, ‘Yahweh of Armies says, “Behold, the man whose name is the Branch! He will grow up out of his place; and he will build Yahweh’s temple. + +He will build Yahweh’s temple. He will bear the glory, and will sit and rule on his throne. He will be a priest on his throne. The counsel of peace will be between them both. + +The crowns shall be to Helem, to Tobijah, to Jedaiah, and to Hen the son of Zephaniah, for a memorial in Yahweh’s temple. + +

+

Those who are far off shall come and build in Yahweh’s temple; and you shall know that Yahweh of Armies has sent me to you. This will happen, if you will diligently obey Yahweh your God’s voice.”’”6:15 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). + +

+ + +

In the fourth year of King Darius, Yahweh’s word came to Zechariah in the fourth day of the ninth month, the month of Chislev. + +The people of Bethel sent Sharezer and Regem Melech and their men to entreat Yahweh’s favor, + +and to speak to the priests of the house of Yahweh of Armies and to the prophets, saying, “Should I weep in the fifth month, separating myself, as I have done these so many years?” + +

+

Then the word of Yahweh of Armies came to me, saying, + +“Speak to all the people of the land and to the priests, saying, ‘When you fasted and mourned in the fifth and in the seventh month for these seventy years, did you at all fast to me, really to me? + +When you eat and when you drink, don’t you eat for yourselves and drink for yourselves? + +Aren’t these the words which Yahweh proclaimed by the former prophets when Jerusalem was inhabited and in prosperity, and its cities around her, and the South and the lowland were inhabited?’” + +

+

Yahweh’s word came to Zechariah, saying, + +Thus has Yahweh of Armies spoken, saying, ‘Execute true judgment, and show kindness and compassion every man to his brother. + +Don’t oppress the widow, the fatherless, the foreigner, nor the poor; and let none of you devise evil against his brother in your heart.’ + +But they refused to listen, and turned their backs, and stopped their ears, that they might not hear. + +Yes, they made their hearts as hard as flint, lest they might hear the law and the words which Yahweh of Armies had sent by his Spirit by the former prophets. Therefore great wrath came from Yahweh of Armies. + +It has come to pass that, as he called and they refused to listen, so they will call and I will not listen,” said Yahweh of Armies; + +but I will scatter them with a whirlwind among all the nations which they have not known. Thus the land was desolate after them, so that no man passed through nor returned; for they made the pleasant land desolate.” + +

+ + +

The word of Yahweh of Armies came to me. + +Yahweh of Armies says: “I am jealous for Zion with great jealousy, and I am jealous for her with great wrath.” + +

+

Yahweh says: “I have returned to Zion, and will dwell in the middle of Jerusalem. Jerusalem shall be calledThe City of Truth;’ and the mountain of Yahweh of Armies, ‘The Holy Mountain.’” + +

+

Yahweh of Armies says: “Old men and old women will again dwell in the streets of Jerusalem, every man with his staff in his hand because of their old age. + +The streets of the city will be full of boys and girls playing in its streets.” + +

+

Yahweh of Armies says: “If it is marvelous in the eyes of the remnant of this people in those days, should it also be marvelous in my eyes?” says Yahweh of Armies. + +

+

Yahweh of Armies says: “Behold, I will save my people from the east country and from the west country. + +I will bring them, and they will dwell within Jerusalem. They will be my people, and I will be their God, in truth and in righteousness.” + +

+

Yahweh of Armies says: “Let your hands be strong, you who hear in these days these words from the mouth of the prophets who were in the day that the foundation of the house of Yahweh of Armies was laid, even the temple, that it might be built. + +For before those days there was no wages for man nor any wages for an animal, neither was there any peace to him who went out or came in, because of the adversary. For I set all men everyone against his neighbor. + +But now I will not be to the remnant of this people as in the former days,” says Yahweh of Armies. + +For the seed of peace and the vine will yield its fruit, and the ground will give its increase, and the heavens will give their dew. I will cause the remnant of this people to inherit all these things. + +It shall come to pass that, as you were a curse among the nations, house of Judah and house of Israel, so I will save you, and you shall be a blessing. Don’t be afraid. Let your hands be strong.” + +

+

For Yahweh of Armies says: “As I thought to do evil to you when your fathers provoked me to wrath,” says Yahweh of Armies, “and I didn’t repent, + +so again I have thought in these days to do good to Jerusalem and to the house of Judah. Don’t be afraid. + +These are the things that you shall do: speak every man the truth with his neighbor. Execute the judgment of truth and peace in your gates, + +and let none of you devise evil in your hearts against his neighbor, and love no false oath; for all these are things that I hate,” says Yahweh. + +

+

The word of Yahweh of Armies came to me. + +Yahweh of Armies says: “The fasts of the fourth, fifth, seventh, and tenth months shall be for the house of Judah joy, gladness, and cheerful feasts. Therefore love truth and peace.” + +

+

Yahweh of Armies says: “Many peoples and the inhabitants of many cities will yet come. + +The inhabitants of one will go to another, saying, ‘Let’s go speedily to entreat the favor of Yahweh, and to seek Yahweh of Armies. I will go also.’ + +Yes, many peoples and strong nations will come to seek Yahweh of Armies in Jerusalem and to entreat the favor of Yahweh.” + +Yahweh of Armies says: “In those days, ten men out of all the languages of the nations will take hold of the skirt of him who is a Jew, saying, ‘We will go with you, for we have heard that God is with you.’” + +

+ + +

A revelation. +

+Yahweh’s word is against the land of Hadrach, + +and will rest upon Damascus— + +for the eye of man + +and of all the tribes of Israel is toward Yahweh— + + +and Hamath, also, which borders on it, + +Tyre and Sidon, because they are very wise. + + +Tyre built herself a stronghold, + +and heaped up silver like the dust, + +and fine gold like the mire of the streets. + + +Behold, the Lord will dispossess her, + +and he will strike her power in the sea; + +and she will be devoured with fire. + + + +Ashkelon will see it, and fear; + +Gaza also, and will writhe in agony; + +as will Ekron, for her expectation will be disappointed; + +and the king will perish from Gaza, + +and Ashkelon will not be inhabited. + + +Foreigners will dwell in Ashdod, + +and I will cut off the pride of the Philistines. + + +I will take away his blood out of his mouth, + +and his abominations from between his teeth; + +and he also will be a remnant for our God; + +and he will be as a chieftain in Judah, + +and Ekron as a Jebusite. + + +I will encamp around my house against the army, + +that no one pass through or return; + +and no oppressor will pass through them any more: + +for now I have seen with my eyes. + + + +Rejoice greatly, daughter of Zion! + +Shout, daughter of Jerusalem! + +Behold, your King comes to you! + +He is righteous, and having salvation; + +lowly, and riding on a donkey, + +even on a colt, the foal of a donkey. + + +I will cut off the chariot from Ephraim + +and the horse from Jerusalem. + +The battle bow will be cut off; + +and he will speak peace to the nations. + +His dominion will be from sea to sea, + +and from the River to the ends of the earth. + + + +As for you also, + +because of the blood of your covenant, + +I have set free your prisoners from the pit in which is no water. + + +Turn to the stronghold, you prisoners of hope! + +Even today I declare that I will restore double to you. + + +For indeed I bend Judah as a bow for me. + +I have loaded the bow with Ephraim. + +I will stir up your sons, Zion, + +against your sons, Greece, + +and will make you like the sword of a mighty man. + + + +Yahweh will be seen over them. + +His arrow will flash like lightning. + +The Lord Yahweh will blow the trumpet, + +and will go with whirlwinds of the south. + + +Yahweh of Armies will defend them. + +They will destroy and overcome with sling stones. + +They will drink, and roar as through wine. + +They will be filled like bowls, + +like the corners of the altar. + + + +Yahweh their God will save them in that day as the flock of his people; + +for they are like the jewels of a crown, + +lifted on high over his land. + + +For how great is his goodness, + +and how great is his beauty! + +Grain will make the young men flourish, + +and new wine the virgins. + + + + +Ask of Yahweh rain in the spring time, + +Yahweh who makes storm clouds, + +and he gives rain showers to everyone for the plants in the field. + + +For the teraphim10:2 +teraphim were household idols that may have been associated with inheritance rights to the household property. have spoken vanity, + +and the diviners have seen a lie; + +and they have told false dreams. + +They comfort in vain. + +Therefore they go their way like sheep. + +They are oppressed, because there is no shepherd. + + + +My anger is kindled against the shepherds, + +and I will punish the male goats, + +for Yahweh of Armies has visited his flock, the house of Judah, + +and will make them as his majestic horse in the battle. + + +From him will come the cornerstone, + +from him the tent peg, + +from him the battle bow, + +from him every ruler together. + + +They will be as mighty men, + +treading down muddy streets in the battle. + +They will fight, because Yahweh is with them. + +The riders on horses will be confounded. + + + +I will strengthen the house of Judah, + +and I will save the house of Joseph. + +I will bring them back, + +for I have mercy on them. + +They will be as though I had not cast them off, + +for I am Yahweh their God, and I will hear them. + + +Ephraim will be like a mighty man, + +and their heart will rejoice as through wine. + +Yes, their children will see it and rejoice. + +Their heart will be glad in Yahweh. + + +I will signal for them and gather them, + +for I have redeemed them. + +They will increase as they were before. + + +I will sow them among the peoples. + +They will remember me in far countries. + +They will live with their children and will return. + + +I will bring them again also out of the land of Egypt, + +and gather them out of Assyria. + +I will bring them into the land of Gilead and Lebanon; + +and there won’t be room enough for them. + + +He will pass through the sea of affliction, + +and will strike the waves in the sea, + +and all the depths of the Nile will dry up; + +and the pride of Assyria will be brought down, + +and the scepter of Egypt will depart. + + +I will strengthen them in Yahweh. + +They will walk up and down in his name,” says Yahweh. + + + + +Open your doors, Lebanon, + +that the fire may devour your cedars. + + +Wail, cypress tree, for the cedar has fallen, + +because the stately ones are destroyed. + +Wail, you oaks of Bashan, + +for the strong forest has come down. + + +A voice of the wailing of the shepherds! + +For their glory is destroyeda voice of the roaring of young lions! + +For the pride of the Jordan is ruined. + + +

Yahweh my God says: “Feed the flock of slaughter. + +Their buyers slaughter them and go unpunished. Those who sell them say, ‘Blessed be Yahweh, for I am rich;’ and their own shepherds don’t pity them. + +For I will no more pity the inhabitants of the land,” says Yahweh; “but, behold, I will deliver every one of the men into his neighbor’s hand and into the hand of his king. They will strike the land, and out of their hand I will not deliver them.” + +

+

So I fed the flock to be slaughtered, especially the oppressed of the flock. I took for myself two staffs. The one I calledFavorand the other I called “Union”, and I fed the flock. + +I cut off the three shepherds in one month; for my soul was weary of them, and their soul also loathed me. + +Then I said, “I will not feed you. That which dies, let it die; and that which is to be cut off, let it be cut off; and let those who are left eat each other’s flesh.” + +I took my staff Favor and cut it apart, that I might break my covenant that I had made with all the peoples. + +It was broken in that day; and thus the poor of the flock that listened to me knew that it was Yahweh’s word. + +I said to them, “If you think it best, give me my wages; and if not, keep them.” So they weighed for my wages thirty pieces of silver. + +Yahweh said to me, “Throw it to the potterthe handsome price that I was valued at by them!” I took the thirty pieces of silver and threw them to the potter in Yahweh’s house. + +Then I cut apart my other staff, Union, that I might break the brotherhood between Judah and Israel. + +

+

Yahweh said to me, “Take for yourself yet again the equipment of a foolish shepherd. + +For, behold, I will raise up a shepherd in the land who will not visit those who are cut off, neither will seek those who are scattered, nor heal that which is broken, nor feed that which is sound; but he will eat the meat of the fat sheep, and will tear their hoofs in pieces. + +Woe to the worthless shepherd who leaves the flock! The sword will strike his arm and his right eye. His arm will be completely withered, and his right eye will be totally blinded!” + +

+ + +

A revelation of Yahweh’s word concerning Israel: Yahweh, who stretches out the heavens and lays the foundation of the earth, and forms the spirit of man within him says: + +Behold, I will make Jerusalem a cup of reeling to all the surrounding peoples, and it will also be on Judah in the siege against Jerusalem. + +It will happen in that day that I will make Jerusalem a burdensome stone for all the peoples. All who burden themselves with it will be severely wounded, and all the nations of the earth will be gathered together against it. + +In that day,” says Yahweh, “I will strike every horse with terror and his rider with madness. I will open my eyes on the house of Judah, and will strike every horse of the peoples with blindness. + +The chieftains of Judah will say in their heart, ‘The inhabitants of Jerusalem are my strength in Yahweh of Armies their God.’ + +

+

In that day I will make the chieftains of Judah like a pan of fire among wood, and like a flaming torch among sheaves. They will devour all the surrounding peoples on the right hand and on the left; and Jerusalem will yet again dwell in their own place, even in Jerusalem. + +

+

Yahweh also will save the tents of Judah first, that the glory of David’s house and the glory of the inhabitants of Jerusalem not be magnified above Judah. + +In that day Yahweh will defend the inhabitants of Jerusalem. He who is feeble among them at that day will be like David, and David’s house will be like God, like Yahweh’s angel before them. + +It will happen in that day, that I will seek to destroy all the nations that come against Jerusalem. + +

+

I will pour on David’s house and on the inhabitants of Jerusalem the spirit of grace and of supplication. They will look to me12:10 +After “me”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker. whom they have pierced; and they shall mourn for him as one mourns for his only son, and will grieve bitterly for him as one grieves for his firstborn. + +In that day there will be a great mourning in Jerusalem, like the mourning of Hadadrimmon in the valley of Megiddo. + +The land will mourn, every family apart; the family of David’s house apart, and their wives apart; the family of the house of Nathan apart, and their wives apart; + +the family of the house of Levi apart, and their wives apart; the family of the Shimeites apart, and their wives apart; + +all the families who remain, every family apart, and their wives apart. + +

+ + +

In that day there will be a fountain opened to David’s house and to the inhabitants of Jerusalem, for sin and for uncleanness. + +

+

It will come to pass in that day, says Yahweh of Armies, that I will cut off the names of the idols out of the land, and they will be remembered no more. I will also cause the prophets and the spirit of impurity to pass out of the land. + +It will happen that when anyone still prophesies, then his father and his mother who bore him will tell him, ‘You must die, because you speak lies in Yahweh’s name;’ and his father and his mother who bore him will stab him when he prophesies. + +It will happen in that day that the prophets will each be ashamed of his vision when he prophesies; they won’t wear a hairy mantle to deceive, + +but he will say, ‘I am no prophet, I am a tiller of the ground; for I have been made a bondservant from my youth.’ + +One will say to him, ‘What are these wounds between your arms?’ Then he will answer, ‘Those with which I was wounded in the house of my friends.’ + +

+ +Awake, sword, against my shepherd, + +and against the man who is close to me,” says Yahweh of Armies. + +Strike the shepherd, and the sheep will be scattered; + +and I will turn my hand against the little ones. + + +It shall happen that in all the land,” says Yahweh, + +two parts in it will be cut off and die; + +but the third will be left in it. + + +I will bring the third part into the fire, + +and will refine them as silver is refined, + +and will test them like gold is tested. + +They will call on my name, and I will hear them. + +I will say, ‘It is my people;’ + +and they will say, ‘Yahweh is my God.’” + + + + +

Behold, a day of Yahweh comes, when your plunder will be divided within you. + +For I will gather all nations against Jerusalem to battle; and the city will be taken, the houses rifled, and the women ravished. Half of the city will go out into captivity, and the rest of the people will not be cut off from the city. + +Then Yahweh will go out and fight against those nations, as when he fought in the day of battle. + +His feet will stand in that day on the Mount of Olives, which is before Jerusalem on the east; and the Mount of Olives will be split in two from east to west, making a very great valley. Half of the mountain will move toward the north, and half of it toward the south. + +You shall flee by the valley of my mountains, for the valley of the mountains shall reach to Azel. Yes, you shall flee, just like you fled from before the earthquake in the days of Uzziah king of Judah. Yahweh my God will come, and all the holy ones with you.14:5 +Septuagint reads “him” instead of “you”. + +

+

It will happen in that day that there will not be light, cold, or frost. + +It will be a unique day which is known to Yahwehnot day, and not night; but it will come to pass that at evening time there will be light. + +

+

It will happen in that day that living waters will go out from Jerusalem, half of them toward the eastern sea, and half of them toward the western sea. It will be so in summer and in winter. + +

+

Yahweh will be King over all the earth. In that day Yahweh will be one, and his name one. + +

+

All the land will be made like the Arabah, from Geba to Rimmon south of Jerusalem; and she will be lifted up and will dwell in her place, from Benjamin’s gate to the place of the first gate, to the corner gate, and from the tower of Hananel to the king’s wine presses. + +Men will dwell therein, and there will be no more curse; but Jerusalem will dwell safely. + +

+

This will be the plague with which Yahweh will strike all the peoples who have fought against Jerusalem: their flesh will consume away while they stand on their feet, and their eyes will consume away in their sockets, and their tongue will consume away in their mouth. + +It will happen in that day that a great panic from Yahweh will be among them; and they will each seize the hand of his neighbor, and his hand will rise up against the hand of his neighbor. + +Judah also will fight at Jerusalem; and the wealth of all the surrounding nations will be gathered together: gold, silver, and clothing, in great abundance. + +

+

A plague like this will fall on the horse, on the mule, on the camel, on the donkey, and on all the animals that will be in those camps. + +

+

It will happen that everyone who is left of all the nations that came against Jerusalem will go up from year to year to worship the King, Yahweh of Armies, and to keep the feast of booths. + +It will be that whoever of all the families of the earth doesn’t go up to Jerusalem to worship the King, Yahweh of Armies, on them there will be no rain. + +If the family of Egypt doesn’t go up and doesn’t come, neither will it rain on them. This will be the plague with which Yahweh will strike the nations that don’t go up to keep the feast of booths. + +This will be the punishment of Egypt and the punishment of all the nations that don’t go up to keep the feast of booths. + +

+

In that day there will be inscribed on the bells of the horses, “HOLY TO YAHWEH”; and the pots in Yahweh’s house will be like the bowls before the altar. + +Yes, every pot in Jerusalem and in Judah will be holy to Yahweh of Armies; and all those who sacrifice will come and take of them, and cook in them. In that day there will no longer be a Canaanite14:21 +or, merchant in the house of Yahweh of Armies. + +

+
+39-MAL-web.sfm World English Bible (WEB) +Malachi +The Book of Malachi +Malachi +Mal +

The Book of +

+

Malachi +

+ + +

A revelation, Yahweh’s1:1 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. word to Israel by Malachi. + +

+

I have loved you,” says Yahweh. +

+

Yet you say, “How have you loved us?” +

+

“Wasn’t Esau Jacob’s brother?” says Yahweh, “Yet I loved Jacob; + +but Esau I hated, and made his mountains a desolation, and gave his heritage to the jackals of the wilderness.” + +Whereas Edom says, “We are beaten down, but we will return and build the waste places,” Yahweh of Armies says, “They shall build, but I will throw down; and men will call themThe Wicked Land,’ even the people against whom Yahweh shows wrath forever.” + +

+

Your eyes will see, and you will say, “Yahweh is greateven beyond the border of Israel!” + +

+

A son honors his father, and a servant his master. If I am a father, then where is my honor? And if I am a master, where is the respect due me?” says Yahweh of Armies to you priests who despise my name. “You say, ‘How have we despised your name?’ + +You offer polluted bread on my altar. You say, ‘How have we polluted you?’ In that you say, ‘Yahweh’s table is contemptible.’ + +When you offer the blind for sacrifice, isn’t that evil? And when you offer the lame and sick, isn’t that evil? Present it now to your governor! Will he be pleased with you? Or will he accept your person?” says Yahweh of Armies. + +

+

Now, please entreat the favor of God,1:9 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). that he may be gracious to us. With this, will he accept any of you?” says Yahweh of Armies. + +

+

Oh that there were one among you who would shut the doors, that you might not kindle fire on my altar in vain! I have no pleasure in you,” says Yahweh of Armies, “neither will I accept an offering at your hand. + +For from the rising of the sun even to its going down, my name is great among the nations, and in every place incense will be offered to my name, and a pure offering; for my name is great among the nations,” says Yahweh of Armies. + +But you profane it when you say, ‘Yahweh’s table is polluted, and its fruit, even its food, is contemptible.’ + +You say also, ‘Behold,1:13 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. what a weariness it is!’ And you have sniffed at it”, says Yahweh of Armies; “and you have brought that which was taken by violence, the lame, and the sick; thus you bring the offering. Should I accept this at your hand?” says Yahweh. + +

+

But the deceiver is cursed who has in his flock a male, and vows and sacrifices to the Lord1:14 +The word translated “Lord” is “Adonai.” a defective thing; for I am a great King,” says Yahweh of Armies, “and my name is awesome among the nations.” + +

+ + +

Now, you priests, this commandment is for you. + +If you will not listen, and if you will not take it to heart, to give glory to my name,” says Yahweh of Armies, “then I will send the curse on you, and I will curse your blessings. Indeed, I have cursed them already, because you do not take it to heart. + +Behold, I will rebuke your offspring,2:3 +or, seed and will spread dung on your faces, even the dung of your feasts; and you will be taken away with it. + +You will know that I have sent this commandment to you, that my covenant may be with Levi,” says Yahweh of Armies. + +My covenant was with him of life and peace; and I gave them to him that he might be reverent toward me; and he was reverent toward me, and stood in awe of my name. + +The law of truth was in his mouth, and unrighteousness was not found in his lips. He walked with me in peace and uprightness, and turned many away from iniquity. + +For the priest’s lips should keep knowledge, and they should seek the law at his mouth; for he is the messenger of Yahweh of Armies. + +But you have turned away from the path. You have caused many to stumble in the law. You have corrupted the covenant of Levi,” says Yahweh of Armies. + +Therefore I have also made you contemptible and wicked before all the people, according to the way you have not kept my ways, but have had respect for persons in the law. + +Don’t we all have one father? Hasn’t one God created us? Why do we deal treacherously every man against his brother, profaning the covenant of our fathers? + +Judah has dealt treacherously, and an abomination is committed in Israel and in Jerusalem; for Judah has profaned the holiness of Yahweh which he loves, and has married the daughter of a foreign god. + +Yahweh will cut off the man who does this, him who wakes and him who answers, out of the tents of Jacob and him who offers an offering to Yahweh of Armies. + +

+

This again you do: you cover Yahweh’s altar with tears, with weeping, and with sighing, because he doesn’t regard the offering any more, neither receives it with good will at your hand. + +Yet you say, ‘Why?’ Because Yahweh has been witness between you and the wife of your youth, against whom you have dealt treacherously, though she is your companion and the wife of your covenant. + +Did he not make you one, although he had the residue of the Spirit? Why one? He sought godly offspring. Therefore take heed to your spirit, and let no one deal treacherously against the wife of his youth. + +One who hates and divorces”, says Yahweh, the God of Israel, “covers his garment with violence!” says Yahweh of Armies. “Therefore pay attention to your spirit, that you don’t be unfaithful. + +

+

You have wearied Yahweh with your words. Yet you say, ‘How have we wearied him?’ In that you say, ‘Everyone who does evil is good in Yahweh’s sight, and he delights in them;’ orWhere is the God of justice?’ + +

+ + +

Behold, I send my messenger, and he will prepare the way before me! The Lord, whom you seek, will suddenly come to his temple. Behold, the messenger of the covenant, whom you desire, is coming!” says Yahweh of Armies. + +But who can endure the day of his coming? And who will stand when he appears? For he is like a refiner’s fire, and like launderers’ soap; + +and he will sit as a refiner and purifier of silver, and he will purify the sons of Levi, and refine them as gold and silver; and they shall offer to Yahweh offerings in righteousness. + +Then the offering of Judah and Jerusalem will be pleasant to Yahweh as in the days of old and as in ancient years. + +

+

I will come near to you to judgment. I will be a swift witness against the sorcerers, against the adulterers, against the perjurers, and against those who oppress the hireling in his wages, the widow, and the fatherless, and who deprive the foreigner of justice, and don’t fear me,” says Yahweh of Armies. + +

+

For I, Yahweh, don’t change; therefore you, sons of Jacob, are not consumed. + +From the days of your fathers you have turned away from my ordinances and have not kept them. Return to me, and I will return to you,” says Yahweh of Armies. “But you say, ‘How shall we return?’ + +

+

Will a man rob God? Yet you rob me! But you say, ‘How have we robbed you?’ In tithes and offerings. + +You are cursed with the curse; for you rob me, even this whole nation. + +Bring the whole tithe into the storehouse, that there may be food in my house, and test me now in this,” says Yahweh of Armies, “if I will not open you the windows of heaven, and pour you out a blessing, that there will not be enough room for. + +I will rebuke the devourer for your sakes, and he shall not destroy the fruits of your ground; neither shall your vine cast its fruit before its time in the field,” says Yahweh of Armies. + +All nations shall call you blessed, for you will be a delightful land,” says Yahweh of Armies. + +

+

Your words have been harsh against me,” says Yahweh. “Yet you say, ‘What have we spoken against you?’ + +You have said, ‘It is vain to serve God,’ andWhat profit is it that we have followed his instructions and that we have walked mournfully before Yahweh of Armies? + +Now we call the proud happy; yes, those who work wickedness are built up; yes, they tempt God, and escape.’ + +

+

Then those who feared Yahweh spoke one with another; and Yahweh listened and heard, and a book of memory was written before him for those who feared Yahweh and who honored his name. + +They shall be mine,” says Yahweh of Armies, “my own possession in the day that I make. I will spare them, as a man spares his own son who serves him. + +Then you shall return and discern between the righteous and the wicked, between him who serves God and him who doesn’t serve him. + +

+ + +

“For behold, the day comes, burning like a furnace, when all the proud and all who work wickedness will be stubble. The day that comes will burn them up,” says Yahweh of Armies, “so that it will leave them neither root nor branch. + +But to you who fear my name shall the sun of righteousness arise with healing in its wings. You will go out and leap like calves of the stall. + +You shall tread down the wicked; for they will be ashes under the soles of your feet in the day that I make,” says Yahweh of Armies. + +

+

“Remember the law of Moses my servant, which I commanded to him in Horeb for all Israel, even statutes and ordinances. + +

+

Behold, I will send you Elijah the prophet before the great and terrible day of Yahweh comes. + +He will turn the hearts of the fathers to the children and the hearts of the children to their fathers, lest I come and strike the earth with a curse.” + +

+
+- Tobit +Tobit +Tobit +Tobit +Tob +

Tobit +

+

Tobit is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +

+ + +

The book of the words of Tobit, the son of Tobiel, the son of Ananiel, the son of Aduel, the son of Gabael, of the seed of Asiel, of the tribe of Naphtali; + +who in the days of Enemessar1:2 +That is, +Shalmaneser. +Compare 2 Kings 17:3, 23. + king of the Assyrians was carried away captive out of Thisbe, which is on the right hand of Kedesh Naphtali in Galilee above Asher. + +

+

I, Tobit walked in the ways of truth and righteousness all the days of my life, and I did many alms deeds to my kindred and my nation, who went with me into the land of the Assyrians, to Nineveh. + +When I was in my own country, in the land of Israel, while I was yet young, all the tribe of Naphtali my father fell away from the house of Jerusalem, which was chosen out of all the tribes of Israel, that all the tribes should sacrifice there, and the temple of the habitation of the Most High was hallowed and built therein for all ages. + +All the tribes which fell away together sacrificed to the heifer Baal, and so did the house of Naphtali my father. + +I alone went often to Jerusalem at the feasts, as it has been ordained to all Israel by an everlasting decree, having the first fruits and the tenths of my increase, and that which was first shorn; and I gave them at the altar to the priests the sons of Aaron. + +I gave a tenth part of all my increase to the sons of Levi, who ministered at Jerusalem. A second tenth part I sold away, and went, and spent it each year at Jerusalem. + +A third tenth I gave to them to whom it was appropriate, as Deborah my father’s mother had commanded me, because I was left an orphan by my father. + +When I became a man, I took as wife Anna of the seed of our own family. With her, I became the father of Tobias. + +When I was carried away captive to Nineveh, all my kindred and my relatives ate of the bread of the Gentiles; + +but I kept myself from eating, + +because I remembered God with all my soul. + +So the Most High gave me grace and favor1:13 +Gr. +beauty. + in the sight of Enemessar, and I was his purchasing agent. + +And I went into Media, and left ten talents of silver in trust with Gabael, the brother of Gabrias, at Rages of Media. + +

+

And when Enemessar was dead, Sennacherib his son reigned in his place. In his time, the highways were troubled,1:15 +Gr. +his highways were troubled. + and I could no longer go into Media. + +In the days of Enemessar, I did many alms deeds to my kindred: I gave my bread to the hungry, + +and my garments to the naked. If I saw any of my race dead, and thrown out on1:17 +Some ancient authorities read +behind. + the wall of Ninevah, I buried him. + +If Sennacherib the king killed any, when he came fleeing from Judea, I buried them privately; for in his wrath he killed many; and the bodies were sought for by the king, and were not found. + +But one of the Ninevites went and showed to the king concerning me, how I buried them, and hid myself; and when I knew that I was sought for to be put to death, I withdrew myself for fear. + +And all my goods were forcibly taken away, and there was nothing left to me, save my wife Anna and my son Tobias. + +No more than fifty five days passed before two of his sons killed him, and they fled into the mountains of Ararat. And Sarchedonus1:21 +That is, +Esar-haddon, +and so in verse 22. + his son reigned in his place; and he appointed Achiacharus my brother Anael’s son over all the accounts of his kingdom, and over all his affairs. + +Achiacharus requested me, and I came to Nineveh. Now Achiacharus was cupbearer, keeper of the signet, steward, and overseer of the accounts. Sarchedonus appointed him next to himself, but he was my brother’s son. + +

+ + +

Now when I had come home again, and my wife Anna was restored to me, and my son Tobias, in the feast of Pentecost, which is the holy feast of the seven weeks, there was a good dinner prepared for me, and I sat down to eat. + +I saw abundance of meat, and I said to my son, “Go and bring whatever poor man you find of our kindred, who is mindful of the Lord. Behold, I wait for you.” + +

+

Then he came, and said, “Father, one of our race is strangled, and has been cast out in the marketplace.” + +Before I had tasted anything, I sprang up, and took him up into a chamber until the sun had set. + +Then I returned, washed myself, ate my bread in heaviness, + +and remembered the prophecy of Amos, as he said, +

+2:6 +Amos 8:10“Your feasts will be turned into mourning, + +and all your mirth into lamentation. + + +

So I wept: and when the sun had set, I went and dug a grave, and buried him. + +My neighbors mocked me, and said, “He is no longer afraid to be put to death for this matter; and yet he fled away. Behold, he buries the dead again.” + +The same night I returned from burying him, and slept by the wall of my courtyard, being polluted; and my face was uncovered. + +I didn’t know that there were sparrows in the wall. My eyes were open and the sparrows dropped warm dung into my eyes, and white films came over my eyes. I went to the physicians, and they didn’t help me; but Achiacharus nourished me, until I went2:10 +Some authorities read +until he went. + into Elymais. + +

+

My wife Anna wove cloth in the women’s chambers, + +and sent the work back to the owners. They on their part paid her wages, and also gave her a kid. + +But when it came to my house, it began to cry, and I said to her, “Where did this kid come from? Is it stolen? Give it back to the owners; for it is not lawful to eat anything that is stolen.” + +But she said, “It has been given to me for a gift more than the wages.” +

+

I didn’t believe her, and I asked her to return it to the owners; and I was ashamed of her. +

+

But she answered and said to me, “Where are your alms and your righteous deeds? Behold, you and all your works are known.2:14 +Gr. +all things are known with you. +” + +

+ + +

I was grieved and wept, and prayed in sorrow, saying, + +

+

“O Lord, you are righteous, and all your works and all your ways are mercy and truth, and you judge true and righteous judgment forever. + +Remember me, and look at me. Don’t take vengeance on me for my sins and my ignorances, and the sins of my fathers who sinned before you. + +For they disobeyed your commandments. You gave us as plunder, for captivity, for death, and for a proverb of reproach to all the nations among whom we are dispersed. + +Now your judgments are many and true, that you should deal with me according to my sins and the sins of my fathers, because we didn’t keep your commandments, for we didn’t walk in truth before you. + +Now deal with me according to that which is pleasing in your sight. Command my spirit to be taken from me, that I may be released, and become earth. For it is more profitable for me to die rather than to live, because I have heard false reproaches, and there is much sorrow in me. Command that I be released from my distress, now, and go to the everlasting place. Don’t turn your face away from me.” + +

+

The same day it happened to Sarah the daughter of Raguel in Ecbatana of Media, that she also was reproached by her father’s maidservants; + +because that she had been given to seven husbands, and Asmodaeus the evil spirit3:8 +Gr. +demon. + killed them, before they had lain with her. And they said to her, “Do you not know that you strangle your husbands? You have had already seven husbands, and you haven’t borne the name of any one of them. + +Why do you scourge us? If they are dead, go your ways with them. Let us never see either son or daughter from you.” + +When she heard these things, she was grieved exceedingly, so that she thought about hanging herself. Then she said, “I am the only daughter of my father. If I do this, it will be a reproach to him, and I will bring down his old age with sorrow to the grave.3:10 +Gr. +Hades. +” + +Then she prayed by the window, and said, “Blessed are you, O Lord my God, and blessed is your holy and honorable name forever! Let all your works praise you forever! + +And now, Lord, I have set my eyes and my face toward you. + +Command that I be released from the earth, and that I no longer hear reproach. + +You know, Lord, that I am pure from all sin with man, + +and that I never polluted my name or the name of my father in the land of my captivity. I am the only daughter of my father, and he has no child that will be his heir, nor brother near him, nor son belonging to him, that I should keep myself for a wife to him. Seven husbands of mine are dead already. Why should I live? If it doesn’t please you to kill me, command some regard to be had of me, and pity taken of me, and that I hear no more reproach.” + +

+

The prayer of both was heard before the glory of the great God. + +Raphael also was sent to heal them both, to scale away the white films from Tobit’s eyes, and to give Sarah the daughter of Raguel for a wife to Tobias the son of Tobit; and to bind Asmodaeus the evil spirit3:17 +Gr. +demon. +; because it belonged to Tobias that he should inherit her. At that very time, Tobit returned and entered into his house, and Sarah the daughter of Raguel came down from her upper chamber. + +

+ + +

In that day Tobit remembered the money which he had left in trust with Gabael in Rages of Media, + +and he said to himself, I have asked for death; why do I not call my son Tobias, that I may explain to him about the money before I die? + +And he called him, and said, +

+

“My child, if I die, bury me. Don’t despise your mother. Honor her all the days of your life, and do that which is pleasing to her, and don’t grieve her. + +Remember, my child, that she has seen many dangers for you, when you were in her womb. When she is dead, bury her by me in one grave. + +My child, be mindful of the Lord our God all your days, and don’t let your will be set to sin and to transgress his commandments: do righteousness all the days of your life, and don’t follow the ways of unrighteousness. + +For if you do what is true, your deeds will prosperously succeed for you, and for all those who do righteousness. + +Give alms from your possessions. When you give alms, don’t let your eye be envious. Don’t turn away your face from any poor man, and the face of God won’t be turned away from you. + +As your possessions are, give alms of it according to your abundance. If you have little, don’t be afraid to give alms according to that little; + +for you lay up a good treasure for yourself against the day of necessity; + +because alms-giving delivers from death, and doesn’t allow you to come into darkness. + +Alms is a good gift in the sight of the Most High for all that give it. + +Beware, my child, of all fornication, and take first a wife of the seed of your fathers. Don’t take a strange wife, who is not of your father’s tribe; for we are the descendants of the prophets. Remember, my child, that Noah, Abraham, Isaac, and Jacob, our fathers of old time, all took wives of their kindred, and were blessed in their children, and their seed will inherit the land. + +And now, my child, love your kindred, and don’t scorn your kindred and the sons and the daughters of your people in your heart, to take a wife of them; for in scornfulness is destruction and much trouble, and in idleness is decay and great lack; for idleness is the mother of famine. + +Don’t let the wages of any man who works for you wait with you, but give it to him out of hand. If you serve God, you will be rewarded. Take heed to yourself, my child, in all your works, and be discreet in all your behavior. + +And what you yourself hate, do to no man. Don’t drink wine to drunkenness, and don’t let drunkenness go with you on your way. + +Give of your bread to the hungry, and of your garments to those who are naked. Give alms from all your abundance. Don’t let your eye be envious when you give alms. + +Pour out your bread on the burial4:17 +Or, +tomb + of the just, and give nothing to sinners. + +Ask counsel of every man who is wise, and don’t despise any counsel that is profitable. + +Bless the Lord your God at all times, and ask of him that your ways may be made straight, and that all your paths and counsels may prosper; for every nation has no counsel; but the Lord himself gives all good things, and he humbles whom he will, as he will. And now, my child, remember my commandments, and let them not be blotted out of your mind. + +And now I explain to you about the ten talents of silver, which I left in trust with Gabael the son of Gabrias at Rages of Media. + +And fear not, my child, because we are made poor. You have much wealth, if you fear God, and depart from all sin, and do that which is pleasing in his sight.” + +

+ + +

Then Tobias answered and said to him, “Father, I will do all things, whatever you have commanded me. + +But how could I receive the money, since I don’t know him?” + +

+

He gave him the handwriting, and said to him, “Seek a man who will go with you, and I will give him wages, while I still live; and go and receive the money.” + +

+

He went to seek a man, and found Raphael who was an angel; + +and he didn’t know it. He said to him, “Can I go with you to Rages of Media? Do you know those places well?” + +

+

The angel said to him, “I will go with you. I know the way well. I have lodged with our brother Gabael.” + +

+

Tobias said to him, “Wait for me, and I will tell my father.” + +

+

He said to him, “Go, and don’t wait. And he went in and said to his father, “Behold, I have found someone who will go with me.” +

+

But he said, “Call him to me, that I may know of what tribe he is, and whether he be a trustworthy man to go with you.” + +

+

So he called him, and he came in, and they saluted one another. + +And Tobit said to him, “Brother, of what tribe and of what family are you? Tell me.” + +

+

He said to him, “Do you seek a tribe and a family, or a hired man which will go with your son?” +

+

And Tobit said to him, “I want to know, brother, your kindred and your name.” + +

+

And he said, “I am Azarias, the son of Ananias the great, of your kindred.” + +

+

And he said to him, “Welcome, brother. Don’t be angry with me, because I sought to know your tribe and family. You are my brother, of an honest and good lineage; for I knew Ananias and Jathan, the sons of Shemaiah the great, when we went together to Jerusalem to worship, and offered the firstborn, and the tenths of our increase; and they didn’t go astray in the error of our kindred. My brother, you are of a great stock. + +But tell me, what wages shall I give you? A drachma a day, and those things that be necessary for you, as to my son? + +And moreover, if you both return safe and sound, I will add something to your wages.” + +

+

And so they agreed. And he said to Tobias, “Prepare yourself for the journey. May God prosper you.” So his son prepared what was needful for the journey, and his father said to him, “Go with this man; but God, who dwells in heaven, will prosper your journey. May his angel go with you.” +

+

Then they both departed, and the young man’s dog went with them. + +But Anna his mother wept, and said to Tobit, “Why have you sent away our child? Isn’t he the staff of our hand, in going in and out before us? + +Don’t be greedy to add money to money; but let it be as refuse compared to our child. + +For what the Lord has given us to live is enough for us.” + +

+

Tobit said to her, “Don’t worry, my sister. He will return safe and sound, and your eyes will see him. + +For a good angel will go with him. His journey will be prospered, and he will return safe and sound.” + +

+

So she stopped weeping. + +

+ + +

Now as they went on their journey, they came at evening to the river Tigris, and they lodged there. + +But the young man went down to wash himself, and a fish leaped out of the river, and would have swallowed up the young man. + +But the angel said to him, “Grab the fish!” +

+

So the young man grabbed the fish, and hauled it up onto the land. + +

+

And the angel said to him, “Cut the fish open, and take the heart, the liver, and the bile, and keep them with you.” + +And the young man did as the angel commanded him; but they roasted the fish, and ate it. And they both went on their way, till they drew near to Ecbatana. + +

+

The young man said to the angel, “Brother Azarias, of what use is the heart, the liver, and the bile of the fish?” + +

+

He said to him, “About the heart and the liver: If a demon or an evil spirit troubles anyone, we must burn those and make smoke of them before the man or the woman, and the affliction will flee. + +But as for the bile, it is good to anoint a man that has white films in his eyes, and he will be healed.” + +

+

But when they drew near to Rages, + +the angel said to the young man, “Brother, today we will lodge with Raguel. He is your kinsman. He has an only daughter named Sarah. I will speak about her, that she should be given to you for a wife. + +For her inheritance belongs to you, and you only are of her kindred. + +The maid is fair and wise. And now hear me, and I will speak to her father. When we return from Rages we will celebrate the marriage; for I know that Raguel may in no way marry her to another according to the law of Moses, or else he would be liable to death, because it belongs to you to take the inheritance, rather than any other.” + +

+

Then the young man said to the angel, “Brother Azarias, I have heard that this maid has been given to seven men, and that they all perished in the bride-chamber. + +Now I am the only son of my father, and I am afraid, lest I go in and die, even as those before me. For a demon loves her, which harms no man, but those which come to her. Now I fear lest I die, and bring my father’s and my mother’s life to the grave with sorrow because of me. They have no other son to bury them.” + +

+

But the angel said to him, “Don’t you remember the words which your father commanded you, that you should take a wife of your own kindred? Now hear me, brother; for she will be your wife. Don’t worry about the demon; for this night she will be given you as wife. + +And when6:16 +Gr. +if. + you come into the bride-chamber, you shall take the ashes of incense, and shall lay upon them some of the heart and liver of the fish, and shall make smoke with them. + +The demon will smell it, and flee away, and never come again any more. But when you go near to her, both of you rise up, and cry to God who is merciful. He will save you, and have mercy on you. Don’t be afraid, for she was prepared for you from the beginning; and you will save her, and she will go with you. And I suppose that you will have children with her.” +

+

When Tobias heard these things, he loved her, and his soul was strongly joined to her. + +

+ + +

They came to Ecbatana, and arrived at the house of Raguel. But Sarah met them; and she greeted them, and they her. Then she brought them into the house. + +Raguel said to Edna his wife, “This young man really resembles Tobit my cousin!” + +And Raguel asked them, “Where are you two from, kindred?” +

+

They said to him, “We are of the sons of Naphtali, who are captives in Nineveh.” + +

+

He said to them, “Do you know Tobit our brother?” +

+

They said, “We know him.” +

+

Then he said to them, “Is he in good health?” + +

+

They said, “He is both alive, and in good health.” Tobias said, “He is my father.” + +

+

And Raguel sprang up, and kissed him, wept, + +blessed him, and said to him, “You are the son of an honest and good man.” When he had heard that Tobit had lost his sight, he was grieved, and wept; + +and Edna his wife and Sarah his daughter wept. They received them gladly; and they killed a ram of the flock, and served them meat. +

+

But Tobias said to Raphael, “Brother Azarias, speak of those things of which you talked about in the way, and let the matter be finished.” + +

+

So he communicated the thing to Raguel. Raguel said to Tobias, “Eat, drink, and make merry: + +for it belongs to you to take my child. However I will tell you the truth. + +I have given my child to seven men of our relatives, and whenever they came in to her, they died in the night. But for the present be merry.” +

+

And Tobias said, “I will taste nothing here, until you all make a covenant and enter into that covenant with me.” + +

+

Raguel said, “Take her to yourself from now on according to custom. You are her relative, and she is yours. The merciful God will give all good success to you.” + +And he called his daughter Sarah, and took her by the hand, and gave her to be wife of Tobias, and said, “Behold, take her to yourself after the law of Moses, and lead her away to your father.” And he blessed them. + +He called Edna his wife, then took a book, wrote a contract, and sealed it. + +Then they began to eat. + +

+

And Raguel called his wife Edna, and said to her, “Sister, prepare the other chamber, and bring her in there.” + +She did as he asked her, and brought her in there. She wept, and she received the tears of her daughter, and said to her, + +“Be comforted, my child. May the Lord of heaven and earth give you favor7:18 +Many ancient authorities read +joy. + for this your sorrow. Be comforted, my daughter.” + +

+ + +

When they had finished their supper, they brought Tobias in to her. + +But as he went, he remembered the words of Raphael, and took the ashes of the incense, and put the heart and the liver of the fish on them, and made smoke with them. + +When the demon smelled that smell, it fled into the uppermost parts of Egypt, and the angel bound him. + +But after they were both shut in together, Tobias rose up from the bed, and said, “Sister, arise, and let’s pray that the Lord may have mercy on us.” + +And Tobias began to say, “Blessed are you, O God of our fathers, and blessed is your holy and glorious name forever. Let the heavens bless you, and all your creatures. + +You made Adam, and gave him Eve his wife for a helper and support. From them came the seed of men. You said, it is not good that the man should be alone. Let’s make him a helper like him. + +And now, O Lord, I take not this my sister for lust, but in truth. Command that I may find mercy and grow old with her.” + +

+

She said with him, “Amen.” And they both slept that night. + +

+

Raguel arose, and went and dug a grave, + +saying, “Lest he also should die.” + +And Raguel came into his house, + +and said to Edna his wife, “Send one of the maidservants, and let them see if he is alive. If not, we will bury him, and no man will know it.” + +

+

So the maidservant opened the door, and went in, and found them both sleeping, + +and came out, and told them that he was alive. + +

+

Then Raguel blessed God, saying, “Blessed are you, O God, with all pure and holy blessing! Let your saints bless you, and all your creatures! Let all your angels and your elect bless you forever! + +Blessed are you, because you have made me glad; and it has not happened to me as I suspected; but you have dealt with us according to your great mercy. + +Blessed are you, because you have had mercy on two that were the only begotten children of their parents. Show them mercy, O Lord. Fulfill their life in health with gladness and mercy. + +

+

He commanded his servants to fill the grave. + +He kept the wedding feast for them fourteen days. + +Before the days of the wedding feast were finished, Raguel sware to him, that he should not depart till the fourteen days of the wedding feast were fulfilled; + +and that then he should take half of his goods, and go in safety to his father; and the rest, said he, when my wife and I die. + +

+ + +

And Tobias called Raphael, and said to him, + +“Brother Azarias, take with you a servant and two camels, and go to Rages of Media to Gabael, and receive the money for me, and bring him to the wedding feast, + +because Raguel has sworn that I must not depart. + +My father counts the days; and if I wait long, he will be very grieved. + +So Raphael went on his way, and lodged with Gabael, and gave him the handwriting; so he brought forth the bags with their seals, and gave them to him. + +Then they rose up early in the morning together, and came to the wedding feast. Tobias blessed his wife. + +

+ + +

Tobit his father counted every day. When the days of the journey were expired, and they didn’t come, + +he said, “Is he perchance detained?10:2 +Many ancient authorities read +“Are they perchance put to shame?” + Or is Gabael perchance dead, and there is no one to give him the money?” + +He was very grieved. + +

+

But his wife said to him, “The child has perished, seeing he waits long.” She began to bewail him, and said, + +“I care about nothing,10:5 +Some authorities read +“Woe is me.” my child, since I have let you go, the light of my eyes.” + +Tobit said to her, “Hold your peace. Don’t worry. He is in good health.” + +

+

And she said to him, “Hold your peace. Don’t deceive me. My child has perished.” And she went out every day into the way by which they went, and ate no bread in the day-time, and didn’t stop bewailing her son Tobias for whole nights, until the fourteen days of the wedding feast were expired, which Raguel had sworn that he should spend there. +

+

Then Tobias said to Raguel, “Send me away, for my father and my mother look no more to see me.” + +But his father-in-law said to him, “Stay with me, and I will send to your father, and they will declare to him how things go with you.” + +Tobias said, “No. Send me away to my father.” + +

+

Raguel arose, and gave him Sarah his wife, and half his goods, servants and cattle and money; + +and he blessed them, and sent them away, saying, “The God of heaven will prosper you, my children, before I die.” + +And he said to his daughter, “Honor your father-in-law and your mother-in-law. They are now your parents. Let me hear a good report of you.” Then he kissed her. +

+

Edna said to Tobias, “May the Lord of heaven restore you, dear brother, and grant to me that I may see your children of my daughter Sarah, that I may rejoice before the Lord. Behold, I commit my daughter to you in special trust. Don’t cause her grief. + +

+ + +

After these things Tobias also went his way, blessing God because he had prospered his journey; and he blessed Raguel and Edna his wife. Then he went on his way until they drew near to Nineveh. + +Raphael said to Tobias, “Don’t you know, brother, how you left your father? + +Let’s run forward before your wife, and prepare the house. + +But take in your hand the bile of the fish.” So they went their way, and the dog went after them. + +

+

Anna sat looking around toward the path for her son. + +She saw him coming, and said to his father, “Behold, your son is coming with the man that went with him!” + +

+

Raphael said, “I know, Tobias, that your father will open his eyes. + +Therefore anoint his eyes with the bile, and being pricked with it, he will rub, and will make the white films fall away. Then he will see you.” + +

+

Anna ran to him, and fell upon the neck of her son, and said to him, “I have seen you, my child! I am ready to die.” They both wept. + +

+

Tobit went toward the door and stumbled; but his son ran to him, + +and took hold of his father. He rubbed the bile on his father’s eyes, saying, “Cheer up, my father.” + +When his eyes began to hurt, he rubbed them. + +Then the white films peeled away from the corners of his eyes; and he saw his son, and fell upon his neck. + +

+

He wept, and said, “Blessed are you, O God, and blessed is your name forever! Blessed are all your holy angels! + +For you scourged, and had mercy on me. Behold, I see my son Tobias.” And his son went in rejoicing, and told his father the great things that had happened to him in Media. + +

+

Tobit went out to meet his daughter-in-law at the gate of Nineveh, rejoicing and blessing God. Those who saw him go marveled, because he had received his sight. + +Tobit gave thanks before them, because God had shown mercy on him. When Tobit came near to Sarah his daughter-in-law, he blessed her, saying, “Welcome, daughter! Blessed is God who has brought you to us, and blessed are your father and your mother.” And there was joy among all his kindred who were at Nineveh. + +Achiacharus and Nasbas his brother’s son came. + +Tobias’ wedding feast was kept seven days with great gladness. + +

+ + +

And Tobit called his son Tobias, and said to him, “See, my child, that the man which went with you have his wages, and you must give him more.” + +

+

And he said to him, “Father, it is no harm to me to give him the half of those things which I have brought; + +for he has led me for you in safety, and he cured my wife, and brought my money, and likewise cured you.” + +

+

The old man said, “It is due to him.” + +

+

And he called the angel, and said to him, “Take half of all that you have brought.” + +

+

Then he called them both privately, and said to them, “Bless God, and give him thanks, and magnify him, and give him thanks in the sight of all that live, for the things which he has done with you. It is good to bless God and exalt his name, showing forth with honor the works of God. Don’t be slack to give him thanks. + +It is good to conceal the secret of a king, but to reveal gloriously the works of God. Do good, and evil won’t find you. + +Good is prayer with fasting, alms, and righteousness. A little with righteousness is better than much with unrighteousness. It is better to give alms than to lay up gold. + +Alms delivers from death, and it purges away all sin. Those who give alms and do righteousness will be filled with life; + +but those who sin are enemies to their own life. + +Surely I will conceal nothing from you. I have said, ‘It is good to conceal the secret of a king, but to reveal gloriously the works of God.’ + +And now, when you prayed, and Sarah your daughter-in-law, I brought the memorial of your prayer before the Holy One. When you buried the dead, I was with you likewise. + +And when you didn’t delay to rise up, and leave your dinner, that you might go and cover the dead, your good deed was not hidden from me. I was with you. + +And now God sent me to heal you and Sarah your daughter-in-law. + +I am Raphael, one of the seven holy angels which present the prayers of the saints and go in before the glory of the Holy One.” + +

+

And they were both troubled, and fell upon their faces; for they were afraid. + +And he said to them, “Don’t be afraid. You will all have peace; but bless God forever. + +For I came not of any favor of my own, but by the will of your God. Therefore bless him forever. + +All these days I appeared to you. I didn’t eat or drink, but you all saw a vision. + +Now give God thanks, because I ascend to him who sent me. Write in a book all the things which have been done.” + +Then they rose up, and saw him no more. + +They confessed the great and wonderful works of God, and how the angel of the Lord had appeared to them. + +

+ + +

And Tobit wrote a prayer for rejoicing, and said, +

+“Blessed is God who lives forever! + +Blessed is his kingdom! + + +For he scourges, and shows mercy. + +He leads down to the grave,13:2 +Gr. +Hades. + and brings up again. + +There is no one who will escape his hand. + + +Give thanks to him before the Gentiles, all you children of Israel! + +For he has scattered us among them. + + +Declare his greatness, there. + +Extol him before all the living, + +because he is our Lord, + +and God is our Father forever. + + +He will scourge us for our iniquities, and will again show mercy, + +and will gather us out of all the nations among whom you are all scattered. + + +If you turn to him with your whole heart and with your whole soul, + +to do truth before him, + +then he will turn to you, + +and won’t hide his face from you. + +See what he will do with you. + +Give him thanks with your whole mouth. + +Bless the Lord of righteousness. + +Exalt the everlasting King. + +I give him thanks in the land of my captivity, + +and show his strength and majesty to a nation of sinners. + +Turn, you sinners, and do righteousness before him. + +Who can tell if he will accept you and have mercy on you? + + +I exalt my God. + +My soul exalts the King of heaven, + +and rejoices in his greatness. + + +Let all men speak, + +and let them give him thanks in Jerusalem. + + +O Jerusalem, the holy city, + +he will scourge you for the works of your sons, + +and will again have mercy on the sons of the righteous. + + +Give thanks to the Lord with goodness, + +and bless the everlasting King, + +that his tabernacle may be built in you again with joy, + +and that he may make glad in you those who are captives, + +and love in you forever those who are miserable. + + +Many nations will come from afar to the name of the Lord God + +with gifts in their hands, even gifts to the King of heaven. + +Generations of generations will praise you, + +and sing songs of rejoicing. + + +All those who hate you are cursed. + +All those who love you forever will be blessed. + + +Rejoice and be exceedingly glad for the sons of the righteous; + +for they will be gathered together and will bless the Lord of the righteous. + + +Oh blessed are those who love you. + +They will rejoice for your peace. + +Blessed are all those who mourned for all your scourges; + +because they will rejoice for you when they have seen all your glory. + +They will be made glad forever. + + +Let my soul bless God the great King. + + +For Jerusalem will be built with sapphires, emeralds, and precious stones; + +your walls and towers and battlements with pure gold. + + +The streets of Jerusalem will be paved with beryl, carbuncle, and stones of Ophir. + + +All her streets will say, “Hallelujah!” + +and give praise, saying, “Blessed be God, who has exalted you forever!” + + + + +

Then Tobit finished giving thanks. + +He was fifty-eight years old when he lost his sight. After eight years, he received it again. He gave alms and he feared the Lord God more and more, and gave thanks to him. + +

+

Now he grew very old; and he called his son with the six sons of his son, and said to him, “My child, take your sons. Behold, I have grown old, and am ready to depart out of this life. + +Go into Media, my child, for I surely believe all the things which Jonah the prophet spoke of Nineveh, that it will be overthrown, but in Media there will rather be peace for a season. Our kindred will be scattered on the earth from the good land. Jerusalem will be desolate, and the house of God in it will be burned up, and will be desolate for a time. + +God will again have mercy on them, and bring them back into the land, and they will build the house, but not like to the former house, until the times of that age are fulfilled. Afterward they will return from the places of their captivity, and build up Jerusalem with honor. The house of God will be built in it forever with a glorious building, even as the prophets spoke concerning it. + +And all the nations will turn to fear the Lord God truly, and will bury their idols. + +All the nations will bless the Lord, and his people will give thanks to God, and the Lord will exalt his people; and all those who love the Lord God in truth and righteousness will rejoice, showing mercy to our kindred. + +And now, my child, depart from Nineveh, because those things which the prophet Jonah spoke will surely come to pass. + +But you must keep the law and the ordinances, and show yourself merciful and righteous, that it may be well with you. + +Bury me decently, and your mother with me. Don’t stay at Nineveh. See, my child, what Aman did to Achiacharus who nourished him, how out of light he brought him into darkness, and all the recompense that he made him. Achiacharus was saved, but the other had his recompense, and he went down into darkness. Manasses gave alms, and escaped the snare of death which he set for him; but Aman fell into the snare, and perished. + +And now, my children, consider what alms does, and how righteousness delivers.” +

+

While he was saying these things, he gave up the ghost in the bed; but he was one hundred fifty eight years old. Tobias buried him magnificently. + +When Anna died, he buried her with his father. But Tobias departed with his wife and his sons to Ecbatana to Raguel his father-in-law, + +and he grew old in honor, and he buried his father-in-law and mother-in-law magnificently, and he inherited their possessions, and his father Tobit’s. + +He died at Ecbatana of Media, being one hundred twenty seven years old. + +Before he died, he heard of the destruction of Nineveh, which Nebuchadnezzar and Ahasuerus took captive. Before his death, he rejoiced over Nineveh. + +

+
+Judith +Judith +Judith +Judith +Jdt +

Judith +

+

Judith is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +

+ + +

In the twelfth year of the reign of Nebuchadnezzar, who reigned over the Assyrians in Nineveh, the great city, in the days of Arphaxad, who reigned over the Medes in Ecbatana, + +and built around Ecbatana walls of hewn stones three cubits broad and six cubits long, and made the height of the wall seventy cubits, and its breadth fifty cubits, + +and set its towers at its gates one hundred cubits high, and its breadth in the foundation was sixty cubits, + +and made its gates, even gates that were raised to the height of seventy cubits, and their breadth forty cubits, for his mighty army to go out of, and the setting in array of his footmen— + +in those days King Nebuchadnezzar made war with King Arphaxad in the great plain. This plain is on the borders of Ragau. + +There came to meet him all that lived in the hill country, and all that lived by Euphrates, Tigris, and Hydaspes, and in the plain of Arioch the king of the Elymaeans. Many nations of the sons of Chelod assembled themselves to the battle. + +

+

And Nebuchadnezzar king of the Assyrians sent to all who lived in Persia, and to all who lived westward, to those who lived in Cilicia, Damascus, Libanus, Antilibanus, and to all who lived along the sea coast, + +and to those among the nations that were of Carmel and Gilead, and to the higher Galilee and the great plain of Esdraelon, + +and to all who were in Samaria and its cities, and beyond Jordan to Jerusalem, Betane, Chellus, Kadesh, the river of Egypt, Tahpanhes, Rameses, and all the land of Goshen, + +until you come above Tanis and Memphis, and to all that lived in Egypt, until you come to the borders of Ethiopia. + +All those who lived in all the land made light of the commandment of Nebuchadnezzar king of the Assyrians, and didn’t go with him to the war; for they were not afraid of him, but he was before them as one man. They turned away his messengers from their presence without effect, and with disgrace. + +

+

And Nebuchadnezzar was exceedingly angry with all this land, and he swore by his throne and kingdom that he would surely be avenged upon all the coasts of Cilicia, Damascus, and Syria, that he would kill with his sword all the inhabitants of the land of Moab, the children of Ammon, all Judea, and all who were in Egypt, until you come to the borders of the two seas. + +And he set the battle in array with his army against King Arphaxad in the seventeenth year; and he prevailed in his battle, and turned to flight all the army of Arphaxad, with all his horses and all his chariots. + +He took possession of his cities. He came to Ecbatana and took the towers, plundered its streets, and turned its beauty into shame. + +He took Arphaxad in the mountains of Ragau, struck him through with his darts, and utterly destroyed him to this day. + +He returned with them to Nineveh, he and all his company of sundry nations—an exceedingly great multitude of men of war. There he took his ease and banqueted, he and his army, for one hundred twenty days. + +

+ + +

In the eighteenth year, the twenty-second day of the first month, there was talk in the house of Nebuchadnezzar king of the Assyrians that he should be avenged on all the land, even as he spoke. + +He called together all his servants and all his great men, and communicated with them his secret counsel, and with his own mouth, recounted the wickedness of all the land. + +They decreed to destroy all flesh which didn’t follow the word of his mouth. + +

+

It came to pass, when he had ended his counsel, Nebuchadnezzar king of the Assyrians called Holofernes the chief captain of his army, who was second to himself, and said to him, + +“The great king, the lord of all the earth, says: ‘Behold, you shall go out from my presence, and take with you men who trust in their strength, to one hundred twenty thousand footmen and twelve thousand horses with their riders. + +And you shall go out against all the west country, because they disobeyed the commandment of my mouth. + +You shall declare to them that they should prepare earth and water, because I will go out in my wrath against them, and will cover the whole face of the earth with the feet of my army, who will plunder them. + +Their slain will fill their valleys and brooks, and the river will be filled with their dead until it overflows. + +I will lead them as captives to the utmost parts of all the earth. + +But you shall go forth, and take all their coasts for me first. If they will yield themselves to you,2:10 +Gr. +they will yield...and you shall reserve. then you must reserve them for me until the day of their reproof. + +As for those who resist, your eye shall not spare; but you shall give them up to be slain and to be plundered in all your land. + +For as I live, and by the power of my kingdom, I have spoken, and I will do this with my hand. + +Moreover, you shall not transgress anything of the commandments of your lord, but you shall surely accomplish them, as I have commanded you. You shall not defer to do them.’” + +

+

So Holofernes went out from the presence of his lord, and called all the governors, the captains, and officers of the army of Asshur. + +He counted chosen men for the battle, as his lord had commanded him, to one hundred twenty thousand, with twelve thousand archers on horseback. + +He arranged them as a great multitude is ordered for the war. + +He took camels, donkeys, and mules for their baggage, an exceedingly great multitude, and sheep, oxen, and goats without number for their provision, + +and a large supply of rations for every man, and a huge amount of gold and silver out of the king’s house. + +He went out, he and all his army, on their journey, to go before King Nebuchadnezzar, and to cover all the face of the earth westward with their chariots, horsemen, and chosen footmen. + +A great company of various nations went out with them like locusts and like the sand of the earth. For they could not be counted by reason of their multitude. + +

+

And they departed out of Nineveh three days’ journey toward the plain of Bectileth, and encamped from Bectileth near the mountain which is at the left hand of the Upper Cilicia. + +And he took all his army, his footmen, horsemen, and chariots, and went away from there into the hill country, + +and destroyed Put and Lud, and plundered all the children of Rasses and the children of Ishmael, which were along the wilderness to the south of the land of the Chellians. + +And he went over Euphrates, and went through Mesopotamia, and broke down all the high cities that were upon the river Arbonai, until you come to the sea. + +And he took possession of the borders of Cilicia, and killed all who resisted him, and came to the borders of Japheth, which were toward the south, opposite Arabia. + +He surrounded all the children of Midian, and set their tents on fire, and plundered their sheepfolds. + +He went down into the plain of Damascus in the days of wheat harvest, and set all their fields on fire, and utterly destroyed their flocks and herds, plundered their cities, laid their plains waste, and struck all their young men with the edge of the sword. + +

+

And the fear and the dread of him fell upon those who lived on the sea coast, upon those who were in Sidon and Tyre, those who lived in Sur and Ocina, and all who lived in Jemnaan. Those who lived in Azotus and Ascalon feared him exceedingly. + +

+ + +

And they sent to him messengers with words of peace, saying, + +“Behold, we the servants of Nebuchadnezzar the great king lie before you. Use us as it is pleasing in your sight. + +Behold, our dwellings, and all our country, and all our fields of wheat, and our flocks and herds, and all the sheepfolds of our tents, lie before your face. Use them as it may please you. + +Behold, even our cities and those who dwell in them are your servants. Come and deal with them as it is good in your eyes.” + +

+

So the men came to Holofernes, and declared to him according to these words. + +

+

He came down toward the sea coast, he and his army, and set garrisons in the high cities, and took out of them chosen men for allies. + +They received him, they and all the country round about them, with garlands and dances and timbrels. + +He cast down all their borders, and cut down their sacred groves. It had been given to him to destroy all the gods of the land, that all the nations would worship Nebuchadnezzar only, and that all their tongues and their tribes would call upon him as a god. + +

+

Then he came toward Esdraelon near to Dotaea, which is opposite the great ridge of Judea. + +He encamped between Geba and Scythopolis. He was there a whole month, that he might gather together all the baggage of his army. + +

+ + +

The children of Israel who lived in Judea heard all that Holofernes the chief captain of Nebuchadnezzar king of the Assyrians had done to the nations, and how he had plundered all their temples and destroyed them utterly. + +They were exceedingly afraid at his approach, and were troubled for Jerusalem and for the temple of the Lord their God; + +because they had newly come up from the captivity, and all the people of Judea were recently gathered together; and the vessels, the altar, and the house were sanctified after being profaned. + +

+

And they sent into every coast of Samaria, to Konae, to Beth-horon, Belmaim, Jericho, to Choba, Aesora, and to the valley of Salem; + +and they occupied beforehand all the tops of the high mountains, fortified the villages that were in them, and stored supplies for the provision of war, for their fields were newly reaped. + +Joakim the high priest, who was in those days at Jerusalem, wrote to those who lived in Bethulia and Betomesthaim, which is opposite Esdraelon toward the plain that is near to Dothaim, + +charging them to seize upon the ascents of the hill country; because by them was the entrance into Judea, and it was easy to stop them from approaching, inasmuch as the approach was narrow, with space for two men at the most. + +And the children of Israel did as Joakim the high priest had commanded them, as did the senate of all the people of Israel, which was in session at Jerusalem. + +

+

And every man of Israel cried to God with great earnestness, and with great earnestness they humbled their souls. + +They, their wives, their children, their cattle, and every sojourner, hireling, and servant bought with their money put sackcloth on their loins. + +Every man and woman of Israel, including the little children and the inhabitants of Jerusalem, fell prostrate before the temple, cast ashes upon their heads, and spread out their sackcloth before the Lord. They put sackcloth around the altar. + +They cried to the God of Israel earnestly with one consent, that he would not give their children as prey, their wives as plunder, the cities of their inheritance to destruction, and the sanctuary to being profaned and being made a reproach, for the nations to rejoice at. + +The Lord heard their voice, and looked at their affliction. The people continued fasting many days in all Judea and Jerusalem before the sanctuary of the Lord Almighty. + +And Joakim the high priest, and all the priests who stood before the Lord, and those who ministered to the Lord, had their loins dressed in sackcloth and offered the continual burnt offering, the vows, and the free gifts of the people. + +They had ashes on their turbans. They cried to the Lord with all their power, that he would look upon all the house of Israel for good. + +

+ + +

Holofernes, the chief captain of the army of Asshur, was told that the children of Israel had prepared for war, had shut up the passages of the hill country, had fortified all the tops of the high hills, and had set up barricades in the plains. + +Then he was exceedingly angry, and he called all the princes of Moab, the captains of Ammon, and all the governors of the sea coast, + +and he said to them, “Tell me now, you sons of Canaan, who are these people who dwell in the hill country? What are the cities that they inhabit? How large is their army? Where is their power and their strength? What king is set over them, to be the leader of their army? + +Why have they turned their backs, that they should not come and meet me, more than all who dwell in the west?” + +

+

Then Achior, the leader of all the children of Ammon, said to him, “Let my lord now hear a word from the mouth of your servant, and I will tell you the truth concerning these people who dwell in this hill country, near to the place where you dwell. No lie will come out of the mouth of your servant. + +These people are descended from the Chaldeans. + +They sojourned before this in Mesopotamia, because they didn’t want to follow the gods of their fathers, which were in the land of the Chaldeans. + +They departed from the way of their parents, and worshiped the God of heaven, the God whom they knew. Their parents cast them out from the face of their gods, and they fled into Mesopotamia and sojourned there many days. + +Then their God commanded them to depart from the place where they sojourned, and to go into the land of Canaan. They lived there, and prospered with gold and silver, and with exceedingly much cattle. + +Then they went down into Egypt, for a famine covered all the land of Canaan. They sojourned there until they had grown up. They became a great multitude there, so that one could not count the population of their nation. + +Then the king of Egypt rose up against them, and dealt subtly with them, and brought them low, making them labor in brick,5:11 +Some authorities read +and he brought them low with clay and brick, etc. + and made them slaves. + +They cried to their God, and he struck all the land of Egypt with incurable plagues; so the Egyptians cast them out of their sight. + +God dried up the Red sea before them, + +and brought them into the way of Sinai Kadesh-Barnea and they cast out all that lived in the wilderness. + +They lived in the land of the Amorites, and they destroyed by their strength everyone in Heshbon. Passing over Jordan, they possessed all the hill country. + +They cast out before them the Canaanite, the Perizzite, the Jebusite, the Shechemite, and all the Girgashites, and they lived in that country many days. + +

+

And while they didn’t sin before their God, they prospered, because God who hates iniquity was with them. + +But when they departed from the way which he appointed them, they were destroyed in many severe battles, and were led captives into a land that was not theirs. The temple of their God was razed to the ground, and their cities were taken by their adversaries. + +And now they have returned to their God, and have come up from the dispersion where they were dispersed, and have possessed Jerusalem, where their sanctuary is, and are settled in the hill country; for it was desolate. + +

+

And now, my lord and master, if there is any error in this people, and they sin against their God, we will find out what this thing is in which they stumble, and we will go up and overcome them. + +But if there is no lawlessness in their nation, let my lord now pass by, lest their Lord defend them, and their God be for them, and we will be a reproach before all the earth.” + +

+

It came to pass, when Achior had finished speaking these words, all the people standing around the tent complained. The great men of Holofernes, and all who lived by the sea side and in Moab, said that he should be cut to pieces. + +For, they said, “We will not be afraid of the children of Israel, because, behold, they are a people that has no power nor might to make the battle strong. + +Therefore now we will go up, and they will be a prey to be devoured by all your army, Lord Holofernes.” + +

+ + +

And when the disturbance of the men that were around the council had ceased, Holofernes the chief captain of the army of Asshur said to Achior and to all the children of Moab6:1 +Some authorities read +Ammon. +Compare ver. 5. + before all the people of the foreigners: + +

+

“And who are you, Achior, and the mercenaries of Ephraim,6:2 +Some authorities read +Ammon. +Compare ver. 5. + that you have prophesied among us as today, and have said that we should not make war with the race of Israel, because their God will defend them? And who is God but Nebuchadnezzar? + +He will send forth his might, and will destroy them from the face of the earth, and their God will not deliver them; but we his servants will strike them as one man. They will not sustain the might of our cavalry. + +For with them we will burn them up. Their mountains will be drunken with their blood. Their plains will be filled with their dead bodies. Their footsteps will not stand before us, but they will surely perish, says King Nebuchadnezzar, lord of all the earth; for he said, ‘The words that I have spoken6:4 +Gr. +he has spoken. + will not be in vain.’ + +

+

But you, Achior, hireling of Ammon, who have spoken these words in the day of your iniquity, will see my face no more from this day, until I am avenged of the race of those that came out of Egypt. + +And then the sword of my army, and the multitude of those who serve me, will pass through your sides, and you will fall among their slain when I return. + +Then my servants will bring you back into the hill country, and will set you in one of the cities by the passes. + +You will not perish until you are destroyed with them. + +And if you hope in your heart that they will not be taken, don’t let your countenance fall. I have spoken it, and none of my words will fall to the ground.” + +

+

Then Holofernes commanded his servants who waited in his tent to take Achior, and bring him back to Bethulia, and deliver him into the hands of the children of Israel. + +So his servants took him, and brought him out of the camp into the plain, and they moved from the midst of the plains into the hill country, and came to the springs that were under Bethulia. + +When the men of the city saw them on the top of the hill, they took up their weapons, and went out of the city against them to the top of the hill. Every man that used a sling kept them from coming up, and threw stones at them. + +They took cover under the hill, bound Achior, cast him down, left him at the foot of the hill, and went away to their lord. + +

+

But the children of Israel descended from their city, and came to him, untied him, led him away into Bethulia, and presented him to the rulers of their city, + +which were in those days Ozias the son of Micah, of the tribe of Simeon, and Chabris the son of Gothoniel, and Charmis the son of Melchiel. + +Then they called together all the elders of the city; and all their young men ran together, with their women, to the assembly. They set Achior in the midst of all their people. Then Ozias asked him what had happened. + +He answered and declared to them the words of the council of Holofernes, and all the words that he had spoken in the midst of the princes of the children of Asshur, and all the great words that Holofernes had spoken against the house of Israel. + +Then the people fell down and worshiped God, and cried, saying, + +“O Lord God of heaven, behold their arrogance, and pity the low estate of our race. Look upon the face of those who are sanctified to you this day.” + +They comforted Achior, and praised him exceedingly. + +Then Ozias took him out of the assembly into his house, and made a feast for the elders. They called on the God of Israel for help all that night. + +

+ + +

The next day Holofernes commanded all his army and all the people who had come to be his allies, that they should move their camp toward Bethulia, seize the passes of the hill country, and make war against the children of Israel. + +Every mighty man of them moved that day. The army of their men of war was one hundred seventy thousand footmen, plus twelve thousand horsemen, besides the baggage and the men who were on foot among them—an exceedingly great multitude. + +They encamped in the valley near Bethulia, by the fountain. They spread themselves in breadth over Dothaim even to Belmaim, and in length from Bethulia to Cyamon, which is near Esdraelon. + +

+

But the children of Israel, when they saw the multitude of them, were terrified, and everyone said to his neighbor, “Now these men will lick up the face of all the earth. Neither the high mountains, nor the valleys, nor the hills will be able to bear their weight. + +Every man took up his weapons of war, and when they had kindled fires upon their towers, they remained and watched all that night. + +

+

But on the second day Holofernes led out all his cavalry in the sight of the children of Israel which were in Bethulia, + +viewed the ascents to their city, and searched out the springs of the waters, seized upon them, and set garrisons of men of war over them. Then he departed back to his people. + +

+

All the rulers of the children of Esau, all the leaders of the people of Moab, and the captains of the sea coast came to him and said, + +“Let our lord now hear a word, that there not be losses in your army. + +For this people of the children of Israel do not trust in their spears, but in the height of the mountains wherein they dwell, for it is not easy to come up to the tops of their mountains. + +And now, my lord, don’t fight against them as men fight who join battle, and there will not so much as one man of your people perish. + +Remain in your camp, and keep every man of your army safe. Let your servants get possession of the water spring, which flows from the foot of the mountain, + +because all the inhabitants of Bethulia get their water from there. Then thirst will kill them, and they will give up their city. Then we and our people will go up to the tops of the mountains that are near, and will camp upon them, to watch that not one man gets out of the city. + +They will be consumed with famine—they, their wives, and their children. Before the sword comes against them they will be laid low in the streets where they dwell. + +And you will pay them back with evil, because they rebelled, and didn’t meet your face in peace.” + +

+

Their words were pleasing in the sight of Holofernes and in the sight of all his servants; and he ordered them to do as they had spoken. + +And the army of the children of Ammon moved, and with them five thousand of the children of Asshur, and they encamped in the valley. They seized the waters and the springs of the waters of the children of Israel. + +The children of Esau went up with the children of Ammon, and encamped in the hill country near Dothaim. They sent some of them toward the south, and toward the east, near Ekrebel, which is near Chusi, that is upon the brook Mochmur. The rest of the army of the Assyrians encamped in the plain, and covered all the face of the land. Their tents and baggage were pitched upon it in a great crowd. They were an exceedingly great multitude. + +

+

The children of Israel cried to the Lord their God, for their spirit fainted; for all their enemies had surrounded them. There was no way to escape out from among them. + +All the army of Asshur remained around them, their footmen and their chariots and their horsemen, for thirty-four days. All their vessels of water ran dry for all the inhabitants of Bethulia. + +The cisterns were emptied, and they had no water to drink their fill for one day; for they rationed drink by measure. + +Their young children were discouraged. The women and the young men fainted for thirst. They fell down in the streets of the city, and in the passages of the gates. There was no longer any strength in them. + +

+

All the people, including the young men, the women, and the children, were gathered together against Ozias, and against the rulers of the city. They cried with a loud voice, and said before all the elders, + +“God be judge between all of you and us, because you have done us great wrong, in that you have not spoken words of peace with the children of Asshur. + +Now we have no helper; but God has sold us into their hands, that we should be laid low before them with thirst and great destruction. + +And now summon them, and deliver up the whole city as prey to the people of Holofernes, and to all his army. + +For it is better for us to be captured by them. For we will be servants, and our souls will live, and we will not see the death of our babies before our eyes, and our wives and our children fainting in death. + +We take to witness against you the sky and the earth, and our God and the Lord of our fathers, who punishes us according to our sins and the sins of our fathers. Do what we have said today!” + +

+

And there was great weeping of all with one consent in the midst of the assembly; and they cried to the Lord God with a loud voice. + +And Ozias said to them, “Brethren, be of good courage! Let us endure five more days, during which the Lord our God will turn his mercy toward us; for he will not forsake us utterly. + +But if these days pass, and no help comes to us, I will do what you say.” + +Then he dispersed the people, every man to his own camp; and they went away to the walls and towers of their city. He sent the women and children into their houses. They were brought very low in the city. + +

+ + +

In those days Judith heard about this. She was the daughter of Merari, the son of Ox, the son of Joseph, the son of Oziel, the son of Elkiah, the son of Ananias, the son of Gideon, the son of Raphaim, the son of Ahitub, the son of Elihu, the son of Eliab, the son of Nathanael, the son of Salamiel, the son of Salasadai, the son of Israel. + +Her husband was Manasses, of her tribe and of her family. He died in the days of barley harvest. + +For he stood over those who bound sheaves in the field, and was overcome by the burning heat, and he fell on his bed, and died in his city Bethulia. So they buried him with his fathers in the field which is between Dothaim and Balamon. + +Judith was a widow in her house three years and four months. + +She made herself a tent upon the roof of her house, and put on sackcloth upon her loins. The garments of her widowhood were upon her. + +And she fasted all the days of her widowhood, except the eves of the Sabbaths, the Sabbaths, the eves of the new moons, the new moons, and the feasts and joyful days of the house of Israel. + +She was beautiful in appearance, and lovely to behold. Her husband Manasses had left her gold, silver, menservants, maidservants, cattle, and lands. She remained on those lands. + +No one said anything evil about her, for she feared God exceedingly. + +

+

She heard the evil words of the people against the governor, because they fainted for lack of water; and Judith heard all the words that Ozias spoke to them, how he swore to them that he would deliver the city to the Assyrians after five days. + +So she sent her maid, who was over all things that she had, to summon Ozias, Chabris, and Charmis, the elders of her city. + +They came to her, and she said to them, “Hear me now, O you rulers of the inhabitants of Bethulia! For your word that you have spoken before the people this day is not right. You have set the oath which you have pronounced between God and you, and have promised to deliver the city to our enemies, unless within these days the Lord turns to help you. + +Now who are you that you have tested God this day, and stand in the place of God among the children of men? + +Now try the Lord Almighty, and you will never know anything. + +For you will not find the depth of the heart of man, and you will not perceive the things that he thinks. How will you search out God, who has made all these things, and know his mind, and comprehend his purpose? No, my kindred, don’t provoke the Lord our God to anger! + +For if he has not decided to help us within these five days, he has power to defend us in such time as he will, or to destroy us before the face of our enemies. + +But don’t you pledge the counsels of the Lord our God! For God is not like a human being, that he should be threatened, neither is he like a son of man, that he should be won over by pleading. + +Therefore let’s wait for the salvation that comes from him, and call upon him to help us. He will hear our voice, if it pleases him. + +For there arose none in our age, neither is there any of us today, tribe, or kindred, or family, or city, which worship gods made with hands, as it was in the former days; + +for which cause our fathers were given to the sword, and for plunder, and fell with a great destruction before our enemies. + +But we know no other god beside him. Therefore we hope that he will not despise us, nor any of our race. + +For if we are captured, all Judea will be captured and our sanctuary will be plundered; and he will require our blood for profaning it. + +The slaughter of our kindred, the captivity of the land, and the desolation of our inheritance, he will bring on our heads among the Gentiles, wherever we will be in bondage. We will be an offense and a reproach to those who take us for a possession. + +For our bondage will not be ordered to favor; but the Lord our God will turn it to dishonor. + +And now, kindred, let’s show an example to our kindred, because their soul depends on us, and the sanctuary, the house, and the altar depend on us. + +Besides all this let’s give thanks to the Lord our God, who tries us, even as he did our fathers also. + +Remember all the things which he did to Abraham, and all the things in which he tried Isaac, and all the things which happened to Jacob in Mesopotamia of Syria, when he kept the sheep of Laban his mother’s brother. + +For he has not tried us in the fire, as he did them, to search out their hearts, neither has he taken vengeance on us; but the Lord scourges those who come near to him, to admonish them.” + +

+

And Ozias said to her, “All that you have spoken, you have spoken with a good heart. There is no one who will deny your words. + +For this is not the first day wherein your wisdom is manifested; but from the beginning of your days all the people have known your understanding, because the disposition of your heart is good. + +But the people were exceedingly thirsty, and compelled us to do as we spoke to them, and to bring an oath upon ourselves, which we will not break. + +And now pray for us, because you are a godly woman, and the Lord will send us rain to fill our cisterns, and we will faint no more.” + +

+

Then Judith said to them, “Hear me, and I will do a thing, which will go down to all generations among the children of our race. + +You shall all stand at the gate tonight. I will go out with my maid. Within the days after which you said that you would deliver the city to our enemies, the Lord will deliver Israel by my hand. + +But you shall not inquire of my act; for I will not tell you until the things are finished that I will do.” + +

+

Then Ozias and the rulers said to her, “Go in peace. May the Lord God be before you, to take vengeance on our enemies.” + +So they returned from the tent, and went to their stations. + +

+ + +

But Judith fell upon her face, and put ashes upon her head, and uncovered the sackcloth with which she was clothed. The incense of that evening was now being offered at Jerusalem in the house of God, and Judith cried to the Lord with a loud voice, and said, + +“O Lord God of my father Simeon, into whose hand you gave a sword to take vengeance on the strangers who loosened the belt of a virgin to defile her, uncovered her thigh to her shame, and profaned her womb to her reproach; for you said, ‘It shall not be so;’ and they did so. + +Therefore you gave their rulers to be slain, and their bed, which was ashamed for her who was deceived,9:3 +Some authorities read +which was ashamed for their deceit that they practiced. + to be dyed in blood, and struck the servants with their masters, and the masters upon their thrones; + +and gave their wives for a prey, and their daughters to be captives, and all their spoils to be divided among your dear children; which were moved with zeal for you, and abhorred the pollution of their blood, and called upon you for aid. O God, O my God, hear me also who am a widow. + +For you did the things that were before those things, and those things, and such as come after; and you planned the things which are now, and the things which are to come. The things which you planned came to pass. + +Yes, the things which you determined stood before you, and said, ‘Behold, we are here; for all your ways are prepared, and your judgment is with foreknowledge.’ + +For, behold, the Assyrians are multiplied in their power. They are exalted with horse and rider. They were proud of the strength of their footmen. They have trusted in shield, spear, bow, and sling. They don’t know that you are the Lord who breaks the battles. ‘The Lord’ is your name. + +Break their strength in your power, and bring down their force in your wrath; for they intend to profane your sanctuary, and to defile the tabernacle where your glorious name rests, and to destroy the horn of your altar with the sword. + +Look at their pride, and send your wrath upon their heads. Give into my hand, which am a widow, the might that I have conceived. + +Strike by the deceit of my lips the servant with the prince, and the prince with his servant. Break down their arrogance by the hand of a woman. + +For your power stands not in numbers, nor your might in strong men, but you are a God of the afflicted. You are a helper of the oppressed, a helper of the weak, a protector of the forsaken, a savior of those who are without hope. + +Please, please, God of my father, and God of the inheritance of Israel, Lord of the heavens and of the earth, Creator of the waters, King of all your creation, hear my prayer. + +Make my speech and deceit to be their wound and bruise, who intend hard things against your covenant, your holy house, the top of Zion, and the house of the possession of your children. + +Make every nation and tribe of yours to know that you are God, the God of all power and might, and that there is no other who protects the race of Israel but you.” + +

+ + +

It came to pass, when she had ceased to cry to the God of Israel, and had finished saying all these words, + +that she rose up where she had fallen down, called her maid, and went down into the house that she lived on the Sabbath days and on her feast days. + +She pulled off the sackcloth which she had put on, took off the garments of her widowhood, washed her body all over with water, anointed herself with rich ointment, braided the hair of her head, and put a tiara upon it. She put on her garments of gladness, which she used to wear in the days of the life of Manasses her husband. + +She took sandals for her feet, and put on her anklet, bracelets, rings, earrings, and all her jewelry. She made herself very beautiful to deceive the eyes of all men who would see her. + +She gave her maid a leather container of wine and a flask of oil, and filled a bag with roasted grain, lumps of figs, and fine bread. She packed all her vessels together, and laid them upon her. + +

+

They went out to the gate of the city of Bethulia, and found Ozias and the elders of the city, Chabris and Charmis standing by it. + +But when they saw her, that her countenance was altered and her apparel was changed, they were greatly astonished by her beauty and said to her, + +“May the God of our fathers give you favor, and accomplish your purposes to the glory of the children of Israel, and to the exaltation of Jerusalem.” +

+

Then she worshiped God, + +and said to them, “Command that they open the gate of the city for me, and I will go out to accomplish the things you spoke with me about.” +

+

And they commanded the young men to open to her, as she had spoken; + +and they did so. +

+

Then Judith went out, she, and her handmaid with her. The men of the city watched her until she had gone down the mountain, until she had passed the valley, and they could see her no more. + +They went straight onward in the valley. The watch of the Assyrians met her; + +and they took her, and asked her, “Of what people are you? Where are you coming from? Where are you going?” +

+

She said, “I am a daughter of the Hebrews. I am fleeing away from their presence, because they are about to be given you to be consumed. + +I am coming into the presence of Holofernes the chief captain of your army, to declare words of truth. I will show him a way that he can go and win all the hill country, and there will not be lacking of his men one person, nor one life.” + +

+

Now when the men heard her words, and considered her countenance, the beauty thereof was exceedingly marvelous in their eyes. They said to her, + +“You have saved your life, in that you have hurried to come down to the presence of our master. Now come to his tent. Some of us will guide you until they deliver you into his hands. + +But when10:16 +Gr. +if. + you stand before him, don’t be afraid in your heart, but declare to him what you just said, and he will treat you well.” + +They chose out of them a hundred men, and appointed them to accompany her and her maid; and they brought them to the tent of Holofernes. + +

+

And there was great excitement throughout all the camp, for her coming was reported among the tents. They came and surrounded her as she stood outside Holofernes’ tent, until they told him about her. + +They marveled at her beauty, and marveled at the children of Israel because of her. Each one said to his neighbor, “Who would despise these people, who have among them such women? For it is not good that one man of them be left, seeing that, if they are let go, they will be able to deceive the whole earth. + +

+

Then the guards of Holofernes and all his servants came out and brought her into the tent. + +And Holofernes was resting upon his bed under the canopy, which was woven with purple, gold, emeralds, and precious stones. + +And they told him about her; and he came out into the space before his tent, with silver lamps going before him. + +But when Judith had come before him and his servants, they all marveled at the beauty of her countenance. She fell down upon her face and bowed down to him, but his servants raised her up. + +

+ + +

Holofernes said to her, “Woman, take courage. Don’t be afraid in your heart; for I never hurt anyone who has chosen to serve Nebuchadnezzar, the king of all the earth. + +And now, if your people who dwell in the hill country had not slighted me, I would not have lifted up my spear against them; but they have done these things to themselves. + +And now tell me why you fled from them and came to us; for you have come to save yourself. Take courage! You will live tonight, and hereafter; + +for there is no one that will wrong you, but all will treat you well, as is done to the servants of King Nebuchadnezzar my lord.” + +

+

And Judith said to him, “Receive the words of your servant, and let your handmaid speak in your presence, and I won’t lie to my lord tonight. + +If you will follow the words of your handmaid, God will bring the thing to pass perfectly with you; and my lord will not fail to accomplish his purposes. + +As Nebuchadnezzar king of all the earth lives, and as his power lives, who has sent you for the preservation of every living thing, not only do men serve him by you, but also the beasts of the field, the cattle, and the birds of the sky will live through your strength, in the time of Nebuchadnezzar and of all his house. + +For we have heard of your wisdom and the subtle plans of your soul. It has been reported in all the earth that you only are brave in all the kingdom, mighty in knowledge, and wonderful in feats of war. + +And now as concerning the matter which Achior spoke in your council, we have heard his words; for the men of Bethulia saved him, and he declared to them all that he had spoken before you. + +Therefore, O lord and master, don’t neglect his word, but lay it up in your heart, for it is true; for our race will not be punished, neither will the sword prevail against them, unless they sin against their God. + +And now, that my lord may not be defeated and frustrated in his purpose, and that death may fall upon them, their sin has overtaken them, wherewith they will provoke their God to anger, whenever they do wickedness. + +Since their food failed them, and all their water was scant, they took counsel to kill their livestock, and determined to consume all those things which God charged them by his laws that they should not eat. + +They are resolved to spend the first fruits of the grain and the tithes of the wine and the oil, which they had sanctified and reserved for the priests who stand before the face of our God in Jerusalem, which it is not fitting for any of the people so much as to touch with their hands. + +They have sent some to Jerusalem, because they also that dwell there have done this thing, to bring them permission from the council of elders. + +When these instructions come to them and they do it, they will be given to you to be destroyed the same day. + +Therefore I your servant, knowing all this, fled away from their presence. God sent me to work things with you, at which all the earth will be astonished, even as many as hear it. + +For your servant is religious, and serves the God of heaven day and night. Now, my lord, I will stay with you; and your servant will go out by night into the valley. I will pray to God, and he will tell me when they have committed their sins. + +Then I will come and tell you. Then you can go out with all your army, and there will be none of them that will resist you. + +And I will lead you through the midst of Judea, until you come to Jerusalem. I will set your throne in the midst of it. You will drive them as sheep that have no shepherd, and a dog will not so much as open his mouth before you; for these things were told me according to my foreknowledge, and were declared to me, and I was sent to tell you.” + +

+

Her words were pleasing in the sight of Holofernes and of all his servants. They marveled at her wisdom, and said, + +“There is not such a woman from one end of the earth to the other, for beauty of face and wisdom of words.” + +

+

Holofernes said to her, “God did well to send you before the people, that might would be in our hands, and destruction among those who slighted my lord. + +And now you are beautiful in your countenance, and wise in your words. If you will do as you have spoken, your God will be my God, and you will dwell in the palace of King Nebuchadnezzar, and will be renowned through the whole earth.” + +

+ + +

He commanded that she should be brought in where his silver vessels were set, and asked that his servants should prepare some of his own delicacies for her, and that she should drink from his own wine. + +

+

And Judith said, “I can’t eat of it, lest there be an occasion of stumbling; but provision will be made for me from the things that have come with me.” + +

+

And Holofernes said to her, “But if the things that are with you should run out, from where will we be able to give you more like it? For there is none of your race with us.” + +

+

And Judith said to him, “As your soul lives, my lord, your servant will not use up those things that are with me until the Lord works by my hand the things that he has determined.” + +Then Holofernes’ servants brought her into the tent, and she slept until midnight. Then she rose up toward the morning watch, + +and sent to Holofernes, saying, “Let my lord now command that they allow your servant to go out to pray.” + +

+

Holofernes commanded his guards that they should not stop her. She stayed in the camp three days, and went out every night into the valley of Bethulia and washed herself at the fountain of water in the camp. + +And when she came up, she implored the Lord God of Israel to direct her way to the triumph of the children of his people. + +She came in clean and remained in the tent until she ate her food toward evening. + +

+

It came to pass on the fourth day, that Holofernes made a feast for his own servants only, and called none of the officers to the banquet. + +And he said to Bagoas the eunuch, who had charge over all that he had, “Go now, and persuade this Hebrew woman who is with you that she come to us, and eat and drink with us. + +For behold, it would be a disgrace if we shall let such a woman go, not having had her company; for if we don’t draw her to ourselves, she will laugh us to scorn.” + +

+

Bagoas went from the presence of Holofernes, and came in to her, and said, “Let this fair lady not fear to come to my lord, and to be honored in his presence, and to drink wine and be merry with us, and to be made this day as one of the daughters of the children of Asshur who serve in Nebuchadnezzar’s palace.” + +

+

Judith said to him, “Who am I, that I should contradict my lord? For whatever would be pleasing in his eyes, I will do speedily, and this will be my joy to the day of my death.” + +She arose, and decked herself with her apparel and all her woman’s attire; and her servant went and laid fleeces on the ground for her next to Holofernes, which she had received from Bagoas for her daily use, that she might sit and eat upon them. + +

+

Judith came in and sat down, and Holofernes’ heart was ravished with her. His passion was aroused, and he exceedingly desired her company. He was watching for a time to deceive her from the day that he had seen her. + +Holofernes said to her, “Drink now, and be merry with us.” + +

+

Judith said, “I will drink now, my lord, because my life is magnified in me this day more than all the days since I was born.” + +Then she took and ate and drank before him what her servant had prepared. + +Holofernes took great delight in her, and drank exceedingly much wine, more than he had drunk at any time in one day since he was born. + +

+ + +

But when the evening had come, his servants hurried to depart. Bagoas shut the tent outside, and dismissed those who waited from the presence of his lord. They went away to their beds; for they were all weary, because the feast had been long. + +But Judith was left alone in the tent, with Holofernes lying along upon his bed; for he was drunk with wine. + +Judith had said to her servant that she should stand outside her bedchamber, and wait for her to come out, as she did daily; for she said she would go out to her prayer. She spoke to Bagoas according to the same words. + +All went away from her presence, and none was left in the bedchamber, small or great. Judith, standing by his bed, said in her heart, O Lord God of all power, look in this hour upon the works of my hands for the exaltation of Jerusalem. + +For now is the time to help your inheritance, and to do the thing that I have purposed to the destruction of the enemies which have risen up against us. + +She came to the bedpost which was at Holofernes’ head, and took down his sword from there. + +She drew near to the bed, took hold of the hair of his head, and said, “Strengthen me, O Lord God of Israel, this day.” + +She struck twice upon his neck with all her might and cut off his head, + +tumbled his body down from the bed, and took down the canopy from the posts. After a little while she went out, and gave Holofernes’ head to her maid; + +and she put it in her bag of food. They both went out together to prayer, according to their custom. They passed through the camp, circled around that valley, and went up to the mountain of Bethulia, and came to its gates. + +

+

Judith said afar off to the watchmen at the gates, “Open, open the gate, now. God is with us, even our God, to show his power yet in Israel, and his might against the enemy, as he has done even this day.” + +

+

It came to pass, when the men of her city heard her voice, they made haste to go down to the gate of their city, and they called together the elders of the city. + +They all ran together, both small and great, for it seemed unbelievable to them that she had come. They opened the gate and received them, making a fire to give light, and surrounded them. + +She said to them with a loud voice, “Praise God! Praise him! Praise God, who has not taken away his mercy from the house of Israel, but has destroyed our enemies by my hand tonight!” + +

+

Then she took the head out of the bag and showed it, and said to them, “Behold, the head of Holofernes, the chief captain of the army of Asshur, and behold, the canopy under which he laid in his drunkenness. The Lord struck him by the hand of a woman. + +And as the Lord lives, who preserved me in my way that I went, my countenance deceived him to his destruction, and he didn’t commit sin with me, to defile and shame me.” + +

+

All the people were exceedingly amazed, and bowed themselves, and worshiped God, and said with one accord, “Blessed are you, O our God, who have this day humiliated the enemies of your people.” + +

+

Ozias said to her, “Blessed are you, daughter, in the sight of the Most High God, above all the women upon the earth; and blessed is the Lord God, who created the heavens and the earth, who directed you to cut off the head of the prince of our enemies. + +For your hope will not depart from the heart of men that remember the strength of God forever. + +May God turn these things to you for a perpetual praise, to visit you with good things, because you didn’t spare your life by reason of the affliction of our race, but prevented our ruin, walking a straight way before our God.” +

+

And all the people said, “Amen! Amen!” + +

+ + +

Judith said to them, “Hear me now, my kindred, and take this head, and hang it upon the battlement of your wall. + +It will be, so soon as the morning appears, and the sun comes up on the earth, you shall each take up his weapons of war, and every valiant man of you go out of the city. You shall set a captain over them, as though you would go down to the plain toward the watch of the children of Asshur; but you men shall not go down. + +These will take up their full armor, and shall go into their camp and rouse up the captains of the army of Asshur. They will run together to Holofernes’ tent. They won’t find him. Fear will fall upon them, and they will flee before your face. + +You men, and all that inhabit every border of Israel, shall pursue them and overthrow them as they go. + +But before you do these things, summon Achior the Ammonite to me, that he may see and know him that despised the house of Israel, and that sent him to us, as it were to death. + +

+

And they called Achior out of the house of Ozias; but when he came, and saw the head of Holofernes in a man’s hand in the assembly of the people, he fell upon his face, and his spirit failed. + +But when they had recovered him,14:7 +Many authorities read +he had recovered himself. + he fell at Judith’s feet, bowed down to her, and said, “Blessed are you in every tent of Judah! In every nation, those who hear your name will be troubled. + +Now tell me all the things that you have done in these days.” +

+

And Judith declared to him in the midst of the people all the things that she had done, from the day that she went out until the time that she spoke to them. + +But when she finished speaking, the people shouted with a loud voice, and made a joyful noise in their city. + +But when Achior saw all the things that the God of Israel had done, he believed in God exceedingly, and circumcised the flesh of his foreskin, and was joined to the house of Israel, to this day. + +

+

But as soon as the morning arose, they hanged the head of Holofernes upon the wall, and every man took up his weapons, and they went forth by bands to the ascents of the mountain. + +But when the children of Asshur saw them, they sent word to their leaders, and they went to their captains and tribunes, and to every one of their rulers. + +They came to Holofernes’ tent, and said to him that was over all that he had, “Wake our lord up, now, for the slaves have been bold to come down against us to battle, that they may be utterly destroyed.” + +

+

Bagoas went in, and knocked at the outer door of the tent; for he supposed that Holofernes was sleeping with Judith. + +But when no one answered, he opened it, went into the bedchamber, and found him cast upon the threshold dead; and his head had been taken from him. + +He cried with a loud voice, with weeping, groaning, and shouting, and tore his garments. + +He entered into the tent where Judith lodged, and he didn’t find her. He leaped out to the people, and cried aloud, + +“The slaves have dealt treacherously! One woman of the Hebrews has brought shame upon the house of King Nebuchadnezzar; for, behold, Holofernes lies upon the ground, and his head is not on him!” + +

+

But when the rulers of the army of Asshur heard this, they tore their tunics, and their souls were troubled exceedingly. There were cries and an exceedingly great noise in the midst of the camp. + +

+ + +

When those who were in the tents heard, they were amazed at what happened. + +Trembling and fear fell upon them, and no man dared stay any more in the sight of his neighbor, but rushing out with one accord, they fled into every way of the plain and of the hill country. + +Those who had encamped in the hill country round about Bethulia fled away. And then the children of Israel, every one who was a warrior among them, rushed out upon them. + +Ozias sent to Betomasthaim, Bebai, Chobai, and Chola, and to every border of Israel, to tell about the things that had been accomplished, and that all should rush upon their enemies to destroy them. + +But when the children of Israel heard this, they all fell upon them with one accord, and struck them to Chobai. Yes, and in like manner also, people from Jerusalem and from all the hill country came (for men had told them about what happened in their enemies’ camp), and those who were in Gilead and in Galilee fell upon their flank with a great slaughter, until they were past Damascus and its borders. + +The rest of the people who lived at Bethulia fell upon the camp of Asshur, and plundered them, and were enriched exceedingly. + +The children of Israel returned from the slaughter, and got possession of that which remained. The villages and the cities that were in the hill country and in the plain country took many spoils; for there was an exceedingly great supply. + +

+

Joakim the high priest, and the elders of the children of Israel who lived in Jerusalem, came to see the good things which the Lord had showed to Israel, and to see Judith and to greet her. + +When they came to her, they all blessed her with one accord, and said to her, “You are the exaltation of Jerusalem! You are the great glory of Israel! You are the great rejoicing of our race! + +You have done all these things by your hand. You have done with Israel the things that are good, and God is pleased with it. May you be blessed by the Almighty Lord forever!” +

+

And all the people said, “Amen!” + +

+

And the people plundered the camp for thirty days; and they gave Holofernes’ tent to Judith, along with all his silver cups, his beds, his bowls, and all his furniture. She took them, placed them on her mule, prepared her wagons, and piled them on it. + +

+

And all the women of Israel ran together to see her; and they blessed her, and made a dance among them for her. She took branches in her hand, and distributed them to the women who were with her.15:12 +Compare 2 Maccabees 10:7. + + +Then they made themselves garlands of olive, she and those who were with her, and she went before all the people in the dance, leading all the women. All the men of Israel followed in their armor with garlands, and with songs in their mouths. + +

+ + +

And Judith began to sing this song of thanksgiving in all Israel, and all the people sang with loud voices this song of praise. + +Judith said, +

+“Begin a song to my God with timbrels. + +Sing to my Lord with cymbals. + +Make melody to him with psalm and praise. + +Exalt him, and call upon his name. + + +For the Lord is the God that crushes battles. + +For in his armies in the midst of the people, + +he delivered me out of the hand of those who persecuted me. + + +Asshur came out of the mountains from the north. + +He came with ten thousands of his army. + +Its multitude stopped the torrents. + +Their horsemen covered the hills. + + +He said that he would burn up my borders, + +kill my young men with the sword, + +throw my nursing children to the ground, + +give my infants up as prey, + +and make my virgins a plunder. + + + +“The Almighty Lord brought them to nothing by the hand of a woman. + + +For their mighty one didn’t fall by young men, + +neither did sons of the Titans strike him. + +Tall giants didn’t attack him, + +but Judith the daughter of Merari made him weak with the beauty of her countenance. + + + +“For she put off the apparel of her widowhood + +for the exaltation of those who were distressed in Israel. + +She anointed her face with ointment, + +bound her hair in a tiara, + +and took a linen garment to deceive him. + + +Her sandal ravished his eye. + +Her beauty took his soul prisoner. + +The sword passed through his neck. + + +“The Persians quaked at her daring. + +The Medes were daunted at her boldness. + + + +“Then my lowly ones shouted aloud. + +My oppressed people were terrified and trembled for fear. + +They lifted up their voices and the enemy fled. + + +The children of slave-girls pierced them through, + +and wounded them as fugitives’ children. + +They perished by the army of my Lord. + + + +“I will sing to my God a new song: + +O Lord, you are great and glorious, + +marvelous in strength, invincible. + + +Let all your creation serve you; + +for you spoke, and they were made. + +You sent out your spirit, and it built them. + +There is no one who can resist your voice. + + +For the mountains will be moved from their foundations with the waters, + +and the rocks will melt as wax at your presence: + +But you are yet merciful to those who fear you. + + +For all sacrifice is little for a sweet savor, + +and all the fat is very little for a whole burnt offering to you; + +but he who fears the Lord is great continually. + + + +“Woe to the nations who rise up against my race! + +The Lord Almighty will take vengeance on them in the day of judgment + +and put fire and worms in their flesh; + +and they will weep and feel their pain forever.” + + +

Now when they came to Jerusalem, they worshiped God. When the people were purified, they offered their whole burnt offerings, their free will offerings, and their gifts. + +Judith dedicated all Holofernes’ stuff, which the people had given her, and gave the canopy, which she had taken for herself out of his bedchamber, for a gift to the Lord. + +

+

And the people continued feasting in Jerusalem before the sanctuary for three months, and Judith remained with them. + +

+

After these days, everyone departed to his own inheritance. Judith went away to Bethulia, and remained in her own possession, and was honorable in her time in all the land. + +Many desired her, but no man knew her all the days of her life from the day that Manasses her husband died and was gathered to his people. + +She increased in greatness exceedingly; and she grew old in her husband’s house, to one hundred five years. She let her maid go free. Then she died in Bethulia. They buried her in the cave of her husband Manasses. + +The house of Israel mourned for her seven days. She distributed her goods before she died to all those who were nearest of kin to Manasses her husband, and to those who were nearest of her own kindred. + +There was no one who made the children of Israel afraid any more in the days of Judith, nor for a long time after her death. + +

+
+ +Esther (Greek) +Esther (Greek) +Esther (Greek) +EsG +

Esther +

+

translated from the Greek Septuagint +

+

Introduction +

+

The book of Esther in the Greek Septuagint contains 5 additions that the traditional Hebrew text doesn’t have. These additions are recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. Those additions are enclosed in [square brackets]. Because the additions by themselves make little sense without the broader context of the book, we present here a translation of the whole book of Esther from the Greek. +

+

We have chosen not to distract the reader with confusing out-of-order chapter numbers that would result from using the KJV versification, but rather merge these 5 additions as extensions at the beginning of 1:1 and after 3:13, 4:17, 8:12, and 10:3. This makes some verses (1:1, 5:1, and 8:12) really long, but it also makes the verses line up with the same verse numbers in Esther as translated from the traditional Hebrew text. Some of the proper names in this book have been changed to the more familiar Hebrew form instead of the direct transliteration from the Greek. +

+ + +

[In the second year of the reign of Ahasuerus the great king, on the first day of Nisan, Mordecai the son of Jair, the son of Shimei, the son of Kish, of the tribe of Benjamin, a Jew dwelling in the city Susa, a great man, serving in the king’s palace, saw a vision. Now he was one of the captives whom Nebuchadnezzar king of Babylon had carried captive from Jerusalem with Jeconiah the king of Judea. This was his dream: Behold, voices and a noise, thunders and earthquake, tumult upon the earth. And, behold, two great serpents came out, both ready for conflict. A great voice came from them. Every nation was prepared for battle by their voice, even to fight against the nation of the just. Behold, a day of darkness and blackness, suffering and anguish, affection and tumult upon the earth. And all the righteous nation was troubled, fearing their own afflictions. They prepared to die, and cried to God. Something like a great river from a little spring with much water, came from their cry. Light and the sun arose, and the lowly were exalted, and devoured the honorable. +

+

Mordecai, who had seen this vision and what God desired to do, having arisen, kept it in his heart, and desired by all means to interpret it, even until night. +

+

Mordecai rested quietly in the palace with Gabatha and Tharrha the king’s two chamberlains, eunuchs who guarded the palace. He heard their conversation and searched out their plans. He learned that they were preparing to lay hands on King Ahasuerus; and he informed the king concerning them. The king examined the two chamberlains. They confessed, and were led away and executed. The king wrote these things for a record. Mordecai also wrote concerning these matters. The king commanded Mordecai to serve in the palace, and gave gifts for this service. But Haman the son of Hammedatha the Bougean was honored in the sight of the king, and he endeavored to harm Mordecai and his people, because of the king’s two chamberlains.] +

+

1:1 +Note: +In the +Hebrew +and some copies of LXX, Esther begins here.And it came to pass after these things1:1 +Greek +words. in the days of Ahasuerus, —(this Ahasuerus ruled over one hundred twenty-seven provinces from India)— + +in those days, when King Ahasuerus was on the throne in the city of Susa, + +in the third year of his reign, he made a feast for his friends, for people from the rest of the nations, for the nobles of the Persians and Medes, and for the chief of the local governors. + +After this—after he had shown them the wealth of his kingdom and the abundant glory of his wealth during one hundred eighty days— + +when the days of the wedding feast were completed, the king made a banquet lasting six days for the people of the nations who were present in the city, in the court of the king’s house, + +which was adorned with fine linen and flax on cords of fine linen and purple, fastened to golden and silver studs on pillars of white marble and stone. There were golden and silver couches on a pavement of emerald stone, and of mother-of-pearl, and of white marble, with transparent coverings variously flowered, having roses arranged around it. + +There were gold and silver cups, and a small cup of carbuncle set out, of the value of thirty thousand talents, with abundant and sweet wine, which the king himself drank. + +This banquet was not according to the appointed law, but as the king desired to have it. He charged the stewards to perform his will and that of the company. + +

+

Also Vashti the queen made a banquet for the women in the palace where King Ahasuerus lived. + +Now on the seventh day, the king, being merry, told Haman, Bazan, Tharrha, Baraze, Zatholtha, Abataza, and Tharaba, the seven chamberlains, servants of King Ahasuerus, + +to bring in the queen to him, to1:11 +Greek +to make her queen. + enthrone her, and crown her with the diadem, and to show her to the princes, and her beauty to the nations, for she was beautiful. + +But queen Vashti refused to come with the chamberlains; so the king was grieved and angered. + +And he said to his friends, “This is what Vashti said. Therefore pronounce your legal judgment on this case.” + +

+

So Arkesaeus, Sarsathaeus, and Malisear, the princes of the Persians and Medes, who were near the king, who sat chief in rank by the king, drew near to him, + +and reported to him according to the laws what it was proper to do to queen Vashti, because she had not done the things commanded by the king through the chamberlains. + +And Memucan said to the king and to the princes, “Queen Vashti has not wronged the king only, but also all the king’s rulers and princes; + +for he has told them the words of the queen, and how she1:17 +Greek +contradicted. + disobeyed the king. As she then refused to obey King Ahasuerus, + +so this day the other wives of the chiefs of the Persians and Medes, having heard what she said to the king, will dare in the same way to dishonor their husbands. + +If then it seems good to the king, let him make a royal decree, and let it be written according to the laws of the Medes and Persians, and let him not alter it: ‘Don’t allow the queen to come in to him any more. Let the king give her royalty to a woman better than she.’ + +Let the law of the king which he will have made be widely proclaimed in his kingdom. Then all the women will give honor to their husbands, from the poor even to the rich.” + +This advice pleased the king and the princes; and the king did as Memucan had said, + +and sent into all his kingdom through the several provinces, according to their language, so that men might be feared in their own houses. + +

+ + +

After this, the king’s anger was pacified, and he no more mentioned Vashti, bearing in mind what she had said, and how he had condemned her. + +Then the servants of the king said, “Let chaste, beautiful young virgins be sought for the king. + +Let the king appoint local governors in all the provinces of his kingdom, and let them select beautiful, chaste young ladies and bring them to the city Susa, into the women’s apartment. Let them be consigned to the king’s chamberlain, the keeper of the women. Then let things for purification and other needs be given to them. + +Let the woman who pleases the king be queen instead of Vashti.” +

+

This thing pleased the king; and he did so. + +

+

Now there was a Jew in the city Susa, and his name was Mordecai, the son of Jairus, the son of Shimei, the son of Kish, of the tribe of Benjamin. + +He had been brought as a prisoner from Jerusalem, whom Nebuchadnezzar king of Babylon had carried into captivity. + +He had a foster child, daughter of Aminadab his father’s brother. Her name was Esther. When her parents died, he brought her up to womanhood as his own. This lady was beautiful. + +And because the king’s ordinance was published, many ladies were gathered to the city of Susa under the hand of Hegai; and Esther was brought to Hegai, the keeper of the women. + +The lady pleased him, and she found favor in his sight. He hurried to give her the things for purification, her portion, and the seven maidens appointed her out of the palace. He treated her and her maidens well in the women’s apartment. + +But Esther didn’t reveal her family or her kindred, for Mordecai had charged her not to tell. + +But Mordecai used to walk every day by the women’s court, to see what would become of Esther. + +

+

Now this was the time for a virgin to go into the king, when she had completed twelve months; for so are the days of purification fulfilled, six months while they are anointing themselves with oil of myrrh, and six months with spices and women’s purifications. + +And then the lady goes in to the king. The officer that he commands to do so will bring her to come in with him from the women’s apartment to the king’s chamber. + +She enters in the evening, and in the morning she departs to the second women’s apartment, where Hegai the king’s chamberlain is keeper of the women. She doesn’t go in to the king again, unless she is called by name. + +And when the time was fulfilled for Esther the daughter of Aminadab the brother of Mordecai’s father to go in to the king, she neglected nothing which the chamberlain, the women’s keeper, commanded; for Esther found grace in the sight of all who looked at her. + +So Esther went in to King Ahasuerus in the twelfth month, which is Adar, in the seventh year of his reign. + +The king loved Esther, and she found favor beyond all the other virgins. He put the queen’s crown on her. + +The king made a banquet for all his friends and great men for seven days, and he highly celebrated the marriage of Esther; and he granted a remission of taxes to those who were under his dominion. + +

+

Meanwhile, Mordecai served in the courtyard. + +Now Esther had not revealed her country, for so Mordecai commanded her, to fear God, and perform his commandments, as when she was with him. Esther didn’t change her manner of life. + +

+

Two chamberlains of the king, the chiefs of the body-guard, were grieved, because Mordecai was promoted; and they sought to kill King Ahasuerus. + +And the matter was discovered by Mordecai, and he made it known to Esther, and she declared to the king the matter of the conspiracy. + +And the king examined the two chamberlains and hanged them. Then the king gave orders to make a note for a memorial in the royal library of the goodwill shown by Mordecai, as a commendation. + +

+ + +

After this, King Ahasuerus highly honored Haman the son of Hammedatha, the Bugaean. He exalted him and set his seat above all his friends. + +All in the palace bowed down to him, for so the king had given orders to do; but Mordecai didn’t bow down to him. + +And they in the king’s palace said to Mordecai, “Mordecai, why do you transgress the commands of the king?” + +They questioned him daily, but he didn’t listen to them; so they reported to Haman that Mordecai resisted the commands of the king; and Mordecai had shown to them that he was a Jew. + +When Haman understood that Mordecai didn’t bow down to him, he was greatly enraged, + +and plotted to utterly destroy all the Jews who were under the rule of Ahasuerus. + +

+

In the twelfth year of the reign of Ahasuerus, Haman made a decision by casting lots by day and month, to kill the race of Mordecai in one day. The lot fell on the fourteenth day of the month of Adar. + +So he spoke to King Ahasuerus, saying, “There is a nation scattered among the nations in all your kingdom, and their laws differ from all the other nations. They disobey the king’s laws. It is not expedient for the king to tolerate them. + +If it seem good to the king, let him make a decree to destroy them, and I will remit into the king’s treasury ten thousand talents of silver.” + +

+

So the king took off his ring, and gave it into the hands of Haman to seal the decrees against the Jews. + +The king said to Haman, “Keep the silver, and treat the nation as you will.” + +So the king’s recorders were called in the first month, on the thirteenth day, and they wrote as Haman commanded to the captains and governors in every province, from India even to Ethiopia, to one hundred twenty-seven provinces; and to the rulers of the nations according to their languages, in the name of King Ahasuerus. + +The message was sent by couriers throughout the kingdom of Ahasuerus, to utterly destroy the race of the Jews on the first day of the twelfth month, which is Adar, and to plunder their goods.3:13 +Note: +The part in brackets is not in +Hebrew [The following is the copy of the letter. “From the great King Ahasuerus to the rulers and the governors under them of one hundred twenty-seven provinces, from India even to Ethiopia, who hold authority under him: +

+

“Ruling over many nations and having obtained dominion over the whole world, I was determined (not elated by the confidence of power, but ever conducting myself with great moderation and gentleness) to make the lives of my subjects continually tranquil, desiring both to maintain the kingdom quiet and orderly to its utmost limits, and to restore the peace desired by all men. When I had asked my counselors how this should be brought to pass, Haman, who excels in soundness of judgment among us, and has been manifestly well inclined without wavering and with unshaken fidelity, and had obtained the second post in the kingdom, informed us that a certain ill-disposed people is scattered among all the tribes throughout the world, opposed in their law to every other nation, and continually neglecting the commands of the king, so that the united government blamelessly administered by us is not quietly established. Having then conceived that this nation is continually set in opposition to every man, introducing as a change a foreign code of laws, and injuriously plotting to accomplish the worst of evils against our interests, and against the happy establishment of the monarchy, we instruct you in the letter written by Haman, who is set over the public affairs and is our second governor, to destroy them all utterly with their wives and children by the swords of the enemies, without pitying or sparing any, on the fourteenth day of the twelfth month Adar, of the present year; that the people aforetime and now ill-disposed to us having been violently consigned to death in one day, may hereafter secure to us continually a well constituted and quiet state of affairs.”] + +Copies of the letters were published in every province; and an order was given to all the nations to be ready for that day. + +This business was hastened also in Susa. The king and Haman began to drink, but the city was confused. + +

+ + +

But Mordecai, having perceived what was done, tore his garments, put on sackcloth, and sprinkled dust upon himself. Having rushed forth through the open street of the city, he cried with a loud voice, “A nation that has done no wrong is going to be destroyed!” + +He came to the king’s gate, and stood; for it was not lawful for him to enter into the palace wearing sackcloth and ashes. + +And in every province where the letters were published, there was crying, lamentation, and great mourning on the part of the Jews. They wore sackcloth and ashes. + +The queen’s maids and chamberlains went in and told her; and when she had heard what was done, she was deeply troubled. She sent clothes to Mordecai to replace his sackcloth, but he refused. + +So Esther called for her chamberlain Hathach, who waited upon her; and she sent to learn the truth from Mordecai. + +Mordecai showed him what was done, and the promise which Haman had made the king of ten thousand talents to be paid into the treasury, that he might destroy the Jews. + +And he gave him the copy of what was published in Susa concerning their destruction to show to Esther; and told him to charge her to go in and entreat the king, and to beg him for the people. “Remember, he said, the days of your humble condition, how you were nursed by my hand; because Haman, who holds the next place to the king, has spoken against us to cause our death. Call upon the Lord, and speak to the king concerning us, to deliver us from death.” + +

+

So Hathach went in and told her all these words. + +Esther said to Hathach, “Go to Mordecai, and say, + +‘All the nations of the empire know that any man or woman who goes in to the king into the inner court without being called, that person must die, unless the king stretches out his golden sceptre; then he shall live. I haven’t been called to go into the king for thirty days.’” + +

+

So Hathach reported to Mordecai all the words of Esther. + +Then Mordecai said to Hathach, “Go, and say to her, ‘Esther, don’t say to yourself that you alone will escape in the kingdom, more than all the other Jews. + +For if you keep quiet on this occasion, help and protection will come to the Jews from another place; but you and your father’s house will perish. Who knows if you have been made queen for this occasion?’” + +

+

And Esther sent the messenger who came to her to Mordecai, saying, + +“Go and assemble the Jews that are in Susa, and all of you fast for me. Don’t eat or drink for three days, night and day. My maidens and I will also fast. Then I will go in to the king contrary to the law, even if I must die.” + +

+

So Mordecai went and did all that Esther commanded him.4:17 +Note: The part between brackets, +i.e. +to the end of chapter 5 is not in the Hebrew + + +[He prayed to the Lord, making mention of all the works of the Lord. + +He said, “Lord God, you are king ruling over all, for all things are in your power, and there is no one who can oppose you in your purpose to save Israel; + +for you have made the sky and the earth and every wonderful thing under the sky. + +You are Lord of all, and there is no one who can resist you, Lord. + +You know all things. You know, Lord, that it is not in insolence, nor arrogance, nor love of glory, that I have done this, to refuse to bow down to the arrogant Haman. + +For I would gladly have kissed the soles of his feet for the safety of Israel. + +But I have done this that I might not set the glory of man above the glory of God. I will not worship anyone except you, my Lord, and I will not do these things in arrogance. + +And now, O Lord God, the King, the God of Abraham, spare your people, for our enemies are planning our destruction, and they have desired to destroy your ancient inheritance. + +Do not overlook your people, whom you have redeemed for yourself out of the land of Egypt. + +Listen to my prayer. Have mercy on your inheritance and turn our mourning into gladness, that we may live and sing praise to your name, O Lord. Don’t utterly destroy the mouth of those who praise you, O Lord.” + +

+

All Israel cried with all their might, for death was before their eyes. + +And queen Esther took refuge in the Lord, being taken as it were in the agony of death. + +Having taken off her glorious apparel, she put on garments of distress and mourning. Instead of grand perfumes she filled her head with ashes and dung. She greatly humbled her body, and she filled every place of her glad adorning with her tangled hair. + +She implored the Lord God of Israel, and said, “O my Lord, you alone are our king. Help me. I am destitute, and have no helper but you, + +for my danger is near at hand4:32 +Greek +in my hand. +. + +I have heard from my birth in the tribe of my kindred that you, Lord, took Israel out of all the nations, and our fathers out of all their kindred for a perpetual inheritance, and have done for them all that you have said. + +And now we have sinned before you, and you have delivered us into the hands of our enemies, + +because we honored their gods. You are righteous, O Lord. + +But now they have not been content with the bitterness of our slavery, but have laid their hands on the hands of their idols + +to abolish the decree of your mouth, and utterly to destroy your inheritance, and to stop the mouth of those who praise you, and to extinguish the glory of your house and your altar, + +and to open the mouth of the Gentiles to speak the4:38 +Greek +virtues. + praises of vanities, and that a mortal king should be admired forever. + +O Lord, don’t surrender your sceptre to those who don’t exist, and don’t let them laugh at our fall, but turn their counsel against themselves, and make an example of him who has begun to injure us. + +Remember us, O Lord! Manifest yourself in the time of our affliction. Encourage me, O King of gods, and ruler of all dominion! + +Put harmonious speech into my mouth before the lion, and turn his heart to hate him who fights against us, to the utter destruction of those who agree with him. + +But deliver us by your hand, and help me who am alone and have no one but you, O Lord. + +You know all things, and know that I hate the glory of transgressors,4:43 +Or, +opinion. + and that I abhor the bed of the uncircumcised and of every stranger. + +You know my necessity, for I abhor the symbol of my proud station, which is upon my head in the days of my4:44 +Greek +vision. splendor. I abhor it as a menstruous cloth, and I don’t wear it in the days of my tranquility. + +Your handmaid has not eaten at Haman’s table, and I have not honored the banquet of the king, neither have I drunk wine of libations. + +Neither has your handmaid rejoiced since the day of my promotion until now, except in you, O Lord God of Abraham. + +O god, who has power over all, listen to the voice of the desperate, and deliver us from the hand of those who devise mischief. Deliver me from my fear.] + +

+ + +

5:1 +From the first verse to the third, the +Greek widely differs from the +Hebrew +It came to pass on the third day, when she had ceased praying, that she took off her servant’s dress and put on her glorious apparel. Being splendidly dressed and having called upon God the Overseer and Preserver of all things, she took her two maids, and she leaned upon one, as a delicate female, and the other followed bearing her train. She was blooming in the perfection of her beauty. Her face was cheerful and looked lovely, but her heart was filled with fear. Having passed through all the doors, she stood before the king. He was sitting on his royal throne. He had put on all his glorious apparel, covered all over with gold and precious stones, and was very terrifying. And having raised his face resplendent with glory, he looked with intense anger. The queen fell, and changed her color as she fainted. She bowed herself upon the head of the maid who went before her. But God changed the spirit of the king to gentleness, and in intense feeling, he sprang from off his throne, and took her into his arms, until she recovered. He comforted her with peaceful words, and said to her, “What is the matter, Esther? I am your relative. Cheer up! You shall not die, for our command is openly declared to you: ‘Draw near.’” + +

+

And having raised the golden sceptre, he laid it upon her neck, and embraced her. He said, “Speak to me.” +

+

So she said to him, “I saw you, my lord, as an angel of God, and my heart was troubled for fear of your glory; for you, my lord, are to be wondered at, and your face is full of grace.” While she was speaking, she fainted and fell. +

+

Then the king was troubled, and all his servants comforted her. + +The king said, “What do you desire, Esther? What is your request? Ask even to the half of my kingdom, and it shall be yours.” + +

+

Esther said, “Today is a special day. So if it seems good to the king, let both him and Haman come to the feast which I will prepare this day.” + +

+

The king said, “Hurry and bring Haman here, that we may do as Esther said.” So they both came to the feast about which Esther had spoken. + +At the banquet, the king said to Esther, “What is your request, queen Esther? You shall have all that you require.” + +

+

She said, “My request and my petition is: + +if I have found favor in the king’s sight, let the king and Haman come again tomorrow to the feast which I shall prepare for them, and tomorrow I will do as I have done today.” + +

+

So Haman went out from the king very glad and merry; but when Haman saw Mordecai the Jew in the court, he was greatly enraged. + +Having gone into his own house, he called his friends, and his wife Zeresh. + +He showed them his wealth and the glory with which the king had invested him, and how he had promoted him to be chief ruler in the kingdom. + +Haman said, “The queen has called no one to the feast with the king but me, and I am invited tomorrow. + +But these things don’t please me while I see Mordecai the Jew in the court. + +

+

Then Zeresh his wife and his friends said to him, “Let a fifty cubit tall5:14 +Greek +a tree cut. + gallows be made for you. In the morning you speak to the king, and let Mordecai be hanged on the gallows; but you go in to the feast with the king, and be merry.” +

+

The saying pleased Haman, and the gallows was prepared. + +

+ + +

The Lord removed sleep from the king that night; so he told his servant to bring in the6:1 +Greek +letters. + books, the registers of daily events, to read to him. + +And he found the6:2 +Greek +letters. + records written concerning Mordecai, how he had told the king about the king’s two chamberlains, when they were keeping guard, and sought to lay hands on Ahasuerus. + +The king said, “What honor or favor have we done for Mordecai?” +

+

The king’s servants said, “You haven’t done anything for him.” + +

+

And while the king was enquiring about the kindness of Mordecai, behold, Haman was in the court. The king said, “Who is in the court? Now Haman had come in to speak to the king about hanging Mordecai on the gallows which he had prepared. + +The king’s servants said, “Behold, Haman stands in the court.” +

+

And the king said, “Call him!” + +

+

The king said to Haman, “What should I do for the man whom I wish to honor?” +

+

Haman said within himself, “Whom would the king honor but myself?” + +He said to the king, “As for the man whom the king wishes to honor, + +let the king’s servants bring the robe of fine linen which the king puts on, and the horse on which the king rides, + +and let him give it to one of the king’s noble friends, and let him dress the man whom the king loves. Let him mount him on the horse, and proclaim through the6:9 +Or, +wide space. + streets of the city, saying, “This is what will be done for every man whom the king honors!” + +

+

Then the king said to Haman, “You have spoken well. Do so for Mordecai the Jew, who waits in the palace, and let not a word of what you have spoken be neglected!” + +

+

So Haman took the robe and the horse, dressed Mordecai, mounted him on the horse, and went through the streets of the city, proclaiming, “This is what will be done for every man whom the king wishes to honor.” + +Then Mordecai returned to the palace; but Haman went home mourning, with his head covered. + +

+

Haman related the events that had happened to him to Zeresh his wife and to his friends. His friends and his wife said to him, “If Mordecai is of the race of the Jews, and you have begun to be humbled before him, you will assuredly fall; and you will not be able to withstand him, for the living God is with him.” + +While they were still speaking, the chamberlains arrived to rush Haman to the banquet which Esther had prepared. + +

+ + +

So the king and Haman went in to drink with the queen. + +The king said to Esther at the banquet on the second day, “What is it, queen Esther? What is your request? What is your petition? It shall be done for you, up to half of my kingdom.” + +

+

She answered and said, “If I have found favor in the sight of the king, let my life be granted as my petition, and my people as my request. + +For both I and my people are sold for destruction, pillage, and genocide. If both we and our children were sold for male and female slaves, I would not have bothered you, for this7:4 +see +Hebrew: slanderer + isn’t worthy of the king’s palace.” + +

+

The king said, “Who has dared to do this thing?” + +

+

Esther said, “The enemy is Haman, this wicked man!” +

+

Then Haman was terrified in the presence of the king and the queen. + +The king rose up from the banquet to go into the garden. Haman began to beg the queen for mercy, for he saw that he was in serious trouble. + +The king returned from the garden; and Haman had fallen upon the couch, begging the queen for mercy. The king said, “Will you even assault my wife in my house?” +

+

And when Haman heard it, he changed countenance. + +And Bugathan, one of the chamberlains, said to the king, “Behold, Haman has also prepared a gallows for Mordecai, who spoke concerning the king, and a fifty cubit high gallows has been set up on Haman’s property.” +

+

The king said, “Let him be7:9 +Or, +impaled. + hanged on it!” + +So Haman was hanged on the gallows that had been prepared for Mordecai. Then the king’s wrath was abated. + +

+ + +

On that day, King Ahasuerus gave to Esther all that belonged to Haman the slanderer. The king called Mordecai, for Esther had told that he was related to her. + +The king took the ring which he had taken away from Haman and gave it to Mordecai. Esther appointed Mordecai over all that had been Haman’s. + +She spoke yet again to the king, and fell at his feet, and implored him to undo Haman’s mischief and all that he had done against the Jews. + +Then the king extended the golden sceptre to Esther; and Esther arose to stand near the king. + +Esther said, “If it seems good to you, and I have found favor in your sight, let an order be sent that the letters sent by Haman may be reversed—letters that were written for the destruction of the Jews who are in your kingdom. + +For how could I see the affliction of my people, and how could I survive the destruction of my8:6 +Greek +country. + kindred?” + +

+

Then the king said to Esther, “If I have given and freely granted you all that was Haman’s, and hanged him on a gallows because he laid his hands upon the Jews, what more do you seek? + +Write in my name whatever seems good to you, and seal it with my ring; for whatever is written at the command of the king, and sealed with my ring, cannot be countermanded. + +So the scribes were called in the first month, which is Nisan, on the twenty-third day of the same year; and orders were written to the Jews, whatever the king had commanded to the8:9 +Greek +stewards. local governors and chiefs of the local governors, from India even to Ethiopia—one hundred twenty-seven local governors, according to the several provinces, in their own languages. + +They were written by order of the king, sealed with his ring, and the letters were sent by the couriers. + +In them, he charged them to use their own laws in every city, to help each other, and to treat their adversaries and those who attacked them as they pleased, + +on one day in all the kingdom of Ahasuerus, on the thirteenth day of the twelfth month, which is Adar. + +The following is a copy of the letter containing orders: +

+

8:13 +the passages in brackets are not in the +Hebrew. +[The great King Ahasuerus sends greetings to the rulers of provinces in one hundred twenty-seven local governance regions, from India to Ethiopia, even to those who are faithful to our interests. Many who have been frequently honored by the most abundant kindness of their8:13 +perhaps rulers, see Luke 22. 25. + benefactors have conceived ambitious designs, and not only endeavor to hurt our subjects, but moreover, not being able to bear prosperity, they also endeavor to plot against their own benefactors. They not only would utterly abolish gratitude from among men, but also, elated by the boastings of men who are strangers to all that is good, they supposed that they would escape the sin-hating vengeance of the ever-seeing God. And oftentimes evil exhortation has made partakers of the guilt of shedding innocent blood, and has involved in irremediable calamities many of those who had been appointed to offices of authority, who had been entrusted with the management of their friends’ affairs; while men, by the false sophistry of an evil disposition, have deceived the simple goodwill of the ruling powers. And it is possible to see this, not so much from more ancient traditional accounts, as it is immediately in your power to see it by examining what things have been wickedly8:13 +Greek +contrived. + perpetrated by the baseness of men unworthily holding power. It is right to take heed with regard to the future, that we may maintain the government in undisturbed peace for all men, adopting needful changes, and ever judging those cases which come under our notice with truly equitable decisions. For whereas Haman, a Macedonian, the son of Hammedatha, in reality an alien from the blood of the Persians, and differing widely from our mild course of government, having been hospitably entertained by us, obtained so large a share of our universal kindness as to be called our father, and to continue the person next to the royal throne, reverenced of all; he however, overcome by8:13 +Greek +not having borne. pride, endeavored to deprive us of our dominion, and our life;8:13 +Greek +spirit. + having by various and subtle artifices demanded for destruction both Mordecai our deliverer and perpetual benefactor, and Esther the blameless consort of our kingdom, along with their whole nation. For by these methods he thought, having surprised us in a defenseless state, to transfer the dominion of the Persians to the Macedonians. But we find that the Jews, who have been consigned to destruction by the8:13 +Greek +thrice guilty. + most abominable of men, are not malefactors, but living according to the most just laws, and being the sons of the living God, the most high and8:13 +Greek +greatest. + mighty, who maintains the kingdom, to us as well as to our forefathers, in the most excellent order. You will therefore do well in refusing to obey the letter sent by Haman the son of Hammedatha, because he who has done these things has been hanged with his whole family at the gates of Susa, Almighty God having swiftly returned to him a worthy punishment. We enjoin you then, having openly published a copy of this letter in every place, to give the Jews permission to use their own lawful customs and to strengthen them, that on the thirteenth of the twelfth month Adar, on the self-same day, they may defend themselves against those who attack them in a time of affliction. For in the place of the destruction of the chosen race, Almighty God has granted them this time of gladness. Therefore you also, among your notable feasts, must keep a distinct day with all festivity, that both now and hereafter it may be a day of deliverance to us and who are well disposed toward the Persians, but to those that plotted against us a memorial of destruction. And every city and province collectively, which shall not do accordingly, shall be consumed with vengeance by spear and fire. It shall be made not only inaccessible to men, but most hateful to wild beasts and birds forever.] Let the copies be posted in conspicuous places throughout the kingdom. Let all the Jews be ready against this day, to fight against their enemies. + +So the horsemen went forth with haste to perform the king’s commands. The ordinance was also published in Susa. + +

+

Mordecai went out robed in royal apparel, wearing a golden crown and a diadem of fine purple linen. The people in Susa saw it and rejoiced. + +The Jews had light and gladness + +in every city and province where the ordinance was published. Wherever the proclamation took place, the Jews had joy and gladness, feasting and mirth. Many of the Gentiles were circumcised and became Jews for fear of the Jews. + +

+ + +

Now in the twelfth month, on the thirteenth day of the month, which is Adar, the letters written by the king arrived. + +In that day, the adversaries of the Jews perished; for no one resisted, through fear of them. + +For the chiefs of the local governors, and the princes and the royal scribes, honored the Jews; for the fear of Mordecai was upon them. + +For the order of the king was in force, that he should be celebrated in all the kingdom. + +In the city Susa the Jews killed five hundred men, + +including Pharsannes, Delphon, Phasga, + +Pharadatha, Barea, Sarbaca, + +Marmasima, Ruphaeus, Arsaeus, and Zabuthaeus, + +the ten sons of Haman the son of Hammedatha the Bugaean, the enemy of the Jews; and they plundered their property on the same day. + +The number of those who perished in Susa was reported to the king. + +

+

Then the king said to Esther, “The Jews have slain five hundred men in the city Susa. What do you think they have done in the rest of the country? What more do you ask, that it may be done for you?” + +

+

Esther said to the king, “Let it be granted to the Jews to do the same to them tomorrow. Also, hang the bodies of the ten sons of Haman.” + +

+

He permitted it to be done; and he gave up to the Jews of the city the bodies of the sons of Haman to hang. + +The Jews assembled in Susa on the fourteenth day of Adar and killed three hundred men, but plundered no property. + +

+

The rest of the Jews who were in the kingdom assembled, and helped one another, and obtained rest from their enemies; for they destroyed fifteen thousand of them on the thirteenth day of Adar, but took no spoil. + +They rested on the fourteenth of the same month, and kept it as a day of rest with joy and gladness. + +

+

The Jews in the city of Susa assembled also on the fourteenth day and rested; and they also observed the fifteenth with joy and gladness. + +On this account then, the Jews dispersed in every foreign land keep the fourteenth of Adar as a9:19 +Greek +good day. + holy day with joy, each sending gifts of food to his neighbor. + +

+

Mordecai wrote these things in a book and sent them to the Jews, as many as were in the kingdom of Ahasuerus, both those who were near and those who were far away, + +to establish these as joyful days and to keep the fourteenth and fifteenth of Adar; + +for on these days the Jews obtained rest from their enemies; and in that month, which was Adar, in which a change was made for them from mourning to joy, and from sorrow to a holiday, to spend the whole of it in good days of9:22 +Greek +weddings. + feasting and gladness, sending portions to their friends and to the poor. + +And the Jews consented to this as Mordecai wrote to them, + +showing how Haman the son of Hammedatha the Macedonian fought against them, how he made a decree and cast9:24 +Greek +lot. + lots to destroy them utterly; + +also how he went in to the king, telling him to hang Mordecai; but all the calamities he tried to bring upon the Jews came upon himself, and he was hanged, along with his children. + +Therefore these days were called Purim, because of the lots (for in their language they are called Purim) because of the words of this letter, and because of all they suffered on this account, and all that happened to them. + +Mordecai established it, and the Jews took upon themselves, upon their offspring, and upon those who were joined to them to observe it, neither would they on any account behave differently; but these days were to be a memorial kept in every generation, city, family, and province. + +These days of Purim shall be kept forever, and their memorial shall not fail in any generation. + +

+

Queen Esther the daughter of Aminadab and Mordecai the Jew wrote all that they had done, and gave the confirmation of the letter about Purim. + +Mordecai and Esther the queen established this decision on their own, pledging their own well-being to their plan. + +And Esther established it by a command forever, and it was written for a memorial. + +

+ + +

The king levied a tax upon his kingdom both by land and sea. + +As for his strength and valour, and the wealth and glory of his kingdom, behold, they are written in the book of the Persians and Medes for a memorial. + +

+

Mordecai10:3 +Greek +succeded to +Or, came into the place of. + was viceroy to King Ahasuerus, and was a great man in the kingdom, honored by the Jews, and lived his life loved by all his nation.10:3 +the passages in brackets are not in the +Hebrew. + + +[Mordecai said, “These things have come from God. + +For I remember the dream which I had concerning these matters; for not one detail of them has failed. + +There was the little spring which became a river, and there was light, and the sun and much water. The river is Esther, whom the king married and made queen. + +The two serpents are Haman and me. + +The nations are those which combined to destroy the name of the Jews. + +But as for my nation, this is Israel, even those who cried to God and were delivered; for the Lord delivered his people. The Lord rescued us out of all these calamities; and God worked such signs and great wonders as have not been done among the nations. + +Therefore he ordained two lots. One for the people of God, and one for all the other nations. + +And these two lots came for an appointed season, and for a day of judgment, before God, and for all the nations. + +God remembered his people and vindicated his inheritance. + +They shall observe these days in the month Adar, on the fourteenth and on the fifteenth day of the month, with an assembly, joy, and gladness before God, throughout the generations forever among his people Israel. + +In the fourth year of the reign of Ptolemeus and Cleopatra, Dositheus, who said he was a priest and Levite, and Ptolemeus his son brought this letter of Purim, which they said was authentic, and that Lysimachus the son of Ptolemeus, who was in Jerusalem, had interpreted.] + +

+
+- The Wisdom Of Solomon +Wisdom of Solomon +The Wisdom of Solomon +Wisdom +Wis +

The Wisdom of Solomon +

+

The +Wisdom of Solomon is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +

+ + +Love righteousness, all you who are judges of the earth. + +Think of the Lord1:1 +Gr. +in goodness. + with a good mind. + +Seek him in singleness of heart, + + +because he is found by those who don’t put him to the test, + +and is manifested to those who trust him. + + +for crooked thoughts separate from God. + +His Power convicts when it is tested, + +and exposes the foolish; + + +because wisdom will not enter into a soul that devises evil, + +nor dwell in a body that is enslaved by sin. + + +For a holy spirit of discipline will flee deceit, + +and will depart from thoughts that are without understanding, + +and will be ashamed when unrighteousness has come in. + + + +For1:6 +Some authorities read +the spirit of wisdom is loving to man. + wisdom is a spirit who loves man, + +and she will not hold a1:6 +Or, +reviler + blasphemer guiltless for his lips, + +because God is witness of his inmost self, + +and is a true overseer of his heart, + +and a hearer of his tongue. + + +Because the spirit of the Lord has filled1:7 +Gr. +the inhabited earth. + the world, + +and that which holds all things together knows what is said. + + +Therefore no one who utters unrighteous things will be unseen; + +neither will Justice, when it convicts, pass him by. + + +For in his counsels the ungodly will be searched out, + +and the sound of his words will come to the Lord to bring his lawless deeds to conviction; + + +because a jealous ear listens to all things, + +and the noise of murmurings is not hidden. + + +Beware then of unprofitable murmuring, + +and keep your tongue from slander; + +because no secret utterance will go on its way void, + +and a lying mouth destroys a soul. + + +Don’t court death in the error of your life. + +Don’t draw destruction upon yourselves by the works of your hands; + + +because God didn’t make death, + +neither does he delight when the living perish. + + +For he created all things that they might have being. + +The generative powers of the world are wholesome, + +and there is no poison of destruction in them, + +nor has Hades1:14 +Or, +a royal house + royal dominion upon earth; + + +for righteousness is immortal, + + +but ungodly men by their hands and their words summon death; + +deeming him a friend they1:16 +Or, +were consumed +with love of him + pined away. + +They made a covenant with him, + +because they are worthy to belong with him. + + + + + +For they said2:1 +Or, +among + within themselves, with unsound reasoning, + +“Our life is short and sorrowful. + +There is no healing when a man comes to his end, + +and no one was ever known who2:1 +Or, +returned out of Hades + was released from Hades. + + +Because we were born by mere chance, + +and hereafter we will be as though we had never been, + +because the breath in our nostrils is smoke, + +and reason is a spark kindled by the beating of our heart, + + +which being extinguished, the body will be turned into ashes, + +and the spirit will be dispersed as thin air. + + +Our name will be forgotten in time. + +No one will remember our works. + +Our life will pass away as the traces of a cloud, + +and will be scattered as is a mist, + +when it is chased by the rays of the sun, + +and2:4 +Gr. +weighed down. + overcome by its heat. + + +For our allotted time is the passing of a shadow, + +and our end doesn’t retreat, + +because it is securely sealed, and no one2:5 +Or, +comes again + turns it back. + + + +“Come therefore and let’s enjoy the good things that exist. + +Let’s use the creation earnestly as in our youth. + + +Let’s fill ourselves with costly wine and perfumes, + +and let no spring flower pass us by. + + +Let’s crown ourselves with rosebuds before they wither. + + +Let none of us go without his share in our proud revelry. + +Let’s leave tokens of mirth everywhere, + +because this is our portion, and this is our lot. + + +Let’s oppress the righteous poor. + +Let’s not spare the widow, + +nor regard the gray hair of the old man. + + +But let our strength be a law of righteousness; + +for that which is weak is proven useless. + + +But let’s lie in wait for the righteous man, + +because he annoys us, + +is contrary to our works, + +reproaches us with sins against the law, + +and charges us with sins against our training. + + +He professes to have knowledge of God, + +and calls himself a child of the Lord. + + +He became to us a reproof of our thoughts. + + +He is grievous to us even to look at, + +because his life is unlike other men’s, + +and his paths are strange. + + +We were regarded by him as something worthless, + +and he abstains from our ways as from uncleanness. + +He calls the latter end of the righteous happy. + +He boasts that God is his father. + + +Let’s see if his words are true. + +Let’s test what will happen at the end of his life. + + +For if the righteous man is God’s son, he will uphold him, + +and he will deliver him out of the hand of his adversaries. + + +Let’s test him with insult and torture, + +that we may find out how gentle he is, + +and test his patience. + + +Let’s condemn him to a shameful death, + +for he will be protected, according to his words.” + + + +Thus they reasoned, and they were led astray; + +for their wickedness blinded them, + + +and they didn’t know the mysteries of God, + +neither did they hope for wages of holiness, + +nor did they discern that there is a prize for blameless souls. + + +Because God created man for incorruption, + +and made him an image of his own everlastingness; + + +but death entered into the world by the envy of the devil, + +and those who belong to him experience it. + + + + +But the souls of the righteous are in the hand of God, + +and no torment will touch them. + + +In the eyes of the foolish they seemed to have died. + +Their departure was considered a disaster, + + +and their travel away from us ruin, + +but they are in peace. + + +For even if in the sight of men they are punished, + +their hope is full of immortality. + + +Having borne a little chastening, they will receive great good; + +because God tested them, and found them worthy of himself. + + +He tested them like gold in the furnace, + +and he accepted them as a whole burnt offering. + + +In the time of their visitation they will shine. + +They will run back and forth like sparks among stubble. + + +They will judge nations and have dominion over peoples. + +The Lord will reign over them forever. + + +Those who trust him will understand truth. + +The faithful will live with him in love, + +because grace and mercy are with his chosen ones. + + + +But the ungodly will be punished even as their reasoning deserves, + +those who neglected righteousness and revolted from the Lord; + + +for he who despises wisdom and discipline is miserable. + +Their hope is void and their toils unprofitable. + +Their works are useless. + + +Their wives are foolish and their children are wicked. + + +Their descendants are cursed. + +For the barren woman who is undefiled is happy, + +she who has not conceived in transgression. + +She will have fruit when God examines souls. + + +So is the eunuch which has done no lawless deed with his hands, + +nor imagined wicked things against the Lord; + +for a precious gift will be given to him for his faithfulness, + +and a delightful inheritance in the Lord’s sanctuary. + + +For good labors have fruit of great renown. + +The root of understanding can’t fail. + + +But children of adulterers will not come to maturity. + +The seed of an unlawful union will vanish away. + + +For if they live long, they will not be esteemed, + +and in the end, their old age will be without honor. + + +If they die young, they will have no hope, + +nor consolation in the day of judgment. + + +For the end of an unrighteous generation is always grievous. + + + + +It is better to be childless with virtue, + +for immortality is in the memory of virtue, + +because it is recognized both before God and before men. + + +When it is present, people imitate it. + +They long after it when it has departed. + +Throughout all time it marches, crowned in triumph, + +victorious in the competition for the prizes that are undefiled. + + +But the multiplying brood of the ungodly will be of no profit, + +and their illegitimate offshoots won’t take deep root, + +nor will they establish a sure hold. + + +For even if they grow branches and flourish for a season, + +standing unsure, they will be shaken by the wind. + +They will be uprooted by the violence of winds. + + +Their branches will be broken off before they come to maturity. + +Their fruit will be useless, + +never ripe to eat, and fit for nothing. + + +For unlawfully conceived children are witnesses of wickedness + +against parents when they are investigated. + + + +But a righteous man, even if he dies before his time, will be at rest. + + +For honorable old age is not that which stands in length of time, + +nor is its measure given by number of years, + + +but understanding is gray hair to men, + +and an unspotted life is ripe old age. + + + +Being found well-pleasing to God, someone was loved. + +While living among sinners he was transported. + + +He was caught away, lest evil should change his understanding, + +or guile deceive his soul. + + +For the fascination of wickedness obscures the things which are good, + +and the whirl of desire perverts an innocent mind. + + +Being made perfect quickly, + +he filled a long time; + + +for his soul was pleasing to the Lord. + +Therefore he hurried out of the midst of wickedness. + + +But the peoples saw and didn’t understand, + +not considering this, that grace and mercy are with his chosen, + +and that he visits his holy ones; + + +but a righteous man who is dead will condemn the ungodly who are living, + +and youth who is quickly perfected will condemn the many years of an unrighteous man’s old age. + + +For the ungodly will see a wise man’s end, + +and won’t understand what the Lord planned for him, + +and why he safely kept him. + + +They will see, and they will despise; + +but the Lord will laugh them to scorn. + +After this, they will become a dishonored carcass + +and a reproach among the dead forever; + + +because he will dash them speechless to the ground, + +and will shake them from the foundations. + +They will lie utterly waste. + +They will be in anguish + +and their memory will perish. + + + +They will come with coward fear when their sins are counted. + +Their lawless deeds will convict them to their face. + + + + +Then the righteous man will stand in great boldness + +before the face of those who afflicted him, + +and those who make his labors of no account. + + +When they see him, they will be troubled with terrible fear, + +and will be amazed at the marvel of salvation. + + +They will speak among themselves repenting, + +and for distress of spirit they will groan, + +“This was he whom we used to hold in derision, + +as a parable of reproach. + + +We fools considered his life madness, + +and his end without honor. + + +How was he counted among sons of God? + +How is his lot among saints? + + +Truly we went astray from the way of truth. + +The light of righteousness didn’t shine for us. + +The sun didn’t rise for us. + + +We5:7 +See Proverbs 14:14. + took our fill of the paths of lawlessness and destruction. + +We traveled through trackless deserts, + +but we didn’t know the Lord’s way. + + +What did our arrogance profit us? + +What good have riches and boasting brought us? + + + +Those things all passed away as a shadow, + +like a rumor that runs by, + + +like a ship passing through the billowy water, + +which, when it has gone by, there is no trace to be found, + +no pathway of its keel in the waves. + + +Or it is like when a bird flies through the air, + +no evidence of its passage is found, + +but the light wind, lashed with the stroke of its pinions, + +and torn apart with the violent rush of the moving wings, is passed through. + +Afterwards no sign of its coming remains. + + +Or it is like when an arrow is shot at a mark, + +the air it divided closes up again immediately, + +so that men don’t know where it passed through. + + +So we also, as soon as we were born, ceased to be; + +and we had no sign of virtue to show, + +but we were utterly consumed in our wickedness.” + + +Because the hope of the ungodly man is like chaff carried by the wind, + +and5:14 +Gr. +like foam chased to thinness: +or, +as thin foam chased. + as5:14 +Most Greek authorities read +hoar frost: +some authorities, perhaps rightly, +a spider’s web. foam vanishing before a tempest; + +and is scattered like smoke by the wind, + +and passes by as the remembrance of a guest who stays just a day. + + + +But the righteous live forever. + +Their reward is in the Lord, + +and the care for them with the Most High. + + +Therefore they will receive the crown of royal dignity + +and the diadem of beauty from the Lord’s hand, + +because he will cover them with his right hand, + +and he will shield them with his arm. + + +He will take his zeal as complete armor, + +and will make the whole creation his weapons to punish his enemies: + + +He will put on righteousness as a breastplate, + +and will wear impartial judgment as a helmet. + + +He will take holiness as an invincible shield. + + +He will sharpen stern wrath for a sword. + +The universe will go with him to fight against his frenzied foes. + + +Shafts of lightning will fly with true aim. + +They will leap to the mark from the clouds, as from a well-drawn bow. + + +Hailstones full of wrath will be hurled as from a catapult. + +The water of the sea will be angered against them. + +Rivers will sternly overwhelm them. + + +A mighty wind will encounter them. + +It will winnow them away like a tempest. + +So lawlessness will make all the land desolate. + +Their evil-doing will overturn the thrones of princes. + + + + +Hear therefore, you kings, and understand. + +Learn, you judges of the ends of the earth. + + +Give ear, you rulers who have dominion over many people, + +and make your boast6:2 +Or, +in the multitudes of your nations + in multitudes of nations, + + +because your dominion was given to you from the Lord, + +and your sovereignty from the Most High. + +He will search out your works, + +and will inquire about your plans, + + +because being officers of his kingdom, you didn’t judge rightly, + +nor did you keep the law, + +nor did you walk according to God’s counsel. + + +He will come upon you awfully and swiftly, + +because a stern judgment comes on those who are in high places. + + +For the man of low estate may be pardoned in mercy, + +but mighty men will be mightily tested. + + +For the Sovereign Lord of all will not be impressed with anyone, + +neither will he show deference to greatness; + +because it is he who made both small and great, + +and cares about them all; + + +but the scrutiny that comes upon the powerful is strict. + + +Therefore, my words are to you, O princes, + +that you may learn wisdom and not fall away. + + +For those who have kept the things that are holy in holiness will be made holy. + +Those who have been taught them will find what to say in defense. + + +Therefore set your desire on my words. + +Long for them, and you princes will be instructed. + + + +Wisdom is radiant and doesn’t fade away; + +and is easily seen by those who love her, + +and found by those who seek her. + + +She anticipates those who desire her, making herself known. + + +He who rises up early to seek her won’t have difficulty, + +for he will find her sitting at his gates. + + +For to think upon her is perfection of understanding, + +and he who watches for her will quickly be free from care; + + +because she herself goes around, seeking those who are worthy of her, + +and in their paths she appears to them graciously, + +and in every purpose she meets them. + + +For her true beginning is desire for instruction; + +and desire for instruction is love. + + +And love is observance of her laws. + +To give heed to her laws confirms immortality. + + +Immortality brings closeness to God. + + +So then desire for wisdom promotes to a kingdom. + + + +If therefore you delight in thrones and sceptres, you princes of peoples, + +honor wisdom, that you may reign forever. + + +But what wisdom is, and how she came into being, I will declare. + +I won’t hide mysteries from you; + +but I will explore from her first beginning, + +bring the knowledge of her into clear light, + +and I will not pass by the truth. + + +Indeed, I won’t travel with consuming envy, + +because envy will have no fellowship with wisdom. + + +But a multitude of wise men is salvation to the world, + +and an understanding king is stability for his people. + + +Therefore be instructed by my words, and you will profit. + + + + +I myself am also7:1 +Many authorities read +a mortal man. mortal, like everyone else, + +and am a descendant of one formed first and born of the earth. + + +I molded into flesh in the time of ten months in my mother’s womb, + +being compacted in blood from the seed of man and pleasure of marriage. + + +I also, when I was born, drew in the common air, + +and fell upon the kindred earth, + +uttering, like all, for my first voice, the same cry. + + +I was nursed with care in swaddling clothes. + + +For no king had a different beginning, + + +but all men have one entrance into life, and a common departure. + + + +For this cause I prayed, and understanding was given to me. + +I asked, and a spirit of wisdom came to me. + + +I preferred her before sceptres and thrones. + +I considered riches nothing in comparison to her. + + +Neither did I liken to her any priceless gem, + +because all gold in her presence is a little sand, + +and silver will be considered as clay before her. + + +I loved her more than health and beauty, + +and I chose to have her rather than light, + +because her bright shining is never laid to sleep. + + +All good things came to me with her, + +and innumerable riches are in her hands. + + +And I rejoiced over them all because wisdom leads them; + +although I didn’t know that she was their mother. + + +As I learned without guile, I impart without grudging. + +I don’t hide her riches. + + +For she is a treasure for men that doesn’t fail, + +and those who use it obtain friendship with God, + +commended by the gifts which they present through discipline. + + + +But may God grant that I may speak his judgment, + +and to conceive thoughts worthy of what has been given me; + +because he is one who guides even wisdom and who corrects the wise. + + +For both we and our words are in his hand, + +with all understanding and skill in various crafts. + + +For he himself gave me an unerring knowledge of the things that are, + +to know the structure of the universe and the operation of the elements; + + +the beginning, end, and middle of times; + +the alternations of the solstices and the changes of seasons; + + +the circuits of years and the positions of stars; + + +the natures of living creatures and the raging of wild beasts; + +the violence of7:20 +Or, +spirits + winds and the thoughts of men; + +the diversities of plants and the virtues of roots. + + +All things that are either secret or manifest I learned, + + +for wisdom, that is the architect of all things, taught me. + + +For there is in her a spirit that is quick to understand, holy, + +unique, manifold, subtle, freely moving, clear in utterance, unpolluted, + +distinct, invulnerable, loving what is good, keen, unhindered, + + +beneficent, loving toward man, steadfast, sure, free from care, all-powerful, all-surveying, + +and penetrating through all spirits that are quick to understand, pure, most subtle. + + +For wisdom is more mobile than any motion. + +Yes, she pervades and penetrates all things by reason of her purity. + + +For she is a breath of the power of God, + +and a pure emanation of the glory of the Almighty. + +Therefore nothing defiled can find entrance into her. + + +For she is a reflection of everlasting light, + +an unspotted mirror of the working of God, + +and an image of his goodness. + + +Although she is one, she has power to do all things. + +Remaining in herself, she renews all things. + +From generation to generation passing into holy souls, + +she makes friends of God and prophets. + + +For God loves nothing as much as one who dwells with wisdom. + + +For she is fairer than the sun, + +and above all the constellations of the stars. + +She is better than light. + + +For daylight yields to night, + +but evil does not prevail against wisdom. + + + + +But she reaches from one end to the other with full strength, + +and orders all things well. + + + +I loved her and sought her from my youth. + +I sought to take her for my bride. + +I became enamoured by her beauty. + + +She glorifies her noble birth by living with God. + +The Sovereign Lord of all loves her. + + +For she is initiated into the knowledge of God, + +and she chooses his works. + + +But if riches are a desired possession in life, + +what is richer than wisdom, which makes all things? + + +And if understanding is effective, + +who more than8:6 +Gr. +she. + wisdom is an architect of the things that exist? + + +If a man loves righteousness, + +the fruits of wisdom’s labor8:7 +Gr. +her labors are virtues, + +for she teaches soberness, understanding, righteousness, and courage. + +There is nothing in life more profitable for people than these. + + +And if anyone longs for wide experience, + +she knows the things of old, and infers the things to come. + +She understands subtleties of speeches and interpretations of dark sayings. + +She foresees signs and wonders, and the issues of seasons and times. + + + +Therefore I determined to take her to live with me, + +knowing that she is one who would give me good counsel, + +and encourage me in cares and grief. + + +Because of her, I will have glory among multitudes, + +and honor in the sight of elders, though I am young. + + +I will be found keen when I give judgment. + +I will be admired in the presence of rulers. + + +When I am silent, they will wait for me. + +When I open my lips, they will heed what I say. + +If I continue speaking, they will put their hands on their mouths. + + +Because of her, I will have immortality, + +and leave behind an eternal memory to those who come after me. + + +I will govern peoples. + +Nations will be subjected to me. + + +Dreaded monarchs will fear me when they hear of me. + +Among the people, I will show myself to be good, and courageous in war. + + +When I come into my house, I will find rest with her. + +For conversation with her has no bitterness, + +and living with her has no pain, but gladness and joy. + + +When I considered these things in myself, + +and thought in my heart how immortality is in kinship to wisdom, + + +and in her friendship is good delight, + +and in the labors of her hands is wealth that doesn’t fail, + +and understanding is in her companionship, + +and great renown in having fellowship with her words, + +I went about seeking how to take her to myself. + + +Now I was a clever child, and received a good soul. + + +Or rather, being good, I came into an undefiled body. + + +But perceiving that I could not otherwise possess wisdom unless God gave her to me— + +yes, and to know and understand by whom the grace is given— + +I pleaded with the Lord and implored him, and with my whole heart I said: + + + + +“O God of my ancestors and Lord of mercy, + +who made all things by your word; + + +and by your wisdom you formed man, + +that he should have dominion over the creatures that were made by you, + + +and rule the world in holiness and righteousness, + +and execute judgment in uprightness of soul, + + +give me wisdom, her who sits by you on your thrones. + +Don’t reject me from among your9:4 +Or, +children + servants, + + +because I am your servant and the son of your handmaid, + +a weak and short-lived man, + +with little power to understand judgment and laws. + + +For even if a man is perfect among the sons of men, + +if the wisdom that comes from you is not with him, he will count for nothing. + + +You chose me to be king of your people, + +and a judge for your sons and daughters. + + +You gave a command to build a sanctuary on your holy mountain, + +and9:8 +Or, +a place of sacrifice + an altar in the city where you live, + +a copy of the holy tent which you prepared from the beginning. + + +Wisdom is with you and knows your works, + +and was present when you were making the world, + +and understands what is pleasing in your eyes, + +and what is right according to your commandments. + + +Send her from the holy heavens, + +and ask her to come from the throne of your glory, + +that being present with me she may work, + +and I may learn what pleases you well. + + +For she knows all things and understands, + +and she will guide me prudently in my actions. + +She will guard me in her glory. + + +So my works will be acceptible. + +I will judge your people righteously, + +and I will be worthy of my father’s9:12 +Gr. +thrones. + throne. + + +For what man will know the counsel of God? + +Or who will conceive what the Lord wills? + + +For the thoughts of mortals are unstable, + +and our plans are prone to fail. + + +For a corruptible body weighs down the soul. + +The earthy tent burdens a mind that is full of cares. + + +We can hardly guess the things that are on earth, + +and we find the things that are close at hand with labor; + +but who has traced out the things that are in the heavens? + + +Who gained knowledge of your counsel, unless you gave wisdom, + +and sent your holy spirit from on high? + + +It was thus that the ways of those who are on earth were corrected, + +and men were taught the things that are pleasing to you. + +They were saved through wisdom.” + + + + + +Wisdom10:1 +Gr. +She. + guarded to the end the first formed father of the world, who was created alone, + +and delivered him out of his own transgression, + + +and gave him strength to rule over all things. + + +But when an unrighteous man fell away from her in his anger, + +he perished himself in the rage with which he killed his brother. + + +When for his cause the earth was drowning with a flood, + +wisdom again saved it, + +guiding the righteous man’s course by a paltry piece of wood. + + + +Moreover, when nations consenting together in wickedness had been confounded, + +wisdom10:5 +Gr. +she + knew the righteous man, and preserved him blameless to God, + +and kept him strong when his heart yearned toward his child. + + + +While the ungodly were perishing, wisdom10:6 +Gr. +she + delivered a righteous man, + +when he fled from the fire that descended out of heaven on the five cities. + + +To whose wickedness a smoking waste still witnesses, + +and plants bearing fair fruit that doesn’t ripen, + +a disbelieving soul has a memorial: a standing pillar of salt. + + +For having passed wisdom by, + +not only were they disabled from recognising the things which are good, + +but they also left behind them for their life a monument of their folly, + +to the end that where they stumbled, they might fail even to be unseen; + + +but wisdom delivered those who waited on her out of troubles. + + + +When a righteous man was a fugitive from a brother’s wrath,10:10 +Gr. +she. + wisdom guided him in straight paths. + +She showed him God’s kingdom, and gave him knowledge of holy things. + +She prospered him in his toils, and multiplied the fruits of his labor. + + +When in their covetousness men dealt harshly with him, + +she stood by him and made him rich. + + +She guarded him from enemies, + +and she kept him safe from those who lay in wait. + +Over his severe conflict, she watched as judge, + +that he might know that godliness is more powerful than every one. + + + +When a righteous man was sold,10:13 +Gr. +she. + wisdom didn’t forsake him, + +but she delivered him from sin. + +She went down with him into a dungeon, + + +and in bonds she didn’t depart from him, + +until she brought him the sceptre of a kingdom, + +and authority over those that dealt like a tyrant with him. + +She also showed those who had mockingly accused him to be false, + +and gave him eternal glory. + + + +Wisdom10:15 +Gr. +she. + delivered a holy people and a blameless seed from a nation of oppressors. + + +She entered into the soul of a servant of the Lord, + +and withstood terrible kings in wonders and signs. + + +She rendered to holy men a reward of their toils. + +She guided them along a marvelous way, + +and became to them a covering in the day-time, + +and a starry flame through the night. + + +She brought them over the Red sea, + +and led them through much water; + + +but she drowned their enemies, + +and she cast them up from the bottom of the deep. + + +Therefore the righteous plundered the ungodly, + +and they sang praise to your holy name, O Lord, + +and extolled with one accord your hand that fought for them, + + +because wisdom opened the mouth of the mute, + +and made the tongues of babes to speak clearly. + + + + + +Wisdom prospered their works in the hand of a holy prophet. + + + +They traveled through a desert without inhabitant, + +and they pitched their tents in trackless regions. + + +They withstood enemies and repelled foes. + + +They thirsted, and they called upon you, + +and water was given to them out of the11:4 +See Deuteronomy 8:15; Psalms 114:8. + flinty rock, + +and healing of their thirst out of the hard stone. + + +For by what things their foes were punished, + +by these they in their need were benefited. + + +When enemies were troubled with clotted blood + +instead of a river’s ever-flowing fountain, + + +to rebuke the decree for the slaying of babies, + +you gave them abundant water beyond all hope, + + +having shown by the thirst which they had suffered + +how you punished the adversaries. + + +For when they were tried, although chastened in mercy, + +they learned how the ungodly were tormented, being judged with wrath. + + +For you tested these as a father admonishing them; + +but you searched out those as a stern king condemning them. + + +Yes and whether they were far off or near, + +they were equally distressed; + + +for a double grief seized them, + +and a groaning at the memory of things past. + + +For when they heard that through their own punishments the others benefited, + +they recognized the Lord. + + +For him who long before was thrown out and exposed they stopped mocking. + +In the end of what happened, they marveled, + +having thirsted in another manner than the righteous. + + + +But in return for the senseless imaginings of their unrighteousness, + +wherein they were led astray to worship irrational reptiles and wretched vermin, + +you sent upon them a multitude of irrational creatures to punish them, + + +that they might learn that by what things a man sins, by these he is punished. + + +For your all-powerful hand + +that created the world out of formless matter + +didn’t lack means to send upon them a multitude of bears, fierce lions, + + +or newly-created and unknown wild beasts, full of rage, + +either breathing out a blast of fiery breath, + +or belching out smoke, + +or flashing dreadful sparks from their eyes; + + +which had power not only to consume them by their violence, + +but to destroy them even by the terror of their sight. + + +Yes and without these they might have fallen by a single breath, + +being pursued by Justice, and scattered abroad by the breath of your power; + +but you arranged all things by measure, number, and weight. + + + +For to be greatly strong is yours at all times. + +Who could withstand the might of your arm? + + +Because the whole world before you is as a grain in a balance, + +and as a drop of dew that comes down upon the earth in the morning. + + +But you have mercy on all men, because you have power to do all things, + +and you overlook the sins of men to the end that they may repent. + + +For you love all things that are, + +and abhor none of the things which you made; + +For you never would have formed anything if you hated it. + + +How would anything have endured unless you had willed it? + +Or that which was not called by you, how would it have been preserved? + + +But you spare all things, because they are yours, + +O Sovereign Lord, you who love the living. + + + + +For your incorruptible spirit is in all things. + + +Therefore you convict little by little those who fall from the right way, + +and, putting them in remembrance by the things wherein they sin, you admonish them, + +that escaping from their wickedness they may believe in you, O Lord. + + + +For truly the old inhabitants of your holy land, + + +hating them because they practiced detestable works of enchantments and unholy rites— + + +merciless slaughters of children + +and sacrificial banquets of men’s flesh and of blood— + + +allies in an impious fellowship, + +and murderers of their own helpless babes, + +it was your counsel to destroy by the hands of our fathers; + + +that the land which in your sight is most precious of all + +might receive a worthy colony of God’s servants.12:7 +Or, +children + + + +Nevertheless you even spared these as men, + +and you sent hornets12:8 +Or, +wasps + as forerunners of your army, + +to cause them to perish little by little. + + +Not that you were unable to subdue the ungodly under the hand of the righteous in battle, + +or by terrible beasts or by a stern word to make away with them at once, + + +but judging them little by little you gave them a chance to repent, + +not being ignorant that their nature by birth was evil, + +their wickedness inborn, + +and that their manner of thought would never be changed. + + +For they were a cursed seed from the beginning. + +It wasn’t through fear of any that you left them unpunished for their sins. + + + +For who will say, “What have you done?” + +Or “Who will withstand your judgment?” + +Who will accuse you for the perishing of nations which you caused? + +Or who will come and stand before you as an avenger for unrighteous men? + + +For there isn’t any God beside you that cares for all, + +that you might show that you didn’t judge unrighteously. + + +No king or prince will be able to confront you + +about those whom you have punished. + + +But being righteous, you rule all things righteously, + +deeming it a thing alien from your power + +to condemn one who doesn’t deserve to be punished. + + +For your strength is the source of righteousness, + +and your sovereignty over all makes you to forbear all. + + +For when men don’t believe that you are perfect in power, you show your strength, + +and in dealing with those who think this, you confuse their boldness. + + +But you, being sovereign in strength, judge in gentleness, + +and with great forbearance you govern us; + +for the power is yours whenever you desire it. + + + +But you taught your people by such works as these, + +how the righteous must be kind. + +You made your sons to have good hope, + +because you give repentance when men have sinned. + + +For if on those who were enemies of your servants12:20 +Or, +children + and deserving of death, + +you took vengeance with so great deliberation and indulgence, + +giving them times and opportunities when they might escape from their wickedness, + + +with how great care you judged your sons, + +to whose fathers you gave oaths and covenants of good promises! + + +Therefore while you chasten us, you scourge our enemies ten thousand times more, + +to the intent that we may ponder your goodness when we judge, + +and when we are judged may look for mercy. + + + +Therefore also the unrighteous that lived in a life of folly, + +you tormented through their own abominations. + + +For truly they went astray very far in the ways of error, + +Taking as gods those animals12:24 +Gr. +living creatures: +and so elsewhere in this book. + which even among their enemies were held in dishonor, + +deceived like foolish babes. + + +Therefore, as to unreasoning children, you sent your judgment to mock them. + + +But those who would not be admonished by mild correction + +will experience the deserved judgment of God. + + +For through the sufferings they were indignant of, + +being punished in these creatures which they supposed to be gods, + +they saw and recognized as the true God him whom they previously refused to know. + +Therefore also the result of extreme condemnation came upon them. + + + + + +For truly all men who had no perception of God were foolish by nature, + +and didn’t gain power to know him who exists from the good things that are seen. + +They didn’t recognize the architect from his works. + + +But they thought that either fire, or wind, or swift air, + +or circling stars, or raging water, or luminaries of heaven + +were gods that rule the world. + + +If it was through delight in their beauty that they took them to be gods, + +let them know how much better their Sovereign Lord is than these, + +for the first author of beauty created them. + + +But if it was through astonishment at their power and influence, + +then let them understand from them how much more powerful he who formed them is. + + +For from the greatness of the beauty of created things, + +mankind forms the corresponding perception of their Maker.13:5 +Gr. +is the first maker of them seen. + + +But yet for these men there is but small blame, + +for they too perhaps go astray + +while they are seeking God and desiring to find him. + + +For they diligently search while living among his works, + +and they trust their sight that the things that they look at are beautiful. + + +But again even they are not to be excused. + + +For if they had power to know so much, + +that they should be able to explore the world, + +how is it that they didn’t find the Sovereign Lord sooner? + + + +But they were miserable, and their hopes were in dead things, + +who called them gods which are works of men’s hands, + +gold and silver, skillfully made, and likenesses of animals, + +or a useless stone, the work of an ancient hand. + + +Yes and some13:11 +Gr. +carpenter who is a woodcutter. + woodcutter might saw down a tree that is easily moved, + +skillfully strip away all its bark, + +and fashion it in attractive form, make a useful vessel to serve his life’s needs. + + +Burning the scraps from his handiwork to cook his food, + +he eats his fill. + + +Taking a discarded scrap which served no purpose, + +a crooked piece of wood and full of knots, + +he carves it with the diligence of his idleness, + +and shapes it by the skill of his idleness. + +He shapes it in the image of a man, + + +or makes it like some worthless animal, + +smearing it with something red, painting it red, + +and smearing over every stain in it. + + +Having made a worthy chamber for it, + +he sets it in a wall, securing it with iron. + + +He plans for it that it may not fall down, + +knowing that it is unable to help itself + +(for truly it is an image, and needs help). + + +When he makes his prayer concerning goods and his marriage and children, + +he is not ashamed to speak to that which has no life. + + +Yes, for health, he calls upon that which is weak. + +For life, he implores that which is dead. + +For aid, he supplicates that which has no experience. + +For a good journey, he asks that which can’t so much as move a step. + + +And for profit in business and good success of his hands, + +he asks ability from that which has hands with no ability. + + + + +Again, one preparing to sail, and about to journey over raging waves, + +calls upon a piece of wood more fragile than the vessel that carries him. + + +For the hunger for profit planned it, + +and wisdom was the craftsman who built it. + + +Your providence, O Father, guides it along, + +because even in the sea you gave a way, + +and in the waves a sure path, + + +showing that you can save out of every danger, + +that even a man without skill may put to sea. + + +It is your will that the works of your wisdom should not be ineffective. + +Therefore men also entrust their lives to a little piece of wood, + +and passing through the surge on a raft come safely to land. + + +For14:6 +The Greek text here may be corrupt. + in the old time also, when proud giants were perishing, + +the hope of the world, taking refuge on a raft, + +your hand guided the seed of generations of the race of men. + + +For blessed is wood through which comes righteousness; + + +but the idol made with hands is accursed, itself and he that made it; + +because his was the working, and the corruptible thing was called a god. + + +For both the ungodly and his ungodliness are alike hateful to God; + + +for truly the deed will be punished together with him who committed it. + + +Therefore also there will be a visitation among the idols of the nation, + +because, though formed of things which God created, they were made an abomination, + +stumbling blocks to the souls of men, + +and a snare to the feet of the foolish. + + + +For the devising of idols was the beginning of fornication, + +and the invention of them the corruption of life. + + +For they didn’t exist from the beginning, and they won’t exist forever. + + +For by the boastfulness of men they entered into the world, + +and therefore a speedy end was planned for them. + + + +For a father worn with untimely grief, + +making an image of the child quickly taken away, + +now honored him as a god which was then a dead human being, + +and delivered to those that were under him mysteries and solemn rites. + + +Afterward the ungodly custom, in process of time grown strong, was kept as a law, + +and the engraved images received worship by the commandments of princes. + + +And when men could not honor them in presence because they lived far off, + +imagining the likeness from afar, + +they made a visible image of the king whom they honored, + +that by their zeal they might flatter the absent as if present. + + + +But worship was raised to a yet higher pitch, even by those who didn’t know him, + +urged forward by the ambition of the architect; + + +for he, wishing perhaps to please his ruler, + +used his art to force the likeness toward a greater beauty. + + +So the multitude, allured by reason of the grace of his handiwork, + +now consider an object of devotion him that a little before was honored as a man. + + +And this became an ambush, + +because men, in bondage either to calamity or to tyranny, + +invested stones and stocks with the Name that shouldn’t be shared. + + + +Afterward it was not enough for them to go astray concerning the knowledge of God, + +but also, while they live in a great war of ignorance, they call a multitude of evils peace. + + +For either slaughtering children in solemn rites, or celebrating secret mysteries, + +or holding frenzied revels of strange customs, + + +no longer do they guard either life or purity of marriage, + +but one brings upon another either death by treachery, or anguish by adultery. + + +And all things confusedly are filled with blood and murder, theft and deceit, + +corruption, faithlessness, tumult, perjury, + + +confusion about what is good, forgetfulness of favors, + +ingratitude for benefits, + +defiling of souls, confusion of sex, + +disorder in marriage, adultery and wantonness. + + +For the worship of idols that may not be named14:27 +Exodus 23:13; Psalms 16:4; Hosea 2:17; Wisdom 14:21 + +is a beginning and cause and end of every evil. + + +For their worshipers either make merry to madness, or prophesy lies, + +or live unrighteously, or lightly commit perjury. + + +For putting their trust in lifeless idols, + +when they have sworn a wicked oath, they expect not to suffer harm. + + +But on both counts, the just doom will pursue them, + +because they had evil thoughts of God by giving heed to idols, + +and swore unrighteously in deceit through contempt for holiness. + + +For it is not the power of things by which men swear, + +but it is the just penalty for those who sin + +that always visits the transgression of the unrighteous. + + + + + +But you, our God, are gracious and true, + +patient, and in mercy ordering all things. + + +For even if we sin, we are yours, knowing your dominion; + +but we will not sin, knowing that we have been accounted yours. + + +For to be acquainted with you is15:3 +Gr. +entire. + perfect righteousness, + +and to know your dominion is the root of immortality. + + +For we weren’t led astray by any evil plan of men’s, + +nor yet by painters’ fruitless labor, + +a form stained with varied colors, + + +the sight of which leads fools into15:5 +Some authorities read +reproach. + lust. + +Their desire is for the breathless form of a dead image. + + +Lovers of evil things, and worthy of such hopes, + +are those who make, desire, and worship them. + + + +For a potter, kneading soft earth, + +laboriously molds each article for our service. + +He fashions out of the same clay + +both the vessels that minister to clean uses, and those of a contrary sort, + +all in like manner. + +What shall be the use of each article of either sort, + +the potter is the judge. + + +Also, laboring to an evil end, he molds a vain god out of the same clay, + +he who, having but a little before been made of earth, + +after a short space goes his way to the earth out of which he was taken, + +when he is required to give back the15:8 +Or, +life + soul which was lent him. + + +However he has anxious care, + +not because his powers must fail, + +nor because his span of life is short; + +But he compares himself with goldsmiths and silversmiths, + +and he imitates molders in15:9 +Or, +copper + brass, + +and considers it great that he molds counterfeit gods. + + +His heart is ashes. + +His hope is of less value than earth. + +His life is of less honor than clay, + + +because he was ignorant of him who molded him, + +and of him that inspired into him15:11 +Gr. +a soul that moves to activity. + an active15:11 +Or, +life + soul, + +and breathed into him a vital spirit. + + +But15:12 +Some authorities read +they accounted. + he accounted our life to be a game, + +and our15:12 +Or, +way of life + lifetime a festival for profit; + +for, he says, one must get gain however one can, even if it is by evil. + + +For this man, beyond all others, knows that he sins, + +out of earthy matter making brittle vessels and engraved images. + + +But most foolish and more miserable than a baby, + +are the enemies of your people, who oppressed them; + + +because they even considered all the idols of the nations to be gods, + +which have neither the use of eyes for seeing, + +nor nostrils for drawing breath, + +nor ears to hear, + +nor fingers for handling, + +and their feet are helpless for walking. + + +For a man made them, + +and one whose own spirit is borrowed molded them; + +for no one has power as a man to mold a god like himself. + + +But, being mortal, he makes a dead thing by the work of lawless hands; + +for he is better than the objects of his worship, + +since he indeed had life, but they never did. + + + +Yes, and they worship the creatures that are most hateful, + +for, being compared as to lack of sense, these are worse than all others; + + +Neither, as seen beside other creatures, are they beautiful, so that one should desire them, + +but they have escaped both the praise of God and his blessing. + + + + +For this cause, they were deservedly punished through creatures like those which they worship, + +and tormented through a multitude of vermin. + + +Instead of this punishment, you, giving benefits to your people, + +prepared quails for food, + +a delicacy to satisfy the desire of their appetite, + + +to the end that your enemies, desiring food, + +might for the hideousness of the creatures sent among them, + +loathe even the necessary appetite; + +but these, your people, having for a short time suffered lack, + +might even partake of delicacies. + + +For it was necessary that inescapable lack should come upon those oppressors, + +but that to these it should only be showed how their enemies were tormented. + + +For even when terrible raging of wild beasts came upon your people, + +and they were perishing by the bites of crooked serpents, + +your wrath didn’t continue to the uttermost; + + +but for admonition were they troubled for a short time, + +having a token of salvation + +to put them in remembrance of the commandment of your law; + + + +for he who turned toward it was not saved because of that which was seen, + +but because of you, the Savior of all. + + +Yes, and in this you persuaded our enemies + +that you are he who delivers out of every evil. + + +For the bites of locusts and flies truly killed them. + +No healing for their life was found, + +because they were worthy to be punished by such things. + + +But your children weren’t overcome by the very fangs of venomous dragons, + +for your mercy passed by where they were and healed them. + + +For they were bitten to put them in remembrance of your oracles, + +and were quickly saved, lest, falling into deep forgetfulness, + +they should become unable to respond to your kindness. + + +For truly it was neither herb nor poultice that cured them, + +but your word, O Lord, which heals all people. + + +For you have authority over life and death, + +and you lead down to the gates of Hades, and lead up again. + + +But though a man kills by his wickedness, + +he can’t retrieve the spirit that has departed + +or release the imprisoned soul. + + + +But it is not possible to escape your hand; + + +for ungodly men, refusing to know you, were scourged in the strength of your arm, + +pursued with strange rains and hails and relentless storms, + +and utterly consumed with fire. + + +For, what was most marvelous, + +in the water which quenches all things, the fire burned hotter; + +for the world fights for the righteous. + + +For at one time the flame was restrained, + +that it might not burn up the creatures sent against the ungodly, + +but that these themselves as they looked might see that they were chased by the judgment of God. + + +At another time even in the midst of water it burns more intensely than fire, + +that it may destroy the produce of an unrighteous land. + + +Instead of these things, you gave your people angels’ food to eat, + +and you provided ready-to-eat bread for them from heaven without toil, + +having the virtue of every pleasant flavor, + +and agreeable to every taste. + + +For your nature showed your sweetness toward your children, + +while that bread, serving the desire of the eater, + +changed itself according to every man’s choice. + + +But snow and ice endured fire, and didn’t melt, + +that people might know that fire was destroying the fruits of the enemies, + +burning in the hail and flashing in the rains; + + +and that this fire, again, in order that righteous people may be nourished, + +has even forgotten its own power. + + +For the creation, ministering to you, its maker, + +strains its force against the unrighteous for punishment + +and in kindness, slackens it on behalf of those who trust in you. + + +Therefore at that time also, converting itself into all forms, + +it ministered to your all-nourishing bounty, + +according to the desire of those who had need, + + +that your children, whom you loved, O Lord, might learn + +that it is not the growth of crops that nourishes a man, + +but that your word preserves those who trust you. + + +For that which was not destroyed by fire, + +melted away when it was simply warmed by a faint sunbeam, + + +that it might be known that we must rise before the sun to give you thanks, + +and must pray to you at the dawning of the light; + + +for the hope of the unthankful will melt as the winter’s hoar frost, + +and will flow away as water that has no use. + + + + + +For your judgments are great, and hard to interpret; + +therefore undisciplined souls went astray. + + +For when lawless men had supposed that they held a holy nation in their power, + +they, prisoners of darkness, and bound in the fetters of a long night, + +kept close beneath their roofs, + +lay exiled from the eternal providence. + + +For while they thought that they were unseen in their secret sins, + +they were divided from one another by a dark curtain of forgetfulness, + +stricken with terrible awe, and very troubled by apparitions. + + +For neither did the dark recesses that held them guard them from fears, + +but terrifying sounds rang around them, + +and dismal phantoms appeared with unsmiling faces. + + +And no power of fire prevailed to give light, + +neither were the brightest flames of the stars strong enough to illuminate that gloomy night; + + +but only the glimmering of a self-kindled fire appeared to them, full of fear. + +In terror, they considered the things which they saw + +to be worse than that sight, on which they could not gaze. + + +The mockeries of their magic arts were powerless, now, + +and a shameful rebuke of their boasted understanding: + + +For those who promised to drive away terrors and disorders from a sick soul, + +these were sick with a ludicrous fearfulness. + + +For even if no troubling thing frighted them, + +yet, scared with the creeping of vermin and hissing of serpents, + + +they perished trembling in fear, + +refusing even to look at the air, which could not be escaped on any side. + + +For wickedness, condemned by a witness within, is a coward thing, + +and, being pressed hard by conscience, always has added forecasts of the worst. + + +For fear is nothing else but a surrender of the help which reason offers; + + +and from within, the expectation of being less + +prefers ignorance of the cause that brings the torment. + + +But they, all through the night which was powerless indeed, + +and which came upon them out of the recesses of powerless Hades, + +sleeping the same sleep, + + +now were haunted by monstrous apparitions, + +and now were paralyzed by their soul’s surrendering; + +for sudden and unexpected fear came upon them. + + +So then whoever it might be, sinking down in his place, + +was kept captive, shut up in that prison which was not barred with iron; + + +for whether he was a farmer, or a shepherd, + +or a laborer whose toils were in the wilderness, + +he was overtaken, and endured that inescapable sentence; + +for they were all bound with one chain of darkness. + + +Whether there was a whistling wind, + +or a melodious sound of birds among the spreading branches, + +or a measured fall of water running violently, + + +or a harsh crashing of rocks hurled down, + +or the swift course of animals bounding along unseen, + +or the voice of wild beasts harshly roaring, + +or an echo rebounding from the hollows of the mountains, + +all these things paralyzed them with terror. + + +For the whole world was illuminated with clear light, + +and was occupied with unhindered works, + + +while over them alone was spread a heavy night, + +an image of the darkness that should afterward receive them; + +but to themselves, they were heavier than darkness. + + + + +But for your holy ones there was great light. + +Their enemies, hearing their voice but not seeing their form, + +counted it a happy thing that they too had suffered, + + +yet for that they do not hurt them, though wronged by them before, they are thankful; + +and because they had been at variance with them, they begged for pardon. + + +Therefore you provided a burning pillar of fire, + +to be a guide for your people’s unknown journey, + +and a harmless sun for their glorious exile. + + +For the Egyptians well deserved to be deprived of light and imprisoned by darkness, + +they who had imprisoned your children, + +through whom the incorruptible light of the law was to be given to the race of men. + + + +After they had taken counsel to kill the babes of the holy ones, + +and when a single child had been abandoned and saved to convict them of their sin, + +you took away from them their multitude of children, + +and destroyed all their army together in a mighty flood. + + +Our fathers were made aware of that night beforehand, + +that, having sure knowledge, they might be cheered by the oaths which they had trusted. + + +Salvation of the righteous and destruction of the enemies was expected by your people. + + +For as you took vengeance on the adversaries, + +by the same means, calling us to yourself, you glorified us. + + +For holy children of good men offered sacrifice in secret, + +and with one consent they agreed to the covenant of the divine law, + +that they would partake alike in the same good things and the same perils, + +the fathers already leading the sacred songs of praise. + + +But the discordant cry of the enemies echoed back, + +and a pitiful voice of lamentation for children was spread abroad. + + +Both servant and master were punished with the same just doom, + +and the commoner suffering the same as king; + + +Yes, they all together, under one form of death, + +had corpses without number. + +For the living were not sufficient even to bury them, + +Since at a single stroke, their most cherished offspring was consumed. + + +For while they were disbelieving all things by reason of the enchantments, + +upon the destruction of the firstborn they confessed the people to be God’s children. + + +For while peaceful silence wrapped all things, + +and night in her own swiftness was half spent, + + +your all-powerful word leaped from heaven, from the royal throne, + +a stern warrior, into the midst of the doomed land, + + +bearing as a sharp sword your authentic commandment, + +and standing, it filled all things with death, + +and while it touched the sky it stood upon the earth. + + +Then immediately apparitions in dreams terribly troubled them, + +and unexpected fears came upon them. + + +And each, one thrown here half dead, another there, + +made known why he was dying; + + +for the dreams, disturbing them, forewarned them of this, + +that they might not perish without knowing why they were afflicted. + + + +The experience of death also touched the righteous, + +and a multitude were destroyed in the wilderness, + +but the wrath didn’t last long. + + +For a blameless man hurried to be their champion, + +bringing the weapon of his own ministry, + +prayer, and the atoning sacrifice of incense. + +He withstood the indignation and set an end to the calamity, + +showing that he was your servant. + + +And he overcame the anger, + +not by strength of body, not by force of weapons, + +but by his word, he subdued the avenger + +by bringing to remembrance oaths and covenants made with the fathers. + + +For when the dead had already fallen in heaps one upon another, + +he intervened and stopped the wrath, + +and cut off its way to the living. + + +For the whole world was pictured on his long robe, + +and the glories of the fathers were upon the engraving of the four rows of precious stones, + +and your majesty was upon the diadem on his head. + + +The destroyer yielded to these, and they feared; + +for it was enough only to test the wrath. + + + + + +But indignation without mercy came upon the ungodly to the end; + +for God also foreknew their future, + + +how, having changed their minds to let your people go, + +and having sped them eagerly on their way, + +they would change their minds and pursue them. + + +For while they were yet in the midst of their mourning, + +and lamenting at the graves of the dead, + +they made another foolish decision, + +and pursued as fugitives those whom they had begged to leave and driven out. + + +For the doom which they deserved was drawing them to this end, + +and it made them forget the things that had happened to them, + +that they might fill up the punishment which was yet lacking from their torments, + + +and that your people might journey on by a marvelous road, + +but they themselves might find a strange death. + + + +For the whole creation, each part in its diverse kind, was made new again, + +complying with your commandments, + +that your servants might be kept unharmed. + + +Then the cloud that overshadowed the camp was seen, + +and dry land rising up out of what had been water, + +out of the Red sea an unhindered highway, + +and a grassy plain out of the violent surge, + + +by which they passed over with all their army, + +these who were covered with your hand, + +having seen strange marvels. + + +For like horses they roamed at large, + +and they skipped about like lambs, + +praising you, O Lord, who was their deliverer. + + +For they still remembered the things that happened in the time of their sojourning, + +how instead of bearing cattle, the land brought forth lice, + +and instead of fish, the river spewed out a multitude of frogs. + + +But afterwards, they also saw a new kind of birds, + +when, led on by desire, they asked for luxurious dainties; + + +for, to comfort them, quails came up for them from the sea. + + + +Punishments came upon the sinners, + +not without the signs that were given beforehand by the violence of the thunder, + +for they justly suffered through their own wickednesses, + +for the hatred which they practiced toward guests was grievous indeed. + + +For while the others didn’t receive the strangers when they came to them, + +the Egyptians made slaves of guests who were their benefactors. + + +And not only so, but while punishment of some sort will come upon the former, + +since they received as enemies those who were aliens; + + +because these first welcomed with feastings, + +and then afflicted with dreadful toils, + +those who had already shared with them in the same rights. + + +And moreover they were stricken with loss of sight + +(even as were those others at the righteous man’s doors), + +when, being surrounded with yawning darkness, + +they each looked for the passage through his own door. + + + +For as the notes of a lute vary the character of the rhythm, + +even so the elements, changing their order one with another, + +continuing always in its sound, + +as may clearly be conjectured from the sight of the things that have happened. + + +For creatures of the dry land were turned into creatures of the waters, + +and creatures that swim moved upon the land. + + +Fire kept the mastery of its own power in water, + +and water forgot its quenching nature. + + +On the contrary, flames didn’t consume flesh of perishable creatures that walked among them, + +neither did they melt the crystalline grains of ambrosial food that were melted easily. + + + +For in all things, O Lord, you magnified your people, + +and you glorified them and didn’t lightly regard them, + +standing by their side in every time and place. + + +
+Ecclesiasticus +Sirach +The Wisdom of Jesus the Son of Sirach, or Ecclesiasticus +Sirach +Sir +

The Wisdom of Jesus the Son of Sirach, +

+

or +

+

Ecclesiaticus +

+

The Wisdom of Jesus the Son of Sirach, also called +Ecclesiasticus, is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +

+

The Prologue of the Wisdom of Jesus the Son of Sirach. +

+

WHEREAS many and great things have been delivered to us by the law and the prophets, and by the others that have followed in their steps, for which we must give Israel the praise for instruction and wisdom; and since not only the readers need to become skillful themselves, but also those who love learning must be able to profit those who are outside, both by speaking and writing; my grandfather Jesus, having much given himself to the reading of the law, the prophets, and the other books of our fathers, and having gained great familiarity with them, was also drawn on himself to write somewhat pertaining to instruction and wisdom, in order that those who love learning, and are devoted to these things, might make progress much more by living according to the law. You are entreated therefore to read with favor and attention, and to pardon us, if in any parts of what we have labored to interpret, we may seem to fail in some of the phrases. For things originally spoken in Hebrew don’t have the same force in them when they are translated into another language. Not only these, but the law itself, and the prophecies, and the rest of the books, have no small difference, when they are spoken in their original language. For having come into Egypt in the thirty-eighth year of Energetes the king, and having continued there some time, I found a copy giving no small instruction. I thought it therefore most necessary for me to apply some diligence and travail to translate this book, applying indeed much watchfulness and skill in that space of time to bring the book to an end and publish for them also, who in the land of their travels are desiring to learn, preparing their character in advance, so as to live according to the law. +

+ + + +All wisdom comes from the Lord, + +and is with him forever. + + +Who can count the sand of the seas, + +the drops of rain, + +and the days of eternity? + + +Who will search out the height of the sky, + +the breadth of the earth, the deep, + +and wisdom? + + +Wisdom has been created before all things, + +and the understanding of prudence from everlasting. + +1:5 +Verse 5 is omitted by the best authorities: +The source of wisdom is God’s word in the highest heaven, and her ways are the eternal commandments. + + +To whom has the root of wisdom been revealed? + +Who has known her shrewd counsels? + +1:7 +Verse 7 is omitted by the best authorities: +To whom was the knowledge of wisdom manifested? Who has understood her abundant experience? + + +There is one wise, greatly to be feared, + +sitting upon his throne: the Lord. + + +He created her. + +He saw and measured her. + +He poured her out upon all his works. + + +She is with all flesh according to his gift. + +He gave her freely to those who love him. + + + +The fear of the Lord is glory, exultation, + +gladness, and a crown of rejoicing. + + +The fear of the Lord will delight the heart, + +and will give gladness, joy, and length of days. + + +Whoever fears the Lord, it will go well with him at the last. + +He will be blessed in the day of his death. + + + +To fear the Lord is the beginning of wisdom. + +It was created together with the faithful in the womb. + + +She1:15 +Gr. +nested. + laid an eternal foundation with men. + +She will be trusted among their offspring. + + +To fear the Lord is the fullness of wisdom. + +She inebriates men with her fruits. + + +She will fill all her house with desirable things, + +and her storehouses with her produce. + + +The fear of the Lord is the crown of wisdom, + +making peace and1:18 +Gr. +health of cure. + perfect health to flourish.1:18 +The remainder of this verse is omitted by the best authorities: +Both are gifts of God for peace; glory opens out for those who love him. He saw her and took her measure. + + +He both saw and measured her. + +He rained down skill and knowledge of understanding, + +and exalted the honor of those who hold her fast. + + +To fear the Lord is the root of wisdom. + +Her branches are length of days. + +1:21 +Verse 21 is omitted by the best authorities: +The fear of the Lord drives away sins. Where it resides, it will turn away all anger. + + + + +Unjust wrath can never be justified, + +for his wrath tips the scale to his downfall. + + +A man that is patient will resist for a season, + +and afterward gladness will spring up to him. + + +He will hide his words until the right moment, + +and the lips of many will tell of his understanding. + + + +A wise saying is in the treasures of wisdom; + +but godliness is an abomination to a sinner. + + +If you desire wisdom, keep the commandments + +and the Lord will give her to you freely; + + +for the fear of the Lord is wisdom and instruction. + +Faith and humility are his good pleasure. + + +Don’t disobey the fear of the Lord. + +Don’t come to him with a double heart. + + +Don’t be a hypocrite in men’s sight. + +Keep watch over your lips. + + +Don’t exalt yourself, + +lest you fall and bring dishonor upon your soul. + +The Lord will reveal your secrets + +and will cast you down in the midst of the congregation, + +because you didn’t come to the fear of the Lord + +and your heart was full of deceit. + + + + + +My son, if you come to serve the Lord, + +prepare your soul for temptation. + + +Set your heart aright, constantly endure, + +and don’t make haste in time of calamity. + + +Cling to him, and don’t depart, + +that you may be increased at your latter end. + + +Accept whatever is brought upon you, + +and be patient when you suffer humiliation. + + +For gold is tried in the fire, + +and acceptable men in the furnace of humiliation. + + +Put your trust in him, and he will help you. + +Make your ways straight, and set your hope on him. + + + +All you who fear the Lord, wait for his mercy. + +Don’t turn aside, lest you fall. + + +All you who fear the Lord, put your trust in him, + +and your reward will not fail. + + +All you who fear the Lord, hope for good things, + +and for eternal gladness and mercy. + + +Look at the generations of old, and see: + +Who ever put his trust in the Lord, and was ashamed? + +Or who remained in his fear, and was forsaken? + +Or who called upon him, and he neglected him? + + +For the Lord is full of compassion and mercy. + +He forgives sins and saves in time of affliction. + + + +Woe to fearful hearts, to faint hands, + +and to the sinner who goes two ways! + + +Woe to the faint heart! For it doesn’t believe. + +Therefore it won’t be defended. + + +Woe to you who have lost your patience! + +And what will you all do when the Lord visits you? + + + +Those who fear the Lord will not disobey his words. + +Those who love him will keep his ways. + + +Those who fear the Lord will seek his good pleasure. + +Those who love him will be filled with the law. + + +Those who fear the Lord will prepare their hearts, + +and will humble their souls in his sight. + + +We will fall into the hands of the Lord, + +and not into the hands of men; + +for as his majesty is, + +so also is his mercy. + + + + + +Hear me, your father, O my children, + +and do what you hear, that you all may be safe. + + +For the Lord honors the father over the children, + +and has confirmed the judgment of the mother over her sons. + + +He who honors his father will make atonement for sins. + + +He who gives glory to his mother is as one who lays up treasure. + + +Whoever honors his father will have joy in his own children. + +He will be heard in the day of his prayer. + + +He who gives glory to his father will have length of days. + +He who listens to the Lord will bring rest to his mother, + + +3:7 +Some manuscripts add +those who fear the Lord honor their father,and will serve under his parents, as to masters. + + +Honor your father in deed and word, + +that a blessing may come upon you from him. + + +For the blessing of the father establishes the houses of children, + +but the curse of the mother roots out the foundations. + + + +Don’t glorify yourself in the dishonor of your father, + +for your father’s dishonor is no glory to you. + + +For the glory of a man is from the honor of his father, + +and a mother in dishonor is a reproach to her children. + + +My son, help your father in his old age, + +and don’t grieve him as long as he lives. + + +If he fails in understanding, have patience with him. + +Don’t dishonor him in your full strength. + + +For the kindness to your father will not be forgotten. + +Instead of sins it will be added to build you up. + + +In the day of your affliction it will be remembered for you, + +as fair weather upon ice, + +so your sins will also melt away. + + +He who forsakes his father is as a blasphemer. + +He who provokes his mother is cursed by the Lord. + + + +My son, go on with your business in humility; + +so you will be loved by an acceptable man. + + +The greater you are, humble yourself the more, + +and you will find favor before the Lord. + +3:19 +Some manuscripts add +Many are lofty and renowned, but he reveals his secrets to the humble. + + +For the power of the Lord is great, + +and he is glorified by those who are lowly. + + +Don’t seek things that are too hard for you, + +and don’t search out things that are above your strength. + + +Think about the things that have been commanded you, + +for you have no need of the things that are secret. + + +Don’t be overly busy in tasks that are beyond you, + +for more things are shown to you than men can understand. + + +For the conceit of many has led them astray. + +Evil opinion has caused their judgment to slip. + + +3:25 +Some manuscripts omit verse 25.There is no light without eyes. + +There is no wisdom without knowledge. + + + +A stubborn heart will do badly at the end. + +He who loves danger will perish in it. + + +A stubborn heart will be burdened with troubles. + +The sinner will heap sin upon sins. + + +The calamity of the proud has no healing, + +for a weed of wickedness has taken root in him. + + +The heart of the prudent will understand a proverb. + +A wise man desires the ear of a listener. + + + +Water will quench a flaming fire; + +almsgiving will make atonement for sins. + + +He who repays good turns is mindful of that which comes afterward. + +In the time of his falling he will find a support. + + + + + +My son, don’t deprive the poor of his living. + +Don’t make the needy eyes wait long. + + +Don’t make a hungry soul sorrowful, + +or provoke a man in his distress. + + +Don’t add more trouble to a heart that is provoked. + +Don’t put off giving to him who is in need. + + +Don’t reject a suppliant in his affliction. + +Don’t turn your face away from a poor man. + + +Don’t turn your eye away from one who asks. + +Give no occasion to a man to curse you. + + +For if he curses you in the bitterness of his soul, + +he who made him will hear his supplication. + + + +Endear yourself to the assembly. + +Bow your head to a great man. + + +Incline your ear to a poor man. + +Answer him with peaceful words in humility. + + +Deliver him who is wronged from the hand of him who wrongs him; + +Don’t be hesitant in giving judgment. + + +Be as a father to the fatherless, + +and like a husband to their mother. + +So you will be as a son of the Most High, + +and he will love you more than your mother does. + + + +Wisdom exalts her sons, + +and takes hold of those who seek her. + + +He who loves her loves life. + +Those who seek her early will be filled with gladness. + + +He who holds her fast will inherit glory. + +Where4:13 +Or, +she + he enters, the Lord will bless. + + +Those who serve her minister to the Holy One. + +The Lord loves those who love her. + + +He who listens to her will judge the nations. + +He who heeds her will dwell securely. + + +If he trusts her, he will inherit her, + +and his generations will possess her. + + +For at the first she will walk with him in crooked ways, + +and will bring fear and dread upon him, + +and torment him with her discipline, + +until she may trust his soul, and try him by her judgments. + + +Then she will return him again to the straight way, + +and will gladden him, and reveal to him her secrets. + + +If he goes astray, she will forsake him, + +and hand him over to his fall. + + + +Watch for the opportunity, and beware of evil. + +Don’t be ashamed of your soul. + + +For there is a shame that brings sin, + +and there is a shame that is glory and grace. + + +Don’t show partiality, discrediting your soul. + +Don’t revere any man to your falling. + + +Don’t refrain from speaking when it is for safety. + +4:23 +Some manuscripts omit this line. +Don’t hide your wisdom for the sake of seeming fair. + + +For wisdom will be known by speech, + +and instruction by the word of the tongue. + + +Don’t speak against the truth + +and be shamed for your ignorance. + + +Don’t be ashamed to confess your sins. + +Don’t fight the river’s current. + + +Don’t lay yourself down for a fool to tread upon. + +Don’t be partial to one who is mighty. + + +Strive for the truth to death, + +and the Lord God will fight for you. + + + +Don’t be hasty with your tongue, + +or slack and negligent in your deeds. + + +Don’t be like a lion in your house, + +or suspicious of your servants. + + +Don’t let your hand be stretched out to receive, + +and closed when you should repay. + + + + +Don’t set your heart upon your goods. + +Don’t say, “They are sufficient for me.” + + +Don’t follow your own mind and your strength + +to walk in the desires of your heart. + + +Don’t say, “Who will have dominion over me?” + +for the Lord will surely take vengeance on you. + + + +Don’t say, “I sinned, and what happened to me?” + +for the Lord is patient. + + +Don’t be so confident of atonement + +that you add sin upon sins. + + +Don’t say, “His compassion is great. + +He will be pacified for the multitude of my sins,” + +for mercy and wrath are with him, + +and his indignation will rest on sinners. + + +Don’t wait to turn to the Lord. + +Don’t put off from day to day; + +for suddenly the wrath of the Lord will come on you, + +and you will perish in the time of vengeance. + + + +Don’t set your heart upon unrighteous gains, + +for you will profit nothing in the day of calamity. + + +Don’t winnow with every wind. + +Don’t walk in every path. + +This is what the sinner who has a double tongue does. + + +Be steadfast in your understanding. + +Let your speech be consistent. + + + +Be swift to hear + +and answer with patience. + + +If you have understanding, answer your neighbor; + +but if not, put your hand over your mouth. + + +Glory and dishonor is in talk. + +A man’s tongue may be his downfall. + + +Don’t be called a whisperer. + +Don’t lie in wait with your tongue; + +for shame is on the thief, + +and an evil condemnation is on him who has a double tongue. + + +Don’t be ignorant in a great or small matter. + + + + +Don’t become an enemy instead of a friend; + +for an evil name will inherit shame and reproach. + +So it is with the sinner who has a double tongue. + + + +Don’t exalt yourself in the counsel of your soul, + +that your soul not be torn in pieces like a bull. + + +You will eat up your leaves, destroy your fruit, + +and leave yourself like a dry tree. + + +A wicked soul will destroy him who has it, + +and will make him a laughing stock to his enemies. + + + +Sweet words will multiply a man’s friends. + +A gracious tongue will multiply courtesies. + + +Let those that are at peace with you be many, + +but your advisers one of a thousand. + + +If you want to gain a friend, get him in a time of testing, + +and don’t be in a hurry to trust him. + + +For there is a friend just for an occasion. + +He won’t continue in the day of your affliction. + + +And there is a friend who turns into an enemy. + +He will discover strife to your reproach. + + +And there is a friend who is a companion at the table, + +but he won’t continue in the day of your affliction. + + +In your prosperity he will be as yourself, + +and will be bold over your servants. + + +If you are brought low, he will be against you, + +and will hide himself from your face. + + +Separate yourself from your enemies, + +and beware of your friends. + + + +A faithful friend is a strong defense. + +He who has found him has found a treasure. + + +There is nothing that can be taken in exchange for a faithful friend. + +His excellency is beyond price. + + +A faithful friend is a life-saving medicine. + +Those who fear the Lord will find him. + + +He who fears the Lord directs his friendship properly; + +for as he is, so is his neighbor also. + + + +My son, gather instruction from your youth up. + +Even when you have gray hair you will find wisdom. + + +Come to her as one who plows and sows + +and wait for her good fruit; + +for your toil will be little in her cultivation, + +and you will soon eat of her fruit. + + +How exceedingly harsh she is to the unlearned! + +He who is without understanding will not remain in her. + + +She will rest upon him as a mighty stone of trial. + +He won’t hesitate to cast her from him. + + +For wisdom is according to her name. + +She isn’t manifest to many. + + + +Give ear, my son, and accept my judgment. + +Don’t refuse my counsel. + + +Bring your feet into her fetters, + +and your neck into her chain. + + +Put your shoulder under her and bear her. + +Don’t be grieved with her bonds. + + +Come to her with all your soul. + +Keep her ways with your whole power. + + +Search and seek, and she will be made known to you. + +When you get hold of her, don’t let her go. + + +For at the last you will find her rest; + +and she will be turned for you into gladness. + + +Her fetters will be to you for a covering of strength, + +and her chains for a robe of glory. + + +For there is a golden ornament upon her, + +and her bands are +6:30 +Numbers 15:38a purple cord. + + +You shall put her on as a robe of glory, + +and shall put her on as a crown of rejoicing. + + + +My son, if you are willing, you will be instructed. + +If you will yield your soul, you will be prudent. + + +If you love to hear, you will receive. + +If you incline your ear, you will be wise. + + +Stand in the multitude of the elders. + +Attach yourself to whomever is wise. + + +Be willing to listen to every godly discourse. + +Don’t let the proverbs of understanding escape you. + + +If you see a man of understanding, get to him early. + +Let your foot wear out the steps of his doors. + + +Let your mind dwell on the ordinances of the Lord + +and meditate continually on his commandments. + +He will establish your heart + +and your desire for wisdom will be given to you. + + + + + +Do no evil, + +so no evil will overtake you. + + +Depart from wrong, + +and it will turn away from you. + + +My son, don’t sow upon the furrows of unrighteousness, + +and you won’t reap them sevenfold. + + + +Don’t seek preeminence from the Lord, + +nor the seat of honor from the king. + + +Don’t justify yourself in the presence of the Lord, + +and don’t display your wisdom before the king. + + +Don’t seek to be a judge, + +lest you not be able to take away iniquities, + +lest perhaps you fear the person of a mighty man, + +and lay a stumbling block in the way of your uprightness. + + + +Don’t sin against the multitude of the city. + +Don’t disgrace yourself in the crowd. + + + +Don’t commit a sin twice, + +for even in one you will not be unpunished. + + +Don’t say, “He will look upon the multitude of my gifts. + +When I make an offering to the Most High God, he will accept it.” + + +Don’t be faint-hearted in your prayer. + +Don’t neglect to give alms. + + + +Don’t laugh a man to scorn when he is in the bitterness of his soul, + +for there is one who humbles and exalts. + + +Don’t devise7:12 +Gr. +Don’t plow a lie against your brother, + +or do the same to a friend. + + +Refuse to utter a lie, + +for that habit results in no good. + + +Don’t babble in the assembly of elders. + +Don’t repeat your words in your prayer. + + + +Don’t hate hard labor + +or farm work, which the Most High has created. + + +Don’t number yourself among the multitude of sinners. + +Remember that wrath will not wait. + + +Humble your soul greatly, + +for the punishment of the ungodly man is fire and the worm. + + + +Don’t exchange a friend for something, + +neither a true brother for the gold of Ophir. + + +Don’t deprive yourself of a wise and good wife, + +for her grace is worth more than gold. + + +Don’t abuse a servant who works faithfully, + +or a hireling who gives you his life. + + +Let your soul love a wise servant. + +Don’t defraud him of liberty. + + + +Do you have cattle? Look after them. + +If they are profitable to you, let them stay by you. + + +Do you have children? Correct them, + +and make them obedient from their youth. + + +Do you have daughters? Take care of their bodies, + +and don’t be overly indulgent toward them. + + +Give your daughter in marriage, and you will have accomplished a great matter. + +Give her to a man of understanding. + + + +Do you have a wife who pleases you? Don’t cast her out. + +7:26 +Many authorities omit this line +But don’t trust yourself to one who is hateful. + + + +Honor your father with your whole heart, + +and don’t forget the birth pangs of your mother. + + +Remember that you were born of them. + +What will you repay them for the things that they have done for you? + + + +Fear the Lord with all your soul; + +and revere his priests. + + +With all your strength love him who made you. + +Don’t forsake his ministers. + + +Fear the Lord and honor the priest. + +Give him his portion, even as it is commanded you: + +the first fruits, the trespass offering, the gift of the shoulders, + +the sacrifice of sanctification, and the first fruits of holy things. + + + +Also stretch out your hand to the poor man, + +that your blessing may be complete. + + +A gift has grace in the sight of every living man. + +Don’t withhold grace for a dead man. + + +Don’t avoid those who weep, + +and mourn with those who mourn. + + +Don’t be slow to visit a sick man, + +for by such things you will gain love. + + +In all your words, remember eternity, + +and you will never sin. + + + + + +Don’t contend with a mighty man, + +lest perhaps you fall into his hands. + + +Don’t strive with a rich man, lest perhaps he overpower you; + +for gold has destroyed many, + +and turned away the hearts of kings. + + +Don’t argue with a loudmouthed man. + +Don’t heap wood upon his fire. + + + +Don’t make fun of a rude man, + +lest your ancestors be dishonored. + + +Don’t reproach a man when he turns from sin. + +Remember that we are all worthy of punishment. + + +Don’t dishonor a man in his old age, + +for some of us are also growing old. + + +Don’t rejoice over anyone’s death. + +Remember that we all die. + + + +Don’t neglect the discourse of the wise. + +Be conversant with their proverbs; + +for from them you will learn discipline + +and how to serve great men. + + +Don’t miss the discourse of the aged, + +for they also learned from their parents, + +because from them you will learn understanding, + +and to give an answer in time of need. + + + +Don’t kindle the coals of a sinner, + +lest you be burned with the flame of his fire. + + +Don’t rise up from the presence of an insolent man, + +lest he lie in wait as an ambush for your mouth. + + +Don’t lend to a man who is stronger than you; + +and if you lend, count it as a loss. + + +Don’t be surety beyond your means. + +If you give surety, think as one who will have to pay. + + + +Don’t go to law with a judge; + +for according to his honor they will give judgment for him. + + +Don’t travel with a reckless man, + +lest he be burdensome to you; + +for he will do as he pleases, + +and you will perish with his folly. + + +Don’t fight with a wrathful man. + +Don’t travel with him through the desert, + +for blood is as nothing in his sight. + +Where there is no help, he will overthrow you. + + +Don’t consult with a fool, + +for he will not be able to keep a secret. + + +Do no secret thing before a stranger, + +for you don’t know what it will cause. + + +Don’t open your heart to every man. + +Don’t let him return you a favor. + + + + + +Don’t be jealous over the wife of your bosom, + +and don’t teach her an evil lesson against yourself. + + +Don’t give your soul to a woman + +and let her trample down your strength. + + +Don’t go to meet a woman who plays the prostitute, + +lest perhaps you fall into her snares. + + +Don’t associate with a woman who is a singer, + +lest perhaps you be caught by her tricks. + + +Don’t gaze at a virgin, + +lest perhaps you stumble and incur penalties for her. + + +Don’t give your soul to prostitutes, + +that you not lose your inheritance. + + +Don’t look around in the streets of the city. + +Don’t wander in its deserted places. + + +Turn your eye away from a beautiful woman, + +and don’t gaze at another’s beauty. + +Many have been led astray by the beauty of a woman; + +and with this, passion is kindled like a fire. + + +Don’t dine at all with a woman who has a husband, + +or revel with her at wine,9:9 +The preceding line of this verse is omitted by the best authorities. + + +lest perhaps your soul turn away to her, + +and with your spirit you slide into destruction. + + + +Don’t forsake an old friend; + +for a new one is not comparable to him. + +A new friend is like new wine: + +if it becomes old, you will drink it with gladness. + + + +Don’t envy the success of a sinner; + +for you don’t know what his end will be. + + +Don’t delight in the delights of the ungodly. + +Remember they will not go unpunished to9:12 +Gr. +Hades. + the grave. + + + +Keep yourself far from the man who has9:13 +Or, +authority + power to kill, + +and you will not be troubled by the fear of death. + +If you come to him, commit no fault, + +lest he take away your life. + +Know surely that you go about in the midst of snares, + +and walk upon the battlements of a city. + + + +As well as you can, aim to know your neighbors, + +and take counsel with the wise. + + +Let your conversation be with men of understanding. + +Let all your discourse be in the law of the Most High. + + +Let righteous people be companions at your table. + +Let your glorying be in the fear of the Lord. + + + +A work is commended because of the skill of the artisan; + +so he who rules the people will be considered wise for his speech. + + +A loudmouthed man is dangerous in his city. + +He who is reckless in his speech will be hated. + + + + + +A wise judge will instruct his people. + +The government of a man of understanding will be well ordered. + + +As is the judge of his people, so are his officials. + +As the city’s ruler is, so are all those who dwell in it. + + +An undisciplined king will destroy his people. + +A city will be established through the understanding of the powerful. + + +The government of the earth is in the Lord’s hand. + +In due time, he will raise up over it the right person at the right time. + + +A man’s prosperity is in the Lord’s hand. + +He will lay his honor upon the person of the scribe. + + + +Don’t be angry with your neighbor for every wrong. + +Do nothing by works of violence. + + +Pride is hateful before the Lord and men. + +Arrogance is abhorrent in the judgment of both. + + +Sovereignty is transferred from nation to nation + +because of injustice, violence, and greed for money. + + +Why are dirt and ashes proud?10:9 +Two lines of this verse are here omitted by the best authorities. + +Because in life, my body decays. + + +A long disease mocks the physician. + +The king of today will die tomorrow. + + +For when a man is dead, + +he will inherit maggots, vermin, and worms. + + +It is the beginning of pride when a man departs from the Lord. + +His heart has departed from him who made him. + + +For the beginning of pride is sin. + +He who keeps it will pour out abomination. + +For this cause the Lord brought upon them strange calamities + +and utterly overthrew them. + + +The Lord cast down the thrones of rulers + +and set the lowly in their place. + + +The Lord plucked up the roots of nations + +and planted the lowly in their place. + + +The Lord overthrew the lands of nations + +and destroyed them to the foundations of the earth. + + +He took some of them away and destroyed them, + +and made their memory to cease from the earth. + + +Pride has not been created for men, + +nor wrathful anger for the offspring of women. + + + +Whose offspring has honor? + +Human offspring who fear the Lord. + +Whose offspring has no honor? + +Human offspring who break the commandments. + + +In the midst of kindred he who rules them has honor. + +Those who fear the Lord have honor in his eyes. + +10:21 +Verse 21 is omitted by the best authorities: Fear of the Lord is the beginning of acceptance, but obstinance and pride are the beginning of rejection. + + +The rich man, the honorable, and the poor + +all glory in the fear of the Lord. + + +It is not right to dishonor a poor man who has understanding. + +It is not fitting to glorify a man who is a sinner. + + +The prince, the judge, and the mighty man will be honored. + +There is not one of them greater than he who fears the Lord. + + +Free men will minister to a wise servant. + +A man who has knowledge will not complain. + + + +Don’t flaunt your wisdom in doing your work. + +Don’t boast in the time of your distress. + + +Better is he who labors and abounds in all things, + +than he who boasts and lacks bread. + + +My son, glorify your soul in humility, + +and ascribe to yourself honor according to your worthiness. + + +Who will justify him who sins against his own soul? + +Who will honor him who dishonors his own life? + + + +A poor man is honored for his knowledge. + +A rich man is honored for his riches. + + +But he who is honored in poverty, how much more in riches? + +He who is dishonored in riches, how much more in poverty? + + + + + +The wisdom of the lowly will lift up his head, + +and make him sit in the midst of great men. + + + +Don’t commend a man for his good looks. + +Don’t abhor a man for his outward appearance. + + +The bee is little among flying creatures, + +but what it produces is the best of confections. + + +Don’t boast about the clothes you wear, + +and don’t exalt yourself in the day of honor; + +for the Lord’s works are wonderful, + +and his works are hidden among men. + + +Many11:5 +Gr. +tyrants + kings have sat down upon the ground, + +but one who was never thought of has worn a crown. + + +Many mighty men have been greatly disgraced. + +Men of renown have been delivered into other men’s hands. + + + +Don’t blame before you investigate. + +Understand first, and then rebuke. + + +Don’t answer before you have heard. + +Don’t interrupt while someone else is speaking. + + +Don’t argue about a matter that doesn’t concern you. + +Don’t sit with sinners when they judge. + + + +My son, don’t be busy about many matters; + +for if you meddle much, you will not be unpunished. + +If you pursue, you will not overtake, + +and you will not escape by fleeing. + + +There is one who toils, labors, and hurries, + +and is even more behind. + + +There is one who is sluggish, and needs help, + +lacking in strength, and who abounds in poverty, + +but the Lord’s eyes looked upon him for good, + +and he raised him up from his low condition, + + +and lifted up his head + +so that many marveled at him. + + + +Good things and bad, life and death, + +poverty and riches, are from the Lord. + +11:15-16 +Verses 15 and 16 are omitted by the best authorities. + + + +The Lord’s gift remains with the godly. + +His good pleasure will prosper forever. + + +One grows rich by his diligence and self-denial, + +and this is the portion of his reward: + + +when he says, “I have found rest, + +and now I will eat of my goods!” + +he doesn’t know how much time will pass + +until he leaves them to others and dies. + + +Be steadfast in your covenant and be doing it, + +and grow old in your work. + + + +Don’t marvel at the works of a sinner, + +but trust the Lord and stay in your labor; + +for it is an easy thing in the sight of the Lord + +to swiftly and suddenly make a poor man rich. + + +The Lord’s blessing is in the reward of the godly. + +He makes his blessing flourish in an hour that comes swiftly. + + +Don’t say, “What use is there of me? + +What further good things can be mine?” + + +Don’t say, “I have enough. + +What harm could happen to me now?” + + +In the day of good things, bad things are forgotten. + +In the day of bad things, a man will not remember things that are good. + + +For it is an easy thing in the sight of the Lord + +to reward a man in the day of death according to his ways. + + +The affliction of an hour causes delights to be forgotten. + +In the end, a man’s deeds are revealed. + + +Call no man happy before his death. + +A man will be known in his children. + + + +Don’t bring every man into your house, + +for many are the tricks of a deceitful man. + + +Like a decoy partridge in a cage, so is the heart of a proud man. + +Like a spy, he looks for your weakness. + + +For he lies in wait to turn things that are good into evil, + +and assigns blame in things that are praiseworthy. + + +From a spark of fire, a heap of many coals is kindled, + +and a sinful man lies in wait to shed blood. + + +Take heed of an evil-doer, for he plans wicked things, + +lest perhaps he ruin your reputation forever. + + +Receive a stranger into your house, and he will distract you with arguments + +and estrange you from your own family. + + + + + +If you do good, know to whom you do it, + +and your good deeds will have thanks. + + +Do good to a godly man, and you will find a reward— + +if not from him, then from the Most High. + + +No good will come to him who continues to do evil, + +nor to him who gives no alms. + + +Give to the godly man, + +and don’t help the sinner. + + +Do good to one who is lowly. + +Don’t give to an ungodly man. + +Keep back his bread, and don’t give it to him, + +lest he subdue you with it; + +for you would receive twice as much evil + +for all the good you would have done to him. + + +For the Most High also hates sinners, + +and will repay vengeance to the ungodly.12:6 +The remainder of this verse is omitted by the best authorities. + + + +Give to the good man, + +and don’t help the sinner. + + + +A man’s friend won’t be12:8 +Or, +punished + fully tried in prosperity. + +His enemy won’t be hidden in adversity. + + +In a man’s prosperity, his enemies are grieved. + +In his adversity, even his friend leaves. + + +Never trust your enemy, + +for his wickedness is like corrosion in copper. + + +Though he humbles himself and walks bowed down, + +still be careful and beware of him. + +You will be to him as one who has wiped a mirror, + +to be sure it doesn’t completely tarnish. + + +Don’t set him next to you, + +lest he overthrow you and stand in your place. + +Don’t let him sit on your right hand, + +lest he seek to take your seat, + +and at the last you acknowledge my words, + +and be pricked with my sayings. + + + +Who will pity a charmer that is bitten by a snake, + +or any who come near wild beasts? + + +Even so, who will pity him who goes to a sinner, + +and is associated with him in his sins? + + +For a while he will stay with you, + +and if you falter, he will not stay. + + +The enemy will speak sweetly with his lips, + +and in his heart plan to throw you into a pit. + +The enemy may weep with his eyes, + +but if he finds opportunity, he will want more blood. + + +If adversity meets you, you will find him there before you. + +Pretending to help you, he will trip you. + + +He will shake his head, clap his hands, + +whisper much, and change his countenance. + + + + + +He who touches pitch will be defiled. + +He who has fellowship with a proud man will become like him. + + +Don’t take up a burden above your strength. + +Have no fellowship with one who is mightier and richer than yourself. + +What fellowship would the earthen pot have with the kettle? + +The kettle will strike, and the pot will be dashed in pieces. + + +The rich man does a wrong and threatens. + +The poor is wronged and apologizes. + + +If you are profitable, he will exploit you. + +If you are in need, he will forsake you. + + +If you own something, he will live with you. + +He will drain your resources and will not be sorry. + + +Does he need you? Then he will deceive you, + +smile at you, and give you hope. + +He will speak kindly to you and say, “What do you need?” + + +He will shame you by his delicacies + +until he has made you bare twice or thrice, + +and in the end he will laugh you to scorn. + +Afterward he will see you, will forsake you, + +and shake his head at you. + + + +Beware that you are not deceived + +and brought low in your enjoyment. + + +If a mighty man invites you, be reserved, + +and he will invite you more. + + +Don’t press him, lest you be thrust back. + +Don’t stand far off, lest you be forgotten. + + +Don’t try to speak with him as an equal, + +and don’t believe his many words; + +for he will test you with much talk, + +and will examine you in a smiling manner. + + +He who doesn’t keep secrets to himself is unmerciful. + +He won’t hesitate to harm and to bind. + + +Keep them to yourself and be careful, + +for you walk13:13 +Gr. +along with. + in danger of falling. + +13:14 +The remainder of verse 13, and verse 14, are omitted by the best authorities. + + + + +Every living creature loves its own kind, + +and every man loves his neighbor. + + +All flesh associates with their own kind. + +A man will stick to people like himself. + + +What fellowship would the wolf have with the lamb? + +So is the sinner to the godly. + + +What peace is there between a hyena and a dog? + +What peace is there between a rich man and the poor? + + +Wild donkeys are the prey of lions in the wilderness; + +likewise poor men are feeding grounds for the rich. + + +Lowliness is an abomination to a proud man; + +likewise a poor man is an abomination to the rich. + + + +When a rich man is shaken, he is supported by his friends, + +but when the humble is down, he is pushed away even by his friends. + + +When a rich man falls, there are many helpers. + +He speaks things not to be spoken, and men justify him. + +A humble man falls, and men rebuke him. + +He utters wisdom, and is not listened to. + + +A rich man speaks, and all keep silence. + +They extol what he says to the clouds. + +A poor man speaks, and they say, “Who is this?” + +If he stumbles, they will help to overthrow him. + + + +Riches are good if they have no sin. + +Poverty is evil only in the opinion of the ungodly. + + + +The heart of a man changes his countenance, + +whether it is for good or for evil.13:25 +The remainder of this verse is omitted by the best authorities. + + + +A cheerful countenance is a sign of a prosperous heart. + +Devising proverbs takes strenuous thinking. + + + + +Blessed is the man who has not slipped with his mouth, + +and doesn’t suffer from sorrow for sins. + + +Blessed is he whose soul does not condemn him, + +and who has not given up hope. + + + +Riches are not appropriate for a stingy person. + +What would a miser do with money? + + +He who gathers by denying himself gathers for others. + +Others will revel in his goods. + + +If one is mean to himself, to whom will he be good? + +He won’t enjoy his possessions. + + +There is none more evil than he who is grudging to himself. + +This is a punishment for his wickedness. + + +Even if he does good, he does it in forgetfulness. + +In the end, he reveals his wickedness. + + +A miser is evil. + +He turns away and disregards souls. + + +A covetous man’s eye is not satisfied with his portion. + +Wicked injustice dries up his soul. + + +A miser begrudges bread, + +and it is lacking at his table. + + + +My son, according to what you have, treat yourself well, + +and bring worthy offerings to the Lord. + + +Remember that death will not wait, + +and that the covenant of Hades hasn’t been shown to you. + + +Do good to your friends before you die. + +According to your ability, reach out and give to them. + + +Don’t deprive yourself of a good day. + +Don’t let your share of a desired good pass you by. + + +Won’t you leave your labors to another, + +and your toils be divided by lot? + + +Give, take, and treat yourself well, + +because there is no seeking of luxury in Hades. + + +All flesh grows old like a garment, + +for the covenant from the beginning is, “You must die!” + + +Like the leaves flourishing on a thick tree, + +some it sheds, and some grow, + +so also are the generations of flesh and blood: + +one comes to an end and another is born. + + +Every work rots and falls away, + +and its builder will depart with it. + + + +Blessed is the man who meditates on wisdom, + +and who reasons by his understanding. + + +He who considers her ways in his heart + +will also have knowledge of her secrets. + + +Go after her like a hunter, + +and lie in wait in her paths. + + +He who peers in at her windows + +will also listen at her doors. + + +He who lodges close to her house + +will also fasten a nail in her walls. + + +He will pitch his tent near at hand to her, + +and will lodge in a lodging where good things are. + + +He will set his children under her shelter, + +and will rest under her branches. + + +By her he will be covered from heat, + +and will lodge in her glory. + + + + +He who fears the Lord will do this. + +He who has possession of the law will obtain her. + + +She will meet him like a mother, + +and receive him like a wife married in her virginity. + + +She will feed him with bread of understanding + +and give him water of wisdom to drink. + + +He will be stayed upon her, and will not be moved. + +He will rely upon her, and will not be confounded. + + +She will exalt him above his neighbors. + +She will open his mouth in the midst of the congregation. + + +He will inherit joy, a crown of gladness, + +and an everlasting name. + + +Foolish men will not obtain her. + +Sinners will not see her. + + +She is far from pride. + +Liars will not remember her. + + +Praise is not attractive in the mouth of a sinner; + +for it was not sent to him from the Lord. + + +For praise will be spoken in wisdom; + +The Lord will prosper it. + + + +Don’t say, “It is through the Lord that I fell away;” + +for you shall not do the things that he hates. + + +Don’t say, “It is he that caused me to err;” + +for he has no need of a sinful man. + + +The Lord hates every abomination; + +and those who fear him don’t love them. + + +He himself made man from the beginning + +and left him in the hand of his own counsel. + + +If you choose, you can keep the commandments. + +To be faithful is a matter of your choice. + + +He has set fire and water before you. + +You will stretch forth your hand to whichever you desire. + + +Before man is life and death. + +Whichever he likes, it will be given to him. + + +For the wisdom of the Lord is great. + +He is mighty in power, and sees all things. + + +His eyes are upon those who fear him. + +He knows every act of man. + + +He has not commanded any man to be ungodly. + +He has not given any man license to sin. + + + + + +Don’t desire a multitude of unprofitable children, + +neither delight in ungodly sons. + + +If they multiply, don’t delight in them + +unless the fear of the Lord is in them. + + +Don’t trust in their life. + +Don’t rely on their numbers; + +for one can be better than a thousand, + +and to die childless than to have ungodly children. + + +For from one who has understanding, a city will be populated, + +but a race of wicked men will be made desolate. + + +I have seen many such things with my eyes. + +My ear has heard mightier things than these. + + + +In a congregation of sinners, a fire will be kindled. + +In a disobedient nation, wrath is kindled. + + +He was not pacified toward the giants of old time, + +who revolted in their strength. + + +He didn’t spare Lot’s neighbors, + +whom he abhorred for their pride. + + +He didn’t pity the people of perdition + +who were taken away in their sins, + + +or in like manner, the six hundred thousand footmen + +who were gathered together in the hardness of their hearts. + + +Even if there is one stiff-necked person, + +it is a marvel if he will be unpunished; + +for mercy and wrath are both with him who is mighty to forgive, + +and he pours out wrath. + + +As his mercy is great, so is his correction also. + +He judges a man according to his works. + + +The sinner will not escape with plunder. + +The perseverance of the godly will not be frustrated. + + +He will make room for every work of mercy. + +Each man will receive according to his works. + +16:15-16 +Verses 15 and 16 are omitted by the best authorities. + + + + +Don’t say, “I will be hidden from the Lord,” + +and “Who will remember me from on high?” + +I will not be known among so many people, + +for what is my soul in a boundless creation? + + +Behold, heaven, the heaven of heavens, + +the deep, and the earth, will be moved when he visits. + + +The mountains and the foundations of the earth together + +are shaken with trembling when he looks at them. + + +No heart will think about these things. + +Who could comprehend his ways? + + +Like a tempest which no man can see, + +so, the majority of his works are16:21 +Gr. +among hidden things. + hidden. + + +Who will declare his works of righteousness? + +Who will wait for them? + +For his covenant is afar off.16:22 +The remainder of this verse is omitted by the best authorities. + + + +He who is lacking in16:23 +Gr. +heart. + understanding thinks about these things. + +An unwise and erring man thinks foolishly. + + + +My son, listen to me, learn knowledge, + +and heed my words with your heart. + + +I will impart instruction with precision, + +and declare knowledge exactly. + + + +In the judgment of the Lord are his works from the beginning. + +From the making of them he determined their boundaries. + + +He arranged his works for all time, + +and their beginnings to their generations. + +They aren’t hungry or weary, + +and they don’t cease from their works. + + +No one pushes aside his neighbor. + +They will never disobey his word. + + +After this also the Lord looked at the earth + +and filled it with his blessings. + + +All manner of living things covered its surface, + +and they return into it. + + + + + +The Lord created mankind out of earth, + +and turned them back to it again. + + +He gave them days by number, and a set time, + +and gave them authority over the things that are on it. + + +He endowed them with strength proper to them, + +and made them according to his own image. + + +He put the fear of man upon all flesh, + +and gave him dominion over beasts and birds. + +17:5 +Verse 5 is omitted by the best authorities. + + + +He gave them counsel, tongue, eyes, + +ears, and heart to have understanding. + + +He filled them with the knowledge of wisdom, + +and showed them good and evil. + + +He set his eye upon their hearts, + +to show them the majesty of his works. + +17:9 +Verse 9 is omitted by the best authorities. + + + +And they will praise his holy name, + +17:10 +This line is added by the best authorities. +that they may declare the majesty of his works. + + +He added to them knowledge, + +and gave them a law of life for a heritage. + + +He made an everlasting covenant with them, + +and showed them his decrees. + + +Their eyes saw the majesty of his glory. + +Their ears heard the glory of his voice. + + +He said to them, “Beware of all unrighteousness.” + +So he gave them commandment, each man concerning his neighbor. + + + +Their ways are ever before him. + +They will not be hidden from his eyes. + +17:16 +Verses 16, 18, and 21 are omitted by the best authorities. + + + +17:17 +The preceding part of this verse is omitted by the best authorities. +For every nation he appointed a ruler, + +but Israel is the Lord’s portion. + +17:18 +Verses 16, 18, and 21 are omitted by the best authorities. + + +All their works are as clear as the sun before him. + +His eyes are continually upon their ways. + + +Their iniquities are not hidden from him. + +All their sins are before the Lord. + +17:21 +Verses 16, 18, and 21 are omitted by the best authorities. + + +With him the alms of a man is as a signet. + +He will keep a man’s kindness as the pupil of the eye.17:22 +The remainder of this verse is omitted by the best authorities. + + + +Afterwards he will rise up and repay them, + +and give their repayment upon their head. + + +However to those who repent he grants a return. + +He comforts those who are losing hope. + + + +Return to the Lord, and forsake sins. + +Make your prayer before his face offend less. + + +Turn again to the Most High, and turn away from iniquity.17:26 +A line is here omitted by the best authorities. + + +Greatly hate the abominable thing. + + +Who will give praise to the Most High in Hades, + +in place of the living who return thanks? + + +Thanksgiving perishes from the dead, as from one who doesn’t exist. + +He who is in life and health will praise the Lord. + + +How great is the mercy of the Lord, + +and his forgiveness to those who turn to him! + + +For humans are not capable of everything, + +because the son of man is not immortal. + + +What is brighter than the sun? Yet even this can be eclipsed. + +So flesh and blood devise evil. + + +He looks upon the power of the height of heaven, + +while all men are earth and ashes. + + + + + +He who lives forever created the whole universe. + + +The Lord alone is just. + +18:3 +The remainder of verse 2, and verse 3, are omitted by the best authorities. + + + +He has given power to declare his works to no one. + +Who could trace out his mighty deeds? + + +Who could measure the strength of his majesty? + +Who could also proclaim his mercies? + + +As for the wondrous works of the Lord, it is not possible to take from them nor add to them, + +neither is it possible to explore them. + + +When a man has finished, then he is just at the beginning. + +When he stops, then he will be perplexed. + + +What is mankind, and what purpose do they serve? + +What is their good, and what is their evil? + + +The number of man’s days at the most are a hundred years. + + +As a drop of water from the sea, and a pebble from the sand, + +so are a few years in the day of eternity. + + +For this cause the Lord was patient over them, + +and poured out his mercy upon them. + + +He saw and perceived their end, that it is evil. + +Therefore he multiplied his forgiveness. + + +The mercy of a man is on his neighbor; + +but the mercy of the Lord is on all flesh: + +reproving, chastening, teaching, + +and bringing back, as a shepherd does his flock. + + +He has mercy on those who accept chastening, + +and that diligently seek after his judgments. + + + +My son, don’t add reproach to your good deeds, + +and no harsh words in any of your giving. + + +Doesn’t the dew relieve the scorching heat? + +So a word is better than a gift. + + +Behold, isn’t a word better than a gift? + +Both are with a gracious person. + + +A fool is ungracious and abusive. + +The gift of a grudging person consumes the eyes. + + + +Learn before you speak. + +Take care of your health before you get sick. + + +Before judgment, examine yourself, + +and in the hour of scrutiny you will find forgiveness. + + +Humble yourself before you get sick. + +In the time of sins, repent. + + +Let nothing hinder you to pay your vow in due time. + +Don’t wait until death to be released. + + +Before you make a vow, prepare yourself. + +Don’t be like a man who tests the Lord. + + +Think about the wrath coming in the days of the end, + +and the time of vengeance, when he turns away his face. + + +In the days of fullness remember the time of hunger. + +Remember poverty and lack in the days of wealth. + + +From morning until evening, the time changes. + +All things are speedy before the Lord. + + +A wise man is cautious in everything. + +In days of sinning, he will beware of offense.18:27 +The remainder of this verse is omitted by the best authorities. + + + +Every man of understanding knows wisdom. + +He will give thanks to him who found her. + + +They who were of understanding in sayings also became wise themselves, + +and poured out apt proverbs. + + + +Don’t go after your lusts. + +Restrain your appetites. + + +If you give fully to your soul the delight of her desire, + +she will make you18:31 +Or, +a rejoicing to + the laughing stock of your enemies. + + +Don’t make merry in much luxury, + +and don’t be tied to its expense. + + +Don’t be made a beggar by banqueting with borrowed money + +when you have nothing in your purse.18:33 +The remainder of this verse is omitted by the best authorities. + + + + + + +A worker who is a drunkard will not become rich. + +He who despises small things will fall little by little. + + +Wine and women will make men of understanding go astray. + +He who joins with prostitutes is reckless. + + +Decay and worms will have him as their heritage. + +A reckless soul will be taken away. + + + +He who is hasty to trust is shallow-hearted. + +He who sins offends against his own soul. + + +He who rejoices in wickedness will be condemned.19:5 +The remainder of this verse is omitted by the best authorities. + + + +19:6 +The preceding part of this verse is omitted by the best authorities. +He who hates gossip has less wickedness. + + +Never repeat what is told you, + +and you won’t lose anything. + + +Whether it is of friend or foe, don’t tell it. + +Unless it is a sin to you, don’t reveal it. + + +For if he has heard you and observed you, + +when the time comes, he will hate you. + + +Have you heard something? Let it die with you. + +Be brave: it will not make you burst! + + +A fool will travail in pain with a word, + +as a woman in labor with a child. + + +As an arrow that sticks in the flesh of the thigh, + +so is gossip in a fool. + + + +Question a friend; it may be he didn’t do it. + +If he did something, it may be that he may do it no more. + + +Question your neighbor; it may be he didn’t say it. + +If he has said it, it may be that he may not say it again. + + +Question a friend; for many times there is slander. + +Don’t trust every word. + + +There is one who slips, and not from the heart. + +Who is he who hasn’t sinned with his tongue? + + +Reprove your neighbor before you threaten him; + +and give place to the law of the Most High. + +19:18-19 +Verses 18 and 19 are omitted by the best authorities. + + + +All wisdom is the fear of the Lord. + +In all wisdom is the doing of the law. + +19:21 +The remainder of verse 20 and verse 21 are omitted by the best authorities. + + + +The knowledge of wickedness is not wisdom. + +The prudence of sinners is not counsel. + + +There is a wickedness, and it is an abomination. + +There is a fool lacking in wisdom. + + +Better is one who has little understanding, and fears God, + +than one who has much intelligence and transgresses the law. + + +There is an exquisite subtlety, and it is unjust. + +And there is one who perverts favor to gain a judgment.19:25 +The remainder of this verse is omitted by the best authorities. + + + +There is one who does wickedly, who hangs down his head with mourning; + +but inwardly he is full of deceit, + + +bowing down his face, and pretending to be deaf in one ear. + +Where he isn’t known, he will take advantage of you. + + +And if for lack of power he is hindered from sinning, + +if he finds opportunity, he will do mischief. + + +A man will be known by his appearance. + +One who has understanding will be known by his face when you meet him. + + +A man’s attire, grinning laughter, + +and the way he walks show what he is. + + + + + +There is a reproof that is not timely; + +and there is a person who is wise enough to keep silent. + + +How good is it to reprove, rather than to be angry. + +He who confesses will be kept back from harm. + +20:3 +Verse 3 is omitted by the best authorities. + + + +As is the lust of a eunuch to deflower a virgin, + +so is he who executes judgments with violence. + + +There is one who keeps silent and is found wise; + +and there is one who is hated for his much talk. + + +There is one who keeps silent, for he has no answer to make; + +And there is one who keeps silent, knowing when to speak. + + +A wise man will be silent until his time has come, + +but the braggart and fool will miss his time. + + +He who uses many words will be abhorred. + +He who takes authority for himself will be hated in it. + + + +There is a prosperity that a man finds in misfortunes; + +and there is a gain that turns to loss. + + +There is a gift that will not profit you; + +and there is a gift that pays back double. + + +There are losses because of glory; + +and there is one who has lifted up his head from a low estate. + + +There is one who buys much for a little, + +and pays for it again sevenfold. + + +He who is wise in words will make himself beloved; + +but the pleasantries of fools will be wasted. + + +The gift of a fool will not profit you,20:14 +A line of this verse is here omitted by the best authorities. + + +for he looks for repayment many times instead of one. + + +He will give little and insult much. + +He will open his mouth like a crier. + +Today he will lend, and tomorrow he will ask for it back. + +Such a one is a hateful man. + + +The fool will say, “I have no friend, + +and I have no thanks for my good deeds. + +Those who eat my bread have an evil tongue.” + + +How often, and of how many, will he be laughed to scorn!20:17 +The latter part of verse 17 is omitted by the best authorities. + + + + +A slip on a pavement is better than a slip with the tongue. + +So the fall of the wicked will come speedily. + + +A man without grace is a tale out of season. + +It will be continually in the mouth of the ignorant. + + +A parable from a fool’s mouth will be rejected; + +for he won’t tell it at the proper time. + + + +There is one who is hindered from sinning through lack. + +When he rests, he will not be troubled. + + +There is one who destroys his soul through bashfulness. + +By a foolish countenance, he will destroy it. + + +There is one who for bashfulness makes promises to his friend; + +and he makes him his enemy for nothing. + + + +A lie is an ugly blot on a person. + +It will be continually in the mouth of the ignorant. + + +A thief is better than a man who is continually lying, + +but they both will inherit destruction. + + +The destination of a liar is dishonor. + +His shame is with him continually. + + + +He who is wise in words will advance himself. + +And one who is prudent will please great men. + + +He who tills his land will raise his harvest high. + +He who pleases great men will get pardon for iniquity. + + +Favors and gifts blind the eyes of the wise, + +and as a muzzle on the mouth, turn away reproofs. + + +Wisdom that is hidden, and treasure that is out of sight— + +what profit is in either of them? + + +Better is a man who hides his folly + +than a man who hides his wisdom. + +20:32 +Verse 32 is omitted by the best authorities. + + + + + +My son, have you sinned? + +Do it no more; + +and ask forgiveness for your past sins. + + +Flee from sin as from the face of a snake; + +for if you go near, it will bite you. + +Its teeth are like lion’s teeth, + +slaying people’s souls. + + +All iniquity is as a two-edged sword. + +Its stroke has no healing. + + + +Terror and violence will waste away riches. + +So the house of an arrogant man will be laid waste. + + +Supplication from a poor man’s mouth reaches to the ears of21:5 +Gr. +him. + God, + +and his judgment comes speedily. + + +One who hates reproof is in the path of the sinner. + +He who fears the Lord will repent in his heart. + + +He who is mighty in tongue is known far away; + +but the man of understanding knows when he slips. + + + +He who builds his house with other men’s money + +is like one who gathers stones for his own tomb. + + +The congregation of wicked men is as a bundle of tow + +with a flame of fire at the end of them. + + +The way of sinners is paved with stones; + +and at the end of it is the pit of Hades. + + + +He who keeps the law becomes master of its intent. + +The fulfilment of the fear of the Lord is wisdom. + + +He who is not clever will not be instructed. + +There is a cleverness which makes bitterness abound. + + +The knowledge of a wise man will be made to abound as a flood, + +and his counsel as a fountain of life. + + +The inward parts of a fool are like a broken vessel. + +He will hold no knowledge. + + + +If a man of knowledge hears a wise word, + +he will commend it and add to it. + +The wanton man hears it, and it displeases him, + +so he throws it away behind his back. + + +The chatter of a fool is like a burden in the way, + +but grace will be found on the lips of the wise. + + +The utterance of the prudent man will be sought for in the congregation. + +They will ponder his words in their heart. + + + +As a house that is destroyed, so is wisdom to a fool. + +The knowledge of an unwise man is talk without sense.21:18 +Gr. +unexamined words. + + + +Instruction is as fetters on the feet of an unwise man, + +and as manacles on the right hand. + + +A fool lifts up his voice with laughter, + +but a clever man smiles quietly. + + +Instruction is to a prudent man as an ornament of gold, + +and as a bracelet upon his right arm. + + + +The foot of a fool rushes into a house, + +but a man of experience will be ashamed of entering. + + +A foolish man peers into the door of a house, + +but a man who is instructed will stand outside. + + +It is rude for someone to listen at a door, + +but a prudent person will be grieved with the disgrace. + + +The lips of strangers will be grieved at these things, + +but the words of prudent men will be weighed in the balance. + + + +The heart of fools is in their mouth, + +but the mouth of wise men is their heart. + + +When the ungodly curses an adversary, + +he curses his own soul. + + +A whisperer defiles his own soul, + +and will be hated wherever he travels. + + + + + +A slothful man is compared to a stone that is defiled. + +Everyone will hiss at him in his disgrace. + + +A slothful man is compared to the filth of a dunghill. + +Anyone who picks it up will shake it out of his hand. + + + +An undisciplined child is a disgrace to his father, + +and a foolish daughter is born to his loss. + + +A prudent daughter will inherit a husband of her own. + +She who brings shame is the grief of her father. + + +She who is arrogant brings shame on father and husband. + +She will be despised by both of them. + + +Ill-timed conversation is like music in mourning, + +but stripes and correction are wisdom in every season. + + + +He who teaches a fool is like one who glues potsherds together, + +even like one who wakes a sleeper out of a deep sleep. + + +He who teaches a fool is as one who teaches a man who slumbers. + +In the end he will say, “What is it?” + +22:9-10 +Verses 9 and 10 are omitted by the best authorities. + + + +Weep for the dead, for he lacks light. + +Weep for a fool, for he lacks understanding. + +Weep more sweetly for the dead, because he has found rest, + +but the life of the fool is worse than death. + + +Mourning for the dead lasts seven days, + +but for a fool and an ungodly man, it lasts all the days of his life. + + + +Don’t talk much with a foolish man, + +and don’t go to one who has no understanding. + +Beware of him, lest you have trouble and be defiled in his onslaught. + +Turn away from him, and you will find rest, + +and you won’t be wearied in his madness. + + +What would be heavier than lead? + +What is its name, but “Fool”? + + +Sand, salt, and a mass of iron is easier to bear + +than a man without understanding. + + + +Timber girded and bound into a building will not be released with shaking. + +So a heart established in due season on well advised counsel will not be afraid. + + +A heart settled upon a thoughtful understanding + +is as an ornament of plaster on a polished wall. + + +Fences set on a high place will not stand against the wind; + +so a fearful heart in the imagination of a fool will not stand against any fear. + + + +He who pricks the eye will make tears fall. + +He who pricks the heart makes it show feeling. + + +Whoever casts a stone at birds scares them away. + +He who insults a friend will dissolve friendship. + + +If you have drawn a sword against a friend, don’t despair, + +for there may be a way back. + + +If you have opened your mouth against a friend, don’t be afraid, + +for there may be reconciliation, + +unless it is for insulting, arrogance, disclosing of a secret, or a treacherous blow— + +for these things any friend will flee. + + + +Gain trust with your neighbor in his poverty, + +that in his prosperity you may have gladness. + +Stay steadfast to him in the time of his affliction, + +that you may be heir with him in his inheritance.22:23 +The remainder of this verse is omitted by the best authorities. + + + +Before fire is the vapor and smoke of a furnace, + +so insults precede bloodshed. + + +I won’t be ashamed to shelter a friend. + +I won’t hide myself from his face. + + +If any evil happens to me because of him, + +everyone who hears it will beware of him. + + + +Who will set a watch over my mouth, + +and a seal of shrewdness upon my lips, + +that I may not fall from it, and that my tongue may not destroy me? + + + + +O Lord, Father and Master of my life, + +don’t abandon me to their counsel. + +Don’t let me fall because of them. + + +Who will set scourges over my thought, + +and a discipline of wisdom over my heart, + +that they spare me not for my errors, + +and not overlook their sins? + + +Otherwise my errors might be multiplied, + +and my sins abound, + +I fall before my adversaries, + +and my enemy rejoice over me.23:3 +The remainder of this verse is omitted by the best authorities. + + +O Lord, Father and God of my life, + +don’t give me a haughty eyes,23:4 +The remainder of this verse is omitted by the best authorities. + + +and turn away evil desire from me.23:5 +The remainder of this verse is omitted by the best authorities. + + +Let neither gluttony nor lust overtake me. + +Don’t give me over to a shameless mind. + + + +Listen, my children, to the discipline of the mouth. + +He who keeps it will not be caught. + + +The sinner will be overpowered through his lips. + +By them, the insulter and the arrogant will stumble. + + +Don’t accustom your mouth to an oath, + +and don’t be accustomed to naming the Holy One, + + +for as a servant who is continually scourged will not lack bruises, + +so he also who swears and continually utters the Name will not be cleansed from sin. + + +A man of many oaths will be filled with iniquity. + +The scourge will not depart from his house. + +If he offends, his sin will be upon him. + +If he disregards it, he has sinned doubly. + +If he has sworn falsely, he will not be justified, + +for his house will be filled with calamities. + + + +There is a manner of speech that is clothed with death. + +Let it not be found in the heritage of Jacob, + +for all these things will be far from the godly, + +and they will not wallow in sins. + + +Don’t accustom your mouth to gross rudeness, + +for it involves sinful speech. + + +Remember your father and your mother, + +for you sit in the midst of great men, + +that you be not forgetful before them, + +and become a fool by your bad habit; + +so you may wish that you had not been born, + +and curse the day of your birth. + + +A man who is accustomed to abusive language + +won’t be corrected all the days of his life. + + + +Two sorts of people multiply sins, + +and the third will bring wrath: + +a hot passion, like a burning fire, will not be quenched until it is consumed; + +a fornicator in the body of his flesh will never cease until he has burned out the fire. + + +All bread is sweet to a fornicator. + +He will not cease until he dies. + + +A man who goes astray from his own marriage bed + +says in his heart, “Who sees me? + +Darkness is around me, and the walls hide me. + +No one sees me. Of whom am I afraid? + +The Most High will not remember my sins.” + + +The eyes of men are his terror. + +He doesn’t know that the eyes of the Lord are ten thousand times brighter than the sun, + +seeing all the ways of men, + +and looking into secret places. + + +All things were known to him before they were created, + +and also after they were completed. + + +This man will be punished in the streets of the city. + +He will be seized where he least expects it. + + + +So also is a wife who leaves her husband, + +and produces an heir by another man. + + +For first, she was disobedient in the law of the Most High. + +Second, she trespassed against her own husband. + +Third, she played the adulteress in fornication, + +and had children by another man. + + +She shall be brought out into the congregation. + +Her punishment will extend to her children. + + +Her children will not take root. + +Her branches will bear no fruit. + + +She will leave her memory for a curse. + +Her reproach won’t be blotted out. + + +And those who are left behind will know that there is nothing better than the fear of the Lord, + +and nothing sweeter than to heed the commandments of the Lord. + +23:28 +Verse 28 is omitted by the best authorities. + + + + +Wisdom will praise her own soul, + +and will proclaim her glory in the midst of her people. + + +She will open her mouth in the congregation of the Most High, + +and proclaim her glory in the presence of his power. + + +“I came out of the mouth of the Most High, + +and covered the earth as a mist. + + +I lived in high places, + +and my throne is in the pillar of the cloud. + + +Alone I surrounded the circuit of heaven, + +and walked in the depth of the abyss. + + +In the waves of the sea, and in all the earth, + +and in every people and nation, I obtained a possession. + + +With all these I sought rest. + +In whose inheritance shall I lodge? + + +Then the Creator of all things gave me a command. + +He who created me made my tent to rest, + +and said, ‘Let your dwelling be in Jacob, + +and your inheritance in Israel.’ + + +He created me from the beginning, before the ages. + +For all ages, I will not cease to exist. + + +In the holy tabernacle, I ministered before him. + +So I was established in Zion. + + +In the beloved city, likewise he gave me rest. + +In Jerusalem was my domain. + + +I took root in a people that was honored, + +even in the portion of the Lord’s own inheritance. + + + +I was exalted like a cedar in Lebanon, + +And like a cypress tree on the mountains of Hermon. + + +I was exalted like a palm tree on the sea shore, + +like rose bushes in Jericho, + +and like a fair olive tree in the plain. + +I was exalted like a plane tree. + + +Like cinnamon and aspalathus, I have given a scent to perfumes. + +Like choice myrrh, I spread abroad a pleasant fragrance, + +like24:15 +See Exodus 30:34. + galbanum, onycha, stacte, + +and as the smell of frankincense in the tabernacle. + + +Like the terebinth, I stretched out my branches. + +My branches are glorious and graceful. + + +Like the vine, I put forth grace. + +My flowers are the fruit of glory and riches. + +24:18 +Verse 18 is omitted by the best authorities. + + + +“Come to me, all you who desire me, + +and be filled with my fruits. + + +For my memory is sweeter than honey, + +and my inheritance than the honeycomb. + + +Those who eat me will be hungry for more. + +Those who drink me will be thirsty for more. + + +He who obeys me will not be ashamed. + +Those who work with me will not sin.” + + + +All these things are the book of the covenant of the Most High God, + +the law which Moses commanded us for an inheritance for the assemblies of Jacob. + +24:24 +Verse 24 is omitted by the best authorities. + + +It is he who makes wisdom abundant, as Pishon, + +and as Tigris in the days of first fruits. + + +He makes understanding full as the Euphrates, + +and as the Jordan in the days of harvest, + + +who makes instruction shine forth as the light, + +as Gihon in the days of vintage. + + +The first man didn’t know her perfectly. + +In like manner, the last has not explored her. + + +For her thoughts are filled from the sea, + +and her counsels from the great deep. + + + +I came out as a canal stream from a river, + +and as an irrigation ditch into a garden. + + +I said, “I will water my garden, + +and will drench my garden bed.” + +Behold, my stream became a river, + +and my river became a sea. + + +I will yet bring instruction to light as the morning, + +and will make these things clear from far away. + + +I will continue to pour out teaching like prophecy, + +and leave it to all generations. + + +See that I have not labored for myself only, + +but for all those who diligently seek wisdom. + + + + + +I enjoy three things, + +and they are beautiful before the Lord and men: + +the agreement of kindred, + +the friendship of neighbors, + +and a woman and her husband who walk together in agreement. + + +But my soul hates three sorts of people, + +and I am greatly offended at their life: + +a poor man who is arrogant, + +a rich man who is a liar, + +and an old fool who is an adulterer. + + + +If you gathered nothing in your youth, + +how could you find anything in your old age? + + +How beautiful a thing is judgment in the gray-haired, + +and for elders to know good counsel! + + +How beautiful is the wisdom of old men, + +and understanding and counsel to men who are in honor! + + +Much experience is the crown of the aged. + +Their glory is the fear of the Lord. + + + +There are nine things that I have thought of, and in my heart counted happy, + +and the tenth I will utter with my tongue: + +a man who has joy with his children, + +and a man who lives and sees the fall of his enemies. + + +Happy is he who dwells with a wife of understanding, + +he who has not slipped with his tongue, + +and he who has not served a man who is unworthy of him. + + +Happy is he who has found prudence, + +and he who speaks in the ears of those who listen. + + +How great is he who has found wisdom! + +Yet there is none greater than one who fears the Lord. + + +The fear of the Lord surpasses all things. + +To whom shall he who holds it be likened? + +25:12 +Verse 12 is omitted by the best authorities. + + + +Any wound but a wound of the heart! + +Any wickedness but the wickedness of a woman! + + +Any calamity but a calamity from those who hate me! + +Any vengeance but the vengeance of enemies! + + +There is no venom worse than a snake’s venom. + +There is no wrath worse than an enemy’s wrath. + + + +I would rather dwell with a lion and a dragon + +than keep house with a wicked woman. + + +The wickedness of a woman changes her appearance, + +and darkens her countenance like that of a bear. + + +Her husband will sit among his neighbors, + +and when he hears it, he sighs bitterly. + + +All malice is small compared to the malice of a woman. + +Let the portion of a sinner fall on her. + + +As walking up a sandy hill is to the feet of the aged, + +so is a wife full of words to a quiet man. + + +Don’t be ensnared by a woman’s beauty. + +Don’t desire a woman for her beauty. + + +There is anger, impudence, and great reproach + +if a woman supports her husband. + + +A wicked woman is abasement of heart, + +sadness of countenance, and a wounded heart. + +A woman who won’t make her husband happy + +is like hands that hang down, and weak knees. + + +The beginning of sin came from a woman. + +Because of her, we all die. + + +Don’t give water an outlet, + +and don’t give a wicked woman freedom of speech. + + +If she doesn’t go as you direct, + +cut her away from your flesh.25:26 +The remainder of this verse is omitted by the best authorities. + + + + + +Happy is the husband of a good wife. + +The number of his days will be doubled. + + +A faithful wife gives joy to her husband. + +He will fulfill his years in peace. + + +A good wife is a great gift. + +She will be given to those who fear the Lord. + + +Whether a man is rich or poor, + +a good heart makes a cheerful face at all times. + + + +Of three things my heart was afraid, + +and concerning the fourth26:5 +Gr. +countenance. + kind I made supplication: + +The slander of a city, the assembly of a mob, and a false accusation. + +All these are more grievous than death. + + +A grief of heart and sorrow is a woman who is jealous of another woman. + +Her tongue-lashing makes it known to all. + + +A wicked woman is like a chafing yoke. + +He who takes hold of her is like one who grasps a scorpion. + + +A drunken woman causes great wrath. + +She will not cover her own shame. + + +The fornication of a woman is in the lifting up of her eyes; + +it will be known by her eyelids. + + +Keep strict watch on a headstrong daughter, + +lest she find liberty for herself, and use it. + + +Watch out for an impudent eye, + +and don’t be surprised if it sins against you. + + +She will open her mouth like a thirsty traveller, + +and drink from every water that is near. + +She will sit down at every post, + +and open her quiver to any arrow. + + + +The grace of a wife will delight her husband. + +Her knowledge will strengthen26:13 +or, fatten his bones. + + +A silent woman is a gift of the Lord. + +There is nothing worth so much as a well-instructed soul. + + +A modest woman is grace upon grace. + +There are no scales that can weigh the value of a self-controlled soul. + + +As the sun when it arises in the highest places of the Lord, + +so is the beauty of a good wife in her well-organized home. + + +As the lamp that shines upon the holy lampstand, + +so is the beauty of the face on a well-proportioned body. + + +As the golden pillars are upon a base of silver, + +so are beautiful feet with the breasts of one who is steadfast. + +26:19-27 +Verses 19-27 are omitted by the best authorities. + + + + +For two things my heart is grieved, + +and for the third anger comes upon me: + +a warrior who suffers for poverty, + +men of understanding who are counted as garbage, + +and one who turns back from righteousness to sin— + +the Lord will prepare him for the sword! + + + +It is difficult for a merchant to keep himself from wrong doing, + +and for a retailer to be acquitted of sin. + + + + +Many have sinned for profit. + +He who seeks to multiply wealth will turn his eye away. + + +As a nail will stick fast between the joinings of stones, + +so sin will thrust itself in between buying and selling. + + +Unless a person holds on diligently to the fear of the Lord, + +his house will be overthrown quickly. + + + +In the shaking of a sieve, the refuse remains, + +so does the filth of man in his thoughts. + + +The furnace tests the potter’s vessels; + +so the test of a person is in his thoughts. + + +The fruit of a tree discloses its cultivation, + +so is the utterance of the thought of a person’s heart. + + +Praise no man before you hear his thoughts, + +for this is how people are tested. + + + +If you follow righteousness, you will obtain it, + +and put it on like a long robe of glory. + + +Birds will return to their own kind, + +so truth will return to those who practice it. + + +The lion lies in wait for prey. + +So does sin for those who do evil. + + + +The discourse of a godly man is always wise, + +but the fool changes like the moon. + + +Limit your time among people void of understanding, + +but persevere among the thoughtful. + + +The talk of fools is offensive. + +Their laughter is wantonly sinful. + + +Their talk with much swearing makes hair stand upright. + +Their strife makes others plug their ears. + + +The strife of the proud leads to bloodshed. + +Their abuse of each other is a grievous thing to hear. + + + +He who reveals secrets destroys trust, + +and will not find a close friend. + + +Love a friend, and keep faith with him; + +but if you reveal his secrets, + +you shall not follow him; + + +for as a man has destroyed his enemy, + +so you have destroyed the friendship of your neighbor. + + +As a bird which you have released out of your hand, + +so you have let your neighbor go, and you will not catch him again. + + +Don’t pursue him, for he has gone far away, + +and has escaped like a gazelle out of the snare. + + +For a wound may be bound up, and after abuse there may be reconciliation; + +but he who reveals secrets is without hope. + + + +One who winks the eye contrives evil things; + +and those who know him will keep their distance. + + +When you are present, he will speak sweetly, + +and will admire your words; + +but afterward he will twist his speech + +and set a trap in your words. + + +I have hated many things, but nothing like him. + +The Lord will hate him. + + + +One who casts a stone straight up casts it on his own head. + +A deceitful blow opens wounds. + + +He who digs a pit will fall into it. + +He who sets a snare will be caught in it. + + +He who does evil things, they will roll back upon him, + +and he will not know where they came from. + + +Mockery and reproach are from the arrogant. + +Vengeance lies in wait for them like a lion. + + +Those who rejoice at the fall of the godly will be caught in a snare. + +Anguish will consume them before they die. + + + +Wrath and anger, these also are abominations. + +A sinner will possess them. + + + + +He who takes vengeance will find vengeance from the Lord, + +and he will surely make his sins firm. + + +Forgive your neighbor the hurt that he has done, + +and then your sins will be pardoned when you pray. + + +Does anyone harbor anger against another + +and expect healing from the Lord? + + +Upon a man like himself he has no mercy, + +and does he make supplication for his own sins? + + +He himself, being flesh, nourishes wrath. + +Who will make atonement for his sins? + + +Remember your last end, and stop enmity. + +Remember corruption and death, and be true to the commandments. + + +Remember the commandments, and don’t be angry with your neighbor. + +Remember the covenant of the Highest, and overlook ignorance. + + + +Abstain from strife, and you will diminish your sins, + +for a passionate man will kindle strife. + + +A man who is a sinner will trouble friends + +and sow discord among those who are at peace. + + +As is the fuel of the fire, so it will burn; + +and as the stoutness of the strife is, so it will burn. + +As is the strength of the man, so will be his wrath; + +and as is his wealth, so he will exalt his anger. + + +A contention begun in haste kindles a fire; + +and hasty fighting sheds blood. + + + +If you blow on a spark, it will burn; + +and if you spit upon it, it will be quenched. + +Both of these come out of your mouth. + + + +Curse the whisperer and double-tongued, + +for he has destroyed many who were at peace. + + +A slanderer has shaken many, + +and dispersed them from nation to nation. + +It has pulled down strong cities + +and overthrown the houses of great men. + + +A slanderer has cast out brave women + +and deprived them of their labors. + + +He who listens to it will not find rest, + +nor will he live quietly. + + +The stroke of a whip makes a mark in the flesh, + +but the stroke of a tongue will break bones. + + +Many have fallen by the edge of the sword, + +yet not so many as those who have fallen because of the tongue. + + +Happy is he who is sheltered from it, + +who has not passed through its wrath, + +who has not drawn its yoke, + +and has not been bound with its bands. + + +For its yoke is a yoke of iron, + +and its bands are bands of brass. + + +Its death is an evil death, + +and Hades is better than it. + + +It will not have rule over godly men. + +They will not be burned in its flame. + + +Those who forsake the Lord will fall into it. + +It will burn among them, and won’t be quenched. + +It will be sent against them like a lion. + +It will destroy them like a leopard. + + +As you hedge your possession about with thorns, + +and secure your silver and your gold, + + +so make a balance and a weight for your words, + +and make a door and a bar for your mouth. + + +Take heed lest you slip with it, + +lest you fall before one who lies in wait. + + + + + +He who shows mercy will lend to his neighbor. + +He who strengthens him with his hand keeps the commandments. + + +Lend to your neighbor in time of his need. + +Repay your neighbor on time. + + +Confirm your word, and keep faith with him; + +and at all seasons you will find what you need. + + +Many have considered a loan to be a windfall, + +and have given trouble to those who helped them. + + +Until he has received, he will kiss a man’s hands. + +For his neighbor’s money he will speak submissively. + +Then when payment is due, he will prolong the time, + +return excuses, and complain about the season. + + +If he prevails, the creditor will hardly receive half; + +and he will count it as a windfall. + +If not, he has deprived him of his money, + +and he has gotten him for an enemy without cause. + +He will pay him with cursing and railing. + +Instead of honor, he will pay him disgrace. + + +Many on account of fraud have turned away. + +They are afraid of being defrauded for nothing. + + +However be patient with a man in poor estate. + +Don’t keep him waiting for your alms. + + +Help a poor man for the commandment’s sake. + +According to his need don’t send him empty away. + + +Lose your money for a brother and a friend. + +Don’t let it rust under a stone and be lost. + + +Allocate your treasure according to the commandments of the Most High + +and it will profit you more than gold. + + +Store up almsgiving in your store-chambers + +and it will deliver you out of all affliction. + + +It will fight for you against your enemy + +better than a mighty shield and a ponderous spear. + + + +A good man will be surety for his neighbor. + +He who has lost shame will fail him. + + +Don’t forget the kindness of your guarantor, + +for he has given his life for you. + + +A sinner will waste the property of his guarantor. + + +He who is thankless will fail him who delivered him. + + +Being surety has undone many who were prospering + +and shaken them as a wave of the sea. + +It has driven mighty men from their homes. + +They wandered among foreign nations. + + +A sinner who falls into suretiship and undertakes contracts for work + +will fall into lawsuits. + + +Help your neighbor according to your power, + +and be careful not to fall yourself. + + + +The essentials of life are water, bread, + +a garment, and a house for privacy. + + +Better is the life of a poor man under a shelter of logs + +than sumptuous fare in another man’s house. + + +With little or with much, be well satisfied.29:23 +The remainder of this verse is omitted by the best authorities. + + + +It is a miserable life to go from house to house. + +Where you are a guest, you dare not open your mouth. + + +You will entertain, serve drinks, and have no thanks. + +In addition to this, you will hear bitter words. + + +“Come here, you sojourner, set a table, + +and if you have anything in your hand, feed me with it.” + + +“Leave, you sojourner, for an honored guest is here. + +My brother has come to be my guest. I need my house.” + + +These things are grievous to a man of understanding: + +The scolding about lodging and the insults of creditors. + + + + + +He who loves his son will continue to lay stripes upon him, + +that he may have joy from him in the end. + + +He who chastises his son will have profit from him, + +and will brag about him among his acquaintances. + + +He who teaches his son will provoke his enemy to jealousy. + +Before friends, he will rejoice in him. + + +His father dies, and is as though he had not died; + +for he has left one behind him like himself. + + +In his life, he saw his son and rejoiced. + +When he died, it was without regret. + + +He left behind him an avenger against his enemies, + +and one to repay kindness to his friends. + + + +He who makes too much of his son will bind up his wounds. + +His heart will be troubled at every cry. + + +An unbroken horse becomes stubborn. + +An unrestrained son becomes headstrong. + + +Pamper your child, and he will make you afraid. + +Play with him, and he will grieve you. + + +Don’t laugh with him, lest you have sorrow with him, + +and you gnash your teeth in the end. + + +Give him no liberty in his youth, + +and don’t ignore his follies.30:11 +This line and the previous two lines are absent from some older MSS. + + +30:12 +These three lines are absent from the oldest MSS.Bow down his neck in his youth, + +and beat him on the sides while he is a child, + +lest he become stubborn, and be disobedient to you, + +and there be sorrow to your soul.30:12 +These three lines are absent from the oldest MSS. + + +Chastise your son, and give him work, + +lest his shameless behavior be an offense to you. + + + +Better is a poor man who is healthy and fit, + +than a rich man who is afflicted in his body. + + +Health and fitness are better than all gold, + +and a strong body better than wealth without measure. + + +There is no wealth better than health of body. + +There is no gladness above the joy of the heart. + + +Death is better than a bitter life, + +and eternal rest than a continual sickness. + + + +Good things poured out upon a mouth that is closed + +are like food offerings laid upon a grave. + + +What does an offering profit an idol? + +For it can’t eat or smell. + +So is he who is punished by the Lord, + + +seeing with his eyes and groaning, + +like a eunuch embracing a virgin and groaning. + + + +Don’t give your soul to sorrow. + +Don’t afflict yourself deliberately. + + +Gladness of heart is the life of a man. + +Cheerfulness of a man lengthens his days. + + +Love your own soul, and comfort your heart. + +Remove sorrow far from you, + +for sorrow has destroyed many, + +and there is no profit in it. + + +Envy and wrath shorten life. + +Anxiety brings old age before its time. + + +Those who are cheerful and merry + +will benefit from their food. + + + + +Wakefulness that comes from riches consumes the flesh, + +and anxiety about it takes away sleep. + + +Wakeful anxiety will crave slumber. + +In a severe disease, sleep will be broken. + + + +A rich man toils in gathering money together. + +When he rests, he is filled with his good things. + + +A poor man toils in lack of substance. + +When he rests, he becomes needy. + + +He who loves gold won’t be justified. + +He who follows destruction will himself have his fill of it. + + +Many have been given over to ruin for the sake of gold. + +Their destruction meets them face to face. + + +It is a stumbling block to those who sacrifice to it. + +Every fool will be taken by it. + + +Blessed is the rich person who is found blameless, + +and who doesn’t go after gold. + + +Who is he, that we may call him blessed? + +For he has done wonderful things among his people. + + +Who has been tried by it, and found perfect? + +Then let him boast. + +Who has had the power to transgress, and has not transgressed? + +And to do evil, and has not done it? + + +His prosperity will be made sure. + +The congregation will proclaim his alms. + + + +Do you sit at a great table? Don’t be greedy there. + +Don’t say, “There is a lot of food on it!” + + +Remember that a greedy eye is a wicked thing. + +What has been created more greedy than an eye? + +Therefore it sheds tears from every face. + + +Don’t stretch your hand wherever it looks. + +Don’t thrust yourself with it into the dish. + + +Consider your neighbor’s feelings by your own. + +Be discreet in every point. + + +Eat like a human being those things which are set before you. + +Don’t eat greedily, lest you be hated. + + +Be first to stop for manners’ sake. + +Don’t be insatiable, lest you offend. + + +And if you sit among many, + +Don’t reach out your hand before them. + + + +How sufficient to a well-mannered man is a very little. + +He doesn’t breathe heavily in his bed. + + +Healthy sleep comes from moderate eating. + +He rises early, and his wits are with him. + +The pain of wakefulness, colic, + +and griping are with an insatiable man. + + +And if you have been forced to eat, + +rise up in the middle of it, and you shall have rest. + + +Hear me, my son, and don’t despise me, + +and in the end you will appreciate my words. + +In all your works be skillful, + +and no disease will come to you. + + + +People bless him who is liberal with his food. + +The testimony of his excellence will be believed. + + +The city will murmur at him who is a stingy with his food. + +The testimony of his stinginess will be accurate. + + + +Don’t show yourself valiant in wine, + +for wine has destroyed many. + + +The furnace tests the temper of steel by dipping; + +so does wine test hearts in the quarreling of the proud. + + +Wine is as good as life to men, + +if you drink it in moderation. + +What life is there to a man who is without wine? + +It has been created to make men glad. + + +Wine drunk in season and in moderation + +is joy of heart and gladness of soul: + + +Wine drunk excessively is bitterness of soul, + +with provocation and conflict. + + +Drunkenness increases the rage of a fool to his hurt. + +It diminishes strength and adds wounds. + + + +Don’t rebuke your neighbor at a banquet of wine. + +Don’t despise him in his mirth. + +Don’t speak a word of reproach to him. + +Don’t distress him by making demands of him. + + + + +Have they made you ruler of a feast? + +Don’t be lifted up. + +Be among them as one of them. + +Take care of them first, and then sit down. + + +And when you have done all your duties, take your place, + +that you may be gladdened on their account, + +and receive a wreath for your good service. + + + +Speak, you who are older, for it’s your right, but with sound knowledge; + +and don’t interrupt the music. + + +Don’t pour out talk where there is a performance of music. + +Don’t display your wisdom at the wrong time. + + +As a ruby signet in a setting of gold, + +so is a music concert at a wine banquet. + + +As an emerald signet in a work of gold, + +so is musical melody with pleasant wine. + + + +Speak, young man, if you are obliged to, + +but no more than twice, and only if asked. + + +Sum up your speech, many things in few words. + +Be as one who knows and yet holds his tongue. + + +When among great men, don’t behave as their equal. + +When another is speaking, don’t babble. + + + +Lightning speeds before thunder. + +Approval goes before one who is modest. + + +Rise up in good time, and don’t be last. + +Go home quickly and don’t loiter + + +Amuse yourself there and do what is in your heart. + +Don’t sin by proud speech. + + +For these things bless your Maker, + +who gives you to drink freely of his good things. + + + +He who fears the Lord will receive discipline. + +Those who seek him early will find favor. + + +He who seeks the law shall be filled with it, + +but the hypocrite will stumble at it. + + +Those who fear the Lord will find true judgment, + +and will kindle righteous acts like a light. + + +A sinful man shuns reproof, + +and will find a judgment according to his will. + + + +A sensible person won’t neglect a thought. + +An insolent and proud man won’t crouch in fear, + +even after he has done a thing by himself without counsel. + + +Do nothing without counsel, + +but when you have acted, don’t regret it. + + +Don’t go in a way of conflict. + +Don’t stumble in stony places. + + +Don’t be overconfident on a smooth road. + + +Beware of your own children. + + +In every work guard your own soul, + +for this is the keeping of the commandments. + + + +He who believes the law gives heed to the commandment. + +He who trusts in the Lord will suffer no loss. + + + + +No evil will happen to him who fears the Lord, + +but in trials once and again he will deliver him. + + +A wise man will not hate the law, + +but he who is a hypocrite about it is like a boat in a storm. + + +A man of understanding will put his trust in the law. + +And the law is faithful to him, as when one asks a divine oracle. + + + +Prepare your speech, and so you will be heard. + +Bind up instruction, and make your answer. + + +The heart of a fool is like a cartwheel. + +His thoughts are like a rolling axle. + + +A stallion horse is like a mocking friend. + +He neighs under every one who sits upon him. + + + +Why does one day excel another, + +when all the light of every day in the year is from the sun? + + +They were distinguished by the Lord’s knowledge, + +and he varied seasons and feasts. + + +Some of them he exalted and hallowed, + +and some of them he has made ordinary days. + + +And all men are from the ground. + +Adam was created from dust. + + +In the abundance of his knowledge the Lord distinguished them, + +and made their ways different. + + +Some of them he blessed and exalted, + +and some of them he made holy and brought near to himself. + +Some of them he cursed and brought low, + +and overthrew them from their place. + + +As the clay of the potter in his hand, + +all his ways are according to his good pleasure, + +so men are in the hand of him who made them, + +to give to them according to his judgment. + + + +Good is the opposite of evil, + +and life is the opposite of death; + +so33:14 +A line of this verse is here omitted by the best authorities. + the sinner is the opposite of the godly. + + +Look upon all the works of the Most High like this, + +they come in pairs, one against another. + + + +I was the last on watch, + +like one who gleans after the grape gatherers. + + +By the Lord’s blessing I arrived before them, + +and filled my winepress like one who gathers grapes. + + +Consider that I labored not for myself alone, + +but for all those who seek instruction. + + +Hear me, you great men of the people, + +and listen with your ears, you rulers of the congregation. + + + +To son and wife, to brother and friend, + +don’t give power over yourself while you live, + +and don’t give your goods to another, + +lest you regret it and must ask for them. + + +While you still live and breath is in you, + +don’t give yourself over to anybody. + + +For it is better that your children should ask from you + +than that you should look to the hand of your children. + + +Excel in all your works. + +Don’t bring a stain on your honor. + + +In the day that you end the days of your life, + +in the time of death, distribute your inheritance. + + + +Fodder, a stick, and burdens are for a donkey. + +Bread, discipline, and work are for a servant. + + +Set your slave to work, and you will find rest. + +Leave his hands idle, and he will seek liberty. + + +Yoke and whip will bow the neck. + +For an evil slave there are racks and tortures. + + +Send him to labor, that he not be idle, + +for idleness teaches much mischief. + + +Set him to work, as is fit for him. + +If he doesn’t obey, make his fetters heavy. + + +Don’t be excessive toward any. + +Do nothing unjust. + + + +If you have a slave, treat him like yourself, + +because you have bought him with blood. + + +If you have a slave, treat him like yourself. + +For like your own soul, you will need him. + +If you treat him ill, and he departs and runs away, + + +which way will you go to seek him? + + + + + +Vain and false hopes are for a man void of understanding. + +Dreams give wings to fools. + + +As one who grasps at a shadow and follows after the wind, + +so is he who sets his mind on dreams. + + +The vision of dreams is a reflection, + +the likeness of a face near a face. + + +From an unclean thing what can be cleansed? + +From that which is false what can be true? + + +Divinations, and soothsayings, and dreams, are vain. + +The heart has fantasies like a woman in labor. + + +If they are not sent in a visitation from the Most High, + +don’t give your heart to them. + + +For dreams have led many astray. + +They have failed by putting their hope in them. + + +Without lying the law will be fulfilled. + +Wisdom is complete in a faithful mouth. + + + +A well-instructed man knows many things. + +He who has much experience will declare understanding. + + +He who has no experience knows few things. + +But he who has traveled increases cleverness. + + +I have seen many things in my travels. + +My understanding is more than my words. + + +I was often in danger even to death. + +I was preserved because of these experiences. + + +The spirit of those who fear the Lord will live, + +for their hope is in him who saves them. + + +Whoever fears the Lord won’t be afraid, and won’t be a coward, + +for he is his hope. + + +Blessed is the soul of him who fears the Lord. + +To whom does he give heed? Who is his support? + + +The eyes of the Lord are on those who love him, + +a mighty protection and strong support, + +a cover from the hot blast, a shade from the noonday sun, + +a guard from stumbling, and a help from falling. + + +He raises up the soul, and enlightens the eyes. + +He gives health, life, and blessing. + + + +He who sacrifices a thing wrongfully gotten, his offering is made in mockery. + +The mockeries of wicked men are not acceptable. + + +The Most High has no pleasure in the offerings of the ungodly, + +Neither is he pacified for sins by the multitude of sacrifices. + + +Like one who kills a son before his father’s eyes + +is he who brings a sacrifice from the goods of the poor. + + +The bread of the needy is the life of the poor. + +He who deprives him of it is a man of blood. + + +Like one who murders his neighbor is he who takes away his living. + +Like a shedder of blood is he who deprives a hireling of his hire. + + + +When one builds, and another pulls down, + +what profit do they have but toil? + + +When one prays, and another curses, + +whose voice will the Lord listen to? + + +He who washes himself after touching a dead body, and touches it again, + +what does he gain by his washing? + + +Even so a man fasting for his sins, + +and going again, and doing the same, + +who will listen to his prayer? + +What profit does he have in his humiliation? + + + + + +He who keeps the law multiplies offerings. + +He who heeds the commandments sacrifices a peace offering. + + +He who returns a kindness offers fine flour. + +He who gives alms sacrifices a thank offering. + + +To depart from wickedness pleases the Lord. + +To depart from unrighteousness is an atoning sacrifice. + + +See that you don’t appear in the presence of the Lord empty. + + +For all these things are done because of the commandment. + + +The offering of the righteous enriches the altar. + +The sweet fragrance of it is before the Most High. + + +The sacrifice of a righteous man is acceptable. + +It won’t be forgotten. + + +Glorify the Lord with generosity. + +Don’t reduce the first fruits of your hands. + + +In every gift show a cheerful countenance, + +And dedicate your tithe with gladness. + + +Give to the Most High according as he has given. + +As your hand has found, give generously. + + +For the Lord repays, + +and he will repay you sevenfold. + + + +Don’t plan to bribe him with gifts, for he will not receive them. + +Don’t set your mind on an unrighteous sacrifice, + +For the Lord is the judge, + +and with him is no respect of persons. + + +He won’t accept any person against a poor man. + +He will listen to the prayer of him who is wronged. + + +He will in no way despise the supplication of the fatherless + +or the widow, when she pours out her tale. + + +Don’t the tears of the widow run down her cheek? + +Isn’t her cry against him who has caused them to fall? + + +He who serves God according to his good pleasure will be accepted. + +His supplication will reach to the clouds. + + +The prayer of the humble pierces the clouds. + +until it comes near, he will not be comforted. + +He won’t depart until the Most High visits + +and he judges righteously and executes judgment. + + +And the Lord will not be slack, neither will he be patient toward them, + +until he has crushed the loins of the unmerciful. + +He will repay vengeance to the heathen + +until he has taken away the multitude of the arrogant + +and broken in pieces the sceptres of the unrighteous, + + +until he has rendered to every man according to his deeds, + +and repaid the works of men according to their plans, + +until he has judged the cause of his people, + +and he will make them rejoice in his mercy. + + +Mercy is as welcome in the time of his affliction, + +as clouds of rain in the time of drought. + + + + + +Have mercy upon us, O Lord the God of all, and look at us with favor; + + +and send your fear upon all the nations.36:2 +The remainder of this verse is omitted by the best authorities. + + + +Lift up your hand against the foreign nations + +and let them see your mighty power. + + +As you showed your holiness in us before them, + +so be magnified in them before us. + + +Let them know you, as we also have known you, + +that there is no God but only you, O God. + + +Show new signs, and work various wonders. + +Glorify your hand and your right arm.36:6 +The remainder of this verse is omitted by the best authorities. + + + +Raise up indignation and pour out wrath. + +Take away the adversary and destroy the enemy. + + +Hasten the time and remember your oath. + +Let them declare your mighty works. + + +Let him who escapes be devoured by raging fire. + +May those who harm your people find destruction. + + +Crush the heads of the rulers of the enemies + +who say, “There is no one but ourselves.” + + +Gather all the tribes of Jacob together, + +and36:11 +The ancient authorities read +I took them for my inheritance: +but the Greek text is here very confused. + take them for your inheritance, as from the beginning. + + +O Lord, have mercy upon the people that is called by your name, + +and upon Israel, whom you likened to a firstborn. + + +Have compassion upon the city of your sanctuary, + +Jerusalem, the place of your rest. + + +Fill Zion. Exalt your oracles + +and fill your people with your glory. + + +Give testimony to those who were your creatures in the beginning, + +and fulfill the prophecies that have been spoken in your name. + + +Reward those who wait for you, + +and men will put their trust in your prophets. + + +Listen, O Lord, to the prayer of your servants, + +according to the blessing of Aaron concerning your people; + +and all those who are on the earth will know + +that you are the Lord, the36:17 +Gr. +God of the ages. eternal God. + + + +The belly will eat any food, + +but one food is better than another. + + +The mouth tastes meats taken in hunting, + +so does an understanding heart detect false speech. + + +A contrary heart will cause heaviness. + +A man of experience will pay him back. + + +A woman will receive any man, + +but one daughter is better than another. + + +The beauty of a woman cheers the countenance. + +A man desires nothing more. + + +If kindness and humility are on her tongue, + +her husband is not like other sons of men. + + +He who gets a wife gets his richest treasure, + +a help meet for him and a pillar of support. + + +Where no hedge is, the property will be plundered. + +He who has no wife will mourn as he wanders. + + +For who would trust a nimble robber who skips from city to city? + +Even so, who would trust a man who has no nest, and lodges wherever he finds himself at nightfall? + + + + + +Every friend will say, “I also am his friend”; + +but there is a friend which is only a friend in name. + + +Isn’t there a grief in it even to death + +when a companion and friend is turned into an enemy? + + +O wicked imagination, why were you formed + +to cover the dry land with deceit? + + +There is a companion who rejoices in the gladness of a friend, + +but in time of affliction will be against him. + + +There is a companion who for the belly’s sake labors with his friend, + +yet in the face of battle will carry his buckler. + + +Don’t forget a friend in your soul. + +Don’t be unmindful of him in your riches. + + + +Every counselor extols counsel, + +but some give counsel in their own interest. + + +Let your soul beware of a counselor, + +and know in advance what is his interest + +(for he will take counsel for himself), + +lest he cast the lot against you, + + +and say to you, “Your way is good.” + +Then he will stand near you, to see what will happen to you. + + +Don’t take counsel with one who looks askance at you. + +Hide your counsel from those who are jealous of you. + + +Don’t consult with a woman about her rival, + +with a coward about war, + +with a merchant about business, + +with a buyer about selling, + +with an envious man about thankfulness, + +with an unmerciful man about kindliness, + +with a sluggard about any kind of work, + +with a hireling in your house about finishing his work, + +or with an idle servant about much business. + +Pay no attention to these in any matter of counsel. + + +But rather be continually with a godly man, + +whom you know to be a keeper of the commandments, + +who in his soul is as your own soul, + +and who will grieve with you, if you fail. + + +Make the counsel of your heart stand, + +for there is no one more faithful to you than it. + + +For a man’s soul is sometimes inclined to inform him + +better than seven watchmen who sit on high on a watch-tower. + + +Above all this ask the Most High + +that he may direct your way in truth. + + + +Let reason be the beginning of every work. + +Let counsel go before every action. + + +As a token of the changing of the heart, + + +four kinds of things rise up: + +good and evil, life and death. + +That which rules over them continually is the tongue. + + +There is one who is clever and the instructor of many, + +and yet is unprofitable to his own soul. + + +There is one who is subtle in words, and is hated. + +He will be destitute of all food. + + +For grace was not given to him from the Lord, + +because he is deprived of all wisdom. + + +There is one who is wise to his own soul; + +and the fruits of his understanding are trustworthy in the mouth. + + +A wise man will instruct his own people. + +The fruits of his understanding are trustworthy. + + +A wise man will be filled with blessing. + +All those who see him will call him happy. + + +The life of a man is counted by days. + +The days of Israel are innumerable. + + +The wise man will inherit confidence among his people. + +His name will live forever. + + + +My son, test your soul in your life. + +See what is evil for it, and don’t give in to it. + + +For not all things are profitable for all men. + +Not every soul has pleasure in everything. + + +Don’t be insatiable in any luxury. + +Don’t be greedy in the things that you eat. + + +For overeating brings disease, + +and gluttony causes nausea. + + +Because of gluttony, many have perished, + +but he who takes heed shall prolong his life. + + + + + +Honor a physician according to your need with the honors due to him, + +for truly the Lord has created him. + + +For healing comes from the Most High, + +and he shall receive a gift from the king. + + +The skill of the physician will lift up his head. + +He will be admired in the sight of great men. + + +The Lord created medicines out of the earth. + +A prudent man will not despise them. + + +Wasn’t water made sweet with wood, + +that its power might be known? + + +He gave men skill + +that he might be glorified in his marvelous works. + + +With them he heals + +and takes away pain. + + +With these, the pharmacist makes a mixture. + +God’s works won’t be brought to an end. + +From him, peace is upon the face of the earth. + + + +My son, in your sickness don’t be negligent, + +but pray to the Lord, and he will heal you. + + +Put away wrong doing, and direct your hands in righteousness. + +Cleanse your heart from all sin. + + +Give a sweet savor and a memorial of fine flour, + +and pour oil on your offering, according to your means. + + +Then give place to the physician, for truly the Lord has created him. + +Don’t let him leave you, for you need him. + + +There is a time when recovery is in their hands. + + +For they also shall ask the Lord + +to prosper them in diagnosis and in healing for the maintenance of life. + + +He who sins before his Maker, + +let him fall into the hands of the physician. + + + +My son, let your tears fall over the dead, + +and as one who suffers grievously, begin lamentation. + +Wind up his body with due honor. + +Don’t neglect his burial. + + +Make bitter weeping and make passionate wailing. + +Let your mourning be according to his merit, + +for one day or two, lest you be spoken evil of; + +and so be comforted for your sorrow. + + +For from sorrow comes death. + +Sorrow of heart saps one’s strength. + + +In calamity, sorrow also remains. + +A poor man’s life is grievous to the heart. + + +Don’t give your heart to sorrow. + +Put it away, remembering the end. + + +Don’t forget it, for there is no returning again. + +You do him no good, and you would harm yourself. + + +Remember his end, for so also will yours be: + +yesterday for him, and today for you. + + +When the dead is at rest, let his remembrance rest. + +Be comforted for him when his spirit departs from him. + + + +The wisdom of the scribe comes by the opportunity of leisure. + +He who has little business can become wise. + + +How could he become wise who holds the plow, + +who glories in the shaft of the goad, + +who drives oxen and is occupied in their labors, + +and who mostly talks about bulls? + + +He will set his heart upon turning his furrows. + +His lack of sleep is to give his heifers their fodder. + + +So is every craftsman and master artisan + +who passes his time by night as by day, + +those who cut engravings of signets. + +His diligence is to make great variety. + +He sets his heart to preserve likeness in his portraiture, + +and is careful to finish his work. + + +So too is the smith sitting by the anvil + +and considering the unwrought iron. + +The smoke of the fire will waste his flesh. + +He toils in the heat of the furnace. + +The noise of the hammer deafens his ear. + +His eyes are upon the pattern of the object. + +He will set his heart upon perfecting his works. + +He will be careful to adorn them perfectly. + + +So is the potter sitting at his work + +and turning the wheel around with his feet, + +who is always anxiously set at his work. + +He produces his handiwork in quantity. + + +He will fashion the clay with his arm + +and will bend its strength in front of his feet. + +He will apply his heart to finish the glazing. + +He will be careful to clean the kiln. + + + +All these put their trust in their hands. + +Each becomes skillful in his own work. + + +Without these no city would be inhabited. + +Men wouldn’t reside as foreigners or walk up and down there. + + +They won’t be sought for in the council of the people. + +They won’t mount on high in the assembly. + +They won’t sit on the seat of the judge. + +They won’t understand the covenant of judgment. + +Neither will they declare instruction and judgment. + +They won’t be found where parables are. + + +But they will maintain the fabric of the age. + +Their prayer is in the handiwork of their craft. + + + + + +Not so he who has applied his soul + +and meditates in the law of the Most High. + +He will seek out the wisdom of all the ancients + +and will be occupied with prophecies. + + +He will keep the sayings of the men of renown + +and will enter in amidst the subtleties of parables. + + +He will seek out the hidden meaning of proverbs + +and be conversant in the dark sayings of parables. + + +He will serve among great men + +and appear before him who rules. + +He will travel through the land of foreign nations, + +for he has learned what is good and evil among men. + + +He will apply his heart to return early to the Lord who made him, + +and will make supplication before the Most High, + +and will open his mouth in prayer, + +and will ask for pardon for his sins. + + + +If the great Lord wills, + +he will be filled with the spirit of understanding; + +he will pour forth the words of his wisdom + +and in prayer give thanks to the Lord. + + +He will direct his counsel and knowledge, + +and he will meditate in his secrets. + + +He will show the instruction which he has been taught + +and will glory in the law of the covenant of the Lord. + + +Many will commend his understanding. + +So long as the world endures, it won’t be blotted out. + +His memory won’t depart. + +His name will live from generation to generation. + + +Nations will declare his wisdom. + +The congregation will proclaim his praise. + + +If he continues, he will leave a greater name than a thousand. + +If he finally rests, it is enough for him. + + + +Yet more I will utter, which I have thought about. + +I am filled like the full moon. + + +Listen to me, you holy children, + +and bud forth like a rose growing by a brook of water. + + +Give a sweet fragrance like frankincense. + +Put forth flowers like a lily. + +Scatter a sweet smell and sing a song of praise. + +Bless the Lord for all his works! + + +Magnify his name + +and give utterance to his praise + +with the songs on your lips and with harps! + +Say this when you utter his praise: + + + +All the works of the Lord are exceedingly good, + +and every command will be done in its time. + + +No one can say, “What is this?” “Why is that?” + +for at the proper time they will all be sought out. + +At his word, the waters stood as a heap, + +as did the reservoirs of water at the word of his mouth. + + +At his command all his good pleasure is fulfilled. + +There is no one who can hinder his salvation. + + +The works of all flesh are before him. + +It’s impossible to be hidden from his eyes. + + +He sees from everlasting to everlasting. + +There is nothing too wonderful for him. + + +No one can say, “What is this?” “Why is that?” + +for all things are created for their own uses. + + + +His blessing covered the dry land as a river + +and saturated it as a flood. + + +As he has made the waters salty, + +so the heathen will inherit his wrath. + + +His ways are plain to the holy. + +They are stumbling blocks to the wicked. + + +Good things are created from the beginning for the good. + +So are evil things for sinners. + + +The main things necessary for the life of man + +are water, fire, iron, salt, + +wheat flour, and honey, milk, + +the blood of the grape, oil, and clothing. + + +All these things are for good to the godly, + +but for sinners, they will be turned into evils. + + + +There are winds that are created for vengeance, + +and in their fury they lay on their scourges heavily. + +In the time of reckoning, they pour out their strength, + +and will appease the wrath of him who made them. + + +Fire, hail, famine, and death— + +all these are created for vengeance— + + +wild beasts’ teeth, scorpions, adders, + +and a sword punishing the ungodly to destruction. + + +They will rejoice in his commandment, + +and will be made ready upon earth when needed. + +In their seasons, they won’t disobey his command. + + + +Therefore from the beginning I was convinced, + +and I thought it through and left it in writing: + + +All the works of the Lord are good. + +He will supply every need in its time. + + +No one can say, “This is worse than that,” + +for they will all be well approved in their time. + + +Now with all your hearts and voices, sing praises + +and bless the Lord’s name! + + + + + +Great travail is created for every man. + +A heavy yoke is upon the sons of Adam, + +from the day of their coming forth from their mother’s womb, + +until the day for their burial in the mother of all things. + + +The expectation of things to come, and the day of death, + +trouble their thoughts, and cause fear in their hearts. + + +From him who sits on a throne of glory, + +even to him who is humbled in earth and ashes, + + +from him who wears purple and a crown, + +even to him who is clothed in burlap, + + +there is wrath, jealousy, trouble, unrest, + +fear of death, anger, and strife. + +In the time of rest upon his bed, + +his night sleep changes his knowledge. + + +He gets little or no rest, + +and afterward in his sleep, as in a day of keeping watch, + +he is troubled in the vision of his heart, + +as one who has escaped from the front of battle. + + +In the very time of his deliverance, he awakens, + +and marvels that the fear is nothing. + + + +To all creatures, human and animal, + +and upon sinners sevenfold more, + + +come death, bloodshed, strife, sword, + +calamities, famine, suffering, and plague. + + +All these things were created for the wicked, + +and because of them the flood came. + + +All things that are of the earth turn to the earth again. + +All things that are of the waters return into the sea. + + + +All bribery and injustice will be blotted out. + +Good faith will stand forever. + + +The goods of the unjust will be dried up like a river, + +and like a great thunder in rain will go off in noise. + + +In opening his hands, a man will be made glad; + +so lawbreakers will utterly fail. + + +The children of the ungodly won’t grow many branches, + +and are as unhealthy roots on a sheer rock. + + +The reeds by every water or river bank + +will be plucked up before all grass. + + +Kindness is like a garden of blessings. + +Almsgiving endures forever. + + + +The life of one who labors and is content will be made sweet. + +He who finds a treasure is better than both. + + +Children and the building of a city establish a name. + +A blameless wife is better than both. + + +Wine and music rejoice the heart. + +The love of wisdom is better than both. + + +The pipe and the lute make pleasant melody. + +A pleasant tongue is better than both. + + +Your eye desires grace and beauty, + +but the green shoots of grain more than both. + + +A friend and a companion is always welcome, + +and a wife with her husband is better than both. + + +Relatives and helpers are for a time of affliction, + +but almsgiving rescues better than both. + + +Gold and silver will make the foot stand sure, + +and counsel is esteemed better than both. + + +Riches and strength will lift up the heart. + +The fear of the Lord is better than both. + +There is nothing lacking in the fear of the Lord. + +In it, there is no need to seek help. + + +The fear of the Lord is like a garden of blessing + +and covers a man more than any glory. + + + +My son, don’t lead a beggar’s life. + +It is better to die than to beg. + + +A man who looks to the table of another, + +his life is not to be considered a life. + +He will pollute his soul with another person’s food, + +but a wise and well-instructed person will beware of that. + + +Begging will be sweet in the mouth of the shameless, + +but it kindles a fire in his belly. + + + + + +O death, how bitter is the memory of you to a man who is at peace in his possessions, + +to the man who has nothing to distract him and has prosperity in all things, + +and who still has strength to enjoy food! + + +O death, your sentence is acceptable to a man who is needy and who fails in strength, + +who is in extreme old age, is distracted about all things, + +is perverse, and has lost patience! + + +Don’t be afraid of the sentence of death. + +Remember those who have been before you and who come after. + +This is the sentence from the Lord over all flesh. + + +And why do you refuse when it is the good pleasure of the Most High? + +Whether life lasts ten, or a hundred, or a thousand years, + +there is no inquiry about life in Hades.41:4 +or, +the place of the dead +or, +Sheol + + + +The children of sinners are abominable children + +and they frequent the dwellings of the ungodly. + + +The inheritance of sinners’ children will perish + +and with their posterity will be a perpetual disgrace. + + +Children will complain of an ungodly father, + +because they suffer disgrace because of him. + + +Woe to you, ungodly men, + +who have forsaken the law of the Most High God!41:8 +The remainder of this verse is omitted by the best authorities. + + +If you are born, you will be born to a curse. + +If you die, a curse will be your portion. + + +All things that are of the earth will go back to the earth; + +so the ungodly will go from a curse to perdition. + + + +The mourning of men is about their bodies; + +but the evil name of sinners will be blotted out. + + +Have regard for your name, + +for it continues with you longer than a thousand great treasures of gold. + + +A good life has its number of days, + +but a good name continues forever. + + + +My children, follow instruction in peace. + +But wisdom that is hidden and a treasure that is not seen, + +what benefit is in them both? + + +Better is a man who hides his foolishness + +than a man who hides his wisdom. + + +Therefore show respect for my words; + +for it is not good to retain every kind of shame. + +Not everything is approved by all in good faith. + + + +Be ashamed of sexual immorality before father and mother, + +of a lie before a prince and a mighty man, + + +of an offense before a judge and ruler, + +of iniquity before the congregation and the people, + +of unjust dealing before a partner and friend, + + +and of theft in the place where you sojourn. + +Be ashamed in regard of the truth of God and his covenant, + +of leaning on your elbow at dinner, + +of contemptuous behavior in the matter of giving and taking, + + +of silence before those who greet you, + +of looking at a woman who is a prostitute, + + +of turning away your face from a kinsman, + +of taking away a portion or a gift, + +of gazing at a woman who has a husband, + + +of meddling with his maid—and don’t come near her bed, + +of abusive speech to friends—and after you have given, don’t insult, + + +of repeating and speaking what you have heard, + +and of revealing of secrets. + + +So you will be ashamed of the right things + +and find favor in the sight of every man. + + + + + +Don’t be ashamed of these things, + +and don’t sin to save face: + + +of the law of the Most High and his covenant, + +of judgment to do justice to the ungodly, + + +of reckoning with a partner and with travellers, + +of a gift from the inheritance of friends, + + +of exactness of scales and weights, + +of getting much or little, + + +of bargaining dealing with merchants, + +of frequent correction of children, + +and of making the back of an evil slave to bleed. + + +A seal is good where an evil wife is. + +Where there are many hands, lock things up. + + +Whatever you hand over, let it be by number and weight. + +In giving and receiving, let all be in writing. + + +Don’t be ashamed to instruct the unwise and foolish, + +and one of extreme old age who contends with those who are young. + +So you will be well instructed indeed + +and approved in the sight of every living man. + + + +A daughter is a secret cause of wakefulness to a father. + +Care for her takes away sleep— + +in her youth, lest she pass the flower of her age; + +when she is married, lest she should be hated; + + +in her virginity, lest she should be defiled and be with child in her father’s house; + +when she has a husband, lest she should transgress; + +and when she is married, lest she should be barren. + + +Keep a strict watch over a headstrong daughter, + +lest she make you a laughingstock to your enemies, + +a byword in the city and notorious among the people, + +and shame you in public. + + + +Don’t gaze at every beautiful body. + +Don’t sit in the midst of women. + + +For from garments comes a moth, + +and from a woman comes a woman’s wickedness. + + +Better is the wickedness of a man than a pleasant woman, + +a woman who puts you to shame and disgrace. + + + +I will make mention now of the works of the Lord, + +and will declare the things that I have seen. + +The Lord’s works are in his words. + + +The sun that gives light looks at all things. + +The Lord’s work is full of his glory. + + +The Lord has not given power to the saints to declare all his marvelous works, + +which the Almighty Lord firmly settled, + +that the universe might be established in his glory. + + +He searches out the deep and the heart. + +He has understanding of their secrets. + +For the Most High knows all knowledge. + +He sees the signs of the world. + + +He declares the things that are past and the things that shall be, + +and reveals the traces of hidden things. + + +No thought escapes him. + +There is not a word hidden from him. + + +He has ordered the mighty works of his wisdom. + +He is from everlasting to everlasting. + +Nothing has been added to them, nor diminished from them. + +He had no need of any counselor. + + +How desirable are all his works! + +One may see this even in a spark. + + +All these things live and remain forever in all manner of uses. + +They are all obedient. + + +All things are in pairs, one opposite the other. + +He has made nothing imperfect. + + +One thing establishes the good things of another. + +Who could ever see enough of his glory? + + + + + +The pride of the heavenly heights is the clear sky, + +the appearance of heaven, in the spectacle of its glory. + + +The sun, when it appears, bringing tidings as it rises, + +is a marvelous instrument, the work of the Most High. + + +At noon, it dries up the land. + +Who can stand against its burning heat? + + +A man tending a furnace is in burning heat, + +but the sun three times more, burning up the mountains, + +breathing out fiery vapors, + +and sending out bright beams, it blinds the eyes. + + +Great is the Lord who made it. + +At his word, he hastens on its course. + + + +The moon marks the changing seasons, + +declares times, and is a sign for the world. + + +From the moon is the sign of feast days, + +a light that wanes when it completes its course. + + +The month is called after its name, + +increasing wonderfully in its changing— + +an instrument of the army on high, + +shining in the structure of heaven, + + +the beauty of heaven, the glory of the stars, + +an ornament giving light in the highest places of the Lord. + + +At the word of the Holy One, they will stand in due order. + +They won’t faint in their watches. + + +Look at the rainbow, and praise him who made it. + +It is exceedingly beautiful in its brightness. + + +It encircles the sky with its glorious circle. + +The hands of the Most High have stretched it out. + + + +By his commandment, he makes the snow fall + +and swiftly sends the lightnings of his judgment. + + +Therefore the storehouses are opened, + +and clouds fly out like birds. + + +By his mighty power, he makes the clouds strong + +and the hailstones are broken in pieces. + + +At his appearing, the mountains will be shaken. + +At his will, the south wind will blow. + + +The voice of his thunder rebukes the earth. + +So does the northern storm and the whirlwind. + +Like birds flying down, he sprinkles the snow. + +It falls down like the lighting of locusts. + + +The eye is dazzled at the beauty of its whiteness. + +The heart is amazed as it falls. + + +He also pours out frost on the earth like salt. + +When it is freezes, it has points like thorns. + + + +The cold north wind blows + +and ice freezes on the water. + +It settles on every pool of water. + +The water puts it on like it was a breastplate. + + +It will devour the mountains, burn up the wilderness, + +and consume the green grass like fire. + + +A mist coming speedily heals all things. + +A dew coming after heat brings cheerfulness. + + + +By his counsel, he has calmed the deep + +and planted islands in it. + + +Those who sail on the sea tell of its dangers. + +We marvel when we hear it with our ears. + + +There are also those strange and wondrous works in it— + +variety of all that has life and the huge creatures of the sea. + + +Because of him, his messengers succeed. + +By his word, all things hold together. + + + +We may say many things, but couldn’t say enough. + +The summary of our words is, “He is everything!” + + +How could we have strength to glorify him? + +For he is himself the greater than all his works. + + +The Lord is awesome and exceedingly great! + +His power is marvelous! + + +Glorify the Lord and exalt him as much as you can! + +For even yet, he will surpass that. + +When you exalt him, summon your full strength. + +Don’t be weary, because you can’t praise him enough. + + +Who has seen him, that he may describe him? + +Who can magnify him as he is? + + +Many things greater than these are hidden, + +for we have seen just a few of his works. + + +For the Lord made all things. + +He gave wisdom to the godly. + + + + + +Let us now praise famous men, + +our ancestors in their generations. + + +The Lord created great glory in them— + +his mighty power from the beginning. + + +Some ruled in their kingdoms + +and were men renowned for their power, + +giving counsel by their understanding. + +Some have spoken in prophecies, + + +leaders of the people by their counsels, + +and by their understanding, giving instruction for the people. + +Their words in their instruction were wise. + + +Some composed musical tunes, + +and set forth verses in writing, + + +rich men endowed with ability, + +living peaceably in their homes. + + +All these were honored in their generations, + +and were outstanding in their days. + + +Some of them have left a name behind them, + +so that others declare their praises. + + +But of others, there is no memory. + +They perished as though they had not been. + +They become as though they had not been born, + +they and their children after them. + + +But these were men of mercy, + +whose righteous deeds have not been forgotten. + + +A good inheritance remains with their offspring. + +Their children are within the covenant. + + +Their offspring stand fast, + +with their children, for their sakes. + + +Their offspring will remain forever. + +Their glory won’t be blotted out. + + +Their bodies were buried in peace. + +Their name lives to all generations. + + +People will declare their wisdom. + +The congregation proclaims their praise. + + + +Enoch pleased the Lord, and was taken up, + +an example of repentance to all generations. + + + +Noah was found perfect and righteous. + +In the season of wrath, he kept the race alive. + +Therefore a remnant was left on the earth + +when the flood came. + + +Everlasting covenants were made with him, + +that all flesh should no more be blotted out by a flood. + + + +Abraham was a great father of a multitude of nations. + +There was none found like him in glory, + + +who kept the law of the Most High, + +and was taken into covenant with him. + +In his flesh he established the covenant. + +When he was tested, he was found faithful. + + +Therefore he assured him by an oath + +that the nations would be blessed through his offspring, + +that he would multiply him like the dust of the earth, + +exalt his offspring like the stars, + +and cause them to inherit from sea to sea, + +and from the Euphrates River to the utmost parts of the earth. + + + +In Isaac also, he established the same assurance for Abraham his father’s sake, + +the blessing of all men, and the covenant. + + +He made it rest upon the head of Jacob. + +He acknowledged him in his blessings, + +gave to him by inheritance, + +and divided his portions. + +He distributed them among twelve tribes. + + + + +He brought out of him a man of mercy, + +who found favor in the sight of all people, + +a man loved by God and men, even Moses, + +whose memory is blessed. + + +He made him equal to the glory of the saints, + +and magnified him in the fears of his enemies. + + +By his words he caused the wonders to cease. + +God glorified him in the sight of kings. + +He gave him commandments for his people + +and showed him part of his glory. + + +He sanctified him in his faithfulness and meekness. + +He chose him out of all people. + + +He made him to hear his voice, + +led him into the thick darkness, + +and gave him commandments face to face, + +even the law of life and knowledge, + +that he might teach Jacob the covenant, + +and Israel his judgments. + + + +He exalted Aaron, a holy man like Moses, + +even his brother, of the tribe of Levi. + + +He established an everlasting covenant with him, + +and gave him the priesthood of the people. + +He blessed him with stateliness, + +and dressed him in a glorious robe. + + +He clothed him in perfect splendor, + +and strengthened him with symbols of authority: + +the linen trousers, the long robe, and the ephod. + + +He encircled him with pomegranates; + +with many golden bells around him, + +to make a sound as he went, + +to make a sound that might be heard in the temple, + +for a reminder for the children of his people; + + +with a holy garment, with gold, blue, and purple, the work of the embroiderer; + +with an oracle of judgment—Urim and Thummim; + + +with twisted scarlet, the work of the craftsman; + +with precious stones engraved like a signet, in a setting of gold, the work of the jeweller, + +for a reminder engraved in writing, after the number of the tribes of Israel; + + +with a crown of gold upon the mitre, having engraved on it, as on a signet, “HOLINESS”, + +an ornament of honor, the work of an expert, + +the desires of the eyes, goodly and beautiful. + + +Before him there never have been anything like it. + +No stranger put them on, but only his sons and his offspring perpetually. + + +His sacrifices shall be wholly burned, + +twice every day continually. + + +Moses consecrated him, + +and anointed him with holy oil. + +It was an everlasting covenant with him + +and to his offspring, all the days of heaven, + +to minister to the Lord, to serve as a priest, + +and to bless his people in his name. + + +He chose him out of all living + +to offer sacrifice to the Lord— + +incense, and a sweet fragrance, for a memorial, + +to make atonement for your people. + + +He gave to him in his commandments, + +authority in the covenants of judgments, + +to teach Jacob the testimonies, + +and to enlighten Israel in his law. + + +Strangers conspired against him + +and envied him in the wilderness: + +Dathan and Abiram with their company, + +and the congregation of Korah, with wrath and anger. + + +The Lord saw it, and it displeased him. + +In the wrath of his anger, they were destroyed. + +He did wonders upon them, + +to consume them with flaming fire. + + +He added glory to Aaron, + +and gave him a heritage. + +He divided to him the first fruits of the increase, + +and prepared bread of first fruits in abundance. + + +For they eat the sacrifices of the Lord, + +which he gave to him and to his offspring. + + +However, in the land of the people, he has no inheritance, + +and he has no portion among the people, + +for the Lord himself is your portion and inheritance. + + + +Phinehas the son of Eleazar is the third in glory, + +in that he was zealous in the fear of the Lord, + +and stood fast when the people turned away, + +and he made atonement for Israel. + + +Therefore, a covenant of peace was established for him, + +that he should be leader of the sanctuary and of his people, + +that he and his offspring should have the dignity of the priesthood forever. + + +Also he made a covenant with David the son of Jesse, of the tribe of Judah. + +The inheritance of the king is his alone from son to son. + +So the inheritance of Aaron is also to his seed. + + + +May God give you wisdom in your heart + +to judge his people in righteousness, + +that their good things may not be abolished, + +and that their glory may endure for all their generations. + + + + + +Joshua the son of Nun was valiant in war, + +and was the successor of Moses in prophecies. + +He was made great according to his name + +for the saving of46:1 +Gr. +his. + God’s elect, + +to take vengeance on the enemies that rose up against them, + +that he might give Israel their inheritance. + + +How he was glorified in the lifting up his hands, + +and in stretching out his sword against the cities! + + +Who before him stood so firm? + +For the Lord himself brought his enemies to him. + + +Didn’t the sun go back by his hand? + +Didn’t one day become as two? + + +He called upon the Most High, the Mighty One, + +when his foes pressed in all around him, + +and the great Lord heard him. + + +With hailstones of mighty power, + +he caused war to break violently upon the nation, + +and46:6 +See Joshua 10:11 + on the slope he destroyed those who resisted, + +so that the nations might know his armor, + +how he fought in the sight of the Lord; + +for he followed the Mighty One. + + +Also in the time of Moses, he did a work of mercy— + +he and Caleb the son of Jephunneh— + +in that they withstood the adversary, + +hindered the people from sin, + +and stilled their wicked complaining. + + +And of six hundred thousand people on foot, they two alone were preserved + +to bring them into their inheritance, + +into a land flowing with milk and honey. + + +The Lord gave strength to Caleb, + +and it remained with him to his old age, + +so that he entered the hill country, + +and his offspring obtained it for an inheritance, + + +that all the children of Israel might see that it is good to follow the Lord. + + + +Also the judges, every one by his name, + +all whose hearts didn’t engage in immorality, + +and who didn’t turn away from the Lord— + +may their memory be blessed! + + +May their bones flourish again out of their place. + +May the name of those who have been honored be renewed in their children. + + + +Samuel, the prophet of the Lord, loved by his Lord, + +established a kingdom and anointed princes over his people. + + +By the law of the Lord he judged the congregation, + +and the Lord watched over Jacob. + + +By his faithfulness he was proved to be a prophet. + +By his words he was known to be faithful in vision. + + +When his enemies pressed on him on every side, + +he called upon the Lord, the Mighty One, + +with the offering of the suckling lamb. + + +Then the Lord thundered from heaven. + +He made his voice heard with a mighty sound. + + +He utterly destroyed the rulers of the Tyrians + +and all the princes of the Philistines. + + +Before the time of his age-long sleep, + +he testified in the sight of the lord and his anointed, + +“I have not taken any man’s goods, so much as a sandal;” + +and no one accused him. + + +Even after he fell asleep, he prophesied, + +and showed the king his end, + +and lifted up his voice from the earth in prophecy, + +to blot out the wickedness of the people. + + + + + +After him, Nathan rose up + +to prophesy in the days of David. + + +As is the fat when it is separated from the peace offering, + +so was David separated from the children of Israel. + + +He played with lions as with kids, + +and with bears as with lambs of the flock. + + +In his youth didn’t he kill a giant, + +and take away reproach from the people + +when he lifted up his hand with a sling stone, + +and beat down the boasting Goliath? + + +For he called upon the Most High Lord, + +and he gave him strength in his right hand + +to kill a man mighty in war, + +to exalt the horn of his people. + + +So they glorified him for his tens of thousands, + +and praised him for the blessings of the Lord, + +in that a glorious diadem was given to him. + + +For he destroyed the enemies on every side, + +and defeated the Philistines his adversaries. + +He broke their horn in pieces to this day. + + +In every work of his he gave thanks to the Holy One Most High with words of glory. + +He sang praise with his whole heart, + +and loved him who made him. + + +He set singers before the altar, + +to make sweet melody by their music.47:9 +The remainder of this verse is omitted by the best authorities. + + + +He gave beauty to the feasts, + +and set in order the seasons to completion + +while they praised his holy name, + +and the sanctuary resounded from early morning. + + +The Lord took away his sins, + +and exalted his horn forever. + +He gave him a covenant of kings, + +and a glorious throne in Israel. + + + +After him a wise son rose up, + +who because of him lived in security. + + +Solomon reigned in days of peace. + +God gave him rest all around, + +that he might set up a house for his name, + +and prepare a sanctuary forever. + + +How wise you were made in your youth, + +and filled as a river with understanding! + + +Your influence covered the earth, + +and you filled it with parables and riddles. + + +Your name reached to the far away islands, + +and you were loved for your peace. + + +For your songs, proverbs, parables, + +and interpretations, the countries marveled at you. + + +By the name of the Lord God, + +who is called the God of Israel, + +you gathered gold like tin, + +and multiplied silver like lead. + + +You bowed your loins to women, + +and in your body you were brought into subjection. + + +You blemished your honor, + +and defiled your offspring, + +to bring wrath upon your children. + +I was grieved for your folly, + + +because the sovereignty was divided, + +and a disobedient kingdom ruled out of Ephraim. + + +But the Lord will never forsake his mercy. + +He won’t destroy any of his works, + +nor blot out the posterity of his elect. + +He won’t take away the offspring of him who loved him. + +He gave a remnant to Jacob, + +and to David a root from his own family. + + + +So Solomon rested with his fathers. + +Of his offspring, he left behind him Rehoboam, + +the foolishness of the people, and one who lacked understanding, + +who made the people revolt by his counsel. + +Also Jeroboam the son of Nebat, + +who made Israel to sin, + +and gave a way of sin to Ephraim. + + +Their sins were multiplied exceedingly, + +until they were removed from their land. + + +For they sought out all manner of wickedness, + +until vengeance came upon them. + + + + + +Then Elijah arose, the prophet like fire. + +His word burned like a torch. + + +He brought a famine upon them, + +and by his zeal made them few in number. + + +By the word of the Lord he shut up the heavens. + +He brought down fire three times. + + +How you were glorified, O Elijah, in your wondrous deeds! + +Whose glory is like yours? + + +You raised up a dead man from death, + +from Hades, by the word of the Most High. + + +You brought down kings to destruction, + +and honorable men from their sickbeds. + + +You heard rebuke in Sinai, + +and judgments of vengeance in Horeb. + + +You anointed kings for retribution, + +and prophets to succeed after you. + + +You were taken up in a tempest of fire, + +in a chariot of fiery horses. + + +You were recorded for reproofs in their seasons, + +to pacify anger, before it broke out into wrath, + +to turn the heart of the father to the son, + +and to restore the tribes of Jacob. + + +Blessed are those who saw you, + +and those who have been beautified with love; + +for we also shall surely live. + + + +Elijah was wrapped in a whirlwind. + +Elisha was filled with his spirit. + +In his days he was not moved by the fear of any ruler, + +and no one brought him into subjection. + + +Nothing was too hard for him. + +When he was buried, his body prophesied. + + +As in his life he did wonders, + +so his works were also marvelous in death. + + +For all this the people didn’t repent. + +They didn’t depart from their sins, + +until they were carried away as a plunder from their land, + +and were scattered through all the earth. + +The people were left very few in number, + +but with a ruler from the house of David. + + +Some of them did that which was right, + +but some multiplied sins. + + + +Hezekiah fortified his city, + +and brought water into its midst. + +He tunneled through rock with iron, + +and built cisterns for water. + + +In his days Sennacherib invaded, + +and sent Rabshakeh, and departed. + +He lifted up his hand against Zion, + +and boasted great things in his arrogance. + + +Then their hearts and their hands were shaken, + +and they were in pain, as women in labor. + + +But they called upon the Lord who is merciful, + +spreading out their hands to him. + +The Holy One quickly heard them out of Heaven, + +and delivered them by the hand of Isaiah. + + +He struck the camp of the Assyrians, + +and his angel utterly destroyed them. + + +For Hezekiah did that which was pleasing to the Lord, + +and was strong in the ways of his ancestor David, + +which Isaiah the prophet commanded, + +who was great and faithful in his vision. + + + +In his days the sun went backward. + +He prolonged the life of the king. + + +He saw by an excellent spirit what would come to pass in the future; + +and he comforted those who mourned in Zion. + + +He showed the things that would happen through the end of time, + +and the hidden things before they came. + + + + + +The memory of Josiah is like the composition of incense + +prepared by the work of the perfumer. + +It will be sweet as honey in every mouth, + +and like music at a banquet of wine. + + +He did what was right in the reforming of the people, + +and took away the abominations of iniquity. + + +He set his heart right toward the Lord. + +In lawless days, he made godliness prevail. + + + +Except David, Hezekiah, and Josiah, + +all were wicked, + +because they abandoned the law of the Most High. + +The kings of Judah came to an end. + + +They gave their power to others, + +and their glory to a foreign nation. + + +They set the chosen city of the sanctuary on fire + +and made her streets desolate, as it was written by the hand of Jeremiah. + + +For they mistreated him; + +yet he was sanctified in the womb to be a prophet, + +to root out, to afflict, to destroy + +and likewise to build and to plant. + + + +Ezekiel saw the vision of glory, + +which God showed him on the chariot of the cherubim. + + +For truly he remembered the enemies in rainstorm, + +and to do good to those who directed their ways aright. + + +Also of the twelve prophets,49:10 +The remainder of this line is omitted by the best authorities. + + +may their bones flourish again out of their place. + +He comforted the people of Jacob, + +and delivered them by confident hope. + + + +How shall we magnify Zerubbabel? + +He was like a signet ring on the right hand. + + +So was Jesus the son of Josedek, + +who in their days built the house, + +and exalted a49:12 +Some ancient authorities read +temple. + people holy to the Lord, + +prepared for everlasting glory. + + +Also of Nehemiah the memory is great. + +He raised up for us fallen walls, + +set up the gates and bars, + +and rebuilt our houses. + + + +No man was created upon the earth like Enoch, + +for he was taken up from the earth. + + +Nor was there a man born like Joseph, + +a leader of his kindred, a supporter of the people. + +Even his bones were cared for. + + +Shem and Seth were honored among men, + +but above every living thing in the creation was Adam. + + + + + +It was Simon, the son of Onias, the high priest, + +who in his life repaired the house, + +and in his days strengthened the temple. + + +The foundation was built by him to the height of the double walls, + +the lofty retaining walls of the temple enclosure. + + +In his days, a water cistern was dug, + +the brazen vessel like the sea in circumference. + + +He planned to save his people from ruin, + +and fortified the city against siege. + + +How glorious he was when the people gathered around him + +as he came out of the house of the veil! + + +He was like the morning star among clouds, + +like the full moon, + + +like the sun shining on the temple of the Most High, + +like the rainbow shining in clouds of glory, + + +like roses in the days of first fruits, + +like lilies by a water spring, + +like the shoot of the frankincense tree in summer time, + + +like fire and incense in the censer, + +like a vessel of beaten gold adorned with all kinds of precious stones, + + +like an olive tree loaded with fruit, + +and like a cypress growing high among the clouds. + + +When he put on his glorious robe, + +and clothed himself in perfect splendor, + +ascending to the holy altar, + +he made the court of the sanctuary glorious. + + + +When he received the portions out of the priests’ hands, + +as he stood by the hearth of the altar, + +with his kindred like a garland around him, + +he was like a young cedar in Lebanon + +surrounded by the trunks of palm trees. + + +All the sons of Aaron in their glory, + +held the Lord’s offering in their hands before all the congregation of Israel. + + +Finishing the service at the altars, + +that he might arrange the offering of the Most High, the Almighty, + + +he stretched out his hand to the cup of libation, + +and poured out the cup of the grape. + +He poured it out at the foot of the altar, + +a sweet smelling fragrance to the Most High, the King of all. + + +Then the sons of Aaron shouted. + +They sounded the trumpets of beaten work. + +They made a great fanfare to be heard, + +for a reminder before the Most High. + + +Then all the people together hurried, + +and fell down to the ground on their faces + +to worship their Lord, the Almighty, God Most High. + + + +The singers also praised him with their voices. + +There was a sweet melody in the whole house. + + +And the people implored the Lord Most High, + +in prayer before him who is merciful, + +until the worship of the Lord was finished, + +and so they accomplished his service. + + +Then he went down, and lifted up his hands + +over the whole congregation of the children of Israel, + +to give blessing to the Lord with his lips, + +and to glory in his name. + + +He bowed himself down in worship the second time, + +to declare the blessing from the Most High. + + + +Now bless the God of all, + +who everywhere does great things, + +who exalts our days from the womb, + +and deals with us according to his mercy. + + +May he grant us joyfulness of heart, + +and that peace may be in our days in Israel for the days of eternity, + + +to entrust his mercy with us, + +and let him deliver us in his time! + + + +With two nations my soul is vexed, + +and the third is no nation: + + +Those who sit on the mountain of50:26 +According to some ancient versions, +Seir. + Samaria, the Philistines, + +and the foolish people who live in Shechem. + + + +I have written in this book the instruction of understanding and knowledge, + +I Jesus, the son of Sirach Eleazar, of Jerusalem, + +who out of his heart poured forth wisdom. + + +Blessed is he who will exercise these things. + +He who lays them up in his heart will become wise. + + +For if he does them, he will be strong in all things, + +for the light of the Lord is his guide.50:29 +The remainder of this verse is omitted by the best authorities. + + + + + +

A Prayer of Jesus the son of Sirach. +

+I will give thanks to you, O Lord, O King, + +and will praise you, O God my Savior. + +I give thanks to your name, + + +for you have been my protector and helper, + +and delivered my body out of destruction, + +and out of the snare of a slanderous tongue, + +from lips that fabricate lies. + +You were my helper before those who stood by, + + +and delivered me, according to the abundance of your mercy and of your name, + +from the gnashings of teeth ready to devour, + +out of the hand of those seeking my life, + +out of the many afflictions I endured, + + +from the choking of a fire on every side, + +and out of the midst of fire that I hadn’t kindled, + + +out of the depth of the belly of Hades, + +from an unclean tongue, + +and from lying words— + + +the slander of an unrighteous tongue to the king. + +My soul drew near to death. + +My life was near to Hades. + + +They surrounded me on every side. + +There was no one to help me. + +I was looking for human help, + +and there was none. + + +Then I remembered your mercy, O Lord, + +and your working which has been from everlasting, + +how you deliver those who wait for you, + +and save them out of the hand of their enemies. + + +I lifted up my prayer from the earth, + +and prayed for deliverance from death. + + +I called upon the Lord, the Father of my Lord, + +that he would not forsake me in the days of affliction, + +in the time when there was no help against the proud. + + +I will praise your name continually. + +I will sing praise with thanksgiving. + +My prayer was heard. + + +You saved me from destruction + +and delivered me from the evil time. + +Therefore I will give thanks and praise to you, + +and bless the name of the Lord. + + + +When I was yet young, + +before I went abroad, + +I sought wisdom openly in my prayer. + + +Before the temple I asked for her. + +I will seek her out even to the end. + + +From the first flower to the ripening grape my heart delighted in her. + +My foot walked in uprightness. + +From my youth I followed her steps. + + +I inclined my ear a little, and received her, + +and found for myself much instruction. + + +I profited in her. + +I will give glory to him who gives me wisdom. + + +For I determined to practice her. + +I was zealous for that which is good. + +I will never be put to shame. + + +My soul has wrestled with her. + +In my conduct I was exact. + +I spread out my hands to the sky above, + +and bewailed my ignorances of her. + + +I directed my soul to her. + +In purity I found her. + +I got myself a heart joined with her from the beginning. + +Therefore I won’t be forsaken. + + +My belly also was troubled to seek her. + +Therefore I have gained a good possession. + + +The Lord gave me a tongue for my reward. + +I will praise him with it. + + + +Draw near to me, all you who are uneducated, + +and live in the house of instruction. + + +Why therefore are you all lacking in these things, + +and your souls are very thirsty? + + +I opened my mouth and spoke, + +“Get her for yourselves without money.” + + +Put your neck under the yoke, + +and let your soul receive instruction. + +She is near to find. + + + +See with your eyes + +how I labored just a little + +and found for myself much rest. + + +Get instruction with a great sum of silver, + +and gain much gold by her. + + +May your soul rejoice in his mercy, + +and may you all not be put to shame in praising him. + + +Work your work before the time comes, + +and in his time he will give you your reward. + + +
+- Baruch +Baruch +Baruch +Baruch +Bar +

Baruch +

+

The book of +Baruch is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. In some Bibles, Baruch chapter 6 is listed as a separate book called +The Letter of Jeremiah, reflecting its separation from Baruch in some copies of the Greek Septuagint. +

+ + +

These are the words of the book which Baruch the son of Nerias, the son of Maaseas, the son of Sedekias, the son of Asadias, the son of Helkias, wrote in Babylon, + +in the fifth year, in the seventh day of the month, at the time when the Chaldeans took Jerusalem and burned it with fire. + +Baruch read the words of this book in the hearing of Jechonias the son of Joakim king of Judah, and in the hearing of all the people who came to hear the book, + +and in the hearing of the mighty men, and of the kings’ sons, and in the hearing of the elders, and in the hearing of all the people, from the least to the greatest, even of all those who lived at Babylon by the river Sud. + +Then they wept, fasted,1:5 +Another reading is, +and vowed vows. + and prayed before the Lord. + +They also made a collection of money according to every man’s ability; + +and they sent it to Jerusalem to Joakim the high priest, the son of Helkias, the son of Salom, and to the priests and to all the people who were found with him at Jerusalem, + +at the same time when he took the vessels of the house of the Lord, that had been carried out of the temple, to return them into the land of Judah, the tenth day of Sivan—silver vessels which Sedekias the son of Josias king of Judah had made, + +after Nabuchodonosor king of Babylon had carried away Jechonias, the princes, the captives, the mighty men, and the people of the land from Jerusalem, and brought them to Babylon. + +

+

And they said: Behold, we have sent you money; therefore buy with the money burnt offerings, sin offerings, and incense, and prepare an oblation, and offer upon the altar of the Lord our God; + +and pray for the life of Nabuchodonosor king of Babylon, and for the life of Baltasar his son, that their days may be1:11 +See Deuteronomy 11:21. + as the days of heaven above the earth. + +The Lord will give us strength and light to our eyes. We will live under the shadow of Nabuchodonosor king of Babylon and under the shadow of Baltasar his son, and we shall serve them many days, and find favor in their sight. + +Pray for us also to the Lord our God, for we have sinned against the Lord our God. To this day the wrath of the Lord and his indignation is not turned from us. + +You shall read this book which we have sent to you, to make confession in the house of the Lord upon the day of the feast and on the days of the solemn assembly. + +

+

You shall say: To the Lord our God belongs righteousness, but to us confusion of face, as at this day—to the men of Judah, to the inhabitants of Jerusalem, + +to our kings, to our princes, to our priests, to our prophets, and to our fathers, + +because we have sinned before the Lord. + +We have disobeyed him and have not listened to the voice of the Lord our God, to walk in the commandments of the Lord that he has set before us. + +Since the day that the Lord brought our fathers out of the land of Egypt to this present day, we have been disobedient to the Lord our God, and we have been negligent in not listening to his voice. + +Therefore the plagues have clung to us, along with the curse which the Lord declared through Moses his servant in the day that he brought our fathers out of the land of Egypt to give us a land that flows with milk and honey, as at this day. + +Nevertheless we didn’t listen to the voice of the Lord our God, according to all the words of the prophets whom he sent to us, + +but we each walked in the imagination of his own wicked heart, to serve strange gods and to do what is evil in the sight of the Lord our God. + +

+ + +

Therefore the Lord has made good his word which he pronounced against us, and against our judges who judged Israel, and against our kings, and against our princes, and against the men of Israel and Judah, + +to bring upon us great plagues such as never happened before under the whole heaven,2:2 +Another reading is, +even as he has done. + as it came to pass in Jerusalem, according to the things that are written in the law of Moses, + +that we should each eat the flesh of our own son, and each eat the flesh of our own daughter. + +Moreover he has given them to be in subjection to all the kingdoms that are around us, to be a reproach and a desolation among all the people around us, where the Lord has scattered them. + +Thus they were cast down and not exalted, because we sinned against the Lord our God in not listening to his voice. + +To the Lord our God belongs righteousness, but to us and to our fathers confusion of face, as at this day. + +All these plagues have come upon us which the Lord has pronounced against us. + +Yet have we not entreated the favor of the Lord by everyone turning from the thoughts of his wicked heart. + +Therefore the Lord has kept watch over the plagues. The Lord has brought them upon us, for the Lord is righteous in all his works which he has commanded us. + +Yet we have not listened to his voice, to walk in the commandments of the Lord that he has set before us. + +

+

And now, O Lord, you God of Israel who have brought your people out of the land of Egypt with a mighty hand, with signs, with wonders, with great power, and with a high arm, and have gotten yourself a name, as at this day: + +O Lord our God, we have sinned. We have been ungodly. We have done wrong in all your ordinances. + +Let your wrath turn from us, for we are but a few left among the heathen where you have scattered us. + +Hear our prayer, O Lord, and our petition, and deliver us for your own sake. Give us favor in the sight of those who have led us away captive, + +that all the earth may know that you are the Lord our God, because Israel and his posterity is called by your name. + +O Lord, look down from your holy house and consider us. Incline your ear, O Lord, and hear. + +Open your eyes, and see; for the dead that are in Hades, whose breath is taken from their bodies, will give to the Lord neither glory nor righteousness; + +but the soul who is greatly vexed, who goes stooping and feeble, and the eyes that fail, and the hungry soul, will declare your glory and righteousness, O Lord. + +

+

For we do not present our supplication before you, O Lord our God, for the righteousness of our fathers and of our kings. + +For you have sent your wrath and your indignation upon us, as you have spoken by your servants the prophets, saying, + +“The Lord says, ‘Bow your shoulders to serve the king of Babylon, and remain in the land that I gave to your fathers. + +But if you won’t hear the voice of the Lord to serve the king of Babylon, + +I will cause to cease out of the cities of Judah and from the region near Jerusalem the voice of mirth, the voice of gladness, voice of the bridegroom, and the voice of the bride. The whole land will be desolate without inhabitant.’” + +But we wouldn’t listen to your voice, to serve the king of Babylon. Therefore you have made good your words that you spoke by your servants the prophets, that the bones of our kings and the bones of our fathers would be taken out of their places. + +Behold, they are cast out to the heat by day and to the frost by night. They died in great miseries by famine, by sword, and by2:25 +See Jeremiah 32:36. + pestilence. + +You have made the house that is called by your name as it is today because of the wickedness of the house of Israel and the house of Judah. + +

+

Yet, O Lord our God, you have dealt with us after all your kindness and according to all your great mercy, + +as you spoke by your servant Moses in the day when you commanded him to write your law in the presence of the children of Israel, saying, + +“If you won’t hear my voice, surely this very great multitude will be turned into a small number among the nations where I will scatter them. + +For I know that they will not hear me, because they are a stiff-necked people; but in the land of their captivity they will take it to heart, + +and will know that I am the Lord their God. I will give them a heart and ears to hear. + +Then they will praise me in the land of their captivity, and think about my name, + +and will return from their stiff neck and from their wicked deeds; for they will remember the way of their fathers who sinned before the Lord. + +I will bring them again into the land which I promised to their fathers, to Abraham, to Isaac, and to Jacob, and they will rule over it. I will increase them, and they won’t be diminished. + +And I will make an everlasting covenant with them to be their God, and they will be my people. I will no more remove my people Israel out of the land that I have given them.” + +

+ + +

O Lord Almighty, you God of Israel, the soul in anguish and the troubled spirit cries to you. + +Hear, O Lord, and have mercy; for you are a merciful God. Yes, have mercy upon us, because we have sinned before you. + +For you are enthroned forever, and we keep perishing. + +O Lord Almighty, you God of Israel, hear now the prayer of the dead Israelites, and of the children of those who were sinners before you, who didn’t listen to the voice of you their God; because of this, these plagues cling to us. + +Don’t remember the iniquities of our fathers, but remember your power and your name at this time. + +For you are the Lord our God, and we will praise you, O Lord. + +For this cause, you have put your fear in our hearts, to the intent that we should call upon your name. We will praise you in our captivity, for we have called to mind all the iniquity of our fathers who sinned before you. + +Behold, we are yet this day in our captivity where you have scattered us, for a reproach and a curse, and to be subject to penalty according to all the iniquities of our fathers who departed from the Lord our God. + +

+

Hear, O Israel, the commandments of life! Give ear to understand wisdom! + +How is it, O Israel, that you are in your enemies’ land, that you have become old in a strange country, that you are defiled with the dead, + +that you are counted with those who are in Hades? + +You have forsaken the fountain of wisdom. + +If you had walked in the way of God, you would have dwelled in peace forever. + +Learn where there is wisdom, where there is strength, and where there is understanding, that you may also know where there is length of days and life, where there is the light of the eyes and peace. + +Who has found out her place? Who has come into her treasuries? + +Where are the princes of the heathen, and those who ruled the beasts that are on the earth, + +those who had their pastime with the fowls of the air, and those who hoarded up silver and gold, in which people trust, and of their getting there is no end? + +For those who diligently sought silver, and were so anxious, and whose works are past finding out, + +they have vanished and gone down to Hades, and others have come up in their place. + +

+

Younger men have seen the light and lived upon the earth, but they haven’t known the way of knowledge, + +nor understood its paths. Their children haven’t embraced it. They are far off from their way. + +It has not been heard of in Canaan, neither has it been seen in Teman. + +The sons also of Agar who seek understanding, which are in the land, the merchants of Merran and Teman, and the authors of fables, and the searchers out of understanding—none of these have known the way of wisdom or remembered her paths. + +

+

O Israel, how great is the house of God! How large is the place of his possession! + +It is great and has no end. It is high and unmeasurable. + +Giants were born that were famous of old, great of stature, and expert in war. + +God didn’t choose these, nor did he give the way of knowledge to them, + +so they perished, because they had no wisdom. They perished through their own foolishness. + +Who has gone up into heaven, taken her, and brought her down from the clouds? + +Who has gone over the sea, found her, and will bring her for choice gold? + +There is no one who knows her way, nor any who comprehend her path. + +But he that knows all things knows her, he found her out with his understanding. He who prepared the earth for all time has filled it with four-footed beasts. + +It is he who sends forth the light, and it goes. He called it, and it obeyed him with fear. + +The stars shone in their watches, and were glad. When he called them, they said, “Here we are.” They shone with gladness to him who made them. + +This is our God. No other can be compared to him. + +He has found out all the way of knowledge, and has given it to Jacob his servant and to Israel who is loved by him. + +Afterward she appeared upon earth, and lived with men. + +

+ + +

This is the book of God’s commandments and the law that endures forever. All those who hold it fast will live, but those who leave it will die. + +Turn, O Jacob, and take hold of it. Walk toward the shining of its light. + +Don’t give your glory to another, nor the things that are to your advantage to a foreign nation. + +O Israel, we are happy; for the things that are pleasing to God are made known to us. + +

+

Be of good cheer, my people, the memorial of Israel. + +You were not sold to the nations for destruction, but because you moved God to wrath, you were delivered to your adversaries. + +For you provoked him who made you by sacrificing to demons and not to God. + +You forgot the everlasting God who brought you up. You also grieved Jerusalem, who nursed you. + +For she saw the wrath that came upon you from God, and said, “Listen, you who dwell near Zion; for God has brought upon me great mourning. + +For I have seen the captivity of my sons and daughters, which the Everlasting has brought upon them. + +For with joy I nourished them, but sent them away with weeping and mourning. + +Let no man rejoice over me, a widow and forsaken by many. For the sins of my children, I am left desolate, because they turned away from the law of God + +and had no regard for his statutes. They didn’t walk in the ways of God’s commandments or tread in the paths of discipline in his righteousness. + +Let those who dwell near Zion come and remember the captivity of my sons and daughters, which the Everlasting has brought upon them. + +For he has brought a nation upon them from afar, a shameless nation with a strange language, who didn’t respect old men or pity children. + +They have carried away the dear beloved sons of the widow, and left her who was alone desolate of her daughters.” + +

+

But I—how can I help you? + +For he who brought these calamities upon you will deliver you from the hand of your enemies. + +Go your way, O my children. Go your way, for I am left desolate. + +I have put off the garment of peace, and put on the sackcloth of my petition. I will cry to the Everlasting as long as I live. + +

+

Take courage, my children. Cry to God, and he will deliver you from the power and hand of the enemies. + +For I have trusted in the Everlasting, that he will save you; and joy has come to me from the Holy One, because of the mercy that will soon come to you from your Everlasting Savior. + +For I sent you out with mourning and weeping, but God will give you to me again with joy and gladness forever. + +For as now those who dwell near Zion have seen your captivity, so they will shortly see your salvation from our God which will come upon you with great glory and brightness of the Everlasting. + +My children, suffer patiently the wrath that has come upon you from God, for your enemy has persecuted you; but shortly you will see his destruction and will tread upon their necks. + +My delicate ones have traveled rough roads. They were taken away like a flock carried off by enemies. + +

+

Take courage, my children, and cry to God; for you will be remembered by him who has brought this upon you. + +For as it was your decision to go astray from God, return and seek him ten times more. + +For he who brought these calamities upon you will bring you everlasting joy again with your salvation. + +Take courage, O Jerusalem, for he who called you by name will comfort you. + +Miserable are those who afflicted you and rejoiced at your fall. + +Miserable are the cities which your children served. Miserable is she who received your sons. + +For as she rejoiced at your fall and was glad of your ruin, so she will be grieved at her own desolation. + +And I will take away her pride in her great multitude and her boasting will be turned into mourning. + +For fire will come upon her from the Everlasting for many days; and she will be inhabited by demons for a long time. + +

+

O Jerusalem, look around you toward the east, and behold the joy that comes to you from God. + +Behold, your sons come, whom you sent away. They come gathered together from the east to the west at the word of the Holy One, rejoicing in the glory of God. + +

+ + +

Take off the garment of your mourning and affliction, O Jerusalem, and put on forever the beauty of the glory from God. + +Put on the robe of the righteousness from God. Set on your head a diadem of the glory of the Everlasting. + +For God will show your splendor everywhere under heaven. + +For your name will be called by God forever “Righteous Peace, Godly Glory”. + +

+

Arise, O Jerusalem, and stand upon the height. Look around you toward the east and see your children gathered from the going down of the sun to its rising at the word of the Holy One, rejoicing that God has remembered them. + +For they went from you on foot, being led away by their enemies, but God brings them in to you carried on high with glory, on a royal throne. + +For God has appointed that every high mountain and the everlasting hills should be made low, and the valleys filled up to make the ground level, that Israel may go safely in the glory of God. + +Moreover the woods and every sweet smelling tree have shaded Israel by the commandment of God. + +For God will lead Israel with joy in the light of his glory with the mercy and righteousness that come from him. + +

+ + +The Letter of Jeremy (Jeremiah) + +

A copy of a letter that Jeremy sent to those who were to be led captives into Babylon by the king of the Babylonians, to give them the message that God commanded him. + +

+

Because of the sins which you have committed before God, you will be led away captives to Babylon by Nabuchodonosor king of the Babylonians. + +So when you come to Babylon, you will remain there many years, and for a long season, even for seven generations. After that, I will bring you out peacefully from there. + +But now you will see in Babylon gods of silver, gold, and wood carried on shoulders, which cause the nations to fear. + +Beware therefore that you in no way become like these foreigners. Don’t let fear take hold of you because of them when you see the multitude before them and behind them, worshiping them. + +But say in your hearts, “O Lord, we must worship you.” + +For my angel is with you, and I myself care for your souls. + +For their tongue is polished by the workman, and they themselves are overlaid with gold and with silver; yet they are only fake, and can’t speak. + +And taking gold, as if it were for a virgin who loves to be happy, they make crowns for the heads of their gods. + +Sometimes also the priests take gold and silver from their gods, and spend it on themselves. + +They will even give some of it to the common prostitutes. They dress them like men with garments, even the gods of silver, gods of gold, and gods of wood. + +Yet these gods can’t save themselves from rust and moths, even though they are covered with purple garments. + +They wipe their faces because of the dust of the temple, which is thick upon them. + +And he who can’t put to death one who offends against him holds a sceptre, as though he were judge of a country. + +He has also a dagger in his right hand, and an axe, but can’t deliver himself from war and robbers. + +By this they are known not to be gods. Therefore don’t fear them. + +For like a vessel that a man uses is worth nothing when it is broken, even so it is with their gods. When they are set up in the temples, their eyes are full of dust through the feet of those who come in. + +As the courts are secured on every side upon him who offends the king, as being committed to suffer death, even so the priests secure their temples with doors, with locks, and bars, lest they be carried off by robbers. + +They light candles for them, yes, more than for themselves, even though they can’t see one. + +They are like one of the beams of the temple. Men say their hearts are eaten out when things creeping out of the earth devour both them and their clothing. They don’t feel it + +when their faces are blackened through the smoke that comes out of the temple. + +Bats, swallows, and birds land on their bodies and heads. So do the cats. + +By this you may know that they are no gods. Therefore don’t fear them. + +Notwithstanding the gold with which they are covered to make them beautiful, unless someone wipes off the tarnish, they won’t shine; for they didn’t even feel it when they were molten. + +Things in which there is no breath are bought at any cost. + +Having no feet, they are carried upon shoulders. By this, they declare to men that they are worth nothing. + +Those who serve them are also ashamed, for if they fall to the ground at any time, they can’t rise up again by themselves. If they are bowed down, they can’t make themselves straight; but the offerings are set before them, as if they were dead men. + +And the things that are sacrificed to them, their priests sell and spend. In like manner, their wives also lay up part of it in salt; but to the poor and to the impotent they give none of it. + +The menstruous woman and the woman in childbed touch their sacrifices, knowing therefore by these things that they are no gods. Don’t fear them. + +For how can they be called gods? Because women set food before the gods of silver, gold, and wood. + +And in their temples the priests sit on seats, having their clothes torn and their heads and beards shaven, and nothing on their heads. + +They roar and cry before their gods, as men do at the feast when one is dead. + +The priests also take off garments from them and clothe their wives and children with them. + +Whether it is evil or good what one does to them, they are not able to repay it. They can’t set up a king or put him down. + +In like manner, they can neither give riches nor money. Though a man make a vow to them and doesn’t keep it, they will never exact it. + +They can save no man from death. They can’t deliver the weak from the mighty. + +They can’t restore a blind man to his sight, or deliver anyone who is in distress. + +They can show no mercy to the widow, or do good to the fatherless. + +They are like the stones that are cut out of the mountain, these gods of wood that are overlaid with gold and with silver. Those who minister to them will be confounded. + +

+

How could a man then think or say that they are gods, when even the Chaldeans themselves dishonor them? + +If they shall see one mute who can’t speak, they bring him and ask him to call upon Bel, as though he were able to understand. + +Yet they can’t perceive this themselves, and forsake them; for they have no understanding. + +The women also with cords around them sit in the ways, burning bran for incense; but if any of them, drawn by someone who passes by, lies with him, she reproaches her fellow, that she was not thought as worthy as herself and her cord wasn’t broken. + +Whatever is done among them is false. How could a man then think or say that they are gods? + +They are fashioned by carpenters and goldsmiths. They can be nothing else than what the workmen make them to be. + +And they themselves who fashioned them can never continue long. How then should the things that are fashioned by them? + +For they have left lies and reproaches to those who come after. + +For when there comes any war or plague upon them, the priests consult with themselves, where they may be hidden with them. + +How then can’t men understand that they are no gods, which can’t save themselves from war or from plague? + +For seeing they are only wood and overlaid with gold and silver, it will be known hereafter that they are false. + +It will be manifest to all nations and kings that they are no gods, but the works of men’s hands, and that there is no work of God in them. + +Who then may not know that they are not gods? + +

+

For they can’t set up a king in a land or give rain to men. + +They can’t judge their own cause, or redress a wrong, being unable; for they are like crows between heaven and earth. + +For even when fire falls upon the house of gods of wood overlaid with gold or with silver, their priests will flee away, and escape, but they themselves will be burned apart like beams. + +Moreover they can’t withstand any king or enemies. How could a man then admit or think that they are gods? + +Those gods of wood overlaid with silver or with gold aren’t able to escape from thieves or robbers. + +The gold, silver, and garments with which they are clothed—those who are strong will take from them, and go away with them. They won’t be able to help themselves. + +Therefore it is better to be a king who shows his manhood, or else a vessel in a house profitable for whatever the owner needs, than such false gods—or even a door in a house, to keep the things safe that are in it, than such false gods; or better to be a pillar of wood in a palace than such false gods. + +

+

For sun, moon, and stars, being bright and sent to do their jobs, are obedient. + +Likewise also the lightning when it flashes is beautiful to see. In the same way, the wind also blows in every country. + +And when God commands the clouds to go over the whole world, they do as they are told. + +And the fire sent from above to consume mountains and woods does as it is commanded; but these are to be compared to them neither in show nor power. + +Therefore a man shouldn’t think or say that they are gods, seeing they aren’t able to judge causes or to do good to men. + +Knowing therefore that they are no gods, don’t fear them. + +For they can neither curse nor bless kings. + +They can’t show signs in the heavens among the nations, or shine as the sun, or give light as the moon. + +The beasts are better than they; for they can get under a covert, and help themselves. + +In no way then is it manifest to us that they are gods. Therefore don’t fear them. + +For as a scarecrow in a garden of cucumbers that keeps nothing, so are their gods of wood overlaid with gold and silver. + +Likewise also their gods of wood overlaid with gold and with silver are like a white thorn in an orchard that every bird sits upon. They are also like a dead body that is thrown out into the dark. + +You will know them to be no gods by the bright purple that rots upon them. They themselves will be consumed afterwards, and will be a reproach in the country. + +Better therefore is the just man who has no idols; for he will be far from reproach. + +

+
+ +1 Maccabees +The First Book of the Maccabees +1 Maccabees +1Ma +

The First Book of the Maccabees +

+

The First Book of the Maccabees is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +

+ + +

After Alexander the Macedonian, the son of Philip, who came out of the land of Chittim, and struck Darius king of the Persians and Medes, it came to pass, after he had struck him, that he reigned in his place, in former time, over1:1 +That is, the Greek Empire. Compare 1 Maccabees 1:10 and 1 Maccabees 6:2. + Greece. + +He fought many battles, won many strongholds, killed the kings of the earth, + +went through to the ends of the earth, and took spoils of a multitude of nations. The earth was quiet before him. He was exalted. His heart was lifted up. + +He gathered together an exceedingly strong army and ruled over countries, nations, and principalities, and they paid him tribute. + +

+

After these things he fell sick, and perceived that he was going to die. + +He called his honorable servants, which had been brought up with him from his youth, and he divided to them his kingdom while he was still alive. + +Alexander reigned twelve years, then he died. + +Then his servants ruled, each one in his place. + +They all put crowns upon themselves after he was dead, and so did their sons after them many years; and they multiplied evils on the earth. + +

+

There came out of them a sinful root, Antiochus Epiphanes, son of Antiochus the king, who had been a hostage at Rome, and he reigned in1:10 +circa B.C. 176. + the one hundred thirty seventh year of the kingdom of the Greeks. + +

+

In those days transgressors of the law came out of Israel and persuaded many, saying, “Let’s go make a covenant with the1:11 +Or, +nations: +and so throughout this book. Gentiles around us; for since we were separated from them many evils have befallen us.” + +That proposal was good in their eyes. + +Some of the people eagerly went to the king, and he authorized them to observe the ordinances of the1:13 +Or, +nations: +and so throughout this book. Gentiles. + +So1:14 +See 2 Maccabees 4:9, 12. + they built a gymnasium in Jerusalem according to the laws of the1:14 +Or, +nations: +and so throughout this book. + Gentiles. + +They made themselves uncircumcised, forsook the holy covenant, joined themselves to the1:15 +Or, +nations: +and so throughout this book + Gentiles, and sold themselves to do evil. + +

+

The kingdom was established in the sight of Antiochus, and he planned to reign over Egypt, that he might reign over both kingdoms. + +He entered into Egypt with a1:17 +Gr. +heavy. + great multitude, with chariots, with elephants, with cavalry, and with a great1:17 +Or, +armament + navy. + +He made war against Ptolemy king of Egypt. Ptolemy was put to shame before him, and fled; and many fell wounded to death. + +They took possession of the strong cities in the land of Egypt, and he took the spoils of Egypt. + +

+

Antiochus, after he had defeated Egypt, returned in1:20 +circa B.C. 170. See 2 Maccabees 5:11-16. + the one hundred forty third year, and went up against Israel and Jerusalem with a1:20 +Gr. +heavy. + great multitude, + +and entered presumptuously into the sanctuary, and took the golden altar, the lampstand for the light, and all its utensils. + +He took the table of the show bread, the cups for the drink offerings, the bowls, the golden censers, the veil, the crowns, and the gold decoration on the front of the temple. He peeled it all off. + +He took the silver, the gold, and the precious vessels. He took the hidden treasures which he found. + +When he had taken all of these, he went away into his own land. He made a great slaughter, and spoke very arrogantly. + +Great mourning came upon Israel, in every place where they were. + +The rulers and elders groaned. The virgins and young men were made feeble. The beauty of the women was changed. + +Every bridegroom took up lamentation. She who sat in the marriage chamber was mourning. + +The land was moved for its inhabitants, and all the house of Jacob was clothed with shame. + +

+

1:29 +See 2 Maccabees 5:24. +After two full years, the king sent a chief collector of tribute to the cities of Judah, and he came to Jerusalem with a +1:29 +Gr. +heavy. +great multitude. + +He spoke words of peace to them in subtlety, and they believed him. Then he fell upon the city suddenly, struck it very severely, and destroyed many people of Israel. + +He took the spoils of the city, set it on fire, and pulled down its houses and its walls on every side. + +They led captive the women and the children, and seized the livestock. + +Then they fortified the city of David with a large, strong wall and with strong towers, and it became their citadel. + +They put a sinful nation, transgressors of the law, there, and they strengthened themselves in it. + +They stored up weapons and food, and gathering together the spoils of Jerusalem, they stored them there, and they became a great menace. + +It became a place to lie in wait against the sanctuary, and an evil adversary to Israel continually. + +They shed innocent blood on every side of the sanctuary, and defiled the sanctuary. + +The inhabitants of Jerusalem fled because of them. She became a habitation of foreigners. She became foreign to those who were born in her, and her children forsook her. + +Her sanctuary was laid waste like a wilderness,1:39 +See 2 Maccabees 6:6. + her feasts were turned into mourning, her Sabbaths into reproach, and her honor into contempt. + +According to her glory, so was her dishonor multiplied, and her exaltation was turned into mourning. + +

+

King Antiochus wrote to his whole kingdom that all should be one people, + +and that each should forsake his own laws. All the nations agreed according to the word of the king. + +Many of Israel consented to his worship, sacrificed to the idols, and profaned the Sabbath. + +The king sent letters by the hand of messengers to Jerusalem and the cities of Judah, that they should follow laws strange to the land, + +and should forbid whole burnt offerings and sacrifice and drink offerings in the sanctuary; and should profane the Sabbaths and feasts, + +and pollute the sanctuary and those who were holy; + +that they should build altars, and temples, and shrines for idols, and should sacrifice swine’s flesh and unclean animals; + +and that they should leave their sons uncircumcised, that they should make their souls abominable with all manner of uncleanness and profanation; + +so that they might forget the law, and change all the ordinances. + +Whoever doesn’t do according to the word of the king, he shall die. + +He wrote according to all these words to his whole kingdom. He appointed overseers over all the people, and he commanded the cities of Judah to sacrifice, city by city. + +From the people were gathered together to them many, everyone who had forsaken the law; and they did evil things in the land. + +They made Israel to hide themselves in every place of refuge which they had. + +

+

On the fifteenth day of Chislev, in1:54 +circa B.C. 168. See 2 Maccabees 5:11. + the one hundred forty fifth year, they built an abomination of desolation upon the altar,1:54 +The two words rendered +altar +are different in the Greek: and so in 1 Maccabees 1:59. + and in the cities of Judah on every side they built idol altars.1:54 +The two words rendered +altar +are different in the Greek: and so in 1 Maccabees 1:59. + + +At the doors of the houses and in the streets they burned incense. + +They tore the books of the law which they found in pieces and set them on fire. + +Anyone who was found with any a book of the covenant, and if any consented to the law, the king’s sentence delivered him to death. + +Thus did they in their might to Israel, to those who were found month by month in the cities. + +On the twenty-fifth day of the month they sacrificed upon the idol altar that was on top of the altar of burnt offering. + +1:60 +See 2 Maccabees 6:10.They put to death women who had circumcised their children, according to the commandment. + +They hung their babies around their necks, and their houses, and those who had circumcised them. + +Many in Israel were fully resolved and confirmed in themselves not to eat unclean things. + +1:63 +See 2 Maccabees 6:19 and 7:1, etc. +They chose to die, that they might not be defiled with the food, and that they might not profane the holy covenant; and they died. + +Exceedingly great wrath came upon Israel. + +

+ + +

In those days Mattathias the son of John, the son of Simeon, a priest of the sons of Joarib, from Jerusalem rose up; and he lived at Modin. + +And he had five sons:2:2 +Gr. +Joannes. + John, who was surnamed Gaddis; + +Simon, who was called Thassi; + +Judas, who was called Maccabaeus; + +Eleazar, who was called Avaran; and Jonathan, who was called Apphus. + +

+

He saw the blasphemies that were committed in Judah and in Jerusalem, + +and he said, “Woe is me! Why was I born to see the destruction of my people and the destruction of the holy city, and to dwell there when it was given into the hand of the enemy, the sanctuary into the hand of foreigners? + +Her temple has become like a man who was glorious. + +Her vessels of glory are carried away into captivity. Her infants are slain in her streets. Her young men are slain with the enemy’s sword. + +What nation has not inherited her palaces and taken possession of her spoils? + +Her adornment has all been taken away. Instead of a free woman, she has become a slave. + +Behold, our holy things, our beauty, and our glory are laid waste. The Gentiles have profaned them. + +Why should we live any longer?” + +

+

Mattathias and his sons tore their clothes, put on sackcloth, and mourned exceedingly. + +

+

And the king’s officers who were enforcing the apostasy came into the city Modin to sacrifice. + +Many of Israel came to them, and Mattathias and his sons were gathered together. + +The king’s officers answered and spoke to Mattathias, saying, “You are a ruler and an honorable and great man in this city, and strengthened with sons and kindred. + +Now therefore come first and do the commandment of the king, as all the nations have done, including the men of Judah and those who remain in Jerusalem. You and your house will be numbered among the king’s2:18 +See 1 Maccabees 3:38; 10:10, etc.; Compare 1 Maccabees 10:65; 11:27; 2 Maccabees 8:9. + friends, and you and your sons will be honored with silver and gold and many gifts.” + +

+

And Mattathias answered and said with a loud voice, “If all the nations that are in the house of the king’s dominion listen to him, to fall away each one from the worship of his fathers, and have chosen to follow his commandments, + +yet I and my sons and my kindred will walk in the covenant of our fathers. + +Far be it from us that we should forsake the law and the ordinances. + +We will not listen to the king’s words, to turn aside from our worship, to the right hand, or to the left.” + +

+

When he had finished speaking these words, a Jew came in the sight of all to sacrifice on the altar which was at Modin, according to the king’s commandment. + +Mattathias saw it, so his zeal was kindled, and his guts trembled, and he vented his wrath according to judgment, and ran and killed him upon the altar. + +He killed the king’s officer, who compelled men to sacrifice, at the same time, and pulled down the altar. + +He was zealous for the law, even as Phinehas did to Zimri the son of Salu. + +

+

Mattathias cried out in the city with a loud voice, saying, “Whoever is zealous for the law and maintains the covenant, let him follow me!” + +He and his sons fled into the mountains, and left all that they had in the city. + +

+

Then many who sought justice and judgment went down into the wilderness to live there— + +they, their children, their wives, and their livestock—because evils were multiplied upon them. + +It was told to the king’s officers and the forces that were in Jerusalem, the city of David, that certain men who had broken the king’s commandment had gone down into the secret places in the wilderness; + +and many pursued after them, and having overtaken them, they encamped against them and set the battle in array against them on the Sabbath day. + +They said to them, “Enough of this! Come out and do according to the word of the king, and you will all live!” + +

+

They said, “We won’t come out. We won’t do the word of the king, to profane the Sabbath day.” + +

+

Then the enemy hurried to attack them. + +

+

They didn’t answer them. They didn’t cast a stone at them, or block their secret places, + +saying, “Let’s all die in our innocence. Heaven and earth testify for us, that you put us to death unjustly.” + +

+

So they attacked them on the Sabbath, and they died—they, their wives, their children, and their livestock—in number a thousand souls of men. + +

+

When Mattathias and his friends found out about it, they mourned over them exceedingly. + +One said to another, “If we all do as our kindred have done, and don’t fight against the Gentiles for our lives and our ordinances, they will quickly destroy us from off the earth.” + +So they decided that day, saying, “Whoever comes against us to battle on the Sabbath day, let’s fight against him, and we will in no way all die, as our kindred died in the secret places.” + +

+

Then a company of the Hasidaeans,2:42 +That is, +Chasidim. + mighty men of Israel, everyone who offered himself willingly for the law, were gathered together to them. + +All those who fled from the evils were added to them, and supported them. + +They mustered an army, and struck sinners in their anger, and lawless men in their wrath. The rest fled to the Gentiles for safety. + +And Mattathias and his friends went around and pulled down the altars. + +They forcibly circumcised the boys who were uncircumcised, as many as they found in the coasts of Israel. + +They pursued the arrogant, and the work prospered in their hand. + +They rescued the law out of the hand of the Gentiles and out of the hand of the kings. They never allowed the sinner to triumph. + +

+

The days of Mattathias drew near that he should die, and he said to his sons, “Now pride and scorn have gained strength. It is a season of overthrow and indignant wrath. + +Now, my children, be zealous for the law, and give your lives for the covenant of your fathers. + +Call to remembrance the deeds of our fathers which they did in their generations; and receive great glory and an everlasting name. + +Wasn’t Abraham found faithful in temptation, and it was reckoned to him for righteousness? + +Joseph in the time of his distress kept the commandment, and became lord of Egypt. + +Phinehas our father, because he was exceedingly zealous, obtained the covenant of an everlasting priesthood. + +Joshua became a judge in Israel for fulfilling the word. + +Caleb obtained a heritage in the land for testifying in the congregation. + +David inherited the throne of a kingdom forever and ever for being merciful. + +Elijah was taken up into heaven because he was exceedingly zealous for the law. + +Hananiah, Azariah, and Mishael believed, and were saved out of the flame. + +Daniel was delivered from the mouth of lions for his innocence. + +

+

“Thus consider from generation to generation that no one who put their trust in him will lack for strength. + +Don’t be afraid of the words of a sinful man; for his glory will be dung and worms. + +Today he will be lifted up, and tomorrow he will in no way be found, because he has returned to dust, and his thought has perished. + +You, my children, be strong, and show yourselves men on behalf of the law; for in it you will obtain glory. + +Behold, Simon your brother, whom I know to be a man of counsel. Always listen to him. He shall be a father to you. + +Judas Maccabaeus has been strong and mighty from his youth. He shall be your captain and shall fight2:66 +Some ancient authorities read +you shall fight. + the battle of the people. + +Rally around all the doers of the law, and avenge the wrong done to your people. + +Repay the Gentiles, and obey the commandments of the law.” + +

+

He blessed them, and was gathered to his ancestors. + +He died in2:70 +circa B.C. 167. + the one hundred forty sixth year, and his sons buried him in the tombs of his ancestors at Modin. All Israel made great lamentation for him. + +

+ + +

His son Judas, who was called Maccabaeus, rose up in his place. + +All his kindred helped him, and so did all those who joined with his father, and they fought with gladness the battle of Israel. + +He got his people great glory, and put on a breastplate like a giant, and bound his warlike harness around him, and set battles in array, protecting the army with his sword. + +He was like a lion in his deeds, and like a lion’s cub roaring for prey. + +He hunted and pursued the lawless, and he burned up those who troubled his people. + +The lawless shrunk back for fear of him, and all the workers of lawlessness were very troubled, and deliverance prospered in his hand. + +He angered many kings and made Jacob glad with his acts. His memory is blessed forever. + +He went through the cities of Judah, destroyed the ungodly out of the land, and turned away wrath from Israel. + +He was renowned to the utmost part of the earth. He gathered together those who were ready to perish. + +

+

Apollonius gathered the Gentiles together with a great army from Samaria to fight against Israel. + +Judas learned of it, and he went out to meet him, struck him, and killed him. Many fell wounded to death, and the rest fled. + +They took their spoils, and Judas took Apollonius’ sword, and he fought with it all his days. + +

+

Seron, the commander of the army of Syria, heard that Judas had gathered a large company, including a body of faithful men who stayed with him, went out to war. + +He said, “I will make myself a name and get myself glory in the kingdom. I will fight against Judas and those who are with him, who despise the king’s command. + +A mighty army of the ungodly went up with him to help him, to take vengeance on the children of Israel. + +

+

He came near to the ascent of Bethhoron, and Judas went out to meet him with a small company. + +But when they saw the army coming to meet them, they said to Judas, “What? Shall we be able, being a small company, to fight against so great and strong a multitude? We for our part are faint, having tasted no food this day.” + +

+

Judas said, “It is an easy thing for many to be hemmed in by the hands of a few. With3:18 +Some ancient authorities read +the God of heaven. + heaven it is all one, to save by many or by few; + +for victory in battle stands not in the multitude of an army, but strength is from heaven. + +They come to us in fullness of insolence and lawlessness, to destroy us and our wives and our children, and to plunder us, + +but we fight for our lives and our laws. + +He himself will crush them before our face; but as for you, don’t be afraid of them. + +

+

Now when he had finished speaking, he rushed suddenly against Seron and his army, and they were defeated before him. + +They pursued them down the descent of Bethhoron to the plain, and about eight hundred men of them fell; but the rest fled into the land of the Philistines. + +

+

The fear of Judas and his kindred, and the dread of them, began to fall on the nations around them. + +His fame reached the king, and every nation told of the battles of Judas. + +

+

But when King Antiochus heard these words, he was full of indignation; and he sent and gathered together all the forces of his realm, an exceedingly strong army. + +He opened his treasury and gave his forces pay for a year, and commanded them to be ready for every need. + +He saw that the money was gone from his treasures, and that the tributes of the country were small, because of the dissension and disaster which he had brought upon the land, to the end that he might take away the laws which had been from the first days. + +He was afraid that he wouldn’t have enough as at other times for the charges and the gifts which he used to give with a liberal hand, more abundantly than the kings who were before him. + +And he was exceedingly perplexed in his mind, and he determined to go into Persia, and to take the tributes of those countries, and to gather much money. + +He left Lysias, an honorable man, and one of royal lineage, to be over the affairs of the king from the river Euphrates to the borders of Egypt, + +and to bring up his son Antiochus, until he came again. + +He delivered to Lysias half of his forces and the elephants, and gave him charge of all the things that he would have done, and concerning those who lived in Judea and in Jerusalem, + +that he should send an army against them to root out and destroy the strength of Israel and the remnant of Jerusalem, and to take away their memory from the place, + +and that he should make foreigners live in all their territory, and should divide their land to them by lot. + +The king took the half that remained of the forces, and left Antioch, his royal city, in the one hundred forty seventh year;3:37 +circa B.C. 166. + and he passed over the river Euphrates, and went through the upper countries. + +

+

Lysias chose Ptolemy the son of Dorymenes, Nicanor, and Gorgias, mighty men of the king’s friends;3:38 +See 1 Maccabees 2:18. + + +and with them, he sent forty thousand infantry and seven thousand cavalry to go into the land of Judah and to destroy it, according to the word of the king. + +They set out with all their army, and came and encamped near Emmaus in the plain country. + +The merchants of the country heard of their fame, and took silver and gold in large quantities, and fetters,3:41 +Most of the authorities read +servants. + and came into the camp to take the children of Israel for slaves. Forces of Syria and of the land of the Philistines3:41 +Gr. +foreigners. + joined with them. + +

+

Judas and his kindred saw that evils were multiplied, and that the forces were encamping in their borders. They learned about the king’s words which he had commanded, to destroy the people and make an end of them. + +Then they each said to his neighbor, “Let’s repair the ruins of our people. Let’s fight for our people and the holy place.” + +The congregation was gathered together, that they might be ready for battle, and that they might pray and ask for mercy and compassion. + +Jerusalem was without inhabitant like a wilderness. There was none of her offspring who went in or went out. The sanctuary was trampled down. Children of foreigners were in the citadel. The Gentiles lived there. Joy was taken away from Jacob, and the pipe and the harp ceased. + +They gathered themselves together, and came to Mizpeh, near Jerusalem; for in Mizpeh there used to be a place of prayer for Israel. + +They fasted that day, put on sackcloth, put ashes on their heads, tore their clothes, + +and opened the book of the law, to learn about the things for which the Gentiles consulted the images of their idols. + +They brought the priests’ garments, the first fruits, and the tithes. They stirred up the Nazarites, who had accomplished their days. + +They cried aloud toward heaven, saying, “What should we do with these men? Where should we carry them away? + +Your holy place is trampled down and profaned. Your priests mourn in humiliation. + +Behold, the Gentiles are assembled together against us to destroy us. You know what things they imagine against us. + +How will we be able to stand against them, unless you help us?” + +They sounded with the trumpets, and gave a loud shout. + +

+

And after this Judas appointed leaders of the people: captains of thousands, captains of hundreds, captains of fifties, and captains of tens. + +He said to those who were building houses, were betrothing wives, were planting vineyards, and were fearful, that they should return, each man to his own house, according to the law. + +The army marched out and encamped upon the south side of Emmaus. + +Judas said, “Arm yourselves and be valiant men! Be ready in the morning to fight with these Gentiles who are assembled together against us to destroy us and our holy place. + +For it is better for us to die in battle than to see the calamities of our nation and the holy place. + +Nevertheless, as may be the will in heaven, so shall he do. + +

+ + +

Gorgias took five thousand infantry, a thousand chosen cavalry, and the army moved out at night, + +that it might fall upon the army of the Jews and strike them suddenly. The men of the citadel were his guides. + +Judas heard of this, and he and the valiant men moved, that he might strike the king’s army which was at Emmaus + +while the forces were still dispersed from the camp. + +Gorgias came into the camp of Judas at night and found no man. He sought them in the mountains; for he said, “These men are running away from us.” + +

+

As soon as it was day, Judas appeared in the plain with three thousand men. However they didn’t have the armor and swords they desired. + +They saw the camp of the Gentiles strong and fortified, with cavalry all around it; and these were expert in war. + +Judas said to the men who were with him, “Don’t be afraid of their numbers, or when they charge. + +Remember how our fathers were saved in the Red sea, when Pharaoh pursued them with an army. + +Now let’s cry to heaven, if he will have us, and will remember the covenant of our fathers, and destroy this army before our face today. + +Then all the Gentiles will know that there is one who redeems and saves Israel. + +

+

The foreigners lifted up their eyes, and saw them coming near them. + +They went out of the camp to battle. Those who were with Judas sounded their trumpets + +and joined battle. The Gentiles were defeated, and fled into the plain. + +But all those in the rear fell by the sword. They pursued them to4:15 +Gr. +Gazera. + Gazara, and to the plains of Idumaea, Azotus, and Jamnia. About three thousand of those men fell. + +Then Judas and his army returned from pursuing them; + +and he said to the people, “Don’t be greedy for the spoils, because there is a battle before us. + +Gorgias and his army are near us on the mountain. But stand now against our enemies and fight against them, and afterwards take the spoils with boldness.” + +While Judas was finishing this speech, a part of them appeared looking out from the mountain. + +They saw that their army had been put to flight, and that the Jews were burning the camp; for the smoke that was seen declared what was done. + +But when they perceived these things, they were very afraid. Perceiving also the army of Judas in the plain ready for battle, + +they all fled into the land of the4:22 +Gr. +foreigners. + Philistines. + +Judas returned to plunder the camp, and they took much gold, silver, blue, sea purple, and great riches. + +Then they returned home, and sang a song of thanksgiving, and gave praise to heaven, because he is good, because his mercy endures forever. + +Israel had a great deliverance that day. + +

+

The foreigners who had escaped came and told Lysias all the things that had happened. + +When he heard of it, he was confounded and discouraged, because the things he desired had not been done to Israel, nor had such things happened as the king commanded him. + +

+

In the next year, he gathered together sixty thousand chosen infantry and five thousand cavalry, that he might subdue them. + +They came into Idumaea and encamped at Bethsura. Judas met them with ten thousand men. + +He saw that the army was strong, and he prayed and said, “Blessed are you, O Savior of Israel, who defeated the attack of the mighty warrior by the hand of your servant David, and delivered the army of the4:30 +Gr. +foreigners. + Philistines into the hands of Jonathan the son of Saul, and of his armor bearer. + +Hem in this army in the hand of your people Israel, and let them be ashamed for their army and their cavalry. + +Give them faintness of heart. Cause the boldness of their strength to melt away, and let them quake at their destruction. + +Strike them down with the sword of those who love you, and let all who know your name praise you with thanksgiving.” + +

+

They joined in battle; and about five thousand men of Lysias’ army fell. They fell down near them. + +But when Lysias saw that his troops were put to flight, and the boldness that had come upon those who were with Judas, and how they were ready either to live or to die nobly, he withdrew to Antioch, and gathered together hired soldiers, that he might come again into Judea with an even greater army. + +

+

But Judas and his kindred said, “Behold, our enemies are defeated. Let’s go up to cleanse the holy place and to rededicate it.” + +All the army was gathered together, and they went up to mount Zion. + +They saw the sanctuary laid desolate, the altar profaned, the gates burned up, shrubs growing in the courts as in a forest or as on one of the mountains, and the priests’ chambers pulled down; + +and they tore their clothes, made great lamentation, put ashes upon their heads, + +fell on their faces to the ground, +4:40 +Compare Numbers 31:6. +blew with the solemn trumpets,4:40 +Gr. +trumpets of signals. + and cried toward heaven. + +Then Judas appointed certain men to fight against those who were in the citadel until he had cleansed the holy place. + +

+

He chose blameless priests who were devoted to the law; + +and they cleansed the holy place and carried the defiled stones out to an unclean place. + +They deliberated what to do with the altar of burnt offerings, which had been profaned. + +A good plan came into their mind, that they should pull it down, lest it would be a reproach to them, because the Gentiles had defiled it. So they pulled down the altar + +and laid up the stones on the temple hill in a convenient place, until a prophet would come to give an answer concerning them. + +They took whole stones according to the law, and built a new altar like the former. + +They built the holy place and the inner parts of the house; and they consecrated the courts. + +They made new holy vessels, and they brought the lampstand, the altar of incense, and the table into the temple. + +They burned incense on the altar, and they lit the lamps that were upon the lampstand, and they gave light in the temple. + +They set loaves upon the table, hung up the curtains, and finished all the work which they had done. + +

+

They rose up early in the morning, on the twenty-fifth day of the ninth month, which is the month Chislev, in4:52 +circa B.C. 165. + the one hundred forty eighth year, + +and offered sacrifice according to the law on the new altar of burnt offerings which they had made. + +At the time and day the Gentiles had profaned it, even then it was dedicated with songs, harps, lutes, and with cymbals. + +All the people fell on their faces, worshiped, and gave praise toward heaven, which had given them good success. + +They celebrated the dedication of the altar eight days, and offered burnt offerings with gladness, and sacrificed a sacrifice of deliverance and praise. + +They decorated the front of the temple with crowns of gold and small shields. They dedicated the gates and the priests’ chambers, and made doors for them. + +There was exceedingly great gladness among the people, and the reproach of the Gentiles was turned away. + +

+

Judas and his kindred and the whole congregation of Israel ordained that the days of the dedication of the altar should be kept in their seasons from year to year for eight days, from the twenty-fifth day of the month Chislev, with gladness and joy. + +

+

At that time, they fortified mount Zion with high walls and strong towers around it, lest perhaps the Gentiles might come and trample them down, as they had done before. + +Judas stationed a garrison to guard it. They fortified Bethsura to keep it, that the people might have a stronghold near Idumaea. + +

+ + +

It came to pass, when the Gentiles all around heard that the altar had been rebuilt and the sanctuary dedicated as before, they were exceedingly angry. + +They took counsel to destroy the race of Jacob that was in the midst of them, and they began to kill and destroy among the people. + +Judas fought against the children of Esau in Idumaea at Akrabattine, because they besieged Israel. He struck them with a great slaughter, humbled them, and took their spoils. + +He remembered the wickedness of the children of5:4 +Compare 2 Maccabees 10:18-23. + Baean, who were a snare and a stumbling block to the people, lying in wait for them on the highways. + +They were shut up by him in the towers. He encamped against them, and destroyed them utterly, and burned with fire the towers of the place with all who were in them. + +He passed over to the children of Ammon, and found a mighty band and many people, with Timotheus for their leader. + +He fought many battles with them, and they were defeated before his face. He struck them, + +and took possession of Jazer and its villages,5:8 +Gr. +daughters. +Compare Numbers 21:25. + and returned again into Judea. + +

+

The Gentiles who were in Gilead gathered themselves together against the Israelites who were on their borders, to destroy them. They fled to the stronghold of Dathema, + +and sent letters to Judas and his kindred, saying, “The Gentiles who are around us are gathered together against us to destroy us. + +They are preparing to come and get possession of the stronghold where we fled for refuge, and Timotheus is the leader of their army. + +Now therefore come and deliver us from their hand, for many of us have fallen. + +All our kindred who were in the land of +5:13 +Compare 2 Maccabees 12:17. +Tubias have been put to death. They have carried their wives, their children, and their stuff into captivity. They destroyed about a thousand men there.” + +

+

While the letters were still being read, behold, other messengers came from Galilee with their clothes torn, bringing a similar report, + +saying, “People of Ptolemais, of Tyre, of Sidon, and all Galilee of the5:15 +Gr. +foreigners. + Gentiles have gathered together to destroy us.” + +

+

Now when Judas and the people heard these words, a great congregation assembled together to determine what they should do for their kindred who were in distress and under attack. + +Judas said to Simon his brother, “Choose men and go deliver your kindred who are in Galilee, but Jonathan my brother and I will go into the land of Gilead.” + +He left Joseph the son of Zacharias, and Azarias, as leaders of the people, with the remnant of the army, in Judea, to guard it. + +He commanded them, saying, “Take charge of this people, and fight no battle with the Gentiles until we return.” + +Then three thousand men were assigned to go into Galilee with Simon, but eight thousand men were assigned to Judas to go into the land of Gilead. + +

+

Simon went into Galilee and fought many battles with the Gentiles, and the Gentiles were defeated before him. + +He pursued them to the gate of Ptolemais. About three thousand men of the Gentiles fell, and he took their spoils. + +They took to them those who were in Galilee and in Arbatta, with their wives, their children, and all that they had, and brought them into Judea with great gladness. + +Judas Maccabaeus and his brother Jonathan passed over the Jordan, and went three days’ journey in the wilderness. + +They met with the Nabathaeans, and these met them in a peaceful manner and told them all things that had happened to their kindred in the land of Gilead, + +and how many of them were shut up in Bosora, Bosor, Alema,5:26 +Compare 2 Maccabees 12:13. + Casphor, Maked, and5:26 +compare 2 Maccabees 12:21. + Carnaim—all these cities are strong and large— + +and how they were shut up in the rest of the cities of the land of Gilead, and that tomorrow they planned to encamp against the strongholds, and to take them, and to destroy all these men in one day. + +

+

Judas and his army turned suddenly by the way of the wilderness to Bosora; and he took the city, and killed all the males with the edge of the sword, took all their spoils, and burned the city with fire. + +He left there at night, and went until he came to the stronghold. + +When the morning came, they lifted up their eyes and saw many people who couldn’t be counted, bearing ladders and engines of war, to take the stronghold; and they were fighting against them. + +Judas saw that the battle had begun, and that the cry of the city went up to heaven, with trumpets and a great sound, + +and he said to the men of his army, “Fight today for your kindred!” + +Then he went out behind them in three companies. They sounded with their trumpets and cried out in prayer. + +And the army of Timotheus perceived that it was Maccabaeus, and they fled from before him. He struck them with a great slaughter. About eight thousand men of them fell on that day. + +

+

He turned away to Mizpeh and fought against it, took it, killed all its males, took its spoils, and burned it with fire. + +From there he marched and took5:36 +See 1 Maccabees 5:26 + Casphor, Maked, Bosor, and the other cities of the land of Gilead. + +

+

Now after these things, Timotheus gathered another army and encamped near Raphon beyond the brook. + +Judas sent men to spy on the army; and they brought him word, saying, “All the Gentiles who are around us are gathered together to them, an exceedingly great army. + +They have hired Arabians to help them, and are encamped beyond the brook, ready to come against you to battle.” So Judas went to meet them. + +

+

Timotheus said to the captains of his army when Judas and his army drew near to the brook of water, “If he crosses over to us first, we won’t be able to withstand him, for he will certainly defeat us; + +but if he is afraid, and encamps beyond the river, we will cross over to him, and defeat him.” + +Now when Judas came near to the water brook, he caused the scribes of the people to remain by the brook, and commanded them, saying, “Allow no man to encamp, but let all come to the battle.” + +Then he crossed over against them first, and all the people after him; and all the Gentiles were defeated before his face, and threw away their weapons, and fled to the temple at +5:43 +See 1 Maccabees 5:26. +Carnaim. + +They took the city and burned the temple with fire, together with all who were in it. Carnaim was subdued. They couldn’t stand any longer before the face of Judas. + +

+

Judas gathered together all Israel, those who were in the land of Gilead, from the least to the greatest, with their wives, their children, and their stuff, an exceedingly great army, that they might come into the land of Judah. + +They came as far as Ephron, and this same city was large and very strong. It was on the road where they were going. They couldn’t turn away from it on the right hand or on the left, but needed to pass through the middle of it. + +The people of the city shut them out and blocked the gates with stones. + +Judas sent to them with words of peace, saying, “We will pass through your land to go into our own land, and no one will harm you. We will only pass by on our feet.” But they wouldn’t open to him. + +Then Judas commanded proclamation to be made in the army, that each man should encamp in the place where he was. + +So the men of the army encamped, and fought against the city all that day and all that night, and the city was delivered into his hands. + +He destroyed all the males with the edge of the sword, razed the city, took its plunder, and passed through the city over those who were slain. + +They went over the Jordan into the great plain near Bethshan. + +And Judas gathered together those who lagged behind and encouraged the people all the way through, until he came into the land of Judah. + +They went up to mount Zion with gladness and joy, and offered whole burnt offerings, because not so much as one of them was slain until they returned in peace. + +

+

In the days when Judas and Jonathan were in the land of Gilead, and Simon his brother in Galilee before Ptolemais, + +Joseph the son of Zacharias, and Azarias, rulers of the army, heard of their exploits and of the war, and what things they had done. + +They said, “Let’s also get us a name, and let’s go fight against the Gentiles who are around us.” + +So they gave orders to the men of the army that was with them, and went toward Jamnia. + +Gorgias and his men came out of the city to meet them in battle. + +Joseph and Azarias were put to flight, and were pursued to the borders of Judea. About two thousand men of Israel fell on that day. + +There was a great overthrow among the people, because they didn’t listen to Judas and his kindred, thinking to do some exploit. + +But they were not of the family of those men by whose hand deliverance was given to Israel. + +

+

The man Judas and his kindred were glorified exceedingly in the sight of all Israel, and of all the Gentiles, wherever their name was heard of. + +Men gathered together to them, acclaiming them. + +

+

Judas and his kindred went out and fought against the children of Esau in the land toward the south. He struck Hebron and its villages,5:65 +Gr. +daughters. +Compare Numbers 21:25. + pulled down its strongholds, and burned its towers all around. + +He marched to go into the land of the5:66 +Gr. +foreigners. + Philistines, and he went through5:66 +Or, +Marisa +See Josephus, Antiquities 12:8. 6, and 2 Maccabees 12:35. + Samaria. + +In that day certain priests, desiring to do exploits there, were slain in battle, when they went out to battle unadvisedly. + +But Judas turned toward Azotus, to the land of the5:68 +Gr. +foreigners. + Philistines, pulled down their altars, burned the carved images of their gods with fire, took the plunder of their cities, and returned into the land of Judah. + +

+ + +

King Antiochus was traveling through the upper countries; and he heard that in Elymais in Persia there was a city renowned for riches, for silver and gold, + +and that the temple which was in it was exceedingly rich, and that in it were golden shields, breastplates, and weapons which Alexander, son of Philip, the Macedonian king, who reigned first among the Greeks, left behind there. + +So he came and tried to take the city and to pillage it; and he was not able, because his plan was known to them of the city, + +and they rose up against him in battle. He fled and returned to Babylon with great disappointment. + +

+

Then someone came into Persia bringing him news that the armies which went against the land of Judah had been put to flight, + +and that Lysias went first with a strong army and was put to shame before them, and that they had grown strong because of weapons, power, and a supply of plunder which they took from the armies that they had cut off, + +and that they had pulled down the abomination which he had built upon the altar that was in Jerusalem, and that they had surrounded the sanctuary with high walls, as before, and also Bethsura, his city. + +

+

It came to pass, when the king heard these words, he was astonished and moved exceedingly. He laid himself down on his bed, and fell sick for grief, because it had not turned out for him as he had planned. + +He was there many days, because great grief continually gripped him, and he realized that he would die. + +He called for all his6:10 +See 1 Maccabees 2:18. + friends, and said to them, “Sleep departs from my eyes, and my heart fails because of worry. + +I said in my heart, ‘To what suffering I have come! How great a flood it is that I’m in, now! For I was gracious and loved in my power.’ + +But now I remember the evils which I did at Jerusalem, and that I took all the vessels of silver and gold that were in it, and sent out to destroy the inhabitants of Judah without a cause. + +I perceive that it is because of this that these evils have come upon me. Behold, I am perishing through great grief in a strange land.” + +

+

Then he called for Philip, one of his6:14 +See 1 Maccabees 2:18. + friends, and set him over all his kingdom. + +He gave him his crown, his robe, and his signet ring, so that he could guide Antiochus his son, and nourish him up that he might be king. + +Then King Antiochus died there in the one hundred forty-ninth year.6:16 +Circa B.C. 164. + +When Lysias learned that the king was dead, he set up Antiochus his son to reign, whom he had nourished up being young, and he called his name Eupator. + +

+

Those who were in the citadel kept hemming Israel in around the sanctuary, and always sought to harm them and to strengthen the Gentiles. + +Judas planned to destroy them, and called all the people together to besiege them. + +They were gathered together, and besieged them in6:20 +circa B.C. 163. + the one hundred fiftieth year, and he made mounds to shoot from, and engines of war. + +Some of those who were hemmed in came out, and some of the ungodly men of Israel were joined to them. + +They went to the king, and said, “How long will you not execute judgment, and avenge our kindred? + +We were willing to serve your father and to live by his words, and to follow his commandments. + +Because of this, the children of our people besieged the citadel6:24 +Gr. +it. + and were alienated from us; but as many of us as they could catch, they killed, and plundered our inheritances. + +Not against us only did they stretch out their hand, but also against all their borders. + +Behold, they are encamped this day against the citadel at Jerusalem to take it. They have fortified the sanctuary and Bethsura. + +If you don’t quickly prevent them, they will do greater things than these, and you won’t be able to control them. + +

+

When the king heard this, he was angry, and gathered together all his6:28 +See 1 Maccabees 2:18. + friends, the rulers of his army, and those who were over the cavalry. + +Bands of hired soldiers came to him from other kingdoms and from islands of the sea. + +The number of his forces was one hundred thousand infantry, and twenty thousand cavalry, and thirty-two elephants trained for war. + +They went through Idumaea, and encamped against Bethsura, and fought against it many days, and made engines of war. The Jews came out and burned them with fire, and fought valiantly. + +

+

Judas marched away from the citadel and encamped at Bethzacharias, near the king’s camp. + +The king rose early in the morning, and marched his army6:33 +Or, +itself eager for the fight + at full speed along the road to Bethzacharias. His forces made themselves ready to battle and sounded their trumpets. + +They offered the elephants the juice of grapes and mulberries, that they might prepare them for the battle. + +They distributed the animals among the phalanxes. They set by each elephant a thousand men armed with coats of mail and helmets of brass on their heads. Five hundred chosen cavalry were appointed for each elephant. + +These were ready beforehand, wherever the elephant was. Wherever the elephant went, they went with it. They didn’t leave it. + +Strong, covered wooden towers were upon them, one upon each elephant, fastened upon it with secure harnesses. Upon each were four valiant men who fought upon them, beside his Indian driver. + +The rest of the cavalry he set on this side and that side on the two flanks of the army, striking terror into the enemy, and protected by the phalanxes. + +Now when the sun shone upon the shields of gold and brass, the mountains lit up, and blazed like flaming torches. + +

+

A part of the king’s army was spread upon the high hills and some on the low ground, and they went on firmly and in order. + +All who heard the noise of their multitude, the marching of the multitude, and the rattling of the weapons trembled; for the army was exceedingly great and strong. + +Judas and his army drew near for battle, and six hundred men of the king’s army fell. + +Eleazar, who was called Avaran, saw one of the animals armed with royal breastplates, and it was taller than all the animals, and the king seemed to be on it. + +He gave his life to deliver his people, and to get himself an everlasting name. + +He ran upon him courageously into the midst of the phalanx, and killed on the right hand and on the left, and they parted away from him on this side and on that. + +He crept under the elephant, and stabbed it from beneath, and killed it. The elephant fell to the earth upon him, and he died there. + +They saw the strength of the kingdom and the fierce attack of the army, and turned away from them. + +

+

But the soldiers of the king’s army went up to Jerusalem to meet them, and the king encamped toward Judea and toward mount Zion. + +He made peace with the people of Bethsura. He came out of the city because they had no food there to endure the siege, because it was a Sabbath to the land. + +The king took Bethsura, and appointed a garrison there to keep it. + +He encamped against the sanctuary many days; and set there mounds to shoot from, and engines of war, and machines for throwing fire and stones, and weapons to throw darts, and slings. + +The Jews also made engines of war against their engines, and fought for many days. + +But there was no food in the sanctuary, because it was the seventh year, and those who fled for safety into Judea from among the Gentiles had eaten up the rest of the stores. + +There were only a few people left in the sanctuary, because the famine prevailed against them, and they were scattered, each man to his own place. + +

+

Lysias heard that Philip, whom Antiochus the king, while he was yet alive, appointed to raise his son Antiochus to be king, + +had returned from Persia and Media, and with him the forces that went with the king, and that he was seeking to take control of the government. + +He made haste, and gave orders to depart. He said to the king and the leaders of the army and to the men, “We get weaker daily, our food is scant, the place where we encamp is strong, and the affairs of the kingdom lie upon us. + +Now therefore let’s negotiate with these men, and make peace with them and with all their nation, + +and covenant with them, that they may walk after their own laws, as before; for because of their laws which we abolished they were angered, and did all these things.” + +

+

The speech pleased the king and the princes, and he sent to them to make peace; and they accepted it. + +The king and the princes swore to them. On these conditions, they came out from the stronghold. + +Then the king entered into mount Zion. He saw the strength of the place, and broke the oath which he had sworn, and gave orders to pull down the wall all around. + +Then he left in haste and returned to Antioch, and found Philip master of the city. He fought against him, and took the city by force. + +

+ + +

In the one hundred fifty first year,7:1 +circa B.C. 162. + Demetrius the son of Seleucus came out of Rome, and went up with a few men to a city by the sea, and reigned there. + +It came to pass, when he would go into the house of the kingdom of his fathers, that the army laid hands on Antiochus and Lysias, to bring them to him. + +The thing became known to him, and he said, “Don’t show me their faces!” + +So the army killed them. Then Demetrius sat upon the throne of his kingdom. + +

+

All the lawless and ungodly men of Israel came to him. Alcimus was their leader, desiring to be high priest. + +They accused the people to the king, saying, “Judas and his kindred have destroyed all your friends, and have scattered us from our own land. + +Now therefore send a man whom you trust, and let him go and see all the destruction which he has brought on us and the king’s country, and how he has punished them and all who helped them.” + +So the king chose Bacchides, one of the king’s7:8 +See 1 Maccabees 2:18. + friends, who was ruler in the country beyond the river, and was a great man in the kingdom, and faithful to the king. + +He sent him and that ungodly Alcimus, whom he made the high priest; and he commanded him to take vengeance upon the children of Israel. + +

+

They marched away and came with a great army into the land of Judah. He sent messengers to Judas and his kindred with words of peace deceitfully. + +They paid no attention to their words; for they saw that they had come with a great army. + +A group of scribes gathered together to Alcimus and Bacchides to seek just terms. + +The7:13 +That is, Chasidim. + Hasidaeans were the first among the children of Israel who sought peace from them, + +for they said, “One who is a priest of the seed of Aaron has come with the army, and he will do us no wrong.” + +He spoke with them words of peace, and swore to them, saying, “We won’t seek to harm you or your friends.” + +They trusted him. Then he seized sixty men of them, and killed them in one day, according to the word which was written, + +

+7:17 +Psalms 79:2, 3. +The flesh of your saints + +and their blood was shed all around Jerusalem, + +and there was no one to bury them. + + +

The fear and the dread of them fell upon all the people, for they said, “There is neither truth nor justice in them; for they have broken the covenant and the oath which they swore.” + +Bacchides withdrew from Jerusalem, and encamped in Bezeth. He sent and seized many of the deserters who were with him, and some of the people, and he killed them, throwing them into a large pit. + +He placed Alcimus in charge of the country and left with him a force to aid him. Then Bacchides went away to the king. + +

+

Alcimus struggled to maintain his high priesthood. + +All those who troubled their people joined him, and they took control of the land of Judah, and did great damage in Israel. + +Judas saw all the wrongs that Alcimus and his company had done among the children of Israel, even more than the Gentiles. + +He went out into all the borders of Judea and took vengeance on the men who had deserted from him, and they were restrained from going out into the country. + +But when Alcimus saw that Judas and his company had grown strong, and knew that he was not able to withstand them, he returned to the king, and brought evil accusations against them. + +

+

7:26 +See 2 Maccabees 14:12. +Then the king sent Nicanor, one of his honorable princes, a man who hated Israel and was their enemy, and commanded him to destroy the people. + +Nicanor came to Jerusalem with a great army. He sent to Judas and his kindred deceitfully with words of peace, saying, + +“Let there be no battle between me and you; I will come with a few men, that I may see your faces in peace.” + +He came to Judas, and they saluted one another peaceably. The enemies were ready to seize Judas by violence. + +This was known to Judas, that he came to him with deceit, and he was very afraid of him, and would see his face no more. + +Nicanor found out that his plan was disclosed; and he went out to meet Judas in battle beside Capharsalama. + +About five hundred men of Nicanor’s army fell, and the rest fled into the city of David. + +

+

After these things, Nicanor went up to mount Zion. Some of the priests came out of the sanctuary, with some of the elders of the people, to salute him peaceably, and to show him the whole burned sacrifice that was being offered for the king. + +He mocked them, laughed at them, derided them shamefully,7:34 +Gr. +polluted them. + spoke arrogantly, + +and swore in a rage, saying, “Unless Judas and his army are now delivered into my hands, it shall be that, if I return safely, I will burn up this house!” And he went out in a great rage. + +The priests entered in, and stood before the altar and the temple; and they wept, and said, + +“You chose this house to be called by your name, to be a house of prayer and supplication for your people. + +Take vengeance on this man and his army, and let them fall by the sword. Remember their blasphemies, and don’t allow them to live any longer.” + +

+

Then Nicanor went out from Jerusalem and encamped in Bethhoron, and there the Syrian army met him. + +Judas encamped in Adasa with three thousand men. Judas prayed and said, + +“When those who came from the king blasphemed, your angel went out, and struck among them one hundred eighty-five thousand. + +Even so, crush this army before us today, and let all the rest know that he has spoken wickedly against your sanctuary. Judge him according to his wickedness.” + +On the thirteenth day of the month Adar, the armies met in battle. Nicanor’s army was defeated, and he himself was the first to fall in the battle. + +Now when his army saw that Nicanor had fallen, they threw away their weapons and fled. + +They pursued them a day’s journey from Adasa until you come to7:45 +Gr. +Gazera. + Gazara, and they sounded an alarm after them with the signal trumpets. + +Men came out of all the surrounding villages of Judea, and outflanked them. These turned them back on those, and they all fell by the sword. There wasn’t one of them left. + +The Jews took the spoils and the booty, and they cut off Nicanor’s head and his right hand, which he had stretched out so arrogantly, and brought them, and hung them up beside Jerusalem. + +The people were exceedingly glad, and they kept that day as a day of great gladness. + +7:49 +See 2 Maccabees 15:36. +They ordained to keep this day year by year on the thirteenth day of Adar. + +So the land of Judah had rest a few days. + +

+ + +

Judas heard of the fame of the Romans, that they are valiant men, and have pleasure in all who join themselves to them, and make friends with all who come to them, + +and that they are valiant men. They told him of their wars and exploits which they do among the Gauls, and how they conquered them, and forced them to pay tribute; + +and what things they did in the land of Spain, that they might take control of the silver and gold mines which were there; + +and how by their policy and persistence they conquered all the place (and the place was exceedingly far from them), and the kings who came against them from the uttermost part of the earth, until they had defeated them, and struck them severely; and how the rest give them tribute year by year. + +Philip, and Perseus, king of Chittim, and those who lifted up themselves against them, they defeated in battle, and conquered them. + +Antiochus also, the great king of Asia, came against them to battle, having one hundred twenty elephants, with cavalry, chariots, and an exceedingly great army, and he was defeated by them. + +They took him alive, and decreed that both he and those who reigned after him should give them a great tribute, and should give hostages, and a parcel of land from the best of their provinces: + +the countries of India, Media, and Lydia. They took them from him, and gave them to King Eumenes. + +Judas heard how the Greeks planned to come and destroy them, + +but this became known to them, and they sent against them a general who fought against them, and many of them fell down wounded to death, and they made captive their wives and their children, and plundered them, and conquered their land, and pulled down their strongholds, and plundered them, and brought them into bondage to this day. + +The remaining kingdoms and islands, as many as rose up against them at any time, they destroyed and made them to be their servants; + +but with their friends and those who relied on them they stayed friends. They conquered the kingdoms that were near and those that were far off, and all that heard of their fame were afraid of them. + +Moreover, whoever they desired to help and to make kings, these they make kings; and whoever they desired, they depose. They are exalted exceedingly. + +For all this, none of them ever put on a crown, neither did they clothe themselves with purple, as a display of grandeur. + +Judas heard how they had made for themselves a senate house, and day by day, three hundred twenty men sat in council, consulting always for the people, to the end they might be well governed, + +and how they commit their government to one man year by year, that he should rule over them, and control all their country, and all are obedient to that one, and there is neither envy nor emulation among them. + +

+

So Judas chose Eupolemus the son of John, the son of Accos, and Jason the son of Eleazar, and sent them to Rome, to establish friendship and alliance with them, + +and that they should free the yoke from themselves; for they saw that the kingdom of the Greeks kept Israel in bondage. + +Then they went to Rome, a very long journey, and they entered into the senate house, and said, + +“Judas, who is also called Maccabaeus, and his kindred, and the people of the Jews, have sent us to you, to make an alliance and peace with you, and that we might be registered as your allies and friends.” + +

+

This thing was pleasing to them. + +This is the copy of the writing which they wrote back again on tables of brass, and sent to Jerusalem, that it might be with them there for a memorial of peace and alliance: + +

+

“Good success be to the Romans, and to the nation of the Jews, by sea and by land forever. May the sword and the enemy be far from them. + +But if war arises for Rome first, or any of their allies in all their dominion, + +the nation of the Jews shall help them as allies, as the occasion shall indicate to them, with all their heart. + +To those who make war upon them, they shall not give supplies, food, weapons, money, or ships, as it has seemed good to Rome, and they shall keep their ordinances without taking anything in return. + +In the same way, moreover, if war comes first upon the nation of the Jews, the Romans shall willingly help them as allies, as the occasion shall indicate to them; + +and to those who are fighting with them, there shall not be given food, weapons, money, or ships, as it has seemed good to Rome. They shall keep these ordinances, and that without deceit. + +According to these terms, the Romans made a treaty with the Jewish people. + +But if hereafter the one party and the other shall determine to add or diminish anything, they shall do it at their pleasure, and whatever they add or take away shall be ratified. + +

+

Concerning the evils which King Demetrius is doing to them, we have written to him, saying, ‘Why have you made your yoke heavy on our friends and allies the Jews? + +If therefore they plead any more against you, we will do them justice, and fight with you on sea and on land.’” + +

+ + +

Demetrius heard that Nicanor had fallen with his forces in battle, and he sent Bacchides and Alcimus again into the land of Judah a second time, and the right wing of his army with them. + +They went by the way that leads to Gilgal, and encamped against Mesaloth, which is in Arbela, and took possession of it, and killed many people. + +The first month of the one hundred fifty-second year, +9:3 +circa B.C. 161. +they encamped against Jerusalem. + +Then they marched away and went to Berea with twenty thousand infantry and two thousand cavalry. + +Judas was encamped at Elasa with three thousand chosen men. + +They saw the multitude of the forces, that they were many, and they were terrified. Many slipped away out of the army. There were not left of them more than eight hundred men. + +

+

Judas saw that his army slipped away and that the battle pressed upon him, and he was very troubled in spirit, because he had no time to gather them together, and he became faint. + +He said to those who were left, “Let’s arise and go up against our adversaries, if perhaps we may be able to fight with them.” + +

+

They tried to dissuade him, saying, “There is no way we are able; but let’s rather save our lives now. Let’s return again with our kindred, and fight against them; but we are too few.” + +

+

Judas said, “Let it not be so that I should do this thing, to flee from them. If our time has come, let’s die in a manly way for our kindred’s sake, and not leave a cause of reproach against our honor.” + +

+

The army marched out from the camp, and stood to encounter them. The cavalry was divided into two companies, and the slingers and the archers went before the army, and all the mighty men that fought in the front of the battle. + +Bacchides was in the right wing. The phalanx advanced on the two parts, and they blew with their trumpets. + +The men by Judas’ side sounded with their trumpets, and the earth shook with the shout of the armies, and the battle was joined, and continued from morning until evening. + +

+

Judas saw that Bacchides and the strength of his army were on the right side, and all that were brave in heart went with him, + +and the right wing was defeated by them, and he pursued after them to the mount Azotus. + +Those who were on the left wing saw that the right wing was defeated, and they turned and followed in the footsteps of Judas and of those who were with him. + +The battle became desperate, and many on both sides fell wounded to death. + +Judas fell, and the rest fled. + +

+

Jonathan and Simon took Judas their brother, and buried him in the tomb of his ancestors at Modin. + +They wept for him. All Israel made great lamentation for him, and mourned many days, and said, + +“How the mighty has fallen, the savior of Israel!” + +The rest of the acts of Judas, and his wars, and the valiant deeds which he did, and his greatness, are not written; for they were exceedingly many. + +

+

It came to pass after the death of Judas, that the lawless emerged within all the borders of Israel. All those who did iniquity rose up. + +In those days there was an exceedingly great famine, and the country went over to their side. + +Bacchides chose the ungodly men and made them rulers of the country. + +They inquired and searched for the friends of Judas, and brought them to Bacchides, and he took vengeance on them and used them spitefully. + +There was great suffering in Israel, such as was not since the time prophets stopped appearing to them. + +

+

All the friends of Judas were gathered together, and they said to Jonathan, + +“Since your brother Judas has died, we have no man like him to go out against our enemies and Bacchides, and among those of our nation who hate us. + +Now therefore we have chosen you this day to be our prince and leader in his place, that you may fight our battles.” + +So Jonathan took the governance upon him at that time, and rose up in the place of his brother Judas. + +

+

When Bacchides found out, he tried to kill him. + +Jonathan, and Simon his brother, and all who were with him, knew it; and they fled into the wilderness of Tekoah, and encamped by the water of the pool of Asphar. + +Bacchides found this out on the Sabbath day, and came—he and all his army—over the Jordan. + +

+

Jonathan sent his brother, a leader of the multitude, and implored his friends the Nabathaeans, that they might store their baggage, which was much, with them. + +The children of Jambri came out of Medaba, and seized John and all that he had, and went their way with it. + +

+

But after these things, they brought word to Jonathan and Simon his brother that the children of Jambri were celebrating a great wedding, and were bringing the bride, a daughter of one of the great nobles of Canaan, from Nadabath with a large escort. + +They remembered John their brother, and went up, and hid themselves under the cover of the mountain. + +They lifted up their eyes and looked, and saw a great procession with much baggage. The bridegroom came out with his friends and his kindred to meet them with timbrels, musicians, and many weapons. + +They rose up against them from their ambush and killed them, and many fell wounded to death. The remnant fled into the mountain, and the Jews took all their spoils. + +So the wedding was turned into mourning, and the voice of their musicians into lamentation. + +They avenged fully the blood of their brother, and turned back to the marshes of the Jordan. + +

+

Bacchides heard it, and he came on the Sabbath day to the banks of the Jordan with a great army. + +Jonathan said to his company, “Let’s stand up now and fight for our lives, for things are different today than they were yesterday and the day before. + +For, behold, the battle is before us and behind us. Moreover the water of the Jordan is on this side and on that side, and marsh and thicket. There is no place to escape. + +Now therefore cry to heaven, that you may be delivered out of the hand of your enemies.” + +So the battle was joined, and Jonathan stretched out his hand to strike Bacchides, and he turned away back from him. + +Jonathan and those who were with him leapt into the Jordan, and swam over to the other side. The enemy didn’t pass over the Jordan against them. + +About a thousand men of Bacchides’ company fell that day; + +and he returned to Jerusalem. They built strong cities in Judea, the stronghold that was in Jericho, and Emmaus, Bethhoron, Bethel, Timnath, Pharathon, and Tephon, with high walls and gates and bars. + +He set garrisons in them to harass Israel. + +He fortified the city Bethsura, Gazara, and the citadel, and put troops and stores of food in them. + +He took the sons of the chief men of the country for hostages, and put them under guard in the citadel at Jerusalem. + +

+

And in the one hundred fifty-third year,9:54 +circa B.C. 160. + in the second month, Alcimus gave orders to pull down the wall of the inner court of the sanctuary. He also pulled down the works of the prophets. + +He began to pull down. At that time was Alcimus stricken, and his works were hindered; and his mouth was stopped, and he was taken with a palsy, and he could no more speak anything and give orders concerning his house. + +Alcimus died at that time with great torment. + +Bacchides saw that Alcimus was dead, and he returned to the king. Then the land of Judah had rest for two years. + +

+

Then all the lawless men took counsel, saying, “Behold, Jonathan and his men are dwelling at ease and in security. Now therefore we will bring Bacchides, and he will capture them all in one night. + +They went and consulted with him. + +He marched out and came with a great army, and sent letters secretly to all his allies who were in Judea, that they should seize Jonathan and those who were with him; but they couldn’t, because their plan was known to them. + +Jonathan’s men seized about fifty of the men of the country who were authors of the wickedness, and he killed them. + +Jonathan, Simon, and those who were with him, went away to Bethbasi, which is in the wilderness, and he built up that which had been pulled down, and they made it strong. + +Bacchides found out about it, and he gathered together all his multitude, and sent orders to those who were of Judea. + +He went and encamped against Bethbasi and fought against it many days, and made engines of war. + +

+

Jonathan left his brother Simon in the city, and went out into the country, and he went with a few men. + +He struck Odomera and his kindred, and the children of Phasiron in their tents. + +They began to strike them, and to go up with their forces. Then Simon and those who were with him went out of the city, and set the engines of war on fire, + +and fought against Bacchides, and he was defeated by them. They afflicted him severely; for his counsel and expedition was in vain. + +They were very angry with the lawless men who gave him counsel to come into the country, and they killed many of them. Then he decided to depart into his own land. + +

+

Jonathan learned of this and sent ambassadors to him, to the end that they should make peace with him, and that he should restore to them the captives. + +He accepted the thing, and did according to his words, and swore to him that he would not seek his harm all the days of his life. + +He restored to him the captives which he had taken before out of the land of Judah, and he returned and departed into his own land, and didn’t come any more into their borders. + +Thus the sword ceased from Israel. Jonathan lived at Michmash. Jonathan began to judge the people; and he destroyed the ungodly out of Israel. + +

+ + +

In the one hundred sixtieth year,10:1 +circa B.C. 153. + Alexander Epiphanes, the son of Antiochus, went up and took possession of Ptolemais. They received him, and he reigned there. + +King Demetrius heard about this, and he gathered together exceedingly great forces, and went out to meet him in battle. + +

+

Demetrius sent a letter to Jonathan with words of peace, so as to honor him. + +For he said, “Let’s go beforehand to make peace with them, before he makes peace with Alexander against us; + +for he will remember all the evils that we have done against him, and to his kindred and to his nation.” + +So he gave him authority to gather together forces, and to provide weapons, and that he should be his ally. He also commanded that they should release the hostages that were in the citadel to him. + +

+

Jonathan came to Jerusalem, and read the letter in the hearing of all the people, and of those who were in the citadel. + +They were very afraid when they heard that the king had given him authority to gather together an army. + +Those in the citadel released the hostages to Jonathan, and he restored them to their parents. + +

+

Jonathan lived in Jerusalem and began to build and renew the city. + +He commanded those who did the work to build the walls and encircle Mount Zion with square stones for defense; and they did so. + +The foreigners who were in the strongholds which Bacchides had built fled away. + +Each man left his place and departed into his own land. + +Only at Bethsura, there were left some of those who had forsaken the law and the commandments, for it was a place of refuge to them. + +

+

King Alexander heard all the promises which Demetrius had sent to Jonathan. They told him of the battles and the valiant deeds which he and his kindred had done, and of the troubles which they had endured. + +So he said, “Could we find another man like him? Now we will make him our10:16 +See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. + friend and ally.” + +He wrote a letter and sent it to him, in these words, saying, + +“King Alexander to his brother Jonathan, greetings. + +We have heard of you, that you are a mighty man of valour, and worthy to be our10:19 +See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. + friend. + +Now we have appointed you this day to be high priest of your nation, and to be called the king’s10:20 +See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. + friend, and to take our side, and to keep friendship with us.” He also sent to him a purple robe and a golden crown. + +

+

And Jonathan put on the holy garments in the seventh month of the one hundred sixtieth year,10:21 +circa B.C. 153. + at the feast of tabernacles; and he gathered together forces and provided weapons in abundance. + +

+

When Demetrius heard these things, he was grieved and said, + +“What is this that we have done, that Alexander has gotten ahead of us in establishing friendship with the Jews to strengthen himself? + +I also will write to them words of encouragement and of honor and of gifts, that they may be with me to aid me.” + +So he sent to them this message: +

+

“King Demetrius to the nation of the Jews, greetings. + +Since as you have kept your covenants with us, and continued in our friendship, and have not joined yourselves to our enemies, we have heard of this, and are glad. + +Now continue still to keep faith with us, and we will repay you with good in return for your dealings with us. + +We will grant you many immunities and give you gifts. + +

+

“Now I free you and release all the Jews from the tributes, from the salt tax, and from the crown levies. + +Instead of the third part of the seed, and instead of half of the fruit of the trees, which falls to me to receive, I release it from this day and henceforth, so that I will not take it from the land of Judah, and from the three districts which are added to it from the country of Samaria and Galilee, from this day forth and for all time. + +Let Jerusalem be holy and free, with her borders, tithes, and taxes. + +I yield up also my authority over the citadel which is at Jerusalem, and give it to the high priest, that he may appoint in it men whom he chooses to keep it. + +Every soul of the Jews who has been carried captive from the land of Judah into any part of my kingdom, I set at liberty without payment. Let all officials also cancel the taxes on their livestock. + +

+

“All the feasts, the Sabbaths, new moons, appointed days, three days before a feast, and three days after a feast, let them all be days of immunity and release for all the Jews who are in my kingdom. + +No man shall have authority to exact anything from any of them, or to trouble them concerning any matter. + +

+

“Let there be enrolled among the king’s forces about thirty thousand men of the Jews, and pay shall be given to them, as is due to all the king’s forces. + +Of them, some shall be placed in the king’s great strongholds, and some of them shall be placed over the affairs of the kingdom, which are positions of trust. Let those who are over them and their rulers be of themselves, and let them walk after their own laws, even as the king has commanded in the land of Judah. + +

+

“The three districts that have been added to Judea from the country of Samaria, let them be annexed to Judea, that they may be reckoned to be under one ruler, that they may not obey any other authority than the high priest’s. + +As for Ptolemais and its land, I have given it as a gift to the sanctuary that is at Jerusalem, for the expenses of the sanctuary. + +I also give every year fifteen thousand shekels of silver from the king’s revenues from the places that are appropriate. + +And all the additional funds which those who manage the king’s affairs didn’t pay as in the first years, they shall give from now on toward the works of the temple. + +Besides this, the five thousand shekels of silver which they received from the uses of the sanctuary from the revenue year by year is also released, because it belongs to the priests who minister there. + +Whoever flees to the temple that is at Jerusalem, and within all of its borders, whether owing money to the king, or any other matter, let them go free, along with all that they have in my kingdom. + +For the building and renewing of the structures of the sanctuary, the expense shall also be given out of the king’s revenue. + +For the building of the walls of Jerusalem and fortifying it all around, the expense shall also be given out of the king’s revenue, also for the building of the walls in Judea.” + +

+

Now when Jonathan and the people heard these words, they gave no credence to them, and didn’t accept them, because they remembered the great evil which he had done in Israel, and that he had afflicted them very severely. + +They were well pleased with Alexander, because he was the first who spoke words of peace to them, and they were allies with him always. + +

+

King Alexander gathered together great forces and encamped near Demetrius. + +The two kings joined battle, and the army of Alexander fled; and Demetrius followed after him, and prevailed against them. + +He strengthened the battle exceedingly until the sun went down; and Demetrius fell that day. + +

+

Alexander sent ambassadors to Ptolemy king of Egypt with this message: + +“Since I have returned to my kingdom, and am seated on the throne of my fathers, and have established my dominion, and have overthrown Demetrius, and have taken possession of our country— + +yes, I joined the battle with him, and he and his army were defeated by us, and we sat on the throne of his kingdom— + +now also let’s make friends with one another. Give me now your daughter as my wife. I will be joined with you, and will give both you and her gifts worthy of you.” + +

+

Ptolemy the king answered, saying, “Happy is the day you returned to the land of your ancestors and sat on the throne of their kingdom. + +Now I will do to you as you have written, but meet me at Ptolemais, that we may see one another; and I will join with you, even as you have said.” + +So Ptolemy went out of Egypt, himself and Cleopatra his daughter, and came to Ptolemais in the one hundred sixty-second year.10:57 +circa B.C. 151. + + +King Alexander met him, and he gave him his daughter Cleopatra, and celebrated her wedding at Ptolemais with great pomp, as kings do. + +

+

King Alexander wrote to Jonathan, that he should come to meet him. + +He went with pomp to Ptolemais, and met the two kings. He gave them and their friends10:60 +See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. + silver and gold, and many gifts, and found favor in their sight. + +Some malcontents out of Israel, men who were transgressors of the law, gathered together against him to complain against him; but the king paid no attention to them. + +The king commanded that they take off Jonathan’s garments and clothe him in purple, and they did so. + +The king made him sit with him, and said to his princes, “Go out with him into the midst of the city, and proclaim that no man may complain against him of any matter, and let no man trouble him for any reason.” + +It came to pass, when those who complained against him saw his honor according to the proclamation, and saw him clothed in purple, they all fled away. + +The king gave him honor, and enrolled him among his chief friends,10:65 +See 1 Maccabees 11:27; 2 Maccabees 8:9. Compare 1 Maccabees 2:18; 10:16, etc. + and made him a captain and governor of a province. + +Then Jonathan returned to Jerusalem with peace and gladness. + +

+

In the one hundred sixty-fifth year,10:67 +circa B.C. 148. + Demetrius, son of Demetrius, came out of Crete into the land of his ancestors. + +When King Alexander heard of it, he grieved exceedingly and returned to Antioch. + +Demetrius appointed Apollonius, who was over Coelesyria, and he gathered together a great army, and encamped against Jamnia, and sent to Jonathan the high priest, saying, + +

+

“You alone lift up yourself against us, but I am ridiculed and in reproach because of you. Why do you assume authority against us in the mountains? + +Now therefore, if you trust in your forces, come down to us into the plain, and let’s match strength with each other there; for the power of the cities is with me. + +Ask and learn who I am, and the rest who help us. They say, ‘Your foot can’t stand before our face; for your ancestors have been put to flight twice in their own land.’ + +Now you won’t be able to withstand the cavalry and such an army as this in the plain, where there is no stone or pebble, or place to flee.” + +

+

Now when Jonathan heard the words of Apollonius, he was moved in his mind, and he chose ten thousand men, and went out from Jerusalem; and Simon his brother met him to help him. + +Then he encamped against Joppa. The people of the city shut him out, because Apollonius had a garrison in Joppa. + +So they fought against it. The people of the city were afraid, and opened to him; and Jonathan became master of Joppa. + +

+

Apollonius heard about that, and he gathered an army of three thousand cavalry, and a great army, and went to Azotus as though he were on a journey, and at the same time advanced onward into the plain, because he had a multitude of cavalry which he trusted. + +He pursued him to Azotus, and the armies joined battle.10:78 +Most of the authorities here repeat +after him. + +Apollonius had secretly left a thousand cavalry behind them. + +Jonathan learned that there was an ambush behind him. They surrounded his army, and shot their arrows at the people, from morning until evening; + +but the people stood fast, as Jonathan commanded them; and the enemy’s horses grew tired. + +

+

Then Simon brought forward his army and joined battle with the phalanx (for the cavalry were exhausted), and they were defeated by him and fled. + +The cavalry were scattered in the plain. They fled to Azotus and entered into Beth-dagon, their idol’s temple, to save themselves. + +Jonathan burned Azotus and the cities around it and took their spoils. He burned the temple of Dagon and those who fled into it with fire. + +Those who had fallen by the sword plus those who were burned were about eight thousand men. + +

+

From there, Jonathan left and encamped against Ascalon. The people of the city came out to meet him with great pomp. + +Jonathan, with those who were on his side, returned to Jerusalem, having many spoils. + +It came to pass, when King Alexander heard these things, he honored Jonathan even more. + +He sent him a gold buckle, as the custom is to give to the king’s kindred. He gave him Ekron and all its land for a possession. + +

+ + +

Then the king of Egypt gathered together great forces, as the sand which is by the sea shore, and many ships, and sought to make himself master of Alexander’s kingdom by deceit, and to add it to his own kingdom. + +He went out into Syria with words of peace, and the people of the cities opened their gates to him and met him; for King Alexander’s command was that they should meet him, because he was his father-in-law. + +Now as he entered into the cities of Ptolemais, he set his forces for a garrison in each city. + +

+

But when he came near to Azotus, they showed him the temple of Dagon burned with fire, and Azotus and its pasture lands destroyed, and the bodies cast out, and those who had been burned, whom he burned in the war, for they had made heaps of them in his way. + +They told the king what Jonathan had done, that they might cast blame on him; but the king kept silent. + +Jonathan met the king with pomp at Joppa, and they greeted one another, and they slept there. + +Jonathan went with the king as far as the river that is called Eleutherus, then returned to Jerusalem. + +

+

But King Ptolemy took control of the cities along the sea coast, to Selucia which is by the sea, and he devised evil plans concerning Alexander. + +He sent ambassadors to King Demetrius, saying, “Come! Let’s make a covenant with one another, and I will give you my daughter whom Alexander has, and you shall reign over your father’s kingdom; + +for I regret that I gave my daughter to him, for he tried to kill me. + +He accused him, because he coveted his kingdom. + +Taking his daughter from him, he gave her to Demetrius, and was estranged from Alexander, and their enmity was openly seen. + +

+

Ptolemy entered into Antioch, and put on himself the crown of Asia. He put two crowns upon his head, the crown of Egypt and that of Asia. + +But King Alexander was in Cilicia at that time, because the people of that region were in revolt. + +When Alexander heard of it, he came against him in war. Ptolemy marched out and met him with a strong force, and put him to flight. + +Alexander fled into Arabia, that he might be sheltered there; but King Ptolemy was triumphant. + +Zabdiel the Arabian took off Alexander’s head, and sent it to Ptolemy. + +King Ptolemy died the third day after, and those who were in his strongholds were slain by the inhabitants of the strongholds. + +Demetrius became king in the one hundred sixty-seventh year.11:19 +circa B.C. 146. + +

+

In those days Jonathan gathered together the Judeans to take the citadel that was at Jerusalem. He made many engines of war to use against it. + +Some lawless men who hated their own nation went to the king and reported to him that Jonathan was besieging the citadel. + +He heard, and was angry, but when he heard it, he set out immediately, and came to Ptolemais, and wrote to Jonathan, that he should not besiege it, and that he should meet him and speak with him at Ptolemais with all speed. + +

+

But when Jonathan heard this, he gave orders to continue the siege. He chose some of the elders of Israel and of the priests, and put himself in peril + +by taking silver, gold, clothing, and various other presents, and went to Ptolemais to the king. Then he found favor in his sight. + +Some lawless men of those who were of the nation made complaints against him, + +and the king did to him even as his predecessors had done to him, and exalted him in the sight of all his11:26 +See 1 Maccabees 2:18. + friends, + +and confirmed to him the high priesthood, and all the other honors that he had before, and gave him preeminence among his11:27 +See 1 Maccabees 10:65. + chief friends. + +And Jonathan requested of the king that he would make Judea free from tribute, along with the three11:28 +Gr. +toparchies + provinces and the country of Samaria, and promised him three hundred talents. + +The king consented, and wrote letters to Jonathan concerning all these things as follows: + +

+

“King Demetrius to his brother Jonathan, and to the nation of the Jews, greetings. + +The copy of the letter which we wrote to Lasthenes our kinsman concerning you, we have written also to you, that you may see it. + +‘King Demetrius to Lasthenes his father, greetings. + +We have determined to do good to the nation of the Jews, who are our friends, and observe what is just toward us, because of their good will toward us. + +We have confirmed therefore to them the borders of Judea, and also the three governments of Aphaerema, Lydda, and Ramathaim (these were added to Judea from the country of Samaria), and all their territory to them, for all who do sacrifice in Jerusalem, instead of the king’s dues which the king received of them yearly before from the produce of the earth and the fruits of trees. + +As for the other payments to us from henceforth, of the tithes and the taxes that pertain to us, and the salt pits, and the crown taxes due to us, all these we will give back to them. + +Not one of these grants shall be annulled from this time forth and forever. + +Now therefore be careful to make a copy of these things, and let it be given to Jonathan, and let it be set up on the holy mountain in a suitable and conspicuous place.’” + +

+

When King Demetrius saw that the land was quiet before him, and that no resistance was made to him, he sent away all his troops, each man to his own place, except the foreign troops, which he had raised from the islands of the Gentiles. So all the troops of his fathers hated him. + +Now Tryphon was one of those who previously had been on Alexander’s side, and he saw that all the forces murmured against Demetrius. So he went to Imalcue the Arabian, who was raising up Antiochus the young child of Alexander, + +and urgently insisted to him that he should deliver him to him, that he might reign in his father’s place. He told him all that Demetrius had done, and the hatred with which his forces hated him; and he stayed there many days. + +

+

Now Jonathan sent to King Demetrius, that he should remove the troops of the citadel from Jerusalem, and the troops who were in the strongholds; for they fought against Israel continually. + +Demetrius sent to Jonathan, saying, “I will not only do this for you and your nation, but I will greatly honor you and your nation, if I find an opportunity. + +Now therefore you shall do well if you send me men who will fight for me; for all my forces have revolted.” + +So Jonathan sent him three thousand valiant men to Antioch. They came to the king, and the king was glad at their coming. + +

+

The people of the city gathered themselves together into the midst of the city, to the number of one hundred and twenty thousand men, and they wanted to kill the king. + +The king fled into the court of the palace, and the people of the city seized the main streets of the city and began to fight. + +The king called the Jews to help him, and they were gathered together to him all at once, and they dispersed themselves in the city, and killed that day about one hundred thousand. + +They set the city on fire, and seized many spoils that day, and saved the king. + +The people of the city saw that the Jews had taken control of the city as they pleased, and they became faint in their hearts, and they cried out to the king with supplication, saying, + +“Give us your right hand, and let the Jews cease from fighting against us and the city.” + +They threw away their weapons and made peace. The Jews were glorified in the sight of the king, and before all who were in his kingdom. Then they returned to Jerusalem, having much plunder. + +So King Demetrius sat on the throne of his kingdom, and the land was quiet before him. + +He lied in all that he spoke, and estranged himself from Jonathan, and didn’t repay him according to the benefits with which he had repaid him, and treated him very harshly. + +

+

Now after this, Tryphon returned, and with him the young child Antiochus, who reigned and put on a crown. + +All the forces which Demetrius had sent away with disgrace were gathered to him, and they fought against him, and he fled and was routed. + +Tryphon took the elephants, and took control of Antioch. + +The young Antiochus wrote to Jonathan, saying, “I confirm to you the high priesthood, and appoint you over the four districts, and to be one of the king’s11:57 +See 1 Maccabees 2:18. + friends.” + +He sent to him golden vessels and furniture for the table, and gave him permission to drink in golden vessels, and to be clothed in purple, and to have a golden buckle. + +He made his brother Simon governor from the Ladder of Tyre to the borders of Egypt. + +

+

Jonathan went out and took his journey beyond the river and through the cities. All the forces of Syria gathered themselves to him to be his allies. He came to Ascalon, and the people of the city met him honorably. + +He departed from there to Gaza, and the people of Gaza shut him out. So he besieged it and burned its pasture lands with fire, and plundered them. + +The people of Gaza pleaded with Jonathan, and he gave them his right hand, and took the sons of their princes for hostages, and sent them away to Jerusalem. Then he passed through the country as far as Damascus. + +

+

Then Jonathan heard that Demetrius’ princes had come to Kedesh, which is in Galilee, with a great army, intending to remove him from his office. + +He went to meet them, but he left Simon his brother in the country. + +Simon encamped against Bethsura, and fought against it many days, and hemmed it in. + +They asked him to give them his right hand, and he gave it to them. He removed them from there, took possession of the city, and set a garrison over it. + +

+

Jonathan and his army encamped at the water of Gennesareth, and early in the morning they marched to the plain of Hazor. + +Behold, an army of foreigners met him in the plain. They laid an ambush for him in the mountains, but they themselves met him face to face. + +But those who lay in ambush rose out of their places and joined battle. All those who were on Jonathan’s side fled. + +Not one of them was left, except Mattathias the son of Absalom, and Judas the son of Chalphi, captains of the forces. + +Jonathan tore his clothes, put dirt on his head, and prayed. + +He turned again to them in battle, and routed them, and they fled. + +When the men on his side who had fled saw this, they returned to him and pursued with him to Kedesh to their camp, and they encamped there. + +About three thousand men of the foreigners fell on that day. Then Jonathan returned to Jerusalem. + +

+ + +

Jonathan saw that the time was favorable for him, so he chose men and sent them to Rome to confirm and renew the friendship that they had with them. + +He also sent similar letters to the Spartans, and to other places. + +They went to Rome, entered into the senate house, and said, “Jonathan the high priest and the nation of the Jews have sent us to renew for them the friendship and the alliance, as in former time.” + +They gave them letters to the men in every place, that they should provide safe conduct for them on their way to the land of Judah. + +This is the copy of the letters which Jonathan wrote to the Spartans: + +

+

“Jonathan the high priest, and the senate of the nation, and the priests, and the rest of the people of the Jews, to their kindred the Spartans, greetings. + +Even before this time letters were sent to Onias the high priest from Arius,12:7 +So the old Latin versions and Josephus: compare also ver. 20. All the other authorities read +Darius +in this place. + who was reigning among you, to signify that you are our kindred, as the copy written below shows. + +Onias welcomed honorably the man who was sent and received the letters, wherein declaration was made of alliance and friendship. + +Therefore we also, even though we need none of these things, having for our encouragement the holy books which are in our hands, + +have undertaken to send that we might renew our brotherhood and friendship with you, to the end that we should not become estranged from you altogether; for a long time has passed since you sent your letter to us. + +We therefore at all times without ceasing, both in our feasts, and on the other convenient days, remember you in the sacrifices which we offer, and in our prayers, as it is right and proper to be mindful of kindred. + +Moreover, we are glad for your glory. + +But as for ourselves, many afflictions and many wars have encompassed us, and the kings who are around us have fought against us. + +We were unwilling to be troublesome to you, and to the rest of our allies and friends, in these wars; + +for we have the help which is from heaven to help us, and we have been delivered from our enemies, and our enemies have been humbled. + +We chose therefore Numenius the son of Antiochus and Antipater the son of Jason, and have sent them to the Romans, to renew the friendship that we had with them, and the former alliance. + +We commanded them therefore to go also to you, and to salute you, and to deliver you our letters concerning the renewing of friendship and our brotherhood. + +And now you will do well if you give us a reply.” + +

+

And this is the copy of the letters which they sent to Onias: + +

+

“Arius king of the Spartans to Onias the chief priest, greetings. + +It has been found in writing, concerning the Spartans and the Jews, that they are kindred, and that they are of the descendants of Abraham. + +Now, since this has come to our knowledge, you will do well to write to us of your12:22 +Gr. +peace + prosperity. + +We moreover write on our part to you, that your livestock and goods are ours, and ours are yours. We do command therefore that they make report to you accordingly.” + +

+

Now Jonathan heard that Demetrius’ princes had returned to fight against him with a greater army than before, + +so he marched away from Jerusalem, and met them in the country of Hamath; for he gave them no opportunity to set foot in his country. + +He sent spies into his camp, and they came again, and reported to him that they were preparing to attack them at night. + +But as soon as the sun was down, Jonathan commanded his men to watch, and to be armed, that all the night long they might be ready for battle. He stationed sentinels around the camp. + +The adversaries heard that Jonathan and his men were ready for battle, and they feared, and trembled in their hearts, and they kindled fires in their camp then withdrew. + +But Jonathan and his men didn’t know it until the morning; for they saw the fires burning. + +Jonathan pursued after them, but didn’t overtake them; for they had gone over the river Eleutherus. + +Then Jonathan turned toward the Arabians, who are called Zabadaeans, and struck them, and took their spoils. + +He came out from there, and came to Damascus, and took his journey through all the country. + +

+

Simon went out, and took his journey as far as Ascalon, and the strongholds that were near it. Then he turned toward Joppa and took possession of it; + +for he had heard that they were planning to hand over the stronghold to Demetrius’ men. He set a garrison there to guard it. + +

+

Then Jonathan returned and called the elders of the people together. He planned with them to build strongholds in Judea, + +and to make the walls of Jerusalem higher, and to raise a great mound between the citadel and the city, to separate it from the city, that so it might be isolated, that its garrison might neither buy nor sell. + +They were gathered together to build the city. Part of the wall of the brook that is on the east side had fallen down, and he repaired the section called Chaphenatha. + +Simon also built Adida in the12:38 +Gr. +Sephela. plain country, made it strong, and set up gates and bars. + +

+

And Tryphon sought to reign over Asia and to crown himself, and to stretch out his hand against Antiochus the king. + +He was afraid that Jonathan wouldn’t allow him, and that he would fight against him; and he sought a way to seize him, that he might destroy him. So he marched out and came to Bethshan. + +Jonathan came out to meet him with forty thousand men chosen for battle, and came to Bethshan. + +Tryphon saw that he came with a great army, and he was afraid to stretch out his hand against him. + +He received him honorably, and commended him to all his12:43 +See 1 Maccabees 2:18. + friends, and gave him gifts, and commanded his forces to be obedient to him, as to himself. + +He said to Jonathan, “Why have you put all these people to so much trouble, seeing there is no war between us? + +Now send them away to their homes, but choose for yourself a few men who shall be with you, and come with me to Ptolemais, and I will give it to you, and the rest of the strongholds and the rest of the forces, and all the king’s officers. Then I will turn around and depart; for this is why I came.” + +

+

He put his trust in him, and did even as he said, and sent away his forces, and they departed into the land of Judah. + +But he reserved to himself three thousand men, of whom he left two thousand in Galilee, but one thousand went with him. + +Now as soon as Jonathan entered into Ptolemais, the people of Ptolemais shut the gates and seized him. They killed all those who came in with him with the sword. + +

+

Tryphon sent troops and cavalry into Galilee, and into the Great Plain, to destroy all Jonathan’s men. + +They perceived that he had been seized and had perished, along with those who were with him. They encouraged one another and went on their way close together, prepared to fight. + +Those who followed them saw that they were ready to fight for their lives, and turned back again. + +They all came in peace into the land of Judah, and they mourned for Jonathan and those who were with him, and they were very afraid. All Israel mourned with a great mourning. + +And all the Gentiles who were around them sought to destroy them utterly; for they said, “They have no ruler nor anyone to help them. Now therefore let’s fight against them, and take away their memory from among men.” + +

+ + +

Simon heard that Tryphon had gathered together a mighty army to come into the land of Judah and destroy it utterly. + +He saw that the people were trembling in great fear. So he went up to Jerusalem and gathered the people together. + +He encouraged them, and said to them, “You yourselves know all the things that I, my kindred, and my father’s house have done for the laws and the sanctuary, and the battles and the distresses which we have seen. + +Because of this, all my brothers have perished for Israel’s sake, and I am left alone. + +Now be it far from me, that I should spare my own life in any time of affliction, for I am not better than my kindred. + +However, I will take vengeance for my nation, for the sanctuary, and for our wives and children, because all the Gentiles have gathered out of hatred to destroy us.” + +

+

The spirit of the people revived as soon as they heard these words. + +They answered with a loud voice, saying, “You are our leader in the place of Judas and Jonathan your brothers. + +Fight our battles, and we will do all that you tell us to do.” + +

+

He gathered together all the men of war, and hurried to finish the walls of Jerusalem. He fortified it all around. + +He sent Jonathan the son of Absalom, and with him a great army, to Joppa. He threw out those who were in it, and lived there. + +

+

Tryphon left Ptolemais with a mighty army to enter into the land of Judah, and Jonathan was with him under guard. + +But Simon encamped at Adida, near the plain. + +Tryphon knew that Simon had risen up in the place of his brother Jonathan, and meant to join battle with him, so he sent ambassadors to him, saying, + +“It is for money which Jonathan your brother owed to the king’s treasury, by reason of the offices which he had, that we are detaining him. + +Now send one hundred talents of silver and two of his sons for hostages, so that when he is released he may not revolt against us, and we will release him.” + +

+

Simon knew that they spoke to him deceitfully, but he sent to get the money and the children, lest perhaps he would arouse great hostility among the people, + +who might say, “Because I didn’t send him the money and the children, he perished.” + +So he sent the children and the hundred talents, but Tryphon lied, and didn’t release Jonathan. + +

+

After this, Tryphon came to invade the land and destroy it, and he went around by the way that leads to Adora. Simon and his army marched near him to every place, wherever he went. + +Now the people of the citadel sent to Tryphon ambassadors, urging him to come to them through the wilderness, and to send them food. + +So Tryphon prepared all his cavalry to come, but on that night a very heavy snow fell, and he didn’t come because of the snow. He marched off and went into the land of Gilead. + +When he came near to Bascama, he killed Jonathan, and he was buried there. + +Then Tryphon turned back, and went away into his own land. + +

+

Simon sent, and took the bones of Jonathan his brother, and buried him at Modin, the city of his fathers. + +All Israel made great lamentation over him, and mourned for him many days. + +Simon built a monument on the tomb of his father and his kindred, and raised it high so that it could be seen, with polished stone on the front and back. + +He also set up seven pyramids, one near another, for his father, his mother, and his four brothers. + +For these, he made an elaborate setting, erecting great pillars around them, and upon the pillars he made suits of armor for a perpetual memorial, and beside the suits of armor, he carved ships, so that they could be seen by all who sail on the sea. + +This is the tomb which he made at Modin. It remains to this day. + +

+

Now Tryphon deceived the young King Antiochus and killed him, + +and reigned in his place. He put on himself the crown of Asia and brought a great calamity upon the land. + +Simon built up the strongholds of Judea, and walled them all around with high towers, great walls, gates, and bars; and he stored food in the strongholds. + +Simon chose men, and sent to King Demetrius with a request that he grant the country an immunity, because all that Tryphon did was to plunder. + +King Demetrius sent to him according to these words, and answered him, and wrote a letter to him, as follows: + +

+

“King Demetrius to Simon the high priest and friend13:36 +See 1 Maccabees 2:18. + of kings, and to the elders and nation of the Jews, greetings. + +The golden crown and the palm branch, which you sent, we have received. We are ready to make a steadfast peace with you, yes, and to write to our officers to release you from tribute. + +Whatever things we confirmed to you, they are confirmed. The strongholds, which you have built, let them be your own. + +As for any oversights and faults committed to this day, we forgive them, and the crown tax which you owed us. If there were any other tax collected in Jerusalem, let it be collected no longer. + +If any among you are qualified to be enrolled in our court, let them be enrolled, and let there be peace between us.” + +

+

In the one hundred seventieth year,13:41 +circa B.C. 143. + the yoke of the Gentiles was taken away from Israel. + +The people began to write in their instruments and contracts, “In the first year of Simon, the great high priest and captain and leader of the Jews.” + +

+

In those days Simon encamped against13:43 +See 1 Maccabees 13:53 (compare 1 Maccabees 13:48); 1 Maccabees 14:7, 34; 15:28; 16:1: also Josephus. All the authorities read +Gaza +in this verse. + Gazara, and surrounded it with troops. He made a siege engine, and brought it up to the city, and struck a tower, and captured it. + +Those who were in the engine leaped out into the city; and there was a great uproar in the city. + +The people of the city tore their clothes, and went up on the walls with their wives and children, and cried with a loud voice, asking Simon to give them13:45 +Gr. +right hands. + his right hand. + +They said, “Don’t deal with us according to our wickednesses, but according to your mercy.” + +So Simon was reconciled to them, and didn’t fight against them; but he expelled them from the city and cleansed the houses where the idols were, and then entered into it with singing and giving praise. + +He removed all uncleanness out of it, and placed in it men who would keep the law, and made it stronger than it was before, and built a dwelling place for himself in it. + +

+

But the people of the citadel in Jerusalem were hindered from going out and from going into the country, and from buying and selling. So they were very hungry, and a great number of them perished from famine. + +Then they cried out to Simon, that he should give them his right hand; and he gave it to them; but he expelled them from there, and he cleansed the citadel from its pollutions. + +He entered into it on the twenty-third day of the second month, in the one hundred seventy-first year,13:51 +circa B.C. 142. + with praise and palm branches, with harps, with cymbals, and with stringed instruments, with hymns, and with songs, because a great enemy had been destroyed out of Israel. + +Simon ordained that they should keep that day every year with gladness. He made the hill of the temple that was by the citadel stronger than before, and he lived there with his men. + +Simon saw that his son John was a man, so he made him leader of all his forces; and he lived in Gazara. + +

+ + +

In the one hundred seventy-second year,14:1 +circa B.C. 141. + King Demetrius gathered his forces together, and went into Media to get help, that he might fight against Tryphon. + +When Arsaces, the king of Persia and Media, heard that Demetrius had come into his borders, he sent one of his princes to take him alive. + +He went and struck the army of Demetrius, and seized him and brought him to Arsaces, who put him under guard. + +

+

The land had rest all the days of Simon. He sought the good of his nation. His authority and his honor was pleasing to them all his days. + +Amid all his honors, he took Joppa for a harbor, and made it an entrance for the islands of the sea. + +He enlarged the borders of his nation and took possession of the country. + +He gathered together a great number of captives, and took control of Gazara, Bethsura, and the citadel, and he removed its uncleannesses from it. There was no one who resisted him. + +They tilled their land in peace, and the land gave her increase, and the trees of the plains gave their fruit. + +The old men sat in the streets; they all conversed together about good things. The young men put on glorious and warlike apparel. + +He provided food for the cities and furnished them with means of defense, until the glory of his name was known to the end of the earth. + +He made peace in the land, and Israel rejoiced with great joy. + +Each man sat under his vine and his fig tree, and there was no one to make them afraid. + +No one was left in the land who fought against them. The kings were defeated in those days. + +He strengthened all those of his people who were humble. He searched out the law, and every lawless and wicked person he took away. + +He glorified the sanctuary, and added to the vessels of the temple. + +

+

It was heard at Rome that Jonathan was dead, and even in Sparta, and they were exceedingly grieved. + +But as soon as they heard that his brother Simon was made high priest in his place, and ruled the country and the cities in it, + +they wrote to him on brass tablets to renew with him the friendship and the alliance which they had confirmed with his brothers Judas and Jonathan. + +These were read before the congregation at Jerusalem. + +

+

This is the copy of the letter which the Spartans sent: +

+

“The rulers and the city of the Spartans, to Simon the high priest, to the elders, the priests, and the rest of the people of the Jews, our kindred, greetings. + +The ambassadors who were sent to our people reported to us about your glory and honor. We were glad for their coming, + +and we registered the things that were spoken by them in the public records14:22 +Gr. +counsels of the people. + as follows: ‘Numenius son of Antiochus, and Antipater son of Jason, the Jews’ ambassadors, came to us to renew the friendship they had with us. + +It pleased the people to entertain the men honorably, and to put the copy of their words in the public records,14:23 +Gr. +books that are appointed for the people. + to the end that the people of the Spartans might have a record of them. Moreover they wrote a copy of these things to Simon the high priest.’” + +

+

After this, Simon sent Numenius to Rome with a great shield of gold weighing one thousand minas,14:24 +1,000 minas is about 499 kg or 1,098 pounds. + in order to confirm the alliance with them. + +

+

But when the people heard these things, they said, “What thanks shall we give to Simon and his sons? + +For he and his brothers and the house of his father have made themselves strong, and have fought and chased away Israel’s enemies, and confirmed liberty to Israel.14:26 +Gr. +him. +” + +So they wrote on tablets of brass, and set them on pillars on mount Zion. This is the copy of the writing: +

+

“On the eighteenth day of Elul, in the one hundred seventy-second year,14:27 +circa B.C. 141. + which is the third year of Simon the high priest, + +in Asaramel, in a great congregation of priests and people and princes of the nation, and of the elders of the country, it was proclaimed to us:14:28 +Gr. +he made known. + + +‘Since wars often occurred in the country, Simon the son of Mattathias, the son of the sons of Joarib, and his brothers, put themselves in jeopardy and withstood the enemies of their nation, that their sanctuary and the law might be established, and glorified their nation with great glory. + +Jonathan rallied the nation, became their high priest, and was gathered to his people. + +Their enemies planned to invade their country, that they might destroy their country utterly, and stretch out their hands against their sanctuary. + +Then Simon rose up and fought for his nation. He spent much of his own money to arm the valiant men of his nation and give them wages. + +He fortified the cities of Judea and Bethsura that lies on the borders of Judea, where the weapons of the enemies had been stored, and there he placed a garrison of Jews. + +He fortified Joppa which is upon the sea, and Gazara which is upon the borders of Azotus, where the enemies used to live, and placed Jews there, and set in there all things necessary for their restoration. + +The people saw Simon’s faith,14:35 +Some authorities read +acts. + and the glory which he resolved to bring to his nation, and they made him their leader and high priest, because he had done all these things, and for the justice and the faith which he kept to his nation, and because he sought by all means to exalt his people. + +In his days, things prospered in his hands, so that the Gentiles were taken away out of their country, and they also who were in the city of David, those who were in Jerusalem, who had made themselves a citadel, out of which they used to go, and polluted everything around the sanctuary, and did great damage to its purity. + +He placed Jews in it and fortified it for the safety of the country and the city, and made high the walls of Jerusalem. + +King Demetrius confirmed to him the high priesthood according to these things, + +and made him one of his friends,14:39 +See 1 Maccabees 2:18. + and honored him with great honor; + +for he had heard that the Jews had been called by the Romans friends, allies, and kindred, and that they had met the ambassadors of Simon honorably; + +and that the Jews and the priests were well pleased that Simon should be their leader and high priest forever, until there should arise a faithful prophet; + +and that he should be governor over them, and should take charge of the sanctuary, to set them over their works, and over the country, and over the weapons, and over the strongholds; and that he should take charge of the sanctuary, + +and that he should be obeyed by all, and that all contracts in the country should be written in his name, and that he should be clothed in purple, and wear gold; + +and that it should not be lawful for any of the people or of the priests to nullify any of these things, or to oppose the words that he should speak, or to gather an assembly in the country without him, or to be clothed in purple, or wear a buckle of gold; + +but whoever should do otherwise, or nullify any of these things, he will be liable to punishment.’” + +All the people consented to ordain for Simon that he should do according to these words. + +So Simon accepted this, and consented to be high priest, and to be captain and governor14:47 +Gr. +ethnarch. + of the Jews and of the priests, and to be protector of all. + +

+

They commanded to put this writing on tablets of brass, and to set them up within the precinct of the sanctuary in a conspicuous place, + +and moreover to put copies of them in the treasury, so that Simon and his sons might have them. + +

+ + +

Antiochus son of Demetrius the king sent a letter from the islands of the sea to Simon the priest and15:1 +Gr. +ethnarch. + governor of the Jews, and to all the nation. + +Its contents follow: +

+

“King Antiochus to Simon the chief priest and15:2 +Gr. +ethnarch. + governor, and to the nation of the Jews, greetings. + +Whereas certain troublemakers have made themselves masters of the kingdom of our fathers, but my purpose is to claim the kingdom, that I may restore it as it was before; and moreover I have raised a multitude of foreign soldiers, and have prepared warships; + +moreover I plan to land in the country, that I may punish those who have destroyed our country, and those who have made many cities in the kingdom desolate; + +now therefore I confirm to you all the tax remissions which the kings who were before me remitted to you, and whatever gifts besides they remitted to you, + +and I permit you to coin money for your country with your own stamp, + +but that Jerusalem and the sanctuary should be free. All the weapons that you have prepared, and the strongholds that you have built, which you have in your possession, let them remain yours. + +Every debt owed to the king, and the things that will be owed to the king from henceforth and for evermore, let them be remitted to you. + +Moreover, when we have established our kingdom, we will glorify you and your nation and the temple with great glory, so that your glory will be made manifest in all the earth. + +

+

In the one hundred seventy-fourth year,15:10 +circa B.C. 139 + Antiochus went into the land of his fathers; and all the forces came together to him, so that there were few men with Tryphon. + +King Antiochus pursued him, and he came, as he fled, to Dor, which is by the sea; + +for he knew that troubles had come upon him all at once, and that his forces had deserted him. + +Antiochus encamped against Dor, and with him one hundred twenty thousand men of war and eight thousand cavalry. + +He surrounded the city, and the ships joined in the attack from the sea. He harassed the city by land and sea, and permitted no one to go out or in. + +

+

Numenius and his company came from Rome, having letters to the kings and to the countries, in which were written these things: + +

+

“Lucius, consul of the Romans, to King Ptolemy, greetings. + +The Jews’ ambassadors came to us as our friends and allies, to renew the old friendship and alliance, being sent from Simon the high priest, and from the people of the Jews. + +Moreover they brought a shield of gold weighing one thousand minas.15:18 +1,000 minas is about 499 kg. or about 1,098 pounds. + +It pleased us therefore to write to the kings and to the countries, that they should not seek their harm or fight against them, their cities, and their country, or be allies with those who fight against them. + +Moreover, it seemed good to us to receive the shield from them. + +If therefore any troublemakers have fled from their country to you, deliver them to Simon the high priest, that he may take vengeance on them according to their law.” + +

+

He wrote the same things to King Demetrius, to Attalus, to Arathes, to Arsaces, + +to all the countries, to15:23 +Some authorities read +Sampsaces: +the Latin versions have +Lampsacus. + Sampsames, to the Spartans, to Delos, to Myndos, to Sicyon, to Caria, to Samos, to Pamphylia, to Lycia, to Halicarnassus, to Rhodes, to Phaselis, to Cos, to Side, to Aradus, Gortyna, Cnidus, Cyprus, and Cyrene. + +They also wrote this copy to Simon the high priest. + +

+

But King Antiochus encamped against Dor the second day, bringing his forces up to it continually, and making engines of war; and he shut up Tryphon from going in or out. + +Simon sent him two thousand chosen men to fight on his side, with silver, gold, and instruments of war in abundance. + +He would not receive them, but nullified all the covenants which he had made with him before, and was estranged from him. + +He sent to him Athenobius, one of his friends,15:28 +See 1 Maccabees 2:18. + to confer with him, saying, “You hold possession of Joppa, Gazara, and the citadel that is in Jerusalem, cities of my kingdom. + +You have devastated their territory, and done great harm in the land, and control many places in my kingdom. + +Now therefore hand over the cities which you have taken, and the tributes of the places which you have taken control of outside of the borders of Judea; + +or else give me for them five hundred talents of silver; and for the harm that you have done, and the tributes of the cities, another five hundred talents. Otherwise we will come and subdue you.” + +

+

Athenobius, the king’s friend,15:32 +See 1 Maccabees 2:18. + came to Jerusalem. When he saw the glory of Simon, the cupboard of gold and silver vessels, and his great attendance, he was amazed. He reported to him the king’s words. + +Simon answered, and said to him, “We have not taken other men’s land nor do we have possession of that which belongs to others, but of the inheritance of our fathers. However, it had been in possession of our enemies wrongfully for a while. + +But we, having opportunity, firmly hold the inheritance of our fathers. + +As for Joppa and Gazara, which you demand, they did great harm among the people throughout our country. We will give one hundred talents for them.” +

+

Athenobius didn’t answer even one word, + +but returned in a rage to the king, and reported to him these words, and the glory of Simon, and all that he had seen; and the king was exceedingly angry. + +Meanwhile, Tryphon embarked on board a ship, and fled to Orthosia. + +

+

The king appointed Cendebaeus chief captain of the sea coast, and gave him troops of infantry and cavalry. + +He commanded him to encamp against Judea, and he commanded him to build up Kidron, and to fortify the gates, and that he should fight against the people; but the king pursued Tryphon. + +So Cendebaeus came to Jamnia and began to provoke the people, and to invade Judea, and to take the people captive and kill them. + +He built Kidron and stationed cavalry and infantry there, to the end that going out they might make raids on the highways of Judea, as the king had commanded him. + +

+ + +

John went up from Gazara and told Simon his father what Cendebaeus was doing. + +Simon called his two oldest sons, Judas and John, and said to them, “I and my brothers and my father’s house have fought the battles of Israel from our youth, even to this day; and things have prospered in our hands, so that we have often delivered Israel. + +But now I am old, and you moreover, by his mercy, are of a sufficient age. Take the place of me and my brother, and go out and fight for our nation; and let the help which is from heaven be with you. + +

+

He chose out of the country twenty thousand men of war and cavalry, and they went against Cendebaeus, and slept at Modin. + +Rising up in the morning, they went into the plain, and, behold, a great army of infantry and cavalry came to meet them. There was a brook between them. + +He encamped near them, he and his people. He saw that the people were afraid to pass over the brook, and he passed over first. When the men saw him, they passed over after him. + +He divided the people, and placed the cavalry in the midst of the infantry; but the enemies’ cavalry were exceedingly many. + +They sounded the trumpets; and Cendebaeus and his army were put to flight, and many of them fell wounded to death, but those who were left fled to the stronghold. + +At that time Judas, John’s brother, was wounded; but John pursued after them until he came to Kidron, which Cendebaeus had built. + +They fled to the towers that are in the fields of Azotus; and he burned them with fire. About two thousand men of them fell. Then he returned into Judea in peace. + +

+

Ptolemy the son of Abubus had been appointed governor over the plain of Jericho, and he had much silver and gold; + +for he was the high priest’s son-in-law. + +His heart was lifted up, and he planned to make himself master of the country, and he made deceitful plans against Simon and his sons, to do away with them. + +Now Simon was visiting the cities that were in the country, and attending to their needs. He went down to Jericho—himself with Mattathias and Judas his sons—in the one hundred seventy-seventh year,16:14 +circa B.C. 136. + in the eleventh month, which is the month Sebat. + +The son of Abubus received them deceitfully into the little stronghold that is called Dok, which he had built, and made them a great banquet, and hid men there. + +When Simon and his sons had drunk freely, Ptolemy and his men rose up, took their weapons, rushed in against Simon in the banqueting place, and killed him, his two sons, and some of his servants. + +He committed a great iniquity, and repaid evil for good. + +

+

Ptolemy wrote these things and sent to the king, that he should send him forces to aid him, and should deliver him their country and the cities. + +He sent others to Gazara to do away with John. To the captains of thousands, he sent letters to come to him, that he might give them silver, gold, and gifts. + +He sent others to take possession of Jerusalem and the temple hill. + +One ran before to Gazara, and told John that his father and kindred had perished, and that he has sent to kill you also. + +When he heard, he was greatly shocked. He seized the men who came to destroy him and killed them; for he perceived that they were seeking to destroy him. + +

+

And the rest of the acts of John and of his wars and of his valiant deeds which he did, and of the building of the walls which he built, and of his achievements, + +behold, they are written in the chronicles16:24 +Gr. +book of days. + of his high priesthood, from the time that he was made high priest after his father. + +

+
+ +2 Maccabees +The Second Book of the Maccabees +2 Maccabees +2Ma +

The Second Book of the Maccabees +

+

The Second Book of the Maccabees is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +

+ + +

The kindred, the Jews who are in Jerusalem and those who are in the country of Judea, send greetings and good peace to the kindred, the Jews who are throughout Egypt. + +May God do good to you, and remember his covenant with Abraham, Isaac, and Jacob, his faithful servants, + +and give you all a heart to worship him and do his will with a strong heart and a willing soul. + +May God open your heart to his law and his statutes, and make peace, + +and listen to your requests, and be reconciled with you, and not forsake you in an evil time. + +Now we are praying for you here. + +

+

In the reign of Demetrius, in the one hundred sixty-ninth year, we the Jews have already written to you in the suffering and in the distress that has come upon us in these years, from the time that Jason and his company revolted from the holy land and the kingdom, + +and set the gate on fire, and shed innocent blood. We prayed to the Lord, and were heard. We offered sacrifices and meal offerings. We lit the lamps. We set out the show bread.1:8 +Gr. +loaves + + +Now see that you keep the days of the feast of tabernacles in the month Chislev in the one hundred eighty-eighth year. + +

+ +

The people of Jerusalem and those who are in Judea, with the senate and Judas, to Aristobulus, King Ptolemy’s teacher, who is also of the stock of the anointed priests, and to the Jews who are in Egypt, we send greetings and health. + +

+

Having been saved by God out of great perils, as men arrayed against a king, we thank him greatly. + +For he threw out into Persia those who fought against us in the holy city. + +For when the prince had come there, with an army that seemed irresistible, they were cut to pieces in the temple of Nanaea by the treachery of Nanaea’s priests. + +For Antiochus, on the pretense that he would marry her, came into the place, he and his friends who were with him, that they might take a large part of the treasures as a dowry. + +And when the priests of Nanaea’s temple had set the treasures out, and he had come there with a small company within the wall of the sacred precinct, they locked the temple when Antiochus had come in. + +Opening the secret door of the paneled ceiling, they threw stones and struck down the prince. They cut him and his company in pieces, and cut off their heads, and threw them to the people who were outside. + +Blessed be our God in all things, who handed over those who had committed impiety. + +

+

Since we are now about to celebrate the purification of the temple in the month Chislev, on the twenty-fifth day, we thought it necessary to notify you, so that you may also keep a feast of tabernacles, and remember the fire which was given when Nehemiah offered sacrifices, after he had built both the temple and the altar. + +

+

For indeed when our fathers were about to be led into the land of Persia, the godly priests of that time took some of the fire of the altar, and hid it secretly in the hollow of a well that was without water, where they made sure that the place was unknown to anyone. + +Now after many years, when it pleased God, Nehemiah, having received a charge from the king of Persia, sent in quest of the fire the descendants of the priests who hid it. When they declared to us that they had found no fire, but thick liquid, + +he commanded them to draw some of it out and bring it to him. When the sacrifices had been offered, Nehemiah commanded the priests to sprinkle with that liquid both the wood and the things laid on it. + +When that was done and some time had passed, and the sun shone out, which before was hidden with clouds, a great blaze was kindled, so that all men marveled. + +The priests made a prayer while the sacrifice was being consumed—both the priests and all the others. Jonathan led and the rest responded, as Nehemiah did. + +

+

The prayer was like this: “O Lord, Lord God, the Creator of all things, you are awesome, strong, righteous, and merciful, you alone are King and gracious, + +you alone supply every need, you alone are righteous, almighty, and eternal, you who save Israel out of all evil, who chose the ancestors and sanctified them, + +accept the sacrifice for all your people Israel, and preserve your own portion, and consecrate it. + +Gather together our scattered people, set at liberty those who are in bondage among the heathen, look upon those who are despised and abhorred, and let the heathen know that you are our God. + +Punish those who oppress us and in arrogance shamefully entreat us. + +Plant your people in your holy place, even as Moses said.” + +

+

Then the priests sang the hymns. + +As soon as the sacrifice was consumed, then Nehemiah commanded that the rest of the liquid be poured on large stones. + +When this was done, a flame was kindled; but when the light from the altar shone back, it went out. + +When the matter became known, and king of the Persians was told that in the place where the priests who were led away had hid the fire, the liquid appeared which Nehemiah and those who were with him purified the sacrifice, + +then the king enclosed the place and made it sacred after he had investigated the matter. + +When the king would show favor to any, he would exchange many presents and give them some of this liquid. + +Nehemiah and those who were with him called this thing “Nephthar”, which is by interpretation, “Cleansing”; but most men call it Nephthai. + +

+ + +

It is also found in the records that Jeremiah the prophet commanded those who were carried away to take some of the fire, as has been mentioned, + +and how that the prophet charged those who were carried away, having given them the law, that they should not forget the statutes of the Lord or be led astray in their minds when they saw images of gold and silver, and their adornment. + +With other such words he exhorted them, that the law should not depart from their hearts. + +

+

It was in the writing that the prophet, being warned by God, commanded that the tabernacle and the ark should follow with him,2:4 +Gr. +and when. +The Greek text here is probably corrupt. + when he went out to the mountain where Moses had gone up and saw God’s inheritance. + +Jeremiah came and found a cave, he brought the tabernacle, the ark, and the altar of incense into it; then he sealed the entrance. + +Some of those who followed with him came there that they might mark the way, and could not find it. + +But when Jeremiah learned about that, he rebuked them, saying, “The place shall be unknown until God gathers the people together again and shows mercy. + +Then the Lord will disclose these things, and the glory of the Lord shall be seen with the cloud, as it was also shown to Moses, also as Solomon implored that the place might be consecrated greatly, + +and it was also declared that he, having wisdom, offered a sacrifice of dedication, and of the finishing of the temple. + +As Moses prayed to the Lord and fire came down out of heaven and consumed the sacrifice, even so Solomon also prayed, and the fire came down and consumed the burnt offerings. + +2:11 +See Leviticus 10:16 and 9:24. +Moses said, ‘Because the sin offering had not been eaten, it was consumed in like manner.’ + +Likewise Solomon kept the eight days.” + +

+

The same things were reported both in the public archives and in Nehemiah’s records, and also how he, founding a library, gathered together the books about the kings and prophets, and the writings of David, and letters of kings about sacred gifts. + +In like manner Judas also gathered together for us all those books that had been scattered by reason of the war, and they are still with us. + +If therefore you have need of them, send some people to bring them to you. + +

+

Seeing then that we are about to celebrate the purification, we write to you. You will therefore do well if you celebrate the days. + +Now God, who saved all his people, and restored the heritage to all, with the kingdom, the priesthood, and the consecration, + +even as he promised through the law—in God have we hope, that he will soon have mercy upon us, and gather us together out of everywhere under heaven into his holy place; for he delivered us out of great evils, and purified the place. +

+ +

——————— + +

+ +

Now the things concerning Judas Maccabaeus and his brothers, the purification of the greatest temple, the dedication of the altar, + +and further the wars against Antiochus Epiphanes and Eupator his son, + +and the manifestations that came from heaven to those who fought with one another in brave deeds for the religion of the Jews; so that, being but a few, they seized the whole country, chased the barbarous multitudes, + +recovered again the temple renowned all the world over, freed the city, and restored the laws which were about to be overthrown, seeing the Lord became gracious to them with all kindness. + +These things which have been declared by Jason of Cyrene in five books, we will attempt to abridge in one book. + +For having in view the confused mass of the numbers, and the2:24 +Or, weariness + difficulty which awaits those who would enter into the narratives of the history, by reason of the abundance of the matter, + +we were careful that those who choose to read may be attracted, and that those who wish us well may find it easy to recall, and that all readers may benefit. + +Although to us, who have taken upon ourselves the painful labor of the abridgement, the task is not easy, but a matter of sweat and sleeplessness, + +even as it is no light thing to him who prepares a banquet, and seeks the benefit of others. Nevertheless, for the sake of the gratitude of the many we will gladly endure the painful labor, + +leaving to the historian the exact handling of every particular, and again having no strength to fill in the outlines of our abridgement. + +For as the masterbuilder of a new house must care for the whole structure, and again he who undertakes to decorate and paint it must seek out the things fit for its adorning; even so I think it is also with us. + +To occupy the ground, and to indulge in long discussions, and to be curious in particulars, is fitting for the first author of the history; + +but to strive after brevity of expression, and to avoid a labored fullness in the treatment, is to be granted to him who would bring a writing into a new form. + +Here then let’s begin the narration, only adding this much to that which has already been said; for it is a foolish thing to make a long prologue to the history, and to abridge the history itself. + +

+ + + +

When the holy city was inhabited with unbroken peace and the laws were kept very well because of the godliness of Onias the high priest and his hatred of wickedness, + +it came to pass that even the kings themselves honored the place and glorified the temple with the noblest presents, + +so that even King Seleucus of Asia bore all the costs belonging to the services of the sacrifices out of his own revenues. + +But a man named Simon of the tribe of Benjamin, having been made guardian of the temple, disagreed with the high priest about the ruling of the market in the city. + +When he couldn’t overcome Onias, he went to Apollonius of +3:5 +Greek +ThraseasTarsus, who at that time was governor of Coelesyria and Phoenicia. + +He brought him word how that the treasury in Jerusalem was full of untold sums of money, so that the multitude of the funds was innumerable, and that they didn’t pertain to the account of the sacrifices, but that it was possible that these should fall under the king’s power. + +When Apollonius met the king, he informed him of the money about which he had been told. So the king appointed Heliodorus, who was his chancellor, and sent him with a command to accomplish the removal of the reported money. + +So Heliodorus set out on his journey at once, ostensibly to visit the cities of Coelesyria and Phoenicia, but in fact to execute the king’s purpose. + +

+

When he had come to Jerusalem and had been courteously received by the high priest of the city, he told him about the information which had been given, and declared why he had come; and he inquired if in truth these things were so. + +The high priest explained to him that there were in the treasury deposits of widows and orphans, + +and moreover some money belonging to Hyrcanus the son of Tobias, a man in very high place, not as that impious Simon falsely alleged; and that in all there were four hundred talents of silver and two hundred of gold, + +and that it was altogether impossible that wrong should be done to those who had put trust in the holiness of the place, and in the majesty and inviolable sanctity of the temple, honored over all the world. + +But Heliodorus, because of the king’s command given him, said that in any case this money must be confiscated for the king’s treasury. + +

+

So having appointed a day, he entered in to direct the inquiry concerning these matters; and there was no small distress throughout the whole city. + +The priests, prostrating themselves before the altar in their priestly garments, and called toward heaven upon him who gave the law concerning deposits, that he should preserve these treasures safe for those who had deposited them. + +Whoever saw the appearance of the high priest was wounded in mind; for his countenance and the change of his color betrayed the distress of his soul. + +For a terror and a shuddering of the body had come over the man, by which the pain that was in his heart was plainly shown to those who looked at him. + +Those who were in the houses rushed out in crowds to make a universal supplication, because the place was about to come into dishonor. + +The women, girded with sackcloth under their breasts, thronged the streets. The virgins who were kept indoors ran together, some to the gates, others to the walls, and some looked out through the windows. + +All, stretching out their hands toward heaven, made their solemn supplication. + +Then it was pitiful to see the multitude prostrating themselves all mixed together, and the anxiety of the high priest in his great distress. + +

+

While therefore they called upon the Almighty Lord to keep the things entrusted to them +3:22 +Gr. +safe with all security.safe and secure for those who had entrusted them, + +Heliodorus went on to execute that which had been decreed. + +But when he was already present there with his guards near the treasury, the Sovereign of spirits and of all authority caused a great manifestation, so that all who had presumed to come with him, stricken with dismay at the power of God, fainted in terror. + +For they saw a horse with a frightening rider, adorned with beautiful trappings, and he rushed fiercely and struck at Heliodorus with his forefeet. It seemed like he who sat on the horse had complete armor of gold. + +Two others also appeared to him, young men notable in their strength, and beautiful in their glory, and splendid in their apparel, who stood by him on either side, and scourged him unceasingly, inflicting on him many sore stripes. + +When he had fallen suddenly to the ground, and great darkness had come over him, his guards picked him up and put him on a stretcher, + +and carried him—this man who had just now entered with a great retinue and all his guard into the aforesaid treasury, himself now brought to utter helplessness, manifestly made to recognize the sovereignty of God. + +So, while he, through the working of God, speechless and bereft of all hope and deliverance, lay prostrate, + +they blessed the Lord who acted marvelously for his own place. The temple, which a little before was full of terror and alarm, was filled with joy and gladness after the Almighty Lord appeared. + +

+

But quickly some of Heliodorus’s familiar friends implored Onias to call upon the Most High to grant life to him who lay quite at the last gasp. + +The high priest, secretly fearing lest the king might come to think that some treachery toward Heliodorus had been perpetrated by the Jews, brought a sacrifice for the recovery of the man. + +But as the high priest was making the atoning sacrifice, the same young men appeared again to Heliodorus, arrayed in the same garments. They stood and said, “Give Onias the high priest great thanks, for for his sake the Lord has granted you life. + +See that you, since you have been scourged from heaven, proclaim to all men the sovereign majesty of God.” When they had spoken these words, they vanished out of sight. + +So Heliodorus, having offered a sacrifice to the Lord and vowed +3:35 +Gr. +greatest. +great vows to him who had saved his life, and having bidden Onias farewell, returned with his army to the king. + +He testified to all men the works of the greatest God, which he had seen with his eyes. + +

+

When the king asked Heliodorus what sort of man was fit to be sent yet once again to Jerusalem, he said, + +“If you have any enemy or conspirator against the state, send him there, and you will receive him back well scourged, if he even escapes with his life; because truly there is some power of God in that place. + +For he who has his dwelling in heaven himself has his eyes on that place and helps it. Those who come to hurt it, he strikes and destroys.” + +

+

This was the history of Heliodorus and the keeping of the treasury. + +

+ + +

The previously mentioned Simon, who had given information about the money against his country, slandered Onias, saying that it was he who had incited Heliodorus and had been the real cause of these evils. + +He dared to call him a conspirator against the state who was actually the benefactor of the city, the guardian of his fellow countrymen, and a zealot for the laws. + +When his hatred grew so great that even murders were perpetrated through one of Simon’s approved agents, + +Onias, seeing the danger of the contention, and that +4:4 +Compare 2 Maccabees 4:21. See also 2 Maccabees 3:5. The Greek as commonly read means +Apollonius, as +being +the governor...Phoenicia, did rage, and increase etc. +Apollonius the son of Menestheus, the governor of Coelesyria and Phoenicia, was increasing Simon’s malice, + +appealed to the king, not to be an accuser of his fellow citizens, but looking to the good of all the4:5 +Gr. +multitude. + people, both public and private; + +for he saw that without the king’s involvement it was impossible for the state to obtain peace any more, and that Simon would not cease from his madness. + +

+

When Seleucus was deceased, and Antiochus, who was called Epiphanes, succeeded to the kingdom, Jason the brother of Onias supplanted his brother in the high priesthood, + +having promised to the king at an audience three hundred sixty talents of silver, and out of another fund eighty talents. + +In addition to this, he undertook to assign one hundred fifty more, if it might be allowed him +4:9 +Gr. +through his. +through the king’s authority to set him up a gymnasium and a body of youths to be trained in it, and to register the inhabitants of Jerusalem as citizens of Antioch. + +When the king had assented, and Jason had taken possession of the office, he immediately shifted those of his own race to the Greek way of life. + +Setting aside the royal ordinances of special favor to the Jews, granted by the means of John the father of Eupolemus, who went on the mission to the Romans to establish friendship and alliance, and seeking to overthrow the lawful ways of living, he brought in new customs forbidden by the law. + +For he eagerly established a gymnasium under the citadel itself, and caused the noblest of the young men to wear the Greek hat. + +Thus there was an extreme of hellenization, and an advance of a foreign religion, by reason of the exceeding profaneness of Jason, who was an ungodly man and not a high priest; + +so that the priests had no more any zeal for the services of the altar; but despising the sanctuary and neglecting the sacrifices, they hastened to enjoy that which was unlawfully provided in the wrestling arena, after the summons to the discus-throwing. + +They despised the honors of their fathers, and valued the prestige of the Greeks best of all. + +For this reason, severe calamity overtook them. The men whose ways of living they earnestly followed, and to whom they desired to be made like in all things, these became their enemies and punished them. + +For it is not a light thing to show irreverence to God’s laws, but later events will make this clear. + +

+

Now when certain games that came every fifth year were kept at Tyre, and the king was present, + +the vile Jason sent sacred envoys,4:19 +See ver. 9. as being Antiochians of Jerusalem, bearing three hundred drachmas of silver to the sacrifice of Hercules, which even the bearers thereof thought not right to use for any sacrifice, because it was not fit, but to spend it for another purpose. + +Although the sender intended that this money was for the sacrifice of Hercules, yet on account of +4:20 +Some authorities read +the bearers. +present circumstances it went to the construction of trireme warships. + +

+

Now when Apollonius the son of Menestheus was sent into Egypt for the +4:21 +The exact meaning of the Greek word is uncertain.enthronement of Philometor as king, Antiochus, learning that Philometor had shown himself hostile toward the government, took precautions for the security of his realm. Therefore, going to Joppa, he travelled on to Jerusalem. + +Being magnificently received by Jason and the city, he was brought in with torches and shouting. Then he led his army down into Phoenicia. + +

+

Now after a space of three years, Jason sent Menelaus, the previously mentioned Simon’s brother, to carry the money to the king, and to make reports concerning some necessary matters. + +But he being commended to the king, and having been glorified by the display of his authority, secured the high priesthood for himself, outbidding Jason by three hundred talents of silver. + +After receiving the royal mandates, he returned bringing nothing worthy of the high priesthood, but having the passion of a cruel tyrant and the rage of a savage animal. + +So Jason, who had supplanted his own brother, was supplanted by another and driven as a fugitive into the country of the Ammonites. + +Menelaus had possession of the office, but of the money that had been promised to the king nothing was regularly paid, even though Sostratus the governor of the citadel demanded it— + +for his job was the gathering of the revenues—so they were both called by the king to his presence. + +Menelaus left his own brother Lysimachus for his4:29 +Gr. +successor. + deputy in the high priesthood; and Sostratus left Crates, who was over the Cyprians. + +

+

Now while this was the state of things, it came to pass that the people of Tarsus and Mallus revolted because they were to be given as a present to Antiochis, the king’s concubine. + +The king therefore quickly came to settle matters, leaving for his +4:31 +Gr. +successor. +deputy Andronicus, a man of high rank. + +Then Menelaus, supposing that he had gotten a favorable opportunity, presented to Andronicus certain vessels of gold belonging to the temple, which he had stolen. He had already sold others into Tyre and the neighboring cities. + +When Onias had sure knowledge of this, he sharply reproved him, having withdrawn himself into a sanctuary at Daphne, that lies by Antioch. + +Therefore Menelaus, taking Andronicus aside, asked him to kill Onias. Coming to Onias, and being persuaded to use treachery, and being received as a friend, Andronicus gave him his right hand with oaths and, though he was suspicious, persuaded him to come out of the sanctuary. Then, with no regard for justice, he immediately put him to death. + +For this reason not only Jews, but many also of the other nations, had indignation and displeasure at the unjust murder of the man. + +And when the king had come back from the places in Cilicia, the Jews who were in the city appealed to him against Andronicus (the Greeks also joining with them in hatred of the wickedness), urging that Onias had been wrongfully slain. + +Antiochus therefore was heartily sorry, and was moved to pity, and wept, because of the sober and well ordered life of him who was dead. + +Being inflamed with anger, he immediately stripped off Andronicus’s purple robe, and tore off his under garments, and when he had led him round through the whole city to that very place where he had committed the outrage against Onias, there he put the murderer out of the way, the Lord rendering to him the punishment he had deserved. + +

+

Now when many sacrileges had been committed in the city by Lysimachus with the consent of Menelaus, and when the report of them had spread abroad outside, the people gathered themselves together against Lysimachus, after many vessels of gold had already been stolen. + +When the multitudes were rising against him and were filled with anger, Lysimachus armed about three thousand men, and with unrighteous violence began the attack under the leadership of Hauran, a man far gone in years and no less also in folly. + +But when they perceived the assault of Lysimachus, some caught up stones, others logs of wood, and some took handfuls of the ashes that lay near, and they flung them all in wild confusion at Lysimachus and those who were with him. + +As a result, they wounded many of them, they killed some, and they forced the rest of them to flee, but the author of the sacrilege himself they killed beside the treasury. + +

+

But about these matters, there was an accusation laid against Menelaus. + +When the king had come to Tyre, the three men who were sent by the senate pleaded the cause before him. + +But Menelaus, seeing himself now defeated, promised much money to Ptolemy the son of Dorymenes, that he might win over the king. + +Therefore Ptolemy taking the king aside into a cloister, as if to get some fresh air, convinced him to change his mind. + +He who was the cause of all the evil, Menelaus, he discharged from the accusations; but these hapless men, who, if they had pleaded even before Scythians, would have been discharged uncondemned, them he sentenced to death. + +Those who were spokesmen for the city and the families of Israel and the holy vessels soon suffered that unrighteous penalty. + +Therefore even certain Tyrians, moved with hatred of the wickedness, provided magnificently for their burial. + +But Menelaus, through the covetous dealings of those who were in power, remained still in his office, growing in wickedness, established as a great conspirator against his fellow citizens. + +

+ + +

Now about this time Antiochus made his second invasion into Egypt. + +It happened that throughout all the city, for almost forty days, cavalry appeared in the midst of the sky in swift motion, wearing robes woven with gold and carrying spears, equipped with troops for battle— + +drawing swords, squadrons of cavalry in array, encounters and pursuits of both armies, shaking shields, multitudes of lances, throwing of missiles, flashing of golden trappings, and putting on all sorts of armor. + +Therefore everyone prayed that the manifestation might have been given for good. + +

+

When a false rumor had arisen that Antiochus was dead, Jason took not less than a thousand men, and suddenly made an assault upon the city. When those who were on the wall were being routed, and the city was at length nearly taken, Menelaus took refuge in the citadel. + +But Jason slaughtered his own citizens without mercy, not considering that good success against kinsmen is the greatest misfortune, but supposing himself to be setting up trophies over enemies, and not over fellow countrymen. + +He didn’t win control of the government, but receiving shame as the result of his conspiracy, he fled again as a fugitive into the country of the Ammonites. + +At last therefore he met with a miserable end. Having been imprisoned at the court of Aretas the prince of the Arabians, fleeing from city to city, pursued by all men, hated as a rebel against the laws, and abhorred as the executioner of his country and his fellow citizens, he was cast ashore in Egypt. + +He who had driven many from their own country into exile perished in exile, having crossed the sea to the Lacedaemonians, hoping to find shelter there because they were5:9 +See 1 Maccabees 12:7. + near of kin. + +He who had thrown out a multitude unburied had none to mourn for him. He didn’t have any funeral at all and no place in the tomb of his ancestors. + +

+

Now when news came to the king concerning that which was done, he thought that Judea was in revolt. So, setting out from Egypt in a rage, he took the city by force of weapons, + +and commanded his soldiers to cut down without mercy those who came in their way, and to kill those who went into their houses. + +Then there was killing of young and old, destruction of boys, women, and children, and slaying of virgins and infants. + +In a total of three days, eighty thousand were destroyed, of which forty thousand were slain in close combat, and no fewer were sold into slavery than slain. + +

+

Not content with this, he presumed to enter into the most holy temple of all the earth, having Menelaus for his guide (who had proved himself a traitor both to the laws and to his country), + +even taking the sacred vessels with his polluted hands, and dragging down with his profane hands the offerings that had been dedicated by other kings to enhance the glory and honor of the place. + +Antiochus was lifted up in mind, not seeing that because of the sins of those who lived in the city the Sovereign Lord had been provoked to anger a little while, and therefore his eye was turned away from the place. + +But had it not been so that they were already bound by many sins, this man, even as Heliodorus who was sent by King Seleucus to view the treasury, would, as soon as he came forward, have been scourged and turned back from his daring deed. + +However the Lord didn’t choose the nation for the place’s sake, but the place for the nation’s sake. + +Therefore also the place itself, having shared in the calamities that happened to the nation, did afterward share in its benefits; and the place which was forsaken in the wrath of the Almighty was, at the reconciliation of the great Sovereign, restored again with all glory. + +

+

As for Antiochus, when he had carried away out of the temple one thousand eight hundred talents, he hurried away to Antioch, thinking in his arrogance that he could sail on land and walk on the sea, because his heart was lifted up. + +Moreover he left governors to afflict the race: at Jerusalem, Philip, by race a Phrygian, and in character more barbarous than him who set him there; + +and at Gerizim, Andronicus; and besides these, Menelaus, who worse than all the rest, exalted himself against his fellow citizens. Having a malicious mind5:23 +Some authorities read +toward the Jews, he sent. +The Greek text of this sentence is uncertain. + toward the Jews5:23 +Compare 2 Maccabees 4:9, 19; 9:19. + whom he had made his citizens, + +he sent that5:24 +Gr. +Μυσάρχην, +which also may mean +ruler of the Mysians. + lord of pollutions Apollonius with an army of twenty-two thousand, commanding him to kill all those who were of full age, and to sell the women and the boys as slaves. + +He came to Jerusalem, and pretending to be a man of peace, waited till the holy day of the Sabbath, and finding the Jews at rest from work, he commanded his men to parade fully armed. + +He put to the sword all those who came out to the spectacle. Running into the city with the armed men, he killed great multitudes. + +But Judas, who is also called Maccabaeus, with about nine others, withdrew himself, and with his company kept himself alive in the mountains like wild animals do. They continued feeding on what grew wild, that they might not be partakers of the defilement. + +

+ + +

Not long after this, the king sent out +6:1 +Or, +Geron an Athenian +an old man of Athens to compel the Jews to depart from the laws of their fathers and not to live by the laws of God, + +and also to pollute the sanctuary in Jerusalem and to call it by the name of Olympian Zeus, and to call the sanctuary in Gerizim by the name of Zeus the Protector of foreigners, even as the people who lived in that place did. + +

+

The visitation of this evil was harsh and utterly grievous. + +For the temple was filled with debauchery and reveling by the heathen, who +6:4 +Or, +idled with their fellows +dallied with prostitutes, and had intercourse with women within the sacred precincts, and moreover brought inside things that were not appropriate. + +The altar was filled with those abominable things which had been prohibited by the laws. + +A man could neither keep the Sabbath, nor observe the feasts of their ancestors, nor so much as confess himself to be a Jew. + +

+

On the day of the king’s birth every month, they were led along with bitter constraint to eat of the sacrifices. When the feast of Dionysia came, they were compelled to go in procession in honor of Dionysus, wearing wreaths of ivy. + +A decree went out to the neighboring Greek cities, by the suggestion of Ptolemy, that they should observe the same conduct against the Jews, and should make them eat of the sacrifices, + +and that they should kill those who didn’t choose to go over to the Greek rites. So the present misery was for all to see. + +For example, two women were brought in for having circumcised their children. These, when they had led them publicly around the city with the babes hung from their breasts, they threw down headlong from the wall. + +Others who had run together into the caves nearby to keep the seventh day secretly, were betrayed to Philip and were all burned together, because their piety kept them from defending themselves, in view of the honor of that most solemn day. + +

+

I urge those who read this book to not be discouraged because of the calamities, but recognize that these punishments were not for the destruction, but for the chastening of our race. + +For indeed it is a sign of great kindness that those who act impiously are not let alone for a long time, but immediately meet with retribution. + +For in the case of the other nations, the Sovereign Lord waits patiently to punish them until they have attained to the full measure of their sins; but not with us, + +that he may not take vengeance on us afterward,6:15 +Or, +when our sins have come to their height + when we have come to the6:15 +Gr. +end. + height of our sins. + +Therefore he never withdraws his mercy from us; but though he chastens with calamity, he doesn’t forsake his own people. + +However let this that we have spoken suffice to remind you; but after a few words, we must come to the narrative. + +

+

Eleazar, one of the principal scribes, a man already well advanced in years, and of a noble countenance, was compelled to open his mouth to eat swine’s flesh. + +But he, welcoming death with honor rather than life with defilement, advanced of his own accord to the instrument of torture, but first spat out the flesh, + +as men ought to come who are resolute to repel such things as not even for the natural love of life is it lawful to taste. + +

+

But those who had the charge of that forbidden sacrificial feast took the man aside, for the acquaintance which of old times they had with him, and privately implored him to bring flesh of his own providing, such as was proper for him to use, and to make as if he did eat of the flesh from the sacrifice, as had been commanded by the king; + +that by so doing he might be delivered from death, and so his ancient friendship with them might be treated kindly. + +But he, having formed a high resolve, and one that became his years, the dignity of old age, and the gray hairs6:23 +The Greek text appears to be corrupt. + which he had reached with honor, and his excellent6:23 +Some authorities read +manner of life. + education from a child, or rather the holy laws6:23 +Gr. +legislation. + of God’s ordaining, declared his mind accordingly, bidding them to quickly send him to Hades. + +

+

“For it doesn’t become our years to dissemble,” he said, “that many of the young should suppose that Eleazar, the man of ninety years, had gone over to an alien religion; + +and so they, by reason of my deception, and for the sake of this brief and momentary life, would be led astray because of me, and I defile and disgrace myself in my old age. + +For even if for the present time I would remove from me the punishment of men, yet whether I live or die, I wouldn’t escape the hands of the Almighty. + +Therefore, by bravely parting with my life now, I will show myself worthy of my old age, + +and +6:28 +Gr. +one that has left behind. +leave behind a noble example to the young to die willingly and nobly a glorious death for the revered and holy laws.” +

+

When he had said these words, he went immediately to the instrument of torture. + +6:29 +The Greek text of this verse is uncertain. +When they changed the good will they bore toward him a little before into ill will because these words of his were, as they thought, sheer madness, + +and when he was at the point to die with the6:30 +Or, +blows + blows, he groaned aloud and said, “To the Lord, who has the holy knowledge, it is manifest that, while I might have been delivered from death, I endure severe pains in my body by being scourged; but in soul I gladly suffer these things because of my fear of him.” + +

+

So this man also died like this, leaving his death for an example of nobleness and a memorial of virtue, not only to the young but also to the great body of his nation. + +

+ + +

It came to pass that seven brothers and their mother were at the king’s command taken and shamefully handled with scourges and cords, to compel them to taste of the abominable swine’s flesh. + +One of them made himself the spokesman and said, “What would you ask and learn from us? For we are ready to die rather than transgress the laws of our ancestors.” + +

+

The king fell into a rage, and commanded that pans and caldrons be heated. + +When these were immediately heated, he gave orders to cut out the tongue of him who had been their spokesman, and to scalp him, and to cut off his extremities, with the rest of his brothers and his mother looking on. + +And when he was utterly7:5 +Gr. +useless. + maimed, the king gave orders to bring him to the fire, being yet alive, and to fry him in the pan. And as the smoke from the pan spread far, they and their mother also exhorted one another to die nobly, saying this: + +“The Lord God sees, and in truth is7:6 +Or, +comforted in + entreated for us, as Moses declared in +7:6 +See Deuteronomy 31:21 and 32:36. +his song, which witnesses against the people to their faces, saying, ‘And he will have compassion on his servants.’” + +

+

And when the first had died like this, they brought the second to the mocking; and they pulled off the skin of his head with the hair and asked him, “Will you eat, before your body is punished in every limb?” + +

+

But he answered in the language of his ancestors and said to them, “No.” Therefore he also underwent the next torture in succession, as the first had done. + +When he was at the last gasp, he said, “You, miscreant, release us out of this present life, but the King of the world will raise us who have died for his laws up to an everlasting renewal of life.” + +

+

After him, the third was made a victim of their mocking. When he was required, he quickly put out his tongue, and stretched out his hands courageously, + +and nobly said, “I got these from heaven. For his laws’ sake I treat these with contempt. From him, I hope to receive these back again.” + +As a result, the king himself and those who were with him were astonished at the young man’s soul, for he regarded the pains as nothing. + +

+

When he too was dead, they shamefully handled and tortured the fourth in the same way. + +Being near to death he said this: “It is good to die at the hands of men and look for the hope which is given by God, that we will be raised up again by him. For as for you, you will have no resurrection to life.” + +

+

Next after him, they brought the fifth and shamefully handled him. + +But he looked toward +7:16 +Gr. +him. +the king and said, “Because you have authority among men, though you are corruptible, you do what you please. But don’t think that our race has been forsaken by God. + +But hold on to your ways, and see how his sovereign majesty will torture you and your descendants!” + +

+

After him they brought the sixth. When he was about to die, he said, “Don’t be vainly deceived, for we suffer these things for our own doings, as sinning against our own God. Astounding things have come to pass; + +but don’t think that you will be unpunished, having tried to fight against God!” + +

+

But above all, the mother was marvelous and worthy of honorable memory; for when she watched seven sons perishing within the space of one day, she bore the sight with a good courage because of her hope in the Lord. + +She exhorted each one of them in the language of their fathers, filled with a noble spirit and stirring up her woman’s thoughts with manly courage, saying to them, + +“I don’t know how you came into my womb. It wasn’t I who gave you your +7:22 +Or, +breath +spirit and your life. It wasn’t I who brought into order the first elements of each one of you. + +Therefore the Creator of the world, who shaped the first origin of man and devised the first origin of all things, in mercy gives back to you again both your +7:23 +Or, +breath +spirit and your life, as you now treat yourselves with contempt for his laws’ sake.” + +

+

But Antiochus, thinking himself to be despised, and suspecting the reproachful voice, while the youngest was yet alive didn’t only make his appeal to him by words, but also at the same time promised with oaths that he would enrich him and7:24 +Gr. +make him one that is counted happy. + raise him to high honor if he would turn from the ways of his ancestors, and that he would take him for his +7:24 +See 2 Maccabees 8:9. +friend and entrust him with public affairs. + +But when the young man would in no way listen, the king called to him his mother, and urged her to advise the youth to save himself. + +When he had urged her with many words, she undertook to persuade her son. + +But bending toward him, laughing the cruel tyrant to scorn, she spoke this in the language of her fathers: “My son, have pity upon me who carried you nine months in my womb, and nursed you three years, and nourished and brought you up to this age, and sustained you. + +I beg you, my child, to lift your eyes to the sky and the earth, and to see all things that are in it, and thus to recognize that God made them not of things that were, and that the race of men in this way comes into being. + +Don’t be afraid of this butcher, but, proving yourself worthy of your brothers, accept your death, that in God’s mercy I may receive you again with your brothers.” + +

+

But before she had finished speaking, the young man said, “What are you all waiting for? I don’t obey the commandment of the king, but I listen to the commandment of the law that was given to our fathers through Moses. + +But you, who have devised all kinds of evil against the Hebrews, will in no way escape God’s hands. + +For we are suffering because of our own sins. + +If for rebuke and chastening, our living Lord has been angered a little while, yet he will again be reconciled with his own servants. + +But you, O unholy man and of all most vile, don’t be vainly lifted up in your wild pride with uncertain hopes, raising your hand against the heavenly children. + +For you have not yet escaped the judgment of the Almighty God who sees all things. + +For these our brothers, having endured a +7:36 +Gr. +short pain of ever-flowing life. +short pain that brings everlasting life, have now +7:36 +Gr. +fallen. +By the omission of one Greek letter the words would signify +having endured a short pain, have now drunk of ever-flowing life under God’s covenant.died under God’s covenant. But you, through God’s judgment, will receive in just measure the penalties of your arrogance. + +But I, as my brothers, give up both body and soul for the laws of our fathers, calling upon God that he may speedily become +7:37 +Gr. +propitious. +gracious to the nation, and that you, amidst trials and plagues, may confess that he alone is God, + +and that in me and my brothers +7:38 +Some authorities read +may be stayed. +you may bring to an end the wrath of the Almighty which has been justly brought upon our whole race.” + +

+

But the king, falling into a rage, handled him worse than all the rest, being exasperated at his mocking. + +So he also died pure, putting his whole trust in the Lord. + +

+

Last of all, after her sons, the mother died. + +

+

Let it then suffice to have said thus much concerning the sacrificial feasts and the extreme tortures. + +

+ + +

But Judas, who is also called Maccabaeus, and those who were with him, making their way secretly into the villages, called together their kindred. Enlisting those who had continued in the Jews’ religion, they gathered together about six thousand. + +They called upon the Lord to look at the people who were oppressed by all, and to have compassion on the sanctuary that had been profaned by the ungodly men, + +and to have pity on the city that was suffering ruin and ready to be leveled to the ground, and to listen to the blood that cried out to him, + +and to remember the lawless destruction of the innocent infants, and concerning the blasphemies that had been committed against his name, and to show his hatred of wickedness. + +

+

When Maccabaeus had trained his men for service, the heathen at once found him irresistible, for the wrath of the Lord was turned into mercy. + +8:6 +The Greek text of verses 6 and 7 is uncertain. +Coming without warning, he set fire to cities and villages. And in winning back the most important positions, putting to flight no small number of the enemies, + +he especially took advantage of the nights for such assaults. His courage was loudly talked of everywhere. + +

+

But when Philip saw the man gaining ground little by little, and increasing more and more in his success, he wrote to Ptolemy, the governor of Coelesyria and Phoenicia, that he should support the king’s cause. + +Ptolemy quickly appointed Nicanor the son of Patroclus, one of the king’s +8:9 +See 1 Maccabees 10:65. Compare 2 Maccabees 1:14; 7:24; 10:13; 14:11; 1 Maccabees 2:18. +chief friends, and sent him, in command of no fewer than twenty thousand of all nations, to destroy the whole race of Judea. With him he joined Gorgias also, a captain and one who had experience in matters of war. + +Nicanor resolved by the sale of the captive Jews to make up for the king the tribute of two thousand talents which he was to pay to the Romans. + +Immediately he sent to the cities upon the sea coast, inviting them to buy Jewish +8:11 +Gr. +bodies. +slaves, promising to deliver seventy +8:11 +Gr. +bodies. +slaves for a talent, not expecting the judgment that was to overtake him from the Almighty. + +

+

News came to Judas concerning Nicanor’s invasion. When he communicated to those who were with him the presence of the army, + +those who were cowardly and distrustful of God’s judgment +8:13 +The Greek text here is uncertain. +ran away and left the country. + +Others sold all that they had left, and at the same time implored the Lord to deliver those who had been sold as slaves by the impious Nicanor before he ever met them, + +if not for their own sakes, then for the covenants made with their ancestors, and because he had called them by his holy and glorious name. + +So Maccabaeus gathered his men together, six thousand in number, and exhorted them not to be frightened by the enemy, nor to fear the great multitude of the heathen who came wrongfully against them, but to fight nobly, + +setting before their eyes the outrage that had been lawlessly perpetrated upon the holy place, and the torture of the city that had been turned to mockery, and further the overthrow of the way of life received from their ancestors. + +“For they,” he said, “trust their weapons and daring deeds, but we trust in the almighty God, since he is able at a nod to cast down those who are coming against us, and even the whole world.” + +Moreover, he recounted to them the help given from time to time in the days of their ancestors, both in the days of Sennacherib, when one hundred eighty-five thousand perished, + +and in the land of Babylon, in the battle that was fought against the8:20 +Gr. +Galatians. + Gauls, how they came to the battle with eight thousand in all, with four thousand Macedonians, and how, the Macedonians being hard pressed, the +8:20 +Some authorities read +eight. +six thousand destroyed the hundred and twenty thousand because of the help which they had from heaven, and took a great deal of plunder. + +

+

And when he had with these words filled them with courage and made them ready to die for the laws and their country, he divided his army into four parts. + +He appointed his brothers, Simon, Joseph, and Jonathan, to be leaders of the divisions with him, giving each the command of one thousand five hundred men. + +Moreover Eleazer also, having read aloud the sacred book, and having given as watchword, “THE HELP OF GOD”, leading the first band himself, joined battle with Nicanor. + +

+

Since the Almighty fought on their side, they killed more than nine thousand of the enemy, and wounded and8:24 +Gr. +disabled in their limbs. + disabled most of Nicanor’s army, and compelled them all to flee. + +They took the money of those who had come there to buy them as slaves. After they had pursued them for some +8:25 +Or, +while +distance, they returned, being constrained by the time of the day; + +for it was the day before the Sabbath, and for this reason they made no effort to chase them far. + +8:27 +The exact meaning of this clause is uncertain.When they had gathered +8:27 +Gr. +their weapons...the spoils of the enemy.the weapons of the enemy together, and had stripped off their spoils, they kept the Sabbath, greatly blessing and thanking the Lord who had saved them to this day, because he had begun to show mercy to them. + +After the Sabbath, when they had given some of the spoils to the +8:28 +Or, +wounded +Gr. +shamefully handled.maimed, and to the widows and orphans, they distributed the rest among themselves and their children. + +When they had accomplished these things and had made a common supplication, they implored the merciful Lord to be wholly reconciled with his servants. + +

+

Having had an encounter with the forces of Timotheus and Bacchides, they killed more than twenty thousand of them, and made themselves masters of exceedingly high strongholds, and divided very much plunder, giving the +8:30 +Or, +wounded +Gr. +shamefully handled.maimed, orphans, widows, and the aged an equal share with themselves. + +8:31 +The exact meaning of this clause is uncertain.When they had gathered the weapons +8:31 +Gr. +of them.of the enemy together, they stored them all up carefully in the most strategic positions, and they carried the rest of the spoils to Jerusalem. + +They killed the +8:32 +That is, probably, the captain of an irregular auxiliary force. Some write +Phylarches, +as a proper name. +phylarch of Timotheus’s forces, a most unholy man, and one who had done the Jews much harm. + +8:33 +The Greek text here is perhaps corrupt.As they celebrated the feast of victory in the +8:33 +Or, +country +city of their fathers, they burned those who had set the sacred +8:33 +Or, +porches +gates on fire, including Callisthenes, who had fled into +8:33 +Or, +a solitary hut +a little house. So they received the proper reward for their impiety. + +

+

The thrice-accursed Nicanor, who had brought the thousand merchants to buy the Jews as slaves, + +being through the help of the Lord humbled by them who in his eyes were held to be of least account, took off his glorious apparel, and passing through the country, +8:35 +Gr. +having made himself solitary. +shunning all company like a fugitive slave, arrived at Antioch, +8:35 +Or, +having won the greatest possible favor by reason of the destruction of his armyhaving, as he thought, had the greatest possible good fortune, though his army was destroyed. + +He who had taken upon himself to make tribute sure for the Romans by the captivity of the men of Jerusalem published abroad that the Jews had One who fought for them, and that +8:36 +Or, +because of this +their +way of life +Gr. +because of this manner.because this was so, the Jews were invulnerable, because they followed the laws ordained by him. + +

+ + +

Now about that time, Antiochus retreated +9:1 +Or, +with dishonor +in disorder from the region of Persia. + +For he had entered into the city called Persepolis, and he attempted to rob +9:2 +Or, +temples +a temple and to control the city. Therefore the multitudes rushed in and the people of the country turned to defend themselves with weapons; and it came to pass that Antiochus was put to flight by the people of the country and broke his camp with disgrace. + +While he was at Ecbatana, news was brought to him about what had happened to Nicanor and the forces of Timotheus. + +Being overcome by his anger, he planned to make the Jews suffer for the evil deeds of those who had put him to flight. Therefore, with judgment from heaven even now accompanying him, he ordered his charioteer to drive without ceasing until he completed the journey; for he arrogantly said this: “I will make Jerusalem a common graveyard of Jews when I come there.” + +

+

But the All-seeing Lord, the God of Israel, struck him with a +9:5 +Gr. +remediless. +fatal and invisible stroke. As soon as he had finished speaking this word, an incurable pain of the bowels seized him, with bitter torments of the inner parts— + +and that most justly, for he had tormented other men’s bowels with many and strange sufferings. + +But he in no way ceased from his rude insolence. No, he was filled with even more arrogance, breathing fire in his passion against the Jews, and giving orders to hasten the journey. But it came to pass moreover that he fell from his chariot as it rushed along, and having a grievous fall was tortured in all of the members of his body. + +He who had just supposed himself to have the waves of the sea at his bidding because he was so superhumanly arrogant, and who thought to weigh the heights of the mountains in a balance, was now brought to the ground and carried in a litter, +9:8 +Or, +showing manifestly to all the power of God +showing to all that the power was obviously God’s, + +so that worms swarmed out of the impious man’s body, and while he was still living in anguish and pain, his flesh fell off, and by reason of the stench all the army turned with loathing from his decay. + +The man who a little before supposed himself to touch the stars of heaven, no one could endure to carry because of his intolerable stench. + +Therefore he began in great part to cease from his arrogance, being broken in spirit, and to come to knowledge under the scourge of God, his pains increasing every moment. + +When he himself could not stand his own smell, he said these words: “It is right to be subject to God, and that one who is mortal should not think they are equal to God.” + +

+

The vile man vowed to the sovereign Lord, who now no more would have pity upon him, saying + +that the holy city, to which he was going in haste to lay it even with the ground and to +9:14 +Gr. +build. +make it a common graveyard, he would declare free. + +Concerning the Jews, whom he had decided not even to count worthy of burial, but to cast them out to the animals with their infants for the birds to devour, he would make them all equal to citizens of Athens. + +The holy sanctuary, which before he had plundered, he would adorn with the best offerings, and would restore all the sacred vessels many times multiplied, and out of his own revenues would defray the charges that were required for the sacrifices. + +Beside all this, he said that he would become a Jew and would visit every inhabited place, proclaiming the power of God. + +But when his sufferings did in no way cease, for the judgment of God had come upon him in righteousness, having given up all hope for himself, he wrote to the Jews the letter written below, having the nature of a supplication, to this effect: + +

+

“To the worthy Jewish citizens, Antiochus, king and general, wishes much joy and health and prosperity. + +May you and your children fare well, and may your affairs be as you wish. Having my hope in heaven, + +I remembered with affection your honor and good will. Returning out of the region of Persia, and being taken with an annoying sickness, I deemed it necessary to take thought for the common safety of all, + +not despairing of myself, but having great hope to escape from the sickness. + +But considering that my father also, at the time he led an army into the upper country, appointed his successor, + +to the end that, if anything fell out contrary to expectation, or if any unwelcome tidings were brought, the people in the country, knowing to whom the state had been left, might not be troubled, + +and, moreover, observing how the princes who are along the borders and neighbors to my kingdom watch for opportunities and look for the future event, I have appointed my son Antiochus to be king, whom I often entrusted and commended to most of you when I was hurrying to the upper provinces. I have written to him what is written below. + +I therefore urge you and beg you, having in your remembrance the benefits done to you in common and severally, to preserve your present good will, each of you, toward me and my son. + +For I am persuaded that he in gentleness and kindness will follow my purpose and treat you with moderation and kindness. + +

+

So the murderer and blasphemer, having endured the most intense sufferings, even as he had dealt with other men, ended his life among the mountains by a most piteous fate in a strange land. + +Philip his foster brother took the body home and then, fearing the son of Antiochus, he withdrew himself to Ptolemy Philometor in Egypt. + +

+ + +

Then Maccabaeus and those who were with him, the Lord leading them on, recovered the temple and the city. + +They pulled down the altars that had been built in the marketplace by the foreigners, and also the sacred enclosures. + +Having cleansed the sanctuary, they made another altar of sacrifice. +10:3 +Gr. +firing. +Striking flint and starting a fire, they offered sacrifices after they had ceased for two years, burned incense, lit lamps, and set out the show bread. + +When they had done these things, they fell prostrate and implored the Lord that they might fall no more into such evils; but that, if they ever did sin, they might be chastened by him with forbearance, and not be delivered to blaspheming and barbarous heathen. + +Now on the same day that the sanctuary was profaned by foreigners, upon that very day it came to pass that the sanctuary was cleansed, even on the twenty-fifth day of the same month, which is Chislev. + +They observed eight days with gladness in the manner of the feast of tabernacles, remembering how +10:6 +Or, +not long before they kept the feast of tabernacles by wandering +not long before, during the feast of tabernacles, they were wandering in the mountains and in the caves like wild animals. + +Therefore carrying wands wreathed with leaves, and beautiful branches, and palm fronds also, they offered up hymns of thanksgiving to him who had successfully brought to pass the cleansing of his own place. + +They ordained also with a public statute and decree, for all the nation of the Jews, that they should observe these days every year. + +

+

Such were the events of the end of Antiochus, who was called Epiphanes. + +

+

Now we will declare what came to pass under Antiochus +10:10 +That is, +son of a good father. +Eupator, who proved himself a son of that ungodly man, and will summarize the main evils of the wars. + +For this man, when he succeeded to the kingdom, appointed one Lysias to be chancellor and supreme governor of Coelesyria and Phoenicia. + +For Ptolemy who was called Macron, setting an example of observing justice toward the Jews because of the wrong that had been done to them, endeavored to deal with them on peaceful terms. + +Whereupon being accused by the king’s +10:13 +See 2 Maccabees 8:9 +friends before Eupator, and hearing himself called traitor at every turn because he had abandoned Cyprus which Philometor had entrusted to him, and had withdrawn himself to Antiochus Epiphanes, and +10:13 +The Greek text here is corrupt.failing to uphold the honor of his office, he took poison and did away with himself. + +

+

But when Gorgias was made governor of the district, he maintained a force of mercenaries, and at every turn kept up war with the Jews. + +Together with him the Idumaeans also, being masters of important strongholds, harassed the Jews; and received those who had taken refuge from Jerusalem, they endeavored to keep up the war. + +But Maccabaeus and his men, having made solemn supplication and having implored God to fight on their side, rushed upon the strongholds of the Idumaeans. + +Assaulting them vigorously, they took control of the positions, and kept off all who fought upon the wall, and killed those whom they encountered, killing no fewer than twenty thousand. + +

+

Because no fewer than nine thousand had fled into two very strong towers having everything needed for a siege, + +Maccabaeus, having left Simon and Joseph, and also Zacchaeus and those who were with him, a force sufficient to besiege them, departed himself to places where he was most needed. + +But Simon and those who were with him, yielding to covetousness, were bribed by some of those who were in the towers, and receiving seventy thousand drachmas, let some of them slip away. + +But when word was brought to Maccabaeus of what was done, he gathered the leaders of the people together, and accused those men of having sold their kindred for money by setting their enemies free to fight against them. + +So he killed these men for having turned traitors, and immediately took possession of the two towers. + +Prospering with his weapons in everything he undertook, he destroyed more than twenty thousand in the two strongholds. + +

+

Now Timotheus, who had been defeated by the Jews before, having gathered together foreign forces in great multitudes, and having collected the cavalry which belonged to Asia, not a few, came as though he would take Judea by force of weapons. + +But as he drew near, Maccabaeus and his men sprinkled dirt on their heads and girded their loins with sackcloth, in supplication to God, + +and falling down upon the step in front of the altar, implored him to become +10:26 +Gr. +propitious. +gracious to them, and +10:26 +See Exodus 23:22. +be an enemy to their enemies and an adversary to their adversaries, as the law declares. + +Rising from their prayer they took up their weapons, and advanced some distance from the city. When they had come near to their enemies, they10:27 +Gr. +were by themselves. halted. + +When the dawn was now breaking, the two armies joined in battle, the one part having this, beside virtue, for a pledge of success and victory, that they had fled to the Lord for refuge, the others making their passion their leader in the fight. + +

+

When the battle became strong, there appeared out of heaven to their adversaries five splendid men on horses with bridles of gold, +10:29 +Some authorities read +and leading on the Jews; who also, taking. +and two of them, leading on the Jews, + +and taking Maccabaeus in the midst of them, and covering him with their own armor, guarded him from wounds, while they shot arrows and thunderbolts at the enemies. For this reason, they were blinded and thrown into confusion, and were cut to pieces, filled with bewilderment. + +Twenty thousand five hundred were slain, beside six hundred cavalry. + +

+

Timotheus himself fled into a stronghold called Gazara, a fortress of great strength, +10:32 +See ver. 37. +where Chaereas was in command. + +Then Maccabaeus and his men were glad and laid siege to the fortress for four days. + +Those who were within, trusting in the strength of the place, blasphemed exceedingly, and hurled out impious words. + +But at dawn of the fifth day, certain young men of Maccabaeus’ company, inflamed with anger because of the blasphemies, assaulted the wall with masculine force and with +10:35 +Gr. +passion as of wild animals. +furious anger, and cut down whoever came in their way. + +Others climbing up in the same way, while the enemies were distracted with those who had made their way within, set fire to the towers, and kindled fires that burned the blasphemers alive, while others broke open the gates, and, having given entrance to the rest of the band, occupied the city. + +They killed Timotheus, who was hidden in a cistern, and his brother Chaereas, and Apollophanes. + +When they had accomplished these things, they blessed the Lord with hymns and thanksgiving, blessing him who provides great benefits to Israel and gives them the victory. + +

+ + +

Now after a very little time, Lysias, the king’s guardian, kinsman, and chancellor, being very displeased about the things that had happened, + +collected about eighty thousand infantry and all his cavalry and came against the Jews, planning to make the city a home for Greeks, + +and to levy tribute on the temple, as +11:3 +Or, +on all the sacred places of the heathen +on the other sacred places of the nations, and to put up the high priesthood for sale every year. + +He took no account of God’s power, but was puffed up with his ten thousands of infantry, his thousands of cavalry, and his eighty elephants. + +Coming into Judea and approaching Bethsuron, which was a strong place and about five stadia11:5 +One stadia was roughly 189 meters or 618 feet, so 5 stadia was about a little less than 1 km or a little more than half a mile. away from Jerusalem, he pressed it hard. + +

+

When Maccabaeus and his men learned that he was besieging the strongholds, they and all the people with lamentations and tears made supplication to the Lord to send a good angel to save Israel. + +Maccabaeus himself took up weapons first, and exhorted the others to put themselves in jeopardy together with him and help their kindred; and they went out with him very willingly. + +As they were there, close to Jerusalem, a horseman appeared at their head in white apparel, brandishing11:8 +Gr. +a panoply. + weapons of gold. + +They all together praised the merciful God, and were yet more strengthened in heart, being ready to +11:9 +Gr. +wound. +assail not only men but the wildest animals and walls of iron, + +they advanced in array, having him who is in heaven to fight on their side, for the Lord had mercy on them. + +Hurling themselves like lions against the enemy, they killed eleven thousand infantry and one thousand six hundred cavalry, and forced all the rest to flee. + +Most of them escaped wounded and naked. Lysias himself also escaped by shameful flight. + +But as he was a man not void of understanding, pondering the defeat which had befallen him, and considering that the Hebrews could not be overcome because the Almighty God fought on their side, he sent again + +and persuaded them to come to terms on condition that all their rights were acknowledged, and +11:14 +The Greek text here is corrupt. +promised that he would also persuade the king to become their friend. + +Maccabaeus gave consent upon all the conditions which Lysias proposed to him, being careful of the common good; for whatever requests Maccabaeus delivered in writing to Lysias concerning the Jews the king allowed. + +

+

The letter written to the Jews from Lysias was to this effect: +

+

“Lysias to the +11:16 +Gr. +multitude. +people of the Jews, greetings. + +John and Absalom, who were sent from you, having delivered the document written below, made request concerning the things written therein. + +Whatever things therefore needed to be brought before the king I declared to him, and what things were possible he allowed. + +If then you will all preserve your good will toward the government, I will also endeavor in the future to contribute to your good. + +Concerning this, I have given order in detail, both to these men and to those who are sent from me, to confer with you. + +Farewell. Written in the one hundred forty-eighth year, on the twenty-fourth day of the month +11:21 +This month name is not found elsewhere, and is perhaps corrupt.Dioscorinthius.” + +

+

And the king’s letter contained these words: +

+

“King Antiochus to his brother Lysias, greetings. + +Seeing that our father passed to the gods having the wish that the subjects of his kingdom +11:23 +Or, +should not be disquieted but +should be undisturbed and give themselves to the care of their own affairs, + +we, having heard that the Jews do not consent to our father’s purpose to turn them to the customs of the Greeks, but choose rather their own way of living, and make request that the customs of their law be allowed to them— + +choosing therefore that this nation also should be free from disturbance, we determine that their temple is to be restored to them, and that they live according to the customs that were in the days of their ancestors. + +You will therefore do well to send messengers to them and give them the right hand of friendship, that they, knowing our mind, may be of good heart, and gladly occupy themselves with the conduct of their own affairs.” + +

+

And to the nation, the king’s letter was as follows: +

+

“King Antiochus to the senate of the Jews and to the other Jews, greetings. + +If you are all well, it is as we desire. We ourselves also are in good health. + +Menelaus informed us that your desire was to return home and follow your own business. + +They therefore who depart home up to the thirtieth day of Xanthicus shall have our +11:30 +Gr. +right hand. +friendship, with full permission + +that the Jews use their own foods and observe their own laws, even as formerly. None of them shall be in any way molested for the things that have been done in ignorance. + +Moreover I have sent Menelaus also, that he may encourage you. + +Farewell. Written in the one hundred forty-eighth year, on the fifteenth day of Xanthicus.” + +

+

The Romans also sent to them a letter in these words: +

+

“Quintus Memmius and Titus Manius, ambassadors of the Romans, to the people of the Jews, greetings. + +In regard to the things which Lysias the king’s kinsman granted you, we also give consent. + +But as for the things which he judged should be referred to the king, send someone promptly, after you have considered them, that we may publish such decrees as are appropriate for your case; for we are on our way to Antioch. + +Therefore send someone with speed, that we also may learn what is your mind. + +11:38 +Gr. +Be in good health. +Farewell. Written in the one hundred forty-eighth year, on the fifteenth day of Xanthicus. + +

+ + +

So when this agreement had been made, Lysias departed to the king, and the Jews went about their farming. + +

+

But some of the governors of districts, Timotheus and Apollonius the son of Gennaeus, and also Hieronymus and Demophon, and beside them Nicanor the governor of Cyprus, would not allow them to enjoy tranquillity and live in peace. + +Men of Joppa perpetrated this great impiety: they invited the Jews who lived among them to go with their wives and children into the boats which they had provided, as though they had no ill will toward them. + +When12:4 +Gr. +they also. + the Jews,12:4 +Gr. +after. + relying on the public vote of the city, accepted the invitation, as men desiring to live in peace and suspecting nothing, they took them out to sea and drowned not less than two hundred of them. + +When Judas heard of the cruelty done to his fellow countrymen, giving command to the men that were with him + +and calling upon God the righteous Judge, he came against the murderers of his kindred, and set the harbor on fire at night, burned the boats, and put to the sword those who had fled there. + +But when the town gates were closed, he withdrew, intending to come again to root out the whole community of the men of Joppa. + +But learning that the men of Jamnia intended to do the same thing to the Jews who lived among them, + +he attacked the Jamnites at night, and set fire to the harbor together with the fleet, so that the glare of the light was seen at Jerusalem, two hundred forty furlongs12:9 +a furlong is about 201 meters or 220 yards, so 240 furlongs is about 48 km. or 30 miles + distant. + +

+

Now when they had drawn off nine furlongs12:10 +a furlong is about 201 meters or 220 yards, so 9 furlongs is about 1.8 km. or 1 1/8 miles + from there, as they marched against Timotheus, an army of Arabians attacked him, no fewer than five thousand infantry and five hundred cavalry. + +And when a hard battle had been fought, and Judas and his company, by the help of God, had good success, the nomads being overcome implored Judas to grant them friendship, promising to give him livestock, and to help +12:11 +Gr. +them.his people in all other ways. + +So Judas, thinking that they would indeed be profitable in many things, agreed to live in peace with them; and receiving pledges of friendship they departed to their tents. + +

+

He also attacked a certain city, strong and fenced with earthworks and walls, and inhabited by a mixed multitude of various nations. It was named Caspin. + +Those who were within, trusting in the strength of the walls and their store of provisions, behaved themselves rudely toward Judas and those who were with him, railing, and furthermore blaspheming and speaking impious words. + +But Judas and his company, calling upon the great Sovereign of the world, who without rams and cunning engines of war hurled down Jericho in the times of Joshua, rushed wildly against the wall. + +Having taken the city by the will of God, they made unspeakable slaughter, so much that the adjoining lake, which was two furlongs12:16 +a furlong is about 201 meters or 220 yards, so 2 furlongs is about 402 meters or 1/4 mile + broad, appeared to be filled with the deluge of blood. + +

+

When they had gone seven hundred fifty furlongs12:17 +a furlong is about 201 meters or 220 yards, so 750 furlongs is about 151 km. or 94 miles + from there, they made their way to Charax, to the Jews that are called +12:17 +That is, +men of Tob: +see Judges 11:3, 2 Samuel 10:6, and compare 1 Maccabees 5:13. +Tubieni. + +They didn’t find Timotheus in that district, for he had by then departed from the district without accomplishing anything, but had left behind a very strong garrison in one place. + +But Dositheus and Sosipater, who were captains under Maccabaeus, went out and destroyed those who had been left by Timotheus in the stronghold, more than ten thousand men. + +Maccabaeus, arranging his own army in divisions, set +12:20 +Gr. +them. +these two over the bands, and marched in haste against Timotheus, who had with him one hundred twenty thousand infantry and two thousand five hundred cavalry. + +When Timotheus heard of the approach of Judas, he at once sent away the women and the children with the baggage into the fortress called +12:21 +Compare +Carnain,1 Maccabees 5:26, 43, 44. +Carnion; for the place was hard to besiege and difficult to access by reason of the narrowness of the approaches on all sides. + +When the band of Judas, who led the first division, appeared in sight, and when terror and fear came upon the enemy, because the manifestation of him who sees all things came upon them, they fled in every direction, carried this way and that, so that they were often injured by their own men, and pierced with the points of their own swords. + +Judas continued the pursuit more vigorously, putting the wicked wretches to the sword, and he destroyed as many as thirty thousand men. + +

+

Timotheus himself, falling in with the company of Dositheus and Sosipater, implored them with much crafty guile to let him go with his life, because he had in his power the parents of many of them and the kindred of some. +12:24 +Gr. +and the result will be that these be disregarded. +The Greek text here is perhaps corrupt. +“Otherwise, he said, little regard will +12:24 +Or, +have been shown +be shown to these.” + +So when he had with many words confirmed the agreement to restore them without harm, they let him go that they might save their kindred. + +

+

Then Judas, marching against +12:26 +Compare +Carnain, +1 Maccabees 5:26, 43, 44. +Carnion and the temple of Atergatis, killed twenty-five thousand people. + +After he had put these to flight and destroyed them, he marched against Ephron also, a strong city, +12:27 +The Greek text here is perhaps corrupt. +wherein were multitudes of people of all nations. Stalwart young men placed +12:27 +Gr. +in front of. +on the walls made a vigorous defense. There were great stores of war engines and darts there. + +But calling upon the Sovereign who with might shatters the +12:28 +Some authorities read +weight. +strength of +12:28 +Or, +his enemies +the enemy, they took the city into their hands, and killed as many as twenty-five thousand of those who were in it. + +

+

Setting out from there, they marched in haste against Scythopolis, which is six hundred furlongs12:29 +a furlong is about 201 meters or 220 yards, so 600 furlongs is about 121 km. or 75 miles + away from Jerusalem. + +But when the Jews who were settled there testified of the good will that the Scythopolitans had shown toward them, and of their kind treatment of them in the times of their misfortune, + +they gave thanks, and further exhorted them to remain well disposed toward the race for the future. Then they went up to Jerusalem, the feast of weeks being close at hand. + +

+

But after the feast called Pentecost, they marched in haste against Gorgias the governor of Idumaea. + +He came out with three thousand infantry and four hundred cavalry. + +When they had set themselves in array, it came to pass that a few of the Jews fell. + +A certain Dositheus, one +12:35 +The Greek text is uncertain. +of Bacenor’s company, who was on horseback and was a strong man, pressed hard on Gorgias, and taking hold of his cloke dragged him along by main force. While he planned to take the accursed man alive, one of the Thracian cavalry bore down on him and disabled his shoulder, and so Gorgias escaped to +12:35 +Compare 1 Maccabees 5:65. +Marisa. + +

+

When those who were with Esdris had been fighting long and were weary, Judas called upon the Lord to show himself, fighting on their side and leading in the battle. + +Then in the language of his ancestors he raised the battle cry joined with hymns. Then he rushed against Gorgias’ troops when they were not expecting it, and put them to flight. + +

+

Judas gathered his army and came to the city of +12:38 +Gr. +Odollam. +Adullam. As the seventh day was coming on, they purified themselves according to the custom, and kept the Sabbath there. + +

+

On the following day, +12:39 +The Greek text here is uncertain.when it had become necessary, Judas and his company came to take up the bodies of those who had fallen, +12:39 +Or, +and to bring them back to be with their kinsmen in the sepulchresand in company with their kinsmen to bring them back to the sepulchres of their ancestors. + +But under the garments of each one of the dead they found +12:40 +Perhaps these were consecrated images of the idols. +consecrated tokens of the idols of Jamnia, which the law forbids the Jews to have anything to do with. It became clear to all that it was for this cause that they had fallen. + +All therefore, blessing the ways of the Lord, the righteous Judge, who makes manifest the things that are hidden, + +turned themselves to supplication, praying that the sin committed might be wholly blotted out. The noble Judas exhorted the multitude to keep themselves from sin, for they had seen with their own eyes what happened because of the sin of those who had fallen. + +When he had made a collection man by man to the sum of two thousand drachmas of silver, he sent to Jerusalem to offer a sacrifice for sin, doing very well and honorably in this, in that he took thought for the resurrection. + +For if he wasn’t expecting that those who had fallen would rise again, it would be superfluous and idle to pray for the dead. + +But if he was looking forward to an honorable memorial of gratitude laid up for those who +12:45 +Gr. +fall asleep. +die +12:45 +Or, +on the side of godliness +in godliness, then the thought was holy and godly. Therefore he made the atoning sacrifice for those who had died, that they might be released from their sin. + +

+ + +

In the one hundred forty-ninth year, news was brought to Judas and his company that Antiochus Eupator was coming with multitudes against Judea, + +and with him Lysias his guardian and chancellor, each having a Greek force of one hundred ten thousand infantry, five thousand three hundred cavalry, twenty-two elephants, and three hundred chariots armed with scythes. + +

+

And Menelaus also joined himself with them, and with great hypocrisy encouraged Antiochus, not for the saving of his country, but because he thought that he would be set over the government. + +But the King of kings stirred up the anger of Antiochus against the wicked wretch. When Lysias informed him that this man was the cause of all the evils, the king commanded to bring him to Beroea, and to put him to death in the way customary in that place. + +Now there is in that place a tower that is fifty cubits high, full of ashes, and it had all around it a +13:5 +Gr. +contrivance or machine. +circular rim sloping steeply on every side into the ashes. + +Here one who is guilty of sacrilege or notorious for other crimes is pushed down to destruction. + +By such a fate it happened that the breaker of the law, Menelaus, died, without obtaining so much as a grave in the earth, and that justly; + +for inasmuch as he had perpetrated many sins +13:8 +Gr. +about. +against the altar, whose fire and whose ashes were holy, he received his death in ashes. + +

+

Now the king,13:9 +Some authorities read +indignant. infuriated in spirit, was coming with intent to inflict on the Jews the very worst of the sufferings that had been done in his father’s time. + +But when Judas heard of these things, he commanded the multitude to call upon the Lord day and night, if ever at any other time, so now to help those who were at the point of being deprived of the law, their country, and the holy temple, + +and not to allow the people who had just begun to be revived to fall into the hands of those profane heathen. + +So when they had all done the same thing together, +13:12 +Gr. +and implored. +begging the merciful Lord with weeping and fastings and prostration for three days without ceasing, Judas exhorted them and commanded they should join him. + +

+

Having consulted privately with the elders, he resolved that before the king’s army entered into Judea and made themselves masters of the city, they should go out and decide the matter by the help of +13:13 +Some authorities read +the Lord. +God. + +And committing the decision to the +13:14 +Some authorities read +Creator. +Lord of the world, and exhorting those who were with him to contend nobly even to death for laws, temple, city, country, and way of life, he pitched his camp by Modin. + +He gave out to his men the watchword, “VICTORY IS GOD’S”, with a chosen force of the bravest young men he attacked the king’s pavilion by night, and killed of his army as many as two thousand men, and +13:15 +The Greek text here is probably corrupt. +brought down the leading elephant with him who was in the +13:15 +Gr. +house. +tower on him. + +At last they filled the +13:16 +Gr. +camp. +army with terror and alarm, and departed with good success. + +This had been accomplished when the day was just dawning, because of the Lord’s protection that gave +13:17 +Gr. +him. +Judas help. + +

+

But the king, having had a taste of the exceeding boldness of the Jews, made strategic attacks on their positions, + +and on a strong fortress of the Jews at Bethsura. He advanced, was turned back, failed, and was defeated. + +Judas sent the things that were necessary to those who were within. + +But Rhodocus, from the Jewish ranks, made secrets known to the enemy. He was sought out, arrested, and shut up in prison. + +The king negotiated with them in Bethsura the second time, gave his hand, took theirs, departed, attacked the forces of Judas, was put to the worse, + +heard that Philip who had been left as chancellor in Antioch had become reckless, was confounded, made to the Jews an overture of peace, submitted himself and swore to acknowledge all their rights, came to terms with them and offered sacrifice, honored the sanctuary and the place, + +showed kindness and graciously received Maccabaeus, left Hegemonides governor from Ptolemais even to the +13:24 +The form of this word is uncertain. Compare +Girzites +(or +Gizrites), +1 Samuel 27:8. One manuscript reads +Gerarenes. +Gerrenians, + +and came to Ptolemais. The men of Ptolemais were displeased at the treaty, for they had exceedingly great indignation against the Jews. They desired to annul the articles of the agreement. + +Lysias +13:26 +Gr. +came forward to the tribune +or +judgment seat. +came forward to speak, made the best defense that was possible, persuaded, pacified, gained their good will, and departed to Antioch. This was the issue of the attack and departure of the king. + +

+ + +

Three years later, news was brought to Judas and his company that Demetrius the son of Seleucus, having sailed into the harbor of Tripolis with a mighty army and a fleet, + +had taken possession of the country, having made away with Antiochus and his guardian Lysias. + +

+

But one Alcimus, who had formerly been high priest, and had willfully polluted himself in the times when there was no mingling with the Gentiles, considering that there was no deliverance for him in any way, nor any more access to the holy altar, + +came to King Demetrius in about the one hundred fifty-first year, presenting to him a crown of gold and a palm, and beside these some of the festal olive boughs of the temple. For that day, he held his peace; + +but having gotten opportunity to further his own madness, being called by Demetrius into a meeting of his council, and asked how the Jews stood affected and what they intended, he answered: + +

+

“Those of the Jews called +14:6 +That is, +Chasidim. +Hasidaeans, whose leader is Judas Maccabaeus, keep up war and are seditious, not allowing the kingdom to find tranquillity. + +Therefore, having laid aside my ancestral glory—I mean the high priesthood—I have now come +14:7 +Some authorities read +a second time. +here, + +first for the genuine care I have for the things that concern the king, and secondly because I have regard also to my own fellow citizens. For through the unadvised dealing of those of whom I spoke before, our whole race is in no small misfortune. + +O king, having informed yourself of these things, take thought both for our country and for our race, which is surrounded by enemies, according to the gracious kindness with which you receive all. + +For as long as Judas remains alive, it is impossible for the government to find peace. + +When he had spoken such words as these, at once +14:11 +Or, +the +king’s +friends likewise +the rest of the king’s +14:11 +See 2 Maccabees 8:9. +friends, having ill will against Judas, inflamed Demetrius yet more. + +He immediately appointed Nicanor, who had been master of the elephants, and made him governor of Judea. He sent him out, + +giving him written instructions to kill Judas himself and to scatter those who were with him, and to set up Alcimus as high priest of the +14:13 +Gr. +greatest. +great temple. + +Those in Judea who +14:14 +See 2 Maccabees 5:27. +had driven Judas into exile thronged to Nicanor in flocks, supposing that the misfortunes and calamities of the Jews would be successes to themselves. + +

+

But when the Jews heard of Nicanor’s advance and the assault of the heathen, they sprinkled dirt on their heads and made solemn prayers to him who had established his own people for evermore, and who always, making manifest his presence, upholds those who are his own heritage. + +14:16 +The Greek text of this verse and the next is corrupt. +When the leader had given orders, he immediately set out from there and joined battle with them at a village called Lessau. + +But Simon, the brother of Judas, had encountered Nicanor, yet not till late, having been delayed by reason of the sudden consternation caused by his adversaries. + +

+

Nevertheless Nicanor, hearing of the valor of those who were with Judas, and their courage in fighting for their country, shrank from bringing the matter to the decision of the sword. + +Therefore he sent Posidonius, Theodotus, and Mattathias to give and receive pledges of friendship. + +So when these proposals had been long considered, and the leader had made the +14:20 +Or, +people +Gr. +multitudes. +troops acquainted with them, and it appeared that they were all of like mind, they consented to the covenants. + +They appointed a day on which to meet together by themselves. A chariot came forward from each army. They set up seats of honor. + +Judas stationed armed men ready in convenient places, lest perhaps there should suddenly be treachery on the part of the enemy. They held a conference as was appropriate. + +Nicanor waited in Jerusalem, and did nothing to cause disturbance, but dismissed the flocks of people that had gathered together. + +He kept Judas always in his presence. He had gained a hearty affection for the man. + +He urged him to marry and have children. He married, settled quietly, and took part in common life. + +

+

But Alcimus, perceiving the good will that was between them, +14:26 +Or, +and the covenants that had been made, took occasion and cameand having taken possession of the covenants that had been made, came to Demetrius and told him that Nicanor was disloyal to the government, for he had appointed that conspirator against his kingdom, Judas, to be his successor. + +The king, falling into a rage, and being exasperated by the false accusations of that most wicked man, wrote to Nicanor, signifying that he was displeased at the covenants, and commanding him to send Maccabaeus prisoner to Antioch in all haste. + +When this message came to Nicanor, he was confounded, and was very troubled at the thought of annulling the articles that had been agreed upon, the man having done no wrong; + +but because there was no opposing the king, he watched his time to execute this purpose by strategy. + +But Maccabaeus, when he perceived that Nicanor was behaving more harshly in his dealings with him, and that he had become ruler in his customary bearing, understanding that this harshness came not of good, gathered together not a few of his men, and concealed himself from Nicanor. + +

+

But the other,14:31 +Or, +though he was conscious that he had been nobly defeated by + when he became aware that he had been bravely defeated by the strategy of Judas,14:31 +Gr. +the man + came to the great14:31 +Gr. +greatest. + and holy temple, while the priests were offering the usual sacrifices, and commanded them to hand over the man. + +When they declared with oaths that they had no knowledge where the man was whom he sought, + +he stretched out his right hand toward the sanctuary, and swore this oath: “If you won’t deliver up to me Judas as a prisoner, I will level this +14:33 +Or, +chapel +Gr. +enclosure. +temple of God even with the ground, break down the altar, and I will erect here a temple to Dionysus for all to see. + +

+

And having said this, he departed. But the priests, stretching forth their hands toward heaven, called upon him who always fights for our nation, in these words: + +“You, O Lord of the universe, who in yourself have need of nothing, were well pleased that a sanctuary of your habitation14:35 +Gr. +tabernacling. should be set among us. + +So now, O holy Lord of all holiness, keep undefiled forever this house that has been recently cleansed.” + +

+

Now information was given to Nicanor against one Razis, an elder of Jerusalem, who was a lover of his countrymen and a man of very good report, and one called Father of the Jews for his good will. + +For in the former times when there was no mingling with the Gentiles, he had been accused of following the Jews’ religion, and had risked body and life with all earnestness for the religion of the Jews. + +Nicanor, wishing to make evident the ill will that he bore against the Jews, sent above five hundred soldiers to seize him; + +for he thought by seizing him to inflict an injury on them. + +But when the +14:41 +Or, +people +Gr. +multitudes. +troops were at the point of taking the tower, and were forcing the door of the court, and asked for fire to burn the doors, he, being surrounded on every side, fell upon his sword, + +choosing rather to die nobly than to fall into the hands of the wicked wretches, and suffer outrage unworthy of his own nobleness. + +But since he missed his stroke through the excitement of the struggle, and the crowds were now rushing within the door, he ran bravely up to the wall and cast himself down bravely among the crowds. + +But as they quickly gave back, a space was made, and he fell on the middle of +14:44 +Or, +the void place +his side. + +Still having breath within him, and being inflamed with anger, he rose up, and though his blood gushed out in streams and his wounds were grievous, he ran through the crowds, and standing upon a steep rock, + +when as his blood was now well near spent, he drew forth his bowels through the wound, and taking them in both his hands he shook them at the crowds. Calling upon him who is Lord of life and spirit to restore him +14:46 +Some authorities read +the same. +these again, he died like this. + +

+ + +

But Nicanor, hearing that Judas and his company were in the region of Samaria, resolved to attack them with complete safety on the day of rest. + +When the Jews who were compelled to follow him said, “Don’t destroy so savagely and barbarously, but give due glory to the day which he who sees all things has honored and hallowed above other days.” + +

+

Then the thrice-accursed wretch asked if there were a Sovereign in heaven who had commanded to keep the Sabbath day. + +

+

When they declared, “There is the Lord, living himself as Sovereign in heaven, who told us observe the seventh day.” + +

+

He replied, “I also am a sovereign on the earth, who commands you to take up weapons and execute the king’s business.” Nevertheless he didn’t prevail to execute his cruel plan. + +

+

And Nicanor, +15:6 +Gr. +carrying his neck high.in his utter boastfulness and arrogance, had determined to set up a monument of complete victory over Judas and all those who were with him. + +But Maccabaeus still trusted unceasingly, with all hope that he should obtain help from the Lord. + +He exhorted his company not to be fearful at the assault of the heathen, but keeping in mind the help which in former times they had often received from heaven, so now also to look for the victory which would come to them from the Almighty, + +and encouraging them out of the law and the prophets, and reminding them of the conflicts that they had won, he made them more eager. + +And when he had aroused their courage, he gave them orders, at the same time pointing out the faithlessness of the heathen and their breach of their oaths. + +Arming each one of them, not so much with the sure defense of shields and spears as with the encouragement of good words, and moreover relating to them a dream worthy to be believed, he made them all exceedingly glad. + +

+

The vision of that dream was this: Onias, he who had been high priest, a noble and good man, modest in bearing, yet gentle in manner and well-spoken, and trained from a child in all points of virtue, with outstretched hands invoking blessings on the whole body of the Jews. + +Then he saw a man appear, of venerable age and exceeding glory, and the dignity around him was wonderful and most majestic. + +Onias answered and said, “This is the lover of the kindred, he who prays much for the people and the holy city: Jeremiah the prophet of God. + +Jeremiah stretched out his right hand and delivered to Judas a gold sword, and in giving it addressed him thus: + +“Take this holy sword, a gift from God, with which you shall strike down the adversaries.” + +

+

Being encouraged by the words of Judas, which were noble and effective, and able to incite to virtue and to stir the souls of the young to manly courage, they determined not to carry on a campaign, but nobly to bear down upon the enemy, and fighting hand to hand with all courage bring the matter to a conclusion, because the city, the sanctuary, and the temple were in danger. + +For their fear for wives and children, and furthermore for family and relatives, was less important to them; but greatest and first was their fear for the consecrated sanctuary. + +Also those who were shut up in the city were in no light distress, being troubled because of the encounter in the open country. + +

+

When all were now waiting for the decision of the issue, and the enemy had already joined battle, and the army had been set in array, and the elephants15:20 +Gr. +animals. + brought back to a convenient post,15:20 +Or, +stationed for convenient action + and the cavalry deployed on the flanks, + +Maccabaeus, perceiving the presence of the +15:21 +Gr. +multitudes. +troops, and the various weapons with which they were equipped, and the savageness of the +15:21 +Gr. +animals. +elephants, holding up his hands to heaven called upon the Lord who works wonders, knowing that success comes not by weapons, but that, according to how the Lord judges, he gains the victory for those who are worthy. + +And calling upon God, he said this: “You, O Sovereign Lord, sent your angel in the time of King Hezekiah of Judea, and he killed of the +15:22 +Gr. +camp. +army of Sennacherib as many as one hundred eighty-five thousand. + +So now also, O Sovereign of the heavens, send a good angel before us to bring terror and trembling. + +Through the greatness of your arm let them be stricken with dismay who with blasphemy have come here against your holy people.” As he finished these words, + +Nicanor and his company advanced with trumpets and victory songs; + +but Judas and his company joined battle with the enemy with invocation and prayers. + +Fighting with their hands and praying to God with their hearts, they killed no less than thirty-five thousand men, being made exceedingly glad by the manifestation of God. + +

+

When the engagement was over and they were returning again with joy, they recognized Nicanor lying dead in full armor. + +Then there was shouting and noise, and they blessed the Sovereign Lord in the language of their ancestors. + +He who in all things was in body and soul the foremost champion of his fellow citizens, he who kept through life the good will of his youth toward his countrymen, ordered that Nicanor’s head be cut off with his hand and arm, and that they be brought to Jerusalem. + +When he had arrived there and had called his countrymen together and set the priests before the altar, he sent for those who were in the citadel. + +Showing the head of the vile Nicanor and the hand of that profane man, which with proud brags he had stretched out against the holy house of the Almighty, + +and cutting out the tongue of the impious Nicanor, he said that he would give it in pieces to the birds, and hang up these rewards of his folly near the sanctuary. + +They all, looking up to heaven, blessed the Lord who had manifested himself, saying, “Blessed is he who has preserved his own place undefiled!” + +He hung Nicanor’s head and shoulder from the citadel, a clear sign evident to all of the help of the Lord. + +They all ordained with a common decree to in no way let this day pass undistinguished, but to mark with honor the thirteenth day of the twelfth month (it is called Adar in the Syrian language), the day before the day of Mordecai. + +

+ +

This then having been the account of the attempt of Nicanor, and the city having from those times been held by the Hebrews, I also will here make an end of my book. + +If I have written well and to the point in my story, this is what I myself desired; but if its poorly done and mediocre, this is the best I could do. + +For as it is +15:39 +Or, +hurtful +distasteful to drink wine alone and likewise to drink water alone, +15:39 +Gr. +but even as. +while the mingling of wine with water at once gives full pleasantness to the flavor; so also the fashioning of the language delights the ears of those who read the story. +

+

Here is the end. + +

+
+- 1 Esdras +1 Esdras +The First Book of Esdras +1 Esdras +1Es +

The First Book of Esdras +

+

The First Book of Esdras is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. It is not recognized by the Roman Catholic Church, but 1 Esdras is placed as an appendix to the Latin Vulgate Bible. +

+ + +

1:1 +2 Kings 23:21; 2 Chronicles 35:1Josias held the Passover in Jerusalem to his Lord, and offered the Passover the fourteenth day of the first month, + +having set the priests according to their daily courses, being arrayed in their vestments, in the Lord’s temple. + +He spoke to the Levites, +1:3 +Numbers 3:9the temple servants of Israel, that they should make themselves holy to the Lord, to set the holy ark of the Lord in the house that King Solomon the son of David had built. + +He said, “You no longer need to carry it on your shoulders. Now therefore serve the Lord your God, and minister to his people Israel, and prepare yourselves by your fathers’ houses and kindred, + +according to the writing of King David of Israel, and according to the magnificence of Solomon his son. Stand in the holy place according to the divisions of your Levite families who minister in the presence of your kindred the descendants of Israel. + +Offer the Passover in order, prepare the sacrifices for your kindred, and keep the Passover according to the Lord’s commandment, which was given to Moses. + +

+

To the people which were present, Josias gave thirty thousand lambs and kids, and three thousand calves. These things were given from the king’s possessions, as he promised, to the people and to the priests and Levites. + +Helkias, Zacharias, and +1:8 +Jehiel, +2 Chronicles 35:8.Esyelus, the rulers of the temple, gave to the priests for the Passover two thousand six hundred sheep, and three hundred calves. + +Jeconias, Samaias, Nathanael his brother, Sabias, Ochielus, and Joram, captains over thousands, gave to the Levites for the Passover five thousand sheep and seven hundred calves. + +

+

When these things were done, the priests and Levites, having the unleavened bread, stood in proper order according to the kindred, + +and according to the several divisions by fathers’ houses, before the people, to offer to the Lord as it is written in the book of Moses. They did this in the morning. + +They roasted the Passover lamb with fire, as required. They boiled the sacrifices in the brazen vessels and caldrons with a pleasing smell, + +and set them before all the people. Afterward they prepared for themselves and for their kindred the priests, the sons of Aaron. + +For the priests offered the fat until night. The Levites prepared for themselves and for their kindred the priests, the sons of Aaron. + +The holy singers also, the sons of Asaph, were in their order, according to the appointment of David: Asaph, Zacharias, and Eddinus, who represented the king. + +Moreover the gatekeepers were at every gate. No one needed to depart from his daily duties, for their kindred the Levites prepared for them. + +

+

So the things that belonged to the Lord’s sacrifices were accomplished in that day, in holding the Passover, + +and offering sacrifices on the altar of the Lord, according to the commandment of King Josias. + +So the children of Israel which were present at that time held the Passover and the feast of unleavened bread seven days. + +Such a Passover had not been held in Israel since the time of the prophet Samuel. + +Indeed, none of the kings of Israel held such a Passover as Josias with the priests, the Levites, and the Jews, held with all Israel that were present in their dwelling place at Jerusalem. + +This Passover was held in the eighteenth year of the reign of Josias. + +The works of Josias were upright before his Lord with a heart full of godliness. + +Moreover the things that came to pass in his days have been written in times past, concerning those who sinned and did wickedly against the Lord more than any other people or kingdom, and how they grieved him +1:24 +Or, +sensibly +Judges 16:17.exceedingly, so that the Lord’s words were confirmed against Israel. + +

+

1:25 +2 Chronicles 35:20Now after all these acts of Josias, it came to pass that Pharaoh the king of Egypt came to make war at Carchemish on the Euphrates; and Josias went out against him. + +But the king of Egypt sent to him, saying, “What do I have to do with you, O king of Judea? + +I wasn’t sent out from the Lord God against you, for my war is against the Euphrates. Now the Lord is with me, yes, the Lord is with me hastening me forward. Depart from me, and don’t be against the Lord.” + +

+

However, Josias didn’t turn back to his chariot, but tried to fight with him, not regarding the words of the prophet Jeremy from the Lord’s mouth, + +but joined battle with him in the plain of Megiddo, and the commanders came down against King Josias. + +Then the king said to his servants, “Carry me away out of the battle, for I am very weak!” Immediately his servants carried him away out of the army. + +Then he got into his second chariot. After he was brought back to Jerusalem he died, and was buried in the tomb of his ancestors. + +All Judea mourned for Josias. Jeremy the prophet lamented for Josias, and the chief men with the women made lamentation for him to this day. This was given out for an ordinance to be done continually in all the nation of Israel. + +These things are written in the book of the histories of the kings of Judea, and every one of the acts that Josias did, and his glory, and his understanding in the law of the Lord, and the things that he had done before, and the things now told, are reported in the book of the kings of Israel and Judah. + +

+

1:34 +2 Kings 23:30; 2 Chronicles 36:1The people took +1:34 +Another reading is, +Jeconias.Joachaz the son of Josias, and made him king instead of Josias his father, when he was twenty-three years old. + +He reigned in Judah and Jerusalem for three months. Then the king of Egypt deposed him from reigning in Jerusalem. + +He set a tax upon the people of one hundred talents of silver and one talent of gold. + +The king of Egypt also made King Joakim his brother king of Judea and Jerusalem. + +And Joakim imprisoned the nobles and apprehended his brother Zarakes, and brought him up out of Egypt. + +

+

1:39 +2 Chronicles 36:4-5Joakim was twenty-five years old when he began to reign in Judea and Jerusalem. He did that which was evil in the sight of the Lord. + +King Nabuchodonosor of Babylon came up against him, bound him with a chain of brass, and carried him to Babylon. + +Nabuchodonosor also took some of the Lord’s holy vessels, carried them away, and stored them in his own temple at Babylon. + +But those things that are reported of him, and of his uncleanness and impiety, are written in the chronicles of the kings. + +Then Joakim his son reigned in his place. When he was made king, he was eighteen years old. + +He reigned three months and ten days in Jerusalem. He did that which was evil before the Lord. + +

+

So after a year Nabuchodonosor sent and caused him to be brought to Babylon with the holy vessels of the Lord, + +and made Sedekias king of Judea and Jerusalem when he was twenty-one years old. He reigned eleven years. + +He also did that which was evil in the sight of the Lord, and didn’t heed the words that were spoken by Jeremy the prophet from the Lord’s mouth. + +After King Nabuchodonosor had made him to swear by the name of the Lord, he broke his oath and rebelled. Hardening his neck and his heart, he transgressed the laws of the Lord, the God of Israel. + +Moreover the governors of the people and of the priests did many things wickedly, exceeding all the defilements of all nations, and defiled the temple of the Lord, which was sanctified in Jerusalem. + +The God of their ancestors sent by his messenger to call them back, because he had compassion on them and on his dwelling place. + +But they mocked his messengers. In the day when the Lord spoke, they scoffed at his prophets + +until he, being angry with his people for their great ungodliness, commanded to bring up the kings of the Chaldeans against them. + +They killed their young men with the sword around their holy temple, and spared neither young man or young woman, old man or child; but he delivered all of them into their hands. + +They took all the holy vessels of the Lord, both great and small, with the treasure chests of the Lord’s ark and the king’s treasures, and carried them away to Babylon. + +They burned the Lord’s house, broke down Jerusalem’s walls, and burned its towers with fire. + +As for her glorious things, they didn’t stop until they had brought them all to nothing. He carried the people who weren’t slain with the sword to Babylon. + +They were servants to him and to his children until the Persians reigned, to fulfill the word of the Lord by the mouth of Jeremy: + +“Until the land has enjoyed its Sabbaths, the whole time of her desolation shall she keep Sabbath, to fulfill seventy years. + +

+ + +

In the +2:1 +2 Chronicles 36:22,23; Ezra 1:1first year of King Cyrus of the Persians, that the word of the Lord by the mouth of Jeremy might be accomplished, + +the Lord stirred up the spirit of King Cyrus of the Persians, and he made a proclamation throughout all his kingdom, and also by writing, + +saying, “Cyrus king of the Persians says: The Lord of Israel, the Most High Lord, has made me king of the whole world, + +and commanded me to build him a house at Jerusalem that is in Judea. + +If therefore there are any of you that are of his people, let the Lord, even his Lord, be with him, and let him go up to Jerusalem that is in Judea, and build the house of the Lord of Israel. He is the Lord who dwells in Jerusalem. + +Therefore, of those who dwell in various places, let those who are in his own place each help with gold, with silver, + +with gifts, with horses, and cattle, beside the other things which have been added by vow for the temple of the Lord which is in Jerusalem. + +

+

Then the chief of the families of Judah and of the tribe of Benjamin stood up, with the priests, the Levites, and all whose spirit the Lord had stirred to go up, to build the house for the Lord which is in Jerusalem. + +Those who lived around them helped them in all things with silver and gold, with horses and cattle, and with very many gifts that were vowed by a great number whose minds were so moved. + +

+

King Cyrus also brought out the holy vessels of the Lord, which Nabuchodonosor had carried away from Jerusalem and had stored in his temple of idols. + +Now when King Cyrus of the Persians had brought them out, he delivered them to Mithradates his treasurer, + +and by him they were delivered to +2:12 +Another reading is, +Simanassar.Sanabassar the governor of Judea. + +This was the number of them: one thousand gold cups, one thousand silver cups, twenty-nine silver censers, thirty gold bowls, two thousand four hundred ten silver bowls, and one thousand other vessels. + +So all the vessels of gold and of silver were brought up, even five thousand four hundred seventy-nine, + +and were carried back by Sanabassar, together with the returning exiles, from Babylon to Jerusalem. + +

+

2:16 +Ezra 4:7In the time of King Artaxerxes of the Persians, Belemus, Mithradates, Tabellius, +2:16 +Rehum,Rathumus, Beeltethmus, and +2:16 +Shimshai.Samellius the scribe, with their other associates, dwelling in Samaria and other places, wrote to him against those who lived in Judea and Jerusalem the following letter: + +

+

“To King Artaxerxes our Lord, from your servants, Rathumus the recorder, Samellius the scribe, and the rest of their council, and the judges who are in Coelesyria and Phoenicia: + +Let it now be known to our lord the king, that the Jews that have come up from you to us, having come to Jerusalem, are building that rebellious and wicked city, and are repairing its marketplaces and walls, and are laying the foundation of a temple. + +Now if this city is built and its walls are finished, they will not only refuse to give tribute, but will even stand up against kings. + +Since the things pertaining to the temple are now in hand, we think it appropriate not to neglect such a matter, + +but to speak to our lord the king, to the intent that, if it is your pleasure, search may be made in the books of your ancestors. + +You will find in the chronicles what is written concerning these things, and will understand that that city was rebellious, troubling both kings and cities, + +and that the Jews were rebellious, and kept starting wars there in the past. For this cause, this city was laid waste. + +Therefore now we do declare to you, O lord the king, that if this city is built again, and its walls set up again, you will from then on have no passage into Coelesyria and Phoenicia.” + +

+

Then the king wrote back again to Rathumus the recorder, Beeltethmus, Samellius the scribe, and to the rest of their associates who lived in Samaria, Syria, and Phoenicia, as follows: + +

+

“I have read the letter which you have sent to me. Therefore I commanded to make search, and it has been found that that city of old time has fought against kings, + +and the men were given to rebellion and war in it, and that mighty and fierce kings were in Jerusalem, who reigned and exacted tribute in Coelesyria and Phoenicia. + +Now therefore I have commanded to prevent those men from building the city, and heed to be taken that there be nothing done contrary to this order, + +and that those wicked doings proceed no further to the annoyance of kings.” + +Then King Artaxerxes, his letters being read, Rathumus, and Samellius the scribe, and the rest of their associates, went in haste to Jerusalem with cavalry and a multitude of people in battle array, and began to hinder the builders. So the building of the temple in Jerusalem ceased until the second year of the reign of King Darius of the Persians. + +

+ + +

Now King Darius made a great feast for all his subjects, for all who were born in his house, for all the princes of Media and of Persia, + +and for all the local governors and captains and governors who were under him, from India to Ethiopia, in the one hundred twenty seven provinces. + +They ate and drank, and when they were satisfied went home. Then King Darius went into his bedchamber and slept, but awakened out of his sleep. + +

+

Then the three young men of the bodyguard, who guarded the king, spoke one to another: + +“Let every one of us state what one thing is strongest. King Darius will give him whose statement seems wiser than the others great gifts and great honors in token of victory. + +He shall be clothed in purple, drink from gold cups, sleep on a gold bed, and have a chariot with bridles of gold, a fine linen turban, and a chain around his neck. + +He shall sit next to Darius because of his wisdom, and shall be called cousin of Darius.” + +

+

Then they each wrote his sentence, sealed them, and laid them under King Darius’ pillow, + +and said, “When the king wakes up, someone will give him the writing. Whoever the king and the three princes of Persia judge that his sentence is the wisest, to him shall the victory be given, as it is written.” + +The first wrote, “Wine is the strongest.” + +The second wrote, “The king is strongest.” + +The third wrote, “Women are strongest, but above all things Truth is the victor.” + +

+

Now when the king woke up, they took the writing and gave it to him, so he read it. + +Sending out, he called all the princes of Persia and of Media, the local governors, the captains, the governors, and the chief officers + +and sat himself down in the royal seat of judgment; and the writing was read before them. + +He said, “Call the young men, and they shall explain their own sentences. So they were called and came in. + +They said to them, “Explain what you have written.” +

+

Then the first, who had spoken of the strength of wine, began + +and said this: “O sirs, how exceedingly strong wine is! It causes all men who drink it to go astray. + +It makes the mind of the king and of the fatherless child to be the same, likewise of the bondman and of the freeman, of the poor man and of the rich. + +It also turns every thought into cheer and mirth, so that a man remembers neither sorrow nor debt. + +It makes every heart rich, so that a man remembers neither king nor local governor. It makes people say things in large amounts. + +When they are in their cups, they forget their love both to friends and kindred, and before long draw their swords. + +But when they awake from their wine, they don’t remember what they have done. + +O sirs, isn’t wine the strongest, seeing that it forces people to do this?” And when he had said this, he stopped speaking. + +

+ + +

Then the second, who had spoken of the strength of the king, began to say, + +“O sirs, don’t men excel in strength who rule over the sea and land, and all things in them? + +But yet the king is stronger. He is their lord and has dominion over them. In whatever he commands them, they obey him. + +If he tells them to make war against each other, they do it. If he sends them out against the enemies, they go, and conquer mountains, walls, and towers. + +They kill and are killed, and don’t disobey the king’s commandment. If they win the victory, they bring everything to the king—all the plunder and everything else. + +Likewise for those who are not soldiers, and don’t have anything to do with wars, but farm, when they have reaped again that which they had sown, they bring some to the king and compel one another to pay tribute to the king. + +He is just one man! If he commands people to kill, they kill. If he commands them to spare, they spare. + +If he commands them to strike, they strike. If he commands them to make desolate, they make desolate. If he commands to build, they build. + +If he commands them to cut down, they cut down. If he commands them to plant, they plant. + +So all his people and his armies obey him. Furthermore, he lies down, he eats and drinks, and takes his rest; + +and these keep watch around him. None of them may depart and do his own business. They don’t disobey him in anything. + +O sirs, how could the king not be the strongest, seeing that he is obeyed like this?” Then he stopped talking. + +

+

Then the third, who had spoken of women, and of truth, (this was Zorobabel) began to speak: + +“O sirs, isn’t the king great, and men are many, and isn’t wine strong? Who is it then who rules them, or has the lordship over them? Aren’t they women? + +Women have given birth to the king and all the people who rule over sea and land. + +They came from women. Women nourished up those who planted the vineyards, from where the wine comes. + +Women also make garments for men. These bring glory to men. Without women, men can’t exist. + +Yes, and if men have gathered together gold and silver and any other beautiful thing, and see a woman who is lovely in appearance and beauty, + +they let all those things go and gape at her, and with open mouth stare at her. They all have more desire for her than for gold, or silver, or any other beautiful thing. + +A man leaves his own father who brought him up, leaves his own country, and joins with his wife. + +With his wife he ends his days, with no thought for his father, mother, or country. + +By this also you must know that women have dominion over you. Don’t you labor and toil, and bring it all to give to women? + +Yes, a man takes his sword and goes out to travel, to rob, to steal, and to sail on the sea and on rivers. + +He sees a lion and walks in the darkness. When he has stolen, plundered, and robbed, he brings it to the woman he loves. + +Therefore a man loves his wife better than father or mother. + +Yes, there are many who have lost their minds for women, and become slaves for their sakes. + +Many also have perished, have stumbled, and sinned, for women. + +Now don’t you believe me? Isn’t the king great in his power? Don’t all regions fear to touch him? + +Yet I saw him and Apame the king’s concubine, the daughter of the illustrious Barticus, sitting at the right hand of the king, + +and taking the crown from the king’s head, and setting it upon her own head. Yes, she struck the king with her left hand. + +At this, the king gaped and gazed at her with open mouth. If she smiles at him, he laughs. But if she takes any displeasure at him, he flatters her, that she might be reconciled to him again. + +O sirs, how can it not be that women are strong, seeing they do this?” + +

+

Then the king and the nobles looked at one another. So he began to speak concerning truth. + +“O sirs, aren’t women strong? The earth is great. The sky is high. The sun is swift in its course, for it circles around the sky, and returns on its course again in one day. + +Isn’t he who makes these things great? Therefore the truth is great, and stronger than all things. + +All the earth calls upon truth, and the sky blesses truth. All works shake and tremble, but with truth there is no unrighteous thing. + +Wine is unrighteous. The king is unrighteous. Women are unrighteous. All the children of men are unrighteous, and all their works are unrighteous. There is no truth in them. They shall also perish in their unrighteousness. + +But truth remains, and is strong forever. Truth lives and conquers forevermore. + +With truth there is no partiality toward persons or rewards, but truth does the things that are just, instead of any unrighteous or wicked things. All men approve truth’s works. + +In truth’s judgment is not any unrighteousness. Truth is the strength, the kingdom, the power, and the majesty of all ages. Blessed be the God of truth!” + +

+

With that, he stopped speaking. Then all the people shouted and said, “Great is truth, and strong above all things!” + +

+

Then the king said to him, “Ask what you wish, even more than is appointed in writing, and we will give it to you, because you are found wisest. You shall sit next to me, and shall be called my cousin.” + +

+

Then he said to the king, “Remember your vow, which you vowed to build Jerusalem, in the day when you came to your kingdom, + +and to send back all the vessels that were taken out of Jerusalem, which Cyrus set apart when he vowed to destroy Babylon, and vowed to send them back there. + +You also vowed to build the temple which the Edomites burned when Judea was made desolate by the Chaldeans. + +Now, O lord the king, this is what I request, and what I desire of you, and this is the princely generosity that may proceed from you: I ask therefore that you make good the vow, the performance of which you have vowed to the King of Heaven with your own mouth.” + +

+

Then King Darius stood up, kissed him, and wrote letters for him to all the treasurers and governors and captains and local governors, that they should safely bring on their way both him, and all those who would go up with him to build Jerusalem. + +He wrote letters also to all the governors who were in Coelesyria and Phoenicia, and to them in Libanus, that they should bring cedar wood from Libanus to Jerusalem, and that they should help him build the city. + +Moreover he wrote for all the Jews who would go out of his realm up into Judea concerning their freedom, that no officer, no governor, no local governor, nor treasurer, should forcibly enter into their doors, + +and that all the country which they occupied should be free to them without tribute, and that the Edomites should give up the villages of the Jews which they held at that time, + +and that there should be given twenty talents yearly toward the building of the temple, until the time that it was built, + +and another ten talents yearly for burnt offerings to be presented upon the altar every day, as they had a commandment to make seventeen offerings, + +and that all those who would come from Babylonia to build the city should have their freedom—they and their descendants, and all the priests that came. + +He wrote also to give them their support and the priests’ vestments in which they minister. + +For the Levites he wrote that their support should be given them until the day that the house was finished and Jerusalem built up. + +He commanded that land and wages should be given to all who guarded the city. + +He also sent away all the vessels from Babylon that Cyrus had set apart, and all that Cyrus had given in commandment, he commanded also to be done and to be sent to Jerusalem. + +

+

Now when this young man had gone out, he lifted up his face to heaven toward Jerusalem, and praised the King of heaven, + +and said, “From you comes victory. From you comes wisdom. Yours is the glory, and I am your servant. + +Blessed are you, who have given me wisdom. I give thanks to you, O Lord of our fathers. + +So he took the letters, went out, came to Babylon, and told it to all his kindred. + +They praised the God of their ancestors, because he had given them freedom and liberty + +to go up and to build Jerusalem and the temple which is called by his name. They feasted with instruments of music and gladness for seven days. + +

+ + +

After this, the chiefs of fathers’ houses were chosen to go up according to their tribes, with their wives, sons, and daughters, with their menservants and maidservants, and their livestock. + +Darius sent with them one thousand cavalry to bring them back to Jerusalem with peace, with musical instruments, drums, and flutes. + +All their kindred were making merry, and he made them go up together with them. + +

+

These are the names of the men who went up, according to their families among their tribes, after their several divisions. + +The priests, the sons of Phinees, the sons of Aaron: Jesus the son of Josedek, the son of Saraias, and Joakim the son of Zorobabel, the son of Salathiel, of the house of David, of the lineage of Phares, of the tribe of Judah, + +who spoke wise words before Darius the king of Persia in the second year of his reign, in the month Nisan, which is the first month. + +

+

5:7 +Ezra 2:1These are the of Judeans who came up from the captivity, where they lived as foreigners, whom Nabuchodonosor the king of Babylon had carried away to Babylon. + +They returned to Jerusalem and to the other parts of Judea, every man to his own city, who came with Zorobabel, with Jesus, Nehemias, +5:8 +Seralah.Zaraias, Resaias,5:8 +Or, +Enenis. Eneneus, Mardocheus, Beelsarus,5:8 +Mispar. Aspharsus,5:8 +Reclaiah Reelias, Roimus, and Baana, their leaders. + +

+

The number of them of the nation and their leaders: the sons of Phoros, two thousand one hundred seventy two; the sons of5:9 +Shephatiah. Saphat, four hundred seventy two; + +the sons of5:10 +Arah. Ares, seven hundred fifty six; + +the sons of5:11 +Pahath-moab. Phaath Moab, of the sons of Jesus and Joab, two thousand eight hundred twelve; + +the sons of Elam, one thousand two hundred fifty four; the sons of5:12 +Zattu. Zathui, nine hundred forty five; the sons of5:12 +Zaccai. Chorbe, seven hundred five; the sons of Bani, six hundred forty eight; + +the sons of Bebai, six hundred twenty three; the sons of5:13 +Asgad. Astad,5:13 +According to other readings, 3622, or 3222. one thousand three hundred twenty two; + +the sons of Adonikam, six hundred sixty seven; the sons of5:14 +Bigvai. Bagoi, two thousand sixty six; the sons of5:14 +Adin. Adinu, four hundred fifty four; + +the sons of5:15 +Ater of Hezekiah. Ater, of Ezekias, ninety two; the sons of Kilan and Azetas, sixty seven; the sons of5:15 +Another reading is, +Azuru. Azaru, four hundred thirty two; + +the sons of5:16 +Another reading is, +Annias. Annis, one hundred one; the sons of Arom, the sons of5:16 +Bezai. Bassai, three hundred twenty three; the sons of Arsiphurith, one hundred twelve; + +the sons of Baiterus, three thousand five; the sons of5:17 +Bethlehem. Bethlomon, one hundred twenty three; + +those from Netophas, fifty five; those from Anathoth, one hundred fifty eight; those from5:18 +Azmaveth. Bethasmoth, forty two; + +those from +5:19 +Kiriath-arim +or +Kiriath-jearim.Kariathiarius, twenty five: those from Caphira and Beroth, seven hundred forty three; + +the Chadiasai and Ammidioi, four hundred twenty two; those from +5:20 +Rumah.Kirama and +5:20 +Geba.Gabbe, six hundred twenty one; + +those from +5:21 +Michmas.Macalon, one hundred twenty two; those from +5:21 +Bethel.Betolion, fifty two; the sons of +5:21 +MagbishNiphis, one hundred fifty six; + +the sons of +5:22 +Lod, Hadid.Calamolalus and +5:22 +Ono.Onus, seven hundred twenty five; the sons of +5:22 +Jericho.Jerechu, +5:22 +Another reading is, +twothree hundred forty five; + +and the sons of +5:23 +Senaah.Sanaas, three thousand three hundred thirty. + +

+

The priests: the sons of +5:24 +Jedaiah.Jeddu, the son of Jesus, among the sons of Sanasib, nine hundred seventy two; the sons of +5:24 +Immer.Emmeruth, one thousand fifty two; + +the sons of +5:25 +Pashhur.Phassurus, one thousand two hundred forty seven; and the sons of +5:25 +Harim.Charme, one thousand seventeen. + +The Levites: the sons of Jesus, Kadmiel, Bannas, and Sudias, seventy four. + +The holy singers: the sons of Asaph, one hundred twenty eight. + +The gatekeepers: the sons of5:28 +Shallum. Salum, the sons of5:28 +Ater. Atar, the sons of Tolman, the sons of5:28 +Akkub. Dacubi, the sons of5:28 +Hatita. Ateta, the sons of5:28 +Shobai. Sabi, in all one hundred thirty nine. + +

+

The temple servants: the sons of5:29 +Ziha. Esau, the sons of5:29 +Hasupha. Asipha, the sons of Tabaoth, the sons of5:29 +Keros. Keras, the sons of5:29 +Siaha. Sua, the sons of5:29 +Padon. Phaleas, the sons of Labana, the sons of5:29 +Hagaba. Aggaba. + +the sons of5:30 +Akkub. Acud, the sons of Uta, the sons of Ketab, the sons of5:30 +Hagab. Accaba, the sons of5:30 +Shamlai. Subai, the sons of5:30 +Hanan. Anan, the sons of5:30 +Giddel. Cathua, the sons of5:30 +Gahar Geddur, + +the sons of5:31 +Reaiah. Jairus, the sons of5:31 +Rezin. Daisan, the sons of5:31 +Nekoda. Noeba, the sons of Chaseba, the sons of5:31 +Gazzam. Gazera, the sons of5:31 +Uzza. Ozias, the sons of5:31 +Paseah. Phinoe, the sons of Asara, the sons of5:31 +Besai. Basthai, the sons of5:31 +Asnah. Asana, the sons of5:31 +Meunim. Maani, the sons of5:31 +Nephisim. Naphisi, the sons of5:31 +Bakbuk. +According to other readings, +Acum, +or +Acuph. Acub, the sons of5:31 +Hakupha. Achipha, the sons of5:31 +Harhur. Asur, the sons of Pharakim, the sons of5:31 +Bazluth. Basaloth, + +the sons of5:32 +Mehida. Meedda, the sons of Cutha, the sons of5:32 +Harsha Charea, the sons of5:32 +Barkos. Barchus, the sons of5:32 +Sisera. Serar, the sons of5:32 +Temah Thomei, the sons of5:32 +Neziah. +Another reading is, +Nasith. Nasi, the sons of Atipha. + +

+

The sons of the servants of Solomon: the sons of5:33 +Hussophereth. Assaphioth, the sons of5:33 +Peruda. Pharida, the sons of5:33 +Jaalah. Jeeli, the sons of5:33 +Darkon. Lozon, the sons of5:33 +Giddel. Isdael, the sons of5:33 +Shephatia. Saphuthi, + +the sons of5:34 +Hattil. Agia, the sons of5:34 +Pochereth-haz-zebaim, +Ezra 2:57. Phacareth, the sons of Sabie, the sons of Sarothie, the sons of5:34 +Another reading is, +Misaias. Masias, the sons of Gas, the sons of Addus, the sons of Subas, the sons of Apherra, the sons of Barodis, the sons of Saphat, the sons of Allon. + +

+

All the temple-servants and the sons of the servants of Solomon were three hundred seventy two. + +These came up from5:36 +Telmelah. Thermeleth, and5:36 +Telharsha. Thelersas,5:36 +Cherub. Addan. Charaathalan leading them, and Allar; + +and they could not show their families, nor their stock, how they were of Israel: the sons of5:37 +Delaiah. +Another reading is, +Asan. Dalan the son of5:37 +Tobiah +Another reading is, +Baenan. Ban, the sons of5:37 +Nekoda. Nekodan, six hundred fifty two. + +

+

Of the priests, those who usurped the office of the priesthood and were not found: the sons of5:38 +Habaiah, +or +Hobaiah. Obdia, the sons of5:38 +Hakkoz. Akkos, the sons of Jaddus, who married Augia one of the daughters of5:38 +Barzillai. +Another reading is, +Phaezeldaeus. Zorzelleus, and was called after his name. + +When the description of the kindred of these men was sought in the register and was not found, they were removed from executing the office of the priesthood; + +for Nehemias and Attharias told them that they should not be partakers of the holy things until a high priest wearing5:40 +Gr. +the manifestation and truth. Urim and Thummim should arise. + +

+

So all those of Israel, from twelve years old and upward, beside menservants and women servants, were in number forty two thousand three hundred sixty. + +Their menservants and handmaids were seven thousand three hundred thirty and seven; the minstrels and singers, two hundred forty five; + +four hundred thirty and five camels, seven thousand thirty six horses, two hundred forty five mules, and five thousand five hundred twenty five beasts of burden. + +

+

And some of the chief men of their families, when they came to the temple of God that is in Jerusalem, vowed to set up the house again in its own place according to their ability, + +and to give into the holy treasury of the works one thousand minas5:45 +A mina is about 570 grams or 1.25 pounds. of gold, five thousand minas of silver, and one hundred priestly vestments. + +

+

The priests and the Levites and some of the people lived in Jerusalem and the country. The holy singers also and the gatekeepers and all Israel lived in their villages. + +

+

But when the seventh month was at hand, and when the children of Israel were each in their own place, they all came together with one purpose into the broad place before the first porch which is toward the east. + +Then Jesus the son of Josedek, his kindred the priests, Zorobabel the son of Salathiel, and his kindred stood up and made the altar of the God of Israel ready + +to offer burned sacrifices upon it, in accordance with the express commands in the book of Moses the man of God. + +Some people joined them out of the other nations of the land, and they erected the altar upon its own place, because all the nations of the land were hostile to them and oppressed them; and they offered sacrifices at the proper times and burnt offerings to the Lord both morning and evening. + +They also held the feast of tabernacles, as it is commanded in the law, and offered sacrifices daily, as appropriate. + +After that, they offered the continual oblations and the sacrifices of the Sabbaths, of the new moons, and of all the consecrated feasts. + +All those who had made any vow to God began to offer sacrifices to God from the new moon of the seventh month, although the temple of God was not yet built. + +They gave money, food, and drink to the masons and carpenters. + +They also gave carts to the people of Sidon and Tyre, that they should bring cedar trees from Libanus, and convey them in rafts to the harbor of Joppa, according to the commandment which was written for them by Cyrus king of the Persians. + +

+

In the second year after his coming to the temple of God at Jerusalem, in the second month, Zorobabel the son of Salathiel, Jesus the son of Josedek, their kindred, the Levitical priests, and all those who had come to Jerusalem out of the captivity began work. + +They laid the foundation of God’s temple on the new moon of the second month, in the second year after they had come to Judea and Jerusalem. + +5:58 +Ezra 3:8-9They appointed the Levites who were at least twenty years old over the Lord’s works. Then Jesus, with his sons and kindred, Kadmiel his brother, the sons of Jesus, Emadabun, and the sons of Joda the son of Iliadun, and their sons and kindred, all the Levites, with one accord stood up and started the business, laboring to advance the works in the house of God. So the builders built the Lord’s temple. + +

+

The priests stood arrayed in their vestments with musical instruments and trumpets, and the Levites the sons of Asaph with their cymbals, + +singing songs of thanksgiving and praising the Lord, according to the directions of King David of Israel. + +They sang aloud, praising the Lord in songs of thanksgiving, because his goodness and his glory are forever in all Israel. + +All the people sounded trumpets and shouted with a loud voice, singing songs of thanksgiving to the Lord for the raising up of the Lord’s house. + +5:63 +Ezra 3:12-13Some of the Levitical priests and of the heads of their families, the elderly who had seen the former house came to the building of this one with lamentation and great weeping. + +But many with trumpets and joy shouted with a loud voice, + +so that the people couldn’t hear the trumpets for the weeping of the people, for the multitude sounded loudly, so that it was heard far away. + +

+

5:66 +Ezra 4:1Therefore when the enemies of the tribe of Judah and Benjamin heard it, they came to know what that noise of trumpets meant. + +They learned that those who returned from captivity built the temple for the Lord, the God of Israel. + +So they went to Zorobabel and Jesus, and to the chief men of the families, and said to them, “We will build together with you. + +For we, just like you, obey your Lord, and sacrifice to him from the days of King +5:69 +Another reading is, +Asbacaphath.Asbasareth of the Assyrians, who brought us here.” + +

+

Then Zorobabel, Jesus and the chief men of the families of Israel said to them, “It is not for you to build the house for the Lord our God. + +We ourselves alone will build for the Lord of Israel, as King Cyrus of the Persians has commanded us.” + +But the heathen of the land pressed hard upon the inhabitants of Judea, cut off their supplies, and hindered their building. + +By their secret plots, and popular persuasions and commotions, they hindered the finishing of the building all the time that King Cyrus lived. So they were hindered from building for two years, until the reign of Darius. + +

+ + +

Now +6:1 +Ezra 4:24; 5:1in the second year of the reign of Darius, Aggaeus and Zacharius the son of6:1 +Iddo. +Another reading is, +Eddin Addo, the prophets, prophesied to the Jews in Judea and Jerusalem in the name of the Lord, the God of Israel. + +Then Zorobabel the son of Salathiel and Jesus the son of Josedek stood up and began to build the house of the Lord at Jerusalem, the prophets of the Lord being with them and helping them. + +

+

6:3 +Ezra 5:3At the same time +6:3 +Tattenai.Sisinnes the governor of Syria and Phoenicia came to them, with +6:3 +ShetharbozenaiSathrabuzanes and his companions, and said to them, + +“By whose authority do you build this house and this roof, and perform all the other things? Who are the builders who do these things?” + +Nevertheless, the elders of the Jews obtained favor, because the Lord had visited the captives; + +and they were not hindered from building until such time as communication was made to Darius concerning them, and his answer received. + +

+

A copy of the letter which Sisinnes, governor of Syria and Phoenicia, and Sathrabuzanes, with their companions, the rulers in Syria and Phoenicia, wrote and sent to Darius: + +

+

“To King Darius, greetings. Let it be fully known to our lord the king, that having come into the country of Judea, and entered into the city of Jerusalem, we found in the city of Jerusalem the elders of the Jews that were of the captivity + +building a great new house for the Lord of hewn and costly stones, with timber laid in the walls. + +Those works are being done with great speed. The work goes on prosperously in their hands, and it is being accomplished with all glory and diligence. + +Then we asked these elders, saying, ‘By whose authority are you building this house and laying the foundations of these works?’ + +Therefore, to the intent that we might give knowledge to you by writing who the leaders were, we questioned them, and we required of them the names in writing of their principal men. + +So they gave us this answer, ‘We are the servants of the Lord who made heaven and earth. + +As for this house, it was built many years ago by a great and strong king of Israel, and was finished. + +But when our fathers sinned against the Lord of Israel who is in heaven, and provoked him to wrath, he gave them over into the hands of King Nabuchodonosor of Babylon, king of the Chaldeans. + +They pulled down the house, burned it, and carried away the people captive to Babylon. + +But in the first year that Cyrus reigned over the country of Babylon, King Cyrus wrote that this house should be rebuilt. + +The holy vessels of gold and of silver that Nabuchodonosor had carried away out of the house at Jerusalem and had set up in his own temple, those King Cyrus brought out of the temple in Babylonia, and they were delivered to Zorobabel and to +6:18 +Another reading is, +Sabunassarus.Sanabassarus the governor, + +with commandment that he should carry away all these vessels, and put them in the temple at Jerusalem, and that the Lord’s temple should be built on its site. + +Then Sanabassarus, having come here, laid the foundations of the Lord’s house which is in Jerusalem. From that time to this we are still building. It is not yet fully completed.’ + +Now therefore, if it seems good, O king, let a search be made among the royal archives of our lord the king that are in Babylon. + +If it is found that the building of the house of the Lord which is in Jerusalem has been done with the consent of King Cyrus, and it seems good to our lord the king, let him send us directions concerning these things.” + +

+

6:23 +Ezra 6:1Then King Darius commanded that a search be made among the archives that were laid up at Babylon. So at Ekbatana the palace, which is in the country of Media, a scroll was found where these things were recorded: + +“In the first year of the reign of Cyrus, King Cyrus commanded to build up the house of the Lord which is in Jerusalem, where they sacrifice with continual fire. + +Its height shall be sixty cubits, and the breadth sixty cubits, with three rows of hewn stones, and one row of new wood from that country. Its expenses are to be given out of the house of King Cyrus. + +The holy vessels of the house of the Lord, both gold and silver, that Nabuchodonosor took out of the house at Jerusalem and carried away to Babylon, should be restored to the house at Jerusalem, and be set in the place where they were before.” + +Also he commanded that Sisinnes the governor of Syria and Phoenicia, and Sathrabuzanes, and their companions, and those who were appointed rulers in Syria and Phoenicia, should be careful not to meddle with the place, but allow Zorobabel, the servant of the Lord, and governor of Judea, and the elders of the Jews, to build that house of the Lord in its place. + +“I also command to have it built up whole again; and that they look diligently to help those who are of the captivity of Judea, until the house of the Lord is finished, + +and that out of the tribute of Coelesyria and Phoenicia a portion shall be carefully given to these men for the sacrifices of the Lord, that is, to Zorobabel the governor for bulls, rams, and lambs, + +and also corn, salt, wine and oil, and that continually every year without further question, according as the priests who are in Jerusalem may direct to be daily spent, + +that drink offerings may be made to the Most High God for the king and for his children, and that they may pray for their lives.” + +He commanded that whoever should transgress, yes, or neglect anything written here, a beam shall be taken out of his own house, and he shall be hanged on it, and all his goods seized for the king. + +“Therefore may the Lord, whose name is called upon there, utterly destroy every king and nation that stretches out his hand to hinder or damage that house of the Lord in Jerusalem. + +I, King Darius have ordained that these things be done with diligence.” + +

+ + +

Then +7:1 +Ezra 6:13Sisinnes the governor of Coelesyria and Phoenicia, and Sathrabuzanes, with their companions, following the commandments of King Darius, + +very carefully supervised the holy work, assisting the elders of the Jews and rulers of the temple. + +So the holy work prospered, while Aggaeus and Zacharias the prophets prophesied. + +They finished these things by the commandment of the Lord, the God of Israel, and with the consent of Cyrus, Darius, and Artaxerxes, kings of the Persians. + +So the holy house was finished by the twenty-third day of the month Adar, in the sixth year of King Darius. + +The children of Israel, the priests, the Levites, and the others who returned from captivity who joined them did what was written in the book of Moses. + +For the dedication of the Lord’s temple, they offered one hundred bulls, two hundred rams, four hundred lambs, + +and twelve male goats for the sin of all Israel, according to the number of the twelve princes of the tribes of Israel. + +The priests and the Levites stood arrayed in their vestments, according to their kindred, for the services of the Lord, the God of Israel, according to the book of Moses. The gatekeepers were at every gate. + +

+

The children of Israel who came out of captivity held the Passover the fourteenth day of the first month, when the priests and the Levites were sanctified together, + +with all those who returned from captivity; for they were sanctified. For the Levites were all sanctified together, + +and they offered the Passover for all who returned from captivity, for their kindred the priests, and for themselves. + +The children of Israel who came out of the captivity ate, even all those who had separated themselves from the abominations of the heathen of the land, and sought the Lord. + +They kept the feast of unleavened bread seven days, rejoicing before the Lord, + +because he had turned the counsel of the king of Assyria toward them, to strengthen their hands in the works of the Lord, the God of Israel. + +

+ + +

8:1 +Ezra 7:1After these things, when Artaxerxes the king of the Persians reigned, Esdras came, who was the son of Azaraias, the son of Zechrias, the son of Helkias, the son of Salem, + +the son of Sadduk, the son of Ahitob, the son of Amarias, the son of Ozias,8:2 +The Vatican MS. omits +the son of Memeroth, the son of Zaraias, the son of Savias. the son of Memeroth, the son of Zaraias, the son of Savias, the son of Boccas, the son of Abisne, the son of Phinees, the son of Eleazar, the son of Aaron, the chief priest. + +This Esdras went up from Babylon as a skilled scribe in the law of Moses, which was given by the God of Israel. + +The king honored him, for he found favor in his sight in all his requests. + +There went up with him also some of the children of Israel, and of the priests, Levites, holy singers, gatekeepers, and temple servants to Jerusalem + +in the seventh year of the reign of Artaxerxes, in the fifth month (this was the king’s seventh year); for they left Babylon on the new moon of the first month and came to Jerusalem, by the prosperous journey which the Lord gave them8:6 +Some MSS. omit +for his sake. for his sake. + +For Esdras had very great skill, so that he omitted nothing of the law and commandments of the Lord, but taught all Israel the ordinances and judgments. + +

+

Now the commission, which was written from King Artaxerxes, came to Esdras the priest and reader of the law of the Lord, was as follows: + +

+

“King Artaxerxes to Esdras the priest and reader of the law of the Lord, greetings. + +Having determined to deal graciously, I have given orders that those of the nation of the Jews, and of the priests and Levites, and of those within our realm who are willing and freely choose to, should go with you to Jerusalem. + +As many therefore as are so disposed, let them depart with you, as it has seemed good both to me and my seven friends the counselors, + +that they may look to the affairs of Judea and Jerusalem, in accordance with what is in the Lord’s law, + +and carry the gifts to the Lord of Israel to Jerusalem, which I and my friends have vowed, and that all the gold and silver that can be found in the country of Babylonia for the Lord in Jerusalem, + +with that also which is given of the people for the temple of the Lord their God that is at Jerusalem, be collected: even the gold and silver for bulls, rams, and lambs, and what goes with them, + +to the end that they may offer sacrifices to the Lord upon the altar of the Lord their God, which is in Jerusalem. + +Whatever you and your kindred decide to do with gold and silver, do that according to the will of your God. + +The holy vessels of the Lord, which are given you for the use of the temple of your God, which is in Jerusalem, + +and whatever else you shall remember for the use of the temple of your God, you shall give it out of the king’s treasury. + +I, King Artaxerxes, have also commanded the keepers of the treasures in Syria and Phoenicia, that whatever Esdras the priest and reader of the law of the Most High God shall send for, they should give it to him with all diligence, + +to the sum of one hundred talents of silver, likewise also of wheat even to one hundred cors8:20 +a cor is about 230 liters, so 100 cors is about 23 kiloliters or 652 bushels, and one hundred firkins8:20 +a firkin is about 41 liters or 11 gallons. of wine, and8:20 +So some authorities. See Ezra 7:22. The common reading is, +other things. salt in abundance. + +Let all things be performed after God’s law diligently to the most high God, that wrath come not upon the kingdom of the king and his sons. + +I command you also that no tax, nor any other imposition, be laid upon any of the priests, or Levites, or holy singers, or gatekeepers, or temple servants, or any that have employment in this temple, and that no man has authority to impose any tax on them. + +You, Esdras, according to the wisdom of God, ordain judges and justices that they may judge in all Syria and Phoenicia all those who know the law of your God; and those who don’t know it, you shall teach. + +Whoever transgresses the law of your God and of the king shall be punished diligently, whether it be by death, or other punishment, by penalty of money, or by imprisonment.” + +

+

Then Esdras the scribe said, “Blessed be the only Lord, the God of my fathers, who has put these things into the heart of the king, to glorify his house that is in Jerusalem, + +and has honored me in the sight of the king, his counselors, and all his friends and nobles. + +Therefore I was encouraged by the help of the Lord my God, and gathered together out of Israel men to go up with me. + +

+

These are the chiefs according to their families and their several divisions, who went up with me from Babylon in the reign of King Artaxerxes: + +of the sons of Phinees, Gerson; of the sons of Ithamar, Gamael; of the sons of David,8:29 +Hattush. Attus8:29 +Ezra 8:3, +of the sons of Shecaniah; of the sons of Parosh. the son of Sechenias; + +of the sons of Phoros, Zacharais; and with him were counted one hundred fifty men; + +of the sons of Phaath Moab, Eliaonias the son of8:31 +Zerehiah. Zaraias, and with him two hundred men; + +8:32 +Ezra 8:5, +of the sons of Shecaniah, the son of Jahaziel.of the sons of Zathoes, Sechenias the son of Jezelus, and with him three hundred men; of the sons of Adin, Obeth the son of Jonathan, and with him two hundred fifty men; + +of the sons of Elam, Jesias son of Gotholias, and with him seventy men; + +of the sons of Saphatias, Zaraias son of Michael, and with him seventy men; + +of the sons of Joab, Abadias son of Jehiel. Jezelus, and with him two hundred twelve men; + +8:36 +Ezra 8:10, +of the sons of Shelomith, the son of Josiphiah.of the sons of Banias, Salimoth son of Josaphias, and with him one hundred sixty men; + +of the sons of Babi, Zacharias son of Bebai, and with him twenty-eight men; + +of the sons of Azgad: Astath, Joannes son of Hakkatan Akatan, and with him one hundred ten men; + +of the sons of Adonikam, the last, and these are the names of them, Eliphalat, Jeuel, and Samaias, and with them seventy men; + +of the sons of Bago, Uthi the son of Istalcurus, and with him seventy men. + +

+

I gathered them together to the river called Theras. There we pitched our tents three days, and I inspected them. + +When I had found there none of the priests and Levites, + +then sent I to Eleazar, Iduel, Maasmas, + +Elnathan, Samaias, Joribus, Nathan, Ennatan, Zacharias, and Mosollamus, principal men and men of understanding. + +I asked them to go to Loddeus the captain, who was in the place of the treasury, + +and commanded them that they should speak to Loddeus, to his kindred, and to the treasurers in that place, to send us such men as might execute the priests’ office in our Lord’s house. + +By the mighty hand of our Lord, they brought to us men of understanding of the sons of8:47 +Mahli. Mooli the son of Levi, the son of Israel,8:47 +Sherebiah. Asebebias, and his sons, and his kindred, who were eighteen, + +and8:48 +Hashabiah. Asebias, Annuus, and Osaias his brother, of the sons of Chanuneus, and their sons were twenty men; + +and of the temple servants whom David and the principal men had appointed for the servants of the Levites, two hundred twenty temple servants. The list of all their names was reported. + +

+

There I vowed a fast for the young men before our Lord, to seek from him a prosperous journey both for us and for our children and livestock that were with us; + +for I was ashamed to ask of the king infantry, cavalry, and an escort for protection against our adversaries. + +For we had said to the king that the power of our Lord would be with those who seek him, to support them in all ways. + +Again we prayed to our lord about these things, and found him to be merciful. + +

+

Then I set apart twelve men of the chiefs of the priests,8:54 +Sherebiah, Hashabiah. Eserebias, Assamias, and ten men of their kindred with them. + +I weighed out to them the silver, the gold, and the holy vessels of the house of our Lord, which the king, his counselors, the nobles, and all Israel had given. + +When I had weighed it, I delivered to them six hundred fifty talents of silver, silver vessels weighing one hundred talents, one hundred talents of gold, + +twenty golden vessels, and twelve vessels of brass, even of fine brass, glittering like gold. + +I said to them, “You are holy to the Lord, the vessels are holy, and the gold and the silver are a vow to the Lord, the Lord of our fathers. + +Watch and keep them until you deliver them to the chiefs of the priests and Levites, and to the principal men of the families of Israel in Jerusalem, in the chambers of our Lord’s house. + +So the priests and the Levites who received the silver, the gold, and the vessels which were in Jerusalem, brought them into the temple of the Lord. + +

+

We left the river Theras on the twelfth day of the first month. We came to Jerusalem by the mighty hand of our Lord which was upon us. The Lord delivered us from every enemy on the way, and so we came to Jerusalem. + +When we had been there three days, the silver and gold was weighed and delivered in our Lord’s house on the fourth day to8:62 +Meremoth. Marmoth the priest the son of8:62 +Uriah. Urias. + +With him was Eleazar the son of Phinees, and with them were Josabdus the son of Jesus and8:63 +Noadiah the son of Binnui. Moeth the son of Sabannus, the Levites. All was delivered to them by number and weight. + +All the weight of them was recorded at the same hour. + +Moreover those who had come out of captivity offered sacrifices to the Lord, the God of Israel, even twelve bulls for all Israel, ninety-six rams, + +seventy-two lambs, and twelve goats for a peace offering—all of them a sacrifice to the Lord. + +They delivered the king’s commandments to the king’s stewards and to the governors of Coelesyria and Phoenicia; and they honored the people and the temple of the Lord. + +

+

Now when these things were done, the principal men came to me and said, + +“The nation of Israel, the princes, the priests, and the Levites haven’t put away from themselves the foreign people of the land nor the uncleannesses of the Gentiles—the Canaanites, Hittites, Pherezites, Jebusites, Moabites, Egyptians, and Edomites. + +For both they and their sons have married with their daughters, and the holy seed is mixed with the foreign people of the land. From the beginning of this matter the rulers and the nobles have been partakers of this iniquity.” + +

+

And as soon as I had heard these things, I tore my clothes and my holy garment, and plucked the hair from off my head and beard, and sat down sad and full of heaviness. + +So all those who were moved at the word of the Lord, the God of Israel, assembled to me while I mourned for the iniquity, but I sat still full of heaviness until the evening sacrifice. + +Then rising up from the fast with my clothes and my holy garment torn, and bowing my knees and stretching out my hands to the Lord, + +I said, “O Lord, I am ashamed and confounded before your face, + +for our sins are multiplied above our heads, and our errors have reached up to heaven + +ever since the time of our fathers. We are in great sin, even to this day. + +For our sins and our fathers’ sins we with our kindred, our kings, and our priests were given up to the kings of the earth, to the sword, and to captivity, and for a prey with shame, to this day. + +Now in some measure mercy has been shown to us from you, O Lord, that there should be left us a root and a name in the place of your sanctuary, + +and to uncover a light in the house of the Lord our God, and to give us food in the time of our servitude. + +Yes, when we were in bondage, we were not forsaken by our Lord, but he gave us favor before the kings of Persia, so that they gave us food, + +glorified the temple of our Lord, and raised up the desolate Zion, to give us a sure dwelling in Judea and Jerusalem. + +

+

“Now, O Lord, what shall we say, having these things? For we have transgressed your commandments which you gave by the hand of your servants the prophets, saying, + +‘The land, which you enter into to possess as an inheritance, is a land polluted with the pollutions of the foreigners of the land, and they have filled it with their uncleanness. + +Therefore now you shall not join your daughters to their sons, neither shall you take their daughters for your sons. + +You shall never seek to have peace with them, that you may be strong, and eat the good things of the land, and that you may leave it for an inheritance to your children for evermore.’ + +All that has happened is done to us for our wicked works and great sins, for you, O Lord, made our sins light, + +and gave to us such a root; but we have turned back again to transgress your law in mingling ourselves with the uncleanness of the heathen of the land. + +You weren’t angry with us to destroy us until you had left us neither root, seed, nor name. + +O Lord of Israel, you are true, for we are left a root this day. + +Behold, now we are before you in our iniquities, for we can’t stand any longer before you because of these things.” + +

+

8:91 +Ezra 10:1As Esdras in his prayer made his confession, weeping, and lying flat on the ground before the temple, a very great throng of men, women, and children gathered to him from Jerusalem; for there was great weeping among the multitude. + +Then Jechonias the son of Jeelus, one of the sons of Israel, called out, and said, “O Esdras, we have sinned against the Lord God, we have married foreign women of the heathen of the land, but there is still hope for Israel. + +Let’s make an oath to the Lord about this, that we will put away all our foreign wives with their children, + +as seems good to you, and to as many as obey the Lord’s Law. + +Arise, and take action, for this is your task, and we will be with you to do valiantly.” + +So Esdras arose, and took an oath from the chief of the priests and Levites of all Israel to do these things; and they swore to it. + +

+ + +

9:1 +Ezra 10:6Then Esdras rose up from the court of the temple and went to the chamber of Jonas the son of Eliasib, + +and lodged there, and ate no bread and drank no water, mourning for the great iniquities of the multitude. + +A proclamation was made in all Judea and Jerusalem to all those who returned from captivity, that they should be gathered together at Jerusalem, + +and that whoever didn’t meet there within two or three days, in accordance with the ruling of the elders, that their livestock would be seized for the use of the temple, and they would be expelled from the multitude of those who returned from captivity. + +

+

Within three days, all those of the tribe of Judah and Benjamin gathered together at Jerusalem. This was the ninth month, on the twentieth day of the month. + +All the multitude sat together shivering in the broad place before the temple because of the present foul weather. + +So Esdras arose up and said to them, “You have transgressed the law and married foreign wives, increasing the sins of Israel. + +Now make confession and give glory to the Lord, the God of our fathers, + +and do his will, and separate yourselves from the heathen of the land, and from the foreign women.” + +

+

Then the whole multitude cried out, and said with a loud voice, “Just as you have spoken, so we will do. + +But because the multitude is great, and it is foul weather, so that we can’t stand outside, and this is not a work of one day or two, seeing our sin in these things has spread far, + +therefore let the rulers of the multitude stay, and let all those of our settlements that have foreign wives come at the time appointed, + +and with them the rulers and judges of every place, until we turn away the wrath of the Lord from us for this matter.” + +

+

So Jonathan the son of Azael and9:14 +Another reading is, +Ezias. Ezekias the son of Thocanus took the matter on themselves. Mosollamus and Levis and Sabbateus were judges with them. + +Those who returned from captivity did according to all these things. + +

+

Esdras the priest chose for himself principal men of their families, all by name. On the new moon of the tenth month they met together to examine the matter. + +So their cases of men who had foreign wives was brought to an end by the new moon of the first month. + +

+

Of the priests who had come together and had foreign wives, there were found + +of the sons of Jesus the son of Josedek, and his kindred,9:19 +Maaseiah. Mathelas, Eleazar, and9:19 +Jarib. Joribus, and9:19 +Gedaliah Joadanus. + +They gave their hands to put away their wives, and to offer rams to make reconciliation for their error. + +Of the sons of Emmer: Ananias, Zabdeus, +9:21 +HarimManes, +9:21 +Maaseiah.Sameus, +9:21 +Jehiel.Hiereel, and +9:21 +Uzziah.Azarias. + +Of the sons of +9:22 +Pashhur.Phaisur: Elionas, Massias, Ishmael, Nathanael, +9:22 +Jozabad.Ocidelus, and +9:22 +Elasah.Saloas. + +

+

Of the Levites: Jozabdus, Semeis, +9:23 +Kelaiah.Colius who was called +9:23 +Kelita.Calitas, +9:23 +Pethahiah.Patheus, Judas, and Jonas. + +Of the holy singers: +9:24 +Eliashib.Eliasibus and Bacchurus. + +Of the gatekeepers: Sallumus and9:25 +Telem. Tolbanes. + +

+

Of Israel, of the sons of Phoros:9:26 +Parosh. Hiermas,9:26 +Ramiah Ieddias,9:26 +Izziah. +Another reading is, +Iezias Melchias, Maelus,9:26 +Mijamin. Eleazar, Asibas, +9:26 +Malchijah.and Banneas. + +Of the sons of Ela: Matthanias, Zacharias, +9:27 +Jehiel.Jezrielus, Oabdius, Hieremoth, and9:27 +Abdi. Aedias. + +Of the sons of +9:28 +Zattu.Zamoth: +9:28 +Elioenai.Eliadas, +9:28 +Eliashib.Eliasimus, +9:28 +Mattaniah.Othonias, Jarimoth, +9:28 +Zabad.Sabathus, and +9:28 +Aziza.Zardeus. + +Of the sons of Bebai: Joannes, Ananias, +9:29 +Zabbai.Jozabdus, and +9:29 +Athlai.Ematheis. + +Of the sons of +9:30 +Bani.Mani: +9:30 +Meshullam.Olamus, +9:30 +Malluch.Mamuchus, +9:30 +Adaiah.Jedeus, Jasubas, +9:30 +Sheal.Jasaelus, and Hieremoth. + +Of the sons of Addi: Naathus, Moossias, Laccunus, Naidus, Matthanias, Sesthel, Balnuus, and Manasseas. + +Of the sons of Annas: Elionas, Aseas, Melchias, Sabbeus, and Simon Chosameus. + +Of the sons of Asom: +9:33 +Mattenai.Maltanneus, +9:33 +Mattattah.Mattathias, +9:33 +Zabad.Sabanneus, Eliphalat, Manasses, and Semei. + +Of the sons of Baani: Jeremias, Momdis, Ismaerus, Juel, Mamdai, Pedias, Anos, Carabasion, Enasibus, Mamnitamenus, Eliasis, Bannus, Eliali, Someis, Selemias, and Nathanias. Of the sons of Ezora: Sesis, Ezril, Azaelus, Samatus, Zambri, and Josephus. + +Of the sons of Nooma: Mazitias, Zabadeas, Edos, Juel, and Banaias. + +All these had taken foreign wives, and they put them away with their children. + +

+

The priests and Levites, and those who were of Israel, lived in Jerusalem and in the country, on the new moon of the seventh month, and the children of Israel in their settlements. + +

+

9:38 +Nehemiah 8:1The whole multitude gathered together with one accord into the broad place before the porch of the temple toward the east. + +They said to Esdras the priest and reader, “Bring the law of Moses that was given by the Lord, the God of Israel.” + +

+

So Esdras the chief priest brought the law to the whole multitude both of men and women, and to all the priests, to hear the law on the new moon of the seventh month. + +He read in the broad place before the porch of the temple from morning until midday, before both men and women; and all the multitude gave attention to the law. + +Esdras the priest and reader of the law stood up upon the pulpit of wood which had been prepared. + +Beside him stood Mattathias, Sammus, Ananias, Azarias, Urias, +9:43 +Hilkiah.Ezekias, and Baalsamus on the right hand, + +and on his left hand, +9:44 +Pedaiah.Phaldeus, Misael, Melchias, +9:44 +Hashuin.Lothasubus, Nabarias, and Zacharias. + +Then Esdras took the book of the law before the multitude, and sat honorably in the first place before all. + +When he opened the law, they all stood straight up. So Esdras blessed the Lord God Most High, the God of armies, the Almighty. + +All the people answered, “Amen.” Lifting up their hands, they fell to the ground and worshiped the Lord. + +Also Jesus, Annus, Sarabias, Iadinus, Jacubus, Sabateus, +9:48 +Hodiah.Auteas, Maiannas, Calitas, Azarias, Jozabdus, Ananias, and Phalias, the Levites, taught the law of the Lord, +9:48 +Some authorities omit +and read...Lord.and read to the multitude the law of the Lord, explaining what was read. + +

+

Then Attharates said to Esdras the chief priest and reader, and to the Levites who taught the multitude, even to all, + +“This day is holy to the Lord—now they all wept when they heard the law— + +go then, eat the fat, drink the sweet, and send portions to those who have nothing; + +for the day is holy to the Lord. Don’t be sorrowful, for the Lord will bring you to honor.” + +So the Levites commanded all things to the people, saying, “This day is holy. Don’t be sorrowful.” + +Then they went their way, every one to eat, drink, enjoy themselves, to give portions to those who had nothing, and to rejoice greatly, + +because they +9:55 +Or, +were inspired byunderstood the words they were instructed with, and for which they had been assembled. + +

+
+ +Prayer of Manasses +The Prayer of Manasses King of Judah when He was Held Captive in Babylon +Prayer of Manasses +Man +

The +

+

Prayer of Manasses +

+

King of Judah, +

+

When He Was Held Captive in Babylon +

+

The Prayer of Manasses is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. It is included in an appendix to the Latin Vulgate Bible. +

+ + +

O LORD Almighty in heaven, God of our fathers Abraham, Isaac, and Jacob, and of their righteous offspring, + +you who have made heaven and earth, with all their order, + +who have bound the sea by the word of your commandment, who have shut up the deep, and sealed it by your terrible and glorious name, + +whom all things fear, yes, tremble before your power, + +for the majesty of your glory can’t be borne, and the anger of your threatening toward sinners is unbearable. + +Your merciful promise is unmeasurable and unsearchable, + +for you are the Lord Most High, of great compassion, patient and abundant in mercy, and relent at human suffering. + +1:8 +The Alex. MS. omits +You... saved.You, O Lord, according to your great goodness have promised repentance and forgiveness to those who have sinned against you. Of your infinite mercies, you have appointed repentance to sinners, that they may be saved. You therefore, O Lord, who are the God of the just, have not appointed repentance to the just, to Abraham, Isaac, and Jacob, which have not sinned against you, but you have appointed repentance to me, a sinner. + +For I have sinned more than the number of the sands of the sea. My transgressions are multiplied,1:9 +The Alex. MS. omits +O Lord... multiplied. O Lord, my transgressions are multiplied, and I am not worthy to behold and see the height of heaven for the multitude of my iniquities. + +I am bowed down with many iron bands, so that I can’t lift up my head by reason of my sins,1:10 +Some authorities omit +by reason of my sins. neither have I any relief; for I have provoked your wrath, and done that which is evil before you:1:10 +The Alex. MS. omits +I did... commandments. I didn’t do your will, neither did I keep your commandments. I have set up abominations, and have multiplied detestable things. + +Now therefore I bow the knee of my heart, asking you for grace. + +I have sinned, O Lord, I have sinned, and I acknowledge my iniquities; + +but, I humbly ask you, forgive me, O Lord, forgive me, and please don’t destroy me with my iniquities. Don’t be angry with me forever, by reserving evil for me. Don’t condemn me into the lower parts of the earth. For you, O Lord, are the God of those who repent. + +In me you will show all your goodness, for you will save me, even though I am unworthy, according to your great mercy. + +Then I will praise you forever all the days of my life; for all the army of heaven sings your praise, and yours is the glory forever and ever. Amen. + +

+
+ +Psalm 151 +Psalm 151 +Psalm 151 +Ps2 +

Psalm 151 +

+

Psalm 151 is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. +

+ + +This Psalm is a genuine one of David, though extra,1:0 +or, supernumerary composed when he fought in single combat with Goliath. + +I was small among my brothers, + +and youngest in my father’s house. + +I tended my father’s sheep. + + +My hands formed a musical instrument, + +and my fingers tuned a lyre. + + +Who shall tell my Lord? + +The Lord himself, he himself hears. + + +He sent forth his angel and took me from my father’s sheep, + +and he anointed me with his anointing oil. + + +My brothers were handsome and tall; + +but the Lord didn’t take pleasure in them. + + +I went out to meet the Philistine, + +and he cursed me by his idols. + + +But I drew his own sword and beheaded him, + +and removed reproach from the children of Israel. + + +
+ +3 Maccabees +The Third Book of the Maccabees +3 Maccabees +3Ma +

The Third Book of the Maccabees +

+

The Third Book of the Maccabees is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. It is considered to be apocrypha by most other church traditions. +

+ + +

Now Philopater, on learning from those who came back that Antiochus had made himself master of the places which belonged to himself, sent orders to all his infantry and cavalry, took with him his sister Arsinoe, and marched out as far as the parts of Raphia, where Antiochus and his forces encamped. + +And one Theodotus, intending to carry out his design, took with him the bravest of the armed men who had been before committed to his trust by Ptolemy, and got through at night to the tent of Ptolemy, to kill him on his own responsibility, and so to end the war. + +But Dositheus, called the son of Drimulus, by birth a Jew, afterward a renegade from the laws and observances of his country, conveyed Ptolemy away, and made an obscure person lie down in his stead in the tent. It turned out that this man received the fate which was meant for the other. + +A fierce battle then took place. The men of Antiochus were prevailing. Arsinoe continually went up and down the ranks, and with dishevelled hair, with tears and entreaties, begged the soldiers to fight bravely for themselves, their children, and wives, and promised that if they proved conquerors, she would give them each two minas of gold. + +It thus fell out that their enemies were defeated in hand-to-hand encounter, and that many of them were taken prisoners. + +Having vanquished this attempt, the king then decided to proceed to the neighboring cities, and encourage them. + +By doing this, and by making donations to their temples, he inspired his subjects with confidence. + +

+

The Jews sent some of their council and of their elders to him. The greetings, welcoming gifts, and congratulations of the past, given by them, filled him with the greater eagerness to visit their city. + +Having arrived at Jerusalem, sacrificed, and offered thank-offerings to the Greatest God, and done whatever else was suitable to the sanctity of the place, and entered the inner court, + +he was so impressed with the magnificence of the place, and so wondered at the orderly arrangements of the temple, that he considered entering the sanctuary itself. + +When they told him that this was not permissible, none of the nation, not even the priests in general, but only the supreme high priest of all, and he only once in a year, was allowed to go in, he would by no means give way. + +Then they read the law to him, but he persisted in intruding, exclaiming that he ought to be allowed. He said, “Even if they were deprived of this honor, I shouldn’t be.” + +He asked why, when he entered all the other temples, did none of the priests who were present forbid him. + +He was thoroughly answered by someone, that he did wrong to boast of this. + +“Well, since I have done this,” said he, “be the cause what it may, shall I not enter with or without your consent?” + +

+

When the priests fell down in their sacred vestments imploring the Greatest God to come and help in time of need, and to avert the violence of the fierce aggressor, and when they filled the temple with lamentations and tears, + +then those who had been left behind in the city were scared, and rushed out, uncertain of the event. + +Virgins, who had been shut up within their chambers, came out with their mothers, scattering dust and ashes on their heads, and filling the streets with outcries. + +Women who had recently been arrayed for marriage left their bridal chambers, left the reserve that befitted them, and ran around the city in a disorderly manner. + +New-born babes were deserted by the mothers or nurses who waited upon them—some here, some there, in houses, or in fields; these now, with an ardor which could not be checked, swarmed into the Most High temple. + +Various prayers were offered up by those who assembled in this place because of the unholy attempt of the king. + +Along with these there were some of the citizens who took courage and would not submit to his obstinacy and his intention of carrying out his purpose. + +Calling out to arms, and to die bravely in defense of the law of their fathers, they created a great uproar in the place, and were with difficulty brought back by the aged and the elders to the station of prayer which they had occupied before. + +During this time, the multitude kept on praying. + +The elders who surrounded the king tried in many ways to divert his arrogant mind from the design which he had formed. + +He, in his hardened mood, insensible to all persuasion, was going onward with the view of carrying out this design. + +Yet even his own officers, when they saw this, joined the Jews in an appeal to Him who has all power to aid in the present crisis, and not wink at such haughty lawlessness. + +Such was the frequency and the vehemence of the cry of the assembled crowd, that an indescribable noise ensued. + +Not the men only, but the very walls and floor seemed to sound out, all things preferring death rather than to see the place defiled. + +

+ + +

Now it was that the high priest Simon bowed his knees near the holy place, spread out his hands in reverent form, and uttered the following prayer: + +“O Lord, Lord, King of the heavens, and Ruler of the whole creation, Holy among the holy, sole Governor, Almighty, give ear to us who are oppressed by a wicked and profane one, who celebrates in his confidence and strength. + +It is you, the Creator of all, the Lord of the universe, who are a righteous Governor, and judge all who act with pride and insolence. + +It was you who destroyed the former workers of unrighteousness, among whom were the giants, who trusted in their strength and daring, by covering them with a measureless flood. + +It was you who made the Sodomites, those workers of exceeding iniquity, men notorious for their vices, an example to later generations, when you covered them with fire and brimstone2:5 +or, sulfur. + +You made known your power when you caused the bold Pharaoh, the enslaver of your people, to pass through the ordeal of many and diverse inflictions. + +You rolled the depths of the sea over him when he pursued with chariots and with a multitude of followers, and gave a safe passage to those who put their trust in you, the Lord of the whole creation. + +These saw and felt the works of your hands, and praised you, the Almighty. + +You, O King, when you created the immeasurable and measureless earth, chose this city. You made this place sacred to your name, even though you need nothing. You glorified it with your illustrious presence, after constructing it to the glory of your great and honorable name. + +You promised, out of love for the people of Israel, that if we fall away from you, become afflicted, and then come to this house and pray, you would hear our prayer. + +Truly you are faithful and true. + +When you often aided our fathers when they were hard pressed and humiliated, and delivered them out of great dangers, + +see now, holy King, how through our many and great sins we are crushed and made subject to our enemies, and have become weak and powerless. + +In our low condition, this bold and profane man seeks to dishonor this your holy place, consecrated out of the earth to the name of your Majesty. + +Your dwelling place, the heaven of heavens, is indeed unapproachable to men. + +But since it seemed good to you to exhibit your glory among your people Israel, you sanctified this place. + +Don’t punish us by means of the uncleanness of their men, and don’t chastise us by means of their profanity, lest the lawless ones should boast in their rage, and exult in exuberant pride of speech, and say, + +‘We have trampled upon the holy house, as idolatrous houses are trampled upon.’ + +Blot out our iniquities, do away with our errors, and show your compassion in this hour. + +Let your mercies quickly go before us. Grant us peace, that the downcast and broken hearted may praise you with their mouth.” + +

+

At that time God, who sees all things, who is beyond all Holy among the holy, heard that prayer, so suitable, and scourged the man who was greatly uplifted with scorn and insolence. + +Shaking him back and forth as a reed is shaken with the wind, he threw him down on the pavement, powerless, with limbs paralyzed, and by a righteous judgment deprived of the ability to speak. + +His friends and bodyguards, seeing the swift recompense which had suddenly overtaken him, struck with exceeding terror, and fearing that he would die, speedily removed him. + +When in course of time he had come to himself, this severe punishment caused no repentance within him, but he departed with bitter threatenings. + +

+

He proceeded to Egypt, grew worse in wickedness through his previously mentioned companions in wine, who were lost to all goodness, + +and not satisfied with countless acts of impiety, his audacity so increased that he raised evil reports there, and many of his friends, watching his purpose attentively, joined in furthering his will. + +His purpose was to inflict a public stigma upon our race. Therefore he erected a stone pillar in the courtyard, and caused the following inscription to be engraved upon it: + +“Entrance to this temple is to be refused to all those who would not sacrifice. All the Jews were to be registered among the slaves. Those who resisted are to be forcibly seized and put to death. + +Those who are thus registered are to be marked on their persons by the ivy-leaf symbol of Dionysus, and to be reduced to these limited rights.” + +To do away with the appearance of hating them all, he had it written underneath, that if any of them should elect to enter the community of those initiated in the rites, these should have equal rights with the Alexandrians. + +

+

Some of those who were over the city, therefore, abhorring any approach to the city of piety, unhesitatingly gave in to the king, and expected to derive some great honor from a future connection with him. + +A nobler spirit, however, prompted the majority to cling to their religious observances, and by paying money that they might live unmolested, these sought to escape the registration, + +cheerfully looking forward to future aid, they abhorred their own apostates, considering them to be national foes, and depriving them of common fellowship and mutual help. + +

+ + +

On discovering this, so incensed was the wicked king, that he no longer confined his rage to the Jews in Alexandria. Laying his hand more heavily upon those who lived in the country, he gave orders that they should be quickly collected into one place, and most cruelly deprived of their lives. + +While this was going on, a hostile rumor was uttered abroad by men who had banded together to injure the Jewish race. The pretext of their charge was that the Jews kept them away from the ordinances of the law. + +Now the Jews always maintained a feeling of unwavering loyalty toward the kings, + +yet, as they worshiped God and observed his law, they made certain distinctions, and avoided certain things. Hence they appeared hateful to some people, + +although, as they adorned their conversation with works of righteousness, they had established themselves in the good opinion of the world. + +What all the rest of mankind said was, however, disregarded by the foreigners, + +who said much of the exclusiveness of the Jews with regard to their worship and meats. They alleged that they were unsociable men, hostile to the king’s interests, refusing to associate with him or his troops. By this way of speaking, they brought much hatred on them. + +This unexpected uproar and sudden gathering of people was observed by the Greeks who lived in the city, concerning men who had never harmed them. Yet to aid them was not in their power, since all was oppression around, but they encouraged them in their troubles, and expected a favorable turn of affairs. + +He who knows all things will not, they said, disregard so great a people. + +Some of the neighbors, friends, and business associates of the Jews even called them secretly to an interview, pledged them their assistance, and promised to do their very utmost for them. + +

+

Now the king, elated with his prosperous fortune, and not regarding the superior power of God, but thinking to persevere in his present purpose, wrote the following letter to the prejudice of the Jews: + +“King Ptolemy Philopater, to the commanders and soldiers in Egypt, and in all places, health and happiness! + +I am doing well, and so, too, are my affairs. + +Since our Asiatic campaign, the particulars of which you know, and which by the aid of the gods, not lightly given, and by our own vigor, has been brought to a successful conclusion according to our expectation, + +we resolved, not with strength of spear, but with gentleness and much humanity, as it were to nurse the inhabitants of Coele-Syria and Phoenicia, and to be their willing benefactors. + +So, having bestowed considerable sums of money upon the temples of the several cities, we proceeded even as far as Jerusalem, and went up to honor the temple of these wretched beings who never cease from their folly. + +To outward appearance they received us willingly, but belied that appearance by their deeds. When we were eager to enter their temple, and to honor it with the most beautiful and exquisite gifts, + +they were so carried away by their old arrogance as to forbid us the entrance, while we, out of our forbearance toward all men, refrained from exercising our power upon them. + +Thus, exhibiting their enmity against us, they alone among the nations lift up their heads against kings and benefactors, as men unwilling to submit to any reasonable thing. + +We then, having endeavored to make allowance for the madness of these people, and on our victorious return treating all people in Egypt courteously, acted in a manner which was befitting. + +Accordingly, bearing no ill will against their kinsmen, but rather remembering our connection with them, and the numerous matters with sincere heart from a remote period entrusted to them, we wished to venture a total alteration of their state, by giving them the rights of citizens of Alexandria, and to admit them to the everlasting rites of our solemnities. + +All this, however, they have taken in a very different spirit. With their innate malignity, they have spurned the fair offer, and constantly inclining to evil, + +have rejected the inestimable rights. Not only so, but by using speech, and by refraining from speech, they abhor the few among them who are heartily disposed toward us, ever deeming that their infamous way of life will force us to do away with our reform. + +Having then received certain proofs that these Jews bear us every sort of ill will, we must look forward to the possibility of some sudden tumult among ourselves when these impious men may turn traitors and barbarous enemies. + +Therefore, as soon as the contents of this letter become known to you, in that same hour we order those Jews who dwell among you, with wives and children, to be sent to us, vilified and abused, in chains of iron, to undergo a cruel and shameful death, suitable to enemies. + +For by the punishment of them in one body we perceive that we have found the only means of establishing our affairs for the future on a firm and satisfactory basis. + +Whoever protects a Jew, whether it be old man, child, or nursing baby, shall with his whole house be tortured to death. + +Whoever informs against the Jews, besides receiving the property of the person charged, shall be presented with two thousand drachmas3:28 +a drachma was about a day’s pay for an agricultural laborer from the royal treasury, shall be made free, and shall be crowned. + +Whatever place shelters a Jew shall be made unapproachable and shall be put under the ban of fire, and be forever rendered useless to every living being for all time to come.” + +The king’s letter was written in the above form. + +

+ + +

Wherever this decree was received, the people kept up a revelry of joy and shouting, as if their long-pent-up, hardened hatred would now show itself openly. + +The Jews suffered great throes of sorrow and wept much, while their hearts, all things around being lamentable, were set on fire as they bewailed the sudden destruction which was decreed against them. + +What home, or city, or any inhabited place, or what streets were there, which their condition didn’t fill with wailing and lamentation? + +They were sent out unanimously by the generals in various cities, with such stern and pitiless feeling that the exceptional nature of the infliction moved even some of their enemies. These, influenced by sentiments of common humanity, and reflecting upon the uncertain issue of life, shed tears at their miserable expulsion. + +A multitude of aged hoary-haired old men were driven along with halting bending feet, urged onward by the impulse of a violent, shameless force to quick speed. + +Girls who had entered the bridal chamber quite lately, to enjoy the partnership of marriage, exchanged pleasure for misery; and with dust scattered upon their myrrh-anointed heads, were hurried along unveiled; and, in the midst of outlandish insults, set up with one accord a lamentable cry instead of the marriage hymn. + +Bound and exposed to public gaze, they were hurried violently on board ship. + +The husbands of these, in the prime of their youthful vigor, instead of crowns, wore ropes round their necks. Instead of feasting and youthful celebration, they spent the rest of their nuptial days in wailing, and saw only the grave at hand. + +They were dragged along by unyielding chains, like wild animals. Of these, some had their necks thrust into the benches of the rowers, while the feet of others were enclosed in hard fetters. + +The planks of the deck above them blocked out the light and shut out the day on every side, so that they might be treated like traitors during the whole voyage. + +

+

They were carried like this in this vessel, and at the end of it arrived at Schedia. The king had ordered them to be cast into the vast hippodrome, which was built in front of the city. This place was well adapted by its situation to expose them to the gaze of all comers into the city, and of those who went from the city into the country. Thus they could hold no communication with his forces. They weren’t deemed worthy of any civilized accommodation. + +When this was done, the king, hearing that their kindred in the city often went out and lamented the melancholy distress of these victims, + +was full of rage, and commanded that they should be carefully subjected to the same—and not one bit milder—treatment. + +The whole nation was now to be registered. Every individual was to be specified by name, not for that hard servitude of labor which we have a little before mentioned, but that he might expose them to the before-mentioned tortures; and finally, in the short space of a day, might exterminate them by his cruelties. + +The registering of these men was carried on cruelly, zealously, assiduously, from the rising of the sun to its going down, and was not brought to an end in forty days. + +The king was filled with great and constant joy, and celebrated banquets before the temple idols. His erring heart, far from the truth, and his profane mouth gave glory to idols, which are deaf and incapable of speaking or aiding, and uttered unworthy speech against the Greatest God. + +At the end of the above-mentioned interval of time, the registrars brought word to the king that the multitude of the Jews was too great for registration, + +inasmuch as there were many still left in the land, of whom some were in inhabited houses, and others were scattered about in various places, so that all the commanders in Egypt were insufficient for the work. + +The king threatened them, and charged them with taking bribes, in order to contrive the escape of the Jews, but was clearly convinced of the truth of what had been said. + +They said, and proved, that paper and pens had failed them for the carrying out of their purpose. + +Now this was an active interference of the unconquerable Providence which assisted the Jews from heaven. + +

+ + +

Then he called Hermon, who had charge of the elephants. Full of rage, altogether fixed in his furious design, + +he commanded him, with a quantity of unmixed wine with handfuls of incense infused, to drug the elephants early on the following day. These five hundred elephants were, when infuriated by the copious drinks of frankincense, to be led up to the execution of death upon the Jews. + +The king, after issuing these orders, went to his feasting, and gathered together all those of his friends and of the army who hated the Jews the most. + +The master of the elephants, Hermon, fulfilled his commission punctually. + +The servants appointed for the purpose went out about evening and bound the hands of the miserable victims, and took other precautions for their security at night, thinking that the whole race would perish together. + +The heathen believed the Jews to be destitute of all protection, for chains bound them. + +They invoked the Almighty Lord, and ceaselessly implored with tears their merciful God and Father, Ruler of all, Lord of every power, + +to overthrow the evil purpose which had gone out against them, and to deliver them by extraordinary manifestation from that death which was in store for them. + +Their earnest entreaty went up to heaven. + +Then Hermon, who had filled his merciless elephants with copious drinks of mixed wine and frankincense, came early to the palace to report on these preparations. + +He, however, who has sent his good creatures sleep from all time by night or by day thus gratifying whom he wills, diffused a portion of it now upon the king. + +By this sweet and profound influence of the Lord, he was held fast, and thus his unjust purpose was quite frustrated, and his unflinching resolve greatly falsified. + +But the Jews, having escaped the hour which had been fixed, praised their holy God, and again prayed him who is easily reconciled to display the power of his powerful hand to the arrogant Gentiles. + +The middle of the tenth hour had nearly arrived, when the person who sent invitations, seeing the guests who were invited present, came and shook the king. + +He gained his attention with difficulty, and hinting that the mealtime was getting past, talked the matter over with him. + +The king listened to this, and then turning aside to his drinking, commanded the guests to sit down before him. + +This done, he asked them to enjoy themselves, and to indulge in mirth at this somewhat late hour of the banquet. + +Conversation grew on, and the king sent for Hermon, and inquired of him, with fierce denunciations, why the Jews had been allowed to outlive that day. + +Hermon explained that he had done his bidding over night; and in this he was confirmed by his friends. + +The king, then, with a barbarity exceeding that of Phalaris, said, “They might thank his sleep of that day. Lose no time, and get ready the elephants against tomorrow, as you did before, for the destruction of these accursed Jews.” + +When the king said this, the company present were glad, and approved. Then each man went to his own home. + +They didn’t employ the night in sleep, but in contriving cruel mockeries for those deemed miserable. + +The morning cock had just crowed, and Hermon, having harnessed the brutes, was stimulating them in the great colonnade. + +The city crowds were collected together to see the hideous spectacle, and waited impatiently for the dawn. + +The Jews, breathless with momentary suspense, stretched out their hands and prayed the Greatest God, in mournful strains, again to help them speedily. + +The sun’s rays were not yet shining and the king was waiting for his friends when Hermon came to him, calling him out, and saying that his desires could now be realized. + +The king, receiving him, was astonished at his unusual invitation. Overwhelmed with a spirit of oblivion about everything, inquired about the object of this earnest preparation. + +But this was the working of that Almighty God who had made him forget all his purpose. + +Hermon and all his friends pointed out the preparation of the animals. They are ready, O king, according to your own strict injunction. + +The king was filled with fierce anger at these words, for, by the Providence of God regarding these things, his mind had become entirely confused. He looked hard at Hermon, and threatened him as follows: + +“Your parents, or your children, were they here, would have given a large meal to these wild animals, not these innocent Jews, who have loyally served me and my forefathers. + +Had it not been for familiar friendship, and the claims of your office, your life should have gone for theirs.” + +

+

Hermon, being threatened in this unexpected and alarming manner, was troubled in his eyes, and his face fell. + +The friends, too, stole out one by one, and dismissed the assembled multitudes to their respective occupations. + +The Jews, having heard of these events, praised the glorious God and King of kings, because they had obtained this help, too, from him. + +Now the king arranged another banquet in the same way, and proclaimed an invitation to mirth. + +He summoned Hermon to his presence, and said, with threats, “How often, O wretch, must I repeat my orders to you about these same persons? + +Once more, arm the elephants for the extermination of the Jews tomorrow!” + +His kinsmen, who were reclining with him, wondered at his instability, and thus expressed themselves: + +“O king, how long do you test us, as of men bereft of reason? This is the third time that you have ordered their destruction. When the thing is to be done, you change your mind, and recall your instructions. + +Because of this, the feeling of expectation causes tumult in the city. It swarms with factions, and is continually on the point of being plundered.” + +

+

The king, just like another Phalaris, a prey to thoughtlessness, made no account of the changes which his own mind had undergone, issuing in the deliverance of the Jews. He swore a fruitless oath, and determined immediately to send them to hades, crushed by the knees and feet of the elephants. + +He would also invade Judea, level its towns with fire and the sword, destroy that temple which the heathen might not enter, and prevent sacrifices ever after being offered up there. + +Joyfully his friends broke up, together with his kinsmen; and, trusting in his determination, arranged their forces in guard at the most convenient places of the city. + +The master of the elephants urged the animals into an almost maniacal state, drenched them with incense and wine, and decked them with frightful devices. + +About early morning, when the city was filled with an immense number of people at the hippodrome, he entered the palace and called the king to the business in hand. + +The king’s heart teemed with impious rage; and he rushed forth with the mass, along with the elephants. With unsoftened feelings and pitiless eyes, he longed to gaze at the hard and wretched doom of the previously mentioned Jews. + +The elephants went out at the gate, followed by the armed force. When the Jews saw the dust raised by the throng, and heard the loud cries of the crowd, + +they thought that they had come to the last moment of their lives, to the end that they had tremblingly expected. They gave way, therefore, to lamentations and moans. They kissed each other. Those nearest of kin to each other hung around one another’s necks—fathers hugging their sons and mothers their daughters. Other women held their infants to their breasts, which drew what seemed their last milk. + +Nevertheless, when they reflected upon the help previously granted them from heaven, they prostrated themselves with one accord, removed even the sucking children from the breasts, and + +sent up an exceedingly great cry asking the Lord of all power to reveal himself, and have mercy upon those who now lay at the gates of hades. + +

+ + +

Then Eleazar, an illustrious priest of the country, who had attained to length of days, and whose life had been adorned with virtue, caused the elders who were around him to cease to cry out to the holy God, and prayed this: + +“O king, mighty in power, most high, Almighty God, who regulates the whole creation with your tender mercy, + +look at the seed of Abraham, at the children of the sanctified Jacob, your sanctified inheritance, O Father, now being wrongfully destroyed as foreigners in a foreign land. + +You destroyed Pharaoh with his army of chariots when that lord of this same Egypt was uplifted with lawless daring and loud-sounding tongue. Shedding the beams of your mercy upon the race of Israel, you overwhelmed him and his proud army. + +When Sennacherim, the grievous king of the Assyrians, exulting in his countless army, had subdued the whole land with his spear and was lifting himself against your holy city with boastings grievous to be endured, you, O Lord, demolished him and displayed your might to many nations. + +When the three friends in the land of Babylon of their own will exposed their lives to the fire rather than serve vain things, you sent a moist coolness through the fiery furnace, and brought the fire on all their adversaries. + +It was you who, when Daniel was hurled, through slander and envy, as a prey to lions down below, brought him back again unharmed to light. + +When Jonah was pining away in the belly of the sea-born monster, you looked at him, O Father, and recovered him to the sight of his own. + +Now, you who hate insolence, you who abound in mercy, you who are the protector of all things, appear quickly to those of the race of Israel, who are insulted by abhorred, lawless gentiles. + +If our life during our exile has been stained with iniquity, deliver us from the hand of the enemy, and destroy us, O Lord, by the death which you prefer. + +Don’t let the vain-minded congratulate vain idols at the destruction of your beloved, saying, ‘Their god didn’t deliver them.’ + +You who are All-powerful and Almighty, O Eternal One, behold! Have mercy on us who are being withdrawn from life, like traitors, by the unreasoning insolence of lawless men. + +Let the heathen cower before your invincible might today, O glorious One, you who have all power to save the race of Jacob. + +The whole band of infants and their parents ask you with tears. + +Let it be shown to all the nations that you are with us, O Lord, and have not turned your face away from us, but as you said that you would not forget them even in the land of their enemies, so fulfill this saying, O Lord.” + +

+

Now, at the time that Eleazar had ended his prayer, the king came along to the hippodrome with the wild animals, and with his tumultuous power. + +When the Jews saw this, they uttered a loud cry to heaven so that the adjacent valleys resounded and caused an irrepressible lamentation throughout the army. + +Then the all-glorious, all-powerful, and true God, displayed his holy countenance, and opened the gates of heaven, from which two angels, dreadful of form, came down and were visible to all but the Jews. + +They stood opposite, and filled the enemies’ army with confusion and cowardice, and bound them with immoveable shackles. + +A cold shudder came over the person of the king, and oblivion paralyzed the vehemence of his spirit. + +They turned back the animals on the armed forces who followed them; and the animals trampled them and destroyed them. + +The king’s wrath was converted into compassion; and he wept at the things he had devised. + +For when he heard the cry, and saw them all on the verge of destruction, with tears he angrily threatened his friends, saying, + +“You have governed badly, and have exceeded tyrants in cruelty. You have labored to deprive me, your benefactor, at once of my dominion and my life, by secretly devising measures injurious to the kingdom. + +Who has gathered here, unreasonably removing each from his home, those who, in fidelity to us, had held the fortresses of the country? + +Who has consigned to unmerited punishments those who in good will toward us from the beginning have in all things surpassed all nations, and who often have engaged in the most dangerous undertakings? + +Loose, loose the unjust bonds! Send them to their homes in peace, begging pardon for what has been done. + +Release the sons of the almighty living God of heaven, who from our ancestors’ times until now has granted a glorious and uninterrupted prosperity to our affairs.” + +He said these things, and they, released the same moment, having now escaped death, praised God their holy Savior. + +

+

The king then departed to the city, and called his financier to himself, and asked him to provide a seven days’ quantity of wine and other materials for feasting for the Jews. He decided that they should keep a cheerful festival of deliverance in the very place in which they expected to meet with their destruction. + +Then they who were before despised and near to hades, yes, rather advanced into it, partook of the cup of salvation, instead of a grievous and lamentable death. Full of exultation, they apportioned the place intended for their fall and burial into banqueting booths. + +Ceasing their miserable strain of woe, they took up the subject of their fatherland, singing in praise to God their wonder-working Savior. All groans and all wailing were laid aside. They formed dances as a sign of peaceful joy. + +So the king also collected a number of guests for the occasion, and returned unceasing thanks with much magnificence for the unexpected deliverance afforded him. + +Those who had marked them out as for death and for carrion, and had registered them with joy, howled aloud, and were clothed with shame, and had the fire of their rage ingloriously put out. + +But the Jews, as we just said, instituted a dance, and then gave themselves up to feasting, glad thanksgiving, and psalms. + +They made a public ordinance to commemorate these things for generations to come, as long as they should be sojourners. They thus established these days as days of mirth, not for the purpose of drinking or luxury, but because God had saved them. + +They requested the king to send them back to their homes. + +They were being enrolled from the twenty-fifth of Pachon to the fourth of Epiphi, a period of forty days. The measures taken for their destruction lasted from the fifth of Epiphi till the seventh, that is, three days. + +The Ruler over all during this time manifested his mercy gloriously, and delivered them all together unharmed. + +They feasted upon the king’s provision up to the fourteenth day, then asked to be sent away. + +The king commended them, and wrote the following letter, of magnanimous import for them, to the commanders of every city: + +

+ + +

“King Ptolemy Philopator to the commanders throughout Egypt, and to all who are set over affairs, joy and strength. + +We, too, and our children are well. God has directed our affairs as we wish. + +Certain of our friends out of malice vehemently urged us to punish the Jews of our realm in a body, with the infliction of a monstrous punishment. + +They pretended that our affairs would never be in a good state till this took place. Such, they said, was the hatred borne by the Jews to all other people. + +They brought them fettered in grievous chains as slaves, no, as traitors. Without enquiry or examination they endeavored to annihilate them. They buckled themselves with a savage cruelty, worse than Scythian custom. + +For this cause we severely threatened them; yet, with the clemency which we usually extend to all men, we at length permitted them to live. Finding that the God of heaven cast a shield of protection over the Jews so as to preserve them, and that he fought for them as a father always fights for his sons, + +and taking into consideration their constancy and fidelity toward us and toward our ancestors, we have, as we ought, acquitted them of every sort of charge. + +We have dismissed them to their several homes, telling all men everywhere to do them no wrong, or unrighteously revile them about the past. + +For know this, that should we conceive any evil design, or in any way aggrieve them, we shall ever have as our adversary, not man, but the highest God, the ruler of all might. From Him there will be no escape, as the avenger of such deeds. Farewell.” + +

+

When they had received this letter, they didn’t hurry to depart immediately. They petitioned the king to be allowed to inflict fitting punishment upon those of their race who had willingly transgressed the holy god, and the law of God. + +They alleged that men who had for their bellies’ sake transgressed the ordinances of God, would never be faithful to the interests of the king. + +The king admitted the truth of this reasoning, and commended them. Full power was given them, without warrant or special commission, to destroy those who had transgressed the law of God boldly in every part of the king’s dominions. + +Their priests, then, as it was appropriate, saluted him with good wishes, and all the people echoed with the “Hallelujah!” Then they joyfully departed. + +Then they punished and shamefully destroyed every polluted Jew that fell in their way, + +slaying this way, in that day, more than three hundred men, and esteeming this destruction of the wicked a season of joy. + +They themselves having held closely to their God to death, and having enjoyed a full deliverance, departed from the city garlanded with sweet-flowered wreaths of every kind. Uttering exclamations of joy, with songs of praise, and melodious hymns, they thanked the God of their fathers, the eternal Savior of Israel. + +Having arrived at Ptolemais, called from the specialty of that district “Rose-bearing”, where the fleet, in accordance with the general wish, waited for them seven days, + +they partook of a banquet of deliverance, for the king generously granted them all the means of securing a return home. + +They were accordingly brought back in peace, while they gave utterance to appropriate thanks; and they determined to observe these days during their sojourn as days of joyfulness. + +These they registered as sacred upon a pillar, when they had dedicated the place of their festivity to be one of prayer. They departed unharmed, free, abundant in joy, preserved by the king’s command, by land, by sea, and by river, each to his own home. + +They had more weight than before among their enemies, and were honored and feared. No one in any way robbed them of their goods. + +Every man received back his own, according to inventory, those who had obtained their goods, giving them up with the greatest terror. For the greatest God made perfect wonders for their salvation. + +Blessed be the Redeemer of Israel forever! Amen. + +

+
+- 2 Esdras +2 Esdras +The Second Book of Esdras +2 Esdras +2Es +

The Second Book of Esdras +

+

The Second Book of Esdras is included in the Slavonic Bible as +3 Esdras, but is not found in the Greek Septuagint. It is included in the Appendix to the Latin Vulgate Bible as +4 Esdras. It is considered to be Apocrypha by most church traditions. It is preserved here for its supplementary historical value. +

+ + +

The second book of the prophet Esdras, the son of Saraias, the son of Azaraias, the son of Helkias, the son of Salemas, the son of Sadoc, the son of Ahitob, + +the son of Achias, the son of Phinees, the son of Heli, the son of Amarias, the son of Aziei, the son of Marimoth, the son of Arna, the son of Ozias, the son of Borith, the son of Abissei, the son of Phinees, the son of Eleazar, + +the son of Aaron, of the tribe of Levi, who was captive in the land of the Medes, in the reign of Artaxerxes king of the Persians. + +

+

The Lord’s word came to me, saying, + +“Go your way and show my people their sinful deeds, and their children their wickedness which they have done against me, that they may tell their children’s children, + +because the sins of their fathers have increased in them, for they have forgotten me, and have offered sacrifices to foreign gods. + +Didn’t I bring them out of the land of Egypt, out of the house of bondage? But they have provoked me to wrath and have despised my counsels. + +So pull out the hair of your head and cast all evils upon them, for they have not been obedient to my law, but they are a rebellious people. + +How long shall I endure them, to whom I have done so much good? + +I have overthrown many kings for their sakes. I have struck down Pharoah with his servants and all his army. + +I have destroyed all the nations before them. In the east, I have scattered the people of two provinces, even of Tyre and Sidon, and have slain all their adversaries. + +Speak therefore to them, saying: + +

+

“The Lord says, truly I brought you through the sea, and where there was no path I made highways for you. I gave you Moses for a leader and Aaron for a priest. + +I gave you light in a pillar of fire. I have done great wonders among you, yet you have forgotten me, says the Lord. + +

+

“The Lord Almighty says: The quails were for a token to you. I gave you a camp for your protection, but you complained there. + +You didn’t celebrate in my name for the destruction of your enemies, but even to this day you still complain. + +Where are the benefits that I have given you? When you were hungry and thirsty in the wilderness, didn’t you cry to me, + +saying, ‘Why have you brought us into this wilderness to kill us? It would have been better for us to have served the Egyptians than to die in this wilderness.’ + +I had pity on your mourning and gave you manna for food. You ate angels’ bread. + +When you were thirsty, didn’t I split the rock, and water flowed out in abundance? Because of the heat, I covered you with the leaves of the trees. + +I divided fruitful lands among you. I drove out the Canaanites, the Pherezites, and the Philistines before you. What more shall I do for you?” says the Lord. + +

+

The Lord Almighty says, “When you were in the wilderness, at the bitter stream, being thirsty and blaspheming my name, + +I gave you not fire for your blasphemies, but threw a tree in the water, and made the river sweet. + +What shall I do to you, O Jacob? You, Judah, would not obey me. I will turn myself to other nations, and I will give my name to them, that they may keep my statutes. + +Since you have forsaken me, I also will forsake you. When you ask me to be merciful to you, I will have no mercy upon you. + +Whenever you call upon me, I will not hear you, for you have defiled your hands with blood, and your feet are swift to commit murder. + +It is not as though you have forsaken me, but your own selves,” says the Lord. + +

+

The Lord Almighty says, “Haven’t I asked you as a father his sons, as a mother her daughters, and a nurse her young babies, + +that you would be my people, and I would be your God, that you would be my children, and I would be your father? + +I gathered you together, as a hen gathers her chicks under her wings. But now, what should I do to you? I will cast you out from my presence. + +When you offer burnt sacrifices to me, I will turn my face from you, for I have rejected your solemn feast days, your new moons, and your circumcisions of the flesh. + +I sent to you my servants the prophets, whom you have taken and slain, and torn their bodies in pieces, whose blood I will require from you,” says the Lord. + +

+

The Lord Almighty says, “Your house is desolate. I will cast you out as the wind blows stubble. + +Your children won’t be fruitful, for they have neglected my commandment to you, and done that which is evil before me. + +I will give your houses to a people that will come, which not having heard of me yet believe me. Those to whom I have shown no signs will do what I have commanded. + +They have seen no prophets, yet they will remember their former condition. + +I call to witness the gratitude of the people who will come, whose little ones rejoice with gladness. Although they see me not with bodily eyes, yet in spirit they will believe what I say.” + +

+

And now, father, behold with glory, and see the people that come from the east: + +to whom I will give for leaders, Abraham, Isaac, and Jacob, Oseas, Amos, and Micheas, Joel, Abdias, and Jonas, + +Nahum, and Abacuc, Sophonias, Aggaeus, Zachary, and Malachy, who is also called the Lord’s messenger. + +

+ + +

The Lord says, “I brought this people out of bondage. I gave them my commandments by my servants the prophets, whom they would not listen to, but made my counsels void. + +The mother who bore them says to them, ‘Go your way, my children, for I am a widow and forsaken. + +I brought you up with gladness, and I have lost you with sorrow and heaviness, for you have sinned before the Lord God, and done that which is evil before me. + +But now what can I do for you? For I am a widow and forsaken. Go your way, my children, and ask for mercy from the Lord.’ + +As for me, O father, I call upon you for a witness in addition to the mother of these children, because they would not keep my covenant, + +that you may bring them to confusion, and their mother to ruin, that they may have no offspring. + +Let them be scattered abroad among the heathen. Let their names be blotted out of the earth, for they have despised my covenant. + +Woe to you, Assur, you who hide the unrighteous with you! You wicked nation, remember what I did to Sodom and Gomorrah, + +whose land lies in lumps of pitch and heaps of ashes. That is what I will also do to those who have not listened to me,” says the Lord Almighty. + +

+

The Lord says to Esdras, “Tell my people that I will give them the kingdom of Jerusalem, which I would have given to Israel. + +I will also take their glory back to myself, and give these the everlasting tabernacles which I had prepared for them. + +They will have the tree of life for fragrant perfume. They will neither labor nor be weary. + +Ask, and you will receive. Pray that your days may be few, that they may be shortened. The kingdom is already prepared for you. Watch! + +Call heaven and earth to witness. Call them to witness, for I have left out evil, and created the good, for I live, says the Lord. + +

+

“Mother, embrace your children. I will bring them out with gladness like a dove does. Establish their feet, for I have chosen you, says the Lord. + +I will raise those who are dead up again from their places, and bring them out from their tombs, for I recognize my name in them. + +Don’t be afraid, you mother of children, for I have chosen you, says the Lord. + +For your help, I will send my servants Esaias and Jeremy, after whose counsel I have sanctified and prepared for you twelve trees laden with various fruits, + +and as many springs flowing with milk and honey, and seven mighty mountains, on which roses and lilies grow, with which I will fill your children with joy. + +Do right to the widow. Secure justice for the fatherless. Give to the poor. Defend the orphan. Clothe the naked. + +Heal the broken and the weak. Don’t laugh a lame man to scorn. Defend the maimed. Let the blind man have a vision of my glory. + +Protect the old and young within your walls. + +Wherever you find the dead, set a sign upon them and commit them to the grave, and I will give you the first place in my resurrection. + +Stay still, my people, and take your rest, for your rest will come. + +Nourish your children, good nurse, and establish their feet. + +As for the servants whom I have given you, not one of them will perish, for I will require them from among your number. + +Don’t be anxious, for when the day of suffering and anguish comes, others will weep and be sorrowful, but you will rejoice and have abundance. + +The nations will envy you, but they will be able to do nothing against you, says the Lord. + +My hands will cover you, so that your children don’t see Gehenna.2:29 +or, +Hell. + + +Be joyful, mother, with your children, for I will deliver you, says the Lord. + +Remember your children who sleep, for I will bring them out of the secret places of the earth and show mercy to them, for I am merciful, says the Lord Almighty. + +Embrace your children until I come, and proclaim mercy to them, for my wells run over, and my grace won’t fail.” + +

+

I, Esdras, received a command from the Lord on Mount Horeb to go to Israel, but when I came to them, they rejected me and rejected the Lord’s commandment. + +Therefore I say to you, O nations that hear and understand, “Look for your shepherd. He will give you everlasting rest, for he is near at hand who will come at the end of the age. + +Be ready for the rewards of the kingdom, for the everlasting light will shine on you forevermore. + +Flee the shadow of this world, receive the joy of your glory. I call to witness my savior openly. + +Receive that which is given to you by the Lord, and be joyful, giving thanks to him who has called you to heavenly kingdoms. + +Arise and stand up, and see the number of those who have been sealed at the Lord’s feast. + +Those who withdrew themselves from the shadow of the world have received glorious garments from the Lord. + +Take again your full number, O Zion, and make up the reckoning of those of yours who are clothed in white, which have fulfilled the law of the Lord. + +The number of your children, whom you long for, is fulfilled. Ask the power of the Lord, that your people, which have been called from the beginning, may be made holy.” + +

+

I, Esdras, saw upon Mount Zion a great multitude, whom I could not number, and they all praised the Lord with songs. + +In the midst of them, there was a young man of a high stature, taller than all the rest, and upon every one of their heads he set crowns, and he was more exalted than they were. I marveled greatly at this. + +So I asked the angel, and said, “What are these, my Lord?” + +

+

He answered and said to me, “These are those who have put off the mortal clothing, and put on the immortal, and have confessed the name of God. Now they are crowned, and receive palms.” + +

+

Then said I to the angel, “Who is the young man who sets crowns on them, and gives them palms in their hands?” + +

+

So he answered and said to me, “He is the Son of God, whom they have confessed in the world.” +

+

Then I began to praise those who stood so valiantly for the name of the Lord. + +

+

Then the angel said to me, “Go your way, and tell my people what kind of things, and how great wonders of the Lord God you have seen.” + +

+ + +

In the thirtieth year after the ruin of the city, I Salathiel, also called Esdras, was in Babylon, and lay troubled upon my bed, and my thoughts came up over my heart, + +for I saw the desolation of Zion and the wealth of those who lived at Babylon. + +My spirit was very agitated, so that I began to speak words full of fear to the Most High, and said, + +“O sovereign Lord, didn’t you speak at the beginning when you formed the earth—and that yourself alone—and commanded the dust + +and it gave you Adam, a body without a soul? Yet it was the workmanship of your hands, and you breathed into him the breath of life, and he was made alive in your presence. + +You led him into the garden which your right hand planted before the earth appeared. + +You gave him your one commandment, which he transgressed, and immediately you appointed death for him and his descendants. From him were born nations, tribes, peoples, and kindred without number. + +Every nation walked after their own will, did ungodly things in your sight, and despised your commandments, and you didn’t hinder them. + +Nevertheless, again in process of time, you brought the flood on those who lived in the world and destroyed them. + +It came to pass that the same thing happened to them. Just as death came to Adam, so was the flood to these. + +Nevertheless, you left one of them, Noah with his household, and all the righteous men who descended from him. + +

+

“It came to pass that when those who lived upon the earth began to multiply, they also multiplied children, peoples, and many nations, and began again to be more ungodly than their ancestors. + +It came to pass, when they did wickedly before you, you chose one from among them, whose name was Abraham. + +You loved, and to him only you showed the end of the times secretly by night, + +and made an everlasting covenant with him, promising him that you would never forsake his descendants. To him, you gave Isaac, and to Isaac you gave Jacob and Esau. + +You set apart Jacob for yourself, but rejected Esau. Jacob became a great multitude. + +It came to pass that when you led his descendants out of Egypt, you brought them up to Mount Sinai. + +You bowed the heavens also, shook the earth, moved the whole world, made the depths tremble, and troubled the age. + +Your glory went through four gates, of fire, of earthquake, of wind, and of ice, that you might give the law to the descendants of Jacob, and the commandment to the descendants of Israel. + +

+

“Yet you didn’t take away from them their wicked heart, that your law might produce fruit in them. + +For the first Adam, burdened with a wicked heart transgressed and was overcome, as were all who are descended from him. + +Thus disease was made permanent. The law was in the heart of the people along with the wickedness of the root. So the good departed away and that which was wicked remained. + +So the times passed away, and the years were brought to an end. Then you raised up a servant, called David, + +whom you commanded to build a city to your name, and to offer burnt offerings to you in it from what is yours. + +When this was done many years, then those who inhabited the city did evil, + +in all things doing as Adam and all his generations had done, for they also had a wicked heart. + +So you gave your city over into the hands of your enemies. + +

+

“Then I said in my heart, ‘Are their deeds of those who inhabit Babylon any better? Is that why it gained dominion over Zion?’ + +For it came to pass when I came here, that I also saw impieties without number, and my soul saw many sinners in this thirtieth year, so that my heart failed me. + +For I have seen how you endure them sinning, and have spared those who act ungodly, and have destroyed your people, and have preserved your enemies; + +and you have not shown how your way may be comprehended. Are the deeds of Babylon better than those of Zion? + +Or is there any other nation that knows you beside Israel? Or what tribes have so believed your covenants as these tribes of Jacob? + +Yet their reward doesn’t appear, and their labor has no fruit, for I have gone here and there through the nations, and I see that they abound in wealth, and don’t think about your commandments. + +Weigh therefore our iniquities now in the balance, and theirs also who dwell in the world, and so will it be found which way the scale inclines. + +Or when was it that they who dwell on the earth have not sinned in your sight? Or what nation has kept your commandments so well? + +You will find some men by name who have kept your precepts, but you won’t find nations.” + +

+ + +

The angel who was sent to me, whose name was Uriel, gave me an answer, + +and said to me, “Your understanding has utterly failed you regarding this world. Do you think you can comprehend the way of the Most High?” + +

+

Then I said, “Yes, my Lord.” +

+

He answered me, “I have been sent to show you three ways, and to set before you three problems. + +If you can solve one for me, I also will show you the way that you desire to see, and I will teach you why the heart is wicked.” + +

+

I said, “Say on, my Lord.” +

+

Then said he to me, “Go, weigh for me the weight of a fire, or measure for me a blast of wind, or call back for me the day that is past.” + +

+

Then answered I and said, “Who of the sons of men is able to do this, that you should ask me about such things?” + +

+

He said to me, “If I had asked you, ‘How many dwellings are there in the heart of the sea? Or how many springs are there at the fountain head of the deep? Or how many streams are above the firmament? Or which are the exits +4:7 +So the Syriac. The Latin omits +of hell? or which are the paths.of hell? Or which are the entrances of paradise?’ + +perhaps you would say to me, ‘I never went down into the deep, or as yet into hell, neither did I ever climb up into heaven.’ + +Nevertheless now I have only asked you about the fire, wind, and the day, things which you have experienced, and from which you can’t be separated, and yet you have given me no answer about them. ” + +

+

He said moreover to me, “You can’t understand your own things that you grew up with. + +How then can your mind comprehend the way of the Most High? How can he who is already worn out with the corrupted world understand incorruption?” +

+

4:11 +So the Syriac and Aethiopic. The Latin is corrupt.When I heard these things, I fell on my face + +and said to him, “It would have been better if we weren’t here at all, than that we should come here and live in the midst of ungodliness, and suffer, and not know why.” + +

+

He answered me, and said, +4:13 +So the Oriental versions. The Latin is corrupt. See Judges 9:8. +“A forest of the trees of the field went out, and took counsel together, + +and said, ‘Come! Let’s go and make war against the sea, that it may depart away before us, and that we may make ourselves more forests.’ + +The waves of the sea also in like manner took counsel together, and said, ‘Come! Let’s go up and subdue the forest of the plain, that there also we may gain more territory.’ + +The counsel of the wood was in vain, for the fire came and consumed it. + +Likewise also the counsel of the waves of the sea, for the sand stood up and stopped them. + +If you were judge now between these two, which would you justify, or which would you condemn?” + +

+

I answered and said, “It is a foolish counsel that they both have taken, for the ground is given to the wood, and the place of the sea is given to bear its waves.” + +

+

Then answered he me, and said, “You have given a right judgment. Why don’t you judge your own case? + +For just as the ground is given to the wood, and the sea to its waves, even so those who dwell upon the earth may understand nothing but what is upon the earth. Only he who dwells above the heavens understands the things that are above the height of the heavens.” + +

+

Then answered I and said, “I beg you, O Lord, why has the power of understanding been given to me? + +For it was not in my mind to be curious of the ways above, but of such things as pass by us daily, because Israel is given up as a reproach to the heathen. The people whom you have loved have been given over to ungodly nations. The law of our forefathers is made of no effect, and the written covenants are nowhere regarded. + +We pass away out of the world like locusts. Our life is like a vapor, and we aren’t worthy to obtain mercy. + +What will he then do for his name by which we are called? I have asked about these things.” + +

+

Then he answered me, and said, “If you are alive you will see, and if you live long, you will marvel, for the world hastens quickly to pass away. + +For it is not able to bear the things that are promised to the righteous in the times to come; for this world is full of sadness and infirmities. + +For the evil4:28 +so the Syriac and Aethiopic. about which you asked me has been sown, but its harvest hasn’t yet come. + +If therefore that which is sown isn’t reaped, and if the place where the evil is sown doesn’t pass away, the field where the good is sown won’t come. + +For a grain of evil seed was sown in the heart of Adam from the beginning, and how much wickedness it has produced to this time! How much more it will yet produce until the time of threshing comes! + +Ponder now by yourself, how much fruit of wickedness a grain of evil seed has produced. + +When the grains which are without number are sown, how great a threshing floor they will fill!” + +

+

Then I answered and said, +4:33 +So the chief oriental versions. +“How long? When will these things come to pass? Why are our years few and evil?” + +

+

He answered me, and said, “Don’t hurry faster than the Most High; for your haste is4:34 +So the Syriac. The Latin is corrupt. + for your own self, but he who is above hurries on behalf of many. + +Didn’t the souls of the righteous ask about these things in their chambers, saying, ‘How long +4:35 +So the Syriac. The Latin has +shall I hope on this fashion? +will we be here? When does the fruit of the threshing floor come?’ + +To them, Jeremiel the archangel answered, ‘When the number is fulfilled of those who are like you. For he has weighed the world in the balance. + +By measure, he has measured the times. By number, he has counted the seasons. He won’t +4:37 +Syr. +rest. +move or stir them until that measure is fulfilled.’” + +

+

Then I answered, “O sovereign Lord, all of us are full of ungodliness. + +Perhaps it is for our sakes that the threshing time of the righteous is kept back—because of the sins of those who dwell on the earth.” + +

+

So he answered me, “Go your way to a woman with child, and ask of her when she has fulfilled her nine months, if her womb may keep the baby any longer within her.” + +

+

Then I said, “No, Lord, that can it not.” +

+

He said to me, “In Hades, the chambers of souls are like the womb. + +For just like a woman in labor hurries to escape the anguish of the labor pains, even so these places hurry to deliver those things that are committed to them from the beginning. + +Then you will be shown those things which you desire to see.” + +

+

Then I answered, “If I have found favor in your sight, and if it is possible, and if I am worthy, + +show me this also, whether there is more to come than is past, or whether the greater part has gone over us. + +For what is gone I know, but I don’t know what is to come.” + +

+

He said to me, “Stand up on my right side, and I will explain the parable to you.” + +

+

So I stood, looked, and saw a hot burning oven passed by before me. It happened that when the flame had gone by I looked, and saw that the smoke remained. + +After this, a watery cloud passed in front of me, and sent down much rain with a storm. When the stormy rain was past, the drops still remained in it.” + +

+

Then said he to me, “Consider with yourself; as the rain is more than the drops, and the fire is greater than the smoke, so the quantity which is past was far greater; but the drops and the smoke still remained.” + +

+

Then I prayed, and said, “Do you think that I will live until that time? Or who will be alive in those days?” + +

+

He answered me, “As for the signs you asked me about, I may tell you of them in part; but I wasn’t sent to tell you about your life, for I don’t know. + +

+ + +

“Nevertheless, concerning the signs, behold, the days will come when those who dwell on earth will be taken +5:1 +So the syriac. +with great amazement, and the way of truth will be hidden, and the land will be barren of faith. + +Iniquity will be increased above what now you see, and beyond what you have heard long ago. + +The land that you now see ruling will be a trackless waste, and men will see it desolate. + +But if the Most High grants you to live, you will see troubles after the third period. The sun will suddenly shine in the night, and the moon in the day. + +Blood will drop out of wood, and the stone will utter its voice. The peoples will be troubled, and the stars will fall. + +He will rule whom those who dwell on the earth don’t expect, and the birds will fly away together. + +The Sodomite sea will cast out fish, and make a noise in the night, which many have not known; but all will hear its voice. + +There will also be chaos in many places. Fires will break out often, and the wild animals will change their places, and women will bring forth monsters. + +Salt waters will be found in the sweet, and all friends will destroy one another. Then reason will hide itself, and understanding withdraw itself into its chamber. + +It will be sought by many, and won’t be found. Unrighteousness and lack of restraint will be multiplied on earth. + +One country will ask another, ‘Has righteousness, or a man that does righteousness, gone through you?’ And it will say, ‘No.’ + +It will come to pass at that time that men will hope, but won’t obtain. They will labor, but their ways won’t prosper. + +I am permitted to show you such signs. If you will pray again, and weep as now, and fast seven days, you will hear yet greater things than these.” + +

+

Then I woke up, and an extreme trembling went through my body, and my mind was so troubled that it fainted. + +So the angel who had come to talk with me held me, comforted me, and set me on my feet. + +

+

In the second night, it came to pass that +5:16 +The Syriac has +Psaltiel. +Phaltiel the captain of the people came to me, saying, “Where have you been? Why is your face sad? + +Or don’t you know that Israel is committed to you in the land of their captivity? + +Get up then, and eat some bread, and don’t forsake us, like a shepherd who leaves the flock in the power of cruel wolves.” + +

+

Then said I to him, “Go away from me and don’t come near me for seven days, and then you shall come to me.” He heard what I said and left me. + +

+

So I fasted seven days, mourning and weeping, like Uriel the angel had commanded me. + +After seven days, the thoughts of my heart were very grievous to me again, + +and my soul recovered the spirit of understanding, and I began to speak words before the Most High again. + +I said, “O sovereign Lord of all the woods of the earth, and of all the trees thereof, you have chosen one vine for yourself. + +Of all the lands of the world you have chosen one +5:24 +After the Oriental versions. The Latin has +pit. +country for yourself. Of all the flowers of the world, you have chosen one lily for yourself. + +Of all the depths of the sea, you have filled one river for yourself. Of all built cities, you have consecrated Zion for yourself. + +Of all the birds that are created you have named for yourself one dove. Of all the livestock that have been made, you have provided for yourself one sheep. + +Among all the multitudes of peoples you have gotten yourself one people. To this people, whom you loved, you gave a law that is approved by all. + +Now, O Lord, why have you given this one people over to many, and +5:28 +After the Oriental versions. The Latin reads +have prepared.have dishonored the one root above others, and have scattered your only one among many? + +Those who opposed your promises have trampled down those who believed your covenants. + +If you really do hate your people so much, they should be punished with your own hands.” + +

+

Now when I had spoken these words, the angel that came to me the night before was sent to me, + +and said to me, “Hear me, and I will instruct you. Listen to me, and I will tell you more.” + +

+

I said, “Speak on, my Lord.” +

+

Then said he to me, “You are very troubled in mind for Israel’s sake. Do you love that people more than he who made them?” + +

+

I said, “No, Lord; but I have spoken out of grief; for my heart is in agony every hour while I labor to comprehend the way of the Most High, and to seek out part of his judgment.” + +

+

He said to me, “You can’t.” +

+

And I said, “Why, Lord? Why was I born? Why wasn’t my mother’s womb my grave, that I might not have seen the travail of Jacob, and the wearisome toil of the people of Israel?” + +

+

He said to me, “Count for me those who haven’t yet come. Gather together for me the drops that are scattered abroad, and make the withered flowers green again for me. + +Open for me the chambers that are closed, and bring out the winds for me that are shut up in them. Or show me the image of a voice. Then I will declare to you the travail that you asked to see.” + +

+

And I said, “O sovereign Lord, who may know these things except he who doesn’t have his dwelling with men? + +As for me, I lack wisdom. How can I then speak of these things you asked me about?” + +

+

Then said he to me, “Just as you can do none of these things that I have spoken of, even so you can’t find out my judgment, or the end of the love that I have promised to my people.” + +

+

I said, “But, behold, O Lord, you have made the promise to those who are alive at the end. What should they do who have been before us, or we ourselves, or those who will come after us?” + +

+

He said to me, “I will compare my judgment to a ring. Just as there is no slowness of those who are last, even so there is no swiftness of those who be first.” + +

+

So I answered, “Couldn’t you make them all at once that have been made, and that are now, and that are yet to come, that you might show your judgment sooner?” + +

+

Then he answered me, “The creature may not move faster than the creator, nor can the world hold them at once who will be created in it.” + +

+

And I said, “How have you said to your servant, that +5:45 +So the Syriac. +you will surely make alive at once the creature that you have created? +5:45 +The Latin omits +If...alive at once. +If therefore they will be alive at once, and the creation will sustain them, even so it might now also support them to be present at once.” + +

+

And he said to me, “Ask the womb of a woman, and say to her, ‘If you bear ten children, why do you it at different times? Ask her therefore to give birth to ten children at once.” + +

+

I said, “She can’t, but must do it each in their own time.” + +

+

Then said he to me, “Even so, I have given the womb of the earth to those who are sown in it in their own times. + +For just as a young child may not give birth, neither she who has grown old any more, even so have I organized the world which I created.” + +

+

I asked, “Seeing that you have now shown me the way, I will speak before you. Is our mother, of whom you have told me, still young? Or does she now draw near to old age?” + +

+

He answered me, “Ask a woman who bears children, and she will tell you. + +Say to her, ‘Why aren’t they whom you have now brought forth like those who were before, but smaller in stature?’ + +She also will answer you, ‘Those who are born in the strength of youth are different from those who are born in the time of old age, when the womb fails.’ + +Consider therefore you also, how you are shorter than those who were before you. + +So are those who come after you smaller than you, as born of the creature which now begins to be old, and is past the strength of youth.” + +

+

Then I said, “Lord, I implore you, if I have found favor in your sight, show your servant by whom you visit your creation.” + +

+ + +

He said to me, “In the beginning, when the earth was made, before the portals of the world were fixed and before the gatherings of the winds blew, + +before the voices of the thunder sounded and before the flashes of the lightning shone, before the foundations of paradise were laid, + +before the fair flowers were seen, before the powers of the earthquake were established, before the innumerable army of angels were gathered together, + +before the heights of the air were lifted up, before the measures of the firmament were named, before the footstool of Zion +6:4 +So the Syriac. +was established, + +before the present years were reckoned, before the imaginations of those who now sin were estranged, and before they were sealed who have gathered faith for a treasure— + +then I considered these things, and they all were made through me alone, and not through another; just as by me also they will be ended, and not by another.” + +

+

Then I answered, “What will be the dividing of the times? Or when will be the end of the first and the beginning of the age that follows?” + +

+

He said to me, “From Abraham to Isaac, because Jacob and Esau were born to him, for Jacob’s hand held Esau’s heel from the beginning. + +For Esau is the end of this age, and Jacob is the beginning of the one that follows. + +6:10 +So the Syriac, etc. The Latin is defective. +The beginning of a man is his hand, and the end of a man is his heel. Seek nothing else between the heel and the hand, Esdras!” + +

+

Then I answered, “O sovereign Lord, if I have found favor in your sight, + +I beg you, show your servant the end of your signs which you showed me part on a previous night.” + +

+

So he answered, “Stand up upon your feet, and you will hear a mighty sounding voice. + +If the place you stand on is greatly moved + +when it speaks don’t be afraid, for the word is of the end, and the foundations of the earth will understand + +that the speech is about them. They will tremble and be moved, for they know that their end must be changed.” + +

+

It happened that when I had heard it, I stood up on my feet, and listened, and, behold, there was a voice that spoke, and its sound was like the sound of many waters. + +It said, “Behold, the days come when I draw near to visit those who dwell upon the earth, + +and when I investigate those who have caused harm unjustly with their unrighteousness, and when the affliction of Zion is complete, + +and when the seal will be set on the age that is to pass away, then I will show these signs: the books will be opened before the firmament, and all will see together. + +The children a year old will speak with their voices. The women with child will deliver premature children at three or four months, and they will live and dance. + +Suddenly the sown places will appear unsown. The full storehouses will suddenly be found empty. + +The trumpet will give a sound which when every man hears, they will suddenly be afraid. + +At that time friends will make war against one another like enemies. The earth will stand in fear with those who dwell in it. The springs of the fountains will stand still, so that for three hours they won’t flow. + +

+

“It will be that whoever remains after all these things that I have told you of, he will be saved and will see my salvation, and the end of my world. + +They will see the men who have been taken up, who have not tasted death from their birth. The heart of the inhabitants will be changed and turned into a different spirit. + +For evil will be blotted out and deceit will be quenched. + +Faith will flourish. Corruption will be overcome, and the truth, which has been so long without fruit, will be declared.” + +

+

When he talked with me, behold, little by little, the place I stood on +6:29 +After the Oriental versions. The Latin is corrupt. +rocked back and forth. + +He said to me, “I came to show you these things +6:30 +So the Syriac. The Latin is corrupt. +tonight. + +If therefore you will pray yet again, and fast seven more days, I will +6:31 +The Latin has +tell you by day. +again tell you greater things than these. + +For your voice has surely been heard before the Most High. For the Mighty has seen your righteousness. He has also seen your purity, which you have maintained ever since your youth. + +Therefore he has sent me to show you all these things, and to say to you, ‘Believe, and don’t be afraid! + +Don’t be hasty to think vain things about the former times, that you may not hasten in the latter times.’” + +

+

It came to pass after this, that I wept again, and fasted seven days in like manner, that I might fulfill the three weeks which he told me. + +On the eighth night, my heart was troubled within me again, and I began to speak in the presence of the Most High. + +For my spirit was greatly aroused, and my soul was in distress. + +I said, “O Lord, truly you spoke at the beginning of the creation, on the first day, and said this: ‘Let heaven and earth be made,’ and your word perfected the work. + +Then the spirit was hovering, and darkness and silence were on every side. The sound of man’s voice was not yet there.6:39 +The Latin adds +from you. + +Then you commanded a ray of light to be brought out of your treasuries, that your works might then appear. + +

+

“On the second day, again you made the spirit of the firmament and commanded it to divide and to separate the waters, that the one part might go up, and the other remain beneath. + +

+

“On the third day, you commanded that the waters should be gathered together in the seventh part of the earth. You dried up six parts and kept them, to the intent that of these some being both planted and tilled might serve before you. + +For as soon as your word went out, the work was done. + +Immediately, great and innumerable fruit grew, with many pleasant tastes, and flowers of inimitable color, and fragrances of most exquisite smell. This was done the third day. + +

+

“On the fourth day, you commanded that the sun should shine, the moon give its light, and the stars should be in their order; + +and gave them a command to serve mankind, who was to be made. + +

+

“On the fifth day, you said to the seventh part, where the water was gathered together, that it should produce living creatures, fowls and fishes; and so it came to pass + +that the mute and lifeless water produced living things as it was told, that the nations might therefore praise your wondrous works. + +

+

“Then you preserved two living creatures. The one you called Behemoth, and the other you called Leviathan. + +You separated the one from the other; for the seventh part, namely, where the water was gathered together, might not hold them both. + +To Behemoth, you gave one part, which was dried up on the third day, that he should dwell in it, in which are a thousand hills; + +but to Leviathan you gave the seventh part, namely, the watery part. You have kept them to be devoured by whom you wish, when you wish. + +

+

“But on the sixth day, you commanded the earth to produce before you cattle, animals, and creeping things. + +Over these, you ordained Adam as ruler over all the works that you have made. Of him came all of us, the people whom you have chosen. + +

+

“All this have I spoken before you, O Lord, because you have said that for our sakes you made +6:55 +So the Syriac. The Latin has +the firstborn world. +this world. + +As for the other nations, which also come from Adam, you have said that they are nothing, and are like spittle. You have likened the abundance of them to a drop that falls from a bucket. + +Now, O Lord, behold these nations, which are reputed as nothing, being rulers over us and devouring us. + +But we your people, whom you have called your firstborn, your only children, and your fervent lover, are given into their hands. + +Now if the world is made for our sakes, why don’t we possess our world for an inheritance? How long will this endure?” + +

+ + +

When I had finished speaking these words, the angel which had been sent to me the nights before was sent to me. + +He said to me, “Rise, Esdras, and hear the words that I have come to tell you.” + +

+

I said, “Speak on, my Lord.” +

+

Then he said to me, “There is a sea set in a wide place, that it might be +7:3 +So the chief Oriental versions. The Latin MSS. have +deep. +broad and vast, + +but its entrance is set in a narrow place so as to be like a river. + +Whoever desires to go into the sea to look at it, or to rule it, if he didn’t go through the narrow entrance, how could he come into the broad part? + +Another thing also: There is a city built and set in a plain country, and full of all good things, + +but its entrance is narrow, and is set in a dangerous place to fall, having fire on the right hand, and deep water on the left. + +There is only one path between them both, even between the fire and the water, so that only one person can go there at once. + +If this city is now given to a man for an inheritance, if the heir doesn’t pass the danger before him, how will he receive his inheritance?” + +

+

I said, “That is so, Lord.” +

+

Then said he to me, “Even so also is Israel’s portion. + +I made the world for their sakes. What is now done was decreed when Adam transgressed my statutes. + +Then the entrances of this world were made narrow, sorrowful, and toilsome. They are but few and evil, full of perils, and involved in great toils. + +For the entrances of the greater world are wide and safe, and produce fruit of immortality. + +So if those who live don’t enter these difficult and vain things, they can never receive those that are reserved for them. + +Now therefore why are you disturbed, seeing you are but a corruptible man? Why are you moved, since you are mortal? + +Why haven’t you considered in your mind that which is to come, rather than that which is present?” + +

+

Then I answered and said, “O sovereign Lord, behold, you have ordained in your law that the righteous will inherit these things, but that the ungodly will perish. + +The righteous therefore will suffer difficult things, and hope for easier things, but those who have done wickedly have suffered the difficult things, and yet will not see the easier things.” + +

+

He said to me, “You are not a judge above God, neither do you have more understanding than the Most High. + +Yes, let many perish who now live, rather than that the law of God which is set before them be despised. + +For God strictly commanded those who came, even as they came, what they should do to live, and what they should observe to avoid punishment. + +Nevertheless, they weren’t obedient to him, but spoke against him and imagined for themselves vain things. + +They made cunning plans of wickedness, and said moreover of the Most High that he doesn’t exist, and they didn’t know his ways. + +They despised his law and denied his covenants. They haven’t been faithful to his statutes, and haven’t performed his works. + +Therefore, Esdras, for the empty are empty things, and for the full are the full things. + +For behold, the time will come, and it will be, when these signs of which I told you before will come to pass, that the bride will appear, even the city coming forth, and she will be seen who now is withdrawn from the earth. + +Whoever is delivered from the foretold evils will see my wonders. + +For my son Jesus will be revealed with those who are with him, and those who remain will rejoice four hundred years. + +After these years my son Christ7:29 +“Christ” means “Anointed One”. will die, along with all of those who have the breath of life7:29 +Latin +man +. + +Then the world will be turned into the old silence seven days, like as in the first beginning, so that no human will remain. + +After seven days the world that is not yet awake will be raised up, and what is corruptible will die. + +The earth will restore those who are asleep in it, and the dust those who dwell in it in silence, and the +7:32 +Or, +chambers +See 2 Esdras 4:35. +secret places will deliver those souls that were committed to them. + +The Most High will be revealed on the judgment seat, +7:33 +The Syriac adds +and the end will come. +and compassion will pass away, and patience will be withdrawn. + +Only judgment will remain. Truth will stand. Faith will grow strong. + +Recompense will follow. The reward will be shown. Good deeds will awake, and wicked deeds won’t sleep.7:35 +The passage from verse [36] to verse [105], formerly missing, has been restored to the text. See Preface, page ix. + + +The +7:36 +So the chief Oriental versions. The Latin MSS. have +place. +pit of torment will appear, and near it will be the place of rest. The furnace of hell7:36 +Latin +Gehenna. +will be shown, and near it the paradise of delight. + +Then the Most High will say to the nations that are raised from the dead, ‘Look and understand whom you have denied, whom you haven’t served, whose commandments you have despised. + +Look on this side and on that. Here is delight and rest, and there fire and torments.’ Thus +7:38 +So the chief Oriental versions. The Latin has +will you speak. +he will speak to them in the day of judgment. + +This is a day that has neither sun, nor moon, nor stars, + +neither cloud, nor thunder, nor lightning, neither wind, nor water, nor air, neither darkness, nor evening, nor morning, + +neither summer, nor spring, nor heat, nor7:41 +Or, +storm + winter, neither frost, nor cold, nor hail, nor rain, nor dew, + +neither noon, nor night, nor dawn, neither shining, nor brightness, nor light, except only the splendor of the glory of the Most High, by which all will see the things that are set before them. + +It will endure as though it were a week of years. + +This is my judgment and its prescribed order; but I have only shown these things to you.” + +

+

I answered, “I said then, O Lord, and I say now: Blessed are those who are now alive and keep your commandments! + +But what about those for whom I prayed? For who is there of those who are alive who has not sinned, and who of the children of men hasn’t transgressed your covenant? + +Now I see that the world to come will bring delight to few, but torments to many. + +For an evil heart has grown up in us, which has led us astray from these commandments and has brought us into corruption and into the ways of death. It has shown us the paths of perdition and removed us far from life—and that, not a few only, but nearly all who have been created.” + +

+

He answered me, “Listen to me, and I will instruct you. I will admonish you yet again. + +For this reason, the Most High has not made one world, but two. + +For because you have said that the just are not many, but few, and the ungodly abound, hear the explanation. + +If you have just a few precious stones, will you add them to lead and clay?” + +

+

I said, “Lord, how could that be?” + +

+

He said to me, “Not only that, but ask the earth, and she will tell you. Defer to her, and she will declare it to you. + +Say to her, ‘You produce gold, silver, and brass, and also iron, lead, and clay; + +but silver is more abundant than gold, and brass than silver, and iron than brass, and lead than iron, and clay than lead.’ + +Judge therefore which things are precious and to be desired, what is abundant or what is rare?” + +

+

I said, “O sovereign Lord, that which is plentiful is of less worth, for that which is more rare is more precious.” + +

+

He answered me, “Weigh within yourself the things that you have thought, for he who has what is hard to get rejoices over him who has what is plentiful. + +So also is the judgment which I have promised; for I will rejoice over the few that will be saved, because these are those who have made my glory to prevail now, and through them, my name is now honored. + +I won’t grieve over the multitude of those who perish; for these are those who are now like mist, and have become like flame and smoke; they are set on fire and burn hotly, and are extinguished.” + +

+

I answered, “O earth, why have you produced, if the mind is made out of dust, like all other created things? + +For it would have been better that the dust itself had been unborn, so that the mind might not have been made from it. + +But now the mind grows with us, and because of this we are tormented, because we perish and we know it. + +Let the race of men lament and the animals of the field be glad. Let all who are born lament, but let the four-footed animals and the livestock rejoice. + +For it is far better with them than with us; for they don’t look forward to judgment, neither do they know of torments or of salvation promised to them after death. + +For what does it profit us, that we will be preserved alive, but yet be afflicted with torment? + +For all who are born are defiled with iniquities, and are full of sins and laden with transgressions. + +If after death we were not to come into judgment, perhaps it would have been better for us.” + +

+

He answered me, “When the Most High made the world and Adam and all those who came from him, he first prepared the judgment and the things that pertain to the judgment. + +Now understand from your own words, for you have said that the mind grows with us. + +They therefore who dwell on the earth will be tormented for this reason, that having understanding they have committed iniquity, and receiving commandments have not kept them, and having obtained a law they dealt unfaithfully with that which they received. + +What then will they have to say in the judgment, or how will they answer in the last times? + +For how long a time has the Most High been patient with those who inhabit the world, and not for their sakes, but because of the times which he has foreordained!” + +

+

I answered, “If I have found grace in your sight, O Lord, show this also to your servant, whether after death, even now when every one of us gives up his soul, we will be kept in rest until those times come, in which you renew the creation, or whether we will be tormented immediately.” + +

+

He answered me, “I will show you this also; but don’t join yourself with those who are scorners, nor count yourself with those who are tormented. + +For you have a treasure of works laid up with the Most High, but it won’t be shown you until the last times. + +For concerning death the teaching is: When the decisive sentence has gone out from the Most High that a man shall die, as the spirit leaves the body to return again to him who gave it, it adores the glory of the Most High first of all. + +And if it is one of those who have been scorners and have not kept the way of the Most High, and that have despised his law, and who hate those who fear God, + +these spirits won’t enter into habitations, but will wander and be in torments immediately, ever grieving and sad, in seven ways. + +The first way, because they have despised the law of the Most High. + +The second way, because they can’t now make a good repentance that they may live. + +The third way, they will see the reward laid up for those who have believed the covenants of the Most High. + +The fourth way, they will consider the torment laid up for themselves in the last days. + +The fifth way, they will see the dwelling places of the others guarded by angels, with great quietness. + +The sixth way, they will see how immediately some of them will pass into torment. + +The seventh way, which is more grievous than all the aforesaid ways, because they will pine away in confusion and be consumed with shame, and will be withered up by fears, seeing the glory of the Most High before whom they have sinned while living, and before whom they will be judged in the last times. + +

+

“Now this is the order of those who have kept the ways of the Most High, when they will be separated from their mortal body. + +In the time that they lived in it, they painfully served the Most High, and were in jeopardy every hour, that they might keep the law of the lawgiver perfectly. + +Therefore this is the teaching concerning them: + +First of all they will see with great joy the glory of him who takes them up, for they will have rest in seven orders. + +The first order, because they have labored with great effort to overcome the evil thought which was fashioned together with them, that it might not lead them astray from life into death. + +The second order, because they see the perplexity in which the souls of the ungodly wander, and the punishment that awaits them. + +The third order, they see the testimony which he who fashioned them gives concerning them, that while they lived they kept the law which was given them in trust. + +The fourth order, they understand the rest which, being gathered in their chambers, they now enjoy with great quietness, guarded by angels, and the glory that awaits them in the last days. + +The fifth order, they rejoice that they have now escaped from that which is corruptible, and that they will inherit that which is to come, while they see in addition the difficulty and the pain from which they have been delivered, and the spacious liberty which they will receive with joy and immortality. + +The sixth order, when it is shown to them how their face will shine like the sun, and how they will be made like the light of the stars, being incorruptible from then on. + +The seventh order, which is greater than all the previously mentioned orders, because they will rejoice with confidence, and because they will be bold without confusion, and will be glad without fear, for they hurry to see the face of him whom in their lifetime they served, and from whom they will receive their reward in glory. + +This is the order of the souls of the just, as from henceforth is announced to them. Previously mentioned are the ways of torture which those who would not give heed will suffer from after this.” + +

+

I answered, “Will time therefore be given to the souls after they are separated from the bodies, that they may see what you have described to me?” + +

+

He said, “Their freedom will be for seven days, that for seven days they may see the things you have been told, and afterwards they will be gathered together in their habitations.” + +

+

I answered, “If I have found favor in your sight, show further to me your servant whether in the day of judgment the just will be able to intercede for the ungodly or to entreat the Most High for them, + +whether fathers for children, or children for parents, or kindred for kindred, or kinsfolk for their next of kin, or friends for those who are most dear.” + +

+

He answered me, “Since you have found favor in my sight, I will show you this also. The day of judgment is7:104 +The Latin has +a bold day + a day of decision, and displays to all the seal of truth. Even as now a father doesn’t send his son, or a son his father, or a master his slave, or a friend him that is most dear, that in his place he may understand, or sleep, or eat, or be healed, + +so no one will ever pray for another in that day, neither will one lay a burden on another, for then everyone will each bear his own righteousness or unrighteousness.” + +

+

I answered, “How do we now find that first Abraham prayed for the people of Sodom, and Moses for the ancestors who sinned in the wilderness, + +and Joshua after him for Israel in the days of +7:107 +Joshua 7:1 +Achan, + +and Samuel +7:108 +So the Syriac and other versions. The Latin omits +in the days of Saul. +in the days of Saul, and David for the plague, and Solomon for those who would worship in the sanctuary, + +and Elijah for those that received rain, and for the dead, that he might live, + +and Hezekiah for the people in the days of Sennacherib, and many others prayed for many? + +If therefore now, when corruption has grown and unrighteousness increased, the righteous have prayed for the ungodly, why will it not be so then also?” + +

+

He answered me, “This present world is not the end. The full glory doesn’t remain in it. Therefore those who were able prayed for the weak. + +But the day of judgment will be the end of this age, and the beginning of the immortality to come, in which corruption has passed away, + +intemperance is at an end, infidelity is cut off, but righteousness has grown, and truth has sprung up. + +Then no one will be able to have mercy on him who is condemned in judgment, nor to harm someone who is victorious.” + +

+

I answered then, “This is my first and last saying, that it would have been better if the earth had not produced Adam, or else, when it had produced him, to have restrained him from sinning. + +For what profit is it for all who are in this present time to live in heaviness, and after death to look for punishment? + +O Adam, what have you done? For though it was you who sinned, the evil hasn’t fallen on you alone, but on all of us who come from you. + +For what profit is it to us, if an immortal time is promised to us, but we have done deeds that bring death? + +And that there is promised us an everlasting hope, but we have most miserably failed? + +And that there are reserved habitations of health and safety, but we have lived wickedly? + +And that the glory of the Most High will defend those who have led a pure life, but we have walked in the most wicked ways of all? + +And that a paradise will be revealed, whose fruit endures without decay, in which is abundance and healing, but we won’t enter into it, + +for we have lived in perverse ways? + +And that the faces of those who have practiced self-control will shine more than the stars, but our faces will be blacker than darkness? + +For while we lived and committed iniquity, we didn’t consider what we would have to suffer after death.” + +

+

Then he answered, “This is the significance of the battle which humans born on the earth will fight: + +if they are overcome, they will suffer as you have said, but if they get the victory, they will receive the thing that I say. + +For this is the way that Moses spoke to the people while he lived, saying, ‘Choose life, that you may live!’ + +Nevertheless they didn’t believe him or the prophets after him, not even me, who have spoken to them. + +Therefore there won’t be such heaviness in their destruction, as there will be joy over those who are assured of salvation.” + +

+

Then I answered, “I know, Lord, that the Most High is now called merciful, in that he has mercy upon those who have not yet come into the world; + +and compassionate, in that he has compassion upon those who turn to his law; + +and patient, in that he is patient with those who have sinned, since they are his creatures; + +and bountiful, in that he is ready to give rather than to take away; + +and very merciful, in that he multiplies more and more mercies to those who are present, and who are past, and also to those who are to come— + +for if he wasn’t merciful, the world wouldn’t continue with those who dwell in it— + +and one who forgives, for if he didn’t forgive out of his goodness, that those who have committed iniquities might be relieved of them, not even one ten thousandth part of mankind would remain living; + +and a judge, for if he didn’t pardon those who were created by his word, and blot out the multitude of sins, + +there would perhaps be very few left of an innumerable multitude.” + +

+ + +

He answered me, “The Most High has made this world for many, but the world to come for few. + +Now I will tell you a parable, Esdras. Just as when you ask the earth, it will say to you that it gives very much clay from which earthen vessels are made, but little dust that gold comes from. Even so is the course of the present world. + +Many have been created, but few will be saved.” + +

+

I answered, “Drink your fill of understanding then, O my soul, and let my heart devour wisdom. + +For you +8:5 +So the Syriac. The Latin is incorrect. +have come here apart from your will, and depart against your will, for you have only been given a short time to live. + +O Lord over us, grant to your servant that we may pray before you, and give us seed for our heart and cultivation for our understanding, that fruit may grow from it, by which everyone who is corrupt, who bears the +8:6 +So the Syriac. The Latin has +place. +likeness of a man, may live. + +For you alone exist, and we all one workmanship of your hands, just as you have said. + +Because you give life to the body that is now fashioned in the womb, and give it members, your creature is preserved in fire and water, and your workmanship endures nine months as your creation which is created in it. + +But that which keeps and that which is kept will both be kept +8:9 +So the Syriac. The Latin is imperfect. +by your keeping. When the womb gives up again what has grown in it, + +you have commanded that out of the parts of the body, that is to say, out of the breasts, be given milk, which is the fruit of the breasts, + +that the body that is fashioned may be nourished for a time, and afterwards you guide it in your mercy. + +Yes, you have brought it up in your righteousness, nurtured it in your law, and corrected it with your judgment. + +You put it to death as your creation, and make it live as your work. + +If therefore you +8:14 +So the Syriac. The Latin is incorrect. +lightly and suddenly destroy him which with so great labor was fashioned by your commandment, to what purpose was he made? + +Now therefore I will speak. About man in general, you know best, but about your people for whose sake I am sorry, + +and for your inheritance, for whose cause I mourn, for Israel, for whom I am heavy, and for the seed of Jacob, for whose sake I am troubled, + +therefore I will begin to pray before you for myself and for them; for I see the failings of us who dwell in the land; + +but I have heard the swiftness of the judgment which is to come. + +Therefore hear my voice, and understand my saying, and I will speak before you.” +

+

The beginning of the words of Esdras, before he was taken up. He said, + +“O Lord, you who remain forever, whose eyes are exalted, and whose chambers are in the air, + +whose throne is beyond measure, whose glory is beyond comprehension, before whom the army of angels stand with trembling, + +8:22 +According to the chief Oriental versions. The Latin has, even they +whose service takes the form of wind etc. +at whose bidding they are changed to wind and fire, whose word is sure, and sayings constant, whose ordinance is strong, and commandment fearful, + +whose look dries up the depths, and whose indignation makes the mountains to melt away, and whose truth bears witness— + +hear, O Lord, the prayer of your servant, and give ear to the petition of your handiwork. + +Attend to my words, for as long as I live, I will speak, and as long as I have understanding, I will answer. + +Don’t look at the sins of your people, but on those who have served you in truth. + +Don’t regard the doings of those who act wickedly, but of those who have kept your covenants in affliction. + +Don’t think about those who have lived wickedly before you, but remember those who have willingly known your fear. + +Let it not be your will to destroy those who have lived like cattle, but look at those who have +8:29 +The Syriac has +received the brightness of your law. +clearly taught your law. + +Don’t be indignant at those who are deemed worse than animals, but love those who have always put their trust in your glory. + +For we and our fathers have +8:31 +So the Syriac and Aethiopic versions. +passed our lives in +8:31 +Latin +manners. +ways that bring death, but you are called merciful because of us sinners. + +For if you have a desire to have mercy upon us who have no works of righteousness, then you will be called merciful. + +For the just, which have many good works laid up with you, will be rewarded for their own deeds. + +For what is man, that you should take displeasure at him? Or what is a corruptible race, that you should be so bitter toward it? + +For in truth, there is no man among those who are born who has not done wickedly, and among those who have lived, there is none which have not done wrong. + +For in this, O Lord, your righteousness and your goodness will be declared, if you are merciful to those who have no store of good works.” + +

+

Then he answered me, “Some things you have spoken rightly, and it will happen according to your words. + +For indeed I will not think about the fashioning of those who have sinned, or about their death, their judgment, or their destruction; + +but I will rejoice over the creation of the righteous and their pilgrimage, their salvation, and the reward that they will have. + +Therefore as I have spoken, so it will be. + +For as the farmer sows many seeds in the ground, and plants many trees, and yet not all that is sown will +8:41 +Latin +be saved. +come up in due season, neither will all that is planted take root, even so those who are sown in the world will not all be saved.” + +

+

Then I answered, “If I have found favor, let me speak before you. + +If the farmer’s seed doesn’t come up because it hasn’t received your rain in due season, or if it is ruined by too much rain and perishes, + +likewise man, who is formed with your hands and is called your own image, because he is made like you, for whose sake you have formed all things, even him you have made like the farmer’s seed. + +Don’t be angry with us, but spare your people and have mercy upon your inheritance, for you have mercy upon your own creation.” + +

+

Then he answered me, “Things present are for those who live now, and things to come for those who will live hereafter. + +For you come far short of being able to love my creature more than I. But you have compared yourself to the unrighteous. Don’t do that! + +Yet in this will you be admirable to the Most High, + +in that you have humbled yourself, as it becomes you, and have not judged yourself among the righteous, so as to be much glorified. + +For many grievous miseries will fall on those who dwell in the world in the last times, because they have walked in great pride. + +But understand for yourself, and for those who inquire concerning the glory of those like you, + +because paradise is opened to you. The tree of life is planted. The time to come is prepared. Plenteousness is made ready. A city is built. Rest is +8:52 +The Syriac has +established. +allowed. Goodness is perfected, and wisdom is perfected beforehand. + +The root of evil is sealed up from you. Weakness is done away from you, and +8:53 +After the chief Oriental versions. +death is hidden. Hell and corruption have fled into forgetfulness. + +Sorrows have passed away, and in the end, the treasure of immortality is shown. + +Therefore ask no more questions concerning the multitude of those who perish. + +For when they had received liberty, they despised the Most High, scorned his law, and forsook his ways. + +Moreover they have trodden down his righteous, + +and said in their heart that there is no God—even knowing that they must die. + +For as the things I have said will welcome you, so thirst and pain which are prepared for them. For the Most High didn’t intend that men should be destroyed, + +but those who are created have themselves defiled the name of him who made them, and were unthankful to him who prepared life for them. + +Therefore my judgment is now at hand, + +which I have not shown to all men, but to you, and a few like you.” +

+

Then I answered, + +“Behold, O Lord, now you have shown me the multitude of the wonders which you will do in the last times, but you haven’t shown me when.” + +

+ + +

He answered me, “Measure diligently within yourself. When you see that a certain part of the signs are past, which have been told you beforehand, + +then will you understand that it is the very time in which the Most High will visit the world which was made by him. + +When earthquakes, tumult of peoples, plans of nations, wavering of leaders, and confusion of princes are seen in the world, + +then will you understand that the Most High spoke of these things from the days that were of old, from the beginning. + +For just as with everything that is made in the world, the beginning +9:5 +So the Syriac. The Latin is corrupt. +is evident and the end manifest, + +so also are the times of the Most High: the beginnings are manifest in wonders and mighty works, and the end in effects and signs. + +Everyone who will be saved, and will be able to escape by his works, or by faith by which they have believed, + +will be preserved from the said perils, and will see my salvation in my land and within my borders, which I have sanctified for myself from the beginning. + +Then those who now have abused my ways will be amazed. Those who have cast them away despitefully will live in torments. + +For as many as in their life have received benefits, and yet have not known me, + +and as many as have scorned my law, while they still had liberty and when an opportunity to repent was open to them, didn’t understand, but despised +9:11 +Or, me +it, + +must know +9:12 +Or, me +it in torment after death. + +Therefore don’t be curious any longer how the ungodly will be punished, but inquire how the righteous will be saved, +9:13 +So the Syriac and other versions. The Latin has +and whose... +created, +and when. +those who the world belongs to, and for whom the world was created.” + +

+

I answered, + +“I have said before, and now speak, and will say it again hereafter, that there are more of those who perish than of those who will be saved, + +like a wave is greater than a drop.” + +

+

He answered me, “Just as the field is, so also the seed. As the flowers are, so are the colors. As the work is, so also is the +9:17 +So the Aethiopic and Arabic. The Latin has +creation. +judgment on it. As is the farmer, so also is his threshing floor. For there was a time in the world + +when I was preparing for those who now live, before the world was made for them to dwell in. Then no one spoke against me, + +for +9:19 +So the Syriac. +no one existed. But now those who are created in this world that is prepared, both +9:19 +So the Syriac. +with a table that doesn’t fail and a law which is unsearchable, are corrupted in their ways. + +So I considered my world, and behold, it was destroyed, and my earth, and behold, it was in peril, because of the plans that had come into it. + +I saw and spared them, but not greatly, and saved myself a grape out of a cluster, and a plant out of +9:21 +So the Syriac and other versions. The Latin has +great tribes. +a great forest. + +Let the multitude perish then, which were born in vain. Let my grape be saved, and my plant, for I have made them perfect with great labor. + +Nevertheless, if you will wait seven more days—however don’t fast in them, + +but go into a field of flowers, where no house is built, and eat only of the flowers of the field, and you shall taste no flesh, and shall drink no wine, but shall eat flowers only— + +and pray to the Most High continually, then I will come and talk with you.” + +

+

So I went my way, just as he commanded me, into the field which is called +9:26 +The Syriac and Aethiopic have +Arphad. +Ardat. There I sat among the flowers, and ate of the herbs of the field, and this food satisfied me. + +It came to pass after seven days that I lay on the grass, and my heart was troubled again, like before. + +My mouth was opened, and I began to speak before the Lord Most High, and said, + +“O Lord, you showed yourself among us, to our fathers in the wilderness, when they went out of Egypt, and when they came into the wilderness, where no man treads and that bears no fruit. + +You said, ‘Hear me, O Israel. Heed my words, O seed of Jacob. + +For behold, I sow my law in you, and it will bring forth fruit in you, and you will be glorified in it forever.’ + +But our fathers, who received the law, didn’t keep it, and didn’t observe the statutes. The fruit of the law didn’t perish, for it couldn’t, because it was yours. + +Yet those who received it perished, because they didn’t keep the thing that was sown in them. + +Behold, it is a custom that when the ground has received seed, or the sea a ship, or any vessel food or drink, and when it comes to pass that that which is sown, or that which is launched, + +or the things which have been received, should come to an end, these come to an end, but the receptacles remain. Yet with us, it doesn’t happen that way. + +For we who have received the law will perish by sin, along with our heart which received it. + +Notwithstanding the law doesn’t perish, but remains in its honor.” + +

+

When I spoke these things in my heart, I looked around me with my eyes, and on my right side I saw a woman, and behold, she mourned and wept with a loud voice, and was much grieved in mind. Her clothes were torn, and she had ashes on her head. + +Then let I my thoughts go in which I was occupied, and turned myself to her, + +and said to her, “Why are you weeping? Why are you grieved in your mind?” + +

+

She said to me, “Leave me alone, my Lord, that I may weep for myself and add to my sorrow, for I am very troubled in my mind, and brought very low.” + +

+

I said to her, “What ails you? Tell me.” + +

+

She said to me, “I, your servant, was barren and had no child, though I had a husband thirty years. + +Every hour and every day these thirty years I made my prayer to the Most High day and night. + +It came to pass after thirty years that God heard me, your handmaid, and saw my low estate, and considered my trouble, and gave me a son. I rejoiced in him greatly, I and my husband, and all my +9:45 +Latin +townsmen. +neighbors. We gave great honor to the Mighty One. + +I nourished him with great care. + +So when he grew up, and I came to take him a wife, I made him a feast day. + +

+ + +

“So it came to pass that when my son was entered into his wedding chamber, he fell down and died. + +Then we all put out the lamps, and all my +10:2 +Latin +townsmen. +neighbors rose up to comfort me. I remained quiet until the second day at night. + +It came to pass, when they had all stopped consoling me, encouraging me to be quiet, then rose I up by night, and fled, and came here into this field, as you see. + +Now I don’t intend to return into the city, but to stay here, and not eat or drink, but to continually mourn and fast until I die.” + +

+

Then I left the reflections I was engaged in, and answered her in anger, + +“You most foolish woman, don’t you see our mourning, and what has happened to us? + +For Zion the mother of us all is full of sorrow, and much humbled. + +10:8 +See the Oriental versions. The Latin is corrupt. +It is right now to mourn deeply, since we all mourn, and to be sorrowful, since we are all in sorrow, but you are mourning for one son. + +Ask the earth, and she will tell you that it is she which ought to mourn for so many that grow upon her. + +For out of her, all had their beginnings, and others will come; and, behold, almost all of them walk into destruction, and the multitude of them is utterly doomed. + +Who then should mourn more, +10:11 +So the Syriac. +she who has lost so great a multitude, or you, who are grieved but for one? + +But if you say to me, ‘My lamentation is not like the earth’s, for I have lost the fruit of my womb, which I brought forth with pains, and bare with sorrows;’ + +but it is with the earth after the manner of the earth. The multitude present in it has gone as it came. + +Then say I to you, ‘Just as you have brought forth with sorrow, even so the earth also has given her fruit, namely, people, ever since the beginning to him who made her.’ + +Now therefore keep your sorrow to yourself, and bear with a good courage the adversities which have happened to you. + +For if you will acknowledge the decree of God to be just, you will both receive your son in time, and will be praised among women. + +Go your way then into the city to your husband.” + +

+

She said to me, “I won’t do that. I will not go into the city, but I will die here.” + +

+

So I proceeded to speak further to her, and said, + +“Don’t do so, but allow yourself to be persuaded by reason of the adversities of Zion; and be comforted by reason of the sorrow of Jerusalem. + +For you see that our sanctuary has been laid waste, our altar broken down, our temple destroyed, + +our lute has been brought low, our song is put to silence, our rejoicing is at an end, the light of our candlestick is put out, the ark of our covenant is plundered, our holy things are defiled, and the name that we are called is profaned. Our free men are despitefully treated, our priests are burned, our Levites have gone into captivity, our virgins are defiled and our wives ravished, our righteous men carried away, our little ones betrayed, our young men are brought into bondage, and our strong men have become weak. + +What is more than all, the seal of Zion has now lost the seal of her honor, and is delivered into the hands of those who hate us. + +Therefore shake off your great heaviness, and put away from yourself the multitude of sorrows, that the Mighty One may be merciful to you again, and the Most High may give you rest, even ease from your troubles.” + +

+

It came to pass while I was talking with her, behold, her face suddenly began to shine exceedingly, and her countenance flashed like lightning, so that I was very afraid of her, and wondered what this meant. + +Behold, suddenly she made a great and very fearful cry, so that the earth shook at the noise. + +I looked, and behold, the woman appeared to me no more, but there was a city built, and a place shown itself from large foundations. Then I was afraid, and cried with a loud voice, + +“Where is Uriel the angel, who came to me at the first? For he has caused me to fall into this great trance, and my end has turned into corruption, and my prayer a reproach!” + +

+

As I was speaking these words, behold, the angel who had come to me at first came to me, and he looked at me. + +Behold, I lay as one who had been dead, and my understanding was taken from me. He took me by the right hand, and comforted me, and set me on my feet, and said to me, + +“What ails you? Why are you so troubled? Why is your understanding and the thoughts of your heart troubled?” + +

+

I said, “Because you have forsaken me; yet I did according to your words, and went into the field, and, behold, I have seen, and still see, that which I am not able to explain.” + +

+

He said to me, “Stand up like a man, and I will instruct you.” + +

+

Then I said, “Speak on, my Lord; only don’t forsake me, lest I die before my time. + +For I have seen what I didn’t know, and hear what I don’t know. + +Or is my sense deceived, or my soul in a dream? + +Now therefore I beg you to explain to your servant what this vision means.” + +

+

He answered me, “Listen to me, and I will inform you, and tell you about the things you are afraid of, for the Most High has revealed many secret things to you. + +He has seen that your way is righteous, because you are continually sorry for your people, and make great lamentation for Zion. + +This therefore is the meaning of the vision. + +The woman who appeared to you a little while ago, whom you saw mourning, and began to comfort her, + +but now you no longer see the likeness of the woman, but a city under construction appeared to you, + +and she told you of the death of her son, this is the interpretation: + +This woman, whom you saw, is Zion,10:44 +So the Syriac and other versions. The Latin is incorrect. whom you now see as a city being built. + +She told you that she had been barren for thirty years because there were three thousand years in the world in which there was no offering as yet offered in her. + +And it came to pass after three thousand years that Solomon built the city and offered offerings. It was then that the barren bore a son. + +She told you that she nourished him with great care. That was the dwelling in Jerusalem. + +When she said to you, ‘My son died when he entered into his marriage chamber, and that misfortune befell her,’ this was the destruction that came to Jerusalem. + +Behold, you saw her likeness, how she mourned for her son, and you began to comfort her for what has happened to her. These were the things to be opened to you. + +For now the Most High, seeing that you are sincerely grieved and suffer from your whole heart for her, has shown you the brightness of her glory and the attractiveness of her beauty. + +Therefore I asked you to remain in the field where no house was built, + +for I knew that the Most High would show this to you. + +Therefore I commanded you to come into the field, where no foundation of any building was. + +For no human construction could stand in the place in which the city of the Most High was to be shown. + +Therefore don’t be afraid nor let your heart be terrified, but go your way in and see the beauty and greatness of the building, as much as your eyes are able to see. + +Then will you hear as much as your ears may comprehend. + +For you are more blessed than many, and are called by name to be with the Most High, like only a few. + +But tomorrow at night you shall remain here, + +and so the Most High will show you those visions in dreams of what the Most High will do to those who live on the earth in the last days.” +

+

So I slept that night and another, as he commanded me. + +

+ + +

It came to pass the second night that I saw a dream, and behold, an eagle which had twelve feathered wings and three heads came up from the sea. + +I saw, and behold, she spread her wings over all the earth, and all the winds of heaven blew on her, +11:2 +So the chief Oriental versions. The Latin has only +and were gathered together. +and the clouds were gathered together against her. + +I saw, and out of her wings there grew other wings near them; and they became little, tiny wings. + +But her heads were at rest. The head in the middle was larger than the other heads, yet rested it with them. + +Moreover I saw, and behold, the eagle flew with her wings to reign over the earth and over those who dwell therein. + +I saw how all things under heaven were subject to her, and no one spoke against her—no, not one creature on earth. + +I saw, and behold, the eagle rose on her talons, and uttered her voice to her wings, saying, + +“Don’t all watch at the same time. Let each one sleep in his own place and watch in turn; + +but let the heads be preserved for the last.” + +

+

I saw, and behold, the voice didn’t come out of her heads, but from the midst of her body. + +I counted +11:11 +The Syriac has +her little wings, and, etc. +her wings that were near the others, and behold, there were eight of them. + +I saw, and behold, on the right side one wing arose and reigned over all the earth. + +When it reigned, the end of it came, and it disappeared, so that its place appeared no more. The next wing rose up and reigned, and it ruled a long time. + +It happened that when it reigned, its end came also, so that it disappeared, like the first. + +Behold, a voice came to it, and said, + +“Listen, you who have ruled over the earth all this time! I proclaim this to you, before you disappear, + +none after you will rule as long as you, not even half as long.” + +

+

Then the third arose, and ruled as the others before, and it also disappeared. + +So it went with all the wings one after another, as every one ruled, and then disappeared. + +I saw, and behold, in process of time the +11:20 +The Syriac has +little wings. +wings that followed were set up on the +11:20 +The Aethiopic has +left. +right side, that they might rule also. Some of them ruled, but in a while they disappeared. + +Some of them also were set up, but didn’t rule. + +

+

After this I saw, and behold, the twelve wings disappeared, along with two of the little wings. + +There was no more left on the eagle’s body, except the three heads that rested, and six little wings. + +I saw, and behold, two little wings divided themselves from the six and remained under the head that was on the right side; but four remained in their place. + +I saw, and behold, these +11:25 +The Syriac has +little wings. +under wings planned to set themselves up and to rule. + +I saw, and behold, there was one set up, but in a while it disappeared. + +A second also did so, and it disappeared faster than the first. + +I saw, and behold, the two that remained also planned between themselves to reign. + +While they thought about it, behold, one of the heads at rest awakened, the one that was in the middle, for that was greater than the two other heads. + +I saw how it joined the two other heads with it. + +Behold, the head turned with those who were with it, and ate the two +11:31 +The Syriac has +little wings. +under wings that planned to reign. + +But this head held the whole earth in possession, and ruled over those who dwell in it with much oppression. It had stronger governance over the world than all the wings that had gone before. + +

+

After this I saw, and behold, the head also that was in the middle suddenly disappeared, like the wings. + +But the two heads remained, which also reigned the same way over the earth and over those who dwell in it. + +I saw, and behold, the head on the right side devoured the one that was on the left side. + +

+

Then I heard a voice, which said to me, “Look in front of you, and consider the thing that you see.” + +

+

I saw, and behold, something like a lion roused out of the woods roaring. I heard how he sent out a man’s voice to the eagle, and spoke, saying, + +“Listen and I will talk with you. The Most High will say to you, + +‘Aren’t you the one that remains of the four animals whom I made to reign in my world, that the end of my times might come through them? + +The fourth came and overcame all the animals that were past, and ruled the world with great trembling, and the whole extent of the earth with grievous oppression. He lived on the earth such a long time with deceit. + +You have judged the earth, but not with truth. + +For you have afflicted the meek, you have hurt the peaceful, you have hated those who speak truth, you have loved liars, destroyed the dwellings of those who produced fruit, and threw down the walls of those who did you no harm. + +Your insolence has come up to the Most High, and your pride to the Mighty. + +The Most High also has looked at his times, and behold, they are ended, and his ages are fulfilled. + +Therefore appear no more, you eagle, nor your horrible wings, nor your evil little wings, nor your cruel heads, nor your hurtful talons, nor all your worthless body, + +that all the earth may be refreshed and relieved, being delivered from your violence, and that she may hope for the judgment and mercy of him who made her.’” + +

+ + +

It came to pass, while the lion spoke these words to the eagle, I saw, + +and behold, the head that remained disappeared, and +12:2 +So the chief Oriental versions. +the two wings which went over to it arose and set themselves up to reign; and their kingdom was brief and full of uproar. + +I saw, and behold, they disappeared, and the whole body of the eagle was burned, so that the earth was in great fear. +

+

Then I woke up because of great perplexity of mind and great fear, and said to my spirit, + +“Behold, you have done this to me, because you search out the ways of the Most High. + +Behold, I am still weary in my mind, and very weak in my spirit. There isn’t even a little strength in me, because of the great fear with which I was frightened tonight. + +Therefore I will now ask the Most High that he would strengthen me to the end.” + +

+

Then I said, “O sovereign Lord, if I have found favor in your sight, and if I am justified with you more than many others, and if my prayer has indeed come up before your face, + +strengthen me then, and show me, your servant, the interpretation and plain meaning of this fearful vision, that you may fully comfort my soul. + +For you have judged me worthy to show me the end of time and the last events of the times.” + +

+

He said to me, “This is the interpretation of this vision which you saw: + +The eagle, whom you saw come up from the sea, is the fourth kingdom which appeared in a vision to your brother Daniel. + +But it was not explained to him, as I now explain it to you or have explained it. + +Behold, the days come that a kingdom will rise up on earth, and it will be feared more than all the kingdoms that were before it. + +Twelve kings will reign in it, one after another. + +Of those, the second will begin to reign, and will reign a longer time than others of the twelve. + +This is the interpretation of the twelve wings which you saw. + +As for when you heard a voice which spoke, not going out from the heads, but from the midst of its body, this is the interpretation: + +That +12:18 +The Oriental versions have +in the midst of. +after the time of that kingdom, there will arise no small contentions, and it will stand in peril of falling. Nevertheless, it won’t fall then, but will be restored again to its former power. + +You saw the eight under wings sticking to her wings. This is the interpretation: + +That in it eight kings will arise, whose times will be short and their years swift. + +Two of them will perish when the middle time approaches. Four will be kept for a while until the time of the ending of it will approach; but two will be kept to the end. + +You saw three heads resting. This is the interpretation: + +In its last days, the Most High will raise up three +12:23 +The Oriental versions have +kings +kingdoms and renew many things in them. They will rule over the earth, + +and over those who dwell in it, with much oppression, more than all those who were before them. Therefore they are called the heads of the eagle. + +For these are those who will accomplish her wickedness, and who will finish her last actions. + +You saw that the great head disappeared. It signifies that one of them will die on his bed, and yet with pain. + +But for the two that remained, the sword will devour them. + +For the sword of the one will devour him that was with him, but he will also fall by the sword in the last days. + +You saw two under wings passing +12:29 +So the Syriac. The Latin has +over the head. +over to the head that is on the right side. + +This is the interpretation: These are they whom the Most High has kept to his end. This is the brief reign that was full of trouble, as you saw. + +

+

“The lion, whom you saw rising up out of the forest, roaring, speaking to the eagle, and rebuking her for her unrighteousness, and all her words which you have heard, + +this is the anointed one, whom the Most High has kept to the end +12:32 +The words in brackets are added from the Syriac. +[of days, who will spring up out of the seed of David, and he will come and speak] to them and reprove them for their wickedness and unrighteousness, and will12:32 +The Syriac has +set in order.heap up before them their contemptuous dealings. + +For at first he will set them alive in his judgment, and when he has reproved them, he will destroy them. + +For he will deliver the rest of my people with mercy, those who have been preserved throughout my borders, and he will make them joyful until the coming of the end, even the day of judgment, about which I have spoken to you from the beginning. + +This is the dream that you saw, and this is its interpretation. + +Only you have been worthy to know the secret of the Most High. + +Therefore write all these things that you have seen in a book, and put it in a secret place. + +You shall teach them to the wise of your people, whose hearts you know are able to comprehend and keep these secrets. + +But wait here yourself seven more days, that you may be shown whatever it pleases the Most High to show you.” Then he departed from me. + +

+

It came to pass, when all the people +12:40 +So the Syriac. The Latin has +heard. +saw that the seven days were past, and I had not come again into the city, they all gathered together, from the least to the greatest, and came to me, and spoke to me, saying, + +“How have we offended you? What evil have we done against you, that you have utterly forsaken us, and sit in this place? + +For of all the prophets, only you are left to us, like a cluster of the vintage, and like a lamp in a dark place, and like a harbor for a ship saved from the tempest. + +Aren’t the evils which have come to us sufficient? + +If you will forsake us, how much better had it been for us if we also had been consumed in the burning of Zion! + +For we are not better than those who died there.” Then they wept with a loud voice. I answered them, + +“Take courage, O Israel! Don’t be sorrowful, you house of Jacob; + +for the Most High remembers you. The Mighty has not forgotten you +12:47 +So the Syriac. +forever. + +As for me, I have not forsaken you. I haven’t departed from you; but I have come into this place to pray for the desolation of Zion, and that I might seek mercy for the humiliation of your sanctuary. + +Now go your way, every man to his own house, and after these days I will come to you.” + +

+

So the people went their way into the city, as I told them to do. + +But I sat in the field seven days, as the angel commanded me. In those days, I ate only of the flowers of the field, and my food was from plants. + +

+ + +

It came to pass after seven days, I dreamed a dream by night. + +Behold, a wind arose from the sea that moved all its waves. + +I saw, and behold, +13:3 +The words in brackets are added from the Syriac.[this wind caused to come up from the midst of the sea something like the appearance of a man. I saw, and behold,] that man +13:3 +So the Syriac. The Latin has +grew strong +flew with the clouds of heaven. When he turned his face to look, everything that he saw trembled. + +Whenever the voice went out of his mouth, all who heard his voice melted, like the +13:4 +So the Syriac and other Oriental versions.wax melts when it feels the fire. + +

+

After this I saw, and behold, an innumerable multitude of people was gathered together from the four winds of heaven to make war against the man who came out of the sea. + +I saw, and behold, he carved himself a great mountain, and flew up onto it. + +I tried to see the region or place from which the mountain was carved, and I couldn’t. + +

+

After this I saw, and behold, all those who were gathered together to fight against him were very afraid, and yet they dared to fight. + +Behold, as he saw the assault of the multitude that came, he didn’t lift up his hand, or hold a spear or any weapon of war; + +but I saw only how he sent out of his mouth something like a flood of fire, and out of his lips a flaming breath, and out of his tongue he shot out a storm of sparks.13:10 +So the Syriac and Arabic. + + +These were all mixed together: the flood of fire, the flaming breath, and the great storm, and fell upon the assault of the multitude which was prepared to fight, and burned up every one of them, so that all of a sudden an innumerable multitude was seen to be nothing but the dust of ashes and the smell of smoke. When I saw this, I was amazed. + +

+

Afterward, I saw the same man come down from the mountain, and call to himself another multitude which was peaceful. + +Many people came to him. Some of them were glad. Some were sorry. Some of them were bound, and some others brought some of those as offerings. Then through great fear I woke up and prayed to the Most High, and said, + +“You have shown your servant these wonders from the beginning, and have counted me worthy that you should receive my prayer. + +Now show me also the interpretation of this dream. + +For as I conceive in my understanding, woe to those who will be left in those days! Much more woe to those who are not left! + +For those who were not left will be in heaviness, + +understanding the things that are laid up in the latter days, but not attaining to them. + +But woe to them also who are left, because they will see great perils and much distress, like these dreams declare. + +Yet is it +13:20 +Latin +easier. +better for one to be in peril and to come into +13:20 +So the Syriac. +these things, than to pass away as a cloud out of the world, and not to see the things that +13:20 +So the Syriac. +will happen in the last days.” +

+

He answered me, + +“I will tell you the interpretation of the vision, and I will also open to you the things about which you mentioned. + +You have spoken of those who are left behind. This is the interpretation: + +He that will +13:23 +So the Syriac. +endure the peril in that time will protect those who fall into danger, even those who have works and faith toward the Almighty. + +Know therefore that those who are left behind are more blessed than those who are dead. + +These are the interpretations of the vision: Whereas you saw a man coming up from the midst of the sea, + +this is he whom the Most High has been keeping for many ages, who by his own self will deliver his creation. He will direct those who are left behind. + +Whereas you saw that out of his mouth came wind, fire, and storm, + +and whereas he held neither spear, nor any weapon of war, but destroyed the assault of that multitude which came to fight against him, this is the interpretation: + +Behold, the days come when the Most High will begin to deliver those who are on the earth. + +Astonishment of mind will come upon those who dwell on the earth. + +One will plan to make war against another, city against city, place against place, people against people, and kingdom against kingdom. + +It will be, when these things come to pass, and the signs happen which I showed you before, then my Son will be revealed, whom you saw as a man ascending. + +It will be, when all the nations hear his voice, every man will leave his own land and the battle they have against one another. + +An innumerable multitude will be gathered together, as you saw, desiring to come and to fight against him. + +But he will stand on the top of Mount Zion. + +Zion will come, and will be shown to all men, being prepared and built, like you saw the mountain carved without hands. + +My Son will rebuke the nations which have come for their wickedness, with plagues that are like a storm, + +and will rebuke them to their face with their evil thoughts, and the torments with which they will be tormented, which are like a flame. He will destroy them without labor by the law, which is like fire. + +Whereas you saw that he gathered to himself another multitude that was peaceful, + +these are the ten tribes which were led away out of their own land in the time of Osea the king, whom Salmananser the king of the Assyrians led away captive, and he carried them beyond the River, and they were taken into another land. + +But they made this plan among themselves, that they would leave the multitude of the heathen, and go out into a more distant region, where mankind had never lived, + +that there they might keep their statutes which they had not kept in their own land. + +They entered by the narrow passages of the river Euphrates. + +For the Most High then did signs for them, and stopped the springs of the River until they had passed over. + +For through that country there was a long way to go, namely, of a year and a half. The same region is called +13:45 +That is, +another land. +See Deuteronomy 29:28. +Arzareth. + +Then they lived there until the latter time. Now when they begin to come again, + +the Most High stops the springs of the River again, that they may go through. Therefore you saw the multitude gathered together with peace. + +But those who are left behind of your people are those who are found within my holy border. + +It will be therefore when he will destroy the multitude of the nations that are gathered together, he will defend the people who remain. + +Then he will show them very many wonders.” + +

+

Then I said, “O sovereign Lord, explain this to me: Why have I seen the man coming up from the midst of the sea?” + +

+

He said to me, as no one can explore or know what is in the depths of the sea, even so no man on earth can see my Son, or those who are with him, except in the time of +13:52 +So the Oriental versions. The Latin omits +his. +his day. + +This is the interpretation of the dream which you saw, and for this only you are enlightened about this, + +for you have forsaken your own ways, and applied your diligence to mine, and have searched out my law. + +You have ordered your life in wisdom, and have called understanding your mother. + +Therefore I have shown you this, for there is a reward laid up with the Most High. It will be, after another three days I will speak other things to you, and declare to you mighty and wondrous things.” + +

+

Then I went out and passed into the field, giving praise and thanks greatly to the Most High because of his wonders, which he did from time to time, + +and because he governs the time, and such things as happen in their seasons. So I sat there three days. + +

+ + +

It came to pass upon the third day, I sat under an oak, and, behold, a voice came out of a bush near me, and said, “Esdras, Esdras!” + +

+

I said, “Here I am, Lord,” and I stood up on my feet. + +

+

Then he said to me, “I revealed myself in a bush and talked with Moses when my people were in bondage in Egypt. + +I sent him, and +14:4 +Another reading is. +I. +he led my people out of Egypt. I brought him up to Mount Sinai, where I kept him with me for many days. + +I told him many wondrous things, and showed him the secrets of the times and the end of the seasons. I commanded him, saying, + +‘You shall publish these openly, and these you shall hide.’ + +Now I say to you: + +Lay up in your heart the signs that I have shown, the dreams that you have seen, and the interpretations which you have heard; + +for you will be taken away from men, and from now on you will live with my Son and with those who are like you, until the times have ended. + +For the world has lost its youth, and the times begin to grow old. + +14:11 +Verses 11, 12 are omitted in the Syriac. The Aethiopic has +For the age is divided into ten parts, and is come to the tenth: and half of the tenth remains. Now etc. +For the age is divided into twelve parts, and ten parts of it are already gone, +14:11 +Latin +and. +even the half of the tenth part. + +There remain of it two parts after the middle of the tenth part. + +Now therefore set your house in order, reprove your people, comfort the lowly among them, +14:13 +The Latin alone omits +and...wise. +and instruct those of them who are wise, and now renounce the life that is corruptible, + +and let go of the mortal thoughts, cast away from you the burdens of man, put off now your weak nature, + +lay aside the thoughts that are most grievous to you, and hurry to escape from these times. + +For worse evils than those which you have seen happen will be done after this. + +For look how much the world will be weaker through age, so much that more evils will increase on those who dwell in it. + +For the truth will withdraw itself further off, and falsehood will be near. For now +14:18 +So the Oriental versions. +the eagle which you saw in vision hurries to come.” + +

+

Then I answered and said, +14:19 +The Latin omits +I will speak. +“Let me speak in your presence, O Lord. + +Behold, I will go, as you have commanded me, and reprove the people who now live, but who will warn those who will be born afterward? For the world is set in darkness, and those who dwell in it are without light. + +For your law has been burned, therefore no one knows the things that are done by you, or the works that will be done. + +But if I have found favor before you, send the Holy Spirit to me, and I will write all that has been done in the world since the beginning, even the things that were written in your law, that men may be able to find the path, and that those who would live in the latter days may live.” + +

+

He answered me and said, “Go your way, gather the people together, and tell them not to seek you for forty days. + +But prepare for yourself many tablets, and take with you Sarea, Dabria, Selemia, Ethanus, and Asiel, these five, which are ready to write swiftly; + +and come here, and I will light a lamp of understanding in your heart which will not be put out until the things have ended about which you will write. + +When you are done, some things you shall publish openly, and some things you shall deliver in secret to the wise. Tomorrow at this hour you will begin to write.” + +

+

Then I went out, as he commanded me, and gathered all the people together, and said, + +“Hear these words, O Israel! + +Our fathers at the beginning were foreigners in Egypt, and they were delivered from there, + +and received the law of life, which they didn’t keep, which you also have transgressed after them. + +Then the land of Zion was given to you for a possession; but you yourselves and your ancestors have done unrighteousness, and have not kept the ways which the Most High commanded you. + +Because he is a righteous judge, in due time, he took from you what he had given you. + +Now you are here, and your kindred are among you. + +Therefore if you will rule over your own understanding and instruct your hearts, you will be kept alive, and after death you will obtain mercy. + +For after death the judgment will come, when we will live again. Then the names of the righteous will become manifest, and the works of the ungodly will be declared. + +Let no one therefore come to me now, nor seek me for forty days.” + +

+

So I took the five men, as he commanded me, and we went out into the field, and remained there. + +It came to pass on the next day that, behold, a voice called me, saying, “Esdras, open your mouth, and drink what I give you to drink.” + +

+

Then opened I my mouth, and behold, a full cup was handed to me. It was full of something like water, but its color was like fire. + +I took it, and drank. When I had drunk it, my heart uttered understanding, and wisdom grew in my chest, for my spirit retained its memory. + +My mouth was opened, and shut no more. + +The Most High gave understanding to the five men, and they wrote by course the things that were told them, in +14:42 +So the Oriental versions. +characters which they didn’t know, and they sat forty days. Now they wrote in the day-time, and at night they ate bread. + +As for me, I spoke in the day, and by night I didn’t hold my tongue. + +So in forty days, ninety-four books were written. + +

+

It came to pass, when the forty days were fulfilled, that the Most High spoke to me, saying, “The first books that you have written, publish openly, and let the worthy and unworthy read them; + +but keep the last seventy, that you may deliver them to those who are wise among your people; + +for in them is the spring of understanding, the fountain of wisdom, and the stream of knowledge.” + +

+

I did so. + +

+ + +

“Behold, speak in the ears of my people the words of prophecy which I will put in your mouth,” says the Lord. + +“Cause them to be written on paper, for they are faithful and true. + +Don’t be afraid of their plots against you. Don’t let the unbelief of those who speak against you trouble you. + +For all the unbelievers will die in their unbelief. + +

+

“Behold,” says the Lord, “I bring evils on the whole earth: sword, famine, death, and destruction. + +For wickedness has prevailed over every land, and their hurtful works have reached their limit. + +Therefore,” says the Lord, + +“I will hold my peace no more concerning their wickedness which they profanely commit, neither will I tolerate them in these things, which they wickedly practice. Behold, the innocent and righteous blood cries to me, and the souls of the righteous cry out continually. + +I will surely avenge them,” says the Lord, “and will receive to me all the innocent blood from among them. + +Behold, my people are led like a flock to the slaughter. I will not allow them now to dwell in the land of Egypt, + +but I will bring them out with a mighty hand and with a high arm, and will strike Egypt with plagues, as before, and will destroy all its land.” + +

+

Let Egypt and its foundations mourn, for the plague of the chastisement and the punishment that God will bring upon it. + +Let the farmers that till the ground mourn, for their seeds will fail and their trees will be ruined through the blight and hail, and a terrible tempest. + +Woe to the world and those who dwell in it! + +For the sword and their destruction draws near, and nation will rise up against nation to battle with weapons in their hands. + +For there will be sedition among men, and growing strong against one another. In their might, they won’t respect their king or the chief of their great ones. + +For a man will desire to go into a city, and will not be able. + +For because of their pride the cities will be troubled, the houses will be destroyed, and men will be afraid. + +A man will have no pity on his neighbors, but will assault their houses with the sword and plunder their goods, because of the lack of bread, and for great suffering. + +

+

“Behold,” says God, “I call together all the kings of the earth to stir up those who are from the rising of the sun, from the south, from the east, and Libanus, to turn themselves one against another, and repay the things that they have done to them. + +Just as they do yet this day to my chosen, so I will do also, and repay into their bosom.” The Lord God says: + +“My right hand won’t spare the sinners, and my sword won’t cease over those who shed innocent blood on the earth. + +A fire has gone out from his wrath and has consumed the foundations of the earth and the sinners, like burnt straw. + +Woe to those who sin and don’t keep my commandments!” says the Lord. + +“I will not spare them. Go your way, you rebellious children! Don’t defile my sanctuary!” + +For the Lord knows all those who trespass against him, therefore he will deliver them to death and destruction. + +For now evils have come upon the whole earth, and you will remain in them; for God will not deliver you, because you have sinned against him. + +

+

Behold, a horrible sight appearing from the east! + +The nations of the dragons of Arabia will come out with many chariots. From the day that they set out, their hissing is carried over the earth, so that all those who will hear them may also fear and tremble. + +Also the Carmonians, raging in wrath, will go out like the wild boars of the forest. They will come with great power and join battle with them, and will devastate a portion of the land of the Assyrians with their teeth. + +Then the dragons will have the upper hand, remembering their nature. If they will turn themselves, conspiring together in great power to persecute them, + +then these will be troubled, and keep silence through their power, and will turn and flee. + +From the land of the Assyrians, an enemy in ambush will attack them and destroy one of them. Upon their army will be fear and trembling, and indecision upon their kings. + +

+

Behold, clouds from the east, and from the north to the south! They are very horrible to look at, full of wrath and storm. + +They will clash against one another. They will pour out a heavy storm on the earth, even their own storm. There will be blood from the sword to the horse’s belly, + +and to the thigh of man, and to the camel’s hock. + +There will be fearfulness and great trembling upon earth. They who see that wrath will be afraid, and trembling will seize them. + +After this, great storms will be stirred up from the south, from the north, and another part from the west. + +Strong winds will arise from the east, and will shut it up, even the cloud which he raised up in wrath; and the storm that was to cause destruction by the east wind will be violently driven toward the south and west. + +Great and mighty clouds, full of wrath, will be lifted up with the storm, that they may destroy all the earth and those who dwell in it. They will pour out over every high and lofty one a terrible storm, + +fire, hail, flying swords, and many waters, that all plains may be full, and all rivers, with the abundance of those waters. + +They will break down the cities and walls, mountains and hills, trees of the forest, and grass of the meadows, and their grain. + +They will go on steadily to Babylon and destroy her. + +They will come to it and surround it. They will pour out the storm and all wrath on her. Then the dust and smoke will go up to the sky, and all those who are around it will mourn for it. + +Those who remain will serve those who have destroyed it. + +

+

You, Asia, who are partaker in the beauty of Babylon, and in the glory of her person— + +woe to you, you wretch, because you have made yourself like her. You have decked out your daughters for prostitution, that they might please and glory in your lovers, which have always lusted after you! + +You have followed her who is hateful in all her works and inventions. Therefore God says, + +“I will send evils on you: widowhood, poverty, famine, sword, and pestilence, to lay waste your houses and bring you to destruction and death. + +The glory of your power will be dried up like a flower when the heat rises that is sent over you. + +You will be weakened like a poor woman who is beaten and wounded, so that you won’t be able to receive your mighty ones and your lovers. + +Would I have dealt with you with such jealousy,” says the Lord, + +“if you had not always slain my chosen, exalting and clapping your hands, and talking about their dead when you were drunk? + +

+

“Beautify your face! + +The reward of a prostitute will be in your bosom, therefore you will be repaid. + +Just as you will do to my chosen,” says the Lord, “even so God will do to you, and will deliver you to your adversaries. + +Your children will die of hunger. You will fall by the sword. Your cities will be broken down, and all your people in the field will perish by the sword. + +Those who are in the mountains will die of hunger, eat their own flesh, and drink their own blood, because of hunger for bread and thirst for water. + +You, unhappy above all others, will come and will again receive evils. + +In the passage, they will rush on the hateful city and will destroy some portion of your land, and mar part of your glory, and will return again to Babylon that was destroyed. + +You will be cast down by them as stubble, and they will be to you as fire. + +They will devour you, your cities, your land, and your mountains. They will burn all your forests and your fruitful trees with fire. + +They will carry your children away captive, and will plunder your wealth, and mar the glory of your face.” + +

+ + +

Woe to you, Babylon, and Asia! Woe to you, Egypt and Syria! + +Put on sackcloth and garments of goats’ hair, wail for your children and lament; for your destruction is at hand. + +A sword has been sent upon you, and who is there to turn it back? + +A fire has been sent upon you, and who is there to quench it? + +Calamities are sent upon you, and who is there to drive them away? + +Can one drive away a hungry lion in the forest? Can one quench a fire in stubble, once it has begun to burn? + +Can one turn back an arrow that is shot by a strong archer? + +The Lord God sends the calamities, and who will drive them away? + +A fire will go out from his wrath, and who may quench it? + +He will flash lightning, and who will not fear? He will thunder, and who wouldn’t tremble? + +The Lord will threaten, and who will not be utterly broken in pieces at his presence? + +The earth and its foundations quake. The sea rises up with waves from the deep, and its waves will be troubled, along with the fish in them, at the presence of the Lord, and before the glory of his power. + +For his right hand that bends the bow is strong, his arrows that he shoots are sharp, and will not miss when they begin to be shot into the ends of the world. + +Behold, the calamities are sent out, and will not return again until they come upon the earth. + +The fire is kindled and will not be put out until it consumes the foundations of the earth. + +Just as an arrow which is shot by a mighty archer doesn’t return backward, even so the calamities that are sent out upon earth won’t return again. + +Woe is me! Woe is me! Who will deliver me in those days? + +

+

The beginning of sorrows, when there will be great mourning; the beginning of famine, and many will perish; the beginning of wars, and the powers will stand in fear; the beginning of calamities, and all will tremble! What will they do when the calamities come? + +Behold, famine and plague, suffering and anguish! They are sent as scourges for correction. + +But for all these things they will not turn them from their wickedness, nor be always mindful of the scourges. + +Behold, food will be so cheap on earth that they will think themselves to be in good condition, and even then calamities will grow on earth: sword, famine, and great confusion. + +For many of those who dwell on earth will perish of famine; and others who escape the famine, the sword will destroy. + +The dead will be cast out like dung, and there will be no one to comfort them; for the earth will be left desolate, and its cities will be cast down. + +There will be no farmer left to cultivate the earth or to sow it. + +The trees will give fruit, but who will gather it? + +The grapes will ripen, but who will tread them? For in all places there will be a great solitude; + +for one man will desire to see another, or to hear his voice. + +For of a city there will be ten left, and two of the field, who have hidden themselves in the thick groves, and in the clefts of the rocks. + +As in an orchard of olives upon every tree there may be left three or four olives, + +or as when a vineyard is gathered, there are some clusters left by those who diligently search through the vineyard, + +even so in those days, there will be three or four left by those who search their houses with the sword. + +The earth will be left desolate, and its fields will be for briers, and its roads and all her paths will grow thorns, because no sheep will pass along them. + +The virgins will mourn, having no bridegrooms. The women will mourn, having no husbands. Their daughters will mourn, having no helpers. + +Their bridegrooms will be destroyed in the wars, and their husbands will perish of famine. + +

+

Hear now these things, and understand them, you servants of the Lord. + +Behold, the Lord’s word: receive it. Don’t doubt the things about which the Lord speaks. + +Behold, the calamities draw near, and are not delayed. + +Just as a woman with child in the ninth month, when the hour of her delivery draws near, within two or three hours great pains surround her womb, and when the child comes out from the womb, there will be no waiting for a moment, + +even so the calamities won’t delay coming upon the earth. The world will groan, and sorrows will seize it on every side. + +

+

“O my people, hear my word: prepare for battle, and in those calamities be like strangers on the earth. + +He who sells, let him be as he who flees away, and he who buys, as one who will lose. + +Let he who does business be as he who has no profit by it, and he who builds, as he who won’t dwell in it, + +and he who sows, as if he wouldn’t reap, so also he who prunes the vines, as he who won’t gather the grapes, + +those who marry, as those who will have no children, and those who don’t marry, as the widowed. + +Because of this, those who labor, labor in vain; + +for foreigners will reap their fruits, plunder their goods, overthrow their houses, and take their children captive, for in captivity and famine they will conceive their children. + +Those who conduct business, do so only to be plundered. The more they adorn their cities, their houses, their possessions, and their own persons, + +the more I will hate them for their sins,” says the Lord. + +Just as a respectable and virtuous woman hates a prostitute, + +so will righteousness hate iniquity when she adorns herself, and will accuse her to her face when he comes who will defend him who diligently searches out every sin on earth. + +

+

Therefore don’t be like her or her works. + +For yet a little while, and iniquity will be taken away out of the earth, and righteousness will reign over us. + +Don’t let the sinner say that he has not sinned; for God will burn coals of fire on the head of one who says “I haven’t sinned before God and his glory.” + +Behold, the Lord knows all the works of men, their imaginations, their thoughts, and their hearts. + +He said, “Let the earth be made,” and it was made, “Let the sky be made,” and it was made. + +At his word, the stars were established, and he knows the number of the stars. + +He searches the deep and its treasures. He has measured the sea and what it contains. + +He has shut the sea in the midst of the waters, and with his word, he hung the earth over the waters. + +He has spread out the sky like a vault. He has founded it over the waters. + +He has made springs of water in the desert and pools on the tops of the mountains to send out rivers from the heights to water the earth. + +He formed man, and put a heart in the midst of the body, and gave him breath, life, and understanding, + +yes, the spirit of God Almighty. He who made all things and searches out hidden things in hidden places, + +surely he knows your imagination, and what you think in your hearts. Woe to those who sin, and try to hide their sin! + +Because the Lord will exactly investigate all your works, and he will put you all to shame. + +When your sins are brought out before men, you will be ashamed, and your own iniquities will stand as your accusers in that day. + +What will you do? Or how will you hide your sins before God and his angels? + +Behold, God is the judge. Fear him! Stop sinning, and forget your iniquities, to never again commit them. So will God lead you out, and deliver you from all suffering. + +

+

For, behold, the burning wrath of a great multitude is kindled over you, and they will take away some of you, and feed you with that which is sacrificed to idols. + +Those who consent to them will be held in derision and in contempt, and be trodden under foot. + +For there will be in various places, and in the next cities, a great insurrection against those who fear the Lord. + +They will be like mad men, sparing none, but spoiling and destroying those who still fear the Lord. + +For they will destroy and plunder their goods, and throw them out of their houses. + +Then the trial of my elect will be made known, even as the gold that is tried in the fire. + +Hear, my elect ones, says the Lord: “Behold, the days of suffering are at hand, and I will deliver you from them. + +Don’t be afraid, and don’t doubt, for God is your guide. + +You who keep my commandments and precepts,” says the Lord God, “don’t let your sins weigh you down, and don’t let your iniquities lift themselves up.” + +Woe to those who are choked with their sins and covered with their iniquities, like a field is choked with bushes, and its path covered with thorns, that no one may travel through! + +It is shut off and given up to be consumed by fire. + +

+
+ +4 Maccabees +The Fourth Book of the Maccabees +4 Maccabees +4Ma +

The Fourth Book of the Maccabees +

+

The Fourth Book of the Maccabees appears in an appendix to the Greek Septuagint. It is considered to be apocrypha by most church traditions. It is preserved here for its supplementary historical value. +

+ + +

As I am going to demonstrate a most philosophical proposition, namely, that religious reasoning is absolute master of the emotions. I would willingly advise you to give the utmost heed to philosophy. + +For reason is necessary to everyone as a step to science. In addition, it embraces the praise of self-control, the highest virtue. + +If, then, reasoning appears to hold the mastery over the emotions which stand in the way of temperance, such as gluttony and lust, + +it surely also and manifestly rules over the affections which are contrary to justice, such as malice, and of those which are hindrances to courage, such as wrath, pain, and fear. + +Perhaps some may ask, “How is it, then, that reasoning, if it rules the emotions, isn’t also master of forgetfulness and ignorance?” They attempt a ridiculous argument. + +For reasoning does not rule over its own emotions, but over those that are contrary to justice, courage, temperance, and self-control; and yet over these, so as to withstand, without destroying them. + +

+

I might prove to you from many other considerations, that religious reasoning is sole master of the emotions; + +but I will prove it with the greatest force from the fortitude of Eleazar, and seven kindred, and their mother, who suffered death in defense of virtue. + +For all these, treating pains with contempt even to death, by this contempt, demonstrated that reasoning has command over the emotions. + +For their virtues, then, it is right that I should commend those men who died with their mother at this time on behalf of nobility and goodness; and for their honors, I may count them blessed. + +For they, winning admiration not only from men in general, but even from the persecutors, for their courage and endurance, became the means of the destruction of the tyranny against their nation, having conquered the tyrant by their endurance, so that by them their country was purified. + +But we may now at once enter upon the question, having commenced, as is our custom, with laying down the doctrine, and so proceed to the account of these people, giving glory to the all-wise God. + +

+

Therefore the question is whether reasoning is absolute master of the emotions. + +Let’s determine, then, what reasoning is and what emotion is, and how many forms of emotion there are, and whether reasoning rules over all of these. + +Reasoning is intellect accompanied by a life of righteousness, putting foremost the consideration of wisdom. + +Wisdom is a knowledge of divine and human things, and of their causes. + +This is contained in the education of the law, by means of which we learn divine things reverently and human things profitably. + +The forms of wisdom are self-control, justice, courage, and temperance. + +The leading one of these is self-control, by whose means, indeed, it is that reasoning rules over the emotions. + +Of the emotions, pleasure and pain are the two most comprehensive; and they also by nature refer to the soul. + +There are many attendant affections surrounding pleasure and pain. + +Before pleasure is lust; and after pleasure, joy. + +Before pain is fear; and after pain is sorrow. + +Wrath is an affection, common to pleasure and to pain, if any one will pay attention when it comes upon him. + +There exists in pleasure a malicious disposition, which is the most complex of all the affections. + +In the soul, it is arrogance, love of money, thirst for honor, contention, faithlessness, and the evil eye. + +In the body, it is greediness, indiscriminate eating, and solitary gluttony. + +

+

As pleasure and pain are, therefore, two growths out of the body and the soul, so there are many offshoots of these emotions. + +Reasoning, the universal farmer, purging and pruning each of these, tying up, watering, and transplanting, in every way improves the materials of the morals and affections. + +For reasoning is the leader of the virtues, but it is the sole ruler of the emotions. +

+

Observe then first, through the very things which stand in the way of temperance, that reasoning is absolute ruler of the emotions. + +Now temperance consists of a command over the lusts. + +But of the lusts, some belong to the soul and others to the body. Reasoning appears to rule over both. + +Otherwise, how is it that when urged on to forbidden meats, we reject the gratification which would come from them? Isn’t it because reasoning is able to command the appetites? I believe so. + +Hence it is, then, that when craving seafood, birds, four-footed animals, and all kinds of food which are forbidden to us by the law, we withhold ourselves through the mastery of reasoning. + +For the affections of our appetites are resisted by the temperate understanding, and bent back again, and all the impulses of the body are reined in by reasoning. + +

+ + +

Is it any wonder? If the lusts of the soul, after participation with what is beautiful, are frustrated, + +on this ground, therefore, the temperate Joseph is praised in that by reasoning, he subdued, on reflection, the indulgence of the senses. + +For, although young, and ripe for sexual intercourse, he nullified by reasoning the stimulus of his emotions. + +It isn’t merely the stimulus of sensual indulgence, but that of every desire, that reasoning is able to master. + +For instance, the law says, “You shall not covet your neighbor’s wife, nor anything that belongs to your neighbor.” + +Now, then, since it is the law which has forbidden us to desire, I shall much the more easily persuade you, that reasoning is able to govern our lusts, just as it does the affections which are impediments to justice. + +Since in what way is a solitary eater, a glutton, and a drunkard reclaimed, unless it is clear that reasoning is lord of the emotions? + +Therefore, a man who regulates his course by the law, even if he is a lover of money, immediately puts pressure on his own disposition by lending to the needy without interest, and cancelling the debt on the seventh year. + +If a man is greedy, he is ruled by the law acting through reasoning, so that he doesn’t glean his harvest crops or vintage. In reference to other points we may perceive that it is reasoning that conquers his emotions. + +For the law conquers even affection toward parents, not surrendering virtue on their account. + +It prevails over love for one’s wife, rebuking her when she breaks the law. + +It lords it over the love of parents toward their children, for they punish them for vice. It domineers over the intimacy of friends, reproving them when wicked. + +Don’t think it is a strange assertion that reasoning can on behalf of the law conquer even enmity. + +It doesn’t allow cutting down the fruit trees of an enemy, but preserves them from the destroyers, and collects their fallen ruins. + +Reason appears to be master of the more violent emotions, like love of empire, empty boasting, and slander. + +For the temperate understanding repels all these malignant emotions, as it does wrath; for it masters even this. + +Thus Moses, when angered against Dathan and Abiram, did nothing to them in wrath, but regulated his anger by reasoning. + +For the temperate mind is able, as I said, to be superior to the emotions, and to correct some and destroy others. + +For why else did our most wise father Jacob blame Simeon and Levi for having irrationally slain the whole race of the Shechemites, saying, “Cursed be their anger!”? + +For if reasoning didn’t possess the power of subduing angry affections, he would not have said this. + +For at the time when God created man, he implanted within him his emotions and moral nature. + +At that time he enthroned the mind above all as the holy leader, through the medium of the senses. + +He gave a law to this mind, by living according to which it will maintain a temperate, just, good, and courageous reign. + +How, then, a man may say, if reasoning is master of the emotions, has it no control over forgetfulness and ignorance? + +

+ + +

The argument is exceedingly ridiculous, for reasoning doesn’t appear to rule over its own affections, but over those of the body, + +in such a way as that any one of you may not be able to root out desire, but reasoning will enable you to avoid being enslaved to it. + +One may not be able to root out anger from the soul, but it is possible to withstand anger. + +Any one of you may not be able to eradicate malice, but reasoning has force to work with you to prevent you yielding to malice. + +For reasoning is not an eradicator, but an antagonist of the emotions. + +

+

This may be more clearly comprehended from the thirst of King David. + +For after David had been attacking the Philistines the whole day, he with the soldiers of his nation killed many of them; + +then when evening came, sweating and very weary, he came to the royal tent, around which the entire army of our ancestors was encamped. + +Now all the rest of them were at supper; + +but the king, being very much thirsty, although he had numerous springs, could not by their means quench his thirst; + +but a certain irrational longing for the water in the enemy’s camp grew stronger and fiercer upon him, undid and consumed him. + +Therefore his bodyguards being troubled at this longing of the king, two valiant young soldiers, respecting the desire of the king, fully armed themselves, and taking a pitcher, got over the ramparts of the enemies. + +Unperceived by the guardians of the gate, they went throughout the whole camp of the enemy in quest. + +Having boldly discovered the fountain, they filled out of it the drink for the king. + +But he, though parched with thirst, reasoned that a drink regarded of equal value to blood would be terribly dangerous to his soul. + +Therefore, setting up reasoning in opposition to his desire, he poured out the drink to God. + +For the temperate mind has power to conquer the pressure of the emotions, to quench the fires of excitement, + +and to wrestle down the pains of the body, however excessive, and through the excellency of reasoning, to spurn all the assaults of the emotions. + +But the occasion now invites us to give an illustration of temperate reasoning from history. + +For at a time when our fathers were in possession of undisturbed peace through obedience to the law and were prosperous, so that Seleucus Nicanor, the king of Asia, both assigned them money for divine service, and accepted their form of government, + +then certain people, bringing in new things contrary to the public harmony, in various ways fell into calamities. + +

+ + +

For a certain man named Simon, who was in opposition to an honorable and good man who once held the high priesthood for life, named Onias. After slandering Onias in every way, Simon couldn’t injure him with the people, so he went away as an exile, with the intention of betraying his country. + +When coming to Apollonius, the military governor of Syria, Phoenicia, and Cilicia, he said, + +“Having good will to the king’s affairs, I have come to inform you that tens of thousands in private wealth is laid up in the treasuries of Jerusalem which do not belong to the temple, but belong to King Seleucus.” + +Apollonius, acquainting himself with the particulars of this, praised Simon for his care of the king’s interests, and going up to Seleucus informed him of the treasure. + +Getting authority about it, and quickly advancing into our country with the accursed Simon and a very heavy force, + +he said that he came with the commands of the king that he should take the private money of the treasury. + +The nation, indignant at this proclamation, and replying to the effect that it was extremely unfair that those who had committed deposits to the sacred treasury should be deprived of them, resisted as well as they could. + +But Appolonius went away with threats into the temple. + +The priests, with the women and children, asked God to throw his shield over the holy, despised place, + +and Appolonius was going up with his armed force to seize the treasure, when angels from heaven appeared riding on horseback, all radiant in armor, filling them with much fear and trembling. + +Apollonius fell half dead on the court which is open to all nations, and extended his hands to heaven, and implored the Hebrews, with tears, to pray for him, and take away the wrath of the heavenly army. + +For he said that he had sinned, so as to be consequently worthy of death, and that if he were saved, he would proclaim to all people the blessedness of the holy place. + +Onias the high priest, induced by these words, although for other reasons anxious that King Seleucus wouldn’t suppose that Apollonius was slain by human device and not by Divine punishment, prayed for him; + +and he being thus unexpectedly saved, departed to report to the king what had happened to him. + +But on the death of Seleucus the king, his son Antiochus Epiphanes succeeded to the kingdom—a terrible man of arrogant pride. + +

+

He, having deposed Onias from the high priesthood, appointed his brother Jason to be high priest, + +who had made a covenant, if he would give him this authority, to pay yearly three thousand six hundred and sixty talents. + +He committed to him the high priesthood and rulership over the nation. + +He both changed the manner of living of the people, and perverted their civil customs into all lawlessness. + +So that he not only erected a gymnasium on the very citadel of our country, but neglected the guardianship of the temple. + +Because of that, Divine vengeance was grieved and instigated Antiochus himself against them. + +For being at war with Ptolemy in Egypt, he heard that on a report of his death being spread abroad, the inhabitants of Jerusalem had exceedingly rejoiced, and he quickly marched against them. + +Having subdued them, he established a decree that if any of them lived according to the ancestral laws, he should die. + +When he could by no means destroy by his decrees the obedience to the law of the nation, but saw all his threats and punishments without effect, + +for even women, because they continued to circumcise their children, were flung down a precipice along with them, knowing beforehand of the punishment. + +When, therefore, his decrees were disregarded by the people, he himself compelled by means of tortures every one of this race, by tasting forbidden meats, to renounce the Jewish religion. + +

+ + +

The tyrant Antiochus, therefore, sitting in public state with his assessors upon a certain lofty place, with his armed troops standing in a circle around him, + +commanded his spearbearers to seize every one of the Hebrews, and to compel them to taste swine’s flesh and things offered to idols. + +Should any of them be unwilling to eat the accursed food, they were to be tortured on the wheel and so killed. + +When many had been seized, a foremost man of the assembly, a Hebrew, by name Eleazar, a priest by family, by profession a lawyer, and advanced in years, and for this reason known to many of the king’s followers, was brought near to him. + +

+

Antiochus, seeing him, said, + +“I would counsel you, old man, before your tortures begin, to taste the swine’s flesh, and save your life; for I feel respect for your age and hoary head, which since you have had so long, you appear to me to be no philosopher in retaining the superstition of the Jews. + +For therefore, since nature has conferred upon you the most excellent flesh of this animal, do you loathe it? + +It seems senseless not to enjoy what is pleasant, yet not disgraceful; and from notions of sinfulness, to reject the gifts of nature. + +You will be acting, I think, still more senselessly, if you follow vain conceits about the truth. + +You will, moreover, be despising me to your own punishment. + +Won’t you awake from your trifling philosophy, give up the folly of your notions, and regaining understanding worthy of your age, search into the truth of an expedient course? + +Won’t you respect my kindly admonition and have pity on your own years? + +For bear in mind that if there is any power which watches over this religion of yours, it will pardon you for all transgressions of the law which you commit through compulsion.” + +

+

While the tyrant incited him in this manner to the unlawful eating of meat, Eleazar begged permission to speak. + +Having received permission to speak, he began to address the people as follows: + +“We, O Antiochus, who are persuaded that we live under a divine law, consider no compulsion to be so forcible as obedience to that law. + +Therefore we consider that we ought not to transgress the law in any way. + +Indeed, were our law (as you suppose) not truly divine, and if we wrongly think it divine, we would have no right even in that case to destroy our sense of religion. + +Don’t think that eating unclean meat is a trifling offense. + +For transgression of the law, whether in small or great matters, is of equal importance; + +for in either case the law is equally slighted. + +But you deride our philosophy, as though we lived in it irrationally. + +Yet it instructs us in self-control, so that we are superior to all pleasures and lusts; and it trains us in courage, so that we cheerfully undergo every grievance. + +It instructs us in justice, so that in all our dealings we give what is due. It teaches us piety, so that we properly worship the one and only God. + +That is why we don’t eat the unclean; for believing that the law was established by God, we are convinced that the Creator of the world, in giving his laws, sympathizes with our nature. + +Those things which are suitable for our souls, he has directed us to eat; but those which are not, he has forbidden. + +But, tyrant-like, you not only force us to break the law, but also to eat, that you may ridicule us as we thus profanely eat. + +But you won’t have this cause of laughter against me, + +nor will I transgress the sacred oaths of my forefathers to keep the law. + +No, not if you pluck out my eyes, and consume my entrails. + +I am not so old, and void of courage as to not be youthful in reason and in defense of my religion. + +Now then, prepare your wheels, and kindle a fiercer flame. + +I will not so pity my old age, as on my account to break the law of my country. + +I will not play false to you, O law, my instructor, or forsake you, O beloved self-control! + +I will not put you to shame, O philosopher Reason, or deny you, O honored priesthood and knowledge of the law. + +Mouth! You shall not pollute my old age, nor the full stature of a perfect life. + +My ancestors will receive me as pure, not having feared your compulsion, even to death. + +For you will rule like a tyrant over the ungodly, but you will not lord it over my thoughts about religion, either by your arguments, or through deeds.” + +

+ + +

When Eleazar had in this manner answered the exhortations of the tyrant, the spearbearers came up, and rudely dragged Eleazar to the instruments of torture. + +First, they stripped the old man, adorned as he was with the beauty of piety. + +Then tying back his arms and hands, they disdainfully flogged him. + +A herald opposite cried out, “Obey the commands of the king!” + +

+

But the high-minded and truly noble Eleazar, as one tortured in a dream, ignored it. + +But raising his eyes on high to heaven, the old man’s flesh was stripped off by the scourges, and his blood streamed down, and his sides were pierced through. + +Falling on the ground from his body having no power to endure the pains, he still kept his reasoning upright and unbending. + +Then one of the harsh spearbearers rushed at him and began to kick him in the side to force him to get up again after he fell. + +But he endured the pains, despised the cruelty, and persevered through the indignities. + +Like a noble athlete, the old man, when struck, vanquished his torturers. + +His face sweating, and he panting for breath, he was admired even by the torturers for his courage. + +

+

Therefore, partly in pity for his old age, + +partly from the sympathy of acquaintance, and partly in admiration of his endurance, some of the attendants of the king said, + +“Why do you unreasonably destroy yourself, O Eleazar, with these miseries? + +We will bring you some meat cooked by yourself, and you can save yourself by pretending that you have eaten swine’s flesh.” + +

+

Eleazar, as though the advice more painfully tortured him, cried out, + +“Let us who are children of Abraham not be so evil advised as to give way and make use of an unbecoming pretense. + +For it would be irrational, if having lived up to old age in all truth, and having scrupulously guarded our character for it, we would now turn back + +and ourselves become a pattern of impiety to the young, as being an example of eating pollution. + +It would be disgraceful if we would live on some short time, and that scorned by all men for cowardice, + +and be condemned by the tyrant for cowardice by not contending to the death for our divine law. + +Therefore you, O children of Abraham, die nobly for your religion. + +You spearbearers of the tyrant, why do you linger?” + +

+

Beholding him so high-minded against misery, and not changing at their pity, they led him to the fire. + +Then with their wickedly contrived instruments they burned him on the fire, and poured stinking fluids down into his nostrils. + +

+

He being at length burned down to the bones, and about to expire, raised his eyes Godward, and said, + +“You know, O God, that when I might have been saved, I am slain for the sake of the law by tortures of fire. + +Be merciful to your people, and be satisfied with the punishment of me on their account. + +Let my blood be a purification for them, and take my life in exchange for theirs.” + +Thus speaking, the holy man departed, noble in his torments, and even to the agonies of death resisted in his reasoning for the sake of the law. + +Confessedly, therefore, religious reasoning is master of the emotions. + +For had the emotions been superior to reasoning, I would have given them the witness of this mastery. + +But now, since reasoning conquered the emotions, we befittingly award it the authority of first place. + +It is only fair that we should allow that the power belongs to reasoning, since it masters external miseries. + +It would be ridiculous if it weren’t so. I prove that reasoning has not only mastered pains, but that it is also superior to the pleasures, and withstands them. + +

+ + +

The reasoning of our father Eleazar, like a first-rate pilot, steering the vessel of piety in the sea of emotions, + +and flouted by the threats of the tyrant, and overwhelmed with the breakers of torture, + +in no way shifted the rudder of piety until it sailed into the harbor of victory over death. + +No besieged city has ever held out against many and various war machines as that holy man did when his pious soul was tried with the fiery trial of tortures and rackings and moved his besiegers through the religious reasoning that shielded him. + +For father Eleazar, projecting his disposition, broke the raging waves of the emotions as with a jutting cliff. + +O priest worthy of the priesthood! You didn’t pollute your sacred teeth, nor make your appetite, which had always embraced the clean and lawful, a partaker of profanity. + +O harmonizer with the law, and sage devoted to a divine life! + +Of such a character ought those to be who perform the duties of the law at the risk of their own blood, and defend it with generous sweat by sufferings even to death. + +You, father, have gloriously established our right government by your endurance; and making of much account our past service, prevented its destruction, and by your deeds, have made credible the words of philosophy. + +O aged man of more power than tortures, elder more vigorous than fire, greatest king over the emotions, Eleazar! + +For as father Aaron, armed with a censer, hastening through the consuming fire, vanquished the flame-bearing angel, + +so, Eleazar, the descendant of Aaron, wasted away by the fire, didn’t give up his reasoning. + +What is most wonderful is that though he was an old man, though the labors of his body were now spent, his muscles were relaxed, and his sinews worn out, he recovered youth. + +By the spirit of reasoning, and the reasoning of Isaac, he rendered powerless the many-headed rack. + +O blessed old age, and reverend hoar head, and life obedient to the law, which the faithful seal of death perfected. + +If, then, an old man, through religion, despised tortures even to death, then certainly religious reasoning is ruler of the emotions. + +But perhaps some might say, “It is not all who conquer emotions, as not all possess wise reasoning.” + +But those who have meditated upon religion with their whole heart, these alone can master the emotions of the flesh: + +they who believe that to God they don’t die; for, as our forefathers, Abraham, Isaac, and Jacob, they live to God. + +This circumstance, then, is by no means an objection, that some who have weak reasoning are governed by their emotions, + +since what person, walking religiously by the whole rule of philosophy, and believing in God, + +and knowing that it is a blessed thing to endure all kinds of hardships for virtue, would not, for the sake of religion, master his emotion? + +For only the wise and brave man is lord over his emotions. + +This is why even boys, trained with the philosophy of religious reasoning, have conquered still more bitter tortures; + +for when the tyrant was manifestly vanquished in his first attempt, in being unable to force the old man to eat the unclean thing, + +

+ + +

then, indeed, vehemently swayed with emotion, he commanded to bring others of the adult Hebrews, and if they would eat of the unclean thing, to let them go when they had eaten; but if they objected, to torment them more grievously. + +The tyrant having given this charge, seven kindred were brought into his presence, along with their aged mother. They were handsome, modest, well-born, and altogether comely. + +When the tyrant saw them encircling their mother as in a dance, he was pleased with them. Being struck with their becoming and innocent manner, smiled at them, and calling them near, said, + +“O youths, with favorable feelings, I admire the beauty of each of you. Greatly honouring so numerous a band of kindred, I not only counsel you not to share the madness of the old man who has been tortured before, + +but I beg you to yield, and to enjoy my friendship; for I possess the power, not only of punishing those who disobey my commands, but of doing good to those who obey them. + +Put confidence in me, then, and you will receive places of authority in my government, if you forsake your national way of life, + +and, conforming to the Greek way of life, alter your rule and revel in youth’s delights. + +For if you provoke me by your disobedience, you will compel me to destroy every one of you with terrible punishments by tortures. + +Have mercy, then, upon your own selves, whom I, although an enemy, am compassionate for your age and attractive appearance. + +Won’t you consider this: that if you disobey, there will be nothing left for you but to die in torture?” + +

+

When he had said this, he ordered the instruments of torture to be brought forward, that fear might prevail upon them to eat unclean meat. + +When the spearman brought forward the wheels, the racks, the hooks, caldrons, pans, finger-racks, iron hands and wedges, and bellows, the tyrant continued: + +“Fear, young men, and the righteousness which you worship will be merciful to you if you transgress because of compulsion.” + +

+

Now they having listened to these words of persuasion, and seeing the fearful instruments, not only were not afraid, but even answered the arguments of the tyrant, and through their good reasoning destroyed his power. + +Now let’s consider the matter. Had any of them been weak-spirited and cowardly among them, what reasoning would they have employed but these? + +“O wretched that we are, and exceedingly senseless! When the king exhorts us, and calls us to his bounty, should we not obey him? + +Why do we cheer ourselves with vain counsels, and venture upon a disobedience bringing death? + +Shall we not fear, O kindred, the instruments of torture and weigh the threatenings of torment and shun this vain-glory and destructive pride? + +Let’s have compassion upon our age and relent over the years of our mother. + +Let’s bear in mind that we will be dying as rebels. + +Divine Justice will pardon us if we fear the king through necessity. + +Why withdraw ourselves from a most sweet life, and deprive ourselves of this pleasant world? + +Let’s not oppose necessity, nor seek vain-glory by our own torture. + +The law itself wouldn’t arbitrarily put us to death because we dread torture. + +Why has such angry zeal taken root in us, and such fatal obstinacy approved itself to us, when we might live unmolested by the king?” + +

+

But the young men didn’t say or think anything of this kind when about to be tortured. + +For they were well aware of the sufferings, and masters of the pains. + +So that as soon as the tyrant had ceased counselling them to eat the unclean, they all with one voice, as from the same heart said: + +

+ + +

“Why do you delay, O tyrant? For we are more ready to die than to transgress the injunctions of our fathers. + +We would be disgracing our fathers if we didn’t obey the law, and take knowledge for our guide. + +O tyrant, counselor of law-breaking, do not, hating us as you do, pity us more than we pity ourselves. + +For we consider your escape to be worse than death. + +You try to scare us by threatening us with death by tortures, as though you had learned nothing by the death of Eleazar. + +But if aged men of the Hebrews have died in the cause of religion after enduring torture, more rightly should we younger men die, scorning your cruel tortures, which our aged instructor overcame. + +Make the attempt, then, O tyrant. If you put us to death for our religion, don’t think that you harm us by torturing us. + +For we through this ill-treatment and endurance will gain the rewards of virtue. + +But you, for the wicked and despotic slaughter of us, will, from the Divine vengeance, endure eternal torture by fire.” + +

+

When they had said this, the tyrant was not only exasperated against them for being disobedient, but enraged with them for being ungrateful. + +So, at his bidding, the torturers brought the oldest of them, and tearing through his tunic, bound his hands and arms on each side with straps. + +When they had labored hard in scourging him without effect, they hurled him on the wheel. + +The noble youth, extended upon this, became dislocated. + +With every member disjointed, he denounced the tyrant, saying, + +“O most accursed tyrant, and enemy of heavenly justice, and cruel-hearted, I am no murderer, nor sacrilegious man, whom you torture, but a defender of the Divine law.” + +

+

And when the spearmen said, “Consent to eat, that you may be released from your tortures,” + +he answered, “Not so powerful, O accursed lackeys, is your wheel, as to stifle my reasoning. Cut my limbs, and burn my flesh, and twist my joints. + +For through all my torments I will convince you that the children of the Hebrews are alone unconquered on behalf of virtue.” + +

+

While he was saying this, they heaped up fuel, and setting fire to it, strained him on the wheel still more. + +The wheel was defiled all over with blood. The hot ashes were quenched by the droppings of gore, and pieces of flesh were scattered about the axles of the machine. + +Although the framework of his bones was now destroyed, the high-minded and Abrahamic youth didn’t groan. + +But, as though transformed by fire into immortality, he nobly endured the rackings, saying, + +“Imitate me, O kindred. Never desert your station, nor renounce my brotherhood in courage. Fight the holy and honorable fight of religion, + +by which means our just and paternal Providence, becoming merciful to the nation, will punish the pestilent tyrant.” + +Saying this, the revered youth abruptly closed his life. + +

+

When all admired his courageous soul, the spearmen brought forward him who was second oldest, and having put on iron gauntlets with sharp hooks, bound him to the rack. + +When, on enquiring whether he would eat before he was tortured, they heard his noble sentiment. + +After they with the iron gauntlets had violently dragged all the flesh from the neck to the chin, the panther-like animals tore off the very skin of his head, but he, bearing with firmness this misery, said, + +“How sweet is every form of death for the religion of our fathers!” Then he said to the tyrant, + +“Don’t you think, most cruel of all tyrants, that you are now tortured more than I, finding your arrogant conception of tyranny conquered by our perseverance in behalf of our religion? + +For I lighten my suffering by the pleasures which are connected with virtue. + +But you are tortured with threatenings for impiety. You won’t escape, most corrupt tyrant, the vengeance of Divine wrath.” + +

+ + +

Now this one endured this praiseworthy death. The third was brought along, and exhorted by many to taste and save his life. + +But he cried out and said, “Don’t you know that the father of those who are dead is my father also, and that the same mother bore me, and that I was brought up in the same way? + +I don’t renounce the noble relationship of my kindred. + +Now then, whatever instrument of vengeance you have, apply it to my body, for you aren’t able to touch my soul, even if you want to.” + +But they, highly incensed at his boldness of speech, dislocated his hands and feet with racking engines, and wrenching them from their sockets, dismembered him. + +They dragged around his fingers, his arms, his legs, and his ankles. + +Not being able by any means to strangle him, they tore off his skin, together with the extreme tips of his fingers, and then dragged him to the wheel, + +around which his vertebral joints were loosened, and he saw his own flesh torn to shreds, and streams of blood flowing from his entrails. + +When about to die, he said, + +“We, O accursed tyrant, suffer this for the sake of Divine education and virtue. + +But you, for your impiety and blood shedding, will endure unceasing torments.” + +

+

Thus having died worthily of his kindred, they dragged forward the fourth, saying, + +“Don’t share the madness of your kindred, but respect the king and save yourself.” + +

+

But he said to them, “You don’t have a fire so scorching as to make me play the coward. + +By the blessed death of my kindred, and the eternal punishment of the tyrant, and the glorious life of the pious, I will not repudiate the noble brotherhood. + +Invent, O tyrant, tortures, that you may learn, even through them, that I am the brother of those tormented before.” + +

+

When he had said this, the blood-thirsty, murderous, and unholy Antiochus ordered his tongue to be cut out. + +But he said, “Even if you take away the organ of speech, God still hears the silent. + +Behold, my tongue is extended, cut it off; for in spite of that you won’t silence our reasoning. + +We gladly lose our limbs on behalf of God. + +But God will speedily find you, since you cut off the tongue, the instrument of divine melody.” + +

+ + +

When he had died, disfigured in his torments, the fifth leaped forward, and said, + +“I don’t intend, O tyrant, to get excused from the torment which is on behalf of virtue. + +But I have come of my own accord, that by my death you may owe heavenly vengeance and punishment for more crimes. + +O you hater of virtue and of men, what have we done that you thus revel in our blood? + +Does it seem evil to you that we worship the Founder of all things, and live according to his surpassing law? + +But this is worthy of honors, not torments, + +if you had been capable of the higher feelings of men, and possessed the hope of salvation from God. + +Behold now, being alien from God, you make war against those who are religious toward God.” + +

+

As he said this, the spearbearers bound him and drew him to the rack, + +to which binding him at his knees, and fastening them with iron fetters, they bent down his loins upon the wedge of the wheel; and his body was then dismembered, scorpion-fashion. + +With his breath thus confined, and his body strangled, he said, + +“A great favor you bestow upon us, O tyrant, by enabling us to manifest our adherence to the law by means of nobler sufferings.” + +

+

He also being dead, the sixth, quite a youth, was brought out. On the tyrant asking him whether he would eat and be delivered, he said, + +“I am indeed younger than my brothers, but in understanding I am as old. + +I was born and reared to the same end. We are bound to die also on behalf of the same cause. + +So if you think it is proper to torment us for not eating the unclean, then torment!” + +

+

As he said this, they brought him to the wheel. + +Extended upon this, with limbs racked and dislocated, he was gradually roasted from beneath. + +Having heated sharp spits, they stabbed them into his back; and having pierced his sides, they burned away his entrails. + +He, while tormented, said, “O good and holy contest, in which for the sake of religion, we kindred have been called to the arena of pain, and have not been conquered. + +For religious understanding, O tyrant, is unconquered. + +Armed with upright virtue, I also will depart with my kindred. + +I, too, bearing with me a great avenger, O inventor of tortures, and enemy of the truly pious. + +We six youths have destroyed your tyranny. + +For isn’t your inability to overrule our reasoning, and to compel us to eat the unclean, your destruction? + +Your fire is cold to us. Your racks are painless, and your violence harmless. + +For the guards not of a tyrant but of a divine law are our defenders. Through this we keep our reasoning unconquered.” + +

+ + +

When he, too, had undergone blessed martyrdom, and died in the cauldron into which he had been thrown, the seventh, the youngest of all, came forward, + +whom the tyrant pitying, though he had been dreadfully reproached by his kindred, + +seeing him already encompassed with chains, had him brought nearer, and endeavored to counsel him, saying, + +“You see the end of the madness of your kindred, for they have died in torture through disobedience. You, if disobedient, having been miserably tormented, will yourself perish prematurely. + +But if you obey, you will be my friend, and have a charge over the affairs of the kingdom.” + +Having thus exhorted him, he sent for the boy’s mother, that, by showing compassion to her for the loss of so many sons, he might incline her, through the hope of safety, to make the survivor obedient. + +

+

He, after his mother had urged him on in the Hebrew tongue, (as we will soon relate) said, + +“Release me that I may speak to the king and all his friends.” + +They, rejoicing exceedingly at the promise of the youth, quickly let him go. + +He, running up to the pans, said, + +“Impious tyrant, and most blasphemous man, were you not ashamed, having received prosperity and a kingdom from God, to kill His servants, and to rack the doers of godliness? + +Therefore the divine vengeance is reserving you for eternal fire and torments, which will cling to you for all time. + +Weren’t you ashamed, man as you are, yet most savage, to cut out the tongues of men of like feeling and origin, and having thus abused to torture them? + +But they, bravely dying, fulfilled their religion toward God. + +But you will groan as you deserve for having slain without cause the champions of virtue. + +Therefore,” he continued, “I myself, being about to die, + +will not forsake my kindred. + +I call upon the God of my fathers to be merciful to my race. + +But you, both living and dead, he will punish.” + +Thus having prayed, he hurled himself into the pans; and so expired. + +

+ + +

If then, the seven kindred despised troubles even to death, it is admitted on all sides that righteous reasoning is absolute master over the emotions. + +For just as if they had eaten of the unholy as slaves to the emotions, we would have said that they had been conquered by them. + +Now it is not so. But by means of the reasoning which is praised by God, they mastered their emotions. + +It is impossible to overlook the leadership of reflection, for it gained the victory over both emotions and troubles. + +How, then, can we avoid according to these men mastery of emotion through right reasoning, since they didn’t withdraw from the pains of fire? + +For just as by means of towers projecting in front of harbors men break the threatening waves, and thus assure a still course to vessels entering port, + +so that seven-towered right-reasoning of the young men, securing the harbour of religion, conquered the tempest of emotions. + +For having arranged a holy choir of piety, they encouraged one another, saying, + +“Brothers, may we die brotherly for the law. Let us imitate the three young men in Assyria who despised the equally afflicting furnace. + +Let’s not be cowards in the manifestation of piety.” + +One said, “Courage, brother!” and another, “Nobly endure!” + +Another said, “Remember of what stock you are;” and by the hand of our father Isaac endured to be slain for the sake of piety. + +One and all, looking at each other serene and confident, said, “Let’s sacrifice with all our heart our souls to God who gave them, and employ our bodies for the keeping of the law. + +Let’s not fear him who thinks he kills; + +for great is the trial of soul and danger of eternal torment laid up for those who transgress the commandment of God. + +Let’s arm ourselves, therefore, in the self-control, which is divine reasoning. + +If we suffer like this, Abraham, Isaac, and Jacob will receive us, and all the fathers will commend us. + +As each one of the kindred was hauled away, the rest exclaimed, “Don’t disgrace us, O brother, nor falsify those who died before you!” + +

+

Now you are not ignorant of the charm of brotherhood, which the Divine and all wise Providence has imparted through fathers to children, and has engendered through the mother’s womb. + +These brothers remained an equal time in their mother’s womb, and were formed for the same period, and nourished by the same blood, and were perfected through the same principle of life. + +They were brought forth at equal intervals, and sucked milk from the same fountains. Their brotherly souls were reared up lovingly together, + +and increase more powerfully by reason of this simultaneous rearing, and by daily companionship, and by other education, and exercise in the law of God. + +

+

Brotherly love being thus sympathetically constituted, the seven kindred had a more sympathetic mutual harmony. + +For being educated in the same law, and practicing the same virtues, and reared up in a just course of life, they increased this harmony with each other. + +For the same ardor for what is right and honorable increased their goodwill and harmony toward each other. + +For it acting along with religion, made their brotherly feeling more desirable to them. + +And yet, although nature, companionship, and virtuous morals increased their brotherly love, those who were left endured to see their kindred, who were mistreated for their religion, tortured even to death. + +

+ + +

More that this, they even urged them on to this mistreatment; so that they not only despised pains themselves, but they even got the better of their affections of brotherly love. + +Reasoning is more royal than a king, and freer than freemen! + +What a sacred and harmonious concert of the seven kindred as concerning piety! + +None of the seven youths turned cowardly or shrank back from death. + +But all of them, as though running the road to immortality, hastened on to death through tortures. + +For just as hands and feet are moved sympathetically with the directions of the soul, so those holy youths agreed to death for religion’s sake, as through the immortal soul of religion. + +O holy seven of harmonious kindred! For as the seven days of creation, about religion, + +so the youths, circling around the number seven, annulled the fear of torments. + +We now shudder at the recital of the affliction of those young men; but they not only saw, and not only heard the immediate execution of the threat, but undergoing it, persevered; and that through the pains of fire. + +What could be more painful? For the power of fire, being sharp and quick, speedily dissolved their bodies. + +Don’t think it wonderful that reasoning ruled over those men in their torments, when even a woman’s mind despised more manifold pains. + +For the mother of those seven youths endured the rackings of each of her children. + +

+

Consider how comprehensive is the love of offspring, which draws every one to sympathy of affection, + +where irrational animals possess a similar sympathy and love for their offspring with men. + +The tame birds frequenting the roofs of our houses defend their fledglings. + +Others build their nests and hatch their young on the tops of mountains, in the precipices of valleys, and the holes and tops of trees, and keep intruders away. + +If not able to do this, they fly circling round them in agony of affection, calling out in their own note, and save their offspring in whatever manner they are able. + +But why should we point attention to the sympathy toward children shown by irrational animals? + +Even bees, at the season of honey-making, attack all who approach, and pierce with their sting, as with a sword, those who draw near their hive, and repel them even to death. + +But sympathy with her children didn’t turn away the mother of the young men, who had a spirit kindred with that of Abraham. + +

+ + +

O reasoning of the sons, lord over the emotions, and religion more desirable to a mother than children! + +The mother, when two things were set before her, religion and the safety of her seven sons for a time, on the conditional promise of a tyrant, + +rather elected the religion which according to God preserves to eternal life. + +In what way can I describe ethically the affections of parents toward their children, the resemblance of soul and of form impressed into the small type of a child in a wonderful manner, especially through the greater sympathy of mothers with the feelings of those born of them! + +For by how much mothers are by nature weak in disposition and prolific in offspring, by so much the fonder they are of children. + +Of all mothers, the mother of the seven was the fondest of children, who in seven childbirths had deeply engendered love toward them. + +Through her many pains undergone in connection with each one, she was compelled to feel sympathy with them; + +yet, through fear of God, she neglected the temporary salvation of her children. + +Not only so, but on account of the excellent disposition to the law, her maternal affection toward them was increased. + +For they were both just and temperate, and courageous, high-minded, fond of their kindred, and so fond of their mother that even to death they obeyed her by observing the law. + +

+

Yet, though there were so many circumstances connected with love of children to draw on a mother to sympathy, in the case of none of them were the various tortures able to pervert her principle. + +But she inclined each one separately and all together to death for religion. + +O holy nature and parental feeling, and reward of bringing up children, and unconquerable maternal affection! + +At the racking and roasting of each one of them, the observant mother was prevented by religion from changing. + +She saw her children’s flesh dissolving around the fire, and their extremities quivering on the ground, and the flesh of their heads dropped forward down to their beards, like masks. + +

+

O you mother, who was tried at this time with bitterer pangs than those at birth! + +O you only woman who have produced perfect holiness! + +Your firstborn, expiring, didn’t turn you, nor the second, looking miserable in his torments, nor the third, breathing out his soul. + +You didn’t weep when you saw each of their eyes looking sternly at their tortures, and their nostrils foreboding death! + +When you saw children’s flesh heaped upon children’s flesh that had been torn off, heads decapitated upon heads, dead falling upon the dead, and a choir of children turned through torture into a burying ground, you didn’t lament. + +Not so do siren melodies or songs of swans attract the hearers to listening, O voices of children calling on your mother in the midst of torments! + +With what and what manner of torments was the mother herself tortured, as her sons were undergoing the wheel and the fires! + +But religious reasoning, having strengthened her courage in the midst of sufferings, enabled her to forego, for the time, parental love. + +

+

Although seeing the destruction of seven children, the noble mother, after one embrace, stripped off her feelings through faith in God. + +For just as in a council room, seeing in her own soul vehement counselors, nature and parentage and love of her children, and the racking of her children, + +she holding two votes, one for the death, the other for the preservation of her children, + +didn’t lean to that which would have saved her children for the safety of a brief space. + +But this daughter of Abraham remembered his holy fortitude. + +

+

O holy mother of a nation, avenger of the law, defender of religion, and prime bearer in the battle of the affections! + +O you nobler in endurance than males, and more courageous than men in perseverance! + +For like Noah’s ship, bearing the world in the world-filling flood, bore up against the waves, + +so you, the guardian of the law, when surrounded on every side by the flood of emotions, and assaulted by violent storms which were the torments of your children, bore up nobly against the storms against religion. + +

+ + +

If, then, even a woman, and that an aged one, and the mother of seven children, endured to see her children’s torments even to death, it must be admitted that religious reasoning is master even of the emotions. + +I have proved, then, that not only men have obtained the mastery of their emotions, but also that a woman despised the greatest torments. + +The lions around Daniel were not so fierce, nor the furnace of Misael burning with most vehement fires as that natural love of children burned within her, when she saw her seven sons tortured. + +But with the reasoning of religion the mother quenched emotions so great and powerful. + +For we must consider also this: that, had the woman been faint hearted, as being their mother, she would have lamented over them, and perhaps might have spoken thus: + +“Ah! I am wretched and many times miserable, who having born seven sons, have become the mother of none. + +O seven useless childbirths, and seven profitless periods of labor, and fruitless givings of suck, and miserable nursings at the breast. + +Vainly, for your sakes, O sons, have I endured many pangs, and the more difficult anxieties of rearing. + +Alas, of my children, some of you unmarried, and some who have married to no profit, I will not see your children, nor have the joy of being a grandmother. + +Ah, that I who had many and fair children, should be a lone widow full of sorrows! + +Nor, should I die, will I have a son to bury me.” But with such a lament as this, the holy and God-fearing mother wept for none of them. + +Nor did she divert any of them from death, nor grieve for them as for the dead. + +But as one possessed with an adamant mind, and as one bringing forth again her full number of sons to immortality, she rather urged them to death on behalf of religion. + +O woman, soldier of God for religion, you, aged and a female, have conquered through endurance even a tyrant; and even though weak, have been found more powerful in deeds and words. + +For when you were seized along with your children, you stood looking at Eleazar in torture, and said to your sons in the Hebrew tongue, + +“O sons, the contest is noble to which you are being called as a witness for the nation. Strive zealously for the laws of your country. + +For it would be disgraceful if this old man endured pains for the sake of righteousness, and that you who are younger would be afraid of the tortures. + +Remember that through God, you obtained existence and have enjoyed it. + +Therefore, you ought to bear every affliction because of God. + +For him also our father Abraham was zealous to sacrifice Isaac our progenitor, and didn’t shudder at the sight of his own paternal hand descending down with the sword upon him. + +The righteous Daniel was cast to the lions; and Ananias, Azarias, and Misael were hurled into a fiery furnace, yet they endured through God. + +You, then, having the same faith toward God, don’t be troubled. + +For it is unreasonable that they who know religion wouldn’t stand up against troubles. + +With these arguments, the mother of seven, exhorting each of her sons, encouraged and persuaded them not to transgress God’s commandment. + +They saw this, too, that those who die for God, live to God, like Abraham, Isaac, Jacob, and all the patriarchs. + +

+ + +

Some of the spearbearers said that when she herself was about to be seized for the purpose of being put to death, she threw herself on the pile, rather than let them touch her body. + +O you mother, who together with seven children destroyed the violence of the tyrant, and rendered void his wicked intentions, and exhibited the nobleness of faith! + +For you, like a house bravely built on the pillar of your children, bore the shock of tortures without swaying. + +Cheer up, therefore, O holy-minded mother! Hold the firm hope of your steadfastness with God. + +Not so gracious does the moon appear with the stars in heaven, as you are established as honorable before God, and fixed in the sky with your sons whom you illuminated with religion to the stars. + +For your bearing of children was after the manner of a child of Abraham. + +

+

If it were lawful for us to paint as on a tablet the religion of your story, the spectators wouldn’t shudder at seeing the mother of seven children enduring for the sake of religion various tortures even to death. + +It would have been a worthwhile thing to have inscribed on the tomb itself these words as a memorial to those of the nation, + +“Here an aged priest, an aged woman, and seven sons, are buried through the violence of a tyrant, who wished to destroy the society of the Hebrews. + +These also avenged their nation, looking to God, and enduring torments to death.” + +For it was truly a divine contest which was carried through by them. + +For at that time virtue presided over the contest, approving the victory through endurance, namely, immortality, eternal life. + +Eleazar was the first to contend. The mother of the seven children entered the contest, and the kindred contended. + +The tyrant was the antagonist; and the world and living men were the spectators. + +Reverence for God conquered, and crowned her own athletes. + +Who didn’t admire those champions of true legislation? Who were not amazed? + +The tyrant himself, and all their council, admired their endurance, + +through which, they also now stand beside the divine throne and live a blessed life. + +For Moses says, “All the saints are under your hands.” + +These, therefore, having been sanctified through God, have been honored not only with this honor, but that also by the fact that because of them, the enemy didn’t overcome our nation. + +That tyrant was punished and their country purified. + +For they became the ransom to the sin of the nation. The Divine Providence saved Israel, which was afflicted before, by the blood of those pious ones and the death that appeased wrath. + +For the tyrant Antiochus, looking to their courageous virtue and to their endurance in torture, proclaimed that endurance as an example to his soldiers. + +They proved to be to him noble and brave for land battles and for sieges; and he conquered and stormed the towns of all his enemies. + +

+ + +

O Israelite children, descendants of the seed of Abraham, obey this law and in every way be religious, + +knowing that religious reasoning is lord of the emotions, and those not only inward but outward. + +

+

Therefore those people who gave up their bodies to pains for the sake of religion were not only admired by men, but were deemed worthy of a divine portion. + +The nation through them obtained peace, and having renewed the observance of the law in their country, drove the enemy out of the land. + +The tyrant Antiochus was both punished on earth, and is punished now that he is dead; for when he was quite unable to compel the Israelites to adopt foreign customs, and to desert the manner of life of their fathers, + +then, departing from Jerusalem, he made war against the Persians. + +The righteous mother of the seven children spoke also as follows to her offspring: “I was a pure virgin, and didn’t go beyond my father’s house, but I took care of the rib from which woman was made. + +No destroyer of the desert or ravisher of the plain injured me, nor did the destructive, deceitful snake make plunder of my chaste virginity. I remained with my husband during the time of my maturity. + +When these, my children, arrived at maturity, their father died. He was blessed! For having sought out a life of fertility in children, he was not grieved with a period of loss of children. + +He used to teach you, when yet with you, the law and the prophets. + +He used to read to you about the slaying of Abel by Cain, the offering up of Isaac, and the imprisonment of Joseph. + +He used to tell you of the zealous Phinehas, and informed you of Ananias, Azarias, and Misael in the fire. + +He used to glorify Daniel, who was in the den of lions, and pronounce him blessed. + +He used to remind you of the scripture of Esaias, which says, “Even if you pass through the fire, it won’t burn you.” + +He chanted to you David, the hymn writer, who says, “Many are the afflictions of the just.” + +He declared the proverbs of Solomon, who says, “He is a tree of life to all those who do His will.” + +He used to confirm what Ezekiel said: “Will these dry bones live?” + +For he didn’t forget the song which Moses taught, proclaiming, “I will kill, and I will make alive.” + +This is our life and the length of our days. + +

+

O that bitter, and yet not bitter, day when the bitter tyrant of the Greeks, quenching fire with fire in his cruel caldrons, brought with boiling rage the seven sons of the daughter of Abraham to the rack, and to all his torments! + +He pierced the balls of their eyes, and cut out their tongues, and put them to death with varied tortures. + +Therefore divine retribution pursued and will pursue the pestilent wretch. + +But the children of Abraham, with their victorious mother, are assembled together to the choir of their father, having received pure and immortal souls from God. + +To him be glory forever and ever. Amen. + +

+
+World English Bible (WEB) +Daniel (Greek) +The Book of Daniel with Greek Portions +Daniel (Greek) +DaG +

The Book of +

+

Daniel +

+

with Greek Portions +

+ + +

In the third year of the reign of Jehoiakim king of Judah, Nebuchadnezzar king of Babylon came to Jerusalem and besieged it. + +The Lord1:2 +The word translated “Lord” is “Adonai.” gave Jehoiakim king of Judah into his hand, with part of the vessels of the house of God;1:2 +The Hebrew word rendered “God” is “אֱלֹהִ֑ים” (Elohim). and he carried them into the land of Shinar to the house of his god. He brought the vessels into the treasure house of his god. + +

+

The king spoke to Ashpenaz the master of his eunuchs, that he should bring in some of the children of Israel, even of the royal offspring1:3 +or, seed and of the nobles— + +youths in whom was no defect, but well-favored, and skillful in all wisdom, and endowed with knowledge, and understanding science, and who had the ability to serve in the king’s palace; and that he should teach them the learning and the language of the Chaldeans. + +The king appointed for them a daily portion of the king’s delicacies, and of the wine which he drank, and that they should be nourished three years; that at its end they should serve the king. + +

+

Now among these were of the children of Judah: Daniel, Hananiah, Mishael, and Azariah. + +The prince of the eunuchs gave names to them: to Daniel he gave the name Belteshazzar; to Hananiah, Shadrach; to Mishael, Meshach; and to Azariah, Abednego. + +

+

But Daniel purposed in his heart that he would not defile himself with the king’s delicacies, nor with the wine which he drank. Therefore he requested of the prince of the eunuchs that he might not defile himself. + +Now God made Daniel find kindness and compassion in the sight of the prince of the eunuchs. + +The prince of the eunuchs said to Daniel, “I fear my lord the king, who has appointed your food and your drink. For why should he see your faces worse looking than the youths who are of your own age? Then you would endanger my head with the king.” + +

+

Then Daniel said to the steward whom the prince of the eunuchs had appointed over Daniel, Hananiah, Mishael, and Azariah: + +“Test your servants, I beg you, ten days; and let them give us vegetables to eat and water to drink. + +Then let our faces be examined before you, and the face of the youths who eat of the king’s delicacies; and as you see, deal with your servants.” + +So he listened to them in this matter, and tested them for ten days. + +

+

At the end of ten days, their faces appeared fairer, and they were fatter in flesh, than all the youths who ate of the king’s delicacies. + +So the steward took away their delicacies, and the wine that they would drink, and gave them vegetables. + +

+

Now as for these four youths, God gave them knowledge and skill in all learning and wisdom; and Daniel had understanding in all visions and dreams. + +

+

At the end of the days which the king had appointed for bringing them in, the prince of the eunuchs brought them in before Nebuchadnezzar. + +The king talked with them; and among them all was found no one like Daniel, Hananiah, Mishael, and Azariah. Therefore they served the king. + +In every matter of wisdom and understanding concerning which the king inquired of them, he found them ten times better than all the magicians and enchanters who were in all his realm. + +

+

Daniel continued serving even to the first year of King Cyrus. + +

+ + +

In the second year of the reign of Nebuchadnezzar, Nebuchadnezzar dreamed dreams; and his spirit was troubled, and his sleep went from him. + +Then the king commanded that the magicians, the enchanters, the sorcerers, and the Chaldeans be called to tell the king his dreams. So they came in and stood before the king. + +The king said to them, “I have dreamed a dream, and my spirit is troubled to know the dream.” + +

+

Then the Chaldeans spoke to the king in the Syrian language, “O king, live forever! Tell your servants the dream, and we will show the interpretation.” + +

+

The king answered the Chaldeans, “The thing has gone from me. If you don’t make known to me the dream and its interpretation, you will be cut in pieces, and your houses will be made a dunghill. + +But if you show the dream and its interpretation, you will receive from me gifts, rewards, and great honor. Therefore show me the dream and its interpretation.” + +

+

They answered the second time and said, “Let the king tell his servants the dream, and we will show the interpretation.” + +

+

The king answered, “I know of a certainty that you are trying to gain time, because you see the thing has gone from me. + +But if you don’t make known to me the dream, there is but one law for you; for you have prepared lying and corrupt words to speak before me, until the situation changes. Therefore tell me the dream, and I will know that you can show me its interpretation.” + +

+

The Chaldeans answered before the king, and said, “There is not a man on the earth who can show the king’s matter, because no king, lord, or ruler, has asked such a thing of any magician, enchanter, or Chaldean. + +It is a rare thing that the king requires, and there is no other who can show it before the king, except the gods, whose dwelling is not with flesh.” + +

+

Because of this, the king was angry and very furious, and commanded that all the wise men of Babylon be destroyed. + +So the decree went out, and the wise men were to be slain. They sought Daniel and his companions to be slain. + +

+

Then Daniel returned answer with counsel and prudence to Arioch the captain of the king’s guard, who had gone out to kill the wise men of Babylon. + +He answered Arioch the king’s captain, “Why is the decree so urgent from the king?” Then Arioch made the thing known to Daniel. + +Daniel went in, and desired of the king that he would appoint him a time, and he would show the king the interpretation. + +

+

Then Daniel went to his house and made the thing known to Hananiah, Mishael, and Azariah, his companions, + +that they would desire mercies of the God of heaven concerning this secret, and that Daniel and his companions would not perish with the rest of the wise men of Babylon. + +Then the secret was revealed to Daniel in a vision of the night. Then Daniel blessed the God of heaven. + +Daniel answered, +

+“Blessed be the name of God forever and ever; + +for wisdom and might are his. + + +He changes the times and the seasons. + +He removes kings and sets up kings. + +He gives wisdom to the wise, + +and knowledge to those who have understanding. + + +He reveals the deep and secret things. + +He knows what is in the darkness, + +and the light dwells with him. + + +I thank you and praise you, + +O God of my fathers, + +who have given me wisdom and might, + +and have now made known to me what we desired of you; + +for you have made known to us the king’s matter.” + + +

Therefore Daniel went in to Arioch, whom the king had appointed to destroy the wise men of Babylon. He went and said this to him: “Don’t destroy the wise men of Babylon. Bring me in before the king, and I will show to the king the interpretation.” + +

+

Then Arioch brought in Daniel before the king in haste, and said this to him: “I have found a man of the children of the captivity of Judah who will make known to the king the interpretation.” + +

+

The king answered Daniel, whose name was Belteshazzar, “Are you able to make known to me the dream which I have seen, and its interpretation?” + +

+

Daniel answered before the king, and said, “The secret which the king has demanded can’t be shown to the king by wise men, enchanters, magicians, or soothsayers; + +but there is a God in heaven who reveals secrets, and he has made known to King Nebuchadnezzar what will be in the latter days. Your dream, and the visions of your head on your bed, are these: + +

+

“As for you, O king, your thoughts came on your bed, what should happen hereafter; and he who reveals secrets has made known to you what will happen. + +But as for me, this secret is not revealed to me for any wisdom that I have more than any living, but to the intent that the interpretation may be made known to the king, and that you may know the thoughts of your heart. + +

+

“You, O king, saw, and behold,2:31 +“Behold”, from “הִנֵּה”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. a great image. This image, which was mighty, and whose brightness was excellent, stood before you; and its appearance was terrifying. + +As for this image, its head was of fine gold, its chest and its arms of silver, its belly and its thighs of bronze, + +its legs of iron, its feet part of iron, and part of clay. + +You saw until a stone was cut out without hands, which struck the image on its feet that were of iron and clay, and broke them in pieces. + +Then the iron, the clay, the bronze, the silver, and the gold were broken in pieces together, and became like the chaff of the summer threshing floors. The wind carried them away, so that no place was found for them. The stone that struck the image became a great mountain, and filled the whole earth. + +

+

“This is the dream; and we will tell its interpretation before the king. + +You, O king, are king of kings, to whom the God of heaven has given the kingdom, the power, the strength, and the glory. + +Wherever the children of men dwell, he has given the animals of the field and the birds of the sky into your hand, and has made you rule over them all. You are the head of gold. + +

+

“After you, another kingdom will arise that is inferior to you; and a third kingdom of bronze, which will rule over all the earth. + +The fourth kingdom will be strong as iron, because iron breaks in pieces and subdues all things; and as iron that crushes all these, it will break in pieces and crush. + +Whereas you saw the feet and toes, part of potters’ clay, and part of iron, it will be a divided kingdom; but there will be in it of the strength of the iron, because you saw the iron mixed with miry clay. + +As the toes of the feet were part of iron, and part of clay, so the kingdom will be partly strong, and partly brittle. + +Whereas you saw the iron mixed with miry clay, they will mingle themselves with the seed of men; but they won’t cling to one another, even as iron does not mix with clay. + +

+

“In the days of those kings the God of heaven will set up a kingdom which will never be destroyed, nor will its sovereignty be left to another people; but it will break in pieces and consume all these kingdoms, and it will stand forever. + +Because you saw that a stone was cut out of the mountain without hands, and that it broke in pieces the iron, the bronze, the clay, the silver, and the gold. The great God has made known to the king what will happen hereafter. The dream is certain, and its interpretation sure.” + +

+

Then King Nebuchadnezzar fell on his face, worshiped Daniel, and commanded that they should offer an offering and sweet odors to him. + +The king answered to Daniel, and said, “Of a truth your God is the God of gods, and the Lord of kings, and a revealer of secrets, since you have been able to reveal this secret.” + +

+

Then the king made Daniel great, and gave him many great gifts, and made him rule over the whole province of Babylon, and to be chief governor over all the wise men of Babylon. + +Daniel requested of the king, and he appointed Shadrach, Meshach, and Abednego over the affairs of the province of Babylon; but Daniel was in the king’s gate. + +

+ + +

Nebuchadnezzar the king made an image of gold, whose height was sixty cubits,3:1 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. and its width six cubits. He set it up in the plain of Dura, in the province of Babylon. + +Then Nebuchadnezzar the king sent to gather together the local governors, the deputies, and the governors, the judges, the treasurers, the counselors, the sheriffs, and all the rulers of the provinces, to come to the dedication of the image which Nebuchadnezzar the king had set up. + +Then the local governors, the deputies, and the governors, the judges, the treasurers, the counselors, the sheriffs, and all the rulers of the provinces, were gathered together to the dedication of the image that Nebuchadnezzar the king had set up; and they stood before the image that Nebuchadnezzar had set up. + +

+

Then the herald cried aloud, “To you it is commanded, peoples, nations, and languages, + +that whenever you hear the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music, you fall down and worship the golden image that Nebuchadnezzar the king has set up. + +Whoever doesn’t fall down and worship shall be cast into the middle of a burning fiery furnace the same hour.” + +

+

Therefore at that time, when all the peoples heard the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music, all the peoples, the nations, and the languages, fell down and worshiped the golden image that Nebuchadnezzar the king had set up. + +

+

Therefore at that time certain Chaldeans came near, and brought accusation against the Jews. + +They answered Nebuchadnezzar the king, “O king, live for ever! + +You, O king, have made a decree that every man who hears the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music shall fall down and worship the golden image; + +and whoever doesn’t fall down and worship shall be cast into the middle of a burning fiery furnace. + +There are certain Jews whom you have appointed over the affairs of the province of Babylon: Shadrach, Meshach, and Abednego. These men, O king, have not respected you. They don’t serve your gods, and don’t worship the golden image which you have set up.” + +

+

Then Nebuchadnezzar in rage and fury commanded that Shadrach, Meshach, and Abednego be brought. Then these men were brought before the king. + +Nebuchadnezzar answered them, “Is it on purpose, Shadrach, Meshach, and Abednego, that you don’t serve my god, nor worship the golden image which I have set up? + +Now if you are ready whenever you hear the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music to fall down and worship the image which I have made, good; but if you don’t worship, you shall be cast the same hour into the middle of a burning fiery furnace. Who is that god who will deliver you out of my hands?” + +

+

Shadrach, Meshach, and Abednego answered the king, “Nebuchadnezzar, we have no need to answer you in this matter. + +If it happens, our God whom we serve is able to deliver us from the burning fiery furnace; and he will deliver us out of your hand, O king. + +But if not, let it be known to you, O king, that we will not serve your gods or worship the golden image which you have set up.” + +

+

Then Nebuchadnezzar was full of fury, and the form of his appearance was changed against Shadrach, Meshach, and Abednego. He spoke, and commanded that they should heat the furnace seven times more than it was usually heated. + +He commanded certain mighty men who were in his army to bind Shadrach, Meshach, and Abednego, and to cast them into the burning fiery furnace. + +Then these men were bound in their pants, their tunics, their mantles, and their other clothes, and were cast into the middle of the burning fiery furnace. + +Therefore because the king’s commandment was urgent, and the furnace exceedingly hot, the flame of the fire killed those men who took up Shadrach, Meshach, and Abednego. + +These three men, Shadrach, Meshach, and Abednego, fell down bound into the middle of the burning fiery furnace. + +

+THE SONG OF THE THREE HOLY CHILDREN3:24 +The Song of the Three Holy Children is an addition to +Daniel found in the Greek Septuagint but not found in the traditional Hebrew text of +Daniel. This portion is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. It is found inserted between Daniel 3:23 and Daniel 3:24 of the traditional Hebrew Bible. Here, the verses after 23 from the Hebrew Bible are numbered starting at 91 to make room for these verses. + +

They walked in the midst of the fire, praising God, and blessing the Lord. + +Then Azarias stood, and prayed like this. Opening his mouth in the midst of the fire he said, + +“Blessed are you, O Lord, you God of our fathers! Your name is worthy to be praised and glorified for evermore; + +for you are righteous in all the things that you have done. Yes, all your works are true. Your ways are right, and all your judgments are truth. + +In all the things that you have brought upon us, and upon the holy city of our fathers, Jerusalem, you have executed true judgments. For according to truth and justice you have brought all these things upon us because of our sins. + +For we have sinned and committed iniquity in departing from you. + +In all things we have trespassed, and not obeyed your commandments or kept them. We haven’t done as you have commanded us, that it might go well with us. + +Therefore all that you have brought upon us, and everything that you have done to us, you have done in true judgment. + +You delivered us into the hands of lawless enemies, most hateful rebels, and to an unjust king who is the most wicked in all the world. + +And now we can’t open our mouth. Shame and reproach have come on your servants and those who worship you. + +Don’t utterly deliver us up, for your name’s sake. Don’t annul your covenant. + +Don’t cause your mercy to depart from us, for the sake of Abraham who is loved by you, and for the sake of Isaac your servant, and Israel your holy one, + +to whom you promised that you would multiply their offspring as the stars of the sky, and as the sand that is on the sea shore. + +For we, O Lord, have become less than any nation, and are brought low this day in all the world because of our sins. + +There isn’t at this time prince, or prophet, or leader, or burnt offering, or sacrifice, or oblation, or incense, or place to offer before you, and to find mercy. + +Nevertheless in a contrite heart and a humble spirit let us be accepted, + +like the burnt offerings of rams and bullocks, and like ten thousands of fat lambs. So let our sacrifice be in your sight this day, that we may wholly go after you, for they shall not be ashamed who put their trust in you. + +And now we follow you with all our heart. We fear you, and seek your face. + +Put us not to shame; but deal with us after your kindness, and according to the multitude of your mercy. + +Deliver us also according to your marvelous works, and give glory to your name, O Lord. Let all those who harm your servants be confounded. + +Let them be ashamed of all their power and might, and let their strength be broken. + +Let them know that you are the Lord, the only God, and glorious over the whole world.” + +

+

The king’s servants who put them in didn’t stop making the furnace hot with naphtha, pitch, tinder, and small wood, + +so that the flame streamed out forty nine cubits above the furnace. + +It spread and burned those Chaldeans whom it found around the furnace. + +But the angel of the Lord came down into the furnace together with Azarias and his fellows, and he struck the flame of the fire out of the furnace, + +and made the midst of the furnace as it had been a moist whistling wind, so that the fire didn’t touch them at all. It neither hurt nor troubled them. + +

+

Then the three, as out of one mouth, praised, glorified, and blessed God in the furnace, saying, + +“Blessed are you, O Lord, you God of our fathers, to be praised and exalted above all forever! + +Blessed is your glorious and holy name, to be praised and exalted above all forever! + +Blessed are you in the temple of your holy glory, to be praised and glorified above all forever! + +Blessed are you who see the depths and sit upon the cherubim, to be praised and exalted above all forever. + +Blessed are you on the throne of your kingdom, to be praised and extolled above all forever! + +Blessed are you in the firmament of heaven, to be praised and glorified forever! + +

+

O all you works of the Lord, bless the Lord! Praise and exalt him above all forever! + +O you heavens, bless the Lord! Praise and exalt him above all for ever! + +O you angels of the Lord, bless the Lord! Praise and exalt him above all forever! + +O all you waters that are above the sky, bless the Lord! Praise and exalt him above all forever! + +O all you powers of the Lord, bless the Lord! Praise and exalt him above all forever! + +O you sun and moon, bless the Lord! Praise and exalt him above all forever! + +O you stars of heaven, bless the Lord! Praise and exalt him above all forever! + +O every shower and dew, bless the Lord! Praise and exalt him above all forever! + +O all you winds, bless the Lord! Praise and exalt him above all forever! + +O you fire and heat, bless the Lord! Praise and exalt him above all forever! + +O you dews and storms of snow, bless the Lord! Praise and exalt him above all forever! + +O you nights and days, bless the Lord! Praise and exalt him above all forever! + +O you light and darkness, bless the Lord! Praise and exalt him above all forever! + +O you cold and heat, bless the Lord! Praise and exalt him above all forever! + +O you frost and snow, bless the Lord! Praise and exalt him above all forever! + +O you lightnings and clouds, bless the Lord! Praise and exalt him above all forever! + +O let the earth bless the Lord! Let it praise and exalt him above all forever! + +O you mountains and hills, bless the Lord! Praise and exalt him above all forever! + +O all you things that grow on the earth, bless the Lord! Praise and exalt him above all forever! + +3:77 +Some authorities transpose this verse and the next one.O sea and rivers, bless the Lord! Praise and exalt him above all forever! + +O you springs, bless the Lord! Praise and exalt him above all forever! + +O you whales and all that move in the waters, bless the Lord! Praise and exalt him above all forever! + +O all you birds of the air, bless the Lord! Praise and exalt him above all forever! + +O all you beasts and cattle, bless the Lord! Praise and exalt him above all forever! + +O you children of men, bless the Lord! Praise and exalt him above all forever! + +O let Israel bless the Lord! Praise and exalt him above all forever. + +O you priests of the Lord, bless the Lord! Praise and exalt him above all forever! + +O you servants of the Lord, bless the Lord! Praise and exalt him above all forever! + +O you spirits and souls of the righteous, bless the Lord! Praise and exalt him above all forever! + +O you who are holy and humble of heart, bless the Lord! Praise and exalt him above all forever! + +O Hananiah, Mishael, and Azariah, bless the Lord! Praise and exalt him above all forever; for he has rescued us from Hades, and saved us from the hand of death! He has delivered us out of the midst of the furnace and burning flame. He has delivered us out of the midst of the fire. + +O give thanks to the Lord, for he is good; for his mercy is forever. + +O all you who worship the Lord, bless the God of gods, praise him, and give him thanks; for his mercy is forever!” + +

+Deliverance from the Furnace + +

3:91 +Verses 91-97 were numbered 24-30 in the traditional Hebrew text of Daniel.Then Nebuchadnezzar the king was astonished and rose up in haste. He spoke and said to his counselors, “Didn’t we cast three men bound into the middle of the fire?” +

+

They answered the king, “True, O king.” + +

+

He answered, “Look, I see four men loose, walking in the middle of the fire, and they are unharmed. The appearance of the fourth is like a son of the gods.” + +

+

Then Nebuchadnezzar came near to the mouth of the burning fiery furnace. He spoke and said, “Shadrach, Meshach, and Abednego, you servants of the Most High God, come out, and come here!” +

+

Then Shadrach, Meshach, and Abednego came out of the middle of the fire. + +The local governors, the deputies, and the governors, and the king’s counselors, being gathered together, saw these men, that the fire had no power on their bodies. The hair of their head wasn’t singed. Their pants weren’t changed. The smell of fire wasn’t even on them. + +

+

Nebuchadnezzar spoke and said, “Blessed be the God of Shadrach, Meshach, and Abednego, who has sent his angel and delivered his servants who trusted in him, and have changed the king’s word, and have yielded their bodies, that they might not serve nor worship any god, except their own God. + +Therefore I make a decree, that every people, nation, and language, who speak anything evil 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 who is able to deliver like this.” + +

+

Then the king promoted Shadrach, Meshach, and Abednego in the province of Babylon. + +

+ + +

Nebuchadnezzar the king, +

+

to all the peoples, nations, and languages, who dwell in all the earth: +

+

Peace be multiplied to you. + +

+

It has seemed good to me to show the signs and wonders that the Most High God has worked toward me. + +

+How great are his signs! + +How mighty are his wonders! + +His kingdom is an everlasting kingdom. + +His dominion is from generation to generation. + + +

I, Nebuchadnezzar, was at rest in my house, and flourishing in my palace. + +I saw a dream which made me afraid; and the thoughts on my bed and the visions of my head troubled me. + +Therefore I made a decree to bring in all the wise men of Babylon before me, that they might make known to me the interpretation of the dream. + +Then the magicians, the enchanters, the Chaldeans, and the soothsayers came in; and I told the dream before them; but they didn’t make known to me its interpretation. + +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. I told the dream before him, saying, + +

+

“Belteshazzar, master of the magicians, because I know that the spirit of the holy gods is in you, and no secret troubles you, tell me the visions of my dream that I have seen, and its interpretation. + +These were the visions of my head on my bed: I saw, and behold, a tree in the middle of the earth; and its height was great. + +The tree grew, and was strong, and its height reached to the sky, and its sight to the end of all the earth. + +Its leaves were beautiful, and it had much fruit, and in it was food for all. The animals of the field had shade under it, and the birds of the sky lived in its branches, and all flesh was fed from it. + +

+

“I saw in the visions of my head on my bed, and behold, a watcher and a holy one came down from the sky. + +He cried aloud, and said this, ‘Cut down the tree and cut off its branches! Shake off its leaves and scatter its fruit! Let the animals get away from under it, and the fowls from its branches. + +Nevertheless leave the stump of its roots in the earth, even with a band of iron and bronze, in the tender grass of the field; and let it be wet with the dew of the sky. Let his portion be with the animals in the grass of the earth. + +Let his heart be changed from man’s, and let an animal’s heart be given to him. Then let seven times pass over him. + +

+

“‘The sentence 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 rules in the kingdom of men, and gives it to whomever he will, and sets up over it the lowest of men.’ + +

+

“This dream I, King Nebuchadnezzar, have seen; and you, Belteshazzar, declare the interpretation, because all the wise men of my kingdom are not able to make known to me the interpretation; but you are able, for the spirit of the holy gods is in you.” + +

+

Then Daniel, whose name was Belteshazzar, was stricken mute for a while, and his thoughts troubled him. The king answered, “Belteshazzar, don’t let the dream, or the interpretation, trouble you.” +

+

Belteshazzar answered, “My lord, may the dream be for those who hate you, and its interpretation to your adversaries. + +The tree that you saw, which grew and was strong, whose height reached to the sky, and its sight to all the earth; + +whose leaves were beautiful, and its fruit plentiful, and in it was food for all; under which the animals of the field lived, and on whose branches the birds of the sky had their habitation— + +it is you, O king, who have grown and become strong; for your greatness has grown, and reaches to the sky, and your dominion to the end of the earth. + +

+

“Whereas the king saw a watcher and a holy one coming down from the sky, and saying, ‘Cut down the tree, and destroy it; nevertheless leave the stump of its roots in the earth, even with a band of iron and bronze, in the tender grass of the field, and let it be wet with the dew of the sky. Let his portion be with the animals of the field, until seven times pass over him.’ + +

+

“This is the interpretation, O king, and it is the decree of the Most High, which has come on my lord the king: + +that you shall be driven from men, and your dwelling shall be with the animals of the field. You shall be made to eat grass as oxen, and shall be wet with the dew of the sky, and seven times shall pass over you; until you know that the Most High rules in the kingdom of men, and gives it to whomever he will. + +Their command to leave the stump of the roots of the tree means your kingdom will be sure to you, after you will have known that the heavens do rule. + +Therefore, O king, let my counsel be acceptable to you, and break off your sins by righteousness, and your iniquities by showing mercy to the poor. Perhaps there may be a lengthening of your tranquility.” + +

+

All this came on the King Nebuchadnezzar. + +At the end of twelve months he was walking in the royal palace of Babylon. + +The king spoke and said, “Is not this great Babylon, which I have built for the royal dwelling place, by the might of my power and for the glory of my majesty?” + +

+

While the word was in the king’s mouth, a voice came from the sky, saying, “O King Nebuchadnezzar, to you it is spoken: ‘The kingdom has departed from you. + +You shall be driven from men, and your dwelling shall be with the animals of the field. You shall be made to eat grass as oxen. Seven times shall pass over you, until you know that the Most High rules in the kingdom of men, and gives it to whomever he will.’” + +

+

This was fulfilled the same hour on Nebuchadnezzar. He was driven from men, and ate grass as oxen, and his body was wet with the dew of the sky, until his hair had grown like eagles’ feathers, and his nails like birds’ claws. + +

+

At the end of the days I, Nebuchadnezzar, lifted up my eyes to heaven, and my understanding returned to me, and I blessed the Most High, and I praised and honored him who lives forever. +

+For his dominion is an everlasting dominion, + +and his kingdom from generation to generation. + + +All the inhabitants of the earth are reputed as nothing; + +and he does according to his will in the army of heaven, + +and among the inhabitants of the earth; + +and no one can stop his hand, + +or ask him, “What are you doing?” + + +

At the same time my understanding returned to me; and for the glory of my kingdom, my majesty and brightness returned to me. My counselors and my lords sought me; and I was established in my kingdom, and excellent greatness was added to me. + +Now I, Nebuchadnezzar, praise and extol and honor the King of heaven; for all his works are right and his ways just; and those who walk in pride he is able to humble. + +

+ + +

Belshazzar the king made a great feast to a thousand of his lords, and drank wine before the thousand. + +Belshazzar, while he tasted the wine, commanded that the golden and silver vessels which Nebuchadnezzar his father had taken out of the temple which was in Jerusalem be brought to him, that the king and his lords, his wives and his concubines, might drink from them. + +Then they brought the golden vessels that were taken out of the temple of God’s house which was at Jerusalem; and the king and his lords, his wives and his concubines, drank from them. + +They drank wine, and praised the gods of gold, and of silver, of bronze, of iron, of wood, and of stone. + +

+

In the same hour, the fingers of a man’s hand came out and wrote near the lamp stand on the plaster of the wall of the king’s palace. The king saw the part of the hand that wrote. + +Then the king’s face was changed in him, and his thoughts troubled him; and the joints of his thighs were loosened, and his knees struck one against another. + +

+

The king cried aloud to bring in the enchanters, the Chaldeans, and the soothsayers. The king spoke and said to the wise men of Babylon, “Whoever reads this writing and shows me its interpretation shall be clothed with purple, and have a chain of gold about his neck, and shall be the third ruler in the kingdom.” + +

+

Then all the king’s wise men came in; but they could not read the writing and couldn’t make known to the king the interpretation. + +Then King Belshazzar was greatly troubled. His face was changed in him, and his lords were perplexed. + +

+

The queen by reason of the words of the king and his lords came into the banquet house. The queen spoke and said, “O king, live forever; don’t let your thoughts trouble you, nor let your face be changed. + +There is a man in your kingdom in whom is the spirit of the holy gods. In the days of your father, light, understanding, and wisdom like the wisdom of the gods were found in him. The king, Nebuchadnezzar, your father—yes, the king, your father—made him master of the magicians, enchanters, Chaldeans, and soothsayers + +because an excellent spirit, knowledge, understanding, interpreting of dreams, showing of dark sentences, and dissolving of doubts were found in the same Daniel, whom the king named Belteshazzar. Now let Daniel be called, and he will show the interpretation.” + +

+

Then Daniel was brought in before the king. The king spoke and said to Daniel, “Are you that Daniel of the children of the captivity of Judah, whom the king my father brought out of Judah? + +I have heard of you, that the spirit of the gods is in you, and that light, understanding, and excellent wisdom are found in you. + +Now the wise men, the enchanters, have been brought in before me to read this writing, and make known to me its interpretation; but they could not show the interpretation of the thing. + +But I have heard of you, that you can give interpretations and dissolve doubts. Now if you can read the writing, and make known to me its interpretation, you shall be clothed with purple, and have a chain of gold around your neck, and shall be the third ruler in the kingdom.” + +

+

Then Daniel answered the king, “Let your gifts be to yourself, and give your rewards to another. Nevertheless, I will read the writing to the king, and make known to him the interpretation. + +

+

“To you, king, the Most High God gave Nebuchadnezzar your father the kingdom, and greatness, and glory, and majesty. + +Because of the greatness that he gave him, all the peoples, nations, and languages trembled and feared before him. He killed whom he wanted to, and he kept alive whom he wanted to. He raised up whom he wanted to, and he put down whom he wanted to. + +But when his heart was lifted up, and his spirit was hardened so that he dealt proudly, he was deposed from his kingly throne, and they took his glory from him. + +He was driven from the sons of men and his heart was made like the animals’, and his dwelling was with the wild donkeys. He was fed with grass like oxen, and his body was wet with the dew of the sky, until he knew that the Most High God rules in the kingdom of men, and that he sets up over it whomever he will. + +

+

“You, his son, Belshazzar, have not humbled your heart, though you knew all this, + +but have lifted up yourself against the Lord of heaven; and they have brought the vessels of his house before you, and you and your lords, your wives, and your concubines, have drunk wine from them. You have praised the gods of silver, gold, bronze, iron, wood, and stone, which don’t see, hear, or know; and you have not glorified the God in whose hand is your breath and whose are all your ways. + +Then the part of the hand was sent from before him, and this writing was inscribed. + +

+

“This is the writing that was inscribed: ‘MENE, MENE, TEKEL, UPHARSIN.’ + +

+

“This is the interpretation of the thing: +

+

MENE: God has counted your kingdom, and brought it to an end. + +

+

TEKEL: you are weighed in the balances, and are found wanting. + +

+

PERES: your kingdom is divided, and given to the Medes and Persians.” + +

+

Then Belshazzar commanded, and they clothed Daniel with purple, and put a chain of gold about his neck, and proclaimed that he should be the third highest ruler in the kingdom. + +

+

In that night Belshazzar the Chaldean King was slain. + +Darius the Mede received the kingdom, being about sixty-two years old. + +

+ + +

It pleased Darius to set over the kingdom one hundred twenty local governors, who should be throughout the whole kingdom; + +and over them three presidents, of whom Daniel was one; that these local governors might give account to them, and that the king should suffer no loss. + +Then this Daniel was distinguished above the presidents and the local governors, because an excellent spirit was in him; and the king thought to set him over the whole realm. + +

+

Then the presidents and the local governors sought to find occasion against Daniel as touching the kingdom; but they could find no occasion or fault, because he was faithful. There wasn’t any error or fault found in him. + +Then these men said, “We won’t find any occasion against this Daniel, unless we find it against him concerning the law of his God.” + +

+

Then these presidents and local governors assembled together to the king, and said this to him, “King Darius, live forever! + +All the presidents of the kingdom, the deputies and the local governors, the counselors and the governors, have consulted together to establish a royal statute, and to make a strong decree, that whoever asks a petition of any god or man for thirty days, except of you, O king, he shall be cast into the den of lions. + +Now, O king, establish the decree, and sign the writing, that it not be changed, according to the law of the Medes and Persians, which doesn’t alter.” + +Therefore King Darius signed the writing and the decree. + +

+

When Daniel knew that the writing was signed, he went into his house (now his windows were open in his room toward Jerusalem) and he kneeled on his knees three times a day, and prayed, and gave thanks before his God, as he did before. + +Then these men assembled together, and found Daniel making petition and supplication before his God. + +Then they came near, and spoke before the king concerning the king’s decree: “Haven’t you signed a decree that every man who makes a petition to any god or man within thirty days, except to you, O king, shall be cast into the den of lions?” +

+

The king answered, “This thing is true, according to the law of the Medes and Persians, which doesn’t alter.” + +

+

Then they answered and said before the king, “That Daniel, who is of the children of the captivity of Judah, doesn’t respect you, O king, nor the decree that you have signed, but makes his petition three times a day.” + +Then the king, when he heard these words, was very displeased, and set his heart on Daniel to deliver him; and he labored until the going down of the sun to rescue him. + +

+

Then these men assembled together to the king, and said to the king, “Know, O king, that it is a law of the Medes and Persians, that no decree nor statute which the king establishes may be changed.” + +

+

Then the king commanded, and they brought Daniel, and cast him into the den of lions. The king spoke and said to Daniel, “Your God whom you serve continually, he will deliver you.” + +

+

A stone was brought, and laid on the mouth of the den; and the king sealed it with his own signet, and with the signet of his lords, that nothing might be changed concerning Daniel. + +Then the king went to his palace, and passed the night fasting. No musical instruments were brought before him; and his sleep fled from him. + +

+

Then the king arose very early in the morning, and went in haste to the den of lions. + +When he came near to the den to Daniel, he cried with a troubled voice. The king spoke and said to Daniel, “Daniel, servant of the living God, is your God, whom you serve continually, able to deliver you from the lions?” + +

+

Then Daniel said to the king, “O king, live forever! + +My God has sent his angel, and has shut the lions’ mouths, and they have not hurt me; because I am innocent in his sight. Also before you, O king, I have done no harm.” + +

+

Then the king was exceedingly glad, and commanded that they should take Daniel up out of the den. So Daniel was taken up out of the den, and no kind of harm was found on him, because he had trusted in his God. + +

+

The king commanded, and they brought those men who had accused Daniel, and they cast them into the den of lions—them, their children, and their wives; and the lions mauled them and broke all their bones in pieces before they came to the bottom of the den. + +

+

Then King Darius wrote to all the peoples, nations, and languages, who dwell in all the earth: +

+

“Peace be multiplied to you. + +

+

“I make a decree that in all the dominion of my kingdom men tremble and fear before the God of Daniel; +

+“for he is the living God, + +and steadfast forever. + +His kingdom is that which will not be destroyed. + +His dominion will be even to the end. + + +He delivers and rescues. + +He works signs and wonders in heaven and in earth, + +who has delivered Daniel from the power of the lions.” + + +

So this Daniel prospered in the reign of Darius, and in the reign of Cyrus the Persian. + +

+ + +

In the first year of Belshazzar king of Babylon, Daniel had a dream and visions of his head on his bed. Then he wrote the dream and told the sum of the matters. + +

+

Daniel spoke and said, “I saw in my vision by night and behold, the four winds of the sky broke out on the great sea. + +Four great animals came up from the sea, different from one another. + +

+

“The first was like a lion, and had eagle’s wings. I watched until its wings were plucked, and it was lifted up from the earth, and made to stand on two feet as a man. A man’s heart was given to it. + +

+

“Behold, there was another animal, a second, like a bear. It was raised up on one side, and three ribs were in its mouth between its teeth. They said this to it: ‘Arise! Devour much flesh!’ + +

+

“After this I saw, and behold, another, like a leopard, which had on its back four wings of a bird. The animal also had four heads; and dominion was given to it. + +

+

“After this I saw in the night visions, and, behold, there was a fourth animal, awesome and powerful, and exceedingly strong. It had great iron teeth. It devoured and broke in pieces, and stamped the residue with its feet. It was different from all the animals that were before it. It had ten horns. + +

+

“I considered the horns, and behold, another horn came up among them, a little one, before which three of the first horns were plucked up by the roots: and behold, in this horn were eyes like the eyes of a man, and a mouth speaking great things. + +

+“I watched until thrones were placed, + +and one who was Ancient of Days sat. + +His clothing was white as snow, + +and the hair of his head like pure wool. + +His throne was fiery flames, + +and its wheels burning fire. + + +A fiery stream issued and came out from before him. + +Thousands of thousands ministered to him. + +Ten thousand times ten thousand stood before him. + +The judgment was set. + +The books were opened. + + +

“I watched at that time because of the voice of the great words which the horn spoke. I watched even until the animal was slain, its body destroyed, and it was given to be burned with fire. + +As for the rest of the animals, their dominion was taken away; yet their lives were prolonged for a season and a time. + +

+

“I saw in the night visions, and behold, one like a son of man came with the clouds, and he came to the Ancient of Days, and they brought him near before him. + +Dominion was given him, with glory and a kingdom, that all the peoples, nations, and languages should serve him. His dominion is an everlasting dominion, which will not pass away, and his kingdom will not be destroyed. + +

+

“As for me, Daniel, my spirit was grieved within my body, and the visions of my head troubled me. + +I came near to one of those who stood by, and asked him the truth concerning all this. +

+

“So he told me, and made me know the interpretation of the things. + +‘These great animals, which are four, are four kings, who will arise out of the earth. + +But the saints of the Most High will receive the kingdom, and possess the kingdom forever, even forever and ever.’ + +

+

“Then I desired to know the truth concerning the fourth animal, which was different from all of them, exceedingly terrible, whose teeth were of iron, and its nails of bronze; which devoured, broke in pieces, and stamped the residue with its feet; + +and concerning the ten horns that were on its head, and the other horn which came up, and before which three fell, even that horn that had eyes, and a mouth that spoke great things, whose look was more stout than its fellows. + +I saw, and the same horn made war with the saints and prevailed against them + +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. + +

+

“So he said, ‘The fourth animal will be a fourth kingdom on earth, which will be different from all the kingdoms, and will devour the whole earth, and will tread it down, and break it in pieces. + +As for the ten horns, ten kings will arise out of this kingdom. Another will arise after them; and he will be different from the former, and he will put down three kings. + +He will speak words against the Most High, and will wear out the saints of the Most High. He will plan to change the times and the law; and they will be given into his hand until a time and times and half a time. + +

+

“‘But the judgment will be set, and they will take away his dominion, to consume and to destroy it to the end. + +The kingdom and the dominion, and the greatness of the kingdoms under the whole sky, will be given to the people of the saints of the Most High. His kingdom is an everlasting kingdom, and all dominions will serve and obey him.’ + +

+

“Here is the end of the matter. As for me, Daniel, my thoughts troubled me greatly, and my face was changed in me; but I kept the matter in my heart.” + +

+ + +

In the third year of the reign of King Belshazzar, a vision appeared to me, even to me, Daniel, after that which appeared to me at the first. + +I saw the vision. Now it was so, that when I saw, I was in the citadel of Susa, which is in the province of Elam. I saw in the vision, and I was by the river Ulai. + +Then I lifted up my eyes, and saw, and behold, a ram which had two horns stood before the river. The two horns were high; but one was higher than the other, and the higher came up last. + +I saw the ram pushing westward, northward, and southward. No animals could stand before him. There wasn’t anyone who could deliver out of his hand; but he did according to his will, and magnified himself. + +

+

As I was considering, behold, a male goat came from the west over the surface of the whole earth, and didn’t touch the ground. The goat had a notable horn between his eyes. + +He came to the ram that had the two horns, which I saw standing before the river, and ran on him in the fury of his power. + +I saw him come close to the ram, and he was moved with anger against him, and struck the ram, and broke his two horns. There was no power in the ram to stand before him; but he cast him down to the ground, and trampled on him. There was no one who could deliver the ram out of his hand. + +The male goat magnified himself exceedingly. When he was strong, the great horn was broken; and instead of it there came up four notable horns toward the four winds of the sky. + +

+

Out of one of them came out a little horn, which grew exceedingly great, toward the south, and toward the east, and toward the glorious land. + +It grew great, even to the army of the sky; and it cast down some of the army and of the stars to the ground, and trampled on them. + +Yes, it magnified itself, even to the prince of the army; and it took away from him the continual burnt offering, and the place of his sanctuary was cast down. + +The army was given over to it together with the continual burnt offering through disobedience. It cast down truth to the ground, and it did its pleasure and prospered. + +

+

Then I heard a holy one speaking; and another holy one said to that certain one who spoke, “How long will the vision about the continual burnt offering, and the disobedience that makes desolate, to give both the sanctuary and the army to be trodden under foot be?” + +

+

He said to me, “To two thousand and three hundred evenings and mornings. Then the sanctuary will be cleansed.” + +

+

When I, even I Daniel, had seen the vision, I sought to understand it. Then behold, there stood before me something like the appearance of a man. + +I heard a man’s voice between the banks of the Ulai, which called, and said, “Gabriel, make this man understand the vision.” + +

+

So he came near where I stood; and when he came, I was frightened, and fell on my face; but he said to me, “Understand, son of man; for the vision belongs to the time of the end.” + +

+

Now as he was speaking with me, I fell into a deep sleep with my face toward the ground; but he touched me, and set me upright. + +

+

He said, “Behold, I will make you know what will be in the latter time of the indignation; for it belongs to the appointed time of the end. + +The ram which you saw, that had the two horns, they are the kings of Media and Persia. + +The rough male goat is the king of Greece. The great horn that is between his eyes is the first king. + +As for that which was broken, in the place where four stood up, four kingdoms will stand up out of the nation, but not with his power. + +

+

“In the latter time of their kingdom, when the transgressors have come to the full, a king of fierce face, and understanding dark sentences, will stand up. + +His power will be mighty, but not by his own power. He will destroy awesomely, and will prosper in what he does. He will destroy the mighty ones and the holy people. + +Through his policy he will cause deceit to prosper in his hand. He will magnify himself in his heart, and he will destroy many in their security. He will also stand up against the prince of princes; but he will be broken without human power. + +

+

“The vision of the evenings and mornings which has been told is true; but seal up the vision, for it belongs to many days to come.” + +

+

I, Daniel, fainted, and was sick for some days. Then I rose up, and did the king’s business. I wondered at the vision, but no one understood it. + +

+ + +

In the first year of Darius the son of Ahasuerus, of the offspring of the Medes, who was made king over the realm of the Chaldeans, + +in the first year of his reign I, Daniel, understood by the books the number of the years about which Yahweh’s9:2 +“Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. + word came to Jeremiah the prophet, for the accomplishing of the desolations of Jerusalem, even seventy years. + +I set my face to the Lord God, to seek by prayer and petitions, with fasting in sackcloth and ashes. + +

+

I prayed to Yahweh my God, and made confession, and said, +

+

“Oh, Lord, the great and dreadful God, who keeps covenant and loving kindness with those who love him and keep his commandments, + +we have sinned, and have dealt perversely, and have done wickedly, and have rebelled, even turning aside from your precepts and from your ordinances. + +We haven’t listened to your servants the prophets, who spoke in your name to our kings, our princes, and our fathers, and to all the people of the land. + +

+

“Lord, righteousness belongs to you, but to us confusion of face, as it is today—to the men of Judah, and to the inhabitants of Jerusalem, and to all Israel, who are near, and who are far off, through all the countries where you have driven them, because of their trespass that they have trespassed against you. + +Lord, to us belongs confusion of face, to our kings, to our princes, and to our fathers, because we have sinned against you. + +To the Lord our God belong mercies and forgiveness; for we have rebelled against him. + +We haven’t obeyed Yahweh our God’s voice, to walk in his laws, which he set before us by his servants the prophets. + +Yes, all Israel have transgressed your law, turning aside, that they wouldn’t obey your voice. +

+

“Therefore the curse and the oath written in the law of Moses the servant of God has been poured out on us; for we have sinned against him. + +He has confirmed his words, which he spoke against us, and against our judges who judged us, by bringing on us a great evil; for under the whole sky, such has not been done as has been done to Jerusalem. + +As it is written in the law of Moses, all this evil has come on us. Yet we have not entreated the favor of Yahweh our God, that we should turn from our iniquities and have discernment in your truth. + +Therefore Yahweh has watched over the evil, and brought it on us; for Yahweh our God is righteous in all his works which he does, and we have not obeyed his voice. + +

+

“Now, Lord our God, who has brought your people out of the land of Egypt with a mighty hand, and have gotten yourself renown, as it is today, we have sinned. We have done wickedly. + +Lord, according to all your righteousness, please let your anger and your wrath be turned away from your city Jerusalem, your holy mountain, because for our sins, and for the iniquities of our fathers, Jerusalem and your people have become a reproach to all who are around us. + +

+

“Now therefore, our God, listen to the prayer of your servant, and to his petitions, and cause your face to shine on your sanctuary that is desolate, for the Lord’s sake. + +My God, turn your ear and hear. Open your eyes and see our desolations and the city which is called by your name; for we don’t present our petitions before you for our righteousness, but for your great mercies’ sake. + +Lord, hear. Lord, forgive. Lord, listen and do. Don’t defer, for your own sake, my God, because your city and your people are called by your name.” + +

+ +

While I was speaking, praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before Yahweh my God for the holy mountain of my God— + +yes, while I was speaking in prayer, 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 offering. + +He instructed me and talked with me, and said, “Daniel, I have now come to give you wisdom and understanding. + +At the beginning of your petitions the commandment went out and I have come to tell you, for you are greatly beloved. Therefore consider the matter and understand the vision. + +

+

“Seventy weeks are decreed on your people and on your holy city, to finish disobedience, to put an end to sin, to make reconciliation for iniquity, to bring in everlasting righteousness, to seal up vision and prophecy, and to anoint the most holy. + +

+

“Know therefore and discern that from the going out of the commandment to restore and to build Jerusalem to the Anointed One,9:25 +“Anointed One” can also be translated “Messiah” (same as “Christ”). the prince, will be seven weeks and sixty-two weeks. It will be built again with street and moat, even in troubled times. + +After the sixty-two weeks the Anointed One9:26 +“Anointed One” can also be translated “Messiah” (same as “Christ”). will be cut off and will have nothing. The people of the prince who come will destroy the city and the sanctuary. Its end will be with a flood, and war will be even to the end. Desolations are determined. + +He will make a firm covenant with many for one week. In the middle of the week he will cause the sacrifice and the offering to cease. On the wing of abominations will come one who makes desolate. Even to the full end that is decreed, wrath will be poured out on the desolate.” + +

+ + +

In the third year of Cyrus king of Persia a revelation was revealed to Daniel, whose name was called Belteshazzar. The revelation was true, even a great warfare. He understood the revelation, and had understanding of the vision. + +

+

In those days I, Daniel, was mourning three whole weeks. + +I ate no pleasant bread. No meat or wine came into my mouth. I didn’t anoint myself at all, until three whole weeks were fulfilled. + +

+

In the twenty-fourth day of the first month, as I was by the side of the great river, which is Hiddekel, + +I lifted up my eyes and looked, and behold, there was a man clothed in linen, whose thighs were adorned with pure gold of Uphaz. + +His body also was like beryl, and his face like the appearance of lightning, and his eyes like flaming torches. His arms and his feet were like burnished bronze. The voice of his words was like the voice of a multitude. + +

+

I, Daniel, alone saw the vision; for the men who were with me didn’t see the vision; but a great quaking fell on them, and they fled to hide themselves. + +So I was left alone, and saw this great vision. No strength remained in me; for my face grew deathly pale, and I retained no strength. + +Yet I heard the voice of his words. When I heard the voice of his words, then I fell into a deep sleep on my face, with my face toward the ground. + +

+

Behold, a hand touched me, which set me on my knees and on the palms of my hands. + +He said to me, “Daniel, you greatly beloved man, understand the words that I speak to you. Stand upright, for I have been sent to you, now.” When he had spoken this word to me, I stood trembling. + +

+

Then he said to me, “Don’t be afraid, Daniel; for from the first day that you set your heart to understand, and to humble yourself before your God, your words were heard. I have come for your words’ sake. + +But the prince of the kingdom of Persia withstood me twenty-one days; but, behold, Michael, one of the chief princes, came to help me because I remained there with the kings of Persia. + +Now I have come to make you understand what will happen to your people in the latter days; for the vision is yet for many days.” + +

+

When he had spoken these words to me, I set my face toward the ground, and was mute. + +Behold, one in the likeness of the sons of men touched my lips. Then I opened my mouth, and spoke and said to him who stood before me, “My lord, by reason of the vision my sorrows have overtaken me, and I retain no strength. + +For how can the servant of my lord talk with my lord? For as for me, immediately there remained no strength in me. There was no breath left in me.” + +

+

Then one like the appearance of a man touched me again, and he strengthened me. + +He said, “Greatly beloved man, don’t be afraid. Peace be to you. Be strong. Yes, be strong.” +

+

When he spoke to me, I was strengthened, and said, “Let my lord speak; for you have strengthened me.” + +

+

Then he said, “Do you know why I have come to you? Now I will return to fight with the prince of Persia. When I go out, behold, the prince of Greece will come. + +But I will tell you what is inscribed in the writing of truth. There is no one who supports me against these except Michael, your prince. + +

+ + +

“As for me, in the first year of Darius the Mede, I stood up to confirm and strengthen him. + +

+

“Now I will show you the truth. Behold, three more kings will stand up in Persia. The fourth will be far richer than all of them. When he has grown strong through his riches, he will stir up all against the realm of Greece. + +A mighty king will stand up who will rule with great dominion, and do according to his will. + +When he stands up, his kingdom will be broken, and will be divided toward the four winds of the sky, but not to his posterity, nor according to his dominion with which he ruled; for his kingdom will be plucked up, even for others besides these. + +

+

“The king of the south will be strong. One of his princes will become stronger than him and have dominion. His dominion will be a great dominion. + +At the end of years they will join themselves together. The daughter of the king of the south will come to the king of the north to make an agreement, but she will not retain the strength of her arm. He will also not stand, nor will his arm; but she will be given up, with those who brought her and he who became her father, and he who strengthened her in those times. + +

+

“But out of a shoot from her roots one will stand up in his place who will come to the army and will enter into the fortress of the king of the north, and will deal against them and will prevail. + +He will also carry their gods, with their molten images and their precious vessels of silver and of gold, captive into Egypt. He will refrain some years from the king of the north. + +He will come into the realm of the king of the south, but he will return into his own land. + +His sons will wage war and will assemble a multitude of great forces which will keep coming and overflow and pass through. They will return and wage war, even to his fortress. + +

+

“The king of the south will be moved with anger and will come out and fight with him, even with the king of the north. He will send out a great multitude, and the multitude will be given into his hand. + +The multitude will be lifted up, and his heart will be exalted. He will cast down tens of thousands, but he won’t prevail. + +The king of the north will return, and will send out a multitude greater than the former. He will come on at the end of the times, even of years, with a great army and with abundant supplies. + +

+

“In those times many will stand up against the king of the south. Also the children of the violent among your people will lift themselves up to establish the vision; but they will fall. + +So the king of the north will come and cast up a mound, and take a well-fortified city. The forces of the south won’t stand, neither will his chosen people, neither will there be any strength to stand. + +But he who comes against him will do according to his own will, and no one will stand before him. He will stand in the glorious land, and destruction will be in his hand. + +He will set his face to come with the strength of his whole kingdom, and with him equitable conditions. He will perform them. He will give him the daughter of women to corrupt her; but she will not stand, and won’t be for him. + +After this he will turn his face to the islands, and will take many; but a prince will cause the reproach offered by him to cease. Yes, moreover, he will cause his reproach to turn on him. + +Then he will turn his face toward the fortresses of his own land; but he will stumble and fall, and won’t be found. + +

+

“Then one who will cause a tax collector to pass through the kingdom to maintain its glory will stand up in his place; but within few days he shall be destroyed, not in anger, and not in battle. + +

+

“In his place, a contemptible person will stand up, to whom they had not given the honor of the kingdom; but he will come in time of security, and will obtain the kingdom by flatteries. + +The overwhelming forces will be overwhelmed from before him, and will be broken. Yes, also the prince of the covenant. + +After the treaty is made with him, he will work deceitfully; for he will come up, and will become strong with a small people. + +In time of security, he will come even on the fattest places of the province. He will do that which his fathers have not done, nor his fathers’ fathers. He will scatter among them prey, plunder, and substance. Yes, he will devise his plans against the strongholds, even for a time. + +

+

“He will stir up his power and his courage against the king of the south with a great army; and the king of the south will wage war in battle with an exceedingly great and mighty army; but he won’t stand, for they will devise plans against him. + +Yes, those who eat of his delicacies will destroy him, and his army will be swept away. Many will fall down slain. + +As for both these kings, their hearts will be to do mischief, and they will speak lies at one table; but it won’t prosper, for the end will still be at the appointed time. + +Then he will return into his land with great wealth. His heart will be against the holy covenant. He will take action and return to his own land. + +

+

“He will return at the appointed time and come into the south; but it won’t be in the latter time as it was in the former. + +For ships of Kittim will come against him. Therefore he will be grieved, and will return, and have indignation against the holy covenant, and will take action. He will even return, and have regard to those who forsake the holy covenant. + +

+

“Forces will stand on his part and they will profane the sanctuary, even the fortress, and will take away the continual burnt offering. Then they will set up the abomination that makes desolate. + +He will corrupt those who do wickedly against the covenant by flatteries; but the people who know their God will be strong and take action. + +

+

“Those who are wise among the people will instruct many; yet they will fall by the sword and by flame, by captivity and by plunder, many days. + +Now when they fall, they will be helped with a little help; but many will join themselves to them with flatteries. + +Some of those who are wise will fall, to refine them, and to purify, and to make them white, even to the time of the end; because it is yet for the appointed time. + +

+

“The king will do according to his will. He will exalt himself, and magnify himself above every god, and will speak marvelous things against the God of gods. He will prosper until the indignation is accomplished; for what is determined will be done. + +He won’t regard the gods of his fathers, or the desire of women, or regard any god; for he will magnify himself above all. + +But in his place he will honor the god of fortresses. He will honor a god whom his fathers didn’t know with gold, silver, precious stones, and pleasant things. + +He will deal with the strongest fortresses by the help of a foreign god. He will increase with glory whoever acknowledges him. He will cause them to rule over many, and will divide the land for a price. + +

+

“At the time of the end, the king of the south will contend with him; and the king of the north will come against him like a whirlwind, with chariots, with horsemen, and with many ships. He will enter into the countries, and will overflow and pass through. + +He will enter also into the glorious land, and many countries will be overthrown; but these will be delivered out of his hand: Edom, Moab, and the chief of the children of Ammon. + +He will also stretch out his hand against the countries. The land of Egypt won’t escape. + +But he will have power over the treasures of gold and of silver, and over all the precious things of Egypt. The Libyans and the Ethiopians will be at his steps. + +But news out of the east and out of the north will trouble him; and he will go out with great fury to destroy and utterly to sweep away many. + +He will plant the tents of his palace between the sea and the glorious holy mountain; yet he will come to his end, and no one will help him. + +

+ + +

“At that time Michael will stand up, the great prince who stands for the children of your people. There will be a time of trouble, such as never was since there was a nation even to that same time. At that time, your people will be delivered—everyone who is found written in the book. + +Many of those who sleep in the dust of the earth will awake, some to everlasting life, and some to shame and everlasting contempt. + +Those who are wise will shine as the brightness of the expanse. Those who turn many to righteousness will shine like the stars forever and ever. + +But you, Daniel, shut up the words and seal the book, even to the time of the end. Many will run back and forth, and knowledge will be increased.” + +

+

Then I, Daniel, looked, and behold, two others stood, one on the river bank on this side, and the other on the river bank on that side. + +One said to the man clothed in linen, who was above the waters of the river, “How long will it be to the end of these wonders?” + +

+

I heard the man clothed in linen, who was above the waters of the river, when he held up his right hand and his left hand to heaven, and swore by him who lives forever that it will be for a time, times, and a half; and when they have finished breaking in pieces the power of the holy people, all these things will be finished. + +

+

I heard, but I didn’t understand. Then I said, “My lord, what will be the outcome of these things?” + +

+

He said, “Go your way, Daniel; for the words are shut up and sealed until the time of the end. + +Many will purify themselves, make themselves white, and be refined; but the wicked will do wickedly. None of the wicked will understand; but those who are wise will understand. + +

+

“From the time that the continual burnt offering is taken away and the abomination that makes desolate set up, there will be one thousand two hundred ninety days. + +Blessed is he who waits and comes to the one thousand three hundred thirty-five days. + +

+

“But go your way until the end; for you will rest and will stand in your inheritance at the end of the days.” + +

+ + +THE HISTORY OF SUSANNA + +

13:1 +The History of Susanna is translated from chapter 13 of +Daniel in the Greek Septuagint. It is not found in the traditional Hebrew text of +Daniel. +The History of Susanna is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches.A man lived in Babylon, and his name was Joakim. + +He took a wife, whose name was Susanna, the daughter of Helkias, a very fair woman, and one who feared the Lord. + +Her parents were also righteous, and taught their daughter according to the law of Moses. + +Now Joakim was a great rich man, and had a beautiful garden next to his house. The Jews used to come to him, because he was more honorable than all others. + +The same year, two of the elders of the people were appointed to be judges, such as the Lord spoke of, that wickedness came from Babylon from elders who were judges, who were supposed to govern the people. + +These were often at Joakim’s house. All that had any lawsuits came to them. + +

+

When the people departed away at noon, Susanna went into her husband’s garden to walk. + +The two elders saw her going in every day and walking; and they were inflamed with lust for her. + +They perverted their own mind and turned away their eyes, that they might not look to heaven, nor remember just judgments. + +And although they both were wounded with lust for her, yet dared not show the other his grief. + +For they were ashamed to declare their lust, what they desired to do with her. + +Yet they watched eagerly from day to day to see her. + +The one said to the other, “Let’s go home, now; for it is dinner time.” + +So when they had gone out, they parted company, and turning back again, they came to the same place. After they had asked one another the cause, they acknowledged their lust. Then they appointed a time both together, when they might find her alone. + +

+

It happened, as they watched on an opportune day, she went in as before with only two maids, and she desired to wash herself in the garden; for it was hot. + +There was nobody there except the two elders who had hid themselves and watched her. + +Then she said to her maids, “Bring me olive oil and ointment, and shut the garden doors, that I may wash myself.” + +They did as she asked them and shut the garden doors, and went out themselves at the side doors to fetch the things that she had commanded them. They didn’t see the elders, because they were hidden. + +

+

Now when the maids had gone out, the two elders rose up and ran to her, saying, + +“Behold, the garden doors are shut, that no man can see us, and we are in love with you. Therefore consent to us, and lie with us. + +If you will not, we will testify against you, that a young man was with you; therefore you sent your maids away from you.” + +

+

Then Susanna sighed, and said, “I am trapped; for if I do this thing, it is death to me. If I don’t do it, I can’t escape your hands. + +It is better for me to fall into your hands, and not do it, than to sin in the sight of the Lord.” + +With that Susanna cried with a loud voice; and the two elders cried out against her. + +Then one of them ran and opened the garden doors. + +

+

So when the servants of the house heard the cry in the garden, they rushed in at the side door to see what had happened to her. + +But when the elders had told their tale, the servants were greatly ashamed; for there was never such a report made of Susanna. + +

+

It came to pass on the next day, when the people assembled to her husband Joakim, the two elders came full of their wicked intent against Susanna to put her to death, + +and said before the people, “Send for Susanna, the daughter of Helkias, Joakim’s wife.” So they sent; + +and she came with her father and mother, her children, and all her kindred. + +Now Susanna was a very delicate woman, and beautiful to behold. + +These wicked men commanded her to be unveiled, for she was veiled, that they might be filled with her beauty. + +Therefore her friends and all who saw her wept. + +Then the two elders stood up in the midst of the people and laid their hands upon her head. + +She, weeping, looked up toward heaven; for her heart trusted in the Lord. + +

+

The elders said, “As we walked in the garden alone, this woman came in with two maids, shut the garden doors, and sent the maids away. + +Then a young man who was hidden there came to her and lay with her. + +And we, being in a corner of the garden, saw this wickedness and ran to them. + +And when we saw them together, we couldn’t hold the man; for he was stronger than we, and opened the doors, and leaped out. + +But having taken this woman, we asked who the young man was, but she would not tell us. We testify these things. + +

+

Then the assembly believed them, as those who were elders of the people and judges; so they condemned her to death. + +

+

Then Susanna cried out with a loud voice, and said, “O everlasting God, you know the secrets, and know all things before they happen. + +You know that they have testified falsely against me. Behold, I must die, even though I never did such things as these men have maliciously invented against me.” + +

+

The Lord heard her voice. + +Therefore when she was led away to be put to death, God raised up the holy spirit of a young youth, whose name was Daniel. + +He cried with a loud voice, “I am clear from the blood of this woman!” + +

+

Then all the people turned them toward him, and said, “What do these words that you have spoken mean?” + +

+

So he, standing in the midst of them, said, “Are you all such fools, you sons of Israel, that without examination or knowledge of the truth you have condemned a daughter of Israel? + +Return again to the place of judgment; for these have testified falsely against her.” + +

+

Therefore all the people turned again in haste, and the elders said to him, “Come, sit down among us, and show it to us, seeing God has given you the honor of an elder.” + +

+

Then Daniel said to them, “Put them far apart from each another, and I will examine them.” + +So when they were put apart one from another, he called one of them, and said to him, “O you who have become old in wickedness, now your sins have returned which you have committed before, + +in pronouncing unjust judgment, condemning the innocent, and letting the guilty go free; although the Lord says, ‘You shall not kill the innocent and righteous.’ + +Now then, if you saw her, tell me, under which tree did you see them companying together?” +

+

He answered, “Under a mastick tree.” + +

+

And Daniel said, “You have certainly lied against your own head; for even now the angel of God has received the sentence of God and will cut you in two.” + +So he put him aside, and commanded to bring the other, and said to him, “O you seed of Canaan, and not of Judah, beauty has deceived you, and lust has perverted your heart. + +Thus you have dealt with the daughters of Israel, and they for fear were intimate with you; but the daughter of Judah would not tolerate your wickedness. + +Now therefore tell me, under which tree did you take them being intimate together?” +

+

He answered, “Under an evergreen oak tree.” + +

+

Then Daniel said to him, “You have also certainly lied against your own head; for the angel of God waits with the sword to cut you in two, that he may destroy you.” + +

+

With that, all the assembly cried out with a loud voice, and blessed God, who saves those who hope in him. + +Then they arose against the two elders, for Daniel had convicted them of false testimony out of their own mouth. + +According to the law of Moses they did to them what they maliciously intended to do to their neighbor. They put them to death, and the innocent blood was saved the same day. + +Therefore Helkias and his wife praised God for their daughter Susanna, with Joakim her husband, and all the kindred, because there was no dishonesty found in her. + +And from that day forth, Daniel had a great reputation in the sight of the people. + +

+ + +Bel and the Dragon + +

14:1 +Bel and the Dragon is translated from chapter 14 of +Daniel in the Greek Septuagint. It is not found in the traditional Hebrew text of +Daniel. +Bel and the Dragon is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches.King Astyages was gathered to his fathers, and Cyrus the Persian received his kingdom. + +Daniel lived with the king, and was honored above all his friends. + +

+

Now the Babylonians had an idol called Bel, and every day twelve great measures of fine flour, forty sheep, and six firkins14:3 +a firkin is about 41 liters or 11 gallons. of wine were spent on it. + +The king honored it and went daily to worship it; but Daniel worshiped his own God. The king said to him, “Why don’t you worship Bel?” + +

+

He said, “Because I may not honor idols made with hands, but only the living God, who has created the sky and the earth, and has sovereignty over all flesh.” + +

+

Then the king said to him, “Don’t you think that Bel is a living god? Don’t you see how much he eats and drinks every day?” + +

+

Then Daniel laughed, and said, “O king, don’t be deceived; for this is just clay inside, and brass outside, and never ate or drank anything.” + +

+

So the king was angry, and called for his priests, and said to them, “If you don’t tell me who this is who devours these expenses, you shall die. + +But if you can show me that Bel devours them, then Daniel shall die; for he has spoken blasphemy against Bel.” +

+

Daniel said to the king, “Let it be according to your word.” + +

+

Now there were seventy priests of Bel, besides their wives and children. The king went with Daniel into Bel’s temple. + +So Bel’s priests said, “Behold, we will leave; but you, O king, set out the food, and mix the wine and set it out, shut the door securely, and seal it with your own signet. + +When you come in the morning, if you don’t find that Bel has eaten everything, we will suffer death, or else Daniel, who speaks falsely against us.” + +

+

They weren’t concerned, for under the table they had made a secret entrance, by which they entered in continually, and consumed those things. + +It happened, when they had gone out, the king set the food before Bel. Now Daniel had commanded his servants to bring ashes, and they scattered them all over the temple in the presence of the king alone. Then they went out, shut the door, sealed it with the king’s signet, and so departed. + +

+

Now in the night, the priests came with their wives and children, as they usually did, and ate and drank it all. + +In the morning, the king arose, and Daniel with him. + +The king said, “Daniel, are the seals whole?” +

+

He said, “Yes, O king, they are whole.” + +

+

And as soon as he had opened the door, the king looked at the table, and cried with a loud voice, “You are great, O Bel, and with you is no deceit at all!” + +

+

Then Daniel laughed, and held the king that he should not go in, and said, “Behold now the pavement, and mark well whose footsteps these are.” + +

+

The king said, “I see the footsteps of men, women, and children.” Then the king was angry, + +and took the priests with their wives and children, who showed him the secret doors, where they came in and consumed the things that were on the table. + +Therefore the king killed them, and delivered Bel into Daniel’s power, who overthrew it and its temple. + +

+

In that same place there was a great dragon which the people of Babylon worshiped. + +The king said to Daniel, “Will you also say that this is of brass? Behold, he lives, eats and drinks. You can’t say that he is no living god. Therefore worship him.” + +

+

Then Daniel said, “I will worship the Lord my God; for he is a living God. + +But allow me, O king, and I will kill this dragon without sword or staff.” +

+

The king said, “I allow you.” + +

+

Then Daniel took pitch, fat, and hair, and melted them together, and made lumps of them. He put these in the dragon’s mouth, so the dragon ate and burst apart. Daniel said, “Behold, these are the gods you all worship.” + +

+

When the people of Babylon heard that, they took great indignation, and conspired against the king, saying, “The king has become a Jew. He has pulled down Bel, slain the dragon, and put the priests to the sword.” + +So they came to the king, and said, “Deliver Daniel to us, or else we will destroy you and your house.” + +

+

Now when the king saw that they trapped him, being constrained, the king delivered Daniel to them. + +They cast him into the lion’s den, where he was six days. + +There were seven lions in the den, and they had been giving them two carcasses and two sheep every day, which then were not given to them, intending that they would devour Daniel. + +

+

Now there was in Jewry the prophet Habakkuk,14:33 +Gr. +Ambakoum. + who had made stew, and had broken bread into a bowl. He was going into the field to bring it to the reapers. + +But the angel of the Lord said to Habakkuk, “Go carry the dinner that you have into Babylon to Daniel, in the lions’ den.” + +

+

Habakkuk said, “Lord, I never saw Babylon. I don’t know where the den is.” + +

+

Then the angel of the Lord took him by the crown, and lifted him up by the hair of his head, and with the blast of his breath set him in Babylon over the den. + +

+

Habakkuk cried, saying, “O Daniel, Daniel, take the dinner which God has sent you.” + +

+

Daniel said, “You have remembered me, O God! You haven’t forsaken those who love you!” + +So Daniel arose and ate; and the angel of God set Habakkuk in his own place again immediately. + +On the seventh day, the king came to mourn for Daniel. When he came to the den, he looked in, and, behold, Daniel was sitting. + +Then the king cried with a loud voice, saying, “Great are you, O Lord, you God of Daniel, and there is none other beside you!” + +So he drew him out, and cast those that were the cause of his destruction into the den; and they were devoured in a moment before his face. + +

+
+40-MAT-web.sfm World English Bible (WEB) +Matthew +The Good News According to Matthew +Matthew +Mat +

The Good News According to +

+

Matthew +

+ + +

The book of the genealogy of Jesus Christ,1:1 +Messiah (Hebrew) and Christ (Greek) both mean “Anointed One” the son of David, the son of Abraham. + +

+

Abraham became the father of Isaac. Isaac became the father of Jacob. Jacob became the father of Judah and his brothers. + +Judah became the father of Perez and Zerah by Tamar. Perez became the father of Hezron. Hezron became the father of Ram. + +Ram became the father of Amminadab. Amminadab became the father of Nahshon. Nahshon became the father of Salmon. + +Salmon became the father of Boaz by Rahab. Boaz became the father of Obed by Ruth. Obed became the father of Jesse. + +Jesse became the father of King David. David the king1:6 +NU omits “the king”. became the father of Solomon by her who had been Uriah’s wife. + +Solomon became the father of Rehoboam. Rehoboam became the father of Abijah. Abijah became the father of Asa. + +Asa became the father of Jehoshaphat. Jehoshaphat became the father of Joram. Joram became the father of Uzziah. + +Uzziah became the father of Jotham. Jotham became the father of Ahaz. Ahaz became the father of Hezekiah. + +Hezekiah became the father of Manasseh. Manasseh became the father of Amon. Amon became the father of Josiah. + +Josiah became the father of Jechoniah and his brothers at the time of the exile to Babylon. + +

+

After the exile to Babylon, Jechoniah became the father of Shealtiel. Shealtiel became the father of Zerubbabel. + +Zerubbabel became the father of Abiud. Abiud became the father of Eliakim. Eliakim became the father of Azor. + +Azor became the father of Zadok. Zadok became the father of Achim. Achim became the father of Eliud. + +Eliud became the father of Eleazar. Eleazar became the father of Matthan. Matthan became the father of Jacob. + +Jacob became the father of Joseph, the husband of Mary, from whom was born Jesus,1:16 +“Jesus” means “Salvation”. who is called Christ. + +

+

So all the generations from Abraham to David are fourteen generations; from David to the exile to Babylon fourteen generations; and from the carrying away to Babylon to the Christ, fourteen generations. + +

+

Now the birth of Jesus Christ was like this: After his mother, Mary, was engaged to Joseph, before they came together, she was found pregnant by the Holy Spirit. + +Joseph, her husband, being a righteous man, and not willing to make her a public example, intended to put her away secretly. + +But when he thought about these things, behold,1:20 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. an angel of the Lord appeared to him in a dream, saying, “Joseph, son of David, don’t be afraid to take to yourself Mary as your wife, for that which is conceived in her is of the Holy Spirit. + +She shall give birth to a son. You shall name him Jesus,1:21 +“Jesus” means “Salvation”. for it is he who shall save his people from their sins.” + +

+

Now all this has happened that it might be fulfilled which was spoken by the Lord through the prophet, saying, + +

+Behold, the virgin shall be with child, + +and shall give birth to a son. + +They shall call his name Immanuel,” + +which is, being interpreted, “God with us.”1:23 +Isaiah 7:14 + + +

Joseph arose from his sleep, and did as the angel of the Lord commanded him, and took his wife to himself; + +and didn’t know her sexually until she had given birth to her firstborn son. He named him Jesus. + +

+ + +

Now when Jesus was born in Bethlehem of Judea in the days of King Herod, behold, wise men2:1 +The word for “wise men” (magoi) can also mean teachers, scientists, physicians, astrologers, seers, interpreters of dreams, or sorcerers. from the east came to Jerusalem, saying, + +Where is he who is born King of the Jews? For we saw his star in the east, and have come to worship him.” + +When King Herod heard it, he was troubled, and all Jerusalem with him. + +Gathering together all the chief priests and scribes of the people, he asked them where the Christ would be born. + +They said to him, “In Bethlehem of Judea, for this is written through the prophet, + +

+You Bethlehem, land of Judah, + +are in no way least among the princes of Judah; + +for out of you shall come a governor + +who shall shepherd my people, Israel.’”2:6 +Micah 5:2 + + +

Then Herod secretly called the wise men, and learned from them exactly what time the star appeared. + +He sent them to Bethlehem, and said, “Go and search diligently for the young child. When you have found him, bring me word, so that I also may come and worship him.” + +

+

They, having heard the king, went their way; and behold, the star, which they saw in the east, went before them until it came and stood over where the young child was. + +When they saw the star, they rejoiced with exceedingly great joy. + +They came into the house and saw the young child with Mary, his mother, and they fell down and worshiped him. Opening their treasures, they offered to him gifts: gold, frankincense, and myrrh. + +Being warned in a dream not to return to Herod, they went back to their own country another way. + +

+

Now when they had departed, behold, an angel of the Lord appeared to Joseph in a dream, saying, “Arise and take the young child and his mother, and flee into Egypt, and stay there until I tell you, for Herod will seek the young child to destroy him.” + +

+

He arose and took the young child and his mother by night and departed into Egypt, + +and was there until the death of Herod, that it might be fulfilled which was spoken by the Lord through the prophet, saying, “Out of Egypt I called my son.”2:15 +Hosea 11:1 + +

+

Then Herod, when he saw that he was mocked by the wise men, was exceedingly angry, and sent out and killed all the male children who were in Bethlehem and in all the surrounding countryside, from two years old and under, according to the exact time which he had learned from the wise men. + +Then that which was spoken by Jeremiah the prophet was fulfilled, saying, + +

+A voice was heard in Ramah, + +lamentation, weeping and great mourning, + +Rachel weeping for her children; + +she wouldn’t be comforted, + +because they are no more.”2:18 +Jeremiah 31:15 + + +

But when Herod was dead, behold, an angel of the Lord appeared in a dream to Joseph in Egypt, saying, + +Arise and take the young child and his mother, and go into the land of Israel, for those who sought the young child’s life are dead.” + +

+

He arose and took the young child and his mother, and came into the land of Israel. + +But when he heard that Archelaus was reigning over Judea in the place of his father, Herod, he was afraid to go there. Being warned in a dream, he withdrew into the region of Galilee, + +and came and lived in a city called Nazareth; that it might be fulfilled which was spoken through the prophets that he will be called a Nazarene. + +

+ + +

In those days, John the Baptizer came, preaching in the wilderness of Judea, saying, + +Repent, for the Kingdom of Heaven is at hand!” + +For this is he who was spoken of by Isaiah the prophet, saying, +

+The voice of one crying in the wilderness, + +make the way of the Lord ready! + +Make his paths straight!”3:3 +Isaiah 40:3 + + +

Now John himself wore clothing made of camels hair with a leather belt around his waist. His food was locusts and wild honey. + +Then people from Jerusalem, all of Judea, and all the region around the Jordan went out to him. + +They were baptized by him in the Jordan, confessing their sins. + +

+

But when he saw many of the Pharisees and Sadducees coming for his baptism, he said to them, “You offspring of vipers, who warned you to flee from the wrath to come? + +Therefore produce fruit worthy of repentance! + +Don’t think to yourselves, ‘We have Abraham for our father,’ for I tell you that God is able to raise up children to Abraham from these stones. + +Even now the ax lies at the root of the trees. Therefore every tree that doesn’t produce good fruit is cut down, and cast into the fire. + +

+

I indeed baptize you in water for repentance, but he who comes after me is mightier than I, whose sandals I am not worthy to carry. He will baptize you in the Holy Spirit.3:11 +TR and NU add “and with fire” + + +His winnowing fork is in his hand, and he will thoroughly cleanse his threshing floor. He will gather his wheat into the barn, but the chaff he will burn up with unquenchable fire.” + +

+

Then Jesus came from Galilee to the Jordan3:13 +i.e., the Jordan River to John, to be baptized by him. + +But John would have hindered him, saying, “I need to be baptized by you, and you come to me?” + +

+

But Jesus, answering, said to him, +“Allow it now, for this is the fitting way for us to fulfill all righteousness.” Then he allowed him. + +

+

Jesus, when he was baptized, went up directly from the water: and behold, the heavens were opened to him. He saw the Spirit of God descending as a dove, and coming on him. + +Behold, a voice out of the heavens said, “This is my beloved Son, with whom I am well pleased.” + +

+ + +

Then Jesus was led up by the Spirit into the wilderness to be tempted by the devil. + +When he had fasted forty days and forty nights, he was hungry afterward. + +The tempter came and said to him, “If you are the Son of God, command that these stones become bread.” + +

+

But he answered, +It is written, ‘Man shall not live by bread alone, but by every word that proceeds out of God’s mouth.’”4:4 +Deuteronomy 8:3 + +

+

Then the devil took him into the holy city. He set him on the pinnacle of the temple, + +and said to him, “If you are the Son of God, throw yourself down, for it is written, +

+He will command his angels concerning you,’ and, + +On their hands they will bear you up, + +so that you don’t dash your foot against a stone.’”4:6 +Psalms 91:11-12 + + + +

Jesus said to him, +Again, it is written, ‘You shall not test the Lord, your God.’”4:7 +Deuteronomy 6:16 + +

+

Again, the devil took him to an exceedingly high mountain, and showed him all the kingdoms of the world and their glory. + +He said to him, “I will give you all of these things, if you will fall down and worship me.” + +

+

Then Jesus said to him, +Get behind me,4:10 +TR and NU read “Go away” instead of “Get behind me” +Satan! For it is written, ‘You shall worship the Lord your God, and you shall serve him only.’” +4:10 +Deuteronomy 6:13 + +

+

Then the devil left him, and behold, angels came and served him. + +

+

Now when Jesus heard that John was delivered up, he withdrew into Galilee. + +Leaving Nazareth, he came and lived in Capernaum, which is by the sea, in the region of Zebulun and Naphtali, + +that it might be fulfilled which was spoken through Isaiah the prophet, saying, + +

+The land of Zebulun and the land of Naphtali, + +toward the sea, beyond the Jordan, + +Galilee of the Gentiles, + + +the people who sat in darkness saw a great light; + +to those who sat in the region and shadow of death, + +to them light has dawned.”4:16 +Isaiah 9:1-2 + + +

From that time, Jesus began to preach, and to say, +Repent! For the Kingdom of Heaven is at hand.” + +

+

Walking by the sea of Galilee, he4:18 +TR reads “Jesus” instead of “he” + saw two brothers: Simon, who is called Peter, and Andrew, his brother, casting a net into the sea; for they were fishermen. + +He said to them, +Come after me, and I will make you fishers for men.” + +

+

They immediately left their nets and followed him. + +Going on from there, he saw two other brothers, James the son of Zebedee, and John his brother, in the boat with Zebedee their father, mending their nets. He called them. + +They immediately left the boat and their father, and followed him. + +

+

Jesus went about in all Galilee, teaching in their synagogues, preaching the Good News of the Kingdom, and healing every disease and every sickness among the people. + +The report about him went out into all Syria. They brought to him all who were sick, afflicted with various diseases and torments, possessed with demons, epileptics, and paralytics; and he healed them. + +Great multitudes from Galilee, Decapolis, Jerusalem, Judea, and from beyond the Jordan followed him. + +

+ + +

Seeing the multitudes, he went up onto the mountain. When he had sat down, his disciples came to him. + +He opened his mouth and taught them, saying, + +

+Blessed are the poor in spirit, + +for theirs is the Kingdom of Heaven.5:3 +Isaiah 57:15; 66:2 + + +Blessed are those who mourn, + +for they shall be comforted.5:4 +Isaiah 61:2; 66:10,13 + + +Blessed are the gentle, + +for they shall inherit the earth.5:5 +or, land.5:5 +Psalms 37:11 + + +Blessed are those who hunger and thirst for righteousness, + + +for they shall be filled. + + +Blessed are the merciful, + +for they shall obtain mercy. + + +Blessed are the pure in heart, + +for they shall see God. + + +Blessed are the peacemakers, + +for they shall be called children of God. + + +Blessed are those who have been persecuted for righteousnesssake, + + +for theirs is the Kingdom of Heaven. + + +

Blessed are you when people reproach you, persecute you, and say all kinds of evil against you falsely, for my sake. + + +Rejoice, and be exceedingly glad, for great is your reward in heaven. For that is how they persecuted the prophets who were before you. + + +

+

You are the salt of the earth, but if the salt has lost its flavor, with what will it be salted? It is then good for nothing, but to be cast out and trodden under the feet of men. + + +

+

You are the light of the world. A city located on a hill cant be hidden. + + +Neither do you light a lamp and put it under a measuring basket, but on a stand; and it shines to all who are in the house. + + +Even so, let your light shine before men, that they may see your good works and glorify your Father who is in heaven. + +

+

“Don’t think that I came to destroy the law or the prophets. I didn’t come to destroy, but to fulfill. + + +For most certainly, I tell you, until heaven and earth pass away, not even one smallest letter5:18 +literally, iota +or one tiny pen stroke5:18 +or, serif +shall in any way pass away from the law, until all things are accomplished. + + +Therefore, whoever shall break one of these least commandments and teach others to do so, shall be called least in the Kingdom of Heaven; but whoever shall do and teach them shall be called great in the Kingdom of Heaven. + + +For I tell you that unless your righteousness exceeds that of the scribes and Pharisees, there is no way you will enter into the Kingdom of Heaven. + +

+

You have heard that it was said to the ancient ones, ‘You shall not murder;’5:21 +Exodus 20:13 +andWhoever murders will be in danger of the judgment.’ + + +But I tell you that everyone who is angry with his brother without a cause +5:22 +NU omits “without a cause”. +will be in danger of the judgment. Whoever says to his brother, ‘Raca!’ +5:22 +“Raca” is an Aramaic insult, related to the word for “empty” and conveying the idea of empty-headedness. +will be in danger of the council. Whoever says, ‘You fool!’ will be in danger of the fire of Gehenna.5:22 +or, Hell + +

+

If therefore you are offering your gift at the altar, and there remember that your brother has anything against you, + + +leave your gift there before the altar, and go your way. First be reconciled to your brother, and then come and offer your gift. + + +Agree with your adversary quickly while you are with him on the way; lest perhaps the prosecutor deliver you to the judge, and the judge deliver you to the officer, and you be cast into prison. + + +Most certainly I tell you, you shall by no means get out of there until you have paid the last penny.5:26 +literally, kodrantes. A kodrantes was a small copper coin worth about 2 lepta (widow’s mites)—not enough to buy very much of anything. + +

+

You have heard that it was said, +5:27 +TR adds “to the ancients”. +You shall not commit adultery;’5:27 +Exodus 20:14 + +but I tell you that everyone who gazes at a woman to lust after her has committed adultery with her already in his heart. + + +If your right eye causes you to stumble, pluck it out and throw it away from you. For it is more profitable for you that one of your members should perish than for your whole body to be cast into Gehenna.5:29 +or, Hell + +If your right hand causes you to stumble, cut it off, and throw it away from you. For it is more profitable for you that one of your members should perish, than for your whole body to be cast into Gehenna.5:30 +or, Hell + +

+

It was also said, ‘Whoever shall put away his wife, let him give her a writing of divorce,’5:31 +Deuteronomy 24:1 + +but I tell you that whoever puts away his wife, except for the cause of sexual immorality, makes her an adulteress; and whoever marries her when she is put away commits adultery. + +

+

Again you have heard that it was said to the ancient ones, ‘You shall not make false vows, but shall perform to the Lord your vows,’5:33 +Numbers 30:2; Deuteronomy 23:21; Ecclesiastes 5:4 + +but I tell you, don’t swear at all: neither by heaven, for it is the throne of God; + + +nor by the earth, for it is the footstool of his feet; nor by Jerusalem, for it is the city of the great King. + + +Neither shall you swear by your head, for you cant make one hair white or black. + + +But let yourYesbeYesand yourNobeNo.’ Whatever is more than these is of the evil one. + +

+

You have heard that it was said, ‘An eye for an eye, and a tooth for a tooth.’5:38 +Exodus 21:24; Leviticus 24:20; Deuteronomy 19:21 + +But I tell you, don’t resist him who is evil; but whoever strikes you on your right cheek, turn to him the other also. + + +If anyone sues you to take away your coat, let him have your cloak also. + + +Whoever compels you to go one mile, go with him two. + + +Give to him who asks you, and don’t turn away him who desires to borrow from you. + +

+

You have heard that it was said, ‘You shall love your neighbor +5:43 +Leviticus 19:18 +and hate your enemy.’5:43 +not in the Bible, but see Qumran Manual of Discipline Ix, 21-26 + +But I tell you, love your enemies, bless those who curse you, do good to those who hate you, and pray for those who mistreat you and persecute you, + + +that you may be children of your Father who is in heaven. For he makes his sun to rise on the evil and the good, and sends rain on the just and the unjust. + + +For if you love those who love you, what reward do you have? Don’t even the tax collectors do the same? + + +If you only greet your friends, what more do you do than others? Don’t even the tax collectors5:47 +NU reads “Gentiles” instead of “tax collectors”. +do the same? + + +Therefore you shall be perfect, just as your Father in heaven is perfect. + +

+ + +

Be careful that you don’t do your charitable giving6:1 +NU reads “acts of righteousness” instead of “charitable giving” +before men, to be seen by them, or else you have no reward from your Father who is in heaven. + + +Therefore, when you do merciful deeds, don’t sound a trumpet before yourself, as the hypocrites do in the synagogues and in the streets, that they may get glory from men. Most certainly I tell you, they have received their reward. + + +But when you do merciful deeds, don’t let your left hand know what your right hand does, + + +so that your merciful deeds may be in secret, then your Father who sees in secret will reward you openly. + +

+

When you pray, you shall not be as the hypocrites, for they love to stand and pray in the synagogues and in the corners of the streets, that they may be seen by men. Most certainly, I tell you, they have received their reward. + + +But you, when you pray, enter into your inner room, and having shut your door, pray to your Father who is in secret; and your Father who sees in secret will reward you openly. + + +In praying, don’t use vain repetitions as the Gentiles do; for they think that they will be heard for their much speaking. + + +Therefore don’t be like them, for your Father knows what things you need before you ask him. + + +Pray like this: + +

+“‘Our Father in heaven, may your name be kept holy. + + + +Let your Kingdom come. + + +Let your will be done on earth as it is in heaven. + + + +Give us today our daily bread. + + + +Forgive us our debts, + +as we also forgive our debtors. + + + +Bring us not into temptation, + +but deliver us from the evil one. + +For yours is the Kingdom, the power, and the glory forever. Amen.’6:13 +NU omits “For yours is the Kingdom, the power, and the glory forever. Amen.” + + +

For if you forgive men their trespasses, your heavenly Father will also forgive you. + + +But if you don’t forgive men their trespasses, neither will your Father forgive your trespasses. + +

+

Moreover when you fast, don’t be like the hypocrites, with sad faces. For they disfigure their faces that they may be seen by men to be fasting. Most certainly I tell you, they have received their reward. + + +But you, when you fast, anoint your head and wash your face, + + +so that you are not seen by men to be fasting, but by your Father who is in secret; and your Father, who sees in secret, will reward you. + + +

+

“Don’t lay up treasures for yourselves on the earth, where moth and rust consume, and where thieves break through and steal; + + +but lay up for yourselves treasures in heaven, where neither moth nor rust consume, and where thieves don’t break through and steal; + + +for where your treasure is, there your heart will be also. + + +

+

The lamp of the body is the eye. If therefore your eye is sound, your whole body will be full of light. + + +But if your eye is evil, your whole body will be full of darkness. If therefore the light that is in you is darkness, how great is the darkness! + + +

+

No one can serve two masters, for either he will hate the one and love the other, or else he will be devoted to one and despise the other. You cant serve both God and Mammon. + + +Therefore I tell you, don’t be anxious for your life: what you will eat, or what you will drink; nor yet for your body, what you will wear. Isn’t life more than food, and the body more than clothing? + + +See the birds of the sky, that they don’t sow, neither do they reap, nor gather into barns. Your heavenly Father feeds them. Aren’t you of much more value than they? + +

+

Which of you by being anxious, can add one moment6:27 +literally, cubit +to his lifespan? + + +Why are you anxious about clothing? Consider the lilies of the field, how they grow. They don’t toil, neither do they spin, + + +yet I tell you that even Solomon in all his glory was not dressed like one of these. + + +But if God so clothes the grass of the field, which today exists and tomorrow is thrown into the oven, won’t he much more clothe you, you of little faith? + +

+

Therefore don’t be anxious, saying, ‘What will we eat?’, ‘What will we drink?’ or, ‘With what will we be clothed?’ + + +For the Gentiles seek after all these things; for your heavenly Father knows that you need all these things. + + +But seek first God’s Kingdom and his righteousness; and all these things will be given to you as well. + + +Therefore don’t be anxious for tomorrow, for tomorrow will be anxious for itself. Each day’s own evil is sufficient. + +

+ + +

“Don’t judge, so that you won’t be judged. + + +For with whatever judgment you judge, you will be judged; and with whatever measure you measure, it will be measured to you. + + +Why do you see the speck that is in your brother’s eye, but don’t consider the beam that is in your own eye? + + +Or how will you tell your brother, ‘Let me remove the speck from your eye,’ and behold, the beam is in your own eye? + + +You hypocrite! First remove the beam out of your own eye, and then you can see clearly to remove the speck out of your brother’s eye. + +

+

“Don’t give that which is holy to the dogs, neither throw your pearls before the pigs, lest perhaps they trample them under their feet, and turn and tear you to pieces. + +

+

“Ask, and it will be given you. Seek, and you will find. Knock, and it will be opened for you. + + +For everyone who asks receives. He who seeks finds. To him who knocks it will be opened. + + +Or who is there among you who, if his son asks him for bread, will give him a stone? + + +Or if he asks for a fish, who will give him a serpent? + + +If you then, being evil, know how to give good gifts to your children, how much more will your Father who is in heaven give good things to those who ask him! + + +Therefore, whatever you desire for men to do to you, you shall also do to them; for this is the law and the prophets. + +

+

Enter in by the narrow gate; for the gate is wide and the way is broad that leads to destruction, and there are many who enter in by it. + + +How7:14 +TR reads “Because” instead of “How” +narrow is the gate and the way is restricted that leads to life! There are few who find it. + +

+

Beware of false prophets, who come to you in sheep’s clothing, but inwardly are ravening wolves. + + +By their fruits you will know them. Do you gather grapes from thorns or figs from thistles? + + +Even so, every good tree produces good fruit, but the corrupt tree produces evil fruit. + + +A good tree can’t produce evil fruit, neither can a corrupt tree produce good fruit. + + +Every tree that doesn’t grow good fruit is cut down and thrown into the fire. + + +Therefore by their fruits you will know them. + + +

+

Not everyone who says to me, ‘Lord, Lord,’ will enter into the Kingdom of Heaven, but he who does the will of my Father who is in heaven. + + +Many will tell me in that day, ‘Lord, Lord, didn’t we prophesy in your name, in your name cast out demons, and in your name do many mighty works?’ + + +Then I will tell them, ‘I never knew you. Depart from me, you who work iniquity.’ + +

+

Everyone therefore who hears these words of mine and does them, I will liken him to a wise man who built his house on the rock. + + +The rain came down, the floods came, and the winds blew and beat on that house; and it didn’t fall, for it was founded on the rock. + + +Everyone who hears these words of mine and doesn’t do them will be like a foolish man who built his house on the sand. + + +The rain came down, the floods came, and the winds blew and beat on that house; and it felland its fall was great.” + +

+

When Jesus had finished saying these things, the multitudes were astonished at his teaching, + +for he taught them with authority, and not like the scribes. + +

+ + +

When he came down from the mountain, great multitudes followed him. + +Behold, a leper came to him and worshiped him, saying, “Lord, if you want to, you can make me clean.” + +

+

Jesus stretched out his hand and touched him, saying, +I want to. Be made clean.” Immediately his leprosy was cleansed. + +Jesus said to him, +See that you tell nobody; but go, show yourself to the priest, and offer the gift that Moses commanded, as a testimony to them.” + +

+

When he came into Capernaum, a centurion came to him, asking him for help, + +saying, “Lord, my servant lies in the house paralyzed, grievously tormented.” + +

+

Jesus said to him, +I will come and heal him.” + +

+

The centurion answered, “Lord, I’m not worthy for you to come under my roof. Just say the word, and my servant will be healed. + +For I am also a man under authority, having under myself soldiers. I tell this one, ‘Go,’ and he goes; and tell another, ‘Come,’ and he comes; and tell my servant, ‘Do this,’ and he does it.” + +

+

When Jesus heard it, he marveled and said to those who followed, +“Most certainly I tell you, I haven’t found so great a faith, not even in Israel. + + +I tell you that many will come from the east and the west, and will sit down with Abraham, Isaac, and Jacob in the Kingdom of Heaven, + + +but the children of the Kingdom will be thrown out into the outer darkness. There will be weeping and gnashing of teeth.” + +Jesus said to the centurion, +Go your way. Let it be done for you as you have believed.” His servant was healed in that hour. + +

+

When Jesus came into Peter’s house, he saw his wife’s mother lying sick with a fever. + +He touched her hand, and the fever left her. So she got up and served him.8:15 +TR reads “them” instead of “him” + +When evening came, they brought to him many possessed with demons. He cast out the spirits with a word, and healed all who were sick, + +that it might be fulfilled which was spoken through Isaiah the prophet, saying, “He took our infirmities and bore our diseases.”8:17 +Isaiah 53:4 + + +

+

Now when Jesus saw great multitudes around him, he gave the order to depart to the other side. + +

+

A scribe came and said to him, “Teacher, I will follow you wherever you go.” + +

+

Jesus said to him, +The foxes have holes and the birds of the sky have nests, but the Son of Man has nowhere to lay his head.” + +

+

Another of his disciples said to him, “Lord, allow me first to go and bury my father.” + +

+

But Jesus said to him, +Follow me, and leave the dead to bury their own dead.” + +

+

When he got into a boat, his disciples followed him. + +Behold, a violent storm came up on the sea, so much that the boat was covered with the waves; but he was asleep. + +The disciples came to him and woke him up, saying, “Save us, Lord! We are dying!” + +

+

He said to them, +Why are you fearful, O you of little faith?” + Then he got up, rebuked the wind and the sea, and there was a great calm. + +

+

The men marveled, saying, “What kind of man is this, that even the wind and the sea obey him?” + +

+

When he came to the other side, into the country of the Gergesenes,8:28 +NU reads “Gadarenes” two people possessed by demons met him there, coming out of the tombs, exceedingly fierce, so that nobody could pass that way. + +Behold, they cried out, saying, “What do we have to do with you, Jesus, Son of God? Have you come here to torment us before the time?” + +Now there was a herd of many pigs feeding far away from them. + +The demons begged him, saying, “If you cast us out, permit us to go away into the herd of pigs.” + +

+

He said to them, +Go!” +

+

They came out and went into the herd of pigs; and behold, the whole herd of pigs rushed down the cliff into the sea and died in the water. + +Those who fed them fled and went away into the city and told everything, including what happened to those who were possessed with demons. + +Behold, all the city came out to meet Jesus. When they saw him, they begged that he would depart from their borders. + +

+ + +

He entered into a boat and crossed over, and came into his own city. + +Behold, they brought to him a man who was paralyzed, lying on a bed. Jesus, seeing their faith, said to the paralytic, +Son, cheer up! Your sins are forgiven you.” + +

+

Behold, some of the scribes said to themselves, “This man blasphemes.” + +

+

Jesus, knowing their thoughts, said, +Why do you think evil in your hearts? + + +For which is easier, to say, ‘Your sins are forgiven;’ or to say, ‘Get up, and walk’? + + +But that you may know that the Son of Man has authority on earth to forgive sins—” (then he said to the paralytic), +Get up, and take up your mat, and go to your house.” + +

+

He arose and departed to his house. + +But when the multitudes saw it, they marveled and glorified God, who had given such authority to men. + +

+

As Jesus passed by from there, he saw a man called Matthew sitting at the tax collection office. He said to him, +“Follow me.” He got up and followed him. + +As he sat in the house, behold, many tax collectors and sinners came and sat down with Jesus and his disciples. + +When the Pharisees saw it, they said to his disciples, “Why does your teacher eat with tax collectors and sinners?” + +

+

When Jesus heard it, he said to them, +Those who are healthy have no need for a physician, but those who are sick do. + + +But you go and learn what this means: ‘I desire mercy, and not sacrifice,’9:13 +Hosea 6:6 +for I came not to call the righteous, but sinners to repentance.”9:13 +NU omits “to repentance”. + +

+

Then John’s disciples came to him, saying, “Why do we and the Pharisees fast often, but your disciples don’t fast?” + +

+

Jesus said to them, +Can the friends of the bridegroom mourn as long as the bridegroom is with them? But the days will come when the bridegroom will be taken away from them, and then they will fast. + + +No one puts a piece of unshrunk cloth on an old garment; for the patch would tear away from the garment, and a worse hole is made. + + +Neither do people put new wine into old wineskins, or else the skins would burst, and the wine be spilled, and the skins ruined. No, they put new wine into fresh wineskins, and both are preserved.” + +

+

While he told these things to them, behold, a ruler came and worshiped him, saying, “My daughter has just died, but come and lay your hand on her, and she will live.” + +

+

Jesus got up and followed him, as did his disciples. + +Behold, a woman who had a discharge of blood for twelve years came behind him, and touched the fringe9:20 +or, tassel of his garment; + +for she said within herself, “If I just touch his garment, I will be made well.” + +

+

But Jesus, turning around and seeing her, said, +Daughter, cheer up! Your faith has made you well.” And the woman was made well from that hour. + +

+

When Jesus came into the ruler’s house and saw the flute players and the crowd in noisy disorder, + +he said to them, +Make room, because the girl isn’t dead, but sleeping.” +

+

They were ridiculing him. + +But when the crowd was sent out, he entered in, took her by the hand, and the girl arose. + +The report of this went out into all that land. + +

+

As Jesus passed by from there, two blind men followed him, calling out and saying, “Have mercy on us, son of David!” + +When he had come into the house, the blind men came to him. Jesus said to them, +Do you believe that I am able to do this?” +

+

They told him, “Yes, Lord.” + +

+

Then he touched their eyes, saying, +According to your faith be it done to you.” + +Then their eyes were opened. Jesus strictly commanded them, saying, +See that no one knows about this.” + +But they went out and spread abroad his fame in all that land. + +

+

As they went out, behold, a mute man who was demon possessed was brought to him. + +When the demon was cast out, the mute man spoke. The multitudes marveled, saying, “Nothing like this has ever been seen in Israel!” + +

+

But the Pharisees said, “By the prince of the demons, he casts out demons.” + +

+

Jesus went about all the cities and the villages, teaching in their synagogues and preaching the Good News of the Kingdom, and healing every disease and every sickness among the people. + +But when he saw the multitudes, he was moved with compassion for them because they were harassed9:36 +TR reads “weary” instead of “harassed” + and scattered, like sheep without a shepherd. + +Then he said to his disciples, +The harvest indeed is plentiful, but the laborers are few. + + +Pray therefore that the Lord of the harvest will send out laborers into his harvest.” + +

+ + +

He called to himself his twelve disciples, and gave them authority over unclean spirits, to cast them out, and to heal every disease and every sickness. + +Now the names of the twelve apostles are these. The first, Simon, who is called Peter; Andrew, his brother; James the son of Zebedee; John, his brother; + +Philip; Bartholomew; Thomas; Matthew the tax collector; James the son of Alphaeus; Lebbaeus, who was also called10:3 +NU omits “Lebbaeus, who was also called” Thaddaeus; + +Simon the Zealot; and Judas Iscariot, who also betrayed him. + +

+

Jesus sent these twelve out and commanded them, saying, +“Don’t go among the Gentiles, and don’t enter into any city of the Samaritans. + + +Rather, go to the lost sheep of the house of Israel. + + +As you go, preach, saying, ‘The Kingdom of Heaven is at hand!’ + + +Heal the sick, cleanse the lepers,10:8 +TR adds “raise the dead,” +and cast out demons. Freely you received, so freely give. + + +Don’t take any gold, silver, or brass in your money belts. + + +Take no bag for your journey, neither two coats, nor sandals, nor staff: for the laborer is worthy of his food. + + +Into whatever city or village you enter, find out who in it is worthy, and stay there until you go on. + + +As you enter into the household, greet it. + + +If the household is worthy, let your peace come on it, but if it isn’t worthy, let your peace return to you. + + +Whoever doesn’t receive you or hear your words, as you go out of that house or that city, shake the dust off your feet. + + +Most certainly I tell you, it will be more tolerable for the land of Sodom and Gomorrah in the day of judgment than for that city. + +

+

Behold, I send you out as sheep among wolves. Therefore be wise as serpents and harmless as doves. + + +But beware of men, for they will deliver you up to councils, and in their synagogues they will scourge you. + + +Yes, and you will be brought before governors and kings for my sake, for a testimony to them and to the nations. + + +But when they deliver you up, don’t be anxious how or what you will say, for it will be given you in that hour what you will say. + + +For it is not you who speak, but the Spirit of your Father who speaks in you. + +

+

“Brother will deliver up brother to death, and the father his child. Children will rise up against parents and cause them to be put to death. + + +You will be hated by all men for my name’s sake, but he who endures to the end will be saved. + + +But when they persecute you in this city, flee into the next, for most certainly I tell you, you will not have gone through the cities of Israel until the Son of Man has come. + +

+

A disciple is not above his teacher, nor a servant above his lord. + + +It is enough for the disciple that he be like his teacher, and the servant like his lord. If they have called the master of the house Beelzebul,10:25 +Literally, Lord of the Flies, or the devil +how much more those of his household! + + +Therefore don’t be afraid of them, for there is nothing covered that will not be revealed, or hidden that will not be known. + + +What I tell you in the darkness, speak in the light; and what you hear whispered in the ear, proclaim on the housetops. + + +Don’t be afraid of those who kill the body, but are not able to kill the soul. Rather, fear him who is able to destroy both soul and body in Gehenna.10:28 +or, Hell. + +

+

“Aren’t two sparrows sold for an assarion coin?10:29 +An assarion is a small coin worth one tenth of a drachma or a sixteenth of a denarius. An assarion is approximately the wages of one half hour of agricultural labor. +Not one of them falls to the ground apart from your Father’s will. + + +But the very hairs of your head are all numbered. + + +Therefore don’t be afraid. You are of more value than many sparrows. + + +Everyone therefore who confesses me before men, I will also confess him before my Father who is in heaven. + + +But whoever denies me before men, I will also deny him before my Father who is in heaven. + +

+

“Don’t think that I came to send peace on the earth. I didn’t come to send peace, but a sword. + + +For I came to set a man at odds against his father, and a daughter against her mother, and a daughter-in-law against her mother-in-law. + + +A man’s foes will be those of his own household.10:36 +Micah 7:6 + +He who loves father or mother more than me is not worthy of me; and he who loves son or daughter more than me isn’t worthy of me. + + +He who doesn’t take his cross and follow after me isn’t worthy of me. + + +He who seeks his life will lose it; and he who loses his life for my sake will find it. + + +

+

He who receives you receives me, and he who receives me receives him who sent me. + + +He who receives a prophet in the name of a prophet will receive a prophet’s reward. He who receives a righteous man in the name of a righteous man will receive a righteous man’s reward. + + +Whoever gives one of these little ones just a cup of cold water to drink in the name of a disciple, most certainly I tell you, he will in no way lose his reward.” + +

+ + +

When Jesus had finished directing his twelve disciples, he departed from there to teach and preach in their cities. + +

+

Now when John heard in the prison the works of Christ, he sent two of his disciples + +and said to him, “Are you he who comes, or should we look for another?” + +

+

Jesus answered them, +Go and tell John the things which you hear and see: + + +the blind receive their sight, the lame walk, the lepers are cleansed, the deaf hear,11:5 +Isaiah 35:5 +the dead are raised up, and the poor have good news preached to them.11:5 +Isaiah 61:1-4 + +Blessed is he who finds no occasion for stumbling in me.” + +

+

As these went their way, Jesus began to say to the multitudes concerning John, +What did you go out into the wilderness to see? A reed shaken by the wind? + + +But what did you go out to see? A man in soft clothing? Behold, those who wear soft clothing are in kingshouses. + + +But why did you go out? To see a prophet? Yes, I tell you, and much more than a prophet. + + +For this is he, of whom it is written, ‘Behold, I send my messenger before your face, who will prepare your way before you.’11:10 +Malachi 3:1 + + +Most certainly I tell you, among those who are born of women there has not arisen anyone greater than John the Baptizer; yet he who is least in the Kingdom of Heaven is greater than he. + + +From the days of John the Baptizer until now, the Kingdom of Heaven suffers violence, and the violent take it by force.11:12 +or, plunder it. + + +For all the prophets and the law prophesied until John. + + +If you are willing to receive it, this is Elijah, who is to come. + + +He who has ears to hear, let him hear. + +

+

But to what shall I compare this generation? It is like children sitting in the marketplaces, who call to their companions + + +and say, ‘We played the flute for you, and you didn’t dance. We mourned for you, and you didn’t lament.’ + + +For John came neither eating nor drinking, and they say, ‘He has a demon.’ + + +The Son of Man came eating and drinking, and they say, ‘Behold, a gluttonous man and a drunkard, a friend of tax collectors and sinners!’ But wisdom is justified by her children.”11:19 +NU reads “actions” instead of “children” + +

+

Then he began to denounce the cities in which most of his mighty works had been done, because they didn’t repent. + +Woe to you, Chorazin! Woe to you, Bethsaida! For if the mighty works had been done in Tyre and Sidon which were done in you, they would have repented long ago in sackcloth and ashes. + + +But I tell you, it will be more tolerable for Tyre and Sidon on the day of judgment than for you. + + +You, Capernaum, who are exalted to heaven, you will go down to Hades. +11:23 +or, Hell +For if the mighty works had been done in Sodom which were done in you, it would have remained until today. + + +But I tell you that it will be more tolerable for the land of Sodom on the day of judgment, than for you.” + +

+

At that time, Jesus answered, +I thank you, Father, Lord of heaven and earth, that you hid these things from the wise and understanding, and revealed them to infants. + + +Yes, Father, for so it was well-pleasing in your sight. + + +All things have been delivered to me by my Father. No one knows the Son, except the Father; neither does anyone know the Father, except the Son and he to whom the Son desires to reveal him. + +

+

Come to me, all you who labor and are heavily burdened, and I will give you rest. + + +Take my yoke upon you and learn from me, for I am gentle and humble in heart; and you will find rest for your souls. + + +For my yoke is easy, and my burden is light.” + +

+ + +

At that time, Jesus went on the Sabbath day through the grain fields. His disciples were hungry and began to pluck heads of grain and to eat. + +But the Pharisees, when they saw it, said to him, “Behold, your disciples do what is not lawful to do on the Sabbath.” + +

+

But he said to them, +“Haven’t you read what David did when he was hungry, and those who were with him: + + +how he entered into God’s house and ate the show bread, which was not lawful for him to eat, nor for those who were with him, but only for the priests?12:4 +1 Samuel 21:3-6 + +Or have you not read in the law that on the Sabbath day the priests in the temple profane the Sabbath and are guiltless? + + +But I tell you that one greater than the temple is here. + + +But if you had known what this means, ‘I desire mercy, and not sacrifice,’12:7 +Hosea 6:6 +you wouldn’t have condemned the guiltless. + + +For the Son of Man is Lord of the Sabbath.” + +

+

He departed from there and went into their synagogue. + +And behold, there was a man with a withered hand. They asked him, “Is it lawful to heal on the Sabbath day?” so that they might accuse him. + +

+

He said to them, +What man is there among you who has one sheep, and if this one falls into a pit on the Sabbath day, won’t he grab on to it and lift it out? + + +Of how much more value then is a man than a sheep! Therefore it is lawful to do good on the Sabbath day.” + +Then he told the man, +Stretch out your hand.” He stretched it out; and it was restored whole, just like the other. + +But the Pharisees went out and conspired against him, how they might destroy him. + +

+

Jesus, perceiving that, withdrew from there. Great multitudes followed him; and he healed them all, + +and commanded them that they should not make him known, + +that it might be fulfilled which was spoken through Isaiah the prophet, saying, + +

+Behold, my servant whom I have chosen, + +my beloved in whom my soul is well pleased. + +I will put my Spirit on him. + +He will proclaim justice to the nations. + + +He will not strive, nor shout, + +neither will anyone hear his voice in the streets. + + +He won’t break a bruised reed. + +He won’t quench a smoking flax, + +until he leads justice to victory. + + +In his name, the nations will hope.”12:21 +Isaiah 42:1-4 + + +

Then one possessed by a demon, blind and mute, was brought to him; and he healed him, so that the blind and mute man both spoke and saw. + +All the multitudes were amazed, and said, “Can this be the son of David?” + +But when the Pharisees heard it, they said, “This man does not cast out demons except by Beelzebul, the prince of the demons.” + +

+

Knowing their thoughts, Jesus said to them, +Every kingdom divided against itself is brought to desolation, and every city or house divided against itself will not stand. + + +If Satan casts out Satan, he is divided against himself. How then will his kingdom stand? + + +If I by Beelzebul cast out demons, by whom do your children cast them out? Therefore they will be your judges. + + +But if I by the Spirit of God cast out demons, then God’s Kingdom has come upon you. + + +Or how can one enter into the house of the strong man and plunder his goods, unless he first bind the strong man? Then he will plunder his house. + +

+

He who is not with me is against me, and he who doesn’t gather with me, scatters. + + +Therefore I tell you, every sin and blasphemy will be forgiven men, but the blasphemy against the Spirit will not be forgiven men. + + +Whoever speaks a word against the Son of Man, it will be forgiven him; but whoever speaks against the Holy Spirit, it will not be forgiven him, either in this age, or in that which is to come. + +

+

Either make the tree good and its fruit good, or make the tree corrupt and its fruit corrupt; for the tree is known by its fruit. + + +You offspring of vipers, how can you, being evil, speak good things? For out of the abundance of the heart, the mouth speaks. + + +The good man out of his good treasure12:35 +TR adds “of the heart” +brings out good things, and the evil man out of his evil treasure brings out evil things. + + +I tell you that every idle word that men speak, they will give account of it in the day of judgment. + + +For by your words you will be justified, and by your words you will be condemned.” + +

+

Then certain of the scribes and Pharisees answered, “Teacher, we want to see a sign from you.” + +

+

But he answered them, +An evil and adulterous generation seeks after a sign, but no sign will be given to it but the sign of Jonah the prophet. + + +For as Jonah was three days and three nights in the belly of the huge fish, so will the Son of Man be three days and three nights in the heart of the earth. + + +The men of Nineveh will stand up in the judgment with this generation and will condemn it, for they repented at the preaching of Jonah; and behold, someone greater than Jonah is here. + + +The Queen of the South will rise up in the judgment with this generation and will condemn it, for she came from the ends of the earth to hear the wisdom of Solomon; and behold, someone greater than Solomon is here. + + +

+

When an unclean spirit has gone out of a man, he passes through waterless places seeking rest, and doesn’t find it. + + +Then he says, ‘I will return into my house from which I came;’ and when he has come back, he finds it empty, swept, and put in order. + + +Then he goes and takes with himself seven other spirits more evil than he is, and they enter in and dwell there. The last state of that man becomes worse than the first. Even so will it be also to this evil generation.” + +

+

While he was yet speaking to the multitudes, behold, his mother and his brothers stood outside, seeking to speak to him. + +One said to him, “Behold, your mother and your brothers stand outside, seeking to speak to you.” + +

+

But he answered him who spoke to him, +Who is my mother? Who are my brothers?” + +He stretched out his hand toward his disciples, and said, +Behold, my mother and my brothers! + + +For whoever does the will of my Father who is in heaven, he is my brother, and sister, and mother.” + +

+ + +

On that day Jesus went out of the house and sat by the seaside. + +Great multitudes gathered to him, so that he entered into a boat and sat; and all the multitude stood on the beach. + +He spoke to them many things in parables, saying, +Behold, a farmer went out to sow. + + +As he sowed, some seeds fell by the roadside, and the birds came and devoured them. + + +Others fell on rocky ground, where they didn’t have much soil, and immediately they sprang up, because they had no depth of earth. + + +When the sun had risen, they were scorched. Because they had no root, they withered away. + + +Others fell among thorns. The thorns grew up and choked them. + + +Others fell on good soil and yielded fruit: some one hundred times as much, some sixty, and some thirty. + + +He who has ears to hear, let him hear.” + +

+

The disciples came, and said to him, “Why do you speak to them in parables?” + +

+

He answered them, +To you it is given to know the mysteries of the Kingdom of Heaven, but it is not given to them. + + +For whoever has, to him will be given, and he will have abundance; but whoever doesn’t have, from him will be taken away even that which he has. + + +Therefore I speak to them in parables, because seeing they don’t see, and hearing, they don’t hear, neither do they understand. + + +In them the prophecy of Isaiah is fulfilled, which says, + +

+By hearing you will hear, + +and will in no way understand; + +Seeing you will see, + +and will in no way perceive; + + +for this people’s heart has grown callous, + +their ears are dull of hearing, + +and they have closed their eyes; + +or else perhaps they might perceive with their eyes, + +hear with their ears, + +understand with their heart, + +and would turn again, + +and I would heal them.’13:15 +Isaiah 6:9-10 + + +

But blessed are your eyes, for they see; and your ears, for they hear. + + +For most certainly I tell you that many prophets and righteous men desired to see the things which you see, and didn’t see them; and to hear the things which you hear, and didn’t hear them. + +

+

“Hear, then, the parable of the farmer. + + +When anyone hears the word of the Kingdom and doesn’t understand it, the evil one comes and snatches away that which has been sown in his heart. This is what was sown by the roadside. + + +What was sown on the rocky places, this is he who hears the word and immediately with joy receives it; + + +yet he has no root in himself, but endures for a while. When oppression or persecution arises because of the word, immediately he stumbles. + + +What was sown among the thorns, this is he who hears the word, but the cares of this age and the deceitfulness of riches choke the word, and he becomes unfruitful. + + +What was sown on the good ground, this is he who hears the word and understands it, who most certainly bears fruit and produces, some one hundred times as much, some sixty, and some thirty.” + +

+

He set another parable before them, saying, +The Kingdom of Heaven is like a man who sowed good seed in his field, + + +but while people slept, his enemy came and sowed darnel weeds13:25 +darnel is a weed grass (probably bearded darnel or lolium temulentum) that looks very much like wheat until it is mature, when the difference becomes very apparent. +also among the wheat, and went away. + + +But when the blade sprang up and produced grain, then the darnel weeds appeared also. + + +The servants of the householder came and said to him, ‘Sir, didn’t you sow good seed in your field? Where did these darnel weeds come from?’ + +

+

He said to them, ‘An enemy has done this.’ +

+

The servants asked him, ‘Do you want us to go and gather them up?’ + + +

+

But he said, ‘No, lest perhaps while you gather up the darnel weeds, you root up the wheat with them. + + +Let both grow together until the harvest, and in the harvest time I will tell the reapers, “First, gather up the darnel weeds, and bind them in bundles to burn them; but gather the wheat into my barn.”’” + +

+

He set another parable before them, saying, +The Kingdom of Heaven is like a grain of mustard seed which a man took, and sowed in his field, + + +which indeed is smaller than all seeds. But when it is grown, it is greater than the herbs and becomes a tree, so that the birds of the air come and lodge in its branches.” + +

+

He spoke another parable to them. +The Kingdom of Heaven is like yeast which a woman took and hid in three measures13:33 +literally, three sata. Three sata is about 39 liters or a bit more than a bushel +of meal, until it was all leavened.” + +

+

Jesus spoke all these things in parables to the multitudes; and without a parable, he didn’t speak to them, + +that it might be fulfilled which was spoken through the prophet, saying, +

+I will open my mouth in parables; + +I will utter things hidden from the foundation of the world.”13:35 +Psalms 78:2 + + +

Then Jesus sent the multitudes away, and went into the house. His disciples came to him, saying, “Explain to us the parable of the darnel weeds of the field.” + +

+

He answered them, +He who sows the good seed is the Son of Man, + + +the field is the world, the good seeds are the children of the Kingdom, and the darnel weeds are the children of the evil one. + + +The enemy who sowed them is the devil. The harvest is the end of the age, and the reapers are angels. + + +As therefore the darnel weeds are gathered up and burned with fire; so will it be at the end of this age. + + +The Son of Man will send out his angels, and they will gather out of his Kingdom all things that cause stumbling and those who do iniquity, + + +and will cast them into the furnace of fire. There will be weeping and gnashing of teeth. + + +Then the righteous will shine like the sun in the Kingdom of their Father. He who has ears to hear, let him hear. + +

+

Again, the Kingdom of Heaven is like treasure hidden in the field, which a man found and hid. In his joy, he goes and sells all that he has and buys that field. + +

+

Again, the Kingdom of Heaven is like a man who is a merchant seeking fine pearls, + + +who having found one pearl of great price, he went and sold all that he had and bought it. + +

+

Again, the Kingdom of Heaven is like a dragnet that was cast into the sea and gathered some fish of every kind, + + +which, when it was filled, fishermen drew up on the beach. They sat down and gathered the good into containers, but the bad they threw away. + + +So it will be in the end of the world.13:49 +or, end of the age. +The angels will come and separate the wicked from among the righteous, + + +and will cast them into the furnace of fire. There will be weeping and gnashing of teeth.” + +Jesus said to them, +Have you understood all these things?” + +

+

They answered him, “Yes, Lord.” + +

+

He said to them, +Therefore every scribe who has been made a disciple in the Kingdom of Heaven is like a man who is a householder, who brings out of his treasure new and old things.” + +

+

When Jesus had finished these parables, he departed from there. + +Coming into his own country, he taught them in their synagogue, so that they were astonished and said, “Where did this man get this wisdom and these mighty works? + +Isn’t this the carpenter’s son? Isn’t his mother called Mary, and his brothers James, Joses, Simon, and Judas?13:55 +or, Judah + +Aren’t all of his sisters with us? Where then did this man get all of these things?” + +They were offended by him. +

+

But Jesus said to them, +A prophet is not without honor, except in his own country and in his own house.” + +He didn’t do many mighty works there because of their unbelief. + +

+ + +

At that time, Herod the tetrarch heard the report concerning Jesus, + +and said to his servants, “This is John the Baptizer. He is risen from the dead. That is why these powers work in him.” + +For Herod had arrested John, bound him, and put him in prison for the sake of Herodias, his brother Philip’s wife. + +For John said to him, “It is not lawful for you to have her.” + +When he would have put him to death, he feared the multitude, because they counted him as a prophet. + +But when Herod’s birthday came, the daughter of Herodias danced among them and pleased Herod. + +Therefore he promised with an oath to give her whatever she should ask. + +She, being prompted by her mother, said, “Give me here on a platter the head of John the Baptizer.” + +

+

The king was grieved, but for the sake of his oaths and of those who sat at the table with him, he commanded it to be given, + +and he sent and beheaded John in the prison. + +His head was brought on a platter and given to the young lady; and she brought it to her mother. + +His disciples came, took the body, and buried it. Then they went and told Jesus. + +Now when Jesus heard this, he withdrew from there in a boat to a deserted place apart. When the multitudes heard it, they followed him on foot from the cities. + +

+

Jesus went out, and he saw a great multitude. He had compassion on them and healed their sick. + +When evening had come, his disciples came to him, saying, “This place is deserted, and the hour is already late. Send the multitudes away, that they may go into the villages, and buy themselves food.” + +

+

But Jesus said to them, +They don’t need to go away. You give them something to eat.” + +

+

They told him, “We only have here five loaves and two fish.” + +

+

He said, +Bring them here to me.” + +He commanded the multitudes to sit down on the grass; and he took the five loaves and the two fish, and looking up to heaven, he blessed, broke and gave the loaves to the disciples; and the disciples gave to the multitudes. + +They all ate and were filled. They took up twelve baskets full of that which remained left over from the broken pieces. + +Those who ate were about five thousand men, in addition to women and children. + +

+

Immediately Jesus made the disciples get into the boat and go ahead of him to the other side, while he sent the multitudes away. + +After he had sent the multitudes away, he went up into the mountain by himself to pray. When evening had come, he was there alone. + +But the boat was now in the middle of the sea, distressed by the waves, for the wind was contrary. + +In the fourth watch of the night,14:25 +The night was equally divided into four watches, so the fourth watch is approximately 3:00 a.m. to sunrise. + Jesus came to them, walking on the sea.14:25 +See Job 9:8 + +When the disciples saw him walking on the sea, they were troubled, saying, “It’s a ghost!” and they cried out for fear. + +But immediately Jesus spoke to them, saying, +“Cheer up! It is I! +14:27 +or, I AM! +Don’t be afraid.” + +

+

Peter answered him and said, “Lord, if it is you, command me to come to you on the waters.” + +

+

He said, +Come!” +

+

Peter stepped down from the boat and walked on the waters to come to Jesus. + +But when he saw that the wind was strong, he was afraid, and beginning to sink, he cried out, saying, “Lord, save me!” + +

+

Immediately Jesus stretched out his hand, took hold of him, and said to him, +You of little faith, why did you doubt?” + +When they got up into the boat, the wind ceased. + +Those who were in the boat came and worshiped him, saying, “You are truly the Son of God!” + +

+

When they had crossed over, they came to the land of Gennesaret. + +When the people of that place recognized him, they sent into all that surrounding region and brought to him all who were sick; + +and they begged him that they might just touch the fringe14:36 +or, tassel of his garment. As many as touched it were made whole. + +

+ + +

Then Pharisees and scribes came to Jesus from Jerusalem, saying, + +Why do your disciples disobey the tradition of the elders? For they don’t wash their hands when they eat bread.” + +

+

He answered them, +Why do you also disobey the commandment of God because of your tradition? + + +For God commanded, ‘Honor your father and your mother,’15:4 +Exodus 20:12; Deuteronomy 5:16 +and, ‘He who speaks evil of father or mother, let him be put to death.’15:4 +Exodus 21:17; Leviticus 20:9 + +But you say, ‘Whoever may tell his father or his mother, “Whatever help you might otherwise have gotten from me is a gift devoted to God,” + + +he shall not honor his father or mother.’ You have made the commandment of God void because of your tradition. + + +You hypocrites! Well did Isaiah prophesy of you, saying, + +

+These people draw near to me with their mouth, + +and honor me with their lips; + +but their heart is far from me. + + +And they worship me in vain, + +teaching as doctrine rules made by men.’”15:9 +Isaiah 29:13 + + + +

He summoned the multitude, and said to them, +“Hear, and understand. + + +That which enters into the mouth doesn’t defile the man; but that which proceeds out of the mouth, this defiles the man.” + +

+

Then the disciples came and said to him, “Do you know that the Pharisees were offended when they heard this saying?” + +

+

But he answered, +Every plant which my heavenly Father didn’t plant will be uprooted. + + +Leave them alone. They are blind guides of the blind. If the blind guide the blind, both will fall into a pit.” + +

+

Peter answered him, “Explain the parable to us.” + +

+

So Jesus said, +Do you also still not understand? + + +Don’t you understand that whatever goes into the mouth passes into the belly and then out of the body? + + +But the things which proceed out of the mouth come out of the heart, and they defile the man. + + +For out of the heart come evil thoughts, murders, adulteries, sexual sins, thefts, false testimony, and blasphemies. + + +These are the things which defile the man; but to eat with unwashed hands doesn’t defile the man.” + +

+

Jesus went out from there and withdrew into the region of Tyre and Sidon. + +Behold, a Canaanite woman came out from those borders and cried, saying, “Have mercy on me, Lord, you son of David! My daughter is severely possessed by a demon!” + +

+

But he answered her not a word. +

+

His disciples came and begged him, saying, “Send her away; for she cries after us.” + +

+

But he answered, +I wasn’t sent to anyone but the lost sheep of the house of Israel.” + +

+

But she came and worshiped him, saying, “Lord, help me.” + +

+

But he answered, +It is not appropriate to take the children’s bread and throw it to the dogs.” + +

+

But she said, “Yes, Lord, but even the dogs eat the crumbs which fall from their masterstable.” + +

+

Then Jesus answered her, +Woman, great is your faith! Be it done to you even as you desire.” And her daughter was healed from that hour. + +

+

Jesus departed from there and came near to the sea of Galilee; and he went up on the mountain and sat there. + +Great multitudes came to him, having with them the lame, blind, mute, maimed, and many others, and they put them down at his feet. He healed them, + +so that the multitude wondered when they saw the mute speaking, the injured healed, the lame walking, and the blind seeing—and they glorified the God of Israel. + +

+

Jesus summoned his disciples and said, +I have compassion on the multitude, because they have continued with me now three days and have nothing to eat. I don’t want to send them away fasting, or they might faint on the way.” + + +

+

The disciples said to him, “Where could we get so many loaves in a deserted place as to satisfy so great a multitude?” + +

+

Jesus said to them, +How many loaves do you have?” +

+

They said, “Seven, and a few small fish.” + +

+

He commanded the multitude to sit down on the ground; + +and he took the seven loaves and the fish. He gave thanks and broke them, and gave to the disciples, and the disciples to the multitudes. + +They all ate and were filled. They took up seven baskets full of the broken pieces that were left over. + +Those who ate were four thousand men, in addition to women and children. + +Then he sent away the multitudes, got into the boat, and came into the borders of Magdala. + +

+ + +

The Pharisees and Sadducees came, and testing him, asked him to show them a sign from heaven. + +But he answered them, +When it is evening, you say, ‘It will be fair weather, for the sky is red.’ + + +In the morning, ‘It will be foul weather today, for the sky is red and threatening.’ Hypocrites! You know how to discern the appearance of the sky, but you cant discern the signs of the times! + + +An evil and adulterous generation seeks after a sign, and there will be no sign given to it, except the sign of the prophet Jonah.” +

+

He left them and departed. + +The disciples came to the other side and had forgotten to take bread. + +Jesus said to them, +Take heed and beware of the yeast of the Pharisees and Sadducees.” + +

+

They reasoned among themselves, saying, “We brought no bread.” + +

+

Jesus, perceiving it, said, +Why do you reason among yourselves, you of little faith, because you have brought no bread? + + +Don’t you yet perceive or remember the five loaves for the five thousand, and how many baskets you took up, + + +or the seven loaves for the four thousand, and how many baskets you took up? + + +How is it that you don’t perceive that I didn’t speak to you concerning bread? But beware of the yeast of the Pharisees and Sadducees.” + + +

+

Then they understood that he didn’t tell them to beware of the yeast of bread, but of the teaching of the Pharisees and Sadducees. + +

+

Now when Jesus came into the parts of Caesarea Philippi, he asked his disciples, saying, +Who do men say that I, the Son of Man, am?” + +

+

They said, “Some say John the Baptizer, some, Elijah, and others, Jeremiah or one of the prophets.” + +

+

He said to them, +But who do you say that I am?” + +

+

Simon Peter answered, “You are the Christ, the Son of the living God.” + +

+

Jesus answered him, +Blessed are you, Simon Bar Jonah, for flesh and blood has not revealed this to you, but my Father who is in heaven. + + +I also tell you that you are Peter,16:18 +Peter’s name, Petros in Greek, is the word for a specific rock or stone. +and on this rock +16:18 +Greek, petra, a rock mass or bedrock. +I will build my assembly, and the gates of Hades16:18 +or, Hell +will not prevail against it. + + +I will give to you the keys of the Kingdom of Heaven, and whatever you bind on earth will have been bound in heaven; and whatever you release on earth will have been released in heaven.” + +Then he commanded the disciples that they should tell no one that he was Jesus the Christ. + +

+

From that time, Jesus began to show his disciples that he must go to Jerusalem and suffer many things from the elders, chief priests, and scribes, and be killed, and the third day be raised up. + +

+

Peter took him aside and began to rebuke him, saying, “Far be it from you, Lord! This will never be done to you.” + +

+

But he turned and said to Peter, +Get behind me, Satan! You are a stumbling block to me, for you are not setting your mind on the things of God, but on the things of men.” + +

+

Then Jesus said to his disciples, +If anyone desires to come after me, let him deny himself, take up his cross, and follow me. + + +For whoever desires to save his life will lose it, and whoever will lose his life for my sake will find it. + + +For what will it profit a man if he gains the whole world and forfeits his life? Or what will a man give in exchange for his life? + + +For the Son of Man will come in the glory of his Father with his angels, and then he will give to everyone according to his deeds. + + +Most certainly I tell you, there are some standing here who will in no way taste of death until they see the Son of Man coming in his Kingdom.” + + +

+ + +

After six days, Jesus took with him Peter, James, and John his brother, and brought them up into a high mountain by themselves. + +He was changed17:2 +or, transfigured before them. His face shone like the sun, and his garments became as white as the light. + +Behold, Moses and Elijah appeared to them talking with him. + +

+

Peter answered and said to Jesus, “Lord, it is good for us to be here. If you want, lets make three tents here: one for you, one for Moses, and one for Elijah.” + +

+

While he was still speaking, behold, a bright cloud overshadowed them. Behold, a voice came out of the cloud, saying, “This is my beloved Son, in whom I am well pleased. Listen to him.” + +

+

When the disciples heard it, they fell on their faces, and were very afraid. + +Jesus came and touched them and said, +Get up, and don’t be afraid.” + + +Lifting up their eyes, they saw no one, except Jesus alone. + +

+

As they were coming down from the mountain, Jesus commanded them, saying, +“Don’t tell anyone what you saw, until the Son of Man has risen from the dead.” + +

+

His disciples asked him, saying, “Then why do the scribes say that Elijah must come first?” + +

+

Jesus answered them, +Elijah indeed comes first, and will restore all things; + + +but I tell you that Elijah has come already, and they didn’t recognize him, but did to him whatever they wanted to. Even so the Son of Man will also suffer by them.” + +Then the disciples understood that he spoke to them of John the Baptizer. + +

+

When they came to the multitude, a man came to him, kneeling down to him and saying, + +Lord, have mercy on my son, for he is epileptic and suffers grievously; for he often falls into the fire, and often into the water. + +So I brought him to your disciples, and they could not cure him.” + +

+

Jesus answered, +“Faithless and perverse generation! How long will I be with you? How long will I bear with you? Bring him here to me.” + +Jesus rebuked the demon, and it went out of him, and the boy was cured from that hour. + +

+

Then the disciples came to Jesus privately, and said, “Why weren’t we able to cast it out?” + +

+

He said to them, +Because of your unbelief. For most certainly I tell you, if you have faith as a grain of mustard seed, you will tell this mountain, ‘Move from here to there,’ and it will move; and nothing will be impossible for you. + + +But this kind doesn’t go out except by prayer and fasting.” +17:21 +NU omits verse 21. + +

+

While they were staying in Galilee, Jesus said to them, +The Son of Man is about to be delivered up into the hands of men, + + +and they will kill him, and the third day he will be raised up.” + +

+

They were exceedingly sorry. + +

+

When they had come to Capernaum, those who collected the didrachma coins17:24 +A didrachma is a Greek silver coin worth 2 drachmas, about as much as 2 Roman denarii, or about 2 days’ wages. It was commonly used to pay the half-shekel temple tax, because 2 drachmas were worth one half shekel of silver. A shekel is about 10 grams or about 0.35 ounces. came to Peter, and said, “Doesn’t your teacher pay the didrachma?” + +He said, “Yes.” +

+

When he came into the house, Jesus anticipated him, saying, +What do you think, Simon? From whom do the kings of the earth receive toll or tribute? From their children, or from strangers?” + +

+

Peter said to him, “From strangers.” +

+

Jesus said to him, +Therefore the children are exempt. + + +But, lest we cause them to stumble, go to the sea, cast a hook, and take up the first fish that comes up. When you have opened its mouth, you will find a stater coin.17:27 +A stater is a silver coin equivalent to four Attic or two Alexandrian drachmas, or a Jewish shekel: just exactly enough to cover the half-shekel temple tax for two people. A shekel is about 10 grams or about 0.35 ounces, usually in the form of a silver coin. +Take that, and give it to them for me and you.” + +

+ + +

In that hour the disciples came to Jesus, saying, “Who then is greatest in the Kingdom of Heaven?” + +

+

Jesus called a little child to himself, and set him in the middle of them + +and said, +“Most certainly I tell you, unless you turn and become as little children, you will in no way enter into the Kingdom of Heaven. + + +Whoever therefore humbles himself as this little child is the greatest in the Kingdom of Heaven. + + +Whoever receives one such little child in my name receives me, + + +but whoever causes one of these little ones who believe in me to stumble, it would be better for him if a huge millstone were hung around his neck and that he were sunk in the depths of the sea. + + +

+

Woe to the world because of occasions of stumbling! For it must be that the occasions come, but woe to that person through whom the occasion comes! + + +If your hand or your foot causes you to stumble, cut it off and cast it from you. It is better for you to enter into life maimed or crippled, rather than having two hands or two feet to be cast into the eternal fire. + + +If your eye causes you to stumble, pluck it out and cast it from you. It is better for you to enter into life with one eye, rather than having two eyes to be cast into the Gehenna18:9 +or, Hell +of fire. + + +See that you don’t despise one of these little ones, for I tell you that in heaven their angels always see the face of my Father who is in heaven. + + +For the Son of Man came to save that which was lost.18:11 +NU omits verse 11. + +

+

What do you think? If a man has one hundred sheep, and one of them goes astray, doesn’t he leave the ninety-nine, go to the mountains, and seek that which has gone astray? + + +If he finds it, most certainly I tell you, he rejoices over it more than over the ninety-nine which have not gone astray. + + +Even so it is not the will of your Father who is in heaven that one of these little ones should perish. + +

+

If your brother sins against you, go, show him his fault between you and him alone. If he listens to you, you have gained back your brother. + + +But if he doesn’t listen, take one or two more with you, that at the mouth of two or three witnesses every word may be established.18:16 +Deuteronomy 19:15 + +If he refuses to listen to them, tell it to the assembly. If he refuses to hear the assembly also, let him be to you as a Gentile or a tax collector. + + +Most certainly I tell you, whatever things you bind on earth will have been bound in heaven, and whatever things you release on earth will have been released in heaven. + + +Again, assuredly I tell you, that if two of you will agree on earth concerning anything that they will ask, it will be done for them by my Father who is in heaven. + + +For where two or three are gathered together in my name, there I am in the middle of them.” + +

+

Then Peter came and said to him, “Lord, how often shall my brother sin against me, and I forgive him? Until seven times?” + +

+

Jesus said to him, +I don’t tell you until seven times, but, until seventy times seven. + + +Therefore the Kingdom of Heaven is like a certain king who wanted to settle accounts with his servants. + + +When he had begun to settle, one was brought to him who owed him ten thousand talents.18:24 +Ten thousand talents (about 300 metric tons of silver) represents an extremely large sum of money, equivalent to about 60,000,000 denarii, where one denarius was typical of one day’s wages for agricultural labor. + +But because he couldn’t pay, his lord commanded him to be sold, with his wife, his children, and all that he had, and payment to be made. + + +The servant therefore fell down and knelt before him, saying, ‘Lord, have patience with me, and I will repay you all!’ + + +The lord of that servant, being moved with compassion, released him and forgave him the debt. + +

+

But that servant went out and found one of his fellow servants who owed him one hundred denarii,18:28 +100 denarii was about one sixtieth of a talent, or about 500 grams (1.1 pounds) of silver. +and he grabbed him and took him by the throat, saying, ‘Pay me what you owe!’ + +

+

So his fellow servant fell down at his feet and begged him, saying, ‘Have patience with me, and I will repay you!’ + + +He would not, but went and cast him into prison until he should pay back that which was due. + + +So when his fellow servants saw what was done, they were exceedingly sorry, and came and told their lord all that was done. + + +Then his lord called him in and said to him, ‘You wicked servant! I forgave you all that debt because you begged me. + + +Shouldn’t you also have had mercy on your fellow servant, even as I had mercy on you?’ + + +His lord was angry, and delivered him to the tormentors until he should pay all that was due to him. + + +So my heavenly Father will also do to you, if you don’t each forgive your brother from your hearts for his misdeeds.” + +

+ + +

When Jesus had finished these words, he departed from Galilee and came into the borders of Judea beyond the Jordan. + +Great multitudes followed him, and he healed them there. + +

+

Pharisees came to him, testing him and saying, “Is it lawful for a man to divorce his wife for any reason?” + +

+

He answered, +“Haven’t you read that he who made them from the beginning made them male and female,19:4 +Genesis 1:27 + +and said, ‘For this cause a man shall leave his father and mother, and shall be joined to his wife; and the two shall become one flesh’?19:5 +Genesis 2:24 + +So that they are no more two, but one flesh. What therefore God has joined together, don’t let man tear apart.” + +

+

They asked him, “Why then did Moses command us to give her a certificate of divorce and divorce her?” + +

+

He said to them, +Moses, because of the hardness of your hearts, allowed you to divorce your wives, but from the beginning it has not been so. + + +I tell you that whoever divorces his wife, except for sexual immorality, and marries another, commits adultery; and he who marries her when she is divorced commits adultery.” + +

+

His disciples said to him, “If this is the case of the man with his wife, it is not expedient to marry.” + +

+

But he said to them, +Not all men can receive this saying, but those to whom it is given. + + +For there are eunuchs who were born that way from their mother’s womb, and there are eunuchs who were made eunuchs by men; and there are eunuchs who made themselves eunuchs for the Kingdom of Heaven’s sake. He who is able to receive it, let him receive it.” + +

+

Then little children were brought to him that he should lay his hands on them and pray; and the disciples rebuked them. + +But Jesus said, +“Allow the little children, and don’t forbid them to come to me; for the Kingdom of Heaven belongs to ones like these.” + +He laid his hands on them, and departed from there. + +

+

Behold, one came to him and said, “Good teacher, what good thing shall I do, that I may have eternal life?” + +

+

He said to him, +Why do you call me good?19:17 +So MT and TR. NU reads “Why do you ask me about what is good?” +No one is good but one, that is, God. But if you want to enter into life, keep the commandments.” + + +

+

He said to him, “Which ones?” +

+

Jesus said, +“‘You shall not murder.’ ‘You shall not commit adultery.’ ‘You shall not steal.’ ‘You shall not offer false testimony.’ + + +Honor your father and your mother.’19:19 +Exodus 20:12-16; Deuteronomy 5:16-20 +And, ‘You shall love your neighbor as yourself.’”19:19 +Leviticus 19:18 + +

+

The young man said to him, “All these things I have observed from my youth. What do I still lack?” + +

+

Jesus said to him, +If you want to be perfect, go, sell what you have, and give to the poor, and you will have treasure in heaven; and come, follow me.” + +But when the young man heard this, he went away sad, for he was one who had great possessions. + +

+

Jesus said to his disciples, +“Most certainly I say to you, a rich man will enter into the Kingdom of Heaven with difficulty. + + +Again I tell you, it is easier for a camel to go through a needle’s eye than for a rich man to enter into God’s Kingdom.” + +

+

When the disciples heard it, they were exceedingly astonished, saying, “Who then can be saved?” + +

+

Looking at them, Jesus said, +With men this is impossible, but with God all things are possible.” + +

+

Then Peter answered, “Behold, we have left everything and followed you. What then will we have?” + +

+

Jesus said to them, +“Most certainly I tell you that you who have followed me, in the regeneration when the Son of Man will sit on the throne of his glory, you also will sit on twelve thrones, judging the twelve tribes of Israel. + + +Everyone who has left houses, or brothers, or sisters, or father, or mother, or wife, or children, or lands, for my name’s sake, will receive one hundred times, and will inherit eternal life. + + +But many will be last who are first, and first who are last. + + +

+ + +

For the Kingdom of Heaven is like a man who was the master of a household, who went out early in the morning to hire laborers for his vineyard. + + +When he had agreed with the laborers for a denarius20:2 +A denarius is a silver Roman coin worth 1/25th of a Roman aureus. This was a common wage for a day of farm labor. +a day, he sent them into his vineyard. + + +He went out about the third hour,20:3 +Time was measured from sunrise to sunset, so the third hour would be about 9:00 a.m. +and saw others standing idle in the marketplace. + + +He said to them, ‘You also go into the vineyard, and whatever is right I will give you.’ So they went their way. + + +Again he went out about the sixth and the ninth hour,20:5 +noon and 3:00 p.m. +and did likewise. + + +About the eleventh hour20:6 +5:00 p.m. +he went out and found others standing idle. He said to them, ‘Why do you stand here all day idle?’ + + +

+

They said to him, ‘Because no one has hired us.’ +

+

He said to them, ‘You also go into the vineyard, and you will receive whatever is right.’ + + +

+

When evening had come, the lord of the vineyard said to his manager, ‘Call the laborers and pay them their wages, beginning from the last to the first.’ + +When those who were hired at about the eleventh hour came, they each received a denarius. + + +When the first came, they supposed that they would receive more; and they likewise each received a denarius. + + +When they received it, they murmured against the master of the household, + + +saying, ‘These last have spent one hour, and you have made them equal to us who have borne the burden of the day and the scorching heat!’ + + +

+

But he answered one of them, ‘Friend, I am doing you no wrong. Didn’t you agree with me for a denarius? + + +Take that which is yours, and go your way. It is my desire to give to this last just as much as to you. + + +Isn’t it lawful for me to do what I want to with what I own? Or is your eye evil, because I am good?’ + + +So the last will be first, and the first last. For many are called, but few are chosen.” + +

+

As Jesus was going up to Jerusalem, he took the twelve disciples aside, and on the way he said to them, + +Behold, we are going up to Jerusalem, and the Son of Man will be delivered to the chief priests and scribes, and they will condemn him to death, + + +and will hand him over to the Gentiles to mock, to scourge, and to crucify; and the third day he will be raised up.” + +

+

Then the mother of the sons of Zebedee came to him with her sons, kneeling and asking a certain thing of him. + +He said to her, +What do you want?” +

+

She said to him, “Command that these, my two sons, may sit, one on your right hand and one on your left hand, in your Kingdom.” + +

+

But Jesus answered, +You don’t know what you are asking. Are you able to drink the cup that I am about to drink, and be baptized with the baptism that I am baptized with?” +

+

They said to him, “We are able.” + +

+

He said to them, +You will indeed drink my cup, and be baptized with the baptism that I am baptized with; but to sit on my right hand and on my left hand is not mine to give, but it is for whom it has been prepared by my Father.” + +

+

When the ten heard it, they were indignant with the two brothers. + +

+

But Jesus summoned them, and said, +You know that the rulers of the nations lord it over them, and their great ones exercise authority over them. + + +It shall not be so among you; but whoever desires to become great among you shall be20:26 +TR reads “let him be” instead of “shall be” + +your servant. + + +Whoever desires to be first among you shall be your bondservant, + + +even as the Son of Man came not to be served, but to serve, and to give his life as a ransom for many.” + +

+

As they went out from Jericho, a great multitude followed him. + +Behold, two blind men sitting by the road, when they heard that Jesus was passing by, cried out, “Lord, have mercy on us, you son of David!” + +The multitude rebuked them, telling them that they should be quiet, but they cried out even more, “Lord, have mercy on us, you son of David!” + +

+

Jesus stood still and called them, and asked, +What do you want me to do for you?” + +

+

They told him, “Lord, that our eyes may be opened.” + +

+

Jesus, being moved with compassion, touched their eyes; and immediately their eyes received their sight, and they followed him. + +

+ + +

When they came near to Jerusalem and came to Bethsphage,21:1 +TR & NU read “Bethphage” instead of “Bethsphage” to the Mount of Olives, then Jesus sent two disciples, + +saying to them, +Go into the village that is opposite you, and immediately you will find a donkey tied, and a colt with her. Untie them and bring them to me. + + +If anyone says anything to you, you shall say, ‘The Lord needs them,’ and immediately he will send them.” + +

+

All this was done that it might be fulfilled which was spoken through the prophet, saying, + +

+Tell the daughter of Zion, + +behold, your King comes to you, + +humble, and riding on a donkey, + +on a colt, the foal of a donkey.”21:5 +Zechariah 9:9 + + +

The disciples went and did just as Jesus commanded them, + +and brought the donkey and the colt and laid their clothes on them; and he sat on them. + +A very great multitude spread their clothes on the road. Others cut branches from the trees and spread them on the road. + +The multitudes who went in front of him, and those who followed, kept shouting, “Hosanna21:9 +“Hosanna” means “save us” or “help us, we pray”. to the son of David! Blessed is he who comes in the name of the Lord! Hosanna in the highest!” +21:9 +Psalms 118:26 + +

+

When he had come into Jerusalem, all the city was stirred up, saying, “Who is this?” + +

+

The multitudes said, “This is the prophet, Jesus, from Nazareth of Galilee.” + +

+

Jesus entered into the temple of God and drove out all of those who sold and bought in the temple, and overthrew the money changerstables and the seats of those who sold the doves. + +He said to them, +It is written, ‘My house shall be called a house of prayer,’21:13 +Isaiah 56:7 +but you have made it a den of robbers!”21:13 +Jeremiah 7:11 + +

+

The lame and the blind came to him in the temple, and he healed them. + +But when the chief priests and the scribes saw the wonderful things that he did, and the children who were crying in the temple and saying, “Hosanna to the son of David!” they were indignant, + +and said to him, “Do you hear what these are saying?” +

+

Jesus said to them, +Yes. Did you never read, ‘Out of the mouth of children and nursing babies, you have perfected praise’?”21:16 +Psalms 8:2 + +

+

He left them and went out of the city to Bethany, and camped there. + +

+

Now in the morning, as he returned to the city, he was hungry. + +Seeing a fig tree by the road, he came to it and found nothing on it but leaves. He said to it, +Let there be no fruit from you forever!” + +

+

Immediately the fig tree withered away. + +

+

When the disciples saw it, they marveled, saying, “How did the fig tree immediately wither away?” + +

+

Jesus answered them, +“Most certainly I tell you, if you have faith and don’t doubt, you will not only do what was done to the fig tree, but even if you told this mountain, ‘Be taken up and cast into the sea,’ it would be done. + + +All things, whatever you ask in prayer, believing, you will receive.” + +

+

When he had come into the temple, the chief priests and the elders of the people came to him as he was teaching, and said, “By what authority do you do these things? Who gave you this authority?” + +

+

Jesus answered them, +I also will ask you one question, which if you tell me, I likewise will tell you by what authority I do these things. + + +The baptism of John, where was it from? From heaven or from men?” + +

+

They reasoned with themselves, saying, “If we say, ‘From heaven,’ he will ask us, ‘Why then did you not believe him?’ + +But if we say, ‘From men,’ we fear the multitude, for all hold John as a prophet.” + +They answered Jesus, and said, “We don’t know.” +

+

He also said to them, +Neither will I tell you by what authority I do these things. + + +But what do you think? A man had two sons, and he came to the first, and said, ‘Son, go work today in my vineyard.’ + + +He answered, ‘I will not,’ but afterward he changed his mind, and went. + + +He came to the second, and said the same thing. He answered, ‘I’m going, sir,’ but he didn’t go. + + +Which of the two did the will of his father?” +

+

They said to him, “The first.” +

+

Jesus said to them, +Most certainly I tell you that the tax collectors and the prostitutes are entering into God’s Kingdom before you. + + +For John came to you in the way of righteousness, and you didn’t believe him; but the tax collectors and the prostitutes believed him. When you saw it, you didn’t even repent afterward, that you might believe him. + + +

+

“Hear another parable. There was a man who was a master of a household who planted a vineyard, set a hedge about it, dug a wine press in it, built a tower, leased it out to farmers, and went into another country. + + +When the season for the fruit came near, he sent his servants to the farmers to receive his fruit. + + +The farmers took his servants, beat one, killed another, and stoned another. + + +Again, he sent other servants more than the first; and they treated them the same way. + + +But afterward he sent to them his son, saying, ‘They will respect my son.’ + + +But the farmers, when they saw the son, said among themselves, ‘This is the heir. Come, lets kill him and seize his inheritance.’ + + +So they took him and threw him out of the vineyard, then killed him. + + +When therefore the lord of the vineyard comes, what will he do to those farmers?” + +

+

They told him, “He will miserably destroy those miserable men, and will lease out the vineyard to other farmers who will give him the fruit in its season.” + +

+

Jesus said to them, +Did you never read in the Scriptures, + +

+The stone which the builders rejected + +was made the head of the corner. + +This was from the Lord. + +It is marvelous in our eyes’?21:42 +Psalms 118:22-23 + + +

Therefore I tell you, God’s Kingdom will be taken away from you and will be given to a nation producing its fruit. + + +He who falls on this stone will be broken to pieces, but on whomever it will fall, it will scatter him as dust.” + +

+

When the chief priests and the Pharisees heard his parables, they perceived that he spoke about them. + +When they sought to seize him, they feared the multitudes, because they considered him to be a prophet. + +

+ + +

Jesus answered and spoke to them again in parables, saying, + +The Kingdom of Heaven is like a certain king, who made a wedding feast for his son, + + +and sent out his servants to call those who were invited to the wedding feast, but they would not come. + + +Again he sent out other servants, saying, ‘Tell those who are invited, “Behold, I have prepared my dinner. My cattle and my fatlings are killed, and all things are ready. Come to the wedding feast!”’ + + +But they made light of it, and went their ways, one to his own farm, another to his merchandise; + + +and the rest grabbed his servants, treated them shamefully, and killed them. + + +When the king heard that, he was angry, and sent his armies, destroyed those murderers, and burned their city. + +

+

Then he said to his servants, ‘The wedding is ready, but those who were invited weren’t worthy. + + +Go therefore to the intersections of the highways, and as many as you may find, invite to the wedding feast.’ + + +Those servants went out into the highways and gathered together as many as they found, both bad and good. The wedding was filled with guests. + + +

+

But when the king came in to see the guests, he saw there a man who didn’t have on wedding clothing, + + +and he said to him, ‘Friend, how did you come in here not wearing wedding clothing?’ He was speechless. + + +Then the king said to the servants, ‘Bind him hand and foot, take him away, and throw him into the outer darkness. That is where the weeping and grinding of teeth will be.’ + + +For many are called, but few chosen.” + +

+

Then the Pharisees went and took counsel how they might entrap him in his talk. + +They sent their disciples to him, along with the Herodians, saying, “Teacher, we know that you are honest, and teach the way of God in truth, no matter whom you teach; for you aren’t partial to anyone. + +Tell us therefore, what do you think? Is it lawful to pay taxes to Caesar, or not?” + +

+

But Jesus perceived their wickedness, and said, +Why do you test me, you hypocrites? + + +Show me the tax money.” +

+

They brought to him a denarius. + +

+

He asked them, +Whose is this image and inscription?” + +

+

They said to him, “Caesar’s.” +

+

Then he said to them, +Give therefore to Caesar the things that are Caesar’s, and to God the things that are God’s.” + +

+

When they heard it, they marveled, and left him and went away. + +

+

On that day Sadducees (those who say that there is no resurrection) came to him. They asked him, + +saying, “Teacher, Moses said, ‘If a man dies, having no children, his brother shall marry his wife and raise up offspring22:24 +or, seed for his brother.’ + +Now there were with us seven brothers. The first married and died, and having no offspring left his wife to his brother. + +In the same way, the second also, and the third, to the seventh. + +After them all, the woman died. + +In the resurrection therefore, whose wife will she be of the seven? For they all had her.” + +

+

But Jesus answered them, +You are mistaken, not knowing the Scriptures, nor the power of God. + + +For in the resurrection they neither marry nor are given in marriage, but are like God’s angels in heaven. + + +But concerning the resurrection of the dead, haven’t you read that which was spoken to you by God, saying, + + +I am the God of Abraham, and the God of Isaac, and the God of Jacob’?22:32 +Exodus 3:6 +God is not the God of the dead, but of the living.” + +

+

When the multitudes heard it, they were astonished at his teaching. + +

+

But the Pharisees, when they heard that he had silenced the Sadducees, gathered themselves together. + +One of them, a lawyer, asked him a question, testing him. + +Teacher, which is the greatest commandment in the law?” + +

+

Jesus said to him, +“‘You shall love the Lord your God with all your heart, with all your soul, and with all your mind.’22:37 +Deuteronomy 6:5 + + +This is the first and great commandment. + + +A second likewise is this, ‘You shall love your neighbor as yourself.’22:39 +Leviticus 19:18 + +The whole law and the prophets depend on these two commandments.” + + +

+

Now while the Pharisees were gathered together, Jesus asked them a question, + +saying, +What do you think of the Christ? Whose son is he?” + +

+

They said to him, “Of David.” + +

+

He said to them, +How then does David in the Spirit call him Lord, saying, + +

+The Lord said to my Lord, + +sit on my right hand, + +until I make your enemies a footstool for your feet’?22:44 +Psalms 110:1 + + +

If then David calls him Lord, how is he his son?” + +

+

No one was able to answer him a word, neither did any man dare ask him any more questions from that day forward. + +

+ + +

Then Jesus spoke to the multitudes and to his disciples, + +saying, +The scribes and the Pharisees sit on Mosesseat. + + +All things therefore whatever they tell you to observe, observe and do, but don’t do their works; for they say, and don’t do. + + +For they bind heavy burdens that are grievous to be borne, and lay them on men’s shoulders; but they themselves will not lift a finger to help them. + + +But they do all their works to be seen by men. They make their phylacteries23:5 +phylacteries (tefillin in Hebrew) are small leather pouches that some Jewish men wear on their forehead and arm in prayer. They are used to carry a small scroll with some Scripture in it. See Deuteronomy 6:8. +broad and enlarge the fringes23:5 +or, tassels +of their garments, + + +and love the place of honor at feasts, the best seats in the synagogues, + + +the salutations in the marketplaces, and to be calledRabbi, Rabbi23:7 +NU omits the second “Rabbi”. + +by men. + + +But you are not to be calledRabbi’, for one is your teacher, the Christ, and all of you are brothers. + + +Call no man on the earth your father, for one is your Father, he who is in heaven. + + +Neither be called masters, for one is your master, the Christ. + + +But he who is greatest among you will be your servant. + + +Whoever exalts himself will be humbled, and whoever humbles himself will be exalted. + +

+

Woe to you, scribes and Pharisees, hypocrites! For you devour widows’ houses, and as a pretense you make long prayers. Therefore you will receive greater condemnation. + +

+

“But woe to you, scribes and Pharisees, hypocrites! Because you shut up the Kingdom of Heaven against men; for you don’t enter in yourselves, neither do you allow those who are entering in to enter.23:14 +Some Greek texts reverse the order of verses 13 and 14, and some omit verse 13, numbering verse 14 as 13. NU omits verse 14. + +Woe to you, scribes and Pharisees, hypocrites! For you travel around by sea and land to make one proselyte; and when he becomes one, you make him twice as much a son of Gehenna23:15 +or, Hell +as yourselves. + + +

+

Woe to you, you blind guides, who say, ‘Whoever swears by the temple, it is nothing; but whoever swears by the gold of the temple, he is obligated.’ + + +You blind fools! For which is greater, the gold or the temple that sanctifies the gold? + + +And, ‘Whoever swears by the altar, it is nothing; but whoever swears by the gift that is on it, he is obligated.’ + + +You blind fools! For which is greater, the gift, or the altar that sanctifies the gift? + + +He therefore who swears by the altar, swears by it and by everything on it. + + +He who swears by the temple, swears by it and by him who has been living23:21 +NU reads “lives” +in it. + + +He who swears by heaven, swears by the throne of God and by him who sits on it. + +

+

Woe to you, scribes and Pharisees, hypocrites! For you tithe mint, dill, and cumin,23:23 +cumin is an aromatic seed from Cuminum cyminum, resembling caraway in flavor and appearance. It is used as a spice. +and have left undone the weightier matters of the law: justice, mercy, and faith. But you ought to have done these, and not to have left the other undone. + + +You blind guides, who strain out a gnat, and swallow a camel! + + +

+

Woe to you, scribes and Pharisees, hypocrites! For you clean the outside of the cup and of the platter, but within they are full of extortion and unrighteousness.23:25 +TR reads “self-indulgence” instead of “unrighteousness” + +You blind Pharisee, first clean the inside of the cup and of the platter, that its outside may become clean also. + +

+

Woe to you, scribes and Pharisees, hypocrites! For you are like whitened tombs, which outwardly appear beautiful, but inwardly are full of dead men’s bones and of all uncleanness. + + +Even so you also outwardly appear righteous to men, but inwardly you are full of hypocrisy and iniquity. + +

+

Woe to you, scribes and Pharisees, hypocrites! For you build the tombs of the prophets and decorate the tombs of the righteous, + + +and say, ‘If we had lived in the days of our fathers, we wouldn’t have been partakers with them in the blood of the prophets.’ + + +Therefore you testify to yourselves that you are children of those who killed the prophets. + + +Fill up, then, the measure of your fathers. + + +You serpents, you offspring of vipers, how will you escape the judgment of Gehenna?23:33 +or, Hell + +Therefore, behold, I send to you prophets, wise men, and scribes. Some of them you will kill and crucify; and some of them you will scourge in your synagogues and persecute from city to city, + + +that on you may come all the righteous blood shed on the earth, from the blood of righteous Abel to the blood of Zachariah son of Barachiah, whom you killed between the sanctuary and the altar. + + +Most certainly I tell you, all these things will come upon this generation. + +

+

Jerusalem, Jerusalem, who kills the prophets and stones those who are sent to her! How often I would have gathered your children together, even as a hen gathers her chicks under her wings, and you would not! + + +Behold, your house is left to you desolate. + + +For I tell you, you will not see me from now on, until you say, ‘Blessed is he who comes in the name of the Lord!’”23:39 +Psalms 118:26 + + +

+ + +

Jesus went out from the temple, and was going on his way. His disciples came to him to show him the buildings of the temple. + +But he answered them, +You see all of these things, don’t you? Most certainly I tell you, there will not be left here one stone on another, that will not be thrown down.” + +

+

As he sat on the Mount of Olives, the disciples came to him privately, saying, “Tell us, when will these things be? What is the sign of your coming, and of the end of the age?” + +

+

Jesus answered them, +Be careful that no one leads you astray. + + +For many will come in my name, saying, ‘I am the Christ,’ and will lead many astray. + + +You will hear of wars and rumors of wars. See that you aren’t troubled, for all this must happen, but the end is not yet. + + +For nation will rise against nation, and kingdom against kingdom; and there will be famines, plagues, and earthquakes in various places. + + +But all these things are the beginning of birth pains. + + +

+

Then they will deliver you up to oppression and will kill you. You will be hated by all of the nations for my name’s sake. + + +Then many will stumble, and will deliver up one another, and will hate one another. + + +Many false prophets will arise and will lead many astray. + + +Because iniquity will be multiplied, the love of many will grow cold. + + +But he who endures to the end will be saved. + + +This Good News of the Kingdom will be preached in the whole world for a testimony to all the nations, and then the end will come. + +

+

When, therefore, you see the abomination of desolation,24:15 +Daniel 9:27; 11:31; 12:11 +which was spoken of through Daniel the prophet, standing in the holy place (let the reader understand), + + +then let those who are in Judea flee to the mountains. + + +Let him who is on the housetop not go down to take out the things that are in his house. + + +Let him who is in the field not return back to get his clothes. + + +But woe to those who are with child and to nursing mothers in those days! + + +Pray that your flight will not be in the winter nor on a Sabbath, + + +for then there will be great suffering,24:21 +or, oppression +such as has not been from the beginning of the world until now, no, nor ever will be. + + +Unless those days had been shortened, no flesh would have been saved. But for the sake of the chosen ones, those days will be shortened. + + +

+

Then if any man tells you, ‘Behold, here is the Christ!’ or, ‘There!’ don’t believe it. + + +For false christs and false prophets will arise, and they will show great signs and wonders, so as to lead astray, if possible, even the chosen ones. + +

+

Behold, I have told you beforehand. + + +

+

If therefore they tell you, ‘Behold, he is in the wilderness,’ don’t go out; orBehold, he is in the inner rooms,’ don’t believe it. + + +For as the lightning flashes from the east, and is seen even to the west, so will the coming of the Son of Man be. + + +For wherever the carcass is, that is where the vultures24:28 +or, eagles +gather together. + + +

+

But immediately after the suffering24:29 +or, oppression +of those days, the sun will be darkened, the moon will not give its light, the stars will fall from the sky, and the powers of the heavens will be shaken;24:29 +Isaiah 13:10; 34:4 + + +and then the sign of the Son of Man will appear in the sky. Then all the tribes of the earth will mourn, and they will see the Son of Man coming on the clouds of the sky with power and great glory. + + +He will send out his angels with a great sound of a trumpet, and they will gather together his chosen ones from the four winds, from one end of the sky to the other. + +

+

Now from the fig tree learn this parable: When its branch has now become tender and produces its leaves, you know that the summer is near. + + +Even so you also, when you see all these things, know that he is near, even at the doors. + + +Most certainly I tell you, this generation24:34 +The word for “generation” (genea) can also be translated as “race.” +will not pass away until all these things are accomplished. + + +Heaven and earth will pass away, but my words will not pass away. + + +

+

But no one knows of that day and hour, not even the angels of heaven,24:36 +NU adds “nor the son” +but my Father only. + +As the days of Noah were, so will the coming of the Son of Man be. + + +For as in those days which were before the flood they were eating and drinking, marrying and giving in marriage, until the day that Noah entered into the ship, + + +and they didn’t know until the flood came and took them all away, so will the coming of the Son of Man be. + + +Then two men will be in the field: one will be taken and one will be left. + + +Two women will be grinding at the mill: one will be taken and one will be left. + + +Watch therefore, for you don’t know in what hour your Lord comes. + + +But know this, that if the master of the house had known in what watch of the night the thief was coming, he would have watched, and would not have allowed his house to be broken into. + + +Therefore also be ready, for in an hour that you don’t expect, the Son of Man will come. + +

+

Who then is the faithful and wise servant, whom his lord has set over his household, to give them their food in due season? + + +Blessed is that servant whom his lord finds doing so when he comes. + + +Most certainly I tell you that he will set him over all that he has. + + +But if that evil servant should say in his heart, ‘My lord is delaying his coming,’ + + +and begins to beat his fellow servants, and eat and drink with the drunkards, + + +the lord of that servant will come in a day when he doesn’t expect it and in an hour when he doesn’t know it, + + +and will cut him in pieces and appoint his portion with the hypocrites. That is where the weeping and grinding of teeth will be. + + +

+ + +

Then the Kingdom of Heaven will be like ten virgins who took their lamps and went out to meet the bridegroom. + + +Five of them were foolish, and five were wise. + + +Those who were foolish, when they took their lamps, took no oil with them, + + +but the wise took oil in their vessels with their lamps. + + +Now while the bridegroom delayed, they all slumbered and slept. + + +But at midnight there was a cry, ‘Behold! The bridegroom is coming! Come out to meet him!’ + + +Then all those virgins arose, and trimmed their lamps.25:7 +The end of the wick of an oil lamp needs to be cut off periodically to avoid having it become clogged with carbon deposits. The wick height is also adjusted so that the flame burns evenly and gives good light without producing a lot of smoke. + +The foolish said to the wise, ‘Give us some of your oil, for our lamps are going out.’ + + +But the wise answered, saying, ‘What if there isn’t enough for us and you? You go rather to those who sell, and buy for yourselves.’ + + +While they went away to buy, the bridegroom came, and those who were ready went in with him to the wedding feast, and the door was shut. + + +Afterward the other virgins also came, saying, ‘Lord, Lord, open to us.’ + + +But he answered, ‘Most certainly I tell you, I don’t know you.’ + + +Watch therefore, for you don’t know the day nor the hour in which the Son of Man is coming. + +

+

For it is like a man going into another country, who called his own servants and entrusted his goods to them. + + +To one he gave five talents,25:15 +A talent is about 30 kilograms or 66 pounds (usually used to weigh silver unless otherwise specified) +to another two, to another one, to each according to his own ability. Then he went on his journey. + + +Immediately he who received the five talents went and traded with them, and made another five talents. + + +In the same way, he also who got the two gained another two. + + +But he who received the one talent went away and dug in the earth and hid his lords money. + +

+

Now after a long time the lord of those servants came, and settled accounts with them. + + +He who received the five talents came and brought another five talents, saying, ‘Lord, you delivered to me five talents. Behold, I have gained another five talents in addition to them.’ + +

+

His lord said to him, ‘Well done, good and faithful servant. You have been faithful over a few things, I will set you over many things. Enter into the joy of your lord.’ + +

+

He also who got the two talents came and said, ‘Lord, you delivered to me two talents. Behold, I have gained another two talents in addition to them.’ + + +

+

His lord said to him, ‘Well done, good and faithful servant. You have been faithful over a few things. I will set you over many things. Enter into the joy of your lord.’ + +

+

He also who had received the one talent came and said, ‘Lord, I knew you that you are a hard man, reaping where you didn’t sow, and gathering where you didn’t scatter. + + +I was afraid, and went away and hid your talent in the earth. Behold, you have what is yours.’ + +

+

But his lord answered him, ‘You wicked and slothful servant. You knew that I reap where I didn’t sow, and gather where I didn’t scatter. + + +You ought therefore to have deposited my money with the bankers, and at my coming I should have received back my own with interest. + + +Take away therefore the talent from him and give it to him who has the ten talents. + + +For to everyone who has will be given, and he will have abundance, but from him who doesn’t have, even that which he has will be taken away. + + +Throw out the unprofitable servant into the outer darkness, where there will be weeping and gnashing of teeth.’ + +

+

But when the Son of Man comes in his glory, and all the holy angels with him, then he will sit on the throne of his glory. + + +Before him all the nations will be gathered, and he will separate them one from another, as a shepherd separates the sheep from the goats. + + +He will set the sheep on his right hand, but the goats on the left. + + +Then the King will tell those on his right hand, ‘Come, blessed of my Father, inherit the Kingdom prepared for you from the foundation of the world; + + +for I was hungry and you gave me food to eat. I was thirsty and you gave me drink. I was a stranger and you took me in. + + +I was naked and you clothed me. I was sick and you visited me. I was in prison and you came to me.’ + +

+

Then the righteous will answer him, saying, ‘Lord, when did we see you hungry and feed you, or thirsty and give you a drink? + + +When did we see you as a stranger and take you in, or naked and clothe you? + + +When did we see you sick or in prison and come to you?’ + +

+

The King will answer them, ‘Most certainly I tell you, because you did it to one of the least of these my brothers,25:40 +The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.” +you did it to me.’ + + +Then he will say also to those on the left hand, ‘Depart from me, you cursed, into the eternal fire which is prepared for the devil and his angels; + + +for I was hungry, and you didn’t give me food to eat; I was thirsty, and you gave me no drink; + + +I was a stranger, and you didn’t take me in; naked, and you didn’t clothe me; sick, and in prison, and you didn’t visit me.’ + +

+

Then they will also answer, saying, ‘Lord, when did we see you hungry, or thirsty, or a stranger, or naked, or sick, or in prison, and didn’t help you?’ + +

+

Then he will answer them, saying, ‘Most certainly I tell you, because you didn’t do it to one of the least of these, you didn’t do it to me.’ + + +These will go away into eternal punishment, but the righteous into eternal life.” + +

+ + +

When Jesus had finished all these words, he said to his disciples, + +You know that after two days the Passover is coming, and the Son of Man will be delivered up to be crucified.” + +

+

Then the chief priests, the scribes, and the elders of the people were gathered together in the court of the high priest, who was called Caiaphas. + +They took counsel together that they might take Jesus by deceit and kill him. + +But they said, “Not during the feast, lest a riot occur among the people.” + +

+

Now when Jesus was in Bethany, in the house of Simon the leper, + +a woman came to him having an alabaster jar of very expensive ointment, and she poured it on his head as he sat at the table. + +But when his disciples saw this, they were indignant, saying, “Why this waste? + +For this ointment might have been sold for much and given to the poor.” + +

+

However, knowing this, Jesus said to them, +Why do you trouble the woman? She has done a good work for me. + + +For you always have the poor with you, but you don’t always have me. + + +For in pouring this ointment on my body, she did it to prepare me for burial. + + +Most certainly I tell you, wherever this Good News is preached in the whole world, what this woman has done will also be spoken of as a memorial of her.” + +

+

Then one of the twelve, who was called Judas Iscariot, went to the chief priests + +and said, “What are you willing to give me if I deliver him to you?” So they weighed out for him thirty pieces of silver. + +From that time he sought opportunity to betray him. + +

+

Now on the first day of unleavened bread, the disciples came to Jesus, saying to him, “Where do you want us to prepare for you to eat the Passover?” + +

+

He said, +Go into the city to a certain person, and tell him, ‘The Teacher says, “My time is at hand. I will keep the Passover at your house with my disciples.”’” + +

+

The disciples did as Jesus commanded them, and they prepared the Passover. + +

+

Now when evening had come, he was reclining at the table with the twelve disciples. + +As they were eating, he said, +Most certainly I tell you that one of you will betray me.” + +

+

They were exceedingly sorrowful, and each began to ask him, “It isn’t me, is it, Lord?” + +

+

He answered, +He who dipped his hand with me in the dish will betray me. + + +The Son of Man goes even as it is written of him, but woe to that man through whom the Son of Man is betrayed! It would be better for that man if he had not been born.” + +

+

Judas, who betrayed him, answered, “It isn’t me, is it, Rabbi?” +

+

He said to him, +You said it.” + +

+

As they were eating, Jesus took bread, gave thanks for26:26 +TR reads “blessed” instead of “gave thanks for” it, and broke it. He gave to the disciples and said, +Take, eat; this is my body.” + +He took the cup, gave thanks, and gave to them, saying, +All of you drink it, + + +for this is my blood of the new covenant, which is poured out for many for the remission of sins. + + +But I tell you that I will not drink of this fruit of the vine from now on, until that day when I drink it anew with you in my Father’s Kingdom.” + + +

+

When they had sung a hymn, they went out to the Mount of Olives. + +

+

Then Jesus said to them, +All of you will be made to stumble because of me tonight, for it is written, ‘I will strike the shepherd, and the sheep of the flock will be scattered.’26:31 +Zechariah 13:7 + +But after I am raised up, I will go before you into Galilee.” + + +

+

But Peter answered him, “Even if all will be made to stumble because of you, I will never be made to stumble.” + +

+

Jesus said to him, +“Most certainly I tell you that tonight, before the rooster crows, you will deny me three times.” + +

+

Peter said to him, “Even if I must die with you, I will not deny you.” All of the disciples also said likewise. + +

+

Then Jesus came with them to a place called Gethsemane, and said to his disciples, +Sit here, while I go there and pray.” + +He took with him Peter and the two sons of Zebedee, and began to be sorrowful and severely troubled. + +Then Jesus said to them, +My soul is exceedingly sorrowful, even to death. Stay here and watch with me.” + +

+

He went forward a little, fell on his face, and prayed, saying, +My Father, if it is possible, let this cup pass away from me; nevertheless, not what I desire, but what you desire.” + +

+

He came to the disciples and found them sleeping, and said to Peter, +What, couldn’t you watch with me for one hour? + + +Watch and pray, that you don’t enter into temptation. The spirit indeed is willing, but the flesh is weak.” + +

+

Again, a second time he went away and prayed, saying, +My Father, if this cup cant pass away from me unless I drink it, your desire be done.” + + +

+

He came again and found them sleeping, for their eyes were heavy. + +He left them again, went away, and prayed a third time, saying the same words. + +Then he came to his disciples and said to them, +Are you still sleeping and resting? Behold, the hour is at hand, and the Son of Man is betrayed into the hands of sinners. + + +Arise, let’s be going. Behold, he who betrays me is at hand.” + + +

+

While he was still speaking, behold, Judas, one of the twelve, came, and with him a great multitude with swords and clubs, from the chief priests and elders of the people. + +Now he who betrayed him had given them a sign, saying, “Whoever I kiss, he is the one. Seize him.” + +Immediately he came to Jesus, and said, “Greetings, Rabbi!” and kissed him. + +

+

Jesus said to him, +Friend, why are you here?” +

+

Then they came and laid hands on Jesus, and took him. + +Behold, one of those who were with Jesus stretched out his hand and drew his sword, and struck the servant of the high priest, and cut off his ear. + +

+

Then Jesus said to him, +Put your sword back into its place, for all those who take the sword will die by the sword. + + +Or do you think that I couldn’t ask my Father, and he would even now send me more than twelve legions of angels? + + +How then would the Scriptures be fulfilled that it must be so?” + + +

+

In that hour Jesus said to the multitudes, +Have you come out as against a robber with swords and clubs to seize me? I sat daily in the temple teaching, and you didn’t arrest me. + + +But all this has happened that the Scriptures of the prophets might be fulfilled.” +

+

Then all the disciples left him and fled. + +

+

Those who had taken Jesus led him away to Caiaphas the high priest, where the scribes and the elders were gathered together. + +But Peter followed him from a distance to the court of the high priest, and entered in and sat with the officers, to see the end. + +

+

Now the chief priests, the elders, and the whole council sought false testimony against Jesus, that they might put him to death, + +and they found none. Even though many false witnesses came forward, they found none. But at last two false witnesses came forward + +and said, “This man said, ‘I am able to destroy the temple of God, and to build it in three days.’” + +

+

The high priest stood up and said to him, “Have you no answer? What is this that these testify against you?” + +But Jesus stayed silent. The high priest answered him, “I adjure you by the living God that you tell us whether you are the Christ, the Son of God.” + +

+

Jesus said to him, +You have said so. Nevertheless, I tell you, after this you will see the Son of Man sitting at the right hand of Power, and coming on the clouds of the sky.” + +

+

Then the high priest tore his clothing, saying, “He has spoken blasphemy! Why do we need any more witnesses? Behold, now you have heard his blasphemy. + +What do you think?” +

+

They answered, “He is worthy of death!” + +Then they spat in his face and beat him with their fists, and some slapped him, + +saying, “Prophesy to us, you Christ! Who hit you?” + +

+

Now Peter was sitting outside in the court, and a maid came to him, saying, “You were also with Jesus, the Galilean!” + +

+

But he denied it before them all, saying, “I don’t know what you are talking about.” + +

+

When he had gone out onto the porch, someone else saw him and said to those who were there, “This man also was with Jesus of Nazareth.” + +

+

Again he denied it with an oath, “I don’t know the man.” + +

+

After a little while those who stood by came and said to Peter, “Surely you are also one of them, for your speech makes you known.” + +

+

Then he began to curse and to swear, “I don’t know the man!” +

+

Immediately the rooster crowed. + +Peter remembered the word which Jesus had said to him, +Before the rooster crows, you will deny me three times.” Then he went out and wept bitterly. + +

+ + +

Now when morning had come, all the chief priests and the elders of the people took counsel against Jesus to put him to death. + +They bound him, led him away, and delivered him up to Pontius Pilate, the governor. + +

+

Then Judas, who betrayed him, when he saw that Jesus was condemned, felt remorse, and brought back the thirty pieces of silver to the chief priests and elders, + +saying, “I have sinned in that I betrayed innocent blood.” +

+

But they said, “What is that to us? You see to it.” + +

+

He threw down the pieces of silver in the sanctuary and departed. Then he went away and hanged himself. + +

+

The chief priests took the pieces of silver and said, “It’s not lawful to put them into the treasury, since it is the price of blood.” + +They took counsel, and bought the potter’s field with them to bury strangers in. + +Therefore that field has been calledThe Field of Blood” to this day. + +Then that which was spoken through Jeremiah27:9 +some manuscripts omit “Jeremiah” the prophet was fulfilled, saying, +

+They took the thirty pieces of silver, + +the price of him upon whom a price had been set, + +whom some of the children of Israel priced, + + +and they gave them for the potters field, + +as the Lord commanded me.”27:10 +Zechariah 11:12-13; Jeremiah 19:1-13; 32:6-9 + + +

Now Jesus stood before the governor; and the governor asked him, saying, “Are you the King of the Jews?” +

+

Jesus said to him, +So you say.” + +

+

When he was accused by the chief priests and elders, he answered nothing. + +Then Pilate said to him, “Don’t you hear how many things they testify against you?” + +

+

He gave him no answer, not even one word, so that the governor marveled greatly. + +

+

Now at the feast the governor was accustomed to release to the multitude one prisoner whom they desired. + +They had then a notable prisoner called Barabbas. + +When therefore they were gathered together, Pilate said to them, “Whom do you want me to release to you? Barabbas, or Jesus who is called Christ?” + +For he knew that because of envy they had delivered him up. + +

+

While he was sitting on the judgment seat, his wife sent to him, saying, “Have nothing to do with that righteous man, for I have suffered many things today in a dream because of him.” + +

+

Now the chief priests and the elders persuaded the multitudes to ask for Barabbas and destroy Jesus. + +But the governor answered them, “Which of the two do you want me to release to you?” +

+

They said, “Barabbas!” + +

+

Pilate said to them, “What then shall I do to Jesus who is called Christ?” +

+

They all said to him, “Let him be crucified!” + +

+

But the governor said, “Why? What evil has he done?” +

+

But they cried out exceedingly, saying, “Let him be crucified!” + +

+

So when Pilate saw that nothing was being gained, but rather that a disturbance was starting, he took water and washed his hands before the multitude, saying, “I am innocent of the blood of this righteous person. You see to it.” + +

+

All the people answered, “May his blood be on us and on our children!” + +

+

Then he released Barabbas to them, but Jesus he flogged and delivered to be crucified. + +

+

Then the governor’s soldiers took Jesus into the Praetorium, and gathered the whole garrison together against him. + +They stripped him and put a scarlet robe on him. + +They braided a crown of thorns and put it on his head, and a reed in his right hand; and they kneeled down before him and mocked him, saying, “Hail, King of the Jews!” + +They spat on him, and took the reed and struck him on the head. + +When they had mocked him, they took the robe off him, and put his clothes on him, and led him away to crucify him. + +

+

As they came out, they found a man of Cyrene, Simon by name, and they compelled him to go with them, that he might carry his cross. + +When they came to a place calledGolgotha”, that is to say, “The place of a skull,” + +they gave him sour wine27:34 +or, vinegar to drink mixed with gall.27:34 +Gall is a bitter-tasting, dark green oil from a wormwood plant that is alcoholic in its effect. When he had tasted it, he would not drink. + +When they had crucified him, they divided his clothing among them, casting lots,27:35 +TR adds “that it might be fulfilled which was spoken by the prophet: ‘They divided my garments among them, and for my clothing they cast lots;’” [see Psalms 22:18 and John 19:24] + +and they sat and watched him there. + +They set up over his head the accusation against him written, “THIS IS JESUS, THE KING OF THE JEWS.” + +

+

Then there were two robbers crucified with him, one on his right hand and one on the left. + +

+

Those who passed by blasphemed him, wagging their heads + +and saying, “You who destroy the temple and build it in three days, save yourself! If you are the Son of God, come down from the cross!” + +

+

Likewise the chief priests also mocking with the scribes, the Pharisees,27:41 +TR omits “the Pharisees” and the elders, said, + +He saved others, but he cant save himself. If he is the King of Israel, let him come down from the cross now, and we will believe in him. + +He trusts in God. Let God deliver him now, if he wants him; for he said, ‘I am the Son of God.’” + +The robbers also who were crucified with him cast on him the same reproach. + +

+

Now from the sixth hour27:45 +noon there was darkness over all the land until the ninth hour.27:45 +3:00 p.m. + +About the ninth hour Jesus cried with a loud voice, saying, +Eli, Eli, lima27:46 +TR reads “lama” instead of “lima” +sabachthani?” + That is, +My God, my God, why have you forsaken me?”27:46 +Psalms 22:1 + +

+

Some of them who stood there, when they heard it, said, “This man is calling Elijah.” + +

+

Immediately one of them ran and took a sponge, filled it with vinegar, put it on a reed, and gave him a drink. + +The rest said, “Let him be. Let’s see whether Elijah comes to save him.” + +

+

Jesus cried again with a loud voice, and yielded up his spirit. + +

+

Behold, the veil of the temple was torn in two from the top to the bottom. The earth quaked and the rocks were split. + +The tombs were opened, and many bodies of the saints who had fallen asleep were raised; + +and coming out of the tombs after his resurrection, they entered into the holy city and appeared to many. + +

+

Now the centurion and those who were with him watching Jesus, when they saw the earthquake and the things that were done, were terrified, saying, “Truly this was the Son of God!” + +

+

Many women were there watching from afar, who had followed Jesus from Galilee, serving him. + +Among them were Mary Magdalene, Mary the mother of James and Joses, and the mother of the sons of Zebedee. + +

+

When evening had come, a rich man from Arimathaea named Joseph, who himself was also Jesusdisciple, came. + +This man went to Pilate and asked for Jesusbody. Then Pilate commanded the body to be given up. + +Joseph took the body and wrapped it in a clean linen cloth + +and laid it in his own new tomb, which he had cut out in the rock. Then he rolled a large stone against the door of the tomb, and departed. + +Mary Magdalene was there, and the other Mary, sitting opposite the tomb. + +

+

Now on the next day, which was the day after the Preparation Day, the chief priests and the Pharisees were gathered together to Pilate, + +saying, “Sir, we remember what that deceiver said while he was still alive: ‘After three days I will rise again.’ + +Command therefore that the tomb be made secure until the third day, lest perhaps his disciples come at night and steal him away, and tell the people, ‘He is risen from the dead;’ and the last deception will be worse than the first.” + +

+

Pilate said to them, “You have a guard. Go, make it as secure as you can.” + +So they went with the guard and made the tomb secure, sealing the stone. + +

+ + +

Now after the Sabbath, as it began to dawn on the first day of the week, Mary Magdalene and the other Mary came to see the tomb. + +Behold, there was a great earthquake, for an angel of the Lord descended from the sky and came and rolled away the stone from the door and sat on it. + +His appearance was like lightning, and his clothing white as snow. + +For fear of him, the guards shook, and became like dead men. + +The angel answered the women, “Don’t be afraid, for I know that you seek Jesus, who has been crucified. + +He is not here, for he has risen, just like he said. Come, see the place where the Lord was lying. + +Go quickly and tell his disciples, ‘He has risen from the dead, and behold, he goes before you into Galilee; there you will see him.’ Behold, I have told you.” + +

+

They departed quickly from the tomb with fear and great joy, and ran to bring his disciples word. + +As they went to tell his disciples, behold, Jesus met them, saying, +Rejoice!” +

+

They came and took hold of his feet, and worshiped him. + +

+

Then Jesus said to them, +“Don’t be afraid. Go tell my brothers +28:10 +The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.” +that they should go into Galilee, and there they will see me.” + +

+

Now while they were going, behold, some of the guards came into the city and told the chief priests all the things that had happened. + +When they were assembled with the elders and had taken counsel, they gave a large amount of silver to the soldiers, + +saying, “Say that his disciples came by night and stole him away while we slept. + +If this comes to the governor’s ears, we will persuade him and make you free of worry.” + +So they took the money and did as they were told. This saying was spread abroad among the Jews, and continues until today. + +

+

But the eleven disciples went into Galilee, to the mountain where Jesus had sent them. + +When they saw him, they bowed down to him; but some doubted. + +Jesus came to them and spoke to them, saying, +All authority has been given to me in heaven and on earth. + + +Go28:19 +TR and NU add “therefore” +and make disciples of all nations, baptizing them in the name of the Father and of the Son and of the Holy Spirit, + + +teaching them to observe all things that I commanded you. Behold, I am with you always, even to the end of the age.” Amen. + +

+
+41-MRK-web.sfm World English Bible (WEB) +Mark +The Good News According to Mark +Mark +Mrk +

The Good News According to +

+

Mark +

+ + +

The beginning of the Good News of Jesus Christ, the Son of God. + +

+

As it is written in the prophets, +

+Behold,1:2 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I send my messenger before your face, + +who will prepare your way before you:1:2 +Malachi 3:1 + + +the voice of one crying in the wilderness, + +Make ready the way of the Lord! + +Make his paths straight!’”1:3 +Isaiah 40:3 + + +

John came baptizing1:4 +or, immersing in the wilderness and preaching the baptism of repentance for forgiveness of sins. + +All the country of Judea and all those of Jerusalem went out to him. They were baptized by him in the Jordan river, confessing their sins. + +John was clothed with camel’s hair and a leather belt around his waist. He ate locusts and wild honey. + +He preached, saying, “After me comes he who is mightier than I, the strap of whose sandals I am not worthy to stoop down and loosen. + +I baptized you in1:8 +The Greek word (en) translated here as “in” could also be translated as “with” in some contexts. water, but he will baptize you in the Holy Spirit.” + +

+

In those days, Jesus came from Nazareth of Galilee, and was baptized by John in the Jordan. + +Immediately coming up from the water, he saw the heavens parting and the Spirit descending on him like a dove. + +A voice came out of the sky, “You are my beloved Son, in whom I am well pleased.” + +

+

Immediately the Spirit drove him out into the wilderness. + +He was there in the wilderness forty days, tempted by Satan. He was with the wild animals; and the angels were serving him. + +

+

Now after John was taken into custody, Jesus came into Galilee, preaching the Good News of God’s Kingdom, + +and saying, +The time is fulfilled, and God’s Kingdom is at hand! Repent, and believe in the Good News.” + +

+

Passing along by the sea of Galilee, he saw Simon and Andrew, the brother of Simon, casting a net into the sea, for they were fishermen. + +Jesus said to them, +Come after me, and I will make you into fishers for men.” + +

+

Immediately they left their nets, and followed him. + +

+

Going on a little further from there, he saw James the son of Zebedee, and John his brother, who were also in the boat mending the nets. + +Immediately he called them, and they left their father, Zebedee, in the boat with the hired servants, and went after him. + +

+

They went into Capernaum, and immediately on the Sabbath day he entered into the synagogue and taught. + +They were astonished at his teaching, for he taught them as having authority, and not as the scribes. + +Immediately there was in their synagogue a man with an unclean spirit, and he cried out, + +saying, “Ha! What do we have to do with you, Jesus, you Nazarene? Have you come to destroy us? I know who you are: the Holy One of God!” + +

+

Jesus rebuked him, saying, +Be quiet, and come out of him!” + + +

+

The unclean spirit, convulsing him and crying with a loud voice, came out of him. + +They were all amazed, so that they questioned among themselves, saying, “What is this? What can this new doctrine be? For with authority he commands even the unclean spirits, and they obey him!” + +The report of him went out immediately into all the region of Galilee and its surrounding area. + +

+

Immediately, when they had come out of the synagogue, they came into the house of Simon and Andrew, with James and John. + +Now Simon’s wife’s mother lay sick with a fever, and immediately they told him about her. + +He came and took her by the hand and raised her up. The fever left her immediately,1:31 +NU omits “immediately”. and she served them. + +

+

At evening, when the sun had set, they brought to him all who were sick and those who were possessed by demons. + +All the city was gathered together at the door. + +He healed many who were sick with various diseases and cast out many demons. He didn’t allow the demons to speak, because they knew him. + +

+

Early in the morning, while it was still dark, he rose up and went out, and departed into a deserted place, and prayed there. + +Simon and those who were with him searched for him. + +They found him and told him, “Everyone is looking for you.” + +

+

He said to them, +Lets go elsewhere into the next towns, that I may preach there also, because I came out for this reason.” + +He went into their synagogues throughout all Galilee, preaching and casting out demons. + +

+

A leper came to him, begging him, kneeling down to him, and saying to him, “If you want to, you can make me clean.” + +

+

Being moved with compassion, he stretched out his hand, and touched him, and said to him, +I want to. Be made clean.” + +When he had said this, immediately the leprosy departed from him and he was made clean. + +He strictly warned him and immediately sent him out, + +and said to him, +See that you say nothing to anybody, but go show yourself to the priest and offer for your cleansing the things which Moses commanded, for a testimony to them.” + +

+

But he went out, and began to proclaim it much, and to spread about the matter, so that Jesus could no more openly enter into a city, but was outside in desert places. People came to him from everywhere. + +

+ + +

When he entered again into Capernaum after some days, it was heard that he was at home. + +Immediately many were gathered together, so that there was no more room, not even around the door; and he spoke the word to them. + +Four people came, carrying a paralytic to him. + +When they could not come near to him for the crowd, they removed the roof where he was. When they had broken it up, they let down the mat that the paralytic was lying on. + +Jesus, seeing their faith, said to the paralytic, +Son, your sins are forgiven you.” + +

+

But there were some of the scribes sitting there and reasoning in their hearts, + +Why does this man speak blasphemies like that? Who can forgive sins but God alone?” + +

+

Immediately Jesus, perceiving in his spirit that they so reasoned within themselves, said to them, +Why do you reason these things in your hearts? + + +Which is easier, to tell the paralytic, ‘Your sins are forgiven;’ or to say, ‘Arise, and take up your bed, and walk’? + + +But that you may know that the Son of Man has authority on earth to forgive sins”he said to the paralytic— + +I tell you, arise, take up your mat, and go to your house.” + + +

+

He arose, and immediately took up the mat and went out in front of them all, so that they were all amazed and glorified God, saying, “We never saw anything like this!” + +

+

He went out again by the seaside. All the multitude came to him, and he taught them. + +As he passed by, he saw Levi the son of Alphaeus sitting at the tax office. He said to him, +“Follow me.” And he arose and followed him. + +

+

He was reclining at the table in his house, and many tax collectors and sinners sat down with Jesus and his disciples, for there were many, and they followed him. + +The scribes and the Pharisees, when they saw that he was eating with the sinners and tax collectors, said to his disciples, “Why is it that he eats and drinks with tax collectors and sinners?” + +

+

When Jesus heard it, he said to them, +Those who are healthy have no need for a physician, but those who are sick. I came not to call the righteous, but sinners to repentance.” + +

+

John’s disciples and the Pharisees were fasting, and they came and asked him, “Why do John’s disciples and the disciples of the Pharisees fast, but your disciples don’t fast?” + +

+

Jesus said to them, +Can the groomsmen fast while the bridegroom is with them? As long as they have the bridegroom with them, they cant fast. + + +But the days will come when the bridegroom will be taken away from them, and then they will fast in that day. + + +No one sews a piece of unshrunk cloth on an old garment, or else the patch shrinks and the new tears away from the old, and a worse hole is made. + + +No one puts new wine into old wineskins; or else the new wine will burst the skins, and the wine pours out, and the skins will be destroyed; but they put new wine into fresh wineskins.” + +

+

He was going on the Sabbath day through the grain fields; and his disciples began, as they went, to pluck the ears of grain. + +The Pharisees said to him, “Behold, why do they do that which is not lawful on the Sabbath day?” + +

+

He said to them, +Did you never read what David did when he had need and was hungryhe, and those who were with him? + + +How he entered into God’s house at the time of Abiathar the high priest, and ate the show bread, which is not lawful to eat except for the priests, and gave also to those who were with him?” + +

+

He said to them, +The Sabbath was made for man, not man for the Sabbath. + + +Therefore the Son of Man is lord even of the Sabbath.” + +

+ + +

He entered again into the synagogue, and there was a man there whose hand was withered. + +They watched him, whether he would heal him on the Sabbath day, that they might accuse him. + +He said to the man whose hand was withered, +Stand up.” + +He said to them, +Is it lawful on the Sabbath day to do good or to do harm? To save a life or to kill?” But they were silent. + +When he had looked around at them with anger, being grieved at the hardening of their hearts, he said to the man, +Stretch out your hand.” + He stretched it out, and his hand was restored as healthy as the other. + +The Pharisees went out, and immediately conspired with the Herodians against him, how they might destroy him. + +

+

Jesus withdrew to the sea with his disciples; and a great multitude followed him from Galilee, from Judea, + +from Jerusalem, from Idumaea, beyond the Jordan, and those from around Tyre and Sidon. A great multitude, hearing what great things he did, came to him. + +He spoke to his disciples that a little boat should stay near him because of the crowd, so that they wouldn’t press on him. + +For he had healed many, so that as many as had diseases pressed on him that they might touch him. + +The unclean spirits, whenever they saw him, fell down before him and cried, “You are the Son of God!” + +He sternly warned them that they should not make him known. + +

+

He went up into the mountain and called to himself those whom he wanted, and they went to him. + +He appointed twelve, that they might be with him, and that he might send them out to preach + +and to have authority to heal sicknesses and to cast out demons: + +Simon (to whom he gave the name Peter); + +James the son of Zebedee; and John, the brother of James, (whom he called Boanerges, which means, Sons of Thunder); + +Andrew; Philip; Bartholomew; Matthew; Thomas; James, the son of Alphaeus; Thaddaeus; Simon the Zealot; + +and Judas Iscariot, who also betrayed him. +

+

Then he came into a house. + +The multitude came together again, so that they could not so much as eat bread. + +When his friends heard it, they went out to seize him; for they said, “He is insane.” + +The scribes who came down from Jerusalem said, “He has Beelzebul,” and, “By the prince of the demons he casts out the demons.” + +

+

He summoned them and said to them in parables, +How can Satan cast out Satan? + + +If a kingdom is divided against itself, that kingdom cannot stand. + + +If a house is divided against itself, that house cannot stand. + + +If Satan has risen up against himself, and is divided, he cant stand, but has an end. + + +But no one can enter into the house of the strong man to plunder unless he first binds the strong man; then he will plunder his house. + + +

+

“Most certainly I tell you, all sins of the descendants of man will be forgiven, including their blasphemies with which they may blaspheme; + + +but whoever may blaspheme against the Holy Spirit never has forgiveness, but is subject to eternal condemnation.”3:29 +NU reads, guilty of an eternal sin. + +because they said, “He has an unclean spirit.” + +

+

His mother and his brothers came, and standing outside, they sent to him, calling him. + +A multitude was sitting around him, and they told him, “Behold, your mother, your brothers, and your sisters3:32 +TR omits “your sisters” are outside looking for you.” + +

+

He answered them, +Who are my mother and my brothers?” + +Looking around at those who sat around him, he said, +Behold, my mother and my brothers! + + +For whoever does the will of God is my brother, my sister, and mother.” + +

+ + +

Again he began to teach by the seaside. A great multitude was gathered to him, so that he entered into a boat in the sea and sat down. All the multitude were on the land by the sea. + +He taught them many things in parables, and told them in his teaching, + +Listen! Behold, the farmer went out to sow. + + +As he sowed, some seed fell by the road, and the birds4:4 +TR adds “of the air” +came and devoured it. + + +Others fell on the rocky ground, where it had little soil, and immediately it sprang up, because it had no depth of soil. + + +When the sun had risen, it was scorched; and because it had no root, it withered away. + + +Others fell among the thorns, and the thorns grew up and choked it, and it yielded no fruit. + + +Others fell into the good ground and yielded fruit, growing up and increasing. Some produced thirty times, some sixty times, and some one hundred times as much.” + +He said, +Whoever has ears to hear, let him hear.” + +

+

When he was alone, those who were around him with the twelve asked him about the parables. + +He said to them, +To you is given the mystery of God’s Kingdom, but to those who are outside, all things are done in parables, + + +thatseeing they may see and not perceive, and hearing they may hear and not understand, lest perhaps they should turn again, and their sins should be forgiven them.’”4:12 +Isaiah 6:9-10 + +

+

He said to them, +“Don’t you understand this parable? How will you understand all of the parables? + + +The farmer sows the word. + + +The ones by the road are the ones where the word is sown; and when they have heard, immediately Satan comes and takes away the word which has been sown in them. + + +These in the same way are those who are sown on the rocky places, who, when they have heard the word, immediately receive it with joy. + + +They have no root in themselves, but are short-lived. When oppression or persecution arises because of the word, immediately they stumble. + + +Others are those who are sown among the thorns. These are those who have heard the word, + + +and the cares of this age, and the deceitfulness of riches, and the lusts of other things entering in choke the word, and it becomes unfruitful. + + +Those which were sown on the good ground are those who hear the word, accept it, and bear fruit, some thirty times, some sixty times, and some one hundred times.” + +

+

He said to them, +Is a lamp brought to be put under a basket +4:21 +literally, a modion, a dry measuring basket containing about a peck (about 9 liters) +or under a bed? Isn’t it put on a stand? + + +For there is nothing hidden except that it should be made known, neither was anything made secret but that it should come to light. + + +If any man has ears to hear, let him hear.” + +

+

He said to them, +Take heed what you hear. With whatever measure you measure, it will be measured to you; and more will be given to you who hear. + + +For whoever has, to him more will be given; and he who doesn’t have, even that which he has will be taken away from him.” + +

+

He said, +God’s Kingdom is as if a man should cast seed on the earth, + + +and should sleep and rise night and day, and the seed should spring up and grow, though he doesn’t know how. + + +For the earth bears fruit by itself: first the blade, then the ear, then the full grain in the ear. + + +But when the fruit is ripe, immediately he puts in the sickle, because the harvest has come.” + +

+

He said, +How will we liken God’s Kingdom? Or with what parable will we illustrate it? + + +It’s like a grain of mustard seed, which, when it is sown in the earth, though it is less than all the seeds that are on the earth, + + +yet when it is sown, grows up and becomes greater than all the herbs, and puts out great branches, so that the birds of the sky can lodge under its shadow.” + +

+

With many such parables he spoke the word to them, as they were able to hear it. + +Without a parable he didn’t speak to them; but privately to his own disciples he explained everything. + +

+

On that day, when evening had come, he said to them, +Let’s go over to the other side.” + +Leaving the multitude, they took him with them, even as he was, in the boat. Other small boats were also with him. + +A big wind storm arose, and the waves beat into the boat, so much that the boat was already filled. + +He himself was in the stern, asleep on the cushion; and they woke him up and asked him, “Teacher, don’t you care that we are dying?” + +

+

He awoke and rebuked the wind, and said to the sea, +Peace! Be still!” The wind ceased and there was a great calm. + +He said to them, +Why are you so afraid? How is it that you have no faith?” + +

+

They were greatly afraid and said to one another, “Who then is this, that even the wind and the sea obey him?” + +

+ + +

They came to the other side of the sea, into the country of the Gadarenes. + +When he had come out of the boat, immediately a man with an unclean spirit met him out of the tombs. + +He lived in the tombs. Nobody could bind him any more, not even with chains, + +because he had been often bound with fetters and chains, and the chains had been torn apart by him, and the fetters broken in pieces. Nobody had the strength to tame him. + +Always, night and day, in the tombs and in the mountains, he was crying out, and cutting himself with stones. + +When he saw Jesus from afar, he ran and bowed down to him, + +and crying out with a loud voice, he said, “What have I to do with you, Jesus, you Son of the Most High God? I adjure you by God, don’t torment me.” + +For he said to him, +Come out of the man, you unclean spirit!” + + +

+

He asked him, +What is your name?” +

+

He said to him, “My name is Legion, for we are many.” + +He begged him much that he would not send them away out of the country. + +Now on the mountainside there was a great herd of pigs feeding. + +All the demons begged him, saying, “Send us into the pigs, that we may enter into them.” + +

+

At once Jesus gave them permission. The unclean spirits came out and entered into the pigs. The herd of about two thousand rushed down the steep bank into the sea, and they were drowned in the sea. + +Those who fed the pigs fled, and told it in the city and in the country. +

+

The people came to see what it was that had happened. + +They came to Jesus, and saw him who had been possessed by demons sitting, clothed, and in his right mind, even him who had the legion; and they were afraid. + +Those who saw it declared to them what happened to him who was possessed by demons, and about the pigs. + +They began to beg him to depart from their region. + +

+

As he was entering into the boat, he who had been possessed by demons begged him that he might be with him. + +He didn’t allow him, but said to him, +Go to your house, to your friends, and tell them what great things the Lord has done for you and how he had mercy on you.” + +

+

He went his way, and began to proclaim in Decapolis how Jesus had done great things for him, and everyone marveled. + +

+

When Jesus had crossed back over in the boat to the other side, a great multitude was gathered to him; and he was by the sea. + +Behold, one of the rulers of the synagogue, Jairus by name, came; and seeing him, he fell at his feet + +and begged him much, saying, “My little daughter is at the point of death. Please come and lay your hands on her, that she may be made healthy, and live.” + +

+

He went with him, and a great multitude followed him, and they pressed upon him on all sides. + +A certain woman who had a discharge of blood for twelve years, + +and had suffered many things by many physicians, and had spent all that she had, and was no better, but rather grew worse, + +having heard the things concerning Jesus, came up behind him in the crowd and touched his clothes. + +For she said, “If I just touch his clothes, I will be made well.” + +Immediately the flow of her blood was dried up, and she felt in her body that she was healed of her affliction. + +

+

Immediately Jesus, perceiving in himself that the power had gone out from him, turned around in the crowd and asked, +Who touched my clothes?” + +

+

His disciples said to him, “You see the multitude pressing against you, and you say, ‘Who touched me?’” + +

+

He looked around to see her who had done this thing. + +But the woman, fearing and trembling, knowing what had been done to her, came and fell down before him, and told him all the truth. + +

+

He said to her, +Daughter, your faith has made you well. Go in peace, and be cured of your disease.” + +

+

While he was still speaking, people came from the synagogue ruler’s house, saying, “Your daughter is dead. Why bother the Teacher any more?” + +

+

But Jesus, when he heard the message spoken, immediately said to the ruler of the synagogue, +“Don’t be afraid, only believe.” + +He allowed no one to follow him except Peter, James, and John the brother of James. + +He came to the synagogue ruler’s house, and he saw an uproar, weeping, and great wailing. + +When he had entered in, he said to them, +Why do you make an uproar and weep? The child is not dead, but is asleep.” + +

+

They ridiculed him. But he, having put them all out, took the father of the child, her mother, and those who were with him, and went in where the child was lying. + +Taking the child by the hand, he said to her, +Talitha cumi!” + which means, being interpreted, +Girl, I tell you, get up!” + + +Immediately the girl rose up and walked, for she was twelve years old. They were amazed with great amazement. + +He strictly ordered them that no one should know this, and commanded that something should be given to her to eat. + +

+ + +

He went out from there. He came into his own country, and his disciples followed him. + +When the Sabbath had come, he began to teach in the synagogue, and many hearing him were astonished, saying, “Where did this man get these things?” and, “What is the wisdom that is given to this man, that such mighty works come about by his hands? + +Isn’t this the carpenter, the son of Mary and brother of James, Joses, Judah, and Simon? Aren’t his sisters here with us?” So they were offended at him. + +

+

Jesus said to them, +A prophet is not without honor, except in his own country, and among his own relatives, and in his own house.” + +He could do no mighty work there, except that he laid his hands on a few sick people and healed them. + +He marveled because of their unbelief. +

+

He went around the villages teaching. + +He called to himself the twelve, and began to send them out two by two; and he gave them authority over the unclean spirits. + +He commanded them that they should take nothing for their journey, except a staff only: no bread, no wallet, no money in their purse, + +but to wear sandals, and not put on two tunics. + +He said to them, +Wherever you enter into a house, stay there until you depart from there. + + +Whoever will not receive you nor hear you, as you depart from there, shake off the dust that is under your feet for a testimony against them. Assuredly, I tell you, it will be more tolerable for Sodom and Gomorrah in the day of judgment than for that city!” + +

+

They went out and preached that people should repent. + +They cast out many demons, and anointed many with oil who were sick and healed them. + +King Herod heard this, for his name had become known, and he said, “John the Baptizer has risen from the dead, and therefore these powers are at work in him.” + +But others said, “He is Elijah.” Others said, “He is a prophet, or like one of the prophets.” + +But Herod, when he heard this, said, “This is John, whom I beheaded. He has risen from the dead.” + +For Herod himself had sent out and arrested John and bound him in prison for the sake of Herodias, his brother Philip’s wife, for he had married her. + +For John had said to Herod, “It is not lawful for you to have your brother’s wife.” + +Herodias set herself against him and desired to kill him, but she couldn’t, + +for Herod feared John, knowing that he was a righteous and holy man, and kept him safe. When he heard him, he did many things, and he heard him gladly. + +

+

Then a convenient day came when Herod on his birthday made a supper for his nobles, the high officers, and the chief men of Galilee. + +When the daughter of Herodias herself came in and danced, she pleased Herod and those sitting with him. The king said to the young lady, “Ask me whatever you want, and I will give it to you.” + +He swore to her, “Whatever you ask of me, I will give you, up to half of my kingdom.” + +

+

She went out and said to her mother, “What shall I ask?” +

+

She said, “The head of John the Baptizer.” + +

+

She came in immediately with haste to the king and requested, “I want you to give me right now the head of John the Baptizer on a platter.” + +

+

The king was exceedingly sorry, but for the sake of his oaths and of his dinner guests, he didn’t wish to refuse her. + +Immediately the king sent out a soldier of his guard and commanded to bring John’s head; and he went and beheaded him in the prison, + +and brought his head on a platter, and gave it to the young lady; and the young lady gave it to her mother. + +

+

When his disciples heard this, they came and took up his corpse and laid it in a tomb. + +

+

The apostles gathered themselves together to Jesus, and they told him all things, whatever they had done, and whatever they had taught. + +He said to them, +Come away into a deserted place, and rest awhile.” For there were many coming and going, and they had no leisure so much as to eat. + +They went away in the boat to a deserted place by themselves. + +They6:33 +TR reads “The multitudes” instead of “They” saw them going, and many recognized him and ran there on foot from all the cities. They arrived before them and came together to him. + +Jesus came out, saw a great multitude, and he had compassion on them because they were like sheep without a shepherd; and he began to teach them many things. + +When it was late in the day, his disciples came to him and said, “This place is deserted, and it is late in the day. + +Send them away, that they may go into the surrounding country and villages and buy themselves bread, for they have nothing to eat.” + +

+

But he answered them, +You give them something to eat.” +

+

They asked him, “Shall we go and buy two hundred denarii6:37 +200 denarii was about 7 or 8 months wages for an agricultural laborer. worth of bread and give them something to eat?” + +

+

He said to them, +How many loaves do you have? Go see.” +

+

When they knew, they said, “Five, and two fish.” + +

+

He commanded them that everyone should sit down in groups on the green grass. + +They sat down in ranks, by hundreds and by fifties. + +He took the five loaves and the two fish; and looking up to heaven, he blessed and broke the loaves, and he gave to his disciples to set before them, and he divided the two fish among them all. + +They all ate and were filled. + +They took up twelve baskets full of broken pieces and also of the fish. + +Those who ate the loaves were6:44 +TR adds “about” five thousand men. + +

+

Immediately he made his disciples get into the boat and go ahead to the other side, to Bethsaida, while he himself sent the multitude away. + +After he had taken leave of them, he went up the mountain to pray. + +

+

When evening had come, the boat was in the middle of the sea, and he was alone on the land. + +Seeing them distressed in rowing, for the wind was contrary to them, about the fourth watch of the night he came to them, walking on the sea;6:48 +See Job 9:8 and he would have passed by them, + +but they, when they saw him walking on the sea, supposed that it was a ghost, and cried out; + +for they all saw him and were troubled. But he immediately spoke with them and said to them, +“Cheer up! It is I!6:50 +or, “I AM!” +Don’t be afraid.” + +He got into the boat with them; and the wind ceased, and they were very amazed among themselves, and marveled; + +for they hadn’t understood about the loaves, but their hearts were hardened. + +

+

When they had crossed over, they came to land at Gennesaret and moored to the shore. + +When they had come out of the boat, immediately the people recognized him, + +and ran around that whole region, and began to bring those who were sick on their mats to where they heard he was. + +Wherever he enteredinto villages, or into cities, or into the country—they laid the sick in the marketplaces and begged him that they might just touch the fringe6:56 +or, tassel of his garment; and as many as touched him were made well. + +

+ + +

Then the Pharisees and some of the scribes gathered together to him, having come from Jerusalem. + +Now when they saw some of his disciples eating bread with defiled, that is unwashed, hands, they found fault. + +(For the Pharisees and all the Jews don’t eat unless they wash their hands and forearms, holding to the tradition of the elders. + +They don’t eat when they come from the marketplace unless they bathe themselves, and there are many other things which they have received to hold to: washings of cups, pitchers, bronze vessels, and couches.) + +The Pharisees and the scribes asked him, “Why don’t your disciples walk according to the tradition of the elders, but eat their bread with unwashed hands?” + +

+

He answered them, +Well did Isaiah prophesy of you hypocrites, as it is written, +

+This people honors me with their lips, + +but their heart is far from me. + + +They worship me in vain, + +teaching as doctrines the commandments of men.’7:7 +Isaiah 29:13 + + + +

For you set aside the commandment of God, and hold tightly to the tradition of menthe washing of pitchers and cups, and you do many other such things.” + +He said to them, +“Full well do you reject the commandment of God, that you may keep your tradition. + + +For Moses said, ‘Honor your father and your mother;’7:10 +Exodus 20:12; Deuteronomy 5:16 +and, ‘He who speaks evil of father or mother, let him be put to death.’7:10 +Exodus 21:17; Leviticus 20:9 + +But you say, ‘If a man tells his father or his mother, “Whatever profit you might have received from me is Corban,”’”7:11 +Corban is a Hebrew word for an offering devoted to God. that is to say, given to God, + +then you no longer allow him to do anything for his father or his mother, + + +making void the word of God by your tradition which you have handed down. You do many things like this.” + +

+

He called all the multitude to himself and said to them, +“Hear me, all of you, and understand. + + +There is nothing from outside of the man that going into him can defile him; but the things which proceed out of the man are those that defile the man. + + +If anyone has ears to hear, let him hear!”7:16 +NU omits verse 16. + +

+

When he had entered into a house away from the multitude, his disciples asked him about the parable. + +He said to them, +Are you also without understanding? Don’t you perceive that whatever goes into the man from outside cant defile him, + + +because it doesn’t go into his heart, but into his stomach, then into the latrine, making all foods clean?”7:19 +NU ends Jesus’ direct quote and question after “latrine”, ending the verse with “Thus he declared all foods clean. + + +He said, +That which proceeds out of the man, that defiles the man. + + +For from within, out of the hearts of men, proceed evil thoughts, adulteries, sexual sins, murders, thefts, + + +covetings, wickedness, deceit, lustful desires, an evil eye, blasphemy, pride, and foolishness. + + +All these evil things come from within and defile the man.” + + +

+

From there he arose and went away into the borders of Tyre and Sidon. He entered into a house and didn’t want anyone to know it, but he couldn’t escape notice. + +For a woman whose little daughter had an unclean spirit, having heard of him, came and fell down at his feet. + +Now the woman was a Greek, a Syrophoenician by race. She begged him that he would cast the demon out of her daughter. + +But Jesus said to her, +Let the children be filled first, for it is not appropriate to take the children’s bread and throw it to the dogs.” + + +

+

But she answered him, “Yes, Lord. Yet even the dogs under the table eat the childrens crumbs.” + +

+

He said to her, +For this saying, go your way. The demon has gone out of your daughter.” + +

+

She went away to her house, and found the child having been laid on the bed, with the demon gone out. + +

+

Again he departed from the borders of Tyre and Sidon, and came to the sea of Galilee through the middle of the region of Decapolis. + +They brought to him one who was deaf and had an impediment in his speech. They begged him to lay his hand on him. + +He took him aside from the multitude privately and put his fingers into his ears; and he spat and touched his tongue. + +Looking up to heaven, he sighed, and said to him, +Ephphatha!” + that is, +Be opened!” + +Immediately his ears were opened, and the impediment of his tongue was released, and he spoke clearly. + +He commanded them that they should tell no one, but the more he commanded them, so much the more widely they proclaimed it. + +They were astonished beyond measure, saying, “He has done all things well. He makes even the deaf hear and the mute speak!” + +

+ + +

In those days, when there was a very great multitude, and they had nothing to eat, Jesus called his disciples to himself and said to them, + +I have compassion on the multitude, because they have stayed with me now three days and have nothing to eat. + + +If I send them away fasting to their home, they will faint on the way, for some of them have come a long way.” + +

+

His disciples answered him, “From where could one satisfy these people with bread here in a deserted place?” + +

+

He asked them, +How many loaves do you have?” +

+

They said, “Seven.” + +

+

He commanded the multitude to sit down on the ground, and he took the seven loaves. Having given thanks, he broke them and gave them to his disciples to serve, and they served the multitude. + +They also had a few small fish. Having blessed them, he said to serve these also. + +They ate and were filled. They took up seven baskets of broken pieces that were left over. + +Those who had eaten were about four thousand. Then he sent them away. + +

+

Immediately he entered into the boat with his disciples and came into the region of Dalmanutha. + +The Pharisees came out and began to question him, seeking from him a sign from heaven and testing him. + +He sighed deeply in his spirit and said, +Why does this generation8:12 +The word translated “generation” here (genea) could also be translated “people”, “race”, or “family”. +seek a sign? Most certainly I tell you, no sign will be given to this generation.” + +

+

He left them, and again entering into the boat, departed to the other side. + +They forgot to take bread; and they didn’t have more than one loaf in the boat with them. + +He warned them, saying, +Take heed: beware of the yeast of the Pharisees and the yeast of Herod.” + +

+

They reasoned with one another, saying, “Its because we have no bread.” + +

+

Jesus, perceiving it, said to them, +Why do you reason that its because you have no bread? Don’t you perceive yet or understand? Is your heart still hardened? + + +Having eyes, don’t you see? Having ears, don’t you hear? Don’t you remember? + + +When I broke the five loaves among the five thousand, how many baskets full of broken pieces did you take up?” +

+

They told him, “Twelve.” + +

+

When the seven loaves fed the four thousand, how many baskets full of broken pieces did you take up?” +

+

They told him, “Seven.” + +

+

He asked them, +“Don’t you understand yet?” + +

+

He came to Bethsaida. They brought a blind man to him and begged him to touch him. + +He took hold of the blind man by the hand, and brought him out of the village. When he had spat on his eyes, and laid his hands on him, he asked him if he saw anything. + +

+

He looked up, and said, “I see men, but I see them like walking trees.” + +

+

Then again he laid his hands on his eyes. He looked intently, and was restored, and saw everyone clearly. + +He sent him away to his house, saying, +“Don’t enter into the village, nor tell anyone in the village.” + +

+

Jesus went out, with his disciples, into the villages of Caesarea Philippi. On the way he asked his disciples, +Who do men say that I am?” + + +

+

They told him, “John the Baptizer, and others say Elijah, but others, one of the prophets.” + +

+

He said to them, +But who do you say that I am?” +

+

Peter answered, “You are the Christ.” + +

+

He commanded them that they should tell no one about him. + +He began to teach them that the Son of Man must suffer many things, and be rejected by the elders, the chief priests, and the scribes, and be killed, and after three days rise again. + +He spoke to them openly. Peter took him and began to rebuke him. + +But he, turning around and seeing his disciples, rebuked Peter, and said, +Get behind me, Satan! For you have in mind not the things of God, but the things of men.” + +

+

He called the multitude to himself with his disciples and said to them, +Whoever wants to come after me, let him deny himself, and take up his cross, and follow me. + + +For whoever wants to save his life will lose it; and whoever will lose his life for my sake and the sake of the Good News will save it. + + +For what does it profit a man to gain the whole world and forfeit his life? + + +For what will a man give in exchange for his life? + + +For whoever will be ashamed of me and of my words in this adulterous and sinful generation, the Son of Man also will be ashamed of him when he comes in his Father’s glory with the holy angels.” + +

+ + +

He said to them, +Most certainly I tell you, there are some standing here who will in no way taste death until they see God’s Kingdom come with power.” + +

+

After six days Jesus took with him Peter, James, and John, and brought them up onto a high mountain privately by themselves, and he was changed into another form in front of them. + +His clothing became glistening, exceedingly white, like snow, such as no launderer on earth can whiten them. + +Elijah and Moses appeared to them, and they were talking with Jesus. + +

+

Peter answered Jesus, “Rabbi, it is good for us to be here. Let’s make three tents: one for you, one for Moses, and one for Elijah.” + +For he didn’t know what to say, for they were very afraid. + +

+

A cloud came, overshadowing them, and a voice came out of the cloud, “This is my beloved Son. Listen to him.” + +

+

Suddenly looking around, they saw no one with them any more, except Jesus only. + +

+

As they were coming down from the mountain, he commanded them that they should tell no one what things they had seen, until after the Son of Man had risen from the dead. + +They kept this saying to themselves, questioning what therising from the deadmeant. + +

+

They asked him, saying, “Why do the scribes say that Elijah must come first?” + +

+

He said to them, +Elijah indeed comes first, and restores all things. How is it written about the Son of Man, that he should suffer many things and be despised? + + +But I tell you that Elijah has come, and they have also done to him whatever they wanted to, even as it is written about him.” + +

+

Coming to the disciples, he saw a great multitude around them, and scribes questioning them. + +Immediately all the multitude, when they saw him, were greatly amazed, and running to him, greeted him. + +He asked the scribes, +What are you asking them?” + +

+

One of the multitude answered, “Teacher, I brought to you my son, who has a mute spirit; + +and wherever it seizes him, it throws him down; and he foams at the mouth, grinds his teeth, and becomes rigid. I asked your disciples to cast it out, and they weren’t able.” + +

+

He answered him, +“Unbelieving generation, how long shall I be with you? How long shall I bear with you? Bring him to me.” + +

+

They brought him to him, and when he saw him, immediately the spirit convulsed him and he fell on the ground, wallowing and foaming at the mouth. + +

+

He asked his father, +How long has it been since this has been happening to him?” +

+

He said, “From childhood. + +Often it has cast him both into the fire and into the water to destroy him. But if you can do anything, have compassion on us and help us.” + +

+

Jesus said to him, +If you can believe, all things are possible to him who believes.” + +

+

Immediately the father of the child cried out with tears, “I believe. Help my unbelief!” + +

+

When Jesus saw that a multitude came running together, he rebuked the unclean spirit, saying to him, +You mute and deaf spirit, I command you, come out of him, and never enter him again!” + +

+

After crying out and convulsing him greatly, it came out of him. The boy became like one dead, so much that most of them said, “He is dead.” + +But Jesus took him by the hand and raised him up; and he arose. + +

+

When he had come into the house, his disciples asked him privately, “Why couldn’t we cast it out?” + +

+

He said to them, +This kind can come out by nothing but by prayer and fasting.” + +

+

They went out from there and passed through Galilee. He didn’t want anyone to know it, + +for he was teaching his disciples, and said to them, +The Son of Man is being handed over to the hands of men, and they will kill him; and when he is killed, on the third day he will rise again.” + +

+

But they didn’t understand the saying, and were afraid to ask him. + +

+

He came to Capernaum, and when he was in the house he asked them, +What were you arguing among yourselves on the way?” + +

+

But they were silent, for they had disputed with one another on the way about who was the greatest. + +

+

He sat down and called the twelve; and he said to them, +If any man wants to be first, he shall be last of all, and servant of all.” + +He took a little child and set him in the middle of them. Taking him in his arms, he said to them, + +Whoever receives one such little child in my name receives me; and whoever receives me, doesn’t receive me, but him who sent me.” + +

+

John said to him, “Teacher, we saw someone who doesn’t follow us casting out demons in your name; and we forbade him, because he doesn’t follow us.” + +

+

But Jesus said, +“Don’t forbid him, for there is no one who will do a mighty work in my name and be able quickly to speak evil of me. + + +For whoever is not against us is on our side. + + +For whoever will give you a cup of water to drink in my name because you are Christ’s, most certainly I tell you, he will in no way lose his reward. + + +

+

Whoever will cause one of these little ones who believe in me to stumble, it would be better for him if he were thrown into the sea with a millstone hung around his neck. + + +If your hand causes you to stumble, cut it off. It is better for you to enter into life maimed, rather than having your two hands to go into Gehenna, +9:43 +or, Hell +into the unquenchable fire, + + +‘where their worm doesn’t die, and the fire is not quenched.’ +9:44 +Isaiah 66:249:44 +NU omits verse 44. + +If your foot causes you to stumble, cut it off. It is better for you to enter into life lame, rather than having your two feet to be cast into Gehenna, +9:45 +or, Hell +into the fire that will never be quenched— + +‘where their worm doesn’t die, and the fire is not quenched.’ +9:46 +NU omits verse 46. + +If your eye causes you to stumble, throw it out. It is better for you to enter into Gods Kingdom with one eye, rather than having two eyes to be cast into the Gehenna9:47 +or, Hell +of fire, + + +where their worm doesn’t die, and the fire is not quenched.’ +9:48 +Isaiah 66:24 + +For everyone will be salted with fire, and every sacrifice will be seasoned with salt. + + +Salt is good, but if the salt has lost its saltiness, with what will you season it? Have salt in yourselves, and be at peace with one another.” + + +

+ + +

He arose from there and came into the borders of Judea and beyond the Jordan. Multitudes came together to him again. As he usually did, he was again teaching them. + +

+

Pharisees came to him testing him, and asked him, “Is it lawful for a man to divorce his wife?” + +

+

He answered, +What did Moses command you?” + +

+

They said, “Moses allowed a certificate of divorce to be written, and to divorce her.” + +

+

But Jesus said to them, +For your hardness of heart, he wrote you this commandment. + + +But from the beginning of the creation, God made them male and female.10:6 +Genesis 1:27 + +For this cause a man will leave his father and mother, and will join to his wife, + + +and the two will become one flesh,10:8 +Genesis 2:24 +so that they are no longer two, but one flesh. + + +What therefore God has joined together, let no man separate.” + + +

+

In the house, his disciples asked him again about the same matter. + +He said to them, +Whoever divorces his wife and marries another commits adultery against her. + + +If a woman herself divorces her husband and marries another, she commits adultery.” + +

+

They were bringing to him little children, that he should touch them, but the disciples rebuked those who were bringing them. + +But when Jesus saw it, he was moved with indignation and said to them, +“Allow the little children to come to me! Don’t forbid them, for God’s Kingdom belongs to such as these. + + +Most certainly I tell you, whoever will not receive God’s Kingdom like a little child, he will in no way enter into it.” + +He took them in his arms and blessed them, laying his hands on them. + +

+

As he was going out into the way, one ran to him, knelt before him, and asked him, “Good Teacher, what shall I do that I may inherit eternal life?” + +

+

Jesus said to him, +Why do you call me good? No one is good except oneGod. + + +You know the commandments: ‘Do not murder,’ ‘Do not commit adultery,’ ‘Do not steal,’ ‘Do not give false testimony,’ ‘Do not defraud,’ ‘Honor your father and mother.’”10:19 +Exodus 20:12-16; Deuteronomy 5:16-20 + + +

+

He said to him, “Teacher, I have observed all these things from my youth.” + +

+

Jesus looking at him loved him, and said to him, +One thing you lack. Go, sell whatever you have and give to the poor, and you will have treasure in heaven; and come, follow me, taking up the cross.” + +

+

But his face fell at that saying, and he went away sorrowful, for he was one who had great possessions. + +

+

Jesus looked around and said to his disciples, +How difficult it is for those who have riches to enter into Gods Kingdom!” + +

+

The disciples were amazed at his words. But Jesus answered again, +Children, how hard it is for those who trust in riches to enter into God’s Kingdom! + + +It is easier for a camel to go through a needle’s eye than for a rich man to enter into God’s Kingdom.” + +

+

They were exceedingly astonished, saying to him, “Then who can be saved?” + +

+

Jesus, looking at them, said, +With men it is impossible, but not with God, for all things are possible with God.” + +

+

Peter began to tell him, “Behold, we have left all and have followed you.” + +

+

Jesus said, +“Most certainly I tell you, there is no one who has left house, or brothers, or sisters, or father, or mother, or wife, or children, or land, for my sake, and for the sake of the Good News, + + +but he will receive one hundred times more now in this time: houses, brothers, sisters, mothers, children, and land, with persecutions; and in the age to come eternal life. + + +But many who are first will be last, and the last first.” + +

+

They were on the way, going up to Jerusalem; and Jesus was going in front of them, and they were amazed; and those who followed were afraid. He again took the twelve, and began to tell them the things that were going to happen to him. + +Behold, we are going up to Jerusalem. The Son of Man will be delivered to the chief priests and the scribes. They will condemn him to death, and will deliver him to the Gentiles. + + +They will mock him, spit on him, scourge him, and kill him. On the third day he will rise again.” + +

+

James and John, the sons of Zebedee, came near to him, saying, “Teacher, we want you to do for us whatever we will ask.” + +

+

He said to them, +What do you want me to do for you?” + +

+

They said to him, “Grant to us that we may sit, one at your right hand and one at your left hand, in your glory.” + +

+

But Jesus said to them, +You don’t know what you are asking. Are you able to drink the cup that I drink, and to be baptized with the baptism that I am baptized with?” + +

+

They said to him, “We are able.” +

+

Jesus said to them, +You shall indeed drink the cup that I drink, and you shall be baptized with the baptism that I am baptized with; + + +but to sit at my right hand and at my left hand is not mine to give, but for whom it has been prepared.” + +

+

When the ten heard it, they began to be indignant toward James and John. + +

+

Jesus summoned them and said to them, +You know that they who are recognized as rulers over the nations lord it over them, and their great ones exercise authority over them. + + +But it shall not be so among you, but whoever wants to become great among you shall be your servant. + + +Whoever of you wants to become first among you shall be bondservant of all. + + +For the Son of Man also came not to be served but to serve, and to give his life as a ransom for many.” + +

+

They came to Jericho. As he went out from Jericho with his disciples and a great multitude, the son of Timaeus, Bartimaeus, a blind beggar, was sitting by the road. + +When he heard that it was Jesus the Nazarene, he began to cry out and say, “Jesus, you son of David, have mercy on me!” + +Many rebuked him, that he should be quiet, but he cried out much more, “You son of David, have mercy on me!” + +

+

Jesus stood still and said, +Call him.” +

+

They called the blind man, saying to him, “Cheer up! Get up. He is calling you!” + +

+

He, casting away his cloak, sprang up, and came to Jesus. + +

+

Jesus asked him, +What do you want me to do for you?” +

+

The blind man said to him, “Rabboni,10:51 +Rabboni is a transliteration of the Hebrew word for “great teacher.” that I may see again.” + +

+

Jesus said to him, +Go your way. Your faith has made you well.” + Immediately he received his sight and followed Jesus on the way. + +

+ + +

When they came near to Jerusalem, to Bethsphage11:1 +TR & NU read “Bethphage” instead of “Bethsphage” and Bethany, at the Mount of Olives, he sent two of his disciples + +and said to them, +Go your way into the village that is opposite you. Immediately as you enter into it, you will find a young donkey tied, on which no one has sat. Untie him and bring him. + + +If anyone asks you, ‘Why are you doing this?’ say, ‘The Lord needs him;’ and immediately he will send him back here.” + +

+

They went away, and found a young donkey tied at the door outside in the open street, and they untied him. + +Some of those who stood there asked them, “What are you doing, untying the young donkey?” + +They said to them just as Jesus had said, and they let them go. + +

+

They brought the young donkey to Jesus and threw their garments on it, and Jesus sat on it. + +Many spread their garments on the way, and others were cutting down branches from the trees and spreading them on the road. + +Those who went in front and those who followed cried out, “Hosanna!11:9 +“Hosanna” means “save us” or “help us, we pray”. Blessed is he who comes in the name of the Lord!11:9 +Psalms 118:25-26 + +Blessed is the kingdom of our father David that is coming in the name of the Lord! Hosanna in the highest!” + +

+

Jesus entered into the temple in Jerusalem. When he had looked around at everything, it being now evening, he went out to Bethany with the twelve. + +

+

The next day, when they had come out from Bethany, he was hungry. + +Seeing a fig tree afar off having leaves, he came to see if perhaps he might find anything on it. When he came to it, he found nothing but leaves, for it was not the season for figs. + +Jesus told it, +May no one ever eat fruit from you again!” + and his disciples heard it. + +

+

They came to Jerusalem, and Jesus entered into the temple and began to throw out those who sold and those who bought in the temple, and overthrew the money changerstables and the seats of those who sold the doves. + +He would not allow anyone to carry a container through the temple. + +He taught, saying to them, +“Isn’t it written, ‘My house will be called a house of prayer for all the nations’?11:17 +Isaiah 56:7 +But you have made it a den of robbers!”11:17 +Jeremiah 7:11 + +

+

The chief priests and the scribes heard it, and sought how they might destroy him. For they feared him, because all the multitude was astonished at his teaching. + +

+

When evening came, he went out of the city. + +As they passed by in the morning, they saw the fig tree withered away from the roots. + +Peter, remembering, said to him, “Rabbi, look! The fig tree which you cursed has withered away.” + +

+

Jesus answered them, +Have faith in God. + + +For most certainly I tell you, whoever may tell this mountain, ‘Be taken up and cast into the sea,’ and doesn’t doubt in his heart, but believes that what he says is happening, he shall have whatever he says. + + +Therefore I tell you, all things whatever you pray and ask for, believe that you have received them, and you shall have them. + + +Whenever you stand praying, forgive, if you have anything against anyone; so that your Father, who is in heaven, may also forgive you your transgressions. + + +But if you do not forgive, neither will your Father in heaven forgive your transgressions.”11:26 +NU omits verse 26. + +

+

They came again to Jerusalem, and as he was walking in the temple, the chief priests, the scribes, and the elders came to him, + +and they began saying to him, “By what authority do you do these things? Or who gave you this authority to do these things?” + +

+

Jesus said to them, +I will ask you one question. Answer me, and I will tell you by what authority I do these things. + + +The baptism of Johnwas it from heaven, or from men? Answer me.” + + +

+

They reasoned with themselves, saying, “If we should say, ‘From heaven;’ he will say, ‘Why then did you not believe him?’ + +If we should say, ‘From men’”—they feared the people, for all held John to really be a prophet. + +They answered Jesus, “We don’t know.” +

+

Jesus said to them, +Neither will I tell you by what authority I do these things.” + +

+ + +

He began to speak to them in parables. +A man planted a vineyard, put a hedge around it, dug a pit for the wine press, built a tower, rented it out to a farmer, and went into another country. + + +When it was time, he sent a servant to the farmer to get from the farmer his share of the fruit of the vineyard. + + +They took him, beat him, and sent him away empty. + + +Again, he sent another servant to them; and they threw stones at him, wounded him in the head, and sent him away shamefully treated. + + +Again he sent another, and they killed him, and many others, beating some, and killing some. + + +Therefore still having one, his beloved son, he sent him last to them, saying, ‘They will respect my son.’ + + +But those farmers said among themselves, ‘This is the heir. Come, let’s kill him, and the inheritance will be ours.’ + + +They took him, killed him, and cast him out of the vineyard. + + +What therefore will the lord of the vineyard do? He will come and destroy the farmers, and will give the vineyard to others. + + +Haven’t you even read this Scripture: +

+The stone which the builders rejected + +was made the head of the corner. + + +This was from the Lord. + +It is marvelous in our eyes’?”12:11 +Psalms 118:22-23 + + +

They tried to seize him, but they feared the multitude; for they perceived that he spoke the parable against them. They left him and went away. + +They sent some of the Pharisees and the Herodians to him, that they might trap him with words. + +When they had come, they asked him, “Teacher, we know that you are honest, and don’t defer to anyone; for you aren’t partial to anyone, but truly teach the way of God. Is it lawful to pay taxes to Caesar, or not? + +Shall we give, or shall we not give?” +

+

But he, knowing their hypocrisy, said to them, +Why do you test me? Bring me a denarius, that I may see it.” + +

+

They brought it. +

+

He said to them, +Whose is this image and inscription?” +

+

They said to him, “Caesar’s.” + +

+

Jesus answered them, +Give to Caesar the things that are Caesar’s, and to God the things that are God’s.” +

+

They marveled greatly at him. + +

+

Some Sadducees, who say that there is no resurrection, came to him. They asked him, saying, + +Teacher, Moses wrote to us, ‘If a man’s brother dies and leaves a wife behind him, and leaves no children, that his brother should take his wife and raise up offspring for his brother.’ + +There were seven brothers. The first took a wife, and dying left no offspring. + +The second took her, and died, leaving no children behind him. The third likewise; + +and the seven took her and left no children. Last of all the woman also died. + +In the resurrection, when they rise, whose wife will she be of them? For the seven had her as a wife.” + +

+

Jesus answered them, +“Isn’t this because you are mistaken, not knowing the Scriptures nor the power of God? + + +For when they will rise from the dead, they neither marry nor are given in marriage, but are like angels in heaven. + + +But about the dead, that they are raised, haven’t you read in the book of Moses about the Bush, how God spoke to him, saying, ‘I am the God of Abraham, the God of Isaac, and the God of Jacob’?12:26 +Exodus 3:6 + +He is not the God of the dead, but of the living. You are therefore badly mistaken.” + +

+

One of the scribes came and heard them questioning together, and knowing that he had answered them well, asked him, “Which commandment is the greatest of all?” + +

+

Jesus answered, +The greatest is: ‘Hear, Israel, the Lord our God, the Lord is one. + + +You shall love the Lord your God with all your heart, with all your soul, with all your mind, and with all your strength.’12:30 +Deuteronomy 6:4-5 +This is the first commandment. + + +The second is like this: ‘You shall love your neighbor as yourself.’12:31 +Leviticus 19:18 +There is no other commandment greater than these.” + +

+

The scribe said to him, “Truly, teacher, you have said well that he is one, and there is none other but he; + +and to love him with all the heart, with all the understanding, all the soul, and with all the strength, and to love his neighbor as himself, is more important than all whole burnt offerings and sacrifices.” + +

+

When Jesus saw that he answered wisely, he said to him, +You are not far from God’s Kingdom.” +

+

No one dared ask him any question after that. + +Jesus responded, as he taught in the temple, +How is it that the scribes say that the Christ is the son of David? + + +For David himself said in the Holy Spirit, +

+The Lord said to my Lord, + +Sit at my right hand, + +until I make your enemies the footstool of your feet.”’12:36 +Psalms 110:1 + + +

Therefore David himself calls him Lord, so how can he be his son?” + +

+

The common people heard him gladly. + +In his teaching he said to them, +“Beware of the scribes, who like to walk in long robes, and to get greetings in the marketplaces, + + +and to get the best seats in the synagogues and the best places at feasts, + + +those who devour widowshouses, and for a pretense make long prayers. These will receive greater condemnation.” + +

+

Jesus sat down opposite the treasury and saw how the multitude cast money into the treasury. Many who were rich cast in much. + +A poor widow came and she cast in two small brass coins,12:42 +literally, lepta (or widow’s mites). Lepta are very small brass coins worth half a quadrans each, which is a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages. which equal a quadrans coin.12:42 +A quadrans is a coin worth about 1/64 of a denarius. A denarius is about one day’s wages for an agricultural laborer. + +He called his disciples to himself and said to them, +Most certainly I tell you, this poor widow gave more than all those who are giving into the treasury, + + +for they all gave out of their abundance, but she, out of her poverty, gave all that she had to live on.” + +

+ + +

As he went out of the temple, one of his disciples said to him, “Teacher, see what kind of stones and what kind of buildings!” + +

+

Jesus said to him, +Do you see these great buildings? There will not be left here one stone on another, which will not be thrown down.” + +

+

As he sat on the Mount of Olives opposite the temple, Peter, James, John, and Andrew asked him privately, + +Tell us, when will these things be? What is the sign that these things are all about to be fulfilled?” + +

+

Jesus, answering, began to tell them, +Be careful that no one leads you astray. + + +For many will come in my name, saying, ‘I am he!’13:6 +or, “I AM!” +and will lead many astray. + +

+

When you hear of wars and rumors of wars, don’t be troubled. For those must happen, but the end is not yet. + + +For nation will rise against nation, and kingdom against kingdom. There will be earthquakes in various places. There will be famines and troubles. These things are the beginning of birth pains. + + +

+

But watch yourselves, for they will deliver you up to councils. You will be beaten in synagogues. You will stand before rulers and kings for my sake, for a testimony to them. + + +The Good News must first be preached to all the nations. + + +When they lead you away and deliver you up, don’t be anxious beforehand or premeditate what you will say, but say whatever will be given you in that hour. For it is not you who speak, but the Holy Spirit. + +

+

“Brother will deliver up brother to death, and the father his child. Children will rise up against parents and cause them to be put to death. + + +You will be hated by all men for my name’s sake, but he who endures to the end will be saved. + + +

+

But when you see the abomination of desolation,13:14 +Daniel 9:17; 11:31; 12:11 +spoken of by Daniel the prophet, standing where it ought not (let the reader understand), +then let those who are in Judea flee to the mountains, + + +and let him who is on the housetop not go down, nor enter in, to take anything out of his house. + + +Let him who is in the field not return back to take his cloak. + + +But woe to those who are with child and to those who nurse babies in those days! + + +Pray that your flight won’t be in the winter. + + +For in those days there will be oppression, such as there has not been the like from the beginning of the creation which God created until now, and never will be. + + +Unless the Lord had shortened the days, no flesh would have been saved; but for the sake of the chosen ones, whom he picked out, he shortened the days. + + +Then if anyone tells you, ‘Look, here is the Christ!’ or, ‘Look, there!’ don’t believe it. + + +For false christs and false prophets will arise and will show signs and wonders, that they may lead astray, if possible, even the chosen ones. + + +But you watch. +

+

“Behold, I have told you all things beforehand. + + +But in those days, after that oppression, the sun will be darkened, the moon will not give its light, + + +the stars will be falling from the sky, and the powers that are in the heavens will be shaken.13:25 +Isaiah 13:10; 34:4 + +Then they will see the Son of Man coming in clouds with great power and glory. + + +Then he will send out his angels, and will gather together his chosen ones from the four winds, from the ends of the earth to the ends of the sky. + +

+

Now from the fig tree, learn this parable. When the branch has now become tender and produces its leaves, you know that the summer is near; + + +even so you also, when you see these things coming to pass, know that it is near, at the doors. + + +Most certainly I say to you, this generation13:30 +The word translated “generation” (genea) could also be translated “race”, “family”, or “people”. +will not pass away until all these things happen. + + +Heaven and earth will pass away, but my words will not pass away. + + +

+

But of that day or that hour no one knowsnot even the angels in heaven, nor the Son, but only the Father. + + +Watch, keep alert, and pray; for you don’t know when the time is. + + +

+

It is like a man traveling to another country, having left his house and given authority to his servants, and to each one his work, and also commanded the doorkeeper to keep watch. + + +Watch therefore, for you don’t know when the lord of the house is comingwhether at evening, or at midnight, or when the rooster crows, or in the morning; + + +lest, coming suddenly, he might find you sleeping. + + +What I tell you, I tell all: Watch!” + +

+ + +

It was now two days before the Passover and the Feast of Unleavened Bread, and the chief priests and the scribes sought how they might seize him by deception and kill him. + +For they said, “Not during the feast, because there might be a riot among the people.” + +

+

While he was at Bethany, in the house of Simon the leper, as he sat at the table, a woman came having an alabaster jar of ointment of pure nardvery costly. She broke the jar and poured it over his head. + +But there were some who were indignant among themselves, saying, “Why has this ointment been wasted? + +For this might have been sold for more than three hundred denarii14:5 +300 denarii was about a year’s wages for an agricultural laborer. + and given to the poor.” So they grumbled against her. + +

+

But Jesus said, +“Leave her alone. Why do you trouble her? She has done a good work for me. + + +For you always have the poor with you, and whenever you want to, you can do them good; but you will not always have me. + + +She has done what she could. She has anointed my body beforehand for the burying. + + +Most certainly I tell you, wherever this Good News may be preached throughout the whole world, that which this woman has done will also be spoken of for a memorial of her.” + +

+

Judas Iscariot, who was one of the twelve, went away to the chief priests, that he might deliver him to them. + +They, when they heard it, were glad, and promised to give him money. He sought how he might conveniently deliver him. + +

+

On the first day of unleavened bread, when they sacrificed the Passover, his disciples asked him, “Where do you want us to go and prepare that you may eat the Passover?” + +

+

He sent two of his disciples and said to them, +Go into the city, and there a man carrying a pitcher of water will meet you. Follow him, + + +and wherever he enters in, tell the master of the house, ‘The Teacher says, “Where is the guest room, where I may eat the Passover with my disciples?”’ + + +He will himself show you a large upper room furnished and ready. Get ready for us there.” + +

+

His disciples went out, and came into the city, and found things as he had said to them, and they prepared the Passover. + +

+

When it was evening he came with the twelve. + +As they sat and were eating, Jesus said, +Most certainly I tell you, one of you will betray mehe who eats with me.” + +

+

They began to be sorrowful, and to ask him one by one, “Surely not I?” And another said, “Surely not I?” + +

+

He answered them, +It is one of the twelve, he who dips with me in the dish. + + +For the Son of Man goes as it is written about him, but woe to that man by whom the Son of Man is betrayed! It would be better for that man if he had not been born.” + +

+

As they were eating, Jesus took bread, and when he had blessed it, he broke it and gave to them, and said, +Take, eat. This is my body.” + +

+

He took the cup, and when he had given thanks, he gave to them. They all drank of it. + +He said to them, +This is my blood of the new covenant, which is poured out for many. + + +Most certainly I tell you, I will no more drink of the fruit of the vine until that day when I drink it anew in God’s Kingdom.” + +When they had sung a hymn, they went out to the Mount of Olives. + +

+

Jesus said to them, +All of you will be made to stumble because of me tonight, for it is written, ‘I will strike the shepherd, and the sheep will be scattered.’14:27 +Zechariah 13:7 + +However, after I am raised up, I will go before you into Galilee.” + + +

+

But Peter said to him, “Although all will be offended, yet I will not.” + +

+

Jesus said to him, +“Most certainly I tell you that you today, even this night, before the rooster crows twice, you will deny me three times.” + + +

+

But he spoke all the more, “If I must die with you, I will not deny you.” They all said the same thing. + +

+

They came to a place which was named Gethsemane. He said to his disciples, +Sit here while I pray.” + +He took with him Peter, James, and John, and began to be greatly troubled and distressed. + +He said to them, +My soul is exceedingly sorrowful, even to death. Stay here and watch.” + +

+

He went forward a little, and fell on the ground, and prayed that if it were possible, the hour might pass away from him. + +He said, +“Abba,14:36 +Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. + +Father, all things are possible to you. Please remove this cup from me. However, not what I desire, but what you desire.” + + +

+

He came and found them sleeping, and said to Peter, +Simon, are you sleeping? Couldn’t you watch one hour? + + +Watch and pray, that you may not enter into temptation. The spirit indeed is willing, but the flesh is weak.” + +

+

Again he went away and prayed, saying the same words. + +Again he returned and found them sleeping, for their eyes were very heavy; and they didn’t know what to answer him. + +He came the third time and said to them, +Sleep on now, and take your rest. It is enough. The hour has come. Behold, the Son of Man is betrayed into the hands of sinners. + + +Arise! Let’s get going. Behold, he who betrays me is at hand.” + + +

+

Immediately, while he was still speaking, Judas, one of the twelve, cameand with him a multitude with swords and clubs, from the chief priests, the scribes, and the elders. + +Now he who betrayed him had given them a sign, saying, “Whomever I will kiss, that is he. Seize him, and lead him away safely.” + +When he had come, immediately he came to him and said, “Rabbi! Rabbi!” and kissed him. + +They laid their hands on him and seized him. + +But a certain one of those who stood by drew his sword and struck the servant of the high priest, and cut off his ear. + +

+

Jesus answered them, +Have you come out, as against a robber, with swords and clubs to seize me? + + +I was daily with you in the temple teaching, and you didn’t arrest me. But this is so that the Scriptures might be fulfilled.” + +

+

They all left him, and fled. + +A certain young man followed him, having a linen cloth thrown around himself over his naked body. The young men grabbed him, + +but he left the linen cloth and fled from them naked. + +They led Jesus away to the high priest. All the chief priests, the elders, and the scribes came together with him. + +

+

Peter had followed him from a distance, until he came into the court of the high priest. He was sitting with the officers, and warming himself in the light of the fire. + +Now the chief priests and the whole council sought witnesses against Jesus to put him to death, and found none. + +For many gave false testimony against him, and their testimony didn’t agree with each other. + +Some stood up and gave false testimony against him, saying, + +We heard him say, ‘I will destroy this temple that is made with hands, and in three days I will build another made without hands.’” + +Even so, their testimony didn’t agree. + +

+

The high priest stood up in the middle, and asked Jesus, “Have you no answer? What is it which these testify against you?” + +But he stayed quiet, and answered nothing. Again the high priest asked him, “Are you the Christ, the Son of the Blessed?” + +

+

Jesus said, +I am. You will see the Son of Man sitting at the right hand of Power, and coming with the clouds of the sky.” + +

+

The high priest tore his clothes and said, “What further need have we of witnesses? + +You have heard the blasphemy! What do you think?” They all condemned him to be worthy of death. + +Some began to spit on him, and to cover his face, and to beat him with fists, and to tell him, “Prophesy!” The officers struck him with the palms of their hands. + +

+

As Peter was in the courtyard below, one of the maids of the high priest came, + +and seeing Peter warming himself, she looked at him and said, “You were also with the Nazarene, Jesus!” + +

+

But he denied it, saying, “I neither know nor understand what you are saying.” He went out on the porch, and the rooster crowed. + +

+

The maid saw him and began again to tell those who stood by, “This is one of them.” + +But he again denied it. After a little while again those who stood by said to Peter, “You truly are one of them, for you are a Galilean, and your speech shows it.” + +But he began to curse and to swear, “I don’t know this man of whom you speak!” + +

+

The rooster crowed the second time. Peter remembered the words that Jesus said to him, +Before the rooster crows twice, you will deny me three times.” When he thought about that, he wept. + +

+ + +

Immediately in the morning the chief priests, with the elders, scribes, and the whole council, held a consultation, bound Jesus, carried him away, and delivered him up to Pilate. + +Pilate asked him, “Are you the King of the Jews?” +

+

He answered, +So you say.” + +

+

The chief priests accused him of many things. + +Pilate again asked him, “Have you no answer? See how many things they testify against you!” + +

+

But Jesus made no further answer, so that Pilate marveled. + +

+

Now at the feast he used to release to them one prisoner, whomever they asked of him. + +There was one called Barabbas, bound with his fellow insurgents, men who in the insurrection had committed murder. + +The multitude, crying aloud, began to ask him to do as he always did for them. + +Pilate answered them, saying, “Do you want me to release to you the King of the Jews?” + +For he perceived that for envy the chief priests had delivered him up. + +But the chief priests stirred up the multitude, that he should release Barabbas to them instead. + +Pilate again asked them, “What then should I do to him whom you call the King of the Jews?” + +

+

They cried out again, “Crucify him!” + +

+

Pilate said to them, “Why, what evil has he done?” +

+

But they cried out exceedingly, “Crucify him!” + +

+

Pilate, wishing to please the multitude, released Barabbas to them, and handed over Jesus, when he had flogged him, to be crucified. + +

+

The soldiers led him away within the court, which is the Praetorium; and they called together the whole cohort. + +They clothed him with purple; and weaving a crown of thorns, they put it on him. + +They began to salute him, “Hail, King of the Jews!” + +They struck his head with a reed and spat on him, and bowing their knees, did homage to him. + +When they had mocked him, they took the purple cloak off him, and put his own garments on him. They led him out to crucify him. + +

+

They compelled one passing by, coming from the country, Simon of Cyrene, the father of Alexander and Rufus, to go with them that he might bear his cross. + +They brought him to the place called Golgotha, which is, being interpreted, “The place of a skull.” + +They offered him wine mixed with myrrh to drink, but he didn’t take it. + +

+

Crucifying him, they parted his garments among them, casting lots on them, what each should take. + +It was the third hour15:25 +9:00 a.m. when they crucified him. + +The superscription of his accusation was written over him: “THE KING OF THE JEWS.” + +With him they crucified two robbers, one on his right hand, and one on his left. + +The Scripture was fulfilled which says, “He was counted with transgressors.”15:28 +NU omits verse 28. + +

+

Those who passed by blasphemed him, wagging their heads and saying, “Ha! You who destroy the temple and build it in three days, + +save yourself, and come down from the cross!” + +

+

Likewise, also the chief priests mocking among themselves with the scribes said, “He saved others. He cant save himself. + +Let the Christ, the King of Israel, now come down from the cross, that we may see and believe him.”15:32 +TR omits “him” Those who were crucified with him also insulted him. + +

+

When the sixth hour15:33 +or, noon had come, there was darkness over the whole land until the ninth hour.15:33 +3:00 p.m. + +At the ninth hour Jesus cried with a loud voice, saying, +Eloi, Eloi, lama sabachthani?” which is, being interpreted, +My God, my God, why have you forsaken me?” +15:34 +Psalms 22:1 + +

+

Some of those who stood by, when they heard it, said, “Behold, he is calling Elijah.” + +

+

One ran, and filling a sponge full of vinegar, put it on a reed and gave it to him to drink, saying, “Let him be. Let’s see whether Elijah comes to take him down.” + +

+

Jesus cried out with a loud voice, and gave up the spirit. + +The veil of the temple was torn in two from the top to the bottom. + +When the centurion, who stood by opposite him, saw that he cried out like this and breathed his last, he said, “Truly this man was the Son of God!” + +

+

There were also women watching from afar, among whom were both Mary Magdalene and Mary the mother of James the less and of Joses, and Salome; + +who, when he was in Galilee, followed him and served him; and many other women who came up with him to Jerusalem. + +

+

When evening had now come, because it was the Preparation Day, that is, the day before the Sabbath, + +Joseph of Arimathaea, a prominent council member who also himself was looking for God’s Kingdom, came. He boldly went in to Pilate, and asked for Jesusbody. + +Pilate was surprised to hear that he was already dead; and summoning the centurion, he asked him whether he had been dead long. + +When he found out from the centurion, he granted the body to Joseph. + +He bought a linen cloth, and taking him down, wound him in the linen cloth and laid him in a tomb which had been cut out of a rock. He rolled a stone against the door of the tomb. + +Mary Magdalene and Mary the mother of Joses, saw where he was laid. + +

+ + +

When the Sabbath was past, Mary Magdalene, and Mary the mother of James, and Salome bought spices, that they might come and anoint him. + +Very early on the first day of the week, they came to the tomb when the sun had risen. + +They were saying among themselves, “Who will roll away the stone from the door of the tomb for us?” + +for it was very big. Looking up, they saw that the stone was rolled back. + +

+

Entering into the tomb, they saw a young man sitting on the right side, dressed in a white robe; and they were amazed. + +He said to them, “Don’t be amazed. You seek Jesus, the Nazarene, who has been crucified. He has risen! He is not here. See the place where they laid him! + +But go, tell his disciples and Peter, ‘He goes before you into Galilee. There you will see him, as he said to you.’” + +

+

They went out,16:8 +TR adds “quickly” and fled from the tomb, for trembling and astonishment had come on them. They said nothing to anyone; for they were afraid.16:8 +One isolated manuscript omits verses 9-20 but adds this “short ending of Mark” to the end of verse 8: +They told all that had been commanded them briefly to those around Peter. After that, Jesus himself sent them out, from east to west, with the sacred and imperishable proclamation of eternal salvation. + +

+

16:9 +NU includes the text of verses 9-20, but mentions in a footnote that a few manuscripts omitted it. The translators of the World English Bible regard Mark 16:9-20 as reliable based on an overwhelming majority of textual evidence, including not only the authoritative Greek Majority Text New Testament, but also the TR and many of the manuscripts cited in the NU text.Now when he had risen early on the first day of the week, he appeared first to Mary Magdalene, from whom he had cast out seven demons. + +She went and told those who had been with him, as they mourned and wept. + +When they heard that he was alive and had been seen by her, they disbelieved. + +

+

After these things he was revealed in another form to two of them as they walked, on their way into the country. + +They went away and told it to the rest. They didn’t believe them, either. + +

+

Afterward he was revealed to the eleven themselves as they sat at the table; and he rebuked them for their unbelief and hardness of heart, because they didn’t believe those who had seen him after he had risen. + +He said to them, +Go into all the world and preach the Good News to the whole creation. + + +He who believes and is baptized will be saved; but he who disbelieves will be condemned. + + +These signs will accompany those who believe: in my name they will cast out demons; they will speak with new languages; + + +they will take up serpents; and if they drink any deadly thing, it will in no way hurt them; they will lay hands on the sick, and they will recover.” + +

+

So then the Lord,16:19 +NU adds “Jesus” after he had spoken to them, was received up into heaven and sat down at the right hand of God. + +They went out and preached everywhere, the Lord working with them and confirming the word by the signs that followed. Amen. + +

+
+42-LUK-web.sfm World English Bible (WEB) +Luke +The Good News According to Luke +Luke +Luk +

The Good News According to +

+

Luke +

+ + +

Since many have undertaken to set in order a narrative concerning those matters which have been fulfilled among us, + +even as those who from the beginning were eyewitnesses and servants of the word delivered them to us, + +it seemed good to me also, having traced the course of all things accurately from the first, to write to you in order, most excellent Theophilus; + +that you might know the certainty concerning the things in which you were instructed. + +

+

There was in the days of Herod, the king of Judea, a certain priest named Zacharias, of the priestly division of Abijah. He had a wife of the daughters of Aaron, and her name was Elizabeth. + +They were both righteous before God, walking blamelessly in all the commandments and ordinances of the Lord. + +But they had no child, because Elizabeth was barren, and they both were well advanced in years. + +

+

Now while he executed the priest’s office before God in the order of his division + +according to the custom of the priest’s office, his lot was to enter into the temple of the Lord and burn incense. + +The whole multitude of the people were praying outside at the hour of incense. + +

+

An angel of the Lord appeared to him, standing on the right side of the altar of incense. + +Zacharias was troubled when he saw him, and fear fell upon him. + +But the angel said to him, “Don’t be afraid, Zacharias, because your request has been heard. Your wife, Elizabeth, will bear you a son, and you shall call his name John. + +You will have joy and gladness, and many will rejoice at his birth. + +For he will be great in the sight of the Lord, and he will drink no wine nor strong drink. He will be filled with the Holy Spirit, even from his mothers womb. + +He will turn many of the children of Israel to the Lord their God. + +He will go before him in the spirit and power of Elijah, ‘to turn the hearts of the fathers to the children,’1:17 +Malachi 4:6 and the disobedient to the wisdom of the just; to prepare a people prepared for the Lord.” + +

+

Zacharias said to the angel, “How can I be sure of this? For I am an old man, and my wife is well advanced in years.” + +

+

The angel answered him, “I am Gabriel, who stands in the presence of God. I was sent to speak to you and to bring you this good news. + +Behold,1:20 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. you will be silent and not able to speak until the day that these things will happen, because you didn’t believe my words, which will be fulfilled in their proper time.” + +

+

The people were waiting for Zacharias, and they marveled that he delayed in the temple. + +When he came out, he could not speak to them. They perceived that he had seen a vision in the temple. He continued making signs to them, and remained mute. + +When the days of his service were fulfilled, he departed to his house. + +After these days Elizabeth his wife conceived, and she hid herself five months, saying, + +Thus has the Lord done to me in the days in which he looked at me, to take away my reproach among men.” + +

+

Now in the sixth month, the angel Gabriel was sent from God to a city of Galilee named Nazareth, + +to a virgin pledged to be married to a man whose name was Joseph, of David’s house. The virgin’s name was Mary. + +Having come in, the angel said to her, “Rejoice, you highly favored one! The Lord is with you. Blessed are you among women!” + +

+

But when she saw him, she was greatly troubled at the saying, and considered what kind of salutation this might be. + +The angel said to her, “Don’t be afraid, Mary, for you have found favor with God. + +Behold, you will conceive in your womb and give birth to a son, and shall name himJesus.’ + +He will be great and will be called the Son of the Most High. The Lord God will give him the throne of his father David, + +and he will reign over the house of Jacob forever. There will be no end to his Kingdom.” + +

+

Mary said to the angel, “How can this be, seeing I am a virgin?” + +

+

The angel answered her, “The Holy Spirit will come on you, and the power of the Most High will overshadow you. Therefore also the holy one who is born from you will be called the Son of God. + +Behold, Elizabeth your relative also has conceived a son in her old age; and this is the sixth month with her who was called barren. + +For nothing spoken by God is impossible.”1:37 +or, “For everything spoken by God is possible.” + +

+

Mary said, “Behold, the servant of the Lord; let it be done to me according to your word.” +

+

Then the angel departed from her. + +

+

Mary arose in those days and went into the hill country with haste, into a city of Judah, + +and entered into the house of Zacharias and greeted Elizabeth. + +When Elizabeth heard Mary’s greeting, the baby leaped in her womb; and Elizabeth was filled with the Holy Spirit. + +She called out with a loud voice and said, “Blessed are you among women, and blessed is the fruit of your womb! + +Why am I so favored, that the mother of my Lord should come to me? + +For behold, when the voice of your greeting came into my ears, the baby leaped in my womb for joy! + +Blessed is she who believed, for there will be a fulfillment of the things which have been spoken to her from the Lord!” + +

+

Mary said, +

+My soul magnifies the Lord. + + +My spirit has rejoiced in God my Savior, + + +for he has looked at the humble state of his servant. + +For behold, from now on, all generations will call me blessed. + + +For he who is mighty has done great things for me. + +Holy is his name. + + +His mercy is for generations and generations on those who fear him. + + +He has shown strength with his arm. + +He has scattered the proud in the imagination of their hearts. + + +He has put down princes from their thrones, + +and has exalted the lowly. + + +He has filled the hungry with good things. + +He has sent the rich away empty. + + +He has given help to Israel, his servant, that he might remember mercy, + + +as he spoke to our fathers, + +to Abraham and his offspring1:55 +or, seed forever.” + + +

Mary stayed with her about three months, and then returned to her house. + +

+

Now the time that Elizabeth should give birth was fulfilled, and she gave birth to a son. + +Her neighbors and her relatives heard that the Lord had magnified his mercy toward her, and they rejoiced with her. + +On the eighth day, they came to circumcise the child; and they would have called him Zacharias, after the name of his father. + +His mother answered, “Not so; but he will be called John.” + +

+

They said to her, “There is no one among your relatives who is called by this name.” + +They made signs to his father, what he would have him called. + +

+

He asked for a writing tablet, and wrote, “His name is John.” +

+

They all marveled. + +His mouth was opened immediately and his tongue freed, and he spoke, blessing God. + +Fear came on all who lived around them, and all these sayings were talked about throughout all the hill country of Judea. + +All who heard them laid them up in their heart, saying, “What then will this child be?” The hand of the Lord was with him. + +

+

His father Zacharias was filled with the Holy Spirit, and prophesied, saying, + +

+Blessed be the Lord, the God of Israel, + +for he has visited and redeemed his people; + + +and has raised up a horn of salvation for us in the house of his servant David + + +(as he spoke by the mouth of his holy prophets who have been from of old), + + +salvation from our enemies and from the hand of all who hate us; + + +to show mercy toward our fathers, + +to remember his holy covenant, + + +the oath which he swore to Abraham our father, + + +to grant to us that we, being delivered out of the hand of our enemies, + +should serve him without fear, + + +in holiness and righteousness before him all the days of our life. + + +And you, child, will be called a prophet of the Most High; + +for you will go before the face of the Lord to prepare his ways, + + +to give knowledge of salvation to his people by the remission of their sins, + + +because of the tender mercy of our God, + +by which the dawn from on high will visit us, + + +to shine on those who sit in darkness and the shadow of death; + +to guide our feet into the way of peace.” + + +

The child was growing and becoming strong in spirit, and was in the desert until the day of his public appearance to Israel. + +

+ + +

Now in those days, a decree went out from Caesar Augustus that all the world should be enrolled. + +This was the first enrollment made when Quirinius was governor of Syria. + +All went to enroll themselves, everyone to his own city. + +Joseph also went up from Galilee, out of the city of Nazareth, into Judea, to David’s city, which is called Bethlehem, because he was of the house and family of David, + +to enroll himself with Mary, who was pledged to be married to him as wife, being pregnant. + +

+

While they were there, the day had come for her to give birth. + +She gave birth to her firstborn son. She wrapped him in bands of cloth and laid him in a feeding trough, because there was no room for them in the inn. + +

+

There were shepherds in the same country staying in the field, and keeping watch by night over their flock. + +Behold, an angel of the Lord stood by them, and the glory of the Lord shone around them, and they were terrified. + +The angel said to them, “Don’t be afraid, for behold, I bring you good news of great joy which will be to all the people. + +For there is born to you today, in Davids city, a Savior, who is Christ2:11 +“Christ” means “Anointed One”. the Lord. + +This is the sign to you: you will find a baby wrapped in strips of cloth, lying in a feeding trough.” + +Suddenly, there was with the angel a multitude of the heavenly army praising God and saying, + +

+Glory to God in the highest, + +on earth peace, good will toward men.” + + +

When the angels went away from them into the sky, the shepherds said to one another, “Lets go to Bethlehem, now, and see this thing that has happened, which the Lord has made known to us.” + +They came with haste and found both Mary and Joseph, and the baby was lying in the feeding trough. + +When they saw it, they publicized widely the saying which was spoken to them about this child. + +All who heard it wondered at the things which were spoken to them by the shepherds. + +But Mary kept all these sayings, pondering them in her heart. + +The shepherds returned, glorifying and praising God for all the things that they had heard and seen, just as it was told them. + +

+

When eight days were fulfilled for the circumcision of the child, his name was called Jesus, which was given by the angel before he was conceived in the womb. + +

+

When the days of their purification according to the law of Moses were fulfilled, they brought him up to Jerusalem to present him to the Lord + +(as it is written in the law of the Lord, “Every male who opens the womb shall be called holy to the Lord”),2:23 +Exodus 13:2,12 + +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:24 +Leviticus 12:8 + +

+

Behold, there was a man in Jerusalem whose name was Simeon. This man was righteous and devout, looking for the consolation of Israel, and the Holy Spirit was on him. + +It had been revealed to him by the Holy Spirit that he should not see death before he had seen the Lords Christ.2:26 +“Christ” (Greek) and “Messiah” (Hebrew) both mean “Anointed One” + +He came in the Spirit into the temple. When the parents brought in the child, Jesus, that they might do concerning him according to the custom of the law, + +then he received him into his arms and blessed God, and said, + +

+Now you are releasing your servant, Master, + +according to your word, in peace; + + +for my eyes have seen your salvation, + + +which you have prepared before the face of all peoples; + + +a light for revelation to the nations, + +and the glory of your people Israel.” + + +

Joseph and his mother were marveling at the things which were spoken concerning him. + +Simeon blessed them, and said to Mary, his mother, “Behold, this child is appointed for the falling and the rising of many in Israel, and for a sign which is spoken against. + +Yes, a sword will pierce through your own soul, that the thoughts of many hearts may be revealed.” + +

+

There was one Anna, a prophetess, the daughter of Phanuel, of the tribe of Asher (she was of a great age, having lived with a husband seven years from her virginity, + +and she had been a widow for about eighty-four years), who didn’t depart from the temple, worshiping with fastings and petitions night and day. + +Coming up at that very hour, she gave thanks to the Lord, and spoke of him to all those who were looking for redemption in Jerusalem. + +

+

When they had accomplished all things that were according to the law of the Lord, they returned into Galilee, to their own city, Nazareth. + +The child was growing, and was becoming strong in spirit, being filled with wisdom, and the grace of God was upon him. + +

+

His parents went every year to Jerusalem at the feast of the Passover. + +When he was twelve years old, they went up to Jerusalem according to the custom of the feast; + +and when they had fulfilled the days, as they were returning, the boy Jesus stayed behind in Jerusalem. Joseph and his mother didn’t know it, + +but supposing him to be in the company, they went a day’s journey; and they looked for him among their relatives and acquaintances. + +When they didn’t find him, they returned to Jerusalem, looking for him. + +After three days they found him in the temple, sitting in the middle of the teachers, both listening to them and asking them questions. + +All who heard him were amazed at his understanding and his answers. + +When they saw him, they were astonished; and his mother said to him, “Son, why have you treated us this way? Behold, your father and I were anxiously looking for you.” + +

+

He said to them, +Why were you looking for me? Didn’t you know that I must be in my Father’s house?” + +They didn’t understand the saying which he spoke to them. + +And he went down with them and came to Nazareth. He was subject to them, and his mother kept all these sayings in her heart. + +And Jesus increased in wisdom and stature, and in favor with God and men. + +

+ + +

Now in the fifteenth year of the reign of Tiberius Caesar, Pontius Pilate being governor of Judea, and Herod being tetrarch of Galilee, and his brother Philip tetrarch of the region of Ituraea and Trachonitis, and Lysanias tetrarch of Abilene, + +during the high priesthood of Annas and Caiaphas, the word of God came to John, the son of Zacharias, in the wilderness. + +He came into all the region around the Jordan, preaching the baptism of repentance for remission of sins. + +As it is written in the book of the words of Isaiah the prophet, +

+The voice of one crying in the wilderness, + +Make ready the way of the Lord. + +Make his paths straight. + + +Every valley will be filled. + +Every mountain and hill will be brought low. + +The crooked will become straight, + +and the rough ways smooth. + + +All flesh will see God’s salvation.’”3:6 +Isaiah 40:3-5 + + +

He said therefore to the multitudes who went out to be baptized by him, “You offspring of vipers, who warned you to flee from the wrath to come? + +Therefore produce fruits worthy of repentance, and don’t begin to say among yourselves, ‘We have Abraham for our father;’ for I tell you that God is able to raise up children to Abraham from these stones! + +Even now the ax also lies at the root of the trees. Every tree therefore that doesn’t produce good fruit is cut down and thrown into the fire.” + +

+

The multitudes asked him, “What then must we do?” + +

+

He answered them, “He who has two coats, let him give to him who has none. He who has food, let him do likewise.” + +

+

Tax collectors also came to be baptized, and they said to him, “Teacher, what must we do?” + +

+

He said to them, “Collect no more than that which is appointed to you.” + +

+

Soldiers also asked him, saying, “What about us? What must we do?” +

+

He said to them, “Extort from no one by violence, neither accuse anyone wrongfully. Be content with your wages.” + +

+

As the people were in expectation, and all men reasoned in their hearts concerning John, whether perhaps he was the Christ, + +John answered them all, “I indeed baptize you with water, but he comes who is mightier than I, the strap of whose sandals I am not worthy to loosen. He will baptize you in the Holy Spirit and fire. + +His winnowing fan is in his hand, and he will thoroughly cleanse his threshing floor, and will gather the wheat into his barn; but he will burn up the chaff with unquenchable fire.” + +

+

Then with many other exhortations he preached good news to the people, + +but Herod the tetrarch,3:19 +a tetrarch is one of four governors of a province being reproved by him for Herodias, his brother’s3:19 +TR reads “brother Philip’s” instead of “brother’s” wife, and for all the evil things which Herod had done, + +added this also to them all, that he shut up John in prison. + +

+

Now when all the people were baptized, Jesus also had been baptized and was praying. The sky was opened, + +and the Holy Spirit descended in a bodily form like a dove on him; and a voice came out of the sky, saying “You are my beloved Son. In you I am well pleased.” + +

+

Jesus himself, when he began to teach, was about thirty years old, being the son (as was supposed) of Joseph, the son of Heli, + +the son of Matthat, the son of Levi, the son of Melchi, the son of Jannai, the son of Joseph, + +the son of Mattathias, the son of Amos, the son of Nahum, the son of Esli, the son of Naggai, + +the son of Maath, the son of Mattathias, the son of Semein, the son of Joseph, the son of Judah, + +the son of Joanan, the son of Rhesa, the son of Zerubbabel, the son of Shealtiel, the son of Neri, + +the son of Melchi, the son of Addi, the son of Cosam, the son of Elmodam, the son of Er, + +the son of Jose, the son of Eliezer, the son of Jorim, the son of Matthat, the son of Levi, + +the son of Simeon, the son of Judah, the son of Joseph, the son of Jonan, the son of Eliakim, + +the son of Melea, the son of Menan, the son of Mattatha, the son of Nathan, the son of David, + +the son of Jesse, the son of Obed, the son of Boaz, the son of Salmon, the son of Nahshon, + +the son of Amminadab, the son of Aram,3:33 +NU reads “Admin, the son of Arni” instead of “Aram” the son of Hezron, the son of Perez, the son of Judah, + +the son of Jacob, the son of Isaac, the son of Abraham, the son of Terah, the son of Nahor, + +the son of Serug, the son of Reu, the son of Peleg, the son of Eber, the son of Shelah, + +the son of Cainan, the son of Arphaxad, the son of Shem, the son of Noah, the son of Lamech, + +the son of Methuselah, the son of Enoch, the son of Jared, the son of Mahalaleel, the son of Cainan, + +the son of Enos, the son of Seth, the son of Adam, the son of God. + +

+ + +

Jesus, full of the Holy Spirit, returned from the Jordan and was led by the Spirit into the wilderness + +for forty days, being tempted by the devil. He ate nothing in those days. Afterward, when they were completed, he was hungry. + +

+

The devil said to him, “If you are the Son of God, command this stone to become bread.” + +

+

Jesus answered him, saying, +It is written, ‘Man shall not live by bread alone, but by every word of God.’”4:4 +Deuteronomy 8:3 + +

+

The devil, leading him up on a high mountain, showed him all the kingdoms of the world in a moment of time. + +The devil said to him, “I will give you all this authority and their glory, for it has been delivered to me, and I give it to whomever I want. + +If you therefore will worship before me, it will all be yours.” + +

+

Jesus answered him, +Get behind me, Satan! For it is written, ‘You shall worship the Lord your God, and you shall serve him only.’”4:8 +Deuteronomy 6:13 + +

+

He led him to Jerusalem and set him on the pinnacle of the temple, and said to him, “If you are the Son of God, cast yourself down from here, + +for it is written, +

+He will put his angels in charge of you, to guard you;’ + + +

and, +

+On their hands they will bear you up, + +lest perhaps you dash your foot against a stone.’”4:11 +Psalms 91:11-12 + + + +

Jesus answering, said to him, +It has been said, ‘You shall not tempt the Lord your God.’”4:12 +Deuteronomy 6:16 + +

+

When the devil had completed every temptation, he departed from him until another time. + +

+

Jesus returned in the power of the Spirit into Galilee, and news about him spread through all the surrounding area. + +He taught in their synagogues, being glorified by all. + +

+

He came to Nazareth, where he had been brought up. He entered, as was his custom, into the synagogue on the Sabbath day, and stood up to read. + +The book of the prophet Isaiah was handed to him. He opened the book, and found the place where it was written, + +

+The Spirit of the Lord is on me, + +because he has anointed me to preach good news to the poor. + +He has sent me to heal the broken hearted,4:18 +NU omits “to heal the broken hearted” + +to proclaim release to the captives, + +recovering of sight to the blind, + +to deliver those who are crushed, + + +and to proclaim the acceptable year of the Lord.”4:19 +Isaiah 61:1-2 + + +

He closed the book, gave it back to the attendant, and sat down. The eyes of all in the synagogue were fastened on him. + +He began to tell them, +Today, this Scripture has been fulfilled in your hearing.” + +

+

All testified about him and wondered at the gracious words which proceeded out of his mouth; and they said, “Isn’t this Joseph’s son?” + +

+

He said to them, +“Doubtless you will tell me this proverb, ‘Physician, heal yourself! Whatever we have heard done at Capernaum, do also here in your hometown.’” + +He said, +“Most certainly I tell you, no prophet is acceptable in his hometown. + + +But truly I tell you, there were many widows in Israel in the days of Elijah, when the sky was shut up three years and six months, when a great famine came over all the land. + + +Elijah was sent to none of them, except to Zarephath, in the land of Sidon, to a woman who was a widow. + + +There were many lepers in Israel in the time of Elisha the prophet, yet not one of them was cleansed, except Naaman, the Syrian.” + +

+

They were all filled with wrath in the synagogue as they heard these things. + +They rose up, threw him out of the city, and led him to the brow of the hill that their city was built on, that they might throw him off the cliff. + +But he, passing through the middle of them, went his way. + +

+

He came down to Capernaum, a city of Galilee. He was teaching them on the Sabbath day, + +and they were astonished at his teaching, for his word was with authority. + +In the synagogue there was a man who had a spirit of an unclean demon; and he cried out with a loud voice, + +saying, “Ah! what have we to do with you, Jesus of Nazareth? Have you come to destroy us? I know who you are: the Holy One of God!” + +

+

Jesus rebuked him, saying, +Be silent and come out of him!” + When the demon had thrown him down in the middle of them, he came out of him, having done him no harm. + +

+

Amazement came on all and they spoke together, one with another, saying, “What is this word? For with authority and power he commands the unclean spirits, and they come out!” + +News about him went out into every place of the surrounding region. + +

+

He rose up from the synagogue and entered into Simon’s house. Simon’s mother-in-law was afflicted with a great fever, and they begged him to help her. + +He stood over her and rebuked the fever, and it left her. Immediately she rose up and served them. + +When the sun was setting, all those who had any sick with various diseases brought them to him; and he laid his hands on every one of them, and healed them. + +Demons also came out of many, crying out and saying, “You are the Christ, the Son of God!” Rebuking them, he didn’t allow them to speak, because they knew that he was the Christ. + +

+

When it was day, he departed and went into an uninhabited place and the multitudes looked for him, and came to him, and held on to him, so that he wouldn’t go away from them. + +But he said to them, +I must preach the good news of God’s Kingdom to the other cities also. For this reason I have been sent.” + +He was preaching in the synagogues of Galilee. + +

+ + +

Now while the multitude pressed on him and heard the word of God, he was standing by the lake of Gennesaret. + +He saw two boats standing by the lake, but the fishermen had gone out of them and were washing their nets. + +He entered into one of the boats, which was Simon’s, and asked him to put out a little from the land. He sat down and taught the multitudes from the boat. + +

+

When he had finished speaking, he said to Simon, +Put out into the deep and let down your nets for a catch.” + +

+

Simon answered him, “Master, we worked all night and caught nothing; but at your word I will let down the net.” + +When they had done this, they caught a great multitude of fish, and their net was breaking. + +They beckoned to their partners in the other boat, that they should come and help them. They came and filled both boats, so that they began to sink. + +But Simon Peter, when he saw it, fell down at Jesusknees, saying, “Depart from me, for I am a sinful man, Lord.” + +For he was amazed, and all who were with him, at the catch of fish which they had caught; + +and so also were James and John, sons of Zebedee, who were partners with Simon. +

+

Jesus said to Simon, +“Don’t be afraid. From now on you will be catching people alive.” + +

+

When they had brought their boats to land, they left everything, and followed him. + +

+

While he was in one of the cities, behold, there was a man full of leprosy. When he saw Jesus, he fell on his face and begged him, saying, “Lord, if you want to, you can make me clean.” + +

+

He stretched out his hand and touched him, saying, +I want to. Be made clean.” +

+

Immediately the leprosy left him. + +He commanded him to tell no one, +But go your way and show yourself to the priest, and offer for your cleansing according to what Moses commanded, for a testimony to them.” + +

+

But the report concerning him spread much more, and great multitudes came together to hear and to be healed by him of their infirmities. + +But he withdrew himself into the desert and prayed. + +

+

On one of those days, he was teaching; and there were Pharisees and teachers of the law sitting by who had come out of every village of Galilee, Judea, and Jerusalem. The power of the Lord was with him to heal them. + +Behold, men brought a paralyzed man on a cot, and they sought to bring him in to lay before Jesus. + +Not finding a way to bring him in because of the multitude, they went up to the housetop and let him down through the tiles with his cot into the middle before Jesus. + +Seeing their faith, he said to him, +“Man, your sins are forgiven you.” + +

+

The scribes and the Pharisees began to reason, saying, “Who is this who speaks blasphemies? Who can forgive sins, but God alone?” + +

+

But Jesus, perceiving their thoughts, answered them, +Why are you reasoning so in your hearts? + + +Which is easier to say, ‘Your sins are forgiven you,’ or to say, ‘Arise and walk’? + + +But that you may know that the Son of Man has authority on earth to forgive sins,” he said to the paralyzed man, +I tell you, arise, take up your cot, and go to your house.” + +

+

Immediately he rose up before them, and took up that which he was laying on, and departed to his house, glorifying God. + +Amazement took hold on all, and they glorified God. They were filled with fear, saying, “We have seen strange things today.” + +

+

After these things he went out and saw a tax collector named Levi sitting at the tax office, and said to him, +Follow me!” + +

+

He left everything, and rose up and followed him. + +Levi made a great feast for him in his house. There was a great crowd of tax collectors and others who were reclining with them. + +Their scribes and the Pharisees murmured against his disciples, saying, “Why do you eat and drink with the tax collectors and sinners?” + +

+

Jesus answered them, +Those who are healthy have no need for a physician, but those who are sick do. + + +I have not come to call the righteous, but sinners, to repentance.” + + +

+

They said to him, “Why do John’s disciples often fast and pray, likewise also the disciples of the Pharisees, but yours eat and drink?” + +

+

He said to them, +Can you make the friends of the bridegroom fast while the bridegroom is with them? + + +But the days will come when the bridegroom will be taken away from them. Then they will fast in those days.” + +

+

He also told a parable to them. +No one puts a piece from a new garment on an old garment, or else he will tear the new, and also the piece from the new will not match the old. + + +No one puts new wine into old wineskins, or else the new wine will burst the skins, and it will be spilled and the skins will be destroyed. + + +But new wine must be put into fresh wineskins, and both are preserved. + + +No man having drunk old wine immediately desires new, for he says, ‘The old is better.’” + +

+ + +

Now on the second Sabbath after the first, he was going through the grain fields. His disciples plucked the heads of grain and ate, rubbing them in their hands. + +But some of the Pharisees said to them, “Why do you do that which is not lawful to do on the Sabbath day?” + +

+

Jesus, answering them, said, +“Haven’t you read what David did when he was hungry, he and those who were with him, + + +how he entered into God’s house, and took and ate the show bread, and gave also to those who were with him, which is not lawful to eat except for the priests alone?” + +He said to them, +The Son of Man is lord of the Sabbath.” + +

+

It also happened on another Sabbath that he entered into the synagogue and taught. There was a man there, and his right hand was withered. + +The scribes and the Pharisees watched him, to see whether he would heal on the Sabbath, that they might find an accusation against him. + +But he knew their thoughts; and he said to the man who had the withered hand, +Rise up and stand in the middle.” He arose and stood. + +Then Jesus said to them, +I will ask you something: Is it lawful on the Sabbath to do good, or to do harm? To save a life, or to kill?” + +He looked around at them all, and said to the man, +Stretch out your hand.” He did, and his hand was restored as sound as the other. + +But they were filled with rage, and talked with one another about what they might do to Jesus. + +

+

In these days, he went out to the mountain to pray, and he continued all night in prayer to God. + +When it was day, he called his disciples, and from them he chose twelve, whom he also named apostles: + +Simon, whom he also named Peter; Andrew, his brother; James; John; Philip; Bartholomew; + +Matthew; Thomas; James the son of Alphaeus; Simon who was called the Zealot; + +Judas the son of James; and Judas Iscariot, who also became a traitor. + +

+

He came down with them and stood on a level place, with a crowd of his disciples and a great number of the people from all Judea and Jerusalem and the sea coast of Tyre and Sidon, who came to hear him and to be healed of their diseases, + +as well as those who were troubled by unclean spirits; and they were being healed. + +All the multitude sought to touch him, for power came out of him and healed them all. + +

+

He lifted up his eyes to his disciples, and said: +

+Blessed are you who are poor, + +for God’s Kingdom is yours. + + +Blessed are you who hunger now, + +for you will be filled. + +Blessed are you who weep now, + +for you will laugh. + + +Blessed are you when men hate you, and when they exclude and mock you, and throw out your name as evil, for the Son of Man’s sake. + + + +Rejoice in that day and leap for joy, for behold, your reward is great in heaven, for their fathers did the same thing to the prophets. + + + +But woe to you who are rich! + +For you have received your consolation. + + +Woe to you, you who are full now, + +for you will be hungry. + +Woe to you who laugh now, + +for you will mourn and weep. + + +Woe,6:26 +TR adds “to you” +when6:26 +TR adds “all” + +men speak well of you, + +for their fathers did the same thing to the false prophets. + + +

But I tell you who hear: love your enemies, do good to those who hate you, + + +bless those who curse you, and pray for those who mistreat you. + + +To him who strikes you on the cheek, offer also the other; and from him who takes away your cloak, don’t withhold your coat also. + + +Give to everyone who asks you, and don’t ask him who takes away your goods to give them back again. + +

+

As you would like people to do to you, do exactly so to them. + + +

+

If you love those who love you, what credit is that to you? For even sinners love those who love them. + + +If you do good to those who do good to you, what credit is that to you? For even sinners do the same. + + +If you lend to those from whom you hope to receive, what credit is that to you? Even sinners lend to sinners, to receive back as much. + + +But love your enemies, and do good, and lend, expecting nothing back; and your reward will be great, and you will be children of the Most High; for he is kind toward the unthankful and evil. + +

+“Therefore be merciful, + +even as your Father is also merciful. + + +Don’t judge, + +and you won’t be judged. + +Don’t condemn, + +and you won’t be condemned. + +Set free, + +and you will be set free. + + +

Give, and it will be given to you: good measure, pressed down, shaken together, and running over, will be given to you.6:38 +literally, into your bosom. +For with the same measure you measure it will be measured back to you.” + +

+

He spoke a parable to them. +Can the blind guide the blind? Won’t they both fall into a pit? + + +A disciple is not above his teacher, but everyone when he is fully trained will be like his teacher. + + +Why do you see the speck of chaff that is in your brother’s eye, but don’t consider the beam that is in your own eye? + + +Or how can you tell your brother, ‘Brother, let me remove the speck of chaff that is in your eye,’ when you yourself don’t see the beam that is in your own eye? You hypocrite! First remove the beam from your own eye, and then you can see clearly to remove the speck of chaff that is in your brother’s eye. + + +

+

For there is no good tree that produces rotten fruit, nor again a rotten tree that produces good fruit. + + +For each tree is known by its own fruit. For people don’t gather figs from thorns, nor do they gather grapes from a bramble bush. + + +The good man out of the good treasure of his heart brings out that which is good, and the evil man out of the evil treasure of his heart brings out that which is evil, for out of the abundance of the heart, his mouth speaks. + +

+

Why do you call me, ‘Lord, Lord,’ and don’t do the things which I say? + + +Everyone who comes to me, and hears my words and does them, I will show you who he is like. + + +He is like a man building a house, who dug and went deep and laid a foundation on the rock. When a flood arose, the stream broke against that house, and could not shake it, because it was founded on the rock. + + +But he who hears and doesn’t do, is like a man who built a house on the earth without a foundation, against which the stream broke, and immediately it fell; and the ruin of that house was great.” + +

+ + +

After he had finished speaking in the hearing of the people, he entered into Capernaum. + +A certain centurions servant, who was dear to him, was sick and at the point of death. + +When he heard about Jesus, he sent to him elders of the Jews, asking him to come and save his servant. + +When they came to Jesus, they begged him earnestly, saying, “He is worthy for you to do this for him, + +for he loves our nation, and he built our synagogue for us.” + +Jesus went with them. When he was now not far from the house, the centurion sent friends to him, saying to him, “Lord, don’t trouble yourself, for I am not worthy for you to come under my roof. + +Therefore I didn’t even think myself worthy to come to you; but say the word, and my servant will be healed. + +For I also am a man placed under authority, having under myself soldiers. I tell this one, ‘Go!’ and he goes; and to another, ‘Come!’ and he comes; and to my servant, ‘Do this,’ and he does it.” + +

+

When Jesus heard these things, he marveled at him, and turned and said to the multitude who followed him, +I tell you, I have not found such great faith, no, not in Israel.” + +Those who were sent, returning to the house, found that the servant who had been sick was well. + +

+

Soon afterwards, he went to a city called Nain. Many of his disciples, along with a great multitude, went with him. + +Now when he came near to the gate of the city, behold, one who was dead was carried out, the only born7:12 +The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. + son of his mother, and she was a widow. Many people of the city were with her. + +When the Lord saw her, he had compassion on her and said to her, +“Don’t cry.” + +He came near and touched the coffin, and the bearers stood still. He said, +Young man, I tell you, arise!” + +He who was dead sat up and began to speak. Then he gave him to his mother. + +

+

Fear took hold of all, and they glorified God, saying, “A great prophet has arisen among us!” and, “God has visited his people!” + +This report went out concerning him in the whole of Judea and in all the surrounding region. + +

+

The disciples of John told him about all these things. + +John, calling to himself two of his disciples, sent them to Jesus, saying, “Are you the one who is coming, or should we look for another?” + +When the men had come to him, they said, “John the Baptizer has sent us to you, saying, ‘Are you he who comes, or should we look for another?’” + +

+

In that hour he cured many of diseases and plagues and evil spirits; and to many who were blind he gave sight. + +Jesus answered them, +Go and tell John the things which you have seen and heard: that the blind receive their sight, the lame walk, the lepers are cleansed, the deaf hear, the dead are raised up, and the poor have good news preached to them. + + +Blessed is he who finds no occasion for stumbling in me.” + +

+

When John’s messengers had departed, he began to tell the multitudes about John, +What did you go out into the wilderness to see? A reed shaken by the wind? + + +But what did you go out to see? A man clothed in soft clothing? Behold, those who are gorgeously dressed and live delicately are in kings’ courts. + + +But what did you go out to see? A prophet? Yes, I tell you, and much more than a prophet. + + +This is he of whom it is written, +

+Behold, I send my messenger before your face, + +who will prepare your way before you.’7:27 +Malachi 3:1 + + +

For I tell you, among those who are born of women there is not a greater prophet than John the Baptizer; yet he who is least in God’s Kingdom is greater than he.” + +

+

When all the people and the tax collectors heard this, they declared God to be just, having been baptized with John’s baptism. + +But the Pharisees and the lawyers rejected the counsel of God, not being baptized by him themselves. + +

+

7:31 +TR adds “But the Lord said,”To what then should I compare the people of this generation? What are they like? + + +They are like children who sit in the marketplace and call to one another, saying, ‘We piped to you, and you didn’t dance. We mourned, and you didn’t weep.’ + + +For John the Baptizer came neither eating bread nor drinking wine, and you say, ‘He has a demon.’ + + +The Son of Man has come eating and drinking, and you say, ‘Behold, a glutton and a drunkard, a friend of tax collectors and sinners!’ + + +Wisdom is justified by all her children.” + +

+

One of the Pharisees invited him to eat with him. He entered into the Pharisee’s house and sat at the table. + +Behold, a woman in the city who was a sinner, when she knew that he was reclining in the Pharisee’s house, brought an alabaster jar of ointment. + +Standing behind at his feet weeping, she began to wet his feet with her tears, and she wiped them with the hair of her head, kissed his feet, and anointed them with the ointment. + +Now when the Pharisee who had invited him saw it, he said to himself, “This man, if he were a prophet, would have perceived who and what kind of woman this is who touches him, that she is a sinner.” + +

+

Jesus answered him, +Simon, I have something to tell you.” + +

+

He said, “Teacher, say on.” + +

+

A certain lender had two debtors. The one owed five hundred denarii, and the other fifty. + + +When they couldn’t pay, he forgave them both. Which of them therefore will love him most?” + +

+

Simon answered, “He, I suppose, to whom he forgave the most.” +

+

He said to him, +You have judged correctly.” + +Turning to the woman, he said to Simon, +Do you see this woman? I entered into your house, and you gave me no water for my feet, but she has wet my feet with her tears, and wiped them with the hair of her head. + + +You gave me no kiss, but she, since the time I came in, has not ceased to kiss my feet. + + +You didn’t anoint my head with oil, but she has anointed my feet with ointment. + + +Therefore I tell you, her sins, which are many, are forgiven, for she loved much. But one to whom little is forgiven, loves little.” + + +He said to her, +Your sins are forgiven.” + +

+

Those who sat at the table with him began to say to themselves, “Who is this who even forgives sins?” + +

+

He said to the woman, +Your faith has saved you. Go in peace.” + + +

+ + +

Soon afterwards, he went about through cities and villages, preaching and bringing the good news of God’s Kingdom. With him were the twelve, + +and certain women who had been healed of evil spirits and infirmities: Mary who was called Magdalene, from whom seven demons had gone out; + +and Joanna, the wife of Chuzas, Herod’s steward; Susanna; and many others who served them8:3 +TR reads “him” instead of “them” from their possessions. + +When a great multitude came together and people from every city were coming to him, he spoke by a parable: + +The farmer went out to sow his seed. As he sowed, some fell along the road, and it was trampled under foot, and the birds of the sky devoured it. + + +Some seed fell on the rock, and as soon as it grew, it withered away, because it had no moisture. + + +Some fell amid the thorns, and the thorns grew with it and choked it. + + +Some fell into the good ground and grew and produced one hundred times as much fruit.” As he said these things, he called out, +He who has ears to hear, let him hear!” + +

+

Then his disciples asked him, “What does this parable mean?” + +

+

He said, +To you it is given to know the mysteries of God’s Kingdom, but to the rest it is given in parables, that ‘seeing they may not see, and hearing they may not understand.’8:10 +Isaiah 6:9 + +

+

Now the parable is this: The seed is the word of God. + + +Those along the road are those who hear; then the devil comes and takes away the word from their heart, that they may not believe and be saved. + + +Those on the rock are they who, when they hear, receive the word with joy; but these have no root. They believe for a while, then fall away in time of temptation. + + +What fell among the thorns, these are those who have heard, and as they go on their way they are choked with cares, riches, and pleasures of life; and they bring no fruit to maturity. + + +Those in the good ground, these are those who with an honest and good heart, having heard the word, hold it tightly, and produce fruit with perseverance. + +

+

No one, when he has lit a lamp, covers it with a container or puts it under a bed; but puts it on a stand, that those who enter in may see the light. + + +For nothing is hidden that will not be revealed, nor anything secret that will not be known and come to light. + + +Be careful therefore how you hear. For whoever has, to him will be given; and whoever doesn’t have, from him will be taken away even that which he thinks he has.” + +

+

His mother and brothers came to him, and they could not come near him for the crowd. + +Some people told him, “Your mother and your brothers stand outside, desiring to see you.” + +

+

But he answered them, +My mother and my brothers are these who hear the word of God and do it.” + +

+

Now on one of those days, he entered into a boat, himself and his disciples, and he said to them, +Let’s go over to the other side of the lake.” So they launched out. + +But as they sailed, he fell asleep. A wind storm came down on the lake, and they were taking on dangerous amounts of water. + +They came to him and awoke him, saying, “Master, Master, we are dying!” He awoke and rebuked the wind and the raging of the water; then they ceased, and it was calm.8:24 +See Psalms 107:29 + +He said to them, +Where is your faith?” Being afraid, they marveled, saying to one another, “Who is this then, that he commands even the winds and the water, and they obey him?” + +

+

Then they arrived at the country of the Gadarenes, which is opposite Galilee. + +When Jesus stepped ashore, a certain man out of the city who had demons for a long time met him. He wore no clothes, and didn’t live in a house, but in the tombs. + +When he saw Jesus, he cried out and fell down before him, and with a loud voice said, “What do I have to do with you, Jesus, you Son of the Most High God? I beg you, don’t torment me!” + +For Jesus was commanding the unclean spirit to come out of the man. For the unclean spirit had often seized the man. He was kept under guard and bound with chains and fetters. Breaking the bonds apart, he was driven by the demon into the desert. + +

+

Jesus asked him, +What is your name?” +

+

He said, “Legion,” for many demons had entered into him. + +They begged him that he would not command them to go into the abyss. + +

+

Now there was there a herd of many pigs feeding on the mountain, and they begged him that he would allow them to enter into those. Then he allowed them. + +The demons came out of the man and entered into the pigs, and the herd rushed down the steep bank into the lake and were drowned. + +

+

When those who fed them saw what had happened, they fled and told it in the city and in the country. + +

+

People went out to see what had happened. They came to Jesus and found the man from whom the demons had gone out, sitting at Jesusfeet, clothed and in his right mind; and they were afraid. + +Those who saw it told them how he who had been possessed by demons was healed. + +All the people of the surrounding country of the Gadarenes asked him to depart from them, for they were very much afraid. Then he entered into the boat and returned. + +But the man from whom the demons had gone out begged him that he might go with him, but Jesus sent him away, saying, + +Return to your house, and declare what great things God has done for you.” He went his way, proclaiming throughout the whole city what great things Jesus had done for him. + +

+

When Jesus returned, the multitude welcomed him, for they were all waiting for him. + +Behold, a man named Jairus came. He was a ruler of the synagogue. He fell down at Jesusfeet and begged him to come into his house, + +for he had an only born8:42 +The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. daughter, about twelve years of age, and she was dying. But as he went, the multitudes pressed against him. + +A woman who had a flow of blood for twelve years, who had spent all her living on physicians and could not be healed by any, + +came behind him and touched the fringe8:44 +or, tassel of his cloak. Immediately the flow of her blood stopped. + +

+

Jesus said, +Who touched me?” +

+

When all denied it, Peter and those with him said, “Master, the multitudes press and jostle you, and you say, +Who touched me?’” + +

+

But Jesus said, +Someone did touch me, for I perceived that power has gone out of me.” + +When the woman saw that she was not hidden, she came trembling; and falling down before him declared to him in the presence of all the people the reason why she had touched him, and how she was healed immediately. + +He said to her, +Daughter, cheer up. Your faith has made you well. Go in peace.” + +

+

While he still spoke, one from the ruler of the synagogue’s house came, saying to him, “Your daughter is dead. Don’t trouble the Teacher.” + +

+

But Jesus hearing it, answered him, +“Don’t be afraid. Only believe, and she will be healed.” + +

+

When he came to the house, he didn’t allow anyone to enter in, except Peter, John, James, the father of the child, and her mother. + +All were weeping and mourning her, but he said, +“Don’t weep. She isn’t dead, but sleeping.” + +

+

They were ridiculing him, knowing that she was dead. + +But he put them all outside, and taking her by the hand, he called, saying, +Child, arise!” + +Her spirit returned, and she rose up immediately. He commanded that something be given to her to eat. + +Her parents were amazed, but he commanded them to tell no one what had been done. + +

+ + +

He called the twelve9:1 +TR reads “his twelve disciples” instead of “the twelve” together and gave them power and authority over all demons, and to cure diseases. + +He sent them out to preach God’s Kingdom and to heal the sick. + +He said to them, +Take nothing for your journeyno staffs, nor wallet, nor bread, nor money. Don’t have two tunics each. + + +Into whatever house you enter, stay there, and depart from there. + + +As many as don’t receive you, when you depart from that city, shake off even the dust from your feet for a testimony against them.” + +

+

They departed and went throughout the villages, preaching the Good News and healing everywhere. + +

+

Now Herod the tetrarch heard of all that was done by him; and he was very perplexed, because it was said by some that John had risen from the dead, + +and by some that Elijah had appeared, and by others that one of the old prophets had risen again. + +Herod said, “I beheaded John, but who is this about whom I hear such things?” He sought to see him. + +

+

The apostles, when they had returned, told him what things they had done. +

+

He took them and withdrew apart to a desert region of9:10 +NU omits “a desert region of”. a city called Bethsaida. + +But the multitudes, perceiving it, followed him. He welcomed them, spoke to them of Gods Kingdom, and he cured those who needed healing. + +The day began to wear away; and the twelve came and said to him, “Send the multitude away, that they may go into the surrounding villages and farms and lodge and get food, for we are here in a deserted place.” + +

+

But he said to them, +You give them something to eat.” +

+

They said, “We have no more than five loaves and two fish, unless we should go and buy food for all these people.” + +For they were about five thousand men. +

+

He said to his disciples, +Make them sit down in groups of about fifty each.” + +They did so, and made them all sit down. + +He took the five loaves and the two fish, and looking up to the sky, he blessed them, broke them, and gave them to the disciples to set before the multitude. + +They ate and were all filled. They gathered up twelve baskets of broken pieces that were left over. + +

+

As he was praying alone, the disciples were near him, and he asked them, +Who do the multitudes say that I am?” + +

+

They answered, “‘John the Baptizer,’ but others say, ‘Elijah,’ and others, that one of the old prophets has risen again.” + +

+

He said to them, +But who do you say that I am?” +

+

Peter answered, “The Christ of God.” + +

+

But he warned them and commanded them to tell this to no one, + +saying, +The Son of Man must suffer many things, and be rejected by the elders, chief priests, and scribes, and be killed, and the third day be raised up.” + +

+

He said to all, +If anyone desires to come after me, let him deny himself, take up his cross,9:23 +TR, NU add “daily” +and follow me. + + +For whoever desires to save his life will lose it, but whoever will lose his life for my sake will save it. + + +For what does it profit a man if he gains the whole world, and loses or forfeits his own self? + + +For whoever will be ashamed of me and of my words, of him will the Son of Man be ashamed when he comes in his glory, and the glory of the Father, and of the holy angels. + + +But I tell you the truth: There are some of those who stand here who will in no way taste of death until they see God’s Kingdom.” + + +

+

About eight days after these sayings, he took with him Peter, John, and James, and went up onto the mountain to pray. + +As he was praying, the appearance of his face was altered, and his clothing became white and dazzling. + +Behold, two men were talking with him, who were Moses and Elijah, + +who appeared in glory and spoke of his departure,9:31 +literally, “exodus” which he was about to accomplish at Jerusalem. + +

+

Now Peter and those who were with him were heavy with sleep, but when they were fully awake, they saw his glory, and the two men who stood with him. + +As they were parting from him, Peter said to Jesus, “Master, it is good for us to be here. Let’s make three tents: one for you, one for Moses, and one for Elijah,” not knowing what he said. + +

+

While he said these things, a cloud came and overshadowed them, and they were afraid as they entered into the cloud. + +A voice came out of the cloud, saying, “This is my beloved Son. Listen to him!” + +When the voice came, Jesus was found alone. They were silent, and told no one in those days any of the things which they had seen. + +

+

On the next day, when they had come down from the mountain, a great multitude met him. + +Behold, a man from the crowd called out, saying, “Teacher, I beg you to look at my son, for he is my only born9:38 +The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. child. + +Behold, a spirit takes him, he suddenly cries out, and it convulses him so that he foams; and it hardly departs from him, bruising him severely. + +I begged your disciples to cast it out, and they couldn’t.” + +

+

Jesus answered, +“Faithless and perverse generation, how long shall I be with you and bear with you? Bring your son here.” + +

+

While he was still coming, the demon threw him down and convulsed him violently. But Jesus rebuked the unclean spirit, healed the boy, and gave him back to his father. + +They were all astonished at the majesty of God. +

+

But while all were marveling at all the things which Jesus did, he said to his disciples, + +Let these words sink into your ears, for the Son of Man will be delivered up into the hands of men.” + +But they didn’t understand this saying. It was concealed from them, that they should not perceive it, and they were afraid to ask him about this saying. + +

+

An argument arose among them about which of them was the greatest. + +Jesus, perceiving the reasoning of their hearts, took a little child, and set him by his side, + +and said to them, +Whoever receives this little child in my name receives me. Whoever receives me receives him who sent me. For whoever is least among you all, this one will be great.” + +

+

John answered, “Master, we saw someone casting out demons in your name, and we forbade him, because he doesn’t follow with us.” + +

+

Jesus said to him, +“Don’t forbid him, for he who is not against us is for us.” + +

+

It came to pass, when the days were near that he should be taken up, he intently set his face to go to Jerusalem + +and sent messengers before his face. They went and entered into a village of the Samaritans, so as to prepare for him. + +They didn’t receive him, because he was traveling with his face set toward Jerusalem. + +When his disciples, James and John, saw this, they said, “Lord, do you want us to command fire to come down from the sky and destroy them, just as Elijah did?” + +

+

But he turned and rebuked them, +“You don’t know of what kind of spirit you are. + + +For the Son of Man didn’t come to destroy men’s lives, but to save them.” +

+

They went to another village. + +As they went on the way, a certain man said to him, “I want to follow you wherever you go, Lord.” + +

+

Jesus said to him, +The foxes have holes and the birds of the sky have nests, but the Son of Man has no place to lay his head.” + +

+

He said to another, +Follow me!” +

+

But he said, “Lord, allow me first to go and bury my father.” + +

+

But Jesus said to him, +“Leave the dead to bury their own dead, but you go and announce God’s Kingdom.” + +

+

Another also said, “I want to follow you, Lord, but first allow me to say good-bye to those who are at my house.” + +

+

But Jesus said to him, +No one, having put his hand to the plow and looking back, is fit for God’s Kingdom.” + +

+ + +

Now after these things, the Lord also appointed seventy others, and sent them two by two ahead of him10:1 +literally, “before his face” into every city and place where he was about to come. + +Then he said to them, +The harvest is indeed plentiful, but the laborers are few. Pray therefore to the Lord of the harvest, that he may send out laborers into his harvest. + + +Go your ways. Behold, I send you out as lambs among wolves. + + +Carry no purse, nor wallet, nor sandals. Greet no one on the way. + + +Into whatever house you enter, first say, ‘Peace be to this house.’ + + +If a son of peace is there, your peace will rest on him; but if not, it will return to you. + + +Remain in that same house, eating and drinking the things they give, for the laborer is worthy of his wages. Don’t go from house to house. + + +Into whatever city you enter and they receive you, eat the things that are set before you. + + +Heal the sick who are there and tell them, ‘God’s Kingdom has come near to you.’ + + +But into whatever city you enter and they don’t receive you, go out into its streets and say, + + +Even the dust from your city that clings to us, we wipe off against you. Nevertheless know this, that God’s Kingdom has come near to you.’ + + +I tell you, it will be more tolerable in that day for Sodom than for that city. + +

+

Woe to you, Chorazin! Woe to you, Bethsaida! For if the mighty works had been done in Tyre and Sidon which were done in you, they would have repented long ago, sitting in sackcloth and ashes. + + +But it will be more tolerable for Tyre and Sidon in the judgment than for you. + + +You, Capernaum, who are exalted to heaven, will be brought down to Hades. +10:15 +Hades is the lower realm of the dead, or Hell. + +Whoever listens to you listens to me, and whoever rejects you rejects me. Whoever rejects me rejects him who sent me.” + +

+

The seventy returned with joy, saying, “Lord, even the demons are subject to us in your name!” + +

+

He said to them, +I saw Satan having fallen like lightning from heaven. + + +Behold, I give you authority to tread on serpents and scorpions, and over all the power of the enemy. Nothing will in any way hurt you. + + +Nevertheless, don’t rejoice in this, that the spirits are subject to you, but rejoice that your names are written in heaven.” + +

+

In that same hour, Jesus rejoiced in the Holy Spirit, and said, +I thank you, O Father, Lord of heaven and earth, that you have hidden these things from the wise and understanding, and revealed them to little children. Yes, Father, for so it was well-pleasing in your sight.” + +

+

Turning to the disciples, he said, +All things have been delivered to me by my Father. No one knows who the Son is, except the Father, and who the Father is, except the Son, and he to whomever the Son desires to reveal him.” + +

+

Turning to the disciples, he said privately, +Blessed are the eyes which see the things that you see, + + +for I tell you that many prophets and kings desired to see the things which you see, and didn’t see them, and to hear the things which you hear, and didn’t hear them.” + +

+

Behold, a certain lawyer stood up and tested him, saying, “Teacher, what shall I do to inherit eternal life?” + +

+

He said to him, +What is written in the law? How do you read it?” + + +

+

He answered, “You shall love the Lord your God with all your heart, with all your soul, with all your strength, and with all your mind;10:27 +Deuteronomy 6:5 and your neighbor as yourself.”10:27 +Leviticus 19:18 + +

+

He said to him, +You have answered correctly. Do this, and you will live.” + +

+

But he, desiring to justify himself, asked Jesus, “Who is my neighbor?” + +

+

Jesus answered, +A certain man was going down from Jerusalem to Jericho, and he fell among robbers, who both stripped him and beat him, and departed, leaving him half dead. + + +By chance a certain priest was going down that way. When he saw him, he passed by on the other side. + + +In the same way a Levite also, when he came to the place and saw him, passed by on the other side. + + +But a certain Samaritan, as he traveled, came where he was. When he saw him, he was moved with compassion, + + +came to him, and bound up his wounds, pouring on oil and wine. He set him on his own animal, brought him to an inn, and took care of him. + + +On the next day, when he departed, he took out two denarii, gave them to the host, and said to him, ‘Take care of him. Whatever you spend beyond that, I will repay you when I return.’ + + +Now which of these three do you think seemed to be a neighbor to him who fell among the robbers?” + +

+

He said, “He who showed mercy on him.” +

+

Then Jesus said to him, +Go and do likewise.” + +

+

As they went on their way, he entered into a certain village, and a certain woman named Martha received him into her house. + +She had a sister called Mary, who also sat at Jesusfeet and heard his word. + +But Martha was distracted with much serving, and she came up to him, and said, “Lord, don’t you care that my sister left me to serve alone? Ask her therefore to help me.” + +

+

Jesus answered her, +Martha, Martha, you are anxious and troubled about many things, + + +but one thing is needed. Mary has chosen the good part, which will not be taken away from her.” + +

+ + +

When he finished praying in a certain place, one of his disciples said to him, “Lord, teach us to pray, just as John also taught his disciples.” + +

+

He said to them, +When you pray, say, +

+Our Father in heaven, + +may your name be kept holy. + +May your Kingdom come. + +May your will be done on earth, as it is in heaven. + + +Give us day by day our daily bread. + + +Forgive us our sins, + +for we ourselves also forgive everyone who is indebted to us. + + +Bring us not into temptation, + +but deliver us from the evil one.’” + + +

He said to them, +Which of you, if you go to a friend at midnight and tell him, ‘Friend, lend me three loaves of bread, + + +for a friend of mine has come to me from a journey, and I have nothing to set before him,’ + + +and he from within will answer and say, ‘Don’t bother me. The door is now shut, and my children are with me in bed. I cant get up and give it to you’? + + +I tell you, although he will not rise and give it to him because he is his friend, yet because of his persistence, he will get up and give him as many as he needs. + +

+

I tell you, keep asking, and it will be given you. Keep seeking, and you will find. Keep knocking, and it will be opened to you. + + +For everyone who asks receives. He who seeks finds. To him who knocks it will be opened. + +

+

Which of you fathers, if your son asks for bread, will give him a stone? Or if he asks for a fish, he won’t give him a snake instead of a fish, will he? + + +Or if he asks for an egg, he won’t give him a scorpion, will he? + + +If you then, being evil, know how to give good gifts to your children, how much more will your heavenly Father give the Holy Spirit to those who ask him?” + +

+

He was casting out a demon, and it was mute. When the demon had gone out, the mute man spoke; and the multitudes marveled. + +But some of them said, “He casts out demons by Beelzebul, the prince of the demons.” + +Others, testing him, sought from him a sign from heaven. + +But he, knowing their thoughts, said to them, +Every kingdom divided against itself is brought to desolation. A house divided against itself falls. + + +If Satan also is divided against himself, how will his kingdom stand? For you say that I cast out demons by Beelzebul. + + +But if I cast out demons by Beelzebul, by whom do your children cast them out? Therefore they will be your judges. + + +But if I by God’s finger cast out demons, then God’s Kingdom has come to you. + +

+

When the strong man, fully armed, guards his own dwelling, his goods are safe. + + +But when someone stronger attacks him and overcomes him, he takes from him his whole armor in which he trusted, and divides his plunder. + + +

+

He who is not with me is against me. He who doesn’t gather with me scatters. + +

+

The unclean spirit, when he has gone out of the man, passes through dry places, seeking rest; and finding none, he says, ‘I will turn back to my house from which I came out.’ + + +When he returns, he finds it swept and put in order. + + +Then he goes and takes seven other spirits more evil than himself, and they enter in and dwell there. The last state of that man becomes worse than the first.” + +

+

It came to pass, as he said these things, a certain woman out of the multitude lifted up her voice and said to him, “Blessed is the womb that bore you, and the breasts which nursed you!” + +

+

But he said, +On the contrary, blessed are those who hear the word of God, and keep it.” + +

+

When the multitudes were gathering together to him, he began to say, +This is an evil generation. It seeks after a sign. No sign will be given to it but the sign of Jonah the prophet. + + +For even as Jonah became a sign to the Ninevites, so the Son of Man will also be to this generation. + + +The Queen of the South will rise up in the judgment with the men of this generation and will condemn them, for she came from the ends of the earth to hear the wisdom of Solomon; and behold, one greater than Solomon is here. + + +The men of Nineveh will stand up in the judgment with this generation, and will condemn it, for they repented at the preaching of Jonah; and behold, one greater than Jonah is here. + +

+

No one, when he has lit a lamp, puts it in a cellar or under a basket, but on a stand, that those who come in may see the light. + + +The lamp of the body is the eye. Therefore when your eye is good, your whole body is also full of light; but when it is evil, your body also is full of darkness. + + +Therefore see whether the light that is in you isn’t darkness. + + +If therefore your whole body is full of light, having no part dark, it will be wholly full of light, as when the lamp with its bright shining gives you light.” + +

+

Now as he spoke, a certain Pharisee asked him to dine with him. He went in and sat at the table. + +When the Pharisee saw it, he marveled that he had not first washed himself before dinner. + +The Lord said to him, +Now you Pharisees cleanse the outside of the cup and of the platter, but your inward part is full of extortion and wickedness. + + +You foolish ones, didn’t he who made the outside make the inside also? + + +But give for gifts to the needy those things which are within, and behold, all things will be clean to you. + + +But woe to you Pharisees! For you tithe mint and rue and every herb, but you bypass justice and God’s love. You ought to have done these, and not to have left the other undone. + + +Woe to you Pharisees! For you love the best seats in the synagogues and the greetings in the marketplaces. + + +Woe to you, scribes and Pharisees, hypocrites! For you are like hidden graves, and the men who walk over them don’t know it.” + +

+

One of the lawyers answered him, “Teacher, in saying this you insult us also.” + +

+

He said, +Woe to you lawyers also! For you load men with burdens that are difficult to carry, and you yourselves won’t even lift one finger to help carry those burdens. + + +Woe to you! For you build the tombs of the prophets, and your fathers killed them. + + +So you testify and consent to the works of your fathers. For they killed them, and you build their tombs. + + +Therefore also the wisdom of God said, ‘I will send to them prophets and apostles; and some of them they will kill and persecute, + + +that the blood of all the prophets, which was shed from the foundation of the world, may be required of this generation, + + +from the blood of Abel to the blood of Zachariah, who perished between the altar and the sanctuary.’ Yes, I tell you, it will be required of this generation. + + +Woe to you lawyers! For you took away the key of knowledge. You didn’t enter in yourselves, and those who were entering in, you hindered.” + + +

+

As he said these things to them, the scribes and the Pharisees began to be terribly angry, and to draw many things out of him, + +lying in wait for him, and seeking to catch him in something he might say, that they might accuse him. + +

+ + +

Meanwhile, when a multitude of many thousands had gathered together, so much so that they trampled on each other, he began to tell his disciples first of all, +Beware of the yeast of the Pharisees, which is hypocrisy. + + +But there is nothing covered up that will not be revealed, nor hidden that will not be known. + + +Therefore whatever you have said in the darkness will be heard in the light. What you have spoken in the ear in the inner rooms will be proclaimed on the housetops. + +

+

I tell you, my friends, don’t be afraid of those who kill the body, and after that have no more that they can do. + + +But I will warn you whom you should fear. Fear him who after he has killed, has power to cast into Gehenna.12:5 +or, Hell +Yes, I tell you, fear him. + +

+

“Aren’t five sparrows sold for two assaria coins12:6 +An assarion was a small copper coin worth about an hour’s wages for an agricultural laborer.? Not one of them is forgotten by God. + + +But the very hairs of your head are all counted. Therefore don’t be afraid. You are of more value than many sparrows. + +

+

I tell you, everyone who confesses me before men, the Son of Man will also confess before the angels of God; + + +but he who denies me in the presence of men will be denied in the presence of God’s angels. + + +Everyone who speaks a word against the Son of Man will be forgiven, but those who blaspheme against the Holy Spirit will not be forgiven. + + +When they bring you before the synagogues, the rulers, and the authorities, don’t be anxious how or what you will answer or what you will say; + + +for the Holy Spirit will teach you in that same hour what you must say.” + +

+

One of the multitude said to him, “Teacher, tell my brother to divide the inheritance with me.” + +

+

But he said to him, +Man, who made me a judge or an arbitrator over you?” + +He said to them, +Beware! Keep yourselves from covetousness, for a man’s life doesn’t consist of the abundance of the things which he possesses.” + +

+

He spoke a parable to them, saying, +The ground of a certain rich man produced abundantly. + + +He reasoned within himself, saying, ‘What will I do, because I don’t have room to store my crops?’ + + +He said, ‘This is what I will do. I will pull down my barns, build bigger ones, and there I will store all my grain and my goods. + + +I will tell my soul, “Soul, you have many goods laid up for many years. Take your ease, eat, drink, and be merry.”’ + +

+

But God said to him, ‘You foolish one, tonight your soul is required of you. The things which you have preparedwhose will they be?’ + + +So is he who lays up treasure for himself, and is not rich toward God.” + +

+

He said to his disciples, +Therefore I tell you, don’t be anxious for your life, what you will eat, nor yet for your body, what you will wear. + + +Life is more than food, and the body is more than clothing. + + +Consider the ravens: they don’t sow, they don’t reap, they have no warehouse or barn, and God feeds them. How much more valuable are you than birds! + + +Which of you by being anxious can add a cubit12:25 +A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. +to his height? + + +If then you aren’t able to do even the least things, why are you anxious about the rest? + + +Consider the lilies, how they grow. They don’t toil, neither do they spin; yet I tell you, even Solomon in all his glory was not arrayed like one of these. + + +But if this is how God clothes the grass in the field, which today exists and tomorrow is cast into the oven, how much more will he clothe you, O you of little faith? + + +

+

“Don’t seek what you will eat or what you will drink; neither be anxious. + + +For the nations of the world seek after all of these things, but your Father knows that you need these things. + + +But seek God’s Kingdom, and all these things will be added to you. + +

+

“Don’t be afraid, little flock, for it is your Father’s good pleasure to give you the Kingdom. + + +Sell what you have and give gifts to the needy. Make for yourselves purses which don’t grow old, a treasure in the heavens that doesn’t fail, where no thief approaches and no moth destroys. + + +For where your treasure is, there will your heart be also. + + +

+

Let your waist be dressed and your lamps burning. + + +Be like men watching for their lord when he returns from the wedding feast, that when he comes and knocks, they may immediately open to him. + + +Blessed are those servants whom the lord will find watching when he comes. Most certainly I tell you that he will dress himself, make them recline, and will come and serve them. + + +They will be blessed if he comes in the second or third watch and finds them so. + + +But know this, that if the master of the house had known in what hour the thief was coming, he would have watched and not allowed his house to be broken into. + + +Therefore be ready also, for the Son of Man is coming in an hour that you don’t expect him.” + +

+

Peter said to him, “Lord, are you telling this parable to us, or to everybody?” + +

+

The Lord said, +Who then is the faithful and wise steward, whom his lord will set over his household, to give them their portion of food at the right times? + + +Blessed is that servant whom his lord will find doing so when he comes. + + +Truly I tell you that he will set him over all that he has. + + +But if that servant says in his heart, ‘My lord delays his coming,’ and begins to beat the menservants and the maidservants, and to eat and drink and to be drunken, + + +then the lord of that servant will come in a day when he isn’t expecting him and in an hour that he doesn’t know, and will cut him in two, and place his portion with the unfaithful. + + +That servant who knew his lords will, and didn’t prepare nor do what he wanted, will be beaten with many stripes, + + +but he who didn’t know, and did things worthy of stripes, will be beaten with few stripes. To whomever much is given, of him will much be required; and to whom much was entrusted, of him more will be asked. + + +

+

I came to throw fire on the earth. I wish it were already kindled. + + +But I have a baptism to be baptized with, and how distressed I am until it is accomplished! + + +Do you think that I have come to give peace on the earth? I tell you, no, but rather division. + + +For from now on, there will be five in one house divided, three against two, and two against three. + + +They will be divided, father against son, and son against father; mother against daughter, and daughter against her mother; mother-in-law against her daughter-in-law, and daughter-in-law against her mother-in-law.” +12:53 +Micah 7:6 + +

+

He said to the multitudes also, +When you see a cloud rising from the west, immediately you say, ‘A shower is coming,’ and so it happens. + + +When a south wind blows, you say, ‘There will be a scorching heat,’ and it happens. + + +You hypocrites! You know how to interpret the appearance of the earth and the sky, but how is it that you don’t interpret this time? + + +

+

Why don’t you judge for yourselves what is right? + + +For when you are going with your adversary before the magistrate, try diligently on the way to be released from him, lest perhaps he drag you to the judge, and the judge deliver you to the officer, and the officer throw you into prison. + + +I tell you, you will by no means get out of there until you have paid the very last penny.12:59 +literally, lepton. A lepton is a very small brass Jewish coin worth half a Roman quadrans each, which is worth a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages. + +

+ + +

Now there were some present at the same time who told him about the Galileans whose blood Pilate had mixed with their sacrifices. + +Jesus answered them, +Do you think that these Galileans were worse sinners than all the other Galileans, because they suffered such things? + + +I tell you, no, but unless you repent, you will all perish in the same way. + + +Or those eighteen on whom the tower in Siloam fell and killed themdo you think that they were worse offenders than all the men who dwell in Jerusalem? + + +I tell you, no, but, unless you repent, you will all perish in the same way.” + +

+

He spoke this parable. +A certain man had a fig tree planted in his vineyard, and he came seeking fruit on it and found none. + + +He said to the vine dresser, ‘Behold, these three years I have come looking for fruit on this fig tree, and found none. Cut it down! Why does it waste the soil?’ + + +He answered, ‘Lord, leave it alone this year also, until I dig around it and fertilize it. + + +If it bears fruit, fine; but if not, after that, you can cut it down.’” + +

+

He was teaching in one of the synagogues on the Sabbath day. + +Behold, there was a woman who had a spirit of infirmity eighteen years. She was bent over and could in no way straighten herself up. + +When Jesus saw her, he called her and said to her, +Woman, you are freed from your infirmity.” + +He laid his hands on her, and immediately she stood up straight and glorified God. + +

+

The ruler of the synagogue, being indignant because Jesus had healed on the Sabbath, said to the multitude, “There are six days in which men ought to work. Therefore come on those days and be healed, and not on the Sabbath day!” + +

+

Therefore the Lord answered him, +You hypocrites! Doesn’t each one of you free his ox or his donkey from the stall on the Sabbath and lead him away to water? + + +Ought not this woman, being a daughter of Abraham whom Satan had bound eighteen long years, be freed from this bondage on the Sabbath day?” + + +

+

As he said these things, all his adversaries were disappointed; and all the multitude rejoiced for all the glorious things that were done by him. + +

+

He said, +What is God’s Kingdom like? To what shall I compare it? + + +It is like a grain of mustard seed which a man took and put in his own garden. It grew and became a large tree, and the birds of the sky live in its branches.” + +

+

Again he said, +To what shall I compare God’s Kingdom? + + +It is like yeast, which a woman took and hid in three measures +13:21 +literally, three sata. 3 sata is about 39 liters or a bit more than a bushel. +of flour, until it was all leavened.” + +

+

He went on his way through cities and villages, teaching, and traveling on to Jerusalem. + +One said to him, “Lord, are they few who are saved?” +

+

He said to them, + +“Strive to enter in by the narrow door, for many, I tell you, will seek to enter in and will not be able. + + +When once the master of the house has risen up and has shut the door, and you begin to stand outside and to knock at the door, saying, ‘Lord, Lord, open to us!’ then he will answer and tell you, ‘I don’t know you or where you come from.’ + + +Then you will begin to say, ‘We ate and drank in your presence, and you taught in our streets.’ + + +He will say, ‘I tell you, I don’t know where you come from. Depart from me, all you workers of iniquity.’ + + +There will be weeping and gnashing of teeth when you see Abraham, Isaac, Jacob, and all the prophets in God’s Kingdom, and yourselves being thrown outside. + + +They will come from the east, west, north, and south, and will sit down in God’s Kingdom. + + +Behold, there are some who are last who will be first, and there are some who are first who will be last.” + +

+

On that same day, some Pharisees came, saying to him, “Get out of here and go away, for Herod wants to kill you.” + +

+

He said to them, +Go and tell that fox, ‘Behold, I cast out demons and perform cures today and tomorrow, and the third day I complete my mission. + + +Nevertheless I must go on my way today and tomorrow and the next day, for it can’t be that a prophet would perish outside of Jerusalem.’ + +

+

Jerusalem, Jerusalem, you who kills the prophets and stones those who are sent to her! How often I wanted to gather your children together, like a hen gathers her own brood under her wings, and you refused! + + +Behold, your house is left to you desolate. I tell you, you will not see me until you say, ‘Blessed is he who comes in the name of the Lord!’” +13:35 +Psalms 118:26 + +

+ + +

When he went into the house of one of the rulers of the Pharisees on a Sabbath to eat bread, they were watching him. + +Behold, a certain man who had dropsy was in front of him. + +Jesus, answering, spoke to the lawyers and Pharisees, saying, +Is it lawful to heal on the Sabbath?” + +

+

But they were silent. +

+

He took him, and healed him, and let him go. + +He answered them, +Which of you, if your son14:5 +TR reads “donkey” instead of “son” +or an ox fell into a well, wouldn’t immediately pull him out on a Sabbath day?” + +

+

They couldn’t answer him regarding these things. + +

+

He spoke a parable to those who were invited, when he noticed how they chose the best seats, and said to them, + +When you are invited by anyone to a wedding feast, don’t sit in the best seat, since perhaps someone more honorable than you might be invited by him, + + +and he who invited both of you would come and tell you, ‘Make room for this person.’ Then you would begin, with shame, to take the lowest place. + + +But when you are invited, go and sit in the lowest place, so that when he who invited you comes, he may tell you, ‘Friend, move up higher.’ Then you will be honored in the presence of all who sit at the table with you. + + +For everyone who exalts himself will be humbled, and whoever humbles himself will be exalted.” + +

+

He also said to the one who had invited him, +When you make a dinner or a supper, don’t call your friends, nor your brothers, nor your kinsmen, nor rich neighbors, or perhaps they might also return the favor, and pay you back. + + +But when you make a feast, ask the poor, the maimed, the lame, or the blind; + + +and you will be blessed, because they don’t have the resources to repay you. For you will be repaid in the resurrection of the righteous.” + + +

+

When one of those who sat at the table with him heard these things, he said to him, “Blessed is he who will feast in God’s Kingdom!” + +

+

But he said to him, +A certain man made a great supper, and he invited many people. + + +He sent out his servant at supper time to tell those who were invited, ‘Come, for everything is ready now.’ + + +They all as one began to make excuses. +

+

The first said to him, ‘I have bought a field, and I must go and see it. Please have me excused.’ + +

+

Another said, ‘I have bought five yoke of oxen, and I must go try them out. Please have me excused.’ + +

+

Another said, ‘I have married a wife, and therefore I can’t come.’ + + +

+

That servant came, and told 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 the poor, maimed, blind, and lame.’ + +

+

The servant said, ‘Lord, it is done as you commanded, and there is still room.’ + +

+

The lord said to the servant, ‘Go out into the highways and hedges, and compel them to come in, that my house may be filled. + + +For I tell you that none of those men who were invited will taste of my supper. For many are called, but few are chosen.14:24 +RP MT includes the last sentence. TR, NU, and FH MT omit: For many are called, but few are chosen.’” + +

+

Now great multitudes were going with him. He turned and said to them, + +If anyone comes to me, and doesn’t disregard14:26 +or, hate + +his own father, mother, wife, children, brothers, and sisters, yes, and his own life also, he cant be my disciple. + + +Whoever doesn’t bear his own cross and come after me, cant be my disciple. + + +For which of you, desiring to build a tower, doesn’t first sit down and count the cost, to see if he has enough to complete it? + + +Or perhaps, when he has laid a foundation and isn’t able to finish, everyone who sees begins to mock him, + + +saying, ‘This man began to build and wasn’t able to finish.’ + + +Or what king, as he goes to encounter another king in war, will not sit down first and consider whether he is able with ten thousand to meet him who comes against him with twenty thousand? + + +Or else, while the other is yet a great way off, he sends an envoy and asks for conditions of peace. + + +So therefore, whoever of you who doesn’t renounce all that he has, he cant be my disciple. + +

+

“Salt is good, but if the salt becomes flat and tasteless, with what do you season it? + + +It is fit neither for the soil nor for the manure pile. It is thrown out. He who has ears to hear, let him hear.” + +

+ + +

Now all the tax collectors and sinners were coming close to him to hear him. + +The Pharisees and the scribes murmured, saying, “This man welcomes sinners, and eats with them.” + +

+

He told them this parable: + +Which of you men, if you had one hundred sheep and lost one of them, wouldn’t leave the ninety-nine in the wilderness and go after the one that was lost, until he found it? + + +When he has found it, he carries it on his shoulders, rejoicing. + + +When he comes home, he calls together his friends and his neighbors, saying to them, ‘Rejoice with me, for I have found my sheep which was lost!’ + + +I tell you that even so there will be more joy in heaven over one sinner who repents, than over ninety-nine righteous people who need no repentance. + + +

+

Or what woman, if she had ten drachma15:8 +A drachma coin was worth about a days wages for an agricultural laborer. +coins, if she lost one drachma coin, wouldn’t light a lamp, sweep the house, and seek diligently until she found it? + + +When she has found it, she calls together her friends and neighbors, saying, ‘Rejoice with me, for I have found the drachma which I had lost!’ + + +Even so, I tell you, there is joy in the presence of the angels of God over one sinner repenting.” + +

+

He said, +A certain man had two sons. + + +The younger of them said to his father, ‘Father, give me my share of your property.’ So he divided his livelihood between them. + + +Not many days after, the younger son gathered all of this together and traveled into a far country. There he wasted his property with riotous living. + + +When he had spent all of it, there arose a severe famine in that country, and he began to be in need. + + +He went and joined himself to one of the citizens of that country, and he sent him into his fields to feed pigs. + + +He wanted to fill his belly with the pods that the pigs ate, but no one gave him any. + + +But when he came to himself, he said, ‘How many hired servants of my father’s have bread enough to spare, and I’m dying with hunger! + + +I will get up and go to my father, and will tell him, “Father, I have sinned against heaven and in your sight. + + +I am no more worthy to be called your son. Make me as one of your hired servants.”’ + +

+

He arose and came to his father. But while he was still far off, his father saw him and was moved with compassion, and ran, fell on his neck, and kissed him. + + +The son said to him, ‘Father, I have sinned against heaven and in your sight. I am no longer worthy to be called your son.’ + +

+

But the father said to his servants, ‘Bring out the best robe and put it on him. Put a ring on his hand and sandals on his feet. + + +Bring the fattened calf, kill it, and let’s eat and celebrate; + + +for this, my son, was dead and is alive again. He was lost and is found.’ Then they began to celebrate. + +

+

Now his elder son was in the field. As he came near to the house, he heard music and dancing. + + +He called one of the servants to him and asked what was going on. + + +He said to him, ‘Your brother has come, and your father has killed the fattened calf, because he has received him back safe and healthy.’ + + +But he was angry and would not go in. Therefore his father came out and begged him. + + +But he answered his father, ‘Behold, these many years I have served you, and I never disobeyed a commandment of yours, but you never gave me a goat, that I might celebrate with my friends. + + +But when this your son came, who has devoured your living with prostitutes, you killed the fattened calf for him.’ + +

+

He said to him, ‘Son, you are always with me, and all that is mine is yours. + + +But it was appropriate to celebrate and be glad, for this, your brother, was dead, and is alive again. He was lost, and is found.’” + +

+ + +

He also said to his disciples, +There was a certain rich man who had a manager. An accusation was made to him that this man was wasting his possessions. + + +He called him, and said to him, ‘What is this that I hear about you? Give an accounting of your management, for you can no longer be manager.’ + + +

+

The manager said within himself, ‘What will I do, seeing that my lord is taking away the management position from me? I don’t have strength to dig. I am ashamed to beg. + + +I know what I will do, so that when I am removed from management, they may receive me into their houses.’ + + +Calling each one of his lords debtors to him, he said to the first, ‘How much do you owe to my lord?’ + + +He said, ‘A hundred batos16:6 +100 batos is about 395 liters or 104 U. S. gallons. +of oil.’ He said to him, ‘Take your bill, and sit down quickly and write fifty.’ + + +Then he said to another, ‘How much do you owe?’ He said, ‘A hundred cors16:7 +100 cors = about 2,110 liters or 600 bushels. +of wheat.’ He said to him, ‘Take your bill, and write eighty.’ + +

+

His lord commended the dishonest manager because he had done wisely, for the children of this world are, in their own generation, wiser than the children of the light. + + +I tell you, make for yourselves friends by means of unrighteous mammon, so that when you fail, they may receive you into the eternal tents. + + +He who is faithful in a very little is faithful also in much. He who is dishonest in a very little is also dishonest in much. + + +If therefore you have not been faithful in the unrighteous mammon, who will commit to your trust the true riches? + + +If you have not been faithful in that which is another’s, who will give you that which is your own? + + +No servant can serve two masters, for either he will hate the one and love the other; or else he will hold to one and despise the other. You aren’t able to serve God and Mammon.”16:13 +“Mammon” refers to riches or a false god of wealth. + +

+

The Pharisees, who were lovers of money, also heard all these things, and they scoffed at him. + +He said to them, +You are those who justify yourselves in the sight of men, but God knows your hearts. For that which is exalted among men is an abomination in the sight of God. + + +

+

The law and the prophets were until John. From that time the Good News of God’s Kingdom is preached, and everyone is forcing his way into it. + + +But it is easier for heaven and earth to pass away than for one tiny stroke of a pen in the law to fall. + + +

+

Everyone who divorces his wife and marries another commits adultery. He who marries one who is divorced from a husband commits adultery. + + +

+

Now there was a certain rich man, and he was clothed in purple and fine linen, living in luxury every day. + + +A certain beggar, named Lazarus, was taken to his gate, full of sores, + + +and desiring to be fed with the crumbs that fell from the rich man’s table. Yes, even the dogs came and licked his sores. + + +The beggar died, and he was carried away by the angels to Abraham’s bosom. The rich man also died and was buried. + + +In Hades,16:23 +or, Hell +he lifted up his eyes, being in torment, and saw Abraham far off, and Lazarus at his bosom. + + +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 in anguish in this flame.’ + +

+

But Abraham said, ‘Son, remember that you, in your lifetime, received your good things, and Lazarus, in the same way, bad things. But here he is now comforted and you are in anguish. + + +Besides all this, between us and you there is a great gulf fixed, that those who want to pass from here to you are not able, and that no one may cross over from there to us.’ + +

+

He said, ‘I ask you therefore, father, that you would send him to my father’s house + +for I have five brothers—that he may testify to them, so they won’t also come into this place of torment.’ + +

+

But Abraham said to him, ‘They have Moses and the prophets. Let them listen to them.’ + +

+

He said, ‘No, father Abraham, but if one goes to them from the dead, they will repent.’ + +

+

He said to him, ‘If they don’t listen to Moses and the prophets, neither will they be persuaded if one rises from the dead.’” + +

+ + +

He said to the disciples, +It is impossible that no occasions of stumbling should come, but woe to him through whom they come! + + +It would be better for him if a millstone were hung around his neck, and he were thrown into the sea, rather than that he should cause one of these little ones to stumble. + + +Be careful. If your brother sins against you, rebuke him. If he repents, forgive him. + + +If he sins against you seven times in the day, and seven times returns, saying, ‘I repent,’ you shall forgive him.” + +

+

The apostles said to the Lord, “Increase our faith.” + +

+

The Lord said, +If you had faith like a grain of mustard seed, you would tell this sycamore tree, ‘Be uprooted and be planted in the sea,’ and it would obey you. + + +But who is there among you, having a servant plowing or keeping sheep, that will say when he comes in from the field, ‘Come immediately and sit down at the table’? + + +Wouldn’t he rather tell him, ‘Prepare my supper, clothe yourself properly, and serve me while I eat and drink. Afterward you shall eat and drink’? + + +Does he thank that servant because he did the things that were commanded? I think not. + + +Even so you also, when you have done all the things that are commanded you, say, ‘We are unworthy servants. We have done our duty.’” + + +

+

As he was on his way to Jerusalem, he was passing along the borders of Samaria and Galilee. + +As he entered into a certain village, ten men who were lepers met him, who stood at a distance. + +They lifted up their voices, saying, “Jesus, Master, have mercy on us!” + +

+

When he saw them, he said to them, +Go and show yourselves to the priests.” As they went, they were cleansed. + +One of them, when he saw that he was healed, turned back, glorifying God with a loud voice. + +He fell on his face at Jesusfeet, giving him thanks; and he was a Samaritan. + +

+

Jesus answered, +“Weren’t the ten cleansed? But where are the nine? + + +Were there none found who returned to give glory to God, except this foreigner?” + +Then he said to him, +Get up, and go your way. Your faith has healed you.” + +

+

Being asked by the Pharisees when God’s Kingdom would come, he answered them, +God’s Kingdom doesn’t come with observation; + + +neither will they say, ‘Look, here!’ or, ‘Look, there!’ for behold, God’s Kingdom is within you.” + +

+

He said to the disciples, +The days will come when you will desire to see one of the days of the Son of Man, and you will not see it. + + +They will tell you, ‘Look, here!’ orLook, there!’ Don’t go away or follow after them, + + +for as the lightning, when it flashes out of one part under the sky, shines to another part under the sky, so will the Son of Man be in his day. + + +But first, he must suffer many things and be rejected by this generation. + + +As it was in the days of Noah, even so it will also be in the days of the Son of Man. + + +They ate, they drank, they married, and they were given in marriage until the day that Noah entered into the ship, and the flood came and destroyed them all. + + +Likewise, even as it was in the days of Lot: they ate, they drank, they bought, they sold, they planted, they built; + + +but in the day that Lot went out from Sodom, it rained fire and sulfur from the sky and destroyed them all. + + +It will be the same way in the day that the Son of Man is revealed. + + +In that day, he who will be on the housetop and his goods in the house, let him not go down to take them away. Let him who is in the field likewise not turn back. + + +Remember Lot’s wife! + + +Whoever seeks to save his life loses it, but whoever loses his life preserves it. + + +I tell you, in that night there will be two people in one bed. One will be taken and the other will be left. + + +There will be two grinding grain together. One will be taken and the other will be left.” + +17:36 +Some Greek manuscripts add: “Two will be in the field: the one taken, and the other left.” + +

+

They, answering, asked him, “Where, Lord?” +

+

He said to them, +Where the body is, there the vultures will also be gathered together.” + +

+ + +

He also spoke a parable to them that they must always pray and not give up, + +saying, +There was a judge in a certain city who didn’t fear God and didn’t respect man. + + +A widow was in that city, and she often came to him, saying, ‘Defend me from my adversary!’ + + +He wouldn’t for a while; but afterward he said to himself, ‘Though I neither fear God nor respect man, + + +yet because this widow bothers me, I will defend her, or else she will wear me out by her continual coming.’” + +

+

The Lord said, +“Listen to what the unrighteous judge says. + + +Won’t God avenge his chosen ones who are crying out to him day and night, and yet he exercises patience with them? + + +I tell you that he will avenge them quickly. Nevertheless, when the Son of Man comes, will he find faith on the earth?” + +

+

He also spoke this parable to certain people who were convinced of their own righteousness, and who despised all others: + +Two men went up into the temple to pray; one was a Pharisee, and the other was a tax collector. + + +The Pharisee stood and prayed by himself like this: ‘God, I thank you that I am not like the rest of men: extortionists, unrighteous, adulterers, or even like this tax collector. + + +I fast twice a week. I give tithes of all that I get.’ + + +But the tax collector, standing far away, wouldn’t even lift up his eyes to heaven, but beat his chest, saying, ‘God, be merciful to me, a sinner!’ + + +I tell you, this man went down to his house justified rather than the other; for everyone who exalts himself will be humbled, but he who humbles himself will be exalted.” + +

+

They were also bringing their babies to him, that he might touch them. But when the disciples saw it, they rebuked them. + +Jesus summoned them, saying, +“Allow the little children to come to me, and don’t hinder them, for God’s Kingdom belongs to such as these. + + +Most certainly, I tell you, whoever doesn’t receive God’s Kingdom like a little child, he will in no way enter into it.” + +

+

A certain ruler asked him, saying, “Good Teacher, what shall I do to inherit eternal life?” + +

+

Jesus asked him, +Why do you call me good? No one is good, except one: God. + + +You know the commandments: ‘Don’t commit adultery,’ ‘Don’t murder,’ ‘Don’t steal,’ ‘Don’t give false testimony,’ ‘Honor your father and your mother.’”18:20 +Exodus 20:12-16; Deuteronomy 5:16-20 + +

+

He said, “I have observed all these things from my youth up.” + +

+

When Jesus heard these things, he said to him, +You still lack one thing. Sell all that you have and distribute it to the poor. Then you will have treasure in heaven; then come, follow me.” + +

+

But when he heard these things, he became very sad, for he was very rich. + +

+

Jesus, seeing that he became very sad, said, +How hard it is for those who have riches to enter into Gods Kingdom! + + +For it is easier for a camel to enter in through a needle’s eye than for a rich man to enter into God’s Kingdom.” + +

+

Those who heard it said, “Then who can be saved?” + +

+

But he said, +The things which are impossible with men are possible with God.” + +

+

Peter said, “Look, we have left everything and followed you.” + +

+

He said to them, +Most certainly I tell you, there is no one who has left house, or wife, or brothers, or parents, or children, for God’s Kingdom’s sake, + + +who will not receive many times more in this time, and in the world to come, eternal life.” + +

+

He took the twelve aside and said to them, +Behold, we are going up to Jerusalem, and all the things that are written through the prophets concerning the Son of Man will be completed. + + +For he will be delivered up to the Gentiles, will be mocked, treated shamefully, and spit on. + + +They will scourge and kill him. On the third day, he will rise again.” + +

+

They understood none of these things. This saying was hidden from them, and they didn’t understand the things that were said. + +

+

As he came near Jericho, a certain blind man sat by the road, begging. + +Hearing a multitude going by, he asked what this meant. + +They told him that Jesus of Nazareth was passing by. + +He cried out, “Jesus, you son of David, have mercy on me!” + +Those who led the way rebuked him, that he should be quiet; but he cried out all the more, “You son of David, have mercy on me!” + +

+

Standing still, Jesus commanded him to be brought to him. When he had come near, he asked him, + +What do you want me to do?” +

+

He said, “Lord, that I may see again.” + +

+

Jesus said to him, +Receive your sight. Your faith has healed you.” + + +

+

Immediately he received his sight and followed him, glorifying God. All the people, when they saw it, praised God. + +

+ + +

He entered and was passing through Jericho. + +There was a man named Zacchaeus. He was a chief tax collector, and he was rich. + +He was trying to see who Jesus was, and couldn’t because of the crowd, because he was short. + +He ran on ahead and climbed up into a sycamore tree to see him, for he was going to pass that way. + +When Jesus came to the place, he looked up and saw him, and said to him, +Zacchaeus, hurry and come down, for today I must stay at your house.” + + +He hurried, came down, and received him joyfully. + +When they saw it, they all murmured, saying, “He has gone in to lodge with a man who is a sinner.” + +

+

Zacchaeus stood and said to the Lord, “Behold, Lord, half of my goods I give to the poor. If I have wrongfully exacted anything of anyone, I restore four times as much.” + +

+

Jesus said to him, +Today, salvation has come to this house, because he also is a son of Abraham. + + +For the Son of Man came to seek and to save that which was lost.” + + +

+

As they heard these things, he went on and told a parable, because he was near Jerusalem, and they supposed that God’s Kingdom would be revealed immediately. + +He said therefore, +A certain nobleman went into a far country to receive for himself a kingdom and to return. + + +He called ten servants of his and gave them ten mina coins, +19:13 +10 minas was more than 3 years’ wages for an agricultural laborer. + +and told them, ‘Conduct business until I come.’ + + +But his citizens hated him, and sent an envoy after him, saying, ‘We don’t want this man to reign over us.’ + +

+

When he had come back again, having received the kingdom, he commanded these servants, to whom he had given the money, to be called to him, that he might know what they had gained by conducting business. + + +The first came before him, saying, ‘Lord, your mina has made ten more minas.’ + +

+

He said to him, ‘Well done, you good servant! Because you were found faithful with very little, you shall have authority over ten cities.’ + + +

+

The second came, saying, ‘Your mina, Lord, has made five minas.’ + + +

+

So he said to him, ‘And you are to be over five cities.’ + + +

+

Another came, saying, ‘Lord, behold, your mina, which I kept laid away in a handkerchief, + + +for I feared you, because you are an exacting man. You take up that which you didn’t lay down, and reap that which you didn’t sow.’ + +

+

He said to him, ‘Out of your own mouth I will judge you, you wicked servant! You knew that I am an exacting man, taking up that which I didn’t lay down and reaping that which I didn’t sow. + + +Then why didn’t you deposit my money in the bank, and at my coming, I might have earned interest on it?’ + + +He said to those who stood by, ‘Take the mina away from him and give it to him who has the ten minas.’ + +

+

They said to him, ‘Lord, he has ten minas!’ + + +For I tell you that to everyone who has, will more be given; but from him who doesn’t have, even that which he has will be taken away from him. + + +But bring those enemies of mine who didn’t want me to reign over them here, and kill them before me.’” + +Having said these things, he went on ahead, going up to Jerusalem. + +

+

When he came near to Bethsphage19:29 +TR, NU read “Bethpage” instead of “Bethsphage” and Bethany, at the mountain that is called Olivet, he sent two of his disciples, + +saying, +Go your way into the village on the other side, in which, as you enter, you will find a colt tied, which no man has ever sat upon. Untie it and bring it. + + +If anyone asks you, ‘Why are you untying it?’ say to him: ‘The Lord needs it.’” + +

+

Those who were sent went away and found things just as he had told them. + +As they were untying the colt, its owners said to them, “Why are you untying the colt?” + +They said, “The Lord needs it.” + +Then they brought it to Jesus. They threw their cloaks on the colt and sat Jesus on them. + +As he went, they spread their cloaks on the road. + +

+

As he was now getting near, 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 which they had seen, + +saying, “Blessed is the King who comes in the name of the Lord!19:38 +Psalms 118:26 Peace in heaven, and glory in the highest!” + +

+

Some of the Pharisees from the multitude said to him, “Teacher, rebuke your disciples!” + +

+

He answered them, +I tell you that if these were silent, the stones would cry out.” + +

+

When he came near, he saw the city and wept over it, + +saying, +If you, even you, had known today the things which belong to your peace! But now, they are hidden from your eyes. + + +For the days will come on you when your enemies will throw up a barricade against you, surround you, hem you in on every side, + + +and will dash you and your children within you to the ground. They will not leave in you one stone on another, because you didn’t know the time of your visitation.” + +

+

He entered into the temple and began to drive out those who bought and sold in it, + +saying to them, +It is written, ‘My house is a house of prayer,’ +19:46 +Isaiah 56:7 +but you have made it aden of robbers’!” +19:46 +Jeremiah 7:11 + +

+

He was teaching daily in the temple, but the chief priests, the scribes, and the leading men among the people sought to destroy him. + +They couldn’t find what they might do, for all the people hung on to every word that he said. + +

+ + +

On one of those days, as he was teaching the people in the temple and preaching the Good News, the20:1 +TR adds “chief” priests and scribes came to him with the elders. + +They asked him, “Tell us: by what authority do you do these things? Or who is giving you this authority?” + +

+

He answered them, +I also will ask you one question. Tell me: + + +the baptism of John, was it from heaven, or from men?” + +

+

They reasoned with themselves, saying, “If we say, ‘From heaven,’ he will say, ‘Why didn’t you believe him?’ + +But if we say, ‘From men,’ all the people will stone us, for they are persuaded that John was a prophet.” + +They answered that they didn’t know where it was from. + +

+

Jesus said to them, +Neither will I tell you by what authority I do these things.” + +

+

He began to tell the people this parable: +A +20:9 +NU (in brackets) and TR add “certain” +man planted a vineyard and rented it out to some farmers, and went into another country for a long time. + + +At the proper season, he sent a servant to the farmers to collect his share of the fruit of the vineyard. But the farmers beat him and sent him away empty. + + +He sent yet another servant, and they also beat him and treated him shamefully, and sent him away empty. + + +He sent yet a third, and they also wounded him and threw him out. + + +The lord of the vineyard said, ‘What shall I do? I will send my beloved son. It may be that seeing him, they will respect him.’ + +

+

But when the farmers saw him, they reasoned among themselves, saying, ‘This is the heir. Come, let’s kill him, that the inheritance may be ours.’ + + +Then they threw him out of the vineyard and killed him. What therefore will the lord of the vineyard do to them? + + +He will come and destroy these farmers, and will give the vineyard to others.” +

+

When they heard that, they said, “May that never be!” + +

+

But he looked at them and said, +Then what is this that is written, +

+The stone which the builders rejected + +was made the chief cornerstone’?20:17 +Psalms 118:22 + + + +Everyone who falls on that stone will be broken to pieces, + + +but it will crush whomever it falls on to dust.” + + +

The chief priests and the scribes sought to lay hands on him that very hour, but they feared the peoplefor they knew he had spoken this parable against them. + +They watched him and sent out spies, who pretended to be righteous, that they might trap him in something he said, so as to deliver him up to the power and authority of the governor. + +They asked him, “Teacher, we know that you say and teach what is right, and aren’t partial to anyone, but truly teach the way of God. + +Is it lawful for us to pay taxes to Caesar, or not?” + +

+

But he perceived their craftiness, and said to them, +“Why do you test me? + + +Show me a denarius. Whose image and inscription are on it?” + +

+

They answered, “Caesars.” + +

+

He said to them, +Then give to Caesar the things that are Caesar’s, and to God the things that are God’s.” + +

+

They weren’t able to trap him in his words before the people. They marveled at his answer and were silent. + +Some of the Sadducees came to him, those who deny that there is a resurrection. + +They asked him, “Teacher, Moses wrote to us that if a mans brother dies having a wife, and he is childless, his brother should take the wife and raise up children for his brother. + +There were therefore seven brothers. The first took a wife, and died childless. + +The second took her as wife, and he died childless. + +The third took her, and likewise the seven all left no children, and died. + +Afterward the woman also died. + +Therefore in the resurrection whose wife of them will she be? For the seven had her as a wife.” + +

+

Jesus said to them, +The children of this age marry and are given in marriage. + + +But those who are considered worthy to attain to that age and the resurrection from the dead neither marry nor are given in marriage. + + +For they cant die any more, for they are like the angels and are children of God, being children of the resurrection. + + +But that the dead are raised, even Moses showed at the bush, when he called the LordThe God of Abraham, the God of Isaac, and the God of Jacob.’ +20:37 +Exodus 3:6 + +Now he is not the God of the dead, but of the living, for all are alive to him.” + +

+

Some of the scribes answered, “Teacher, you speak well.” + +They didn’t dare to ask him any more questions. + +

+

He said to them, +Why do they say that the Christ is David’s son? + + +David himself says in the book of Psalms, +

+The Lord said to my Lord, + +Sit at my right hand, + + +until I make your enemies the footstool of your feet.”’ +20:43 +Psalms 110:1 + + +

David therefore calls him Lord, so how is he his son?” + +

+

In the hearing of all the people, he said to his disciples, + +Beware of those scribes who like to walk in long robes, and love greetings in the marketplaces, the best seats in the synagogues, and the best places at feasts; + + +who devour widowshouses, and for a pretense make long prayers. These will receive greater condemnation.” + +

+ + +

He looked up and saw the rich people who were putting their gifts into the treasury. + +He saw a certain poor widow casting in two small brass coins.21:2 +literally, “two lepta.” 2 lepta was about 1% of a day’s wages for an agricultural laborer. + +He said, +“Truly I tell you, this poor widow put in more than all of them, + + +for all these put in gifts for God from their abundance, but she, out of her poverty, put in all that she had to live on.” + +

+

As some were talking about the temple and how it was decorated with beautiful stones and gifts, he said, + +As for these things which you see, the days will come in which there will not be left here one stone on another that will not be thrown down.” + +

+

They asked him, “Teacher, so when will these things be? What is the sign that these things are about to happen?” + +

+

He said, +“Watch out that you don’t get led astray, for many will come in my name, saying, ‘I am he21:8 +or, I AM,’ and, ‘The time is at hand.’ Therefore don’t follow them. + + +When you hear of wars and disturbances, don’t be terrified, for these things must happen first, but the end won’t come immediately.” + +

+

Then he said to them, +Nation will rise against nation, and kingdom against kingdom. + + +There will be great earthquakes, famines, and plagues in various places. There will be terrors and great signs from heaven. + + +But before all these things, they will lay their hands on you and will persecute you, delivering you up to synagogues and prisons, bringing you before kings and governors for my name’s sake. + + +It will turn out as a testimony for you. + + +Settle it therefore in your hearts not to meditate beforehand how to answer, + + +for I will give you a mouth and wisdom which all your adversaries will not be able to withstand or to contradict. + + +You will be handed over even by parents, brothers, relatives, and friends. They will cause some of you to be put to death. + + +You will be hated by all men for my name’s sake. + + +And not a hair of your head will perish. + +

+

By your endurance you will win your lives. + +

+

But when you see Jerusalem surrounded by armies, then know that its desolation is at hand. + + +Then let those who are in Judea flee to the mountains. Let those who are in the middle of her depart. Let those who are in the country not enter therein. + + +For these are days of vengeance, that all things which are written may be fulfilled. + + +Woe to those who are pregnant and to those who nurse infants in those days! For there will be great distress in the land and wrath to this people. + + +They will fall by the edge of the sword, and will be led captive into all the nations. Jerusalem will be trampled down by the Gentiles until the times of the Gentiles are fulfilled. + + +

+

There will be signs in the sun, moon, and stars; and on the earth anxiety of nations, in perplexity for the roaring of the sea and the waves; + + +men fainting for fear and for expectation of the things which are coming on the world, for the powers of the heavens will be shaken. + + +Then they will see the Son of Man coming in a cloud with power and great glory. + + +But when these things begin to happen, look up and lift up your heads, because your redemption is near.” + +

+

He told them a parable. +See the fig tree and all the trees. + + +When they are already budding, you see it and know by your own selves that the summer is already near. + + +Even so you also, when you see these things happening, know that God’s Kingdom is near. + + +Most certainly I tell you, this generation will not pass away until all things are accomplished. + + +Heaven and earth will pass away, but my words will by no means pass away. + +

+

So be careful, or your hearts will be loaded down with carousing, drunkenness, and cares of this life, and that day will come on you suddenly. + + +For it will come like a snare on all those who dwell on the surface of all the earth. + + +Therefore be watchful all the time, praying that you may be counted worthy to escape all these things that will happen, and to stand before the Son of Man.” + +

+

Every day Jesus was teaching in the temple, and every night he would go out and spend the night on the mountain that is called Olivet. + +All the people came early in the morning to him in the temple to hear him. + +

+ + +

Now the feast of unleavened bread, which is called the Passover, was approaching. + +The chief priests and the scribes sought how they might put him to death, for they feared the people. + +

+

Satan entered into Judas, who was also called Iscariot, who was counted with the twelve. + +He went away and talked with the chief priests and captains about how he might deliver him to them. + +They were glad, and agreed to give him money. + +He consented and sought an opportunity to deliver him to them in the absence of the multitude. + +

+

The day of unleavened bread came, on which the Passover must be sacrificed. + +Jesus sent Peter and John, saying, +Go and prepare the Passover for us, that we may eat.” + +

+

They said to him, “Where do you want us to prepare?” + +

+

He said to them, +Behold, when you have entered into the city, a man carrying a pitcher of water will meet you. Follow him into the house which he enters. + + +Tell the master of the house, ‘The Teacher says to you, “Where is the guest room, where I may eat the Passover with my disciples?”’ + + +He will show you a large, furnished upper room. Make preparations there.” + +

+

They went, found things as Jesus had told them, and they prepared the Passover. + +

+

When the hour had come, he sat down with the twelve apostles. + +He said to them, +I have earnestly desired to eat this Passover with you before I suffer, + + +for I tell you, I will no longer by any means eat of it until it is fulfilled in God’s Kingdom.” + +He received a cup, and when he had given thanks, he said, +Take this and share it among yourselves, + + +for I tell you, I will not drink at all again from the fruit of the vine, until God’s Kingdom comes.” + +

+

He took bread, and when he had given thanks, he broke and gave it to them, saying, +This is my body which is given for you. Do this in memory of me.” + +Likewise, he took the cup after supper, saying, +This cup is the new covenant in my blood, which is poured out for you. + + +But behold, the hand of him who betrays me is with me on the table. + + +The Son of Man indeed goes as it has been determined, but woe to that man through whom he is betrayed!” + +

+

They began to question among themselves which of them it was who would do this thing. + +

+

A dispute also arose among them, which of them was considered to be greatest. + +He said to them, +The kings of the nations lord it over them, and those who have authority over them are calledbenefactors.’ + + +But not so with you. Rather, the one who is greater among you, let him become as the younger, and one who is governing, as one who serves. + + +For who is greater, one who sits at the table, or one who serves? Isn’t it he who sits at the table? But I am among you as one who serves. + + +

+

But you are those who have continued with me in my trials. + + +I confer on you a kingdom, even as my Father conferred on me, + + +that you may eat and drink at my table in my Kingdom. You will sit on thrones, judging the twelve tribes of Israel.” + +

+

The Lord said, +Simon, Simon, behold, Satan asked to have all of you, that he might sift you as wheat, + + +but I prayed for you, that your faith wouldn’t fail. You, when once you have turned again, establish your brothers.”22:32 +The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.” + +

+

He said to him, “Lord, I am ready to go with you both to prison and to death!” + +

+

He said, +I tell you, Peter, the rooster will by no means crow today until you deny that you know me three times.” + +

+

He said to them, +When I sent you out without purse, bag, and sandals, did you lack anything?” +

+

They said, “Nothing.” + +

+

Then he said to them, +But now, whoever has a purse, let him take it, and likewise a bag. Whoever has none, let him sell his cloak, and buy a sword. + + +For I tell you that this which is written must still be fulfilled in me: ‘He was counted with transgressors.’22:37 +Isaiah 53:12 +For that which concerns me is being fulfilled.” + +

+

They said, “Lord, behold, here are two swords.” +

+

He said to them, +That is enough.” + +

+

He came out and went, as his custom was, to the Mount of Olives. His disciples also followed him. + +When he was at the place, he said to them, +Pray that you don’t enter into temptation.” + +

+

He was withdrawn from them about a stone’s throw, and he knelt down and prayed, + +saying, +Father, if you are willing, remove this cup from me. Nevertheless, not my will, but yours, be done.” + +

+

An angel from heaven appeared to him, strengthening him. + +Being in agony, he prayed more earnestly. His sweat became like great drops of blood falling down on the ground. + +

+

When he rose up from his prayer, he came to the disciples and found them sleeping because of grief, + +and said to them, +Why do you sleep? Rise and pray that you may not enter into temptation.” + +

+

While he was still speaking, a crowd appeared. He who was called Judas, one of the twelve, was leading them. He came near to Jesus to kiss him. + +But Jesus said to him, +Judas, do you betray the Son of Man with a kiss?” + +

+

When those who were around him saw what was about to happen, they said to him, “Lord, shall we strike with the sword?” + +A certain one of them struck the servant of the high priest, and cut off his right ear. + +

+

But Jesus answered, +Let me at least do thisand he touched his ear and healed him. + +Jesus said to the chief priests, captains of the temple, and elders, who had come against him, +Have you come out as against a robber, with swords and clubs? + + +When I was with you in the temple daily, you didn’t stretch out your hands against me. But this is your hour, and the power of darkness.” + + +

+

They seized him and led him away, and brought him into the high priest’s house. But Peter followed from a distance. + +When they had kindled a fire in the middle of the courtyard and had sat down together, Peter sat among them. + +A certain servant girl saw him as he sat in the light, and looking intently at him, said, “This man also was with him.” + +

+

He denied Jesus, saying, “Woman, I don’t know him.” + +

+

After a little while someone else saw him and said, “You also are one of them!” +

+

But Peter answered, “Man, I am not!” + +

+

After about one hour passed, another confidently affirmed, saying, “Truly this man also was with him, for he is a Galilean!” + +

+

But Peter said, “Man, I don’t know what you are talking about!” Immediately, while he was still speaking, a rooster crowed. + +The Lord turned and looked at Peter. Then Peter remembered the Lords word, how he said to him, +Before the rooster crows you will deny me three times.” + +He went out, and wept bitterly. + +

+

The men who held Jesus mocked him and beat him. + +Having blindfolded him, they struck him on the face and asked him, “Prophesy! Who is the one who struck you?” + +They spoke many other things against him, insulting him. + +

+

As soon as it was day, the assembly of the elders of the people were gathered together, both chief priests and scribes, and they led him away into their council, saying, + +If you are the Christ, tell us.” +

+

But he said to them, +If I tell you, you won’t believe, + + +and if I ask, you will in no way answer me or let me go. + + +From now on, the Son of Man will be seated at the right hand of the power of God.” + +

+

They all said, “Are you then the Son of God?” +

+

He said to them, +You say it, because I am.” + +

+

They said, “Why do we need any more witness? For we ourselves have heard from his own mouth!” + +

+ + +

The whole company of them rose up and brought him before Pilate. + +They began to accuse him, saying, “We found this man perverting the nation, forbidding paying taxes to Caesar, and saying that he himself is Christ, a king.” + +

+

Pilate asked him, “Are you the King of the Jews?” +

+

He answered him, +So you say.” + +

+

Pilate said to the chief priests and the multitudes, “I find no basis for a charge against this man.” + +

+

But they insisted, saying, “He stirs up the people, teaching throughout all Judea, beginning from Galilee even to this place.” + +

+

But when Pilate heard Galilee mentioned, he asked if the man was a Galilean. + +When he found out that he was in Herod’s jurisdiction, he sent him to Herod, who was also in Jerusalem during those days. + +

+

Now when Herod saw Jesus, he was exceedingly glad, for he had wanted to see him for a long time, because he had heard many things about him. He hoped to see some miracle done by him. + +He questioned him with many words, but he gave no answers. + +The chief priests and the scribes stood, vehemently accusing him. + +Herod with his soldiers humiliated him and mocked him. Dressing him in luxurious clothing, they sent him back to Pilate. + +Herod and Pilate became friends with each other that very day, for before that they were enemies with each other. + +

+

Pilate called together the chief priests, the rulers, and the people, + +and said to them, “You brought this man to me as one that perverts the people, and behold, having examined him before you, I found no basis for a charge against this man concerning those things of which you accuse him. + +Neither has Herod, for I sent you to him, and see, nothing worthy of death has been done by him. + +I will therefore chastise him and release him.” + +

+

Now he had to release one prisoner to them at the feast.23:17 +NU omits verse 17. + +But they all cried out together, saying, “Away with this man! Release to us Barabbas!”— + +one who was thrown into prison for a certain revolt in the city, and for murder. + +

+

Then Pilate spoke to them again, wanting to release Jesus, + +but they shouted, saying, “Crucify! Crucify him!” + +

+

He said to them the third time, “Why? What evil has this man done? I have found no capital crime in him. I will therefore chastise him and release him.” + +But they were urgent with loud voices, asking that he might be crucified. Their voices and the voices of the chief priests prevailed. + +Pilate decreed that what they asked for should be done. + +He released him who had been thrown into prison for insurrection and murder, for whom they asked, but he delivered Jesus up to their will. + +

+

When they led him away, they grabbed one Simon of Cyrene, coming from the country, and laid the cross on him to carry it after Jesus. + +A great multitude of the people followed him, including women who also mourned and lamented him. + +But Jesus, turning to them, said, +Daughters of Jerusalem, don’t weep for me, but weep for yourselves and for your children. + + +For behold, the days are coming in which they will say, ‘Blessed are the barren, the wombs that never bore, and the breasts that never nursed.’ + + +Then they will begin to tell the mountains, ‘Fall on us!’ and tell the hills, ‘Cover us.’23:30 +Hosea 10:8 + +For if they do these things in the green tree, what will be done in the dry?” + +

+

There were also others, two criminals, led with him to be put to death. + +When they came to the place that is calledThe Skull”, they crucified him there with the criminals, one on the right and the other on the left. + +

+

Jesus said, +Father, forgive them, for they don’t know what they are doing.” +

+

Dividing his garments among them, they cast lots. + +The people stood watching. The rulers with them also scoffed at him, saying, “He saved others. Let him save himself, if this is the Christ of God, his chosen one!” + +

+

The soldiers also mocked him, coming to him and offering him vinegar, + +and saying, “If you are the King of the Jews, save yourself!” + +

+

An inscription was also written over him in letters of Greek, Latin, and Hebrew: “THIS IS THE KING OF THE JEWS.” + +

+

One of the criminals who was hanged insulted him, saying, “If you are the Christ, save yourself and us!” + +

+

But the other answered, and rebuking him said, “Don’t you even fear God, seeing you are under the same condemnation? + +And we indeed justly, for we receive the due reward for our deeds, but this man has done nothing wrong.” + +He said to Jesus, “Lord, remember me when you come into your Kingdom.” + +

+

Jesus said to him, +“Assuredly I tell you, today you will be with me in Paradise.” + +

+

It was now about the sixth hour,23:44 +Time was counted from sunrise, so the sixth hour was about noon. and darkness came over the whole land until the ninth hour.23:44 +3:00 p.m. + +The sun was darkened, and the veil of the temple was torn in two. + +Jesus, crying with a loud voice, said, +Father, into your hands I commit my spirit!” Having said this, he breathed his last. + +

+

When the centurion saw what was done, he glorified God, saying, “Certainly this was a righteous man.” + +All the multitudes that came together to see this, when they saw the things that were done, returned home beating their chests. + +All his acquaintances and the women who followed with him from Galilee stood at a distance, watching these things. + +

+

Behold, there was a man named Joseph, who was a member of the council, a good and righteous man + +(he had not consented to their counsel and deed), from Arimathaea, a city of the Jews, who was also waiting for God’s Kingdom. + +This man went to Pilate, and asked for Jesusbody. + +He took it down and wrapped it in a linen cloth, and laid him in a tomb that was cut in stone, where no one had ever been laid. + +It was the day of the Preparation, and the Sabbath was drawing near. + +The women who had come with him out of Galilee followed after, and saw the tomb and how his body was laid. + +They returned and prepared spices and ointments. On the Sabbath they rested according to the commandment. + +

+ + +

But on the first day of the week, at early dawn, they and some others came to the tomb, bringing the spices which they had prepared. + +They found the stone rolled away from the tomb. + +They entered in, and didn’t find the Lord Jesusbody. + +While they were greatly perplexed about this, behold, two men stood by them in dazzling clothing. + +Becoming terrified, they bowed their faces down to the earth. +

+

The men said to them, “Why do you seek the living among the dead? + +He isn’t here, but is risen. Remember what he told you when he was still in Galilee, + +saying that the Son of Man must be delivered up into the hands of sinful men and be crucified, and the third day rise again?” + +

+

They remembered his words, + +returned from the tomb, and told all these things to the eleven and to all the rest. + +Now they were Mary Magdalene, Joanna, and Mary the mother of James. The other women with them told these things to the apostles. + +These words seemed to them to be nonsense, and they didn’t believe them. + +But Peter got up and ran to the tomb. Stooping and looking in, he saw the strips of linen lying by themselves, and he departed to his home, wondering what had happened. + +

+

Behold, two of them were going that very day to a village named Emmaus, which was sixty stadia24:13 +60 stadia = about 11 kilometers or about 7 miles. + from Jerusalem. + +They talked with each other about all of these things which had happened. + +While they talked and questioned together, Jesus himself came near, and went with them. + +But their eyes were kept from recognizing him. + +He said to them, +What are you talking about as you walk, and are sad?” + +

+

One of them, named Cleopas, answered him, “Are you the only stranger in Jerusalem who doesn’t know the things which have happened there in these days?” + +

+

He said to them, +What things?” +

+

They said to him, “The things concerning Jesus the Nazarene, who was a prophet mighty in deed and word before God and all the people; + +and how the chief priests and our rulers delivered him up to be condemned to death, and crucified him. + +But we were hoping that it was he who would redeem Israel. Yes, and besides all this, it is now the third day since these things happened. + +Also, certain women of our company amazed us, having arrived early at the tomb; + +and when they didn’t find his body, they came saying that they had also seen a vision of angels, who said that he was alive. + +Some of us went to the tomb and found it just like the women had said, but they didn’t see him.” + +

+

He said to them, +Foolish people, and slow of heart to believe in all that the prophets have spoken! + + +Didn’t the Christ have to suffer these things and to enter into his glory?” + +Beginning from Moses and from all the prophets, he explained to them in all the Scriptures the things concerning himself. + +

+

They came near to the village where they were going, and he acted like he would go further. + +

+

They urged him, saying, “Stay with us, for it is almost evening, and the day is almost over.” +

+

He went in to stay with them. + +When he had sat down at the table with them, he took the bread and gave thanks. Breaking it, he gave it to them. + +Their eyes were opened and they recognized him; then he vanished out of their sight. + +They said to one another, “Weren’t our hearts burning within us while he spoke to us along the way, and while he opened the Scriptures to us?” + +They rose up that very hour, returned to Jerusalem, and found the eleven gathered together, and those who were with them, + +saying, “The Lord is risen indeed, and has appeared to Simon!” + +They related the things that happened along the way, and how he was recognized by them in the breaking of the bread. + +

+

As they said these things, Jesus himself stood among them, and said to them, +“Peace be to you.” + +

+

But they were terrified and filled with fear, and supposed that they had seen a spirit. + +

+

He said to them, +Why are you troubled? Why do doubts arise in your hearts? + + +See my hands and my feet, that it is truly me. Touch me and see, for a spirit doesn’t have flesh and bones, as you see that I have.” + +When he had said this, he showed them his hands and his feet. + +While they still didn’t believe for joy, and wondered, he said to them, +Do you have anything here to eat?” + +

+

They gave him a piece of a broiled fish and some honeycomb. + +He took them, and ate in front of them. + +He said to them, +This is what I told you while I was still with you, that all things which are written in the law of Moses, the prophets, and the psalms concerning me must be fulfilled.” + +

+

Then he opened their minds, that they might understand the Scriptures. + +He said to them, +Thus it is written, and thus it was necessary for the Christ to suffer and to rise from the dead the third day, + + +and that repentance and remission of sins should be preached in his name to all the nations, beginning at Jerusalem. + + +You are witnesses of these things. + + +Behold, I send out the promise of my Father on you. But wait in the city of Jerusalem until you are clothed with power from on high.” + + +

+

He led them out as far as Bethany, and he lifted up his hands and blessed them. + +While he blessed them, he withdrew from them and was carried up into heaven. + +They worshiped him and returned to Jerusalem with great joy, + +and were continually in the temple, praising and blessing God. Amen. + +

+
+43-JHN-web.sfm World English Bible (WEB) +John +The Good News According to John +John +Jhn +

The Good News According to +

+

John +

+ + +

In the beginning was the Word, and the Word was with God, and the Word was God. + +The same was in the beginning with God. + +All things were made through him. Without him, nothing was made that has been made. + +In him was life, and the life was the light of men. + +The light shines in the darkness, and the darkness hasn’t overcome1:5 +The word translated “overcome” (κατέλαβεν) can also be translated “comprehended.” It refers to getting a grip on an enemy to defeat him. + it. + +

+

There came a man sent from God, whose name was John. + +The same came as a witness, that he might testify about the light, that all might believe through him. + +He was not the light, but was sent that he might testify about the light. + +The true light that enlightens everyone was coming into the world. + +

+

He was in the world, and the world was made through him, and the world didn’t recognize him. + +He came to his own, and those who were his own didn’t receive him. + +But as many as received him, to them he gave the right to become God’s children, to those who believe in his name: + +who were born, not of blood, nor of the will of the flesh, nor of the will of man, but of God. + +

+

The Word became flesh and lived among us. We saw his glory, such glory as of the only born1:14 +The phrase “only born” is from the Greek word “μονογενους”, which is sometimes translated “only begotten” or “one and only”. Son of the Father, full of grace and truth. + +John testified about him. He cried out, saying, “This was he of whom I said, ‘He who comes after me has surpassed me, for he was before me.’” + +From his fullness we all received grace upon grace. + +For the law was given through Moses. Grace and truth were realized through Jesus Christ.1:17 +“Christ” means “Anointed One”. + +No one has seen God at any time. The only born1:18 +The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. Son,1:18 +NU reads “God” who is in the bosom of the Father, has declared him. + +

+

This is John’s testimony, when the Jews sent priests and Levites from Jerusalem to ask him, “Who are you?” + +

+

He declared, and didn’t deny, but he declared, “I am not the Christ.” + +

+

They asked him, “What then? Are you Elijah?” +

+

He said, “I am not.” +

+

Are you the prophet?” +

+

He answered, “No.” + +

+

They said therefore to him, “Who are you? Give us an answer to take back to those who sent us. What do you say about yourself?” + +

+

He said, “I am the voice of one crying in the wilderness, ‘Make straight the way of the Lord,’1:23 +Isaiah 40:3 as Isaiah the prophet said.” + +

+

The ones who had been sent were from the Pharisees. + +They asked him, “Why then do you baptize if you are not the Christ, nor Elijah, nor the prophet?” + +

+

John answered them, “I baptize in water, but among you stands one whom you don’t know. + +He is the one who comes after me, who is preferred before me, whose sandal strap I’m not worthy to loosen.” + +These things were done in Bethany beyond the Jordan, where John was baptizing. + +

+

The next day, he saw Jesus coming to him, and said, “Behold,1:29 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. the Lamb of God, who takes away the sin of the world! + +This is he of whom I said, ‘After me comes a man who is preferred before me, for he was before me.’ + +I didn’t know him, but for this reason I came baptizing in water, that he would be revealed to Israel.” + +John testified, saying, “I have seen the Spirit descending like a dove out of heaven, and it remained on him. + +I didn’t recognize him, but he who sent me to baptize in water said to me, ‘On whomever you will see the Spirit descending and remaining on him is he who baptizes in the Holy Spirit.’ + +I have seen and have testified that this is the Son of God.” + +

+

Again, the next day, John was standing with two of his disciples, + +and he looked at Jesus as he walked, and said, “Behold, the Lamb of God!” + +The two disciples heard him speak, and they followed Jesus. + +Jesus turned and saw them following, and said to them, +What are you looking for?” +

+

They said to him, “Rabbi” (which is to say, being interpreted, Teacher), “where are you staying?” + +

+

He said to them, +Come and see.” +

+

They came and saw where he was staying, and they stayed with him that day. It was about the tenth hour.1:39 +4:00 p.m. + +One of the two who heard John and followed him was Andrew, Simon Peter’s brother. + +He first found his own brother, Simon, and said to him, “We have found the Messiah!” (which is, being interpreted, Christ1:41 +“Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”.). + +He brought him to Jesus. Jesus looked at him and said, +You are Simon the son of Jonah. You shall be called Cephas (which is by interpretation, Peter).1:42 +“Cephas” (Aramaic) and “Peter” (Greek) both mean “Rock”. + +

+

On the next day, he was determined to go out into Galilee, and he found Philip. Jesus said to him, +“Follow me.” + +Now Philip was from Bethsaida, the city of Andrew and Peter. + +Philip found Nathanael, and said to him, “We have found him of whom Moses in the law and also the prophets, wrote: Jesus of Nazareth, the son of Joseph.” + +

+

Nathanael said to him, “Can any good thing come out of Nazareth?” +

+

Philip said to him, “Come and see.” + +

+

Jesus saw Nathanael coming to him, and said about him, +Behold, an Israelite indeed, in whom is no deceit!” + +

+

Nathanael said to him, “How do you know me?” +

+

Jesus answered him, +Before Philip called you, when you were under the fig tree, I saw you.” + +

+

Nathanael answered him, “Rabbi, you are the Son of God! You are King of Israel!” + +

+

Jesus answered him, +Because I told you, ‘I saw you underneath the fig tree,’ do you believe? You will see greater things than these!” + +He said to him, +Most certainly, I tell you all, hereafter you will see heaven opened, and the angels of God ascending and descending on the Son of Man.” + +

+ + +

The third day, there was a wedding in Cana of Galilee. Jesusmother was there. + +Jesus also was invited, with his disciples, to the wedding. + +When the wine ran out, Jesusmother said to him, “They have no wine.” + +

+

Jesus said to her, +Woman, what does that have to do with you and me? My hour has not yet come.” + +

+

His mother said to the servants, “Whatever he says to you, do it.” + +

+

Now there were six water pots of stone set there after the Jewsway of purifying, containing two or three metretes2:6 +2 to 3 metretes is about 20 to 30 U. S. Gallons, or 75 to 115 liters. apiece. + +Jesus said to them, +Fill the water pots with water.” So they filled them up to the brim. + +He said to them, +Now draw some out, and take it to the ruler of the feast.” So they took it. + +When the ruler of the feast tasted the water now become wine, and didn’t know where it came from (but the servants who had drawn the water knew), the ruler of the feast called the bridegroom + +and said to him, “Everyone serves the good wine first, and when the guests have drunk freely, then that which is worse. You have kept the good wine until now!” + +This beginning of his signs Jesus did in Cana of Galilee, and revealed his glory; and his disciples believed in him. + +

+

After this, he went down to Capernaum, he, and his mother, his brothers, and his disciples; and they stayed there a few days. + +

+

The Passover of the Jews was at hand, and Jesus went up to Jerusalem. + +He found in the temple those who sold oxen, sheep, and doves, and the changers of money sitting. + +He made a whip of cords and drove all out of the temple, both the sheep and the oxen; and he poured out the changersmoney and overthrew their tables. + +To those who sold the doves, he said, +Take these things out of here! Don’t make my Father’s house a marketplace!” + +His disciples remembered that it was written, “Zeal for your house will eat me up.”2:17 +Psalms 69:9 + +

+

The Jews therefore answered him, “What sign do you show us, seeing that you do these things?” + +

+

Jesus answered them, +Destroy this temple, and in three days I will raise it up.” + +

+

The Jews therefore said, “It took forty-six years to build this temple! Will you raise it up in three days?” + +But he spoke of the temple of his body. + +When therefore he was raised from the dead, his disciples remembered that he said this, and they believed the Scripture and the word which Jesus had said. + +

+

Now when he was in Jerusalem at the Passover, during the feast, many believed in his name, observing his signs which he did. + +But Jesus didn’t entrust himself to them, because he knew everyone, + +and because he didn’t need for anyone to testify concerning man; for he himself knew what was in man. + +

+ + +

Now there was a man of the Pharisees named Nicodemus, a ruler of the Jews. + +He came to Jesus by night and said to him, “Rabbi, we know that you are a teacher come from God, for no one can do these signs that you do, unless God is with him.” + +

+

Jesus answered him, +Most certainly I tell you, unless one is born anew, +3:3 +The word translated “anew” here and in John 3:7 (ἄνωθεν) also means “again” and “from above”. +he cant see God’s Kingdom.” + +

+

Nicodemus said to him, “How can a man be born when he is old? Can he enter a second time into his mother’s womb and be born?” + +

+

Jesus answered, +Most certainly I tell you, unless one is born of water and Spirit, he cant enter into God’s Kingdom. + +That which is born of the flesh is flesh. That which is born of the Spirit is spirit. + + +Don’t marvel that I said to you, ‘You must all be born anew.’ + + +The wind3:8 +The same Greek word (πνεῦμα) means wind, breath, and spirit. +blows where it wants to, and you hear its sound, but don’t know where it comes from and where it is going. So is everyone who is born of the Spirit.” + +

+

Nicodemus answered him, “How can these things be?” + +

+

Jesus answered him, +Are you the teacher of Israel, and don’t understand these things? + + +Most certainly I tell you, we speak that which we know and testify of that which we have seen, and you don’t receive our witness. + + +If I told you earthly things and you don’t believe, how will you believe if I tell you heavenly things? + + +No one has ascended into heaven but he who descended out of heaven, the Son of Man, who is in heaven. + + +As Moses lifted up the serpent in the wilderness, even so must the Son of Man be lifted up, + + +that whoever believes in him should not perish, but have eternal life. + + +For God so loved the world, that he gave his only born3:16 +The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. +Son, that whoever believes in him should not perish, but have eternal life. + + +For God didn’t send his Son into the world to judge the world, but that the world should be saved through him. + + +He who believes in him is not judged. He who doesn’t believe has been judged already, because he has not believed in the name of the only born Son of God. + + +This is the judgment, that the light has come into the world, and men loved the darkness rather than the light, for their works were evil. + + +For everyone who does evil hates the light and doesn’t come to the light, lest his works would be exposed. + + +But he who does the truth comes to the light, that his works may be revealed, that they have been done in God.” + +

+

After these things, Jesus came with his disciples into the land of Judea. He stayed there with them and baptized. + +John also was baptizing in Enon near Salim, because there was much water there. They came and were baptized; + +for John was not yet thrown into prison. + +Therefore a dispute arose on the part of John’s disciples with some Jews about purification. + +They came to John and said to him, “Rabbi, he who was with you beyond the Jordan, to whom you have testified, behold, he baptizes, and everyone is coming to him.” + +

+

John answered, “A man can receive nothing unless it has been given him from heaven. + +You yourselves testify that I said, ‘I am not the Christ,’ but, ‘I have been sent before him.’ + +He who has the bride is the bridegroom; but the friend of the bridegroom, who stands and hears him, rejoices greatly because of the bridegrooms voice. Therefore my joy is made full. + +He must increase, but I must decrease. + +

+

He who comes from above is above all. He who is from the earth belongs to the earth and speaks of the earth. He who comes from heaven is above all. + +What he has seen and heard, of that he testifies; and no one receives his witness. + +He who has received his witness has set his seal to this, that God is true. + +For he whom God has sent speaks the words of God; for God gives the Spirit without measure. + +The Father loves the Son, and has given all things into his hand. + +One who believes in the Son has eternal life, but one who disobeys3:36 +The same word can be translated “disobeys” or “disbelieves” in this context. the Son won’t see life, but the wrath of God remains on him.” + +

+ + +

Therefore when the Lord knew that the Pharisees had heard that Jesus was making and baptizing more disciples than John + +(although Jesus himself didn’t baptize, but his disciples), + +he left Judea and departed into Galilee. + +He needed to pass through Samaria. + +So he came to a city of Samaria called Sychar, near the parcel of ground that Jacob gave to his son Joseph. + +Jacob’s well was there. Jesus therefore, being tired from his journey, sat down by the well. It was about the sixth hour.4:6 +noon + +

+

A woman of Samaria came to draw water. Jesus said to her, +Give me a drink.” + +For his disciples had gone away into the city to buy food. + +

+

The Samaritan woman therefore said to him, “How is it that you, being a Jew, ask for a drink from me, a Samaritan woman?” (For Jews have no dealings with Samaritans.) + +

+

Jesus answered her, +If you knew the gift of God, and who it is who says to you, ‘Give me a drink,’ you would have asked him, and he would have given you living water.” + +

+

The woman said to him, “Sir, you have nothing to draw with, and the well is deep. So where do you get that living water? + +Are you greater than our father Jacob, who gave us the well and drank from it himself, as did his children and his livestock?” + +

+

Jesus answered her, +Everyone who drinks of this water will thirst again, + + +but whoever drinks of the water that I will give him will never thirst again; but the water that I will give him will become in him a well of water springing up to eternal life.” + +

+

The woman said to him, “Sir, give me this water, so that I don’t get thirsty, neither come all the way here to draw.” + +

+

Jesus said to her, +Go, call your husband, and come here.” + + +

+

The woman answered, “I have no husband.” +

+

Jesus said to her, +You said well, ‘I have no husband,’ + + +for you have had five husbands; and he whom you now have is not your husband. This you have said truly.” + +

+

The woman said to him, “Sir, I perceive that you are a prophet. + +Our fathers worshiped in this mountain, and you Jews say that in Jerusalem is the place where people ought to worship.” + +

+

Jesus said to her, +Woman, believe me, the hour is coming when neither in this mountain nor in Jerusalem will you worship the Father. + + +You worship that which you don’t know. We worship that which we know; for salvation is from the Jews. + + +But the hour comes, and now is, when the true worshipers will worship the Father in spirit and truth, for the Father seeks such to be his worshipers. + + +God is spirit, and those who worship him must worship in spirit and truth.” + +

+

The woman said to him, “I know that Messiah is coming, he who is called Christ.4:25 +“Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”. When he has come, he will declare to us all things.” + +

+

Jesus said to her, +I am he, the one who speaks to you.” + +

+

Just then, his disciples came. They marveled that he was speaking with a woman; yet no one said, “What are you looking for?” or, “Why do you speak with her?” + +So the woman left her water pot, went away into the city, and said to the people, + +Come, see a man who told me everything that I have done. Can this be the Christ?” + +They went out of the city, and were coming to him. + +

+

In the meanwhile, the disciples urged him, saying, “Rabbi, eat.” + +

+

But he said to them, +I have food to eat that you don’t know about.” + +

+

The disciples therefore said to one another, “Has anyone brought him something to eat?” + +

+

Jesus said to them, +My food is to do the will of him who sent me and to accomplish his work. + + +Don’t you say, ‘There are yet four months until the harvest’? Behold, I tell you, lift up your eyes and look at the fields, that they are white for harvest already. + + +He who reaps receives wages and gathers fruit to eternal life, that both he who sows and he who reaps may rejoice together. + + +For in this the saying is true, ‘One sows, and another reaps.’ + + +I sent you to reap that for which you haven’t labored. Others have labored, and you have entered into their labor.” + +

+

From that city many of the Samaritans believed in him because of the word of the woman, who testified, “He told me everything that I have done.” + +So when the Samaritans came to him, they begged him to stay with them. He stayed there two days. + +Many more believed because of his word. + +They said to the woman, “Now we believe, not because of your speaking; for we have heard for ourselves, and know that this is indeed the Christ, the Savior of the world.” + +

+

After the two days he went out from there and went into Galilee. + +For Jesus himself testified that a prophet has no honor in his own country. + +So when he came into Galilee, the Galileans received him, having seen all the things that he did in Jerusalem at the feast, for they also went to the feast. + +Jesus came therefore again to Cana of Galilee, where he made the water into wine. There was a certain nobleman whose son was sick at Capernaum. + +When he heard that Jesus had come out of Judea into Galilee, he went to him and begged him that he would come down and heal his son, for he was at the point of death. + +Jesus therefore said to him, +Unless you people see signs and wonders, you will in no way believe.” + +

+

The nobleman said to him, “Sir, come down before my child dies.” + +

+

Jesus said to him, +Go your way. Your son lives.” The man believed the word that Jesus spoke to him, and he went his way. + +As he was going down, his servants met him and reported, sayingYour child lives!” + +So he inquired of them the hour when he began to get better. They said therefore to him, “Yesterday at the seventh hour,4:52 +1:00 p.m. the fever left him.” + +So the father knew that it was at that hour in which Jesus said to him, +Your son lives.” He believed, as did his whole house. + +This is again the second sign that Jesus did, having come out of Judea into Galilee. + +

+ + +

After these things, there was a feast of the Jews, and Jesus went up to Jerusalem. + +Now in Jerusalem by the sheep gate, there is a pool, which is called in Hebrew, “Bethesda”, having five porches. + +In these lay a great multitude of those who were sick, blind, lame, or paralyzed, waiting for the moving of the water; + +for an angel went down at certain times into the pool and stirred up the water. Whoever stepped in first after the stirring of the water was healed of whatever disease he had.5:4 +NU omits from “waiting” in verse 3 to the end of verse 4. + +A certain man was there who had been sick for thirty-eight years. + +When Jesus saw him lying there, and knew that he had been sick for a long time, he asked him, +Do you want to be made well?” + +

+

The sick man answered him, “Sir, I have no one to put me into the pool when the water is stirred up, but while I’m coming, another steps down before me.” + +

+

Jesus said to him, +Arise, take up your mat, and walk.” + +

+

Immediately, the man was made well, and took up his mat and walked. +

+

Now that day was a Sabbath. + +So the Jews said to him who was cured, “It is the Sabbath. It is not lawful for you to carry the mat.” + +

+

He answered them, “He who made me well said to me, +Take up your mat and walk.’ ” + +

+

Then they asked him, “Who is the man who said to you, +Take up your mat and walk?” + +

+

But he who was healed didn’t know who it was, for Jesus had withdrawn, a crowd being in the place. + +

+

Afterward Jesus found him in the temple and said to him, +Behold, you are made well. Sin no more, so that nothing worse happens to you.” + + +

+

The man went away, and told the Jews that it was Jesus who had made him well. + +For this cause the Jews persecuted Jesus and sought to kill him, because he did these things on the Sabbath. + +But Jesus answered them, +My Father is still working, so I am working, too.” + +

+

For this cause therefore the Jews sought all the more to kill him, because he not only broke the Sabbath, but also called God his own Father, making himself equal with God. + +Jesus therefore answered them, +“Most certainly, I tell you, the Son can do nothing of himself, but what he sees the Father doing. For whatever things he does, these the Son also does likewise. + + +For the Father has affection for the Son, and shows him all things that he himself does. He will show him greater works than these, that you may marvel. + + +For as the Father raises the dead and gives them life, even so the Son also gives life to whom he desires. + + +For the Father judges no one, but he has given all judgment to the Son, + + +that all may honor the Son, even as they honor the Father. He who doesn’t honor the Son doesn’t honor the Father who sent him. + +

+

Most certainly I tell you, he who hears my word and believes him who sent me has eternal life, and doesn’t come into judgment, but has passed out of death into life. + + +Most certainly I tell you, the hour comes, and now is, when the dead will hear the Son of God’s voice; and those who hear will live. + + +For as the Father has life in himself, even so he gave to the Son also to have life in himself. + + +He also gave him authority to execute judgment, because he is a son of man. + + +Don’t marvel at this, for the hour comes in which all who are in the tombs will hear his voice + + +and will come out; those who have done good, to the resurrection of life; and those who have done evil, to the resurrection of judgment. + + +I can of myself do nothing. As I hear, I judge; and my judgment is righteous, because I don’t seek my own will, but the will of my Father who sent me. + +

+

If I testify about myself, my witness is not valid. + + +It is another who testifies about me. I know that the testimony which he testifies about me is true. + + +You have sent to John, and he has testified to the truth. + + +But the testimony which I receive is not from man. However, I say these things that you may be saved. + + +He was the burning and shining lamp, and you were willing to rejoice for a while in his light. + + +But the testimony which I have is greater than that of John; for the works which the Father gave me to accomplish, the very works that I do, testify about me, that the Father has sent me. + + +The Father himself, who sent me, has testified about me. You have neither heard his voice at any time, nor seen his form. + + +You don’t have his word living in you, because you don’t believe him whom he sent. + +

+

You search the Scriptures, because you think that in them you have eternal life; and these are they which testify about me. + + +Yet you will not come to me, that you may have life. + + +I don’t receive glory from men. + + +But I know you, that you don’t have Gods love in yourselves. + + +I have come in my Father’s name, and you don’t receive me. If another comes in his own name, you will receive him. + + +How can you believe, who receive glory from one another, and you don’t seek the glory that comes from the only God? + +

+

“Don’t think that I will accuse you to the Father. There is one who accuses you, even Moses, on whom you have set your hope. + + +For if you believed Moses, you would believe me; for he wrote about me. + + +But if you don’t believe his writings, how will you believe my words?” + +

+ + +

After these things, Jesus went away to the other side of the sea of Galilee, which is also called the Sea of Tiberias. + +A great multitude followed him, because they saw his signs which he did on those who were sick. + +Jesus went up into the mountain, and he sat there with his disciples. + +Now the Passover, the feast of the Jews, was at hand. + +Jesus therefore, lifting up his eyes and seeing that a great multitude was coming to him, said to Philip, +Where are we to buy bread, that these may eat?” + +He said this to test him, for he himself knew what he would do. + +

+

Philip answered him, “Two hundred denarii6:7 +A denarius was a silver coin worth about a day’s wages for an agricultural laborer, so 200 denarii would be between 6 and 7 month’s pay. worth of bread is not sufficient for them, that every one of them may receive a little.” + +

+

One of his disciples, Andrew, Simon Peter’s brother, said to him, + +There is a boy here who has five barley loaves and two fish, but what are these among so many?” + +

+

Jesus said, +Have the people sit down.” Now there was much grass in that place. So the men sat down, in number about five thousand. + +Jesus took the loaves, and having given thanks, he distributed to the disciples, and the disciples to those who were sitting down, likewise also of the fish as much as they desired. + +When they were filled, he said to his disciples, +Gather up the broken pieces which are left over, that nothing be lost.” + +So they gathered them up, and filled twelve baskets with broken pieces from the five barley loaves, which were left over by those who had eaten. + +When therefore the people saw the sign which Jesus did, they said, “This is truly the prophet who comes into the world.” + +Jesus therefore, perceiving that they were about to come and take him by force to make him king, withdrew again to the mountain by himself. + +

+

When evening came, his disciples went down to the sea. + +They entered into the boat, and were going over the sea to Capernaum. It was now dark, and Jesus had not come to them. + +The sea was tossed by a great wind blowing. + +When therefore they had rowed about twenty-five or thirty stadia,6:19 +25 to 30 stadia is about 5 to 6 kilometers or about 3 to 4 miles they saw Jesus walking on the sea6:19 +See Job 9:8 and drawing near to the boat; and they were afraid. + +But he said to them, +It is I.6:20 +or, I AM +Don’t be afraid.” + +They were willing therefore to receive him into the boat. Immediately the boat was at the land where they were going. + +

+

On the next day, the multitude that stood on the other side of the sea saw that there was no other boat there, except the one in which his disciples had embarked, and that Jesus hadn’t entered with his disciples into the boat, but his disciples had gone away alone. + +However, boats from Tiberias came near to the place where they ate the bread after the Lord had given thanks. + +When the multitude therefore saw that Jesus wasn’t there, nor his disciples, they themselves got into the boats and came to Capernaum, seeking Jesus. + +When they found him on the other side of the sea, they asked him, “Rabbi, when did you come here?” + +

+

Jesus answered them, +Most certainly I tell you, you seek me, not because you saw signs, but because you ate of the loaves and were filled. + + +Don’t work for the food which perishes, but for the food which remains to eternal life, which the Son of Man will give to you. For God the Father has sealed him.” + +

+

They said therefore to him, “What must we do, that we may work the works of God?” + +

+

Jesus answered them, +This is the work of God, that you believe in him whom he has sent.” + +

+

They said therefore to him, “What then do you do for a sign, that we may see and believe you? What work do you do? + +Our fathers ate the manna in the wilderness. As it is written, ‘He gave them bread out of heaven6:31 +Greek and Hebrew use the same word for “heaven”, “the heavens”, “the sky”, and “the air”. to eat.’”6:31 +Exodus 16:4; Nehemiah 9:15; Psalms 78:24-25 + +

+

Jesus therefore said to them, +Most certainly, I tell you, it wasn’t Moses who gave you the bread out of heaven, but my Father gives you the true bread out of heaven. + + +For the bread of God is that which comes down out of heaven and gives life to the world.” + +

+

They said therefore to him, “Lord, always give us this bread.” + +

+

Jesus said to them, +I am the bread of life. Whoever comes to me will not be hungry, and whoever believes in me will never be thirsty. + + +But I told you that you have seen me, and yet you don’t believe. + + +All those whom the Father gives me will come to me. He who comes to me I will in no way throw out. + + +For I have come down from heaven, not to do my own will, but the will of him who sent me. + + +This is the will of my Father who sent me, that of all he has given to me I should lose nothing, but should raise him up at the last day. + + +This is the will of the one who sent me, that everyone who sees the Son and believes in him should have eternal life; and I will raise him up at the last day.” + +

+

The Jews therefore murmured concerning him, because he said, +I am the bread which came down out of heaven.” + +They said, “Isn’t this Jesus, the son of Joseph, whose father and mother we know? How then does he say, +I have come down out of heaven’?” + + +

+

Therefore Jesus answered them, +“Don’t murmur among yourselves. + + +No one can come to me unless the Father who sent me draws him; and I will raise him up in the last day. + + +It is written in the prophets, ‘They will all be taught by God.’ +6:45 +Isaiah 54:13 +Therefore everyone who hears from the Father and has learned, comes to me. + + +Not that anyone has seen the Father, except he who is from God. He has seen the Father. + + +Most certainly, I tell you, he who believes in me has eternal life. + + +I am the bread of life. + + +Your fathers ate the manna in the wilderness and they died. + + +This is the bread which comes down out of heaven, that anyone may eat of it and not die. + + +I am the living bread which came down out of heaven. If anyone eats of this bread, he will live forever. Yes, the bread which I will give for the life of the world is my flesh.” + +

+

The Jews therefore contended with one another, saying, “How can this man give us his flesh to eat?” + +

+

Jesus therefore said to them, +“Most certainly I tell you, unless you eat the flesh of the Son of Man and drink his blood, you don’t have life in yourselves. + + +He who eats my flesh and drinks my blood has eternal life, and I will raise him up at the last day. + + +For my flesh is food indeed, and my blood is drink indeed. + + +He who eats my flesh and drinks my blood lives in me, and I in him. + + +As the living Father sent me, and I live because of the Father, so he who feeds on me will also live because of me. + + +This is the bread which came down out of heavennot as our fathers ate the manna and died. He who eats this bread will live forever.” + +He said these things in the synagogue, as he taught in Capernaum. + +

+

Therefore many of his disciples, when they heard this, said, “This is a hard saying! Who can listen to it?” + +

+

But Jesus knowing in himself that his disciples murmured at this, said to them, +Does this cause you to stumble? + + +Then what if you would see the Son of Man ascending to where he was before? + + +It is the spirit who gives life. The flesh profits nothing. The words that I speak to you are spirit, and are life. + + +But there are some of you who don’t believe.” For Jesus knew from the beginning who they were who didn’t believe, and who it was who would betray him. + +He said, +For this cause I have said to you that no one can come to me, unless it is given to him by my Father.” + +

+

At this, many of his disciples went back and walked no more with him. + +Jesus said therefore to the twelve, +You don’t also want to go away, do you?” + +

+

Simon Peter answered him, “Lord, to whom would we go? You have the words of eternal life. + +We have come to believe and know that you are the Christ, the Son of the living God.” + +

+

Jesus answered them, +“Didn’t I choose you, the twelve, and one of you is a devil?” + +Now he spoke of Judas, the son of Simon Iscariot, for it was he who would betray him, being one of the twelve. + +

+ + +

After these things, Jesus was walking in Galilee, for he wouldn’t walk in Judea, because the Jews sought to kill him. + +Now the feast of the Jews, the Feast of Booths, was at hand. + +His brothers therefore said to him, “Depart from here and go into Judea, that your disciples also may see your works which you do. + +For no one does anything in secret while he seeks to be known openly. If you do these things, reveal yourself to the world.” + +For even his brothers didn’t believe in him. + +

+

Jesus therefore said to them, +My time has not yet come, but your time is always ready. + + +The world cant hate you, but it hates me, because I testify about it, that its works are evil. + + +You go up to the feast. I am not yet going up to this feast, because my time is not yet fulfilled.” + +

+

Having said these things to them, he stayed in Galilee. + +But when his brothers had gone up to the feast, then he also went up, not publicly, but as it were in secret. + +The Jews therefore sought him at the feast, and said, “Where is he?” + +There was much murmuring among the multitudes concerning him. Some said, “He is a good man.” Others said, “Not so, but he leads the multitude astray.” + +Yet no one spoke openly of him for fear of the Jews. + +But when it was now the middle of the feast, Jesus went up into the temple and taught. + +The Jews therefore marveled, saying, “How does this man know letters, having never been educated?” + +

+

Jesus therefore answered them, +My teaching is not mine, but his who sent me. + + +If anyone desires to do his will, he will know about the teaching, whether it is from God or if I am speaking from myself. + + +He who speaks from himself seeks his own glory, but he who seeks the glory of him who sent him is true, and no unrighteousness is in him. + + +Didn’t Moses give you the law, and yet none of you keeps the law? Why do you seek to kill me?” + +

+

The multitude answered, “You have a demon! Who seeks to kill you?” + +

+

Jesus answered them, +I did one work and you all marvel because of it. + + +Moses has given you circumcision (not that it is of Moses, but of the fathers), and on the Sabbath you circumcise a boy. + + +If a boy receives circumcision on the Sabbath, that the law of Moses may not be broken, are you angry with me because I made a man completely healthy on the Sabbath? + + +Don’t judge according to appearance, but judge righteous judgment.” + + +

+

Therefore some of them of Jerusalem said, “Isn’t this he whom they seek to kill? + +Behold, he speaks openly, and they say nothing to him. Can it be that the rulers indeed know that this is truly the Christ? + +However, we know where this man comes from, but when the Christ comes, no one will know where he comes from.” + +

+

Jesus therefore cried out in the temple, teaching and saying, +You both know me, and know where I am from. I have not come of myself, but he who sent me is true, whom you don’t know. + + +I know him, because I am from him, and he sent me.” + +

+

They sought therefore to take him; but no one laid a hand on him, because his hour had not yet come. + +But of the multitude, many believed in him. They said, “When the Christ comes, he won’t do more signs than those which this man has done, will he?” + +The Pharisees heard the multitude murmuring these things concerning him, and the chief priests and the Pharisees sent officers to arrest him. + +

+

Then Jesus said, +I will be with you a little while longer, then I go to him who sent me. + + +You will seek me and won’t find me. You can’t come where I am.” + +

+

The Jews therefore said among themselves, “Where will this man go that we won’t find him? Will he go to the Dispersion among the Greeks and teach the Greeks? + +What is this word that he said, +You will seek me, and won’t find me;’ and +Where I am, you cant come?” + +

+

Now on the last and greatest day of the feast, Jesus stood and cried out, +If anyone is thirsty, let him come to me and drink! + + +He who believes in me, as the Scripture has said, from within him will flow rivers of living water.” + +But he said this about the Spirit, which those believing in him were to receive. For the Holy Spirit was not yet given, because Jesus wasn’t yet glorified. + +

+

Many of the multitude therefore, when they heard these words, said, “This is truly the prophet.” + +Others said, “This is the Christ.” But some said, “What, does the Christ come out of Galilee? + +Hasn’t the Scripture said that the Christ comes of the offspring7:42 +or, seed of David,7:42 +2 Samuel 7:12 and from Bethlehem,7:42 +Micah 5:2 the village where David was?” + +So a division arose in the multitude because of him. + +Some of them would have arrested him, but no one laid hands on him. + +The officers therefore came to the chief priests and Pharisees; and they said to them, “Why didn’t you bring him?” + +

+

The officers answered, “No man ever spoke like this man!” + +

+

The Pharisees therefore answered them, “You aren’t also led astray, are you? + +Have any of the rulers or any of the Pharisees believed in him? + +But this multitude that doesn’t know the law is cursed.” + +

+

Nicodemus (he who came to him by night, being one of them) said to them, + +Does our law judge a man unless it first hears from him personally and knows what he does?” + +

+

They answered him, “Are you also from Galilee? Search and see that no prophet has arisen out of Galilee.”7:52 +See Isaiah 9:1; Matthew 4:13-16 + +

+

Everyone went to his own house, + +

+ + +

but Jesus went to the Mount of Olives. + +

+

Now very early in the morning, he came again into the temple, and all the people came to him. He sat down and taught them. + +The scribes and the Pharisees brought a woman taken in adultery. Having set her in the middle, + +they told him, “Teacher, we found this woman in adultery, in the very act. + +Now in our law, Moses commanded us to stone such women.8:5 +Leviticus 20:10; Deuteronomy 22:22 What then do you say about her?” + +They said this testing him, that they might have something to accuse him of. +

+

But Jesus stooped down and wrote on the ground with his finger. + +But when they continued asking him, he looked up and said to them, +He who is without sin among you, let him throw the first stone at her.” + + +Again he stooped down and wrote on the ground with his finger. + +

+

They, when they heard it, being convicted by their conscience, went out one by one, beginning from the oldest, even to the last. Jesus was left alone with the woman where she was, in the middle. + +Jesus, standing up, saw her and said, +Woman, where are your accusers? Did no one condemn you?” + +

+

She said, “No one, Lord.” +

+

Jesus said, +Neither do I condemn you. Go your way. From now on, sin no more.”8:11 +NU includes John 7:53John 8:11, but puts brackets around it to indicate that the textual critics had less confidence that this was original. + +

+

Again, therefore, Jesus spoke to them, saying, +I am the light of the world.8:12 +Isaiah 60:1 +He who follows me will not walk in the darkness, but will have the light of life.” + +

+

The Pharisees therefore said to him, “You testify about yourself. Your testimony is not valid.” + +

+

Jesus answered them, +Even if I testify about myself, my testimony is true, for I know where I came from, and where I am going; but you don’t know where I came from, or where I am going. + + +You judge according to the flesh. I judge no one. + + +Even if I do judge, my judgment is true, for I am not alone, but I am with the Father who sent me. + + +It’s also written in your law that the testimony of two people is valid.8:17 +Deuteronomy 17:6; 19:15 + +I am one who testifies about myself, and the Father who sent me testifies about me.” + +

+

They said therefore to him, “Where is your Father?” +

+

Jesus answered, +You know neither me nor my Father. If you knew me, you would know my Father also.” + +Jesus spoke these words in the treasury, as he taught in the temple. Yet no one arrested him, because his hour had not yet come. + +Jesus said therefore again to them, +I am going away, and you will seek me, and you will die in your sins. Where I go, you cant come.” + + +

+

The Jews therefore said, “Will he kill himself, because he says, +Where I am going, you cant come?” + +

+

He said to them, +You are from beneath. I am from above. You are of this world. I am not of this world. + + +I said therefore to you that you will die in your sins; for unless you believe that I am8:24 +or, I AM +he, you will die in your sins.” + + +

+

They said therefore to him, “Who are you?” +

+

Jesus said to them, +Just what I have been saying to you from the beginning. + + +I have many things to speak and to judge concerning you. However, he who sent me is true; and the things which I heard from him, these I say to the world.” + +

+

They didn’t understand that he spoke to them about the Father. + +Jesus therefore said to them, +When you have lifted up the Son of Man, then you will know that I am he, and I do nothing of myself, but as my Father taught me, I say these things. + + +He who sent me is with me. The Father hasn’t left me alone, for I always do the things that are pleasing to him.” + +

+

As he spoke these things, many believed in him. + +Jesus therefore said to those Jews who had believed him, +If you remain in my word, then you are truly my disciples. + + +You will know the truth, and the truth will make you free.” +8:32 +Psalms 119:45 + +

+

They answered him, “We are Abraham’s offspring, and have never been in bondage to anyone. How do you say, +You will be made free?” + +

+

Jesus answered them, +“Most certainly I tell you, everyone who commits sin is the bondservant of sin. + + +A bondservant doesn’t live in the house forever. A son remains forever. + + +If therefore the Son makes you free, you will be free indeed. + + +I know that you are Abraham’s offspring, yet you seek to kill me, because my word finds no place in you. + + +I say the things which I have seen with my Father; and you also do the things which you have seen with your father.” + +

+

They answered him, “Our father is Abraham.” +

+

Jesus said to them, +If you were Abraham’s children, you would do the works of Abraham. + + +But now you seek to kill me, a man who has told you the truth which I heard from God. Abraham didn’t do this. + + +You do the works of your father.” +

+

They said to him, “We were not born of sexual immorality. We have one Father, God.” + +

+

Therefore Jesus said to them, +If God were your father, you would love me, for I came out and have come from God. For I haven’t come of myself, but he sent me. + + +Why don’t you understand my speech? Because you cant hear my word. + + +You are of your father the devil, and you want to do the desires of your father. He was a murderer from the beginning, and doesn’t stand in the truth, because there is no truth in him. When he speaks a lie, he speaks on his own; for he is a liar, and the father of lies. + + +But because I tell the truth, you don’t believe me. + + +Which of you convicts me of sin? If I tell the truth, why do you not believe me? + + +He who is of God hears the words of God. For this cause you don’t hear, because you are not of God.” + +

+

Then the Jews answered him, “Don’t we say well that you are a Samaritan, and have a demon?” + +

+

Jesus answered, +I don’t have a demon, but I honor my Father and you dishonor me. + + +But I don’t seek my own glory. There is one who seeks and judges. + + +Most certainly, I tell you, if a person keeps my word, he will never see death.” + +

+

Then the Jews said to him, “Now we know that you have a demon. Abraham died, as did the prophets; and you say, +If a man keeps my word, he will never taste of death.’ + +Are you greater than our father Abraham, who died? The prophets died. Who do you make yourself out to be?” + +

+

Jesus answered, +If I glorify myself, my glory is nothing. It is my Father who glorifies me, of whom you say that he is our God. + + +You have not known him, but I know him. If I said, ‘I don’t know him,’ I would be like you, a liar. But I know him and keep his word. + + +Your father Abraham rejoiced to see my day. He saw it and was glad.” + +

+

The Jews therefore said to him, “You are not yet fifty years old! Have you seen Abraham?” + +

+

Jesus said to them, +“Most certainly, I tell you, before Abraham came into existence, I AM.8:58 +Exodus 3:14 + +

+

Therefore they took up stones to throw at him, but Jesus hid himself and went out of the temple, having gone through the middle of them, and so passed by. + +

+ + +

As he passed by, he saw a man blind from birth. + +His disciples asked him, “Rabbi, who sinned, this man or his parents, that he was born blind?” + +

+

Jesus answered, +This man didn’t sin, nor did his parents, but that the works of God might be revealed in him. + + +I must work the works of him who sent me while it is day. The night is coming, when no one can work. + + +While I am in the world, I am the light of the world.” + +When he had said this, he spat on the ground, made mud with the saliva, anointed the blind man’s eyes with the mud, + +and said to him, +Go, wash in the pool of Siloam (which meansSent”). So he went away, washed, and came back seeing. + +

+

Therefore the neighbors and those who saw that he was blind before said, “Isn’t this he who sat and begged?” + +Others were saying, “It is he.” Still others were saying, “He looks like him.” +

+

He said, “I am he.” + +

+

They therefore were asking him, “How were your eyes opened?” + +

+

He answered, “A man called Jesus made mud, anointed my eyes, and said to me, +Go to the pool of Siloam and wash.’ So I went away and washed, and I received sight.” + +

+

Then they asked him, “Where is he?” +

+

He said, “I don’t know.” + +

+

They brought him who had been blind to the Pharisees. + +It was a Sabbath when Jesus made the mud and opened his eyes. + +Again therefore the Pharisees also asked him how he received his sight. He said to them, “He put mud on my eyes, I washed, and I see.” + +

+

Some therefore of the Pharisees said, “This man is not from God, because he doesn’t keep the Sabbath.” +

+

Others said, “How can a man who is a sinner do such signs?” So there was division among them. + +

+

Therefore they asked the blind man again, “What do you say about him, because he opened your eyes?” +

+

He said, “He is a prophet.” + +

+

The Jews therefore didn’t believe concerning him, that he had been blind and had received his sight, until they called the parents of him who had received his sight, + +and asked them, “Is this your son, whom you say was born blind? How then does he now see?” + +

+

His parents answered them, “We know that this is our son, and that he was born blind; + +but how he now sees, we don’t know; or who opened his eyes, we don’t know. He is of age. Ask him. He will speak for himself.” + +His parents said these things because they feared the Jews; for the Jews had already agreed that if any man would confess him as Christ, he would be put out of the synagogue. + +Therefore his parents said, “He is of age. Ask him.” + +

+

So they called the man who was blind a second time, and said to him, “Give glory to God. We know that this man is a sinner.” + +

+

He therefore answered, “I don’t know if he is a sinner. One thing I do know: that though I was blind, now I see.” + +

+

They said to him again, “What did he do to you? How did he open your eyes?” + +

+

He answered them, “I told you already, and you didn’t listen. Why do you want to hear it again? You don’t also want to become his disciples, do you?” + +

+

They insulted him and said, “You are his disciple, but we are disciples of Moses. + +We know that God has spoken to Moses. But as for this man, we don’t know where he comes from.” + +

+

The man answered them, “How amazing! You don’t know where he comes from, yet he opened my eyes. + +We know that God doesn’t listen to sinners, but if anyone is a worshiper of God and does his will, he listens to him.9:31 +Psalms 66:18; Proverbs 15:29; 28:9 + +Since the world began it has never been heard of that anyone opened the eyes of someone born blind. + +If this man were not from God, he could do nothing.” + +

+

They answered him, “You were altogether born in sins, and do you teach us?” Then they threw him out. + +

+

Jesus heard that they had thrown him out, and finding him, he said, +Do you believe in the Son of God?” + +

+

He answered, “Who is he, Lord, that I may believe in him?” + +

+

Jesus said to him, +You have both seen him, and it is he who speaks with you.” + +

+

He said, “Lord, I believe!” and he worshiped him. + +

+

Jesus said, +I came into this world for judgment, that those who don’t see may see; and that those who see may become blind.” + +

+

Those of the Pharisees who were with him heard these things, and said to him, “Are we also blind?” + +

+

Jesus said to them, +If you were blind, you would have no sin; but now you say, ‘We see.’ Therefore your sin remains. + +

+ + +

“Most certainly, I tell you, one who doesn’t enter by the door into the sheep fold, but climbs up some other way, is a thief and a robber. + + +But one who enters in by the door is the shepherd of the sheep. + + +The gatekeeper opens the gate for him, and the sheep listen to his voice. He calls his own sheep by name and leads them out. + + +Whenever he brings out his own sheep, he goes before them; and the sheep follow him, for they know his voice. + + +They will by no means follow a stranger, but will flee from him; for they don’t know the voice of strangers.” + +Jesus spoke this parable to them, but they didn’t understand what he was telling them. + +

+

Jesus therefore said to them again, +“Most certainly, I tell you, I am the sheep’s door. + + +All who came before me are thieves and robbers, but the sheep didn’t listen to them. + + +I am the door. If anyone enters in by me, he will be saved, and will go in and go out and will find pasture. + + +The thief only comes to steal, kill, and destroy. I came that they may have life, and may have it abundantly. + + +

+

I am the good shepherd.10:11 +Isaiah 40:11; Ezekiel 34:11-12,15,22 +The good shepherd lays down his life for the sheep. + + +He who is a hired hand, and not a shepherd, who doesn’t own the sheep, sees the wolf coming, leaves the sheep, and flees. The wolf snatches the sheep and scatters them. + + +The hired hand flees because he is a hired hand and doesn’t care for the sheep. + + +I am the good shepherd. I know my own, and I’m known by my own; + + +even as the Father knows me, and I know the Father. I lay down my life for the sheep. + + +I have other sheep which are not of this fold.10:16 +Isaiah 56:8 + +I must bring them also, and they will hear my voice. They will become one flock with one shepherd. + + +Therefore the Father loves me, because I lay down my life, +10:17 +Isaiah 53:7-8 +that I may take it again. + + +No one takes it away from me, but I lay it down by myself. I have power to lay it down, and I have power to take it again. I received this commandment from my Father.” + +

+

Therefore a division arose again among the Jews because of these words. + +Many of them said, “He has a demon and is insane! Why do you listen to him?” + +Others said, “These are not the sayings of one possessed by a demon. It isn’t possible for a demon to open the eyes of the blind, is it?”10:21 +Exodus 4:11 + +

+

It was the Feast of the Dedication10:22 +The “Feast of the Dedication” is the Greek name for “Hanukkah”, a celebration of the rededication of the Temple. at Jerusalem. + +It was winter, and Jesus was walking in the temple, in Solomon’s porch. + +The Jews therefore came around him and said to him, “How long will you hold us in suspense? If you are the Christ, tell us plainly.” + +

+

Jesus answered them, +I told you, and you don’t believe. The works that I do in my Father’s name, these testify about me. + + +But you don’t believe, because you are not of my sheep, as I told you. + + +My sheep hear my voice, and I know them, and they follow me. + + +I give eternal life to them. They will never perish, and no one will snatch them out of my hand. + + +My Father who has given them to me is greater than all. No one is able to snatch them out of my Father’s hand. + + +I and the Father are one.” + +

+

Therefore the Jews took up stones again to stone him. + +Jesus answered them, +I have shown you many good works from my Father. For which of those works do you stone me?” + +

+

The Jews answered him, “We don’t stone you for a good work, but for blasphemy, because you, being a man, make yourself God.” + +

+

Jesus answered them, +“Isn’t it written in your law, ‘I said, you are gods’?10:34 +Psalms 82:6 + +If he called them gods, to whom the word of God came (and the Scripture cant be broken), + + +do you say of him whom the Father sanctified and sent into the world, ‘You blaspheme,’ because I said, ‘I am the Son of God’? + + +If I don’t do the works of my Father, don’t believe me. + + +But if I do them, though you don’t believe me, believe the works, that you may know and believe that the Father is in me, and I in the Father.” + + +

+

They sought again to seize him, and he went out of their hand. + +He went away again beyond the Jordan into the place where John was baptizing at first, and he stayed there. + +Many came to him. They said, “John indeed did no sign, but everything that John said about this man is true.” + +Many believed in him there. + +

+ + +

Now a certain man was sick, Lazarus from Bethany, of the village of Mary and her sister, Martha. + +It was that Mary who had anointed the Lord with ointment and wiped his feet with her hair, whose brother Lazarus was sick. + +The sisters therefore sent to him, saying, “Lord, behold, he for whom you have great affection is sick.” + +

+

But when Jesus heard it, he said, +This sickness is not to death, but for the glory of God, that God’s Son may be glorified by it.” + +Now Jesus loved Martha, and her sister, and Lazarus. + +When therefore he heard that he was sick, he stayed two days in the place where he was. + +Then after this he said to the disciples, +Let’s go into Judea again.” + +

+

The disciples asked him, “Rabbi, the Jews were just trying to stone you. Are you going there again?” + +

+

Jesus answered, +“Aren’t there twelve hours of daylight? If a man walks in the day, he doesn’t stumble, because he sees the light of this world. + + +But if a man walks in the night, he stumbles, because the light isn’t in him.” + +He said these things, and after that, he said to them, +Our friend Lazarus has fallen asleep, but I am going so that I may awake him out of sleep.” + +

+

The disciples therefore said, “Lord, if he has fallen asleep, he will recover.” + +

+

Now Jesus had spoken of his death, but they thought that he spoke of taking rest in sleep. + +So Jesus said to them plainly then, +Lazarus is dead. + + +I am glad for your sakes that I was not there, so that you may believe. Nevertheless, let’s go to him.” + +

+

Thomas therefore, who is called Didymus,11:16 +“Didymus” means “Twin”. said to his fellow disciples, “Let’s also go, that we may die with him.” + +

+

So when Jesus came, he found that he had been in the tomb four days already. + +Now Bethany was near Jerusalem, about fifteen stadia11:18 +15 stadia is about 2.8 kilometers or 1.7 miles away. + +Many of the Jews had joined the women around Martha and Mary, to console them concerning their brother. + +Then when Martha heard that Jesus was coming, she went and met him, but Mary stayed in the house. + +Therefore Martha said to Jesus, “Lord, if you would have been here, my brother wouldn’t have died. + +Even now I know that whatever you ask of God, God will give you.” + +

+

Jesus said to her, +Your brother will rise again.” + +

+

Martha said to him, “I know that he will rise again in the resurrection at the last day.” + +

+

Jesus said to her, +I am the resurrection and the life. He who believes in me will still live, even if he dies. + + +Whoever lives and believes in me will never die. Do you believe this?” + +

+

She said to him, “Yes, Lord. I have come to believe that you are the Christ, Gods Son, he who comes into the world.” + +

+

When she had said this, she went away and called Mary, her sister, secretly, saying, “The Teacher is here and is calling you.” + +

+

When she heard this, she arose quickly and went to him. + +Now Jesus had not yet come into the village, but was in the place where Martha met him. + +Then the Jews who were with her in the house and were consoling her, when they saw Mary, that she rose up quickly and went out, followed her, saying, “She is going to the tomb to weep there.” + +

+

Therefore when Mary came to where Jesus was and saw him, she fell down at his feet, saying to him, “Lord, if you would have been here, my brother wouldn’t have died.” + +

+

When Jesus therefore saw her weeping, and the Jews weeping who came with her, he groaned in the spirit and was troubled, + +and said, +Where have you laid him?” +

+

They told him, “Lord, come and see.” + +

+

Jesus wept. + +

+

The Jews therefore said, “See how much affection he had for him!” + +Some of them said, “Couldn’t this man, who opened the eyes of him who was blind, have also kept this man from dying?” + +

+

Jesus therefore, again groaning in himself, came to the tomb. Now it was a cave, and a stone lay against it. + +Jesus said, +“Take away the stone.” +

+

Martha, the sister of him who was dead, said to him, “Lord, by this time there is a stench, for he has been dead four days.” + +

+

Jesus said to her, +“Didn’t I tell you that if you believed, you would see God’s glory?” + +

+

So they took away the stone from the place where the dead man was lying.11:41 +NU omits “from the place where the dead man was lying.” Jesus lifted up his eyes and said, +Father, I thank you that you listened to me. + + +I know that you always listen to me, but because of the multitude standing around I said this, that they may believe that you sent me.” + + +When he had said this, he cried with a loud voice, +Lazarus, come out!” + +

+

He who was dead came out, bound hand and foot with wrappings, and his face was wrapped around with a cloth. +

+

Jesus said to them, +Free him, and let him go.” + +

+

Therefore many of the Jews who came to Mary and saw what Jesus did believed in him. + +But some of them went away to the Pharisees and told them the things which Jesus had done. + +The chief priests therefore and the Pharisees gathered a council, and said, “What are we doing? For this man does many signs. + +If we leave him alone like this, everyone will believe in him, and the Romans will come and take away both our place and our nation.” + +

+

But a certain one of them, Caiaphas, being high priest that year, said to them, “You know nothing at all, + +nor do you consider that it is advantageous for us that one man should die for the people, and that the whole nation not perish.” + +Now he didn’t say this of himself, but being high priest that year, he prophesied that Jesus would die for the nation, + +and not for the nation only, but that he might also gather together into one the children of God who are scattered abroad. + +So from that day forward they took counsel that they might put him to death. + +Jesus therefore walked no more openly among the Jews, but departed from there into the country near the wilderness, to a city called Ephraim. He stayed there with his disciples. + +

+

Now the Passover of the Jews was at hand. Many went up from the country to Jerusalem before the Passover, to purify themselves. + +Then they sought for Jesus and spoke with one another as they stood in the temple, “What do you thinkthat he isn’t coming to the feast at all?” + +Now the chief priests and the Pharisees had commanded that if anyone knew where he was, he should report it, that they might seize him. + +

+ + +

Then, six days before the Passover, Jesus came to Bethany, where Lazarus was, who had been dead, whom he raised from the dead. + +So they made him a supper there. Martha served, but Lazarus was one of those who sat at the table with him. + +Therefore Mary took a pound12:3 +a Roman pound of 12 ounces, or about 340 grams of ointment of pure nard, very precious, and anointed Jesusfeet and wiped his feet with her hair. The house was filled with the fragrance of the ointment. + +

+

Then Judas Iscariot, Simon’s son, one of his disciples, who would betray him, said, + +Why wasn’t this ointment sold for three hundred denarii12:5 +300 denarii was about a year’s wages for an agricultural laborer. and given to the poor?” + +Now he said this, not because he cared for the poor, but because he was a thief, and having the money box, used to steal what was put into it. + +

+

But Jesus said, +“Leave her alone. She has kept this for the day of my burial. + + +For you always have the poor with you, but you don’t always have me.” + +

+

A large crowd therefore of the Jews learned that he was there; and they came, not for Jesussake only, but that they might see Lazarus also, whom he had raised from the dead. + +But the chief priests conspired to put Lazarus to death also, + +because on account of him many of the Jews went away and believed in Jesus. + +

+

On the next day a great multitude had come to the feast. When they heard that Jesus was coming to Jerusalem, + +they took the branches of the palm trees and went out to meet him, and cried out, “Hosanna!12:13 +“Hosanna” means “save us” or “help us, we pray”. Blessed is he who comes in the name of the Lord,12:13 +Psalms 118:25-26 + the King of Israel!” + +

+

Jesus, having found a young donkey, sat on it. As it is written, + +“Don’t be afraid, daughter of Zion. Behold, your King comes, sitting on a donkey’s colt.”12:15 +Zechariah 9:9 + +His disciples didn’t understand these things at first, but when Jesus was glorified, then they remembered that these things were written about him, and that they had done these things to him. + +The multitude therefore that was with him when he called Lazarus out of the tomb and raised him from the dead was testifying about it. + +For this cause also the multitude went and met him, because they heard that he had done this sign. + +The Pharisees therefore said among themselves, “See how you accomplish nothing. Behold, the world has gone after him.” + +

+

Now there were certain Greeks among those who went up to worship at the feast. + +Therefore, these came to Philip, who was from Bethsaida of Galilee, and asked him, saying, “Sir, we want to see Jesus.” + +Philip came and told Andrew, and in turn, Andrew came with Philip, and they told Jesus. + +

+

Jesus answered them, +The time has come for the Son of Man to be glorified. + + +Most certainly I tell you, unless a grain of wheat falls into the earth and dies, it remains by itself alone. But if it dies, it bears much fruit. + + +He who loves his life will lose it. He who hates his life in this world will keep it to eternal life. + + +If anyone serves me, let him follow me. Where I am, there my servant will also be. If anyone serves me, the Father will honor him. + +

+

Now my soul is troubled. What shall I say? ‘Father, save me from this time’? But I came to this time for this cause. + + +Father, glorify your name!” +

+

Then a voice came out of the sky, saying, “I have both glorified it and will glorify it again.” + +

+

Therefore the multitude who stood by and heard it said that it had thundered. Others said, “An angel has spoken to him.” + +

+

Jesus answered, +This voice hasn’t come for my sake, but for your sakes. + + +Now is the judgment of this world. Now the prince of this world will be cast out. + + +And I, if I am lifted up from the earth, will draw all people to myself.” + +But he said this, signifying by what kind of death he should die. + +

+

The multitude answered him, “We have heard out of the law that the Christ remains forever.12:34 +Isaiah 9:7; Daniel 2:44; See Isaiah 53:8 How do you say, +The Son of Man must be lifted up? Who is this Son of Man?” + +

+

Jesus therefore said to them, +Yet a little while the light is with you. Walk while you have the light, that darkness doesn’t overtake you. He who walks in the darkness doesn’t know where he is going. + + +While you have the light, believe in the light, that you may become children of light.” Jesus said these things, and he departed and hid himself from them. + +But though he had done so many signs before them, yet they didn’t believe in him, + +that the word of Isaiah the prophet might be fulfilled, which he spoke: +

+Lord, who has believed our report? + +To whom has the arm of the Lord been revealed?”12:38 +Isaiah 53:1 + + +

For this cause they couldn’t believe, for Isaiah said again: + +

+He has blinded their eyes and he hardened their heart, + +lest they should see with their eyes, + +and perceive with their heart, + +and would turn, + +and I would heal them.”12:40 +Isaiah 6:10 + + +

Isaiah said these things when he saw his glory, and spoke of him. +12:41 +Isaiah 6:1 + +Nevertheless, even many of the rulers believed in him, but because of the Pharisees they didn’t confess it, so that they wouldn’t be put out of the synagogue, + +for they loved men’s praise more than God’s praise. + +

+

Jesus cried out and said, +Whoever believes in me, believes not in me, but in him who sent me. + + +He who sees me sees him who sent me. + + +I have come as a light into the world, that whoever believes in me may not remain in the darkness. + + +If anyone listens to my sayings and doesn’t believe, I don’t judge him. For I came not to judge the world, but to save the world. + + +He who rejects me, and doesn’t receive my sayings, has one who judges him. The word that I spoke will judge him in the last day. + + +For I spoke not from myself, but the Father who sent me gave me a commandment, what I should say and what I should speak. + + +I know that his commandment is eternal life. The things therefore which I speak, even as the Father has said to me, so I speak.” + +

+ + +

Now before the feast of the Passover, Jesus, knowing that his time had come that he would depart from this world to the Father, having loved his own who were in the world, he loved them to the end. + +During supper, the devil having already put into the heart of Judas Iscariot, Simon’s son, to betray him, + +Jesus, knowing that the Father had given all things into his hands, and that he came from God and was going to God, + +arose from supper, and laid aside his outer garments. He took a towel and wrapped a towel around his waist. + +Then he poured water into the basin, and began to wash the disciplesfeet and to wipe them with the towel that was wrapped around him. + +Then he came to Simon Peter. He said to him, “Lord, do you wash my feet?” + +

+

Jesus answered him, +You don’t know what I am doing now, but you will understand later.” + +

+

Peter said to him, “You will never wash my feet!” +

+

Jesus answered him, +If I don’t wash you, you have no part with me.” + + +

+

Simon Peter said to him, “Lord, not my feet only, but also my hands and my head!” + +

+

Jesus said to him, +“Someone who has bathed only needs to have his feet washed, but is completely clean. You are clean, but not all of you.” + + +For he knew him who would betray him; therefore he said, +You are not all clean.” + +So when he had washed their feet, put his outer garment back on, and sat down again, he said to them, +Do you know what I have done to you? + + +You call me, ‘TeacherandLord.’ You say so correctly, for so I am. + + +If I then, the Lord and the Teacher, have washed your feet, you also ought to wash one anothers feet. + + +For I have given you an example, that you should also do as I have done to you. + + +Most certainly I tell you, a servant is not greater than his lord, neither is one who is sent greater than he who sent him. + + +If you know these things, blessed are you if you do them. + + +I don’t speak concerning all of you. I know whom I have chosen; but that the Scripture may be fulfilled, ‘He who eats bread with me has lifted up his heel against me.’13:18 +Psalms 41:9 + +From now on, I tell you before it happens, that when it happens, you may believe that I am he. + + +Most certainly I tell you, he who receives whomever I send, receives me; and he who receives me, receives him who sent me.” + +

+

When Jesus had said this, he was troubled in spirit, and testified, +Most certainly I tell you that one of you will betray me.” + +

+

The disciples looked at one another, perplexed about whom he spoke. + +One of his disciples, whom Jesus loved, was at the table, leaning against Jesus’ chest. + +Simon Peter therefore beckoned to him, and said to him, “Tell us who it is of whom he speaks.” + +

+

He, leaning back, as he was, on Jesuschest, asked him, “Lord, who is it?” + +

+

Jesus therefore answered, +It is he to whom I will give this piece of bread when I have dipped it.” So when he had dipped the piece of bread, he gave it to Judas, the son of Simon Iscariot. + +After the piece of bread, then Satan entered into him. +

+

Then Jesus said to him, +What you do, do quickly.” + +

+

Now nobody at the table knew why he said this to him. + +For some thought, because Judas had the money box, that Jesus said to him, “Buy what things we need for the feast,” or that he should give something to the poor. + +Therefore having received that morsel, he went out immediately. It was night. + +

+

When he had gone out, Jesus said, +Now the Son of Man has been glorified, and God has been glorified in him. + + +If God has been glorified in him, God will also glorify him in himself, and he will glorify him immediately. + + +Little children, I will be with you a little while longer. You will seek me, and as I said to the Jews, ‘Where I am going, you cant come,’ so now I tell you. + + +A new commandment I give to you, that you love one another. Just as I have loved you, you also love one another. + + +By this everyone will know that you are my disciples, if you have love for one another.” + +

+

Simon Peter said to him, “Lord, where are you going?” +

+

Jesus answered, +Where I am going, you can’t follow now, but you will follow afterwards.” + +

+

Peter said to him, “Lord, why cant I follow you now? I will lay down my life for you.” + +

+

Jesus answered him, +Will you lay down your life for me? Most certainly I tell you, the rooster won’t crow until you have denied me three times. + +

+ + +

“Don’t let your heart be troubled. Believe in God. Believe also in me. + + +In my Father’s house are many homes. If it weren’t so, I would have told you. I am going to prepare a place for you. + + +If I go and prepare a place for you, I will come again and will receive you to myself; that where I am, you may be there also. + + +You know where I go, and you know the way.” + +

+

Thomas said to him, “Lord, we don’t know where you are going. How can we know the way?” + +

+

Jesus said to him, +I am the way, the truth, and the life. No one comes to the Father, except through me. + + +If you had known me, you would have known my Father also. From now on, you know him and have seen him.” + +

+

Philip said to him, “Lord, show us the Father, and that will be enough for us.” + +

+

Jesus said to him, +Have I been with you such a long time, and do you not know me, Philip? He who has seen me has seen the Father. How do you say, ‘Show us the Father’? + + +Don’t you believe that I am in the Father, and the Father in me? The words that I tell you, I speak not from myself; but the Father who lives in me does his works. + + +Believe me that I am in the Father, and the Father in me; or else believe me for the very workssake. + + +Most certainly I tell you, he who believes in me, the works that I do, he will do also; and he will do greater works than these, because I am going to my Father. + + +Whatever you will ask in my name, I will do it, that the Father may be glorified in the Son. + + +If you will ask anything in my name, I will do it. + + +If you love me, keep my commandments. + + +I will pray to the Father, and he will give you another Counselor, +14:16 +Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter. +that he may be with you forever: + +the Spirit of truth, whom the world cant receive, for it doesn’t see him and doesn’t know him. You know him, for he lives with you and will be in you. + + +I will not leave you orphans. I will come to you. + + +Yet a little while, and the world will see me no more; but you will see me. Because I live, you will live also. + + +In that day you will know that I am in my Father, and you in me, and I in you. + + +One who has my commandments and keeps them, that person is one who loves me. One who loves me will be loved by my Father, and I will love him, and will reveal myself to him.” + +

+

Judas (not Iscariot) said to him, “Lord, what has happened that you are about to reveal yourself to us, and not to the world?” + +

+

Jesus answered him, +If a man loves me, he will keep my word. My Father will love him, and we will come to him and make our home with him. + + +He who doesn’t love me doesn’t keep my words. The word which you hear isn’t mine, but the Father’s who sent me. + + +

+

I have said these things to you while still living with you. + + +But the Counselor, the Holy Spirit, whom the Father will send in my name, will teach you all things, and will remind you of all that I said to you. + + +Peace I leave with you. My peace I give to you; not as the world gives, I give to you. Don’t let your heart be troubled, neither let it be fearful. + + +You heard how I told you, ‘I am going away, and I will come back to you.’ If you loved me, you would have rejoiced because I saidI am going to my Father;’ for the Father is greater than I. + + +Now I have told you before it happens so that when it happens, you may believe. + + +I will no more speak much with you, for the prince of the world comes, and he has nothing in me. + + +But that the world may know that I love the Father, and as the Father commanded me, even so I do. Arise, let’s go from here. + +

+ + +

I am the true vine, and my Father is the farmer. + + +Every branch in me that doesn’t bear fruit, he takes away. Every branch that bears fruit, he prunes, that it may bear more fruit. + + +You are already pruned clean because of the word which I have spoken to you. + + +Remain in me, and I in you. As the branch cant bear fruit by itself unless it remains in the vine, so neither can you, unless you remain in me. + + +I am the vine. You are the branches. He who remains in me and I in him bears much fruit, for apart from me you can do nothing. + + +If a man doesn’t remain in me, he is thrown out as a branch and is withered; and they gather them, throw them into the fire, and they are burned. + + +If you remain in me, and my words remain in you, you will ask whatever you desire, and it will be done for you. + +

+

In this my Father is glorified, that you bear much fruit; and so you will be my disciples. + + +Even as the Father has loved me, I also have loved you. Remain in my love. + + +If you keep my commandments, you will remain in my love, even as I have kept my Father’s commandments and remain in his love. + + +I have spoken these things to you, that my joy may remain in you, and that your joy may be made full. + +

+

This is my commandment, that you love one another, even as I have loved you. + + +Greater love has no one than this, that someone lay down his life for his friends. + + +You are my friends if you do whatever I command you. + + +No longer do I call you servants, for the servant doesn’t know what his lord does. But I have called you friends, for everything that I heard from my Father, I have made known to you. + + +You didn’t choose me, but I chose you and appointed you, that you should go and bear fruit, and that your fruit should remain; that whatever you will ask of the Father in my name, he may give it to you. + +

+

I command these things to you, that you may love one another. + + +If the world hates you, you know that it has hated me before it hated you. + + +If you were of the world, the world would love its own. But because you are not of the world, since I chose you out of the world, therefore the world hates you. + + +Remember the word that I said to you: ‘A servant is not greater than his lord.’15:20 +John 13:16 +If they persecuted me, they will also persecute you. If they kept my word, they will also keep yours. + + +But they will do all these things to you for my name’s sake, because they don’t know him who sent me. + + +If I had not come and spoken to them, they would not have had sin; but now they have no excuse for their sin. + + +He who hates me, hates my Father also. + + +If I hadn’t done among them the works which no one else did, they wouldn’t have had sin. But now they have seen and also hated both me and my Father. + + +But this happened so that the word may be fulfilled which was written in their law, ‘They hated me without a cause.’15:25 +Psalms 35:19; 69:4 + +

+

When the Counselor15:26 +Greek Parakletos: Counselor, Helper, Advocate, Intercessor, and Comforter. +has come, whom I will send to you from the Father, the Spirit of truth, who proceeds from the Father, he will testify about me. + + +You will also testify, because you have been with me from the beginning. + +

+ + +

I have said these things to you so that you wouldn’t be caused to stumble. + + +They will put you out of the synagogues. Yes, the time is coming that whoever kills you will think that he offers service to God. + + +They will do these things16:3 +TR adds “to you” +because they have not known the Father nor me. + + +But I have told you these things so that when the time comes, you may remember that I told you about them. I didn’t tell you these things from the beginning, because I was with you. + + +But now I am going to him who sent me, and none of you asks me, ‘Where are you going?’ + + +But because I have told you these things, sorrow has filled your heart. + + +Nevertheless I tell you the truth: It is to your advantage that I go away; for if I don’t go away, the Counselor won’t come to you. But if I go, I will send him to you. + + +When he has come, he will convict the world about sin, about righteousness, and about judgment; + + +about sin, because they don’t believe in me; + + +about righteousness, because I am going to my Father, and you won’t see me any more; + + +about judgment, because the prince of this world has been judged. + + +

+

I still have many things to tell you, but you can’t bear them now. + + +However, when he, the Spirit of truth, has come, he will guide you into all truth, for he will not speak from himself; but whatever he hears, he will speak. He will declare to you things that are coming. + + +He will glorify me, for he will take from what is mine and will declare it to you. + + +All things that the Father has are mine; therefore I said that he takes16:15 +TR reads “will take” instead of “takes” +of mine and will declare it to you. + + +

+

A little while, and you will not see me. Again a little while, and you will see me.” + +

+

Some of his disciples therefore said to one another, “What is this that he says to us, +A little while, and you won’t see me, and again a little while, and you will see me;’ and, +Because I go to the Father?” + +They said therefore, “What is this that he says, +A little while? We don’t know what he is saying.” + +

+

Therefore Jesus perceived that they wanted to ask him, and he said to them, +Do you inquire among yourselves concerning this, that I said, ‘A little while, and you won’t see me, and again a little while, and you will see me’? + + +Most certainly I tell you that you will weep and lament, but the world will rejoice. You will be sorrowful, but your sorrow will be turned into joy. + + +A woman, when she gives birth, has sorrow because her time has come. But when she has delivered the child, she doesn’t remember the anguish any more, for the joy that a human being is born into the world. + + +Therefore you now have sorrow, but I will see you again, and your heart will rejoice, and no one will take your joy away from you. + +

+

In that day you will ask me no questions. Most certainly I tell you, whatever you may ask of the Father in my name, he will give it to you. + + +Until now, you have asked nothing in my name. Ask, and you will receive, that your joy may be made full. + + +

+

I have spoken these things to you in figures of speech. But the time is coming when I will no more speak to you in figures of speech, but will tell you plainly about the Father. + + +In that day you will ask in my name; and I don’t say to you that I will pray to the Father for you, + + +for the Father himself loves you, because you have loved me, and have believed that I came from God. + + +I came from the Father and have come into the world. Again, I leave the world and go to the Father.” + +

+

His disciples said to him, “Behold, now you are speaking plainly, and using no figures of speech. + +Now we know that you know all things, and don’t need for anyone to question you. By this we believe that you came from God.” + +

+

Jesus answered them, +Do you now believe? + + +Behold, the time is coming, yes, and has now come, that you will be scattered, everyone to his own place, and you will leave me alone. Yet I am not alone, because the Father is with me. + + +I have told you these things, that in me you may have peace. In the world you have trouble; but cheer up! I have overcome the world.” + + +

+ + +

Jesus said these things, then lifting up his eyes to heaven, he said, +Father, the time has come. Glorify your Son, that your Son may also glorify you; + + +even as you gave him authority over all flesh, so he will give eternal life to all whom you have given him. + + +This is eternal life, that they should know you, the only true God, and him whom you sent, Jesus Christ. + + +I glorified you on the earth. I have accomplished the work which you have given me to do. + + +Now, Father, glorify me with your own self with the glory which I had with you before the world existed. + + +

+

I revealed your name to the people whom you have given me out of the world. They were yours, and you have given them to me. They have kept your word. + + +Now they have known that all things whatever you have given me are from you, + + +for the words which you have given me I have given to them; and they received them, and knew for sure that I came from you. They have believed that you sent me. + + +I pray for them. I don’t pray for the world, but for those whom you have given me, for they are yours. + + +All things that are mine are yours, and yours are mine, and I am glorified in them. + + +I am no more in the world, but these are in the world, and I am coming to you. Holy Father, keep them through your name which you have given me, that they may be one, even as we are. + + +While I was with them in the world, I kept them in your name. I have kept those whom you have given me. None of them is lost except the son of destruction, that the Scripture might be fulfilled. + + +But now I come to you, and I say these things in the world, that they may have my joy made full in themselves. + + +I have given them your word. The world hated them because they are not of the world, even as I am not of the world. + + +I pray not that you would take them from the world, but that you would keep them from the evil one. + + +They are not of the world, even as I am not of the world. + + +Sanctify them in your truth. Your word is truth.17:17 +Psalms 119:142 + +As you sent me into the world, even so I have sent them into the world. + + +For their sakes I sanctify myself, that they themselves also may be sanctified in truth. + + +

+

Not for these only do I pray, but for those also who will believe in me through their word, + + +that they may all be one; even as you, Father, are in me, and I in you, that they also may be one in us; that the world may believe that you sent me. + + +The glory which you have given me, I have given to them, that they may be one, even as we are one, + + +I in them, and you in me, that they may be perfected into one, that the world may know that you sent me and loved them, even as you loved me. + + +Father, I desire that they also whom you have given me be with me where I am, that they may see my glory which you have given me, for you loved me before the foundation of the world. + + +Righteous Father, the world hasn’t known you, but I knew you; and these knew that you sent me. + + +I made known to them your name, and will make it known; that the love with which you loved me may be in them, and I in them.” + +

+ + +

When Jesus had spoken these words, he went out with his disciples over the brook Kidron, where there was a garden, into which he and his disciples entered. + +Now Judas, who betrayed him, also knew the place, for Jesus often met there with his disciples. + +Judas then, having taken a detachment of soldiers and officers from the chief priests and the Pharisees, came there with lanterns, torches, and weapons. + +Jesus therefore, knowing all the things that were happening to him, went out and said to them, +Who are you looking for?” + +

+

They answered him, “Jesus of Nazareth.” +

+

Jesus said to them, +I am he.” +

+

Judas also, who betrayed him, was standing with them. + +When therefore he said to them, +I am he,” they went backward and fell to the ground. + +

+

Again therefore he asked them, +Who are you looking for?” +

+

They said, “Jesus of Nazareth.” + +

+

Jesus answered, +I told you that I am he. If therefore you seek me, let these go their way,” + +that the word might be fulfilled which he spoke, +Of those whom you have given me, I have lost none.”18:9 +John 6:39 + +

+

Simon Peter therefore, having a sword, drew it, struck the high priest’s servant, and cut off his right ear. The servants name was Malchus. + +Jesus therefore said to Peter, +Put the sword into its sheath. The cup which the Father has given me, shall I not surely drink it?” + +

+

So the detachment, the commanding officer, and the officers of the Jews seized Jesus and bound him, + +and led him to Annas first, for he was father-in-law to Caiaphas, who was high priest that year. + +Now it was Caiaphas who advised the Jews that it was expedient that one man should perish for the people. + +

+

Simon Peter followed Jesus, as did another disciple. Now that disciple was known to the high priest, and entered in with Jesus into the court of the high priest; + +but Peter was standing at the door outside. So the other disciple, who was known to the high priest, went out and spoke to her who kept the door, and brought in Peter. + +Then the maid who kept the door said to Peter, “Are you also one of this man’s disciples?” +

+

He said, “I am not.” + +

+

Now the servants and the officers were standing there, having made a fire of coals, for it was cold. They were warming themselves. Peter was with them, standing and warming himself. + +

+

The high priest therefore asked Jesus about his disciples and about his teaching. + +

+

Jesus answered him, +I spoke openly to the world. I always taught in synagogues and in the temple, where the Jews always meet. I said nothing in secret. + + +Why do you ask me? Ask those who have heard me what I said to them. Behold, they know the things which I said.” + +

+

When he had said this, one of the officers standing by slapped Jesus with his hand, saying, “Do you answer the high priest like that?” + +

+

Jesus answered him, +If I have spoken evil, testify of the evil; but if well, why do you beat me?” + +

+

Annas sent him bound to Caiaphas, the high priest. + +

+

Now Simon Peter was standing and warming himself. They said therefore to him, “You aren’t also one of his disciples, are you?” +

+

He denied it and said, “I am not.” + +

+

One of the servants of the high priest, being a relative of him whose ear Peter had cut off, said, “Didn’t I see you in the garden with him?” + +

+

Peter therefore denied it again, and immediately the rooster crowed. + +

+

They led Jesus therefore from Caiaphas into the Praetorium. It was early, and they themselves didn’t enter into the Praetorium, that they might not be defiled, but might eat the Passover. + +Pilate therefore went out to them and said, “What accusation do you bring against this man?” + +

+

They answered him, “If this man weren’t an evildoer, we wouldn’t have delivered him up to you.” + +

+

Pilate therefore said to them, “Take him yourselves, and judge him according to your law.” +

+

Therefore the Jews said to him, “It is illegal for us to put anyone to death,” + +that the word of Jesus might be fulfilled, which he spoke, signifying by what kind of death he should die. + +

+

Pilate therefore entered again into the Praetorium, called Jesus, and said to him, “Are you the King of the Jews?” + +

+

Jesus answered him, +Do you say this by yourself, or did others tell you about me?” + +

+

Pilate answered, “I’m not a Jew, am I? Your own nation and the chief priests delivered you to me. What have you done?” + +

+

Jesus answered, +My Kingdom is not of this world. If my Kingdom were of this world, then my servants would fight, that I wouldn’t be delivered to the Jews. But now my Kingdom is not from here.” + +

+

Pilate therefore said to him, “Are you a king then?” +

+

Jesus answered, +You say that I am a king. For this reason I have been born, and for this reason I have come into the world, that I should testify to the truth. Everyone who is of the truth listens to my voice.” + +

+

Pilate said to him, “What is truth?” +

+

When he had said this, he went out again to the Jews, and said to them, “I find no basis for a charge against him. + +But you have a custom that I should release someone to you at the Passover. Therefore, do you want me to release to you the King of the Jews?” + +

+

Then they all shouted again, saying, “Not this man, but Barabbas!” Now Barabbas was a robber. + +

+ + +

So Pilate then took Jesus and flogged him. + +The soldiers twisted thorns into a crown and put it on his head, and dressed him in a purple garment. + +They kept saying, “Hail, King of the Jews!” and they kept slapping him. + +

+

Then Pilate went out again, and said to them, “Behold, I bring him out to you, that you may know that I find no basis for a charge against him.” + +

+

Jesus therefore came out, wearing the crown of thorns and the purple garment. Pilate said to them, “Behold, the man!” + +

+

When therefore the chief priests and the officers saw him, they shouted, saying, “Crucify! Crucify!” +

+

Pilate said to them, “Take him yourselves and crucify him, for I find no basis for a charge against him.” + +

+

The Jews answered him, “We have a law, and by our law he ought to die, because he made himself the Son of God.” + +

+

When therefore Pilate heard this saying, he was more afraid. + +He entered into the Praetorium again, and said to Jesus, “Where are you from?” But Jesus gave him no answer. + +Pilate therefore said to him, “Aren’t you speaking to me? Don’t you know that I have power to release you and have power to crucify you?” + +

+

Jesus answered, +You would have no power at all against me, unless it were given to you from above. Therefore he who delivered me to you has greater sin.” + +

+

At this, Pilate was seeking to release him, but the Jews cried out, saying, “If you release this man, you aren’t Caesar’s friend! Everyone who makes himself a king speaks against Caesar!” + +

+

When Pilate therefore heard these words, he brought Jesus out and sat down on the judgment seat at a place calledThe Pavement”, but in Hebrew, “Gabbatha.” + +Now it was the Preparation Day of the Passover, at about the sixth hour.19:14 +“the sixth hour” would have been 6:00 a.m. according to the Roman timekeeping system, or noon for the Jewish timekeeping system in use, then. + He said to the Jews, “Behold, your King!” + +

+

They cried out, “Away with him! Away with him! Crucify him!” +

+

Pilate said to them, “Shall I crucify your King?” +

+

The chief priests answered, “We have no king but Caesar!” + +

+

So then he delivered him to them to be crucified. So they took Jesus and led him away. + +He went out, bearing his cross, to the place calledThe Place of a Skull”, which is called in Hebrew, “Golgotha”, + +where they crucified him, and with him two others, on either side one, and Jesus in the middle. + +Pilate wrote a title also, and put it on the cross. There was written, “JESUS OF NAZARETH, THE KING OF THE JEWS.” + +Therefore many of the Jews read this title, for the place where Jesus was crucified was near the city; and it was written in Hebrew, in Latin, and in Greek. + +The chief priests of the Jews therefore said to Pilate, “Don’t write, ‘The King of the Jews,’ but, ‘he said, “I am King of the Jews.”’” + +

+

Pilate answered, “What I have written, I have written.” + +

+

Then the soldiers, when they had crucified Jesus, took his garments and made four parts, to every soldier a part; and also the tunic. Now the tunic was without seam, woven from the top throughout. + +Then they said to one another, “Let’s not tear it, but cast lots for it to decide whose it will be,” that the Scripture might be fulfilled, which says, +

+They parted my garments among them. + +They cast lots for my clothing.”19:24 +Psalms 22:18 + +

Therefore the soldiers did these things. + +

+

But standing by Jesuscross were his mother, his mother’s sister, Mary the wife of Clopas, and Mary Magdalene. + +Therefore when Jesus saw his mother, and the disciple whom he loved standing there, he said to his mother, +Woman, behold, your son!” + + +Then he said to the disciple, +Behold, your mother!” From that hour, the disciple took her to his own home. + +

+

After this, Jesus, seeing19:28 +NU, TR read “knowing” instead of “seeing” + that all things were now finished, that the Scripture might be fulfilled, said, +I am thirsty!” + +Now a vessel full of vinegar was set there; so they put a sponge full of the vinegar on hyssop, and held it at his mouth. + +When Jesus therefore had received the vinegar, he said, +It is finished!” Then he bowed his head and gave up his spirit. + +

+

Therefore the Jews, because it was the Preparation Day, so that the bodies wouldn’t remain on the cross on the Sabbath (for that Sabbath was a special one), asked of Pilate that their legs might be broken and that they might be taken away. + +Therefore the soldiers came and broke the legs of the first and of the other who was crucified with him; + +but when they came to Jesus and saw that he was already dead, they didn’t break his legs. + +However, one of the soldiers pierced his side with a spear, and immediately blood and water came out. + +He who has seen has testified, and his testimony is true. He knows that he tells the truth, that you may believe. + +For these things happened that the Scripture might be fulfilled, “A bone of him will not be broken.”19:36 +Exodus 12:46; Numbers 9:12; Psalms 34:20 + + +Again another Scripture says, “They will look on him whom they pierced.”19:37 +Zechariah 12:10 + +

+

After these things, Joseph of Arimathaea, being a disciple of Jesus, but secretly for fear of the Jews, asked of Pilate that he might take away Jesusbody. Pilate gave him permission. He came therefore and took away his body. + +Nicodemus, who at first came to Jesus by night, also came bringing a mixture of myrrh and aloes, about a hundred Roman pounds.19:39 +100 Roman pounds of 12 ounces each, or about 72 pounds, or 33 Kilograms. + +So they took Jesusbody, and bound it in linen cloths with the spices, as the custom of the Jews is to bury. + +Now in the place where he was crucified there was a garden. In the garden was a new tomb in which no man had ever yet been laid. + +Then, because of the JewsPreparation Day (for the tomb was near at hand), they laid Jesus there. + +

+ + +

Now on the first day of the week, Mary Magdalene went early, while it was still dark, to the tomb, and saw that the stone had been taken away from the tomb. + +Therefore she ran and came to Simon Peter and to the other disciple whom Jesus loved, and said to them, “They have taken away the Lord out of the tomb, and we don’t know where they have laid him!” + +

+

Therefore Peter and the other disciple went out, and they went toward the tomb. + +They both ran together. The other disciple outran Peter and came to the tomb first. + +Stooping and looking in, he saw the linen cloths lying there; yet he didn’t enter in. + +Then Simon Peter came, following him, and entered into the tomb. He saw the linen cloths lying, + +and the cloth that had been on his head, not lying with the linen cloths, but rolled up in a place by itself. + +So then the other disciple who came first to the tomb also entered in, and he saw and believed. + +For as yet they didn’t know the Scripture, that he must rise from the dead. + +So the disciples went away again to their own homes. + +

+

But Mary was standing outside at the tomb weeping. So as she wept, she stooped and looked into the tomb, + +and she saw two angels in white sitting, one at the head and one at the feet, where the body of Jesus had lain. + +They asked her, “Woman, why are you weeping?” +

+

She said to them, “Because they have taken away my Lord, and I don’t know where they have laid him.” + +When she had said this, she turned around and saw Jesus standing, and didn’t know that it was Jesus. + +

+

Jesus said to her, +Woman, why are you weeping? Who are you looking for?” +

+

She, supposing him to be the gardener, said to him, “Sir, if you have carried him away, tell me where you have laid him, and I will take him away.” + +

+

Jesus said to her, +Mary.” +

+

She turned and said to him, “Rabboni!”20:16 +Rabboni is a transliteration of the Hebrew word for “great teacher.” which is to say, “Teacher!”20:16 +or, Master + +

+

Jesus said to her, +“Don’t hold me, for I haven’t yet ascended to my Father; but go to my brothers and tell them, ‘I am ascending to my Father and your Father, to my God and your God.’” + +

+

Mary Magdalene came and told the disciples that she had seen the Lord, and that he had said these things to her. + +When therefore it was evening on that day, the first day of the week, and when the doors were locked where the disciples were assembled, for fear of the Jews, Jesus came and stood in the middle and said to them, +Peace be to you.” + +

+

When he had said this, he showed them his hands and his side. The disciples therefore were glad when they saw the Lord. + +Jesus therefore said to them again, +Peace be to you. As the Father has sent me, even so I send you.” + +When he had said this, he breathed on them, and said to them, +Receive the Holy Spirit! + + +If you forgive anyone’s sins, they have been forgiven them. If you retain anyone’s sins, they have been retained.” + +

+

But Thomas, one of the twelve, called Didymus,20:24 +or, Twin wasn’t with them when Jesus came. + +The other disciples therefore said to him, “We have seen the Lord!” +

+

But he said to them, “Unless I see in his hands the print of the nails, put my finger into the print of the nails, and put my hand into his side, I will not believe.” + +

+

After eight days, again his disciples were inside and Thomas was with them. Jesus came, the doors being locked, and stood in the middle, and said, +Peace be to you.” + +Then he said to Thomas, +Reach here your finger, and see my hands. Reach here your hand, and put it into my side. Don’t be unbelieving, but believing.” + +

+

Thomas answered him, “My Lord and my God!” + +

+

Jesus said to him, +Because you have seen me,20:29 +TR adds “Thomas,” +you have believed. Blessed are those who have not seen and have believed.” + +

+

Therefore Jesus did many other signs in the presence of his disciples, which are not written in this book; + +but these are written that you may believe that Jesus is the Christ, the Son of God, and that believing you may have life in his name. + +

+ + +

After these things, Jesus revealed himself again to the disciples at the sea of Tiberias. He revealed himself this way. + +Simon Peter, Thomas called Didymus,21:2 +or, Twin Nathanael of Cana in Galilee, and the sons of Zebedee, and two others of his disciples were together. + +Simon Peter said to them, “I’m going fishing.” +

+

They told him, “We are also coming with you.” They immediately went out and entered into the boat. That night, they caught nothing. + +But when day had already come, Jesus stood on the beach; yet the disciples didn’t know that it was Jesus. + +Jesus therefore said to them, +Children, have you anything to eat?” + +

+

They answered him, “No.” + +

+

He said to them, +Cast the net on the right side of the boat, and you will find some.” +

+

They cast it therefore, and now they weren’t able to draw it in for the multitude of fish. + +That disciple therefore whom Jesus loved said to Peter, “Its the Lord!” +

+

So when Simon Peter heard that it was the Lord, he wrapped his coat around himself (for he was naked), and threw himself into the sea. + +But the other disciples came in the little boat (for they were not far from the land, but about two hundred cubits21:8 +200 cubits is about 100 yards or about 91 meters away), dragging the net full of fish. + +So when they got out on the land, they saw a fire of coals there, with fish and bread laid on it. + +Jesus said to them, +Bring some of the fish which you have just caught.” + +

+

Simon Peter went up, and drew the net to land, full of one hundred fifty-three great fish. Even though there were so many, the net wasn’t torn. + +

+

Jesus said to them, +Come and eat breakfast!” +

+

None of the disciples dared inquire of him, “Who are you?” knowing that it was the Lord. + +

+

Then Jesus came and took the bread, gave it to them, and the fish likewise. + +This is now the third time that Jesus was revealed to his disciples after he had risen from the dead. + +So when they had eaten their breakfast, Jesus said to Simon Peter, +Simon, son of Jonah, do you love me more than these?” +

+

He said to him, “Yes, Lord; you know that I have affection for you.” +

+

He said to him, +Feed my lambs.” + +He said to him again a second time, +Simon, son of Jonah, do you love me?” +

+

He said to him, “Yes, Lord; you know that I have affection for you.” +

+

He said to him, +“Tend my sheep.” + +He said to him the third time, +Simon, son of Jonah, do you have affection for me?” +

+

Peter was grieved because he asked him the third time, +Do you have affection for me?” He said to him, “Lord, you know everything. You know that I have affection for you.” +

+

Jesus said to him, +Feed my sheep. + + +Most certainly I tell you, when you were young, you dressed yourself and walked where you wanted to. But when you are old, you will stretch out your hands, and another will dress you and carry you where you don’t want to go.” + +

+

Now he said this, signifying by what kind of death he would glorify God. When he had said this, he said to him, +Follow me.” + +

+

Then Peter, turning around, saw a disciple following. This was the disciple whom Jesus loved, the one who had also leaned on Jesuschest at the supper and asked, “Lord, who is going to betray you?” + +Peter, seeing him, said to Jesus, “Lord, what about this man?” + +

+

Jesus said to him, +If I desire that he stay until I come, what is that to you? You follow me.” + +This saying therefore went out among the brothers21:23 +The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.” that this disciple wouldn’t die. Yet Jesus didn’t say to him that he wouldn’t die, but, +If I desire that he stay until I come, what is that to you?” + +

+

This is the disciple who testifies about these things, and wrote these things. We know that his witness is true. + +There are also many other things which Jesus did, which if they would all be written, I suppose that even the world itself wouldn’t have room for the books that would be written. + +

+
+44-ACT-web.sfm World English Bible (WEB) +Acts +The Acts of the Apostles +Acts +Act +

The Acts of the Apostles +

+ + +

The first book I wrote, Theophilus, concerned all that Jesus began both to do and to teach, + +until the day in which he was received up, after he had given commandment through the Holy Spirit to the apostles whom he had chosen. + +To these he also showed himself alive after he suffered, by many proofs, appearing to them over a period of forty days and speaking about God’s Kingdom. + +Being assembled together with them, he commanded them, +“Don’t depart from Jerusalem, but wait for the promise of the Father, which you heard from me. + + +For John indeed baptized in water, but you will be baptized in the Holy Spirit not many days from now.” + +

+

Therefore, when they had come together, they asked him, “Lord, are you now restoring the kingdom to Israel?” + +

+

He said to them, +It isn’t for you to know times or seasons which the Father has set within his own authority. + + +But you will receive power when the Holy Spirit has come upon you. You will be witnesses to me in Jerusalem, in all Judea and Samaria, and to the uttermost parts of the earth.” + +

+

When he had said these things, as they were looking, he was taken up, and a cloud received him out of their sight. + +While they were looking steadfastly into the sky as he went, behold,1:10 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. two men stood by them in white clothing, + +who also said, “You men of Galilee, why do you stand looking into the sky? This Jesus, who was received up from you into the sky, will come back in the same way as you saw him going into the sky.” + +

+

Then they returned to Jerusalem from the mountain called Olivet, which is near Jerusalem, a Sabbath days journey away. + +When they had come in, they went up into the upper room where they were staying, that is Peter, John, James, Andrew, Philip, Thomas, Bartholomew, Matthew, James the son of Alphaeus, Simon the Zealot, and Judas the son of James. + +All these with one accord continued steadfastly in prayer and supplication, along with the women and Mary the mother of Jesus, and with his brothers. + +

+

In these days, Peter stood up in the middle of the disciples (and the number of names was about one hundred twenty), and said, + +“Brothers, it was necessary that this Scripture should be fulfilled, which the Holy Spirit spoke before by the mouth of David concerning Judas, who was guide to those who took Jesus. + +For he was counted with us, and received his portion in this ministry. + +Now this man obtained a field with the reward for his wickedness; and falling headlong, his body burst open and all his intestines gushed out. + +It became known to everyone who lived in Jerusalem that in their language that field was called ‘Akeldama,’ that is, ‘The field of blood.’ + +For it is written in the book of Psalms, +

+Let his habitation be made desolate. + +Let no one dwell in it;’1:20 +Psalms 69:25 + +

and, +

+Let another take his office.’1:20 +Psalms 109:8 + + +

Of the men therefore who have accompanied us all the time that the Lord Jesus went in and out among us, + +beginning from the baptism of John to the day that he was received up from us, of these one must become a witness with us of his resurrection.” + +

+

They put forward two: Joseph called Barsabbas, who was also called Justus, and Matthias. + +They prayed and said, “You, Lord, who know the hearts of all men, show which one of these two you have chosen + +to take part in this ministry and apostleship from which Judas fell away, that he might go to his own place.” + +They drew lots for them, and the lot fell on Matthias; and he was counted with the eleven apostles. + +

+ + +

Now when the day of Pentecost had come, they were all with one accord in one place. + +Suddenly there came from the sky a sound like the rushing of a mighty wind, and it filled all the house where they were sitting. + +Tongues like fire appeared and were distributed to them, and one sat on each of them. + +They were all filled with the Holy Spirit and began to speak with other languages, as the Spirit gave them the ability to speak. + +

+

Now there were dwelling in Jerusalem Jews, devout men, from every nation under the sky. + +When this sound was heard, the multitude came together and were bewildered, because everyone heard them speaking in his own language. + +They were all amazed and marveled, saying to one another, “Behold, aren’t all these who speak Galileans? + +How do we hear, everyone in our own native language? + +Parthians, Medes, Elamites, and people from Mesopotamia, Judea, Cappadocia, Pontus, Asia, + +Phrygia, Pamphylia, Egypt, the parts of Libya around Cyrene, visitors from Rome, both Jews and proselytes, + +Cretans and Arabians—we hear them speaking in our languages the mighty works of God!” + +They were all amazed and were perplexed, saying to one another, “What does this mean?” + +Others, mocking, said, “They are filled with new wine.” + +

+

But Peter, standing up with the eleven, lifted up his voice and spoke out to them, “You men of Judea and all you who dwell at Jerusalem, let this be known to you, and listen to my words. + +For these aren’t drunken, as you suppose, seeing it is only the third hour of the day.2:15 +about 9:00 a.m. + +But this is what has been spoken through the prophet Joel: + +

+It will be in the last days, says God, + +that I will pour out my Spirit on all flesh. + +Your sons and your daughters will prophesy. + +Your young men will see visions. + +Your old men will dream dreams. + + +Yes, and on my servants and on my handmaidens in those days, + +I will pour out my Spirit, and they will prophesy. + + +I will show wonders in the sky above, + +and signs on the earth beneath: + +blood, and fire, and billows of smoke. + + +The sun will be turned into darkness, + +and the moon into blood, + +before the great and glorious day of the Lord comes. + + +It will be that whoever will call on the name of the Lord will be saved.’2:21 +Joel 2:28-32 + + +

Men of Israel, hear these words! Jesus of Nazareth, a man approved by God to you by mighty works and wonders and signs which God did by him among you, even as you yourselves know, + +him, being delivered up by the determined counsel and foreknowledge of God, you have taken by the hand of lawless men, crucified and killed; + +whom God raised up, having freed him from the agony of death, because it was not possible that he should be held by it. + +For David says concerning him, +

+I saw the Lord always before my face, + +for he is on my right hand, that I should not be moved. + + +Therefore my heart was glad, and my tongue rejoiced. + +Moreover my flesh also will dwell in hope, + + +because you will not leave my soul in Hades,2:27 +or, Hell + +neither will you allow your Holy One to see decay. + + +You made known to me the ways of life. + +You will make me full of gladness with your presence.’2:28 +Psalms 16:8-11 + + + +

“Brothers, I may tell you freely of the patriarch David, that he both died and was buried, and his tomb is with us to this day. + +Therefore, being a prophet, and knowing that God had sworn with an oath to him that of the fruit of his body, according to the flesh, he would raise up the Christ2:30 +“Christ” means “Anointed One”. to sit on his throne, + +he foreseeing this, spoke about the resurrection of the Christ, that his soul wasn’t left in Hades,2:31 +or, Hell and his flesh didn’t see decay. + +This Jesus God raised up, to which we all are witnesses. + +Being therefore exalted by the right hand of God, and having received from the Father the promise of the Holy Spirit, he has poured out this which you now see and hear. + +For David didn’t ascend into the heavens, but he says himself, +

+The Lord said to my Lord, “Sit by my right hand + + +until I make your enemies a footstool for your feet.”’2:35 +Psalms 110:1 + + + +

Let all the house of Israel therefore know certainly that God has made him both Lord and Christ, this Jesus whom you crucified.” + +

+

Now when they heard this, they were cut to the heart, and said to Peter and the rest of the apostles, “Brothers, what shall we do?” + +

+

Peter said to them, “Repent and be baptized, every one of you, in the name of Jesus Christ for the forgiveness of sins, and you will receive the gift of the Holy Spirit. + +For the promise is to you and to your children, and to all who are far off, even as many as the Lord our God will call to himself.” + +With many other words he testified and exhorted them, saying, “Save yourselves from this crooked generation!” + +

+

Then those who gladly received his word were baptized. There were added that day about three thousand souls. + +They continued steadfastly in the apostles’ teaching and fellowship, in the breaking of bread, and prayer. + +Fear came on every soul, and many wonders and signs were done through the apostles. + +All who believed were together, and had all things in common. + +They sold their possessions and goods, and distributed them to all, according as anyone had need. + +Day by day, continuing steadfastly with one accord in the temple, and breaking bread at home, they took their food with gladness and singleness of heart, + +praising God and having favor with all the people. The Lord added to the assembly day by day those who were being saved. + +

+ + +

Peter and John were going up into the temple at the hour of prayer, the ninth hour.3:1 +3:00 p.m. + +A certain man who was lame from his mother’s womb was being carried, whom they laid daily at the door of the temple which is called Beautiful, to ask gifts for the needy of those who entered into the temple. + +Seeing Peter and John about to go into the temple, he asked to receive gifts for the needy. + +Peter, fastening his eyes on him, with John, said, “Look at us.” + +He listened to them, expecting to receive something from them. + +But Peter said, “I have no silver or gold, but what I have, that I give you. In the name of Jesus Christ of Nazareth, get up and walk!” + +He took him by the right hand and raised him up. Immediately his feet and his ankle bones received strength. + +Leaping up, he stood and began to walk. He entered with them into the temple, walking, leaping, and praising God. + +All the people saw him walking and praising God. + +They recognized him, that it was he who used to sit begging for gifts for the needy at the Beautiful Gate of the temple. They were filled with wonder and amazement at what had happened to him. + +As the lame man who was healed held on to Peter and John, all the people ran together to them in the porch that is called Solomon’s, greatly wondering. + +

+

When Peter saw it, he responded to the people, “You men of Israel, why do you marvel at this man? Why do you fasten your eyes on us, as though by our own power or godliness we had made him walk? + +The God of Abraham, Isaac, and Jacob, the God of our fathers, has glorified his Servant Jesus, whom you delivered up and denied in the presence of Pilate, when he had determined to release him. + +But you denied the Holy and Righteous One and asked for a murderer to be granted to you, + +and killed the Prince of life, whom God raised from the dead, to which we are witnesses. + +By faith in his name, his name has made this man strong, whom you see and know. Yes, the faith which is through him has given him this perfect soundness in the presence of you all. + +

+

Now, brothers,3:17 +The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.” I know that you did this in ignorance, as did also your rulers. + +But the things which God announced by the mouth of all his prophets, that Christ should suffer, he thus fulfilled. + +

+

Repent therefore, and turn again, that your sins may be blotted out, so that there may come times of refreshing from the presence of the Lord, + +and that he may send Christ Jesus, who was ordained for you before, + +whom heaven must receive until the times of restoration of all things, which God spoke long ago by the mouth of his holy prophets. + +For Moses indeed said to the fathers, ‘The Lord God will raise up a prophet for you from among your brothers, like me. You shall listen to him in all things whatever he says to you. + +It will be that every soul that will not listen to that prophet will be utterly destroyed from among the people.’3:23 +Deuteronomy 18:15,18-19 + + +Yes, and all the prophets from Samuel and those who followed after, as many as have spoken, also told of these days. + +You are the children of the prophets, and of the covenant which God made with our fathers, saying to Abraham, ‘All the families of the earth will be blessed through your offspring.’3:25 +or, seed3:25 +Genesis 22:18; 26:4 + +God, having raised up his servant Jesus, sent him to you first to bless you, in turning away every one of you from your wickedness.” + +

+ + +

As they spoke to the people, the priests and the captain of the temple and the Sadducees came to them, + +being upset because they taught the people and proclaimed in Jesus the resurrection from the dead. + +They laid hands on them, and put them in custody until the next day, for it was now evening. + +But many of those who heard the word believed, and the number of the men came to be about five thousand. + +

+

In the morning, their rulers, elders, and scribes were gathered together in Jerusalem. + +Annas the high priest was there, with Caiaphas, John, Alexander, and as many as were relatives of the high priest. + +When they had stood Peter and John in the middle of them, they inquired, “By what power, or in what name, have you done this?” + +

+

Then Peter, filled with the Holy Spirit, said to them, “You rulers of the people and elders of Israel, + +if we are examined today concerning a good deed done to a crippled man, by what means this man has been healed, + +may it be known to you all, and to all the people of Israel, that in the name of Jesus Christ of Nazareth, whom you crucified, whom God raised from the dead, this man stands here before you whole in him. + +He isthe stone which was regarded as worthless by you, the builders, which has become the head of the corner.’4:11 +Psalms 118:22 + +There is salvation in no one else, for there is no other name under heaven that is given among men, by which we must be saved!” + +

+

Now when they saw the boldness of Peter and John, and had perceived that they were unlearned and ignorant men, they marveled. They recognized that they had been with Jesus. + +Seeing the man who was healed standing with them, they could say nothing against it. + +But when they had commanded them to go aside out of the council, they conferred among themselves, + +saying, “What shall we do to these men? Because indeed a notable miracle has been done through them, as can be plainly seen by all who dwell in Jerusalem, and we cant deny it. + +But so that this spreads no further among the people, let’s threaten them, that from now on they don’t speak to anyone in this name.” + +They called them, and commanded them not to speak at all nor teach in the name of Jesus. + +

+

But Peter and John answered them, “Whether it is right in the sight of God to listen to you rather than to God, judge for yourselves, + +for we can’t help telling the things which we saw and heard.” + +

+

When they had further threatened them, they let them go, finding no way to punish them, because of the people; for everyone glorified God for that which was done. + +For the man on whom this miracle of healing was performed was more than forty years old. + +

+

Being let go, they came to their own company and reported all that the chief priests and the elders had said to them. + +When they heard it, they lifted up their voice to God with one accord and said, “O Lord, you are God, who made the sky, the earth, the sea, and all that is in them; + +who by the mouth of your servant David, said, +

+Why do the nations rage, + +and the peoples plot a vain thing? + + +The kings of the earth take a stand, + +and the rulers plot together, + +against the Lord, and against his Christ.’4:26 +Christ (Greek) and Messiah (Hebrew) both mean Anointed One.4:26 +Psalms 2:1-2 + + +

For truly,4:27 +nu adds “in this city,” both Herod and Pontius Pilate, with the Gentiles and the people of Israel, were gathered together against your holy servant Jesus, whom you anointed, + +to do whatever your hand and your counsel foreordained to happen. + +Now, Lord, look at their threats, and grant to your servants to speak your word with all boldness, + +while you stretch out your hand to heal; and that signs and wonders may be done through the name of your holy Servant Jesus.” + +

+

When they had prayed, the place was shaken where they were gathered together. They were all filled with the Holy Spirit, and they spoke the word of God with boldness. + +

+

The multitude of those who believed were of one heart and soul. Not one of them claimed that anything of the things which he possessed was his own, but they had all things in common. + +With great power, the apostles gave their testimony of the resurrection of the Lord Jesus. Great grace was on them all. + +For neither was there among them any who lacked, for as many as were owners of lands or houses sold them, and brought the proceeds of the things that were sold, + +and laid them at the apostles’ feet; and distribution was made to each, according as anyone had need. + +

+

Joses, who by the apostles was also called Barnabas (which is, being interpreted, Son of Encouragement), a Levite, a man of Cyprus by race, + +having a field, sold it and brought the money and laid it at the apostles’ feet. + +

+ + +

But a certain man named Ananias, with Sapphira his wife, sold a possession, + +and kept back part of the price, his wife also being aware of it, then brought a certain part and laid it at the apostles’ feet. + +But Peter said, “Ananias, why has Satan filled your heart to lie to the Holy Spirit and to keep back part of the price of the land? + +While you kept it, didn’t it remain your own? After it was sold, wasn’t it in your power? How is it that you have conceived this thing in your heart? You haven’t lied to men, but to God.” + +

+

Ananias, hearing these words, fell down and died. Great fear came on all who heard these things. + +The young men arose and wrapped him up, and they carried him out and buried him. + +About three hours later, his wife, not knowing what had happened, came in. + +Peter answered her, “Tell me whether you sold the land for so much.” +

+

She said, “Yes, for so much.” + +

+

But Peter asked her, “How is it that you have agreed together to tempt the Spirit of the Lord? Behold, the feet of those who have buried your husband are at the door, and they will carry you out.” + +

+

She fell down immediately at his feet and died. The young men came in and found her dead, and they carried her out and buried her by her husband. + +Great fear came on the whole assembly, and on all who heard these things. + +

+

By the hands of the apostles many signs and wonders were done among the people. They were all with one accord in Solomon’s porch. + +None of the rest dared to join them; however, the people honored them. + +More believers were added to the Lord, multitudes of both men and women. + +They even carried out the sick into the streets and laid them on cots and mattresses, so that as Peter came by, at least his shadow might overshadow some of them. + +The multitude also came together from the cities around Jerusalem, bringing sick people and those who were tormented by unclean spirits; and they were all healed. + +

+

But the high priest rose up, and all those who were with him (which is the sect of the Sadducees), and they were filled with jealousy + +and laid hands on the apostles, then put them in public custody. + +But an angel of the Lord opened the prison doors by night, and brought them out and said, + +Go stand and speak in the temple to the people all the words of this life.” + +

+

When they heard this, they entered into the temple about daybreak and taught. But the high priest and those who were with him came and called the council together, with all the senate of the children of Israel, and sent to the prison to have them brought. + +But the officers who came didn’t find them in the prison. They returned and reported, + +We found the prison shut and locked, and the guards standing before the doors, but when we opened them, we found no one inside!” + +

+

Now when the high priest, the captain of the temple, and the chief priests heard these words, they were very perplexed about them and what might become of this. + +One came and told them, “Behold, the men whom you put in prison are in the temple, standing and teaching the people.” + +Then the captain went with the officers, and brought them without violence, for they were afraid that the people might stone them. + +

+

When they had brought them, they set them before the council. The high priest questioned them, + +saying, “Didn’t we strictly command you not to teach in this name? Behold, you have filled Jerusalem with your teaching, and intend to bring this man’s blood on us.” + +

+

But Peter and the apostles answered, “We must obey God rather than men. + +The God of our fathers raised up Jesus, whom you killed, hanging him on a tree. + +God exalted him with his right hand to be a Prince and a Savior, to give repentance to Israel, and remission of sins. + +We are his witnesses of these things; and so also is the Holy Spirit, whom God has given to those who obey him.” + +

+

But they, when they heard this, were cut to the heart, and were determined to kill them. + +But one stood up in the council, a Pharisee named Gamaliel, a teacher of the law, honored by all the people, and commanded to put the apostles out for a little while. + +He said to them, “You men of Israel, be careful concerning these men, what you are about to do. + +For before these days Theudas rose up, making himself out to be somebody; to whom a number of men, about four hundred, joined themselves. He was slain; and all, as many as obeyed him, were dispersed and came to nothing. + +After this man, Judas of Galilee rose up in the days of the enrollment, and drew away some people after him. He also perished, and all, as many as obeyed him, were scattered abroad. + +Now I tell you, withdraw from these men and leave them alone. For if this counsel or this work is of men, it will be overthrown. + +But if it is of God, you will not be able to overthrow it, and you would be found even to be fighting against God!” + +

+

They agreed with him. Summoning the apostles, they beat them and commanded them not to speak in the name of Jesus, and let them go. + +They therefore departed from the presence of the council, rejoicing that they were counted worthy to suffer dishonor for Jesusname. + +

+

Every day, in the temple and at home, they never stopped teaching and preaching Jesus, the Christ. + +

+ + +

Now in those days, when the number of the disciples was multiplying, a complaint arose from the Hellenists6:1 +The Hellenists used Greek language and culture, even though they were also of Hebrew descent. against the Hebrews, because their widows were neglected in the daily service. + +The twelve summoned the multitude of the disciples and said, “It is not appropriate for us to forsake the word of God and serve tables. + +Therefore, select from among you, brothers, seven men of good report, full of the Holy Spirit and of wisdom, whom we may appoint over this business. + +But we will continue steadfastly in prayer and in the ministry of the word.” + +

+

These words pleased the whole multitude. They chose Stephen, a man full of faith and of the Holy Spirit, Philip, Prochorus, Nicanor, Timon, Parmenas, and Nicolaus, a proselyte of Antioch, + +whom they set before the apostles. When they had prayed, they laid their hands on them. + +

+

The word of God increased and the number of the disciples greatly multiplied in Jerusalem. A great company of the priests were obedient to the faith. + +

+

Stephen, full of faith and power, performed great wonders and signs among the people. + +But some of those who were of the synagogue calledThe Libertines”, and of the Cyrenians, of the Alexandrians, and of those of Cilicia and Asia arose, disputing with Stephen. + +They weren’t able to withstand the wisdom and the Spirit by which he spoke. + +Then they secretly induced men to say, “We have heard him speak blasphemous words against Moses and God.” + +They stirred up the people, the elders, and the scribes, and came against him and seized him, then brought him in to the council, + +and set up false witnesses who said, “This man never stops speaking blasphemous words against this holy place and the law. + +For we have heard him say that this Jesus of Nazareth will destroy this place, and will change the customs which Moses delivered to us.” + +All who sat in the council, fastening their eyes on him, saw his face like it was the face of an angel. + +

+ + +

The high priest said, “Are these things so?” + +

+

He said, “Brothers and fathers, listen. The God of glory appeared to our father Abraham when he was in Mesopotamia, before he lived in Haran, + +and said to him, ‘Get out of your land and away from your relatives, and come into a land which I will show you.’7:3 +Genesis 12:1 + +Then he came out of the land of the Chaldaeans and lived in Haran. From there, when his father was dead, God moved him into this land where you are now living. + +He gave him no inheritance in it, no, not so much as to set his foot on. He promised that he would give it to him for a possession, and to his offspring after him, when he still had no child. + +God spoke in this way: that his offspring would live as aliens in a strange land, and that they would be enslaved and mistreated for four hundred years. + +I will judge the nation to which they will be in bondage,’ said God, ‘and after that they will come out and serve me in this place.’7:7 +Genesis 15:13-14 + +He gave him the covenant of circumcision. So Abraham became the father of Isaac, and circumcised him the eighth day. Isaac became the father of Jacob, and Jacob became the father of the twelve patriarchs. + +

+

The patriarchs, moved with jealousy against Joseph, sold him into Egypt. God was with him + +and delivered him out of all his afflictions, and gave him favor and wisdom before Pharaoh, king of Egypt. He made him governor over Egypt and all his house. + +Now a famine came over all the land of Egypt and Canaan, and great affliction. Our fathers found no food. + +But when Jacob heard that there was grain in Egypt, he sent out our fathers the first time. + +On the second time Joseph was made known to his brothers, and Joseph’s family was revealed to Pharaoh. + +Joseph sent and summoned Jacob his father and all his relatives, seventy-five souls. + +Jacob went down into Egypt and he died, himself and our fathers; + +and they were brought back to Shechem and laid in the tomb that Abraham bought for a price in silver from the children of Hamor of Shechem. + +

+

But as the time of the promise came close which God had sworn to Abraham, the people grew and multiplied in Egypt, + +until there arose a different king who didn’t know Joseph. + +The same took advantage of our race and mistreated our fathers, and forced them to abandon their babies, so that they wouldn’t stay alive. + +At that time Moses was born, and was exceedingly handsome to God. He was nourished three months in his father’s house. + +When he was abandoned, Pharaoh’s daughter took him up and reared him as her own son. + +Moses was instructed in all the wisdom of the Egyptians. He was mighty in his words and works. + +But when he was forty years old, it came into his heart to visit his brothers,7:23 +The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.” the children of Israel. + +Seeing one of them suffer wrong, he defended him and avenged him who was oppressed, striking the Egyptian. + +He supposed that his brothers understood that God, by his hand, was giving them deliverance; but they didn’t understand. + +

+

The day following, he appeared to them as they fought, and urged them to be at peace again, saying, ‘Sirs, you are brothers. Why do you wrong one another?’ + +But he who did his neighbor wrong pushed him away, saying, ‘Who made you a ruler and a judge over us? + +Do you want to kill me as you killed the Egyptian yesterday?’7:28 +Exodus 2:14 + +Moses fled at this saying, and became a stranger in the land of Midian, where he became the father of two sons. + +

+

When forty years were fulfilled, an angel of the Lord appeared to him in the wilderness of Mount Sinai, in a flame of fire in a bush. + +When Moses saw it, he wondered at the sight. As he came close to see, the voice of the Lord came to him, + +I am the God of your fathers: the God of Abraham, the God of Isaac, and the God of Jacob.’7:32 +Exodus 3:6 Moses trembled and dared not look. + +The Lord said to him, ‘Take off your sandals, for the place where you stand is holy ground. + +I have surely seen the affliction of my people who are in Egypt, and have heard their groaning. I have come down to deliver them. Now come, I will send you into Egypt.’7:34 +Exodus 3:5,7-8,10 + +

+

This Moses whom they refused, saying, ‘Who made you a ruler and a judge?’—God has sent him as both a ruler and a deliverer by the hand of the angel who appeared to him in the bush. + +This man led them out, having worked wonders and signs in Egypt, in the Red Sea, and in the wilderness for forty years. + +This is that Moses who said to the children of Israel, ‘The Lord our God will raise up a prophet for you from among your brothers, like me.’7:37 +TR adds “You shall listen to him.”7:37 +Deuteronomy 18:15 + +This is he who was in the assembly in the wilderness with the angel that spoke to him on Mount Sinai, and with our fathers, who received living revelations to give to us, + +to whom our fathers wouldn’t be obedient, but rejected him and turned back in their hearts to Egypt, + +saying to Aaron, ‘Make us gods that will go before us, for as for this Moses who led us out of the land of Egypt, we don’t know what has become of him.’7:40 +Exodus 32:1 + +They made a calf in those days, and brought a sacrifice to the idol, and rejoiced in the works of their hands. + +But God turned away and gave them up to serve the army of the sky,7:42 +This idiom could also be translated “host of heaven”, or “angelic beings”, or “heavenly bodies.” as it is written in the book of the prophets, +

+Did you offer to me slain animals and sacrifices + +forty years in the wilderness, O house of Israel? + + +You took up the tabernacle of Moloch, + +the star of your god Rephan, + +the figures which you made to worship, + +so I will carry you away7:43 +Amos 5:25-27 beyond Babylon.’ + + +

Our fathers had the tabernacle of the testimony in the wilderness, even as he who spoke to Moses commanded him to make it according to the pattern that he had seen; + +which also our fathers, in their turn, brought in with Joshua when they entered into the possession of the nations whom God drove out before the face of our fathers to the days of David, + +who found favor in the sight of God, and asked to find a habitation for the God of Jacob. + +But Solomon built him a house. + +However, the Most High doesn’t dwell in temples made with hands, as the prophet says, + +

+heaven is my throne, + +and the earth a footstool for my feet. + +What kind of house will you build me?’ says the Lord. + +Or what is the place of my rest? + + +Didn’t my hand make all these things?’7:50 +Isaiah 66:1-2 + + +

You stiff-necked and uncircumcised in heart and ears, you always resist the Holy Spirit! As your fathers did, so you do. + +Which of the prophets didn’t your fathers persecute? They killed those who foretold the coming of the Righteous One, of whom you have now become betrayers and murderers. + +You received the law as it was ordained by angels, and didn’t keep it!” + +

+

Now when they heard these things, they were cut to the heart, and they gnashed at him with their teeth. + +But he, being full of the Holy Spirit, looked up steadfastly into heaven and saw the glory of God, and Jesus standing on the right hand of God, + +and said, “Behold, I see the heavens opened and the Son of Man standing at the right hand of God!” + +

+

But they cried out with a loud voice and stopped their ears, then rushed at him with one accord. + +They threw him out of the city and stoned him. The witnesses placed their garments at the feet of a young man named Saul. + +They stoned Stephen as he called out, saying, “Lord Jesus, receive my spirit!” + +He kneeled down and cried with a loud voice, “Lord, don’t hold this sin against them!” When he had said this, he fell asleep. + +

+ + +

Saul was consenting to his death. A great persecution arose against the assembly which was in Jerusalem in that day. They were all scattered abroad throughout the regions of Judea and Samaria, except for the apostles. + +Devout men buried Stephen and lamented greatly over him. + +But Saul ravaged the assembly, entering into every house and dragged both men and women off to prison. + +Therefore those who were scattered abroad went around preaching the word. + +Philip went down to the city of Samaria and proclaimed to them the Christ. + +The multitudes listened with one accord to the things that were spoken by Philip when they heard and saw the signs which he did. + +For unclean spirits came out of many of those who had them. They came out, crying with a loud voice. Many who had been paralyzed and lame were healed. + +There was great joy in that city. + +

+

But there was a certain man, Simon by name, who used to practice sorcery in the city and amazed the people of Samaria, making himself out to be some great one, + +to whom they all listened, from the least to the greatest, saying, “This man is that great power of God.” + +They listened to him because for a long time he had amazed them with his sorceries. + +But when they believed Philip preaching good news concerning God’s Kingdom and the name of Jesus Christ, they were baptized, both men and women. + +Simon himself also believed. Being baptized, he continued with Philip. Seeing signs and great miracles occurring, he was amazed. + +

+

Now when the apostles who were at Jerusalem heard that Samaria had received the word of God, they sent Peter and John to them, + +who, when they had come down, prayed for them, that they might receive the Holy Spirit; + +for as yet he had fallen on none of them. They had only been baptized in the name of Christ Jesus. + +Then they laid their hands on them, and they received the Holy Spirit. + +Now when Simon saw that the Holy Spirit was given through the laying on of the apostles’ hands, he offered them money, + +saying, “Give me also this power, that whomever I lay my hands on may receive the Holy Spirit.” + +But Peter said to him, “May your silver perish with you, because you thought you could obtain the gift of God with money! + +You have neither part nor lot in this matter, for your heart isn’t right before God. + +Repent therefore of this, your wickedness, and ask God if perhaps the thought of your heart may be forgiven you. + +For I see that you are in the poison of bitterness and in the bondage of iniquity.” + +

+

Simon answered, “Pray for me to the Lord, that none of the things which you have spoken happen to me.” + +

+

They therefore, when they had testified and spoken the word of the Lord, returned to Jerusalem, and preached the Good News to many villages of the Samaritans. + +

+

Then an angel of the Lord spoke to Philip, saying, “Arise, and go toward the south to the way that goes down from Jerusalem to Gaza. This is a desert.” + +

+

He arose and went; and behold, there was a man of Ethiopia, a eunuch of great authority under Candace, queen of the Ethiopians, who was over all her treasure, who had come to Jerusalem to worship. + +He was returning and sitting in his chariot, and was reading the prophet Isaiah. + +

+

The Spirit said to Philip, “Go near, and join yourself to this chariot.” + +

+

Philip ran to him, and heard him reading Isaiah the prophet, and said, “Do you understand what you are reading?” + +

+

He said, “How can I, unless someone explains it to me?” He begged Philip to come up and sit with him. + +Now the passage of the Scripture which he was reading was this, +

+He was led as a sheep to the slaughter. + +As a lamb before his shearer is silent, + +so he doesn’t open his mouth. + + +In his humiliation, his judgment was taken away. + +Who will declare His generation? + +For his life is taken from the earth.”8:33 +Isaiah 53:7,8 + + +

The eunuch answered Philip, “Who is the prophet talking about? About himself, or about someone else?” + +

+

Philip opened his mouth, and beginning from this Scripture, preached to him about Jesus. + +As they went on the way, they came to some water; and the eunuch said, “Behold, here is water. What is keeping me from being baptized?” + +

+

8:37 +TR adds +Philip said, “If you believe with all your heart, you may.” He answered, “I believe that Jesus Christ is the Son of God.” + +He commanded the chariot to stand still, and they both went down into the water, both Philip and the eunuch, and he baptized him. + +

+

When they came up out of the water, the Spirit of the Lord caught Philip away, and the eunuch didn’t see him any more, for he went on his way rejoicing. + +But Philip was found at Azotus. Passing through, he preached the Good News to all the cities until he came to Caesarea. + +

+ + +

But Saul, still breathing threats and slaughter against the disciples of the Lord, went to the high priest + +and asked for letters from him to the synagogues of Damascus, that if he found any who were of the Way, whether men or women, he might bring them bound to Jerusalem. + +As he traveled, he got close to Damascus, and suddenly a light from the sky shone around him. + +He fell on the earth, and heard a voice saying to him, +Saul, Saul, why do you persecute me?” + +

+

He said, “Who are you, Lord?” +

+

The Lord said, +I am Jesus, whom you are persecuting.9:5 +TR adds “It’s hard for you to kick against the cattle prods.” + +But9:6 +TR omits “But” + +rise up and enter into the city, then you will be told what you must do.” + +

+

The men who traveled with him stood speechless, hearing the sound, but seeing no one. + +Saul arose from the ground, and when his eyes were opened, he saw no one. They led him by the hand and brought him into Damascus. + +He was without sight for three days, and neither ate nor drank. + +

+

Now there was a certain disciple at Damascus named Ananias. The Lord said to him in a vision, +“Ananias!” +

+

He said, “Behold, its me, Lord.” + +

+

The Lord said to him, +“Arise and go to the street which is called Straight, and inquire in the house of Judah9:11 +or, Judas +for one named Saul, a man of Tarsus. For behold, he is praying, + + +and in a vision he has seen a man named Ananias coming in and laying his hands on him, that he might receive his sight.” + +

+

But Ananias answered, “Lord, I have heard from many about this man, how much evil he did to your saints at Jerusalem. + +Here he has authority from the chief priests to bind all who call on your name.” + +

+

But the Lord said to him, +Go your way, for he is my chosen vessel to bear my name before the nations and kings, and the children of Israel. + + +For I will show him how many things he must suffer for my name’s sake.” + +

+

Ananias departed and entered into the house. Laying his hands on him, he said, “Brother Saul, the Lord, who appeared to you on the road by which you came, has sent me that you may receive your sight and be filled with the Holy Spirit.” + +Immediately something like scales fell from his eyes, and he received his sight. He arose and was baptized. + +He took food and was strengthened. +

+

Saul stayed several days with the disciples who were at Damascus. + +Immediately in the synagogues he proclaimed the Christ, that he is the Son of God. + +All who heard him were amazed, and said, “Isn’t this he who in Jerusalem made havoc of those who called on this name? And he had come here intending to bring them bound before the chief priests!” + +

+

But Saul increased more in strength, and confounded the Jews who lived at Damascus, proving that this is the Christ. + +When many days were fulfilled, the Jews conspired together to kill him, + +but their plot became known to Saul. They watched the gates both day and night that they might kill him, + +but his disciples took him by night and let him down through the wall, lowering him in a basket. + +

+

When Saul had come to Jerusalem, he tried to join himself to the disciples; but they were all afraid of him, not believing that he was a disciple. + +But Barnabas took him and brought him to the apostles, and declared to them how he had seen the Lord on the way, and that he had spoken to him, and how at Damascus he had preached boldly in the name of Jesus. + +He was with them entering into9:28 +TR and NU add “and going out” + Jerusalem, + +preaching boldly in the name of the Lord Jesus.9:29 +TR and NU omit “Jesus” and reverse the order of verses 28 & 29. He spoke and disputed against the Hellenists,9:29 +The Hellenists were Hebrews who used Greek language and culture. but they were seeking to kill him. + +When the brothers9:30 +The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” + knew it, they brought him down to Caesarea and sent him off to Tarsus. + +

+

So the assemblies throughout all Judea, Galilee, and Samaria had peace and were built up. They were multiplied, walking in the fear of the Lord and in the comfort of the Holy Spirit. + +

+

As Peter went throughout all those parts, he came down also to the saints who lived at Lydda. + +There he found a certain man named Aeneas, who had been bedridden for eight years because he was paralyzed. + +Peter said to him, “Aeneas, Jesus Christ heals you. Get up and make your bed!” Immediately he arose. + +All who lived at Lydda and in Sharon saw him, and they turned to the Lord. + +

+

Now there was at Joppa a certain disciple named Tabitha, which when translated means Dorcas.9:36 +“Dorcas” is Greek for “Gazelle.” This woman was full of good works and acts of mercy which she did. + +In those days, she became sick and died. When they had washed her, they laid her in an upper room. + +As Lydda was near Joppa, the disciples, hearing that Peter was there, sent two men9:38 +Reading from NU, TR; MT omits “two men” to him, imploring him not to delay in coming to them. + +Peter got up and went with them. When he had come, they brought him into the upper room. All the widows stood by him weeping, and showing the tunics and other garments which Dorcas had made while she was with them. + +Peter sent them all out, and knelt down and prayed. Turning to the body, he said, “Tabitha, get up!” She opened her eyes, and when she saw Peter, she sat up. + +He gave her his hand and raised her up. Calling the saints and widows, he presented her alive. + +This became known throughout all Joppa, and many believed in the Lord. + +He stayed many days in Joppa with a tanner named Simon. + +

+ + +

Now there was a certain man in Caesarea, Cornelius by name, a centurion of what was called the Italian Regiment, + +a devout man, and one who feared God with all his house, who gave gifts for the needy generously to the people, and always prayed to God. + +At about the ninth hour of the day,10:3 +3:00 p.m. he clearly saw in a vision an angel of God coming to him and saying to him, “Cornelius!” + +

+

He, fastening his eyes on him and being frightened, said, “What is it, Lord?” +

+

He said to him, “Your prayers and your gifts to the needy have gone up for a memorial before God. + +Now send men to Joppa, and get Simon, who is also called Peter. + +He is staying with a tanner named Simon, whose house is by the seaside.10:6 +TR adds “This one will tell you what it is necessary for you to do.” + +

+

When the angel who spoke to him had departed, Cornelius called two of his household servants and a devout soldier of those who waited on him continually. + +Having explained everything to them, he sent them to Joppa. + +

+

Now on the next day as they were on their journey and got close to the city, Peter went up on the housetop to pray at about noon. + +He became hungry and desired to eat, but while they were preparing, he fell into a trance. + +He saw heaven opened and a certain container descending to him, like a great sheet let down by four corners on the earth, + +in which were all kinds of four-footed animals of the earth, wild animals, reptiles, and birds of the sky. + +A voice came to him, +“Rise, Peter, kill and eat!” + +

+

But Peter said, “Not so, Lord; for I have never eaten anything that is common or unclean.” + +

+

A voice came to him again the second time, +What God has cleansed, you must not call unclean.” + +This was done three times, and immediately the thing was received up into heaven. + +

+

Now while Peter was very perplexed in himself what the vision which he had seen might mean, behold, the men who were sent by Cornelius, having made inquiry for Simon’s house, stood before the gate, + +and called and asked whether Simon, who was also called Peter, was lodging there. + +While Peter was pondering the vision, the Spirit said to him, “Behold, three10:19 +Reading from TR and NU. MT omits “three” men seek you. + +But arise, get down, and go with them, doubting nothing; for I have sent them.” + +

+

Peter went down to the men, and said, “Behold, I am he whom you seek. Why have you come?” + +

+

They said, “Cornelius, a centurion, a righteous man and one who fears God, and well spoken of by all the nation of the Jews, was directed by a holy angel to invite you to his house, and to listen to what you say.” + +So he called them in and provided a place to stay. +

+

On the next day Peter arose and went out with them, and some of the brothers from Joppa accompanied him. + +On the next day they entered into Caesarea. Cornelius was waiting for them, having called together his relatives and his near friends. + +When Peter entered, Cornelius met him, fell down at his feet, and worshiped him. + +But Peter raised him up, saying, “Stand up! I myself am also a man.” + +As he talked with him, he went in and found many gathered together. + +He said to them, “You yourselves know how it is an unlawful thing for a man who is a Jew to join himself or come to one of another nation, but God has shown me that I shouldn’t call any man unholy or unclean. + +Therefore I also came without complaint when I was sent for. I ask therefore, why did you send for me?” + +

+

Cornelius said, “Four days ago, I was fasting until this hour; and at the ninth hour,10:30 +3:00 p.m. I prayed in my house, and behold, a man stood before me in bright clothing + +and said, ‘Cornelius, your prayer is heard, and your gifts to the needy are remembered in the sight of God. + +Send therefore to Joppa and summon Simon, who is also called Peter. He is staying in the house of a tanner named Simon, by the seaside. When he comes, he will speak to you.’ + +Therefore I sent to you at once, and it was good of you to come. Now therefore we are all here present in the sight of God to hear all things that have been commanded you by God.” + +

+

Peter opened his mouth and said, “Truly I perceive that God doesn’t show favoritism; + +but in every nation he who fears him and works righteousness is acceptable to him. + +The word which he sent to the children of Israel, preaching good news of peace by Jesus Christhe is Lord of all— + +you yourselves know what happened, which was proclaimed throughout all Judea, beginning from Galilee, after the baptism which John preached; + +how God anointed Jesus of Nazareth with the Holy Spirit and with power, who went about doing good and healing all who were oppressed by the devil, for God was with him. + +We are witnesses of everything he did both in the country of the Jews and in Jerusalem; whom they also10:39 +TR omits “also” killed, hanging him on a tree. + +God raised him up the third day and gave him to be revealed, + +not to all the people, but to witnesses who were chosen before by God, to us, who ate and drank with him after he rose from the dead. + +He commanded us to preach to the people and to testify that this is he who is appointed by God as the Judge of the living and the dead. + +All the prophets testify about him, that through his name everyone who believes in him will receive remission of sins.” + +

+

While Peter was still speaking these words, the Holy Spirit fell on all those who heard the word. + +They of the circumcision who believed were amazed, as many as came with Peter, because the gift of the Holy Spirit was also poured out on the Gentiles. + +For they heard them speaking in other languages and magnifying God. +

+

Then Peter answered, + +Can anyone forbid these people from being baptized with water? They have received the Holy Spirit just like us.” + +He commanded them to be baptized in the name of Jesus Christ. Then they asked him to stay some days. + +

+ + +

Now the apostles and the brothers11:1 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” who were in Judea heard that the Gentiles had also received the word of God. + +When Peter had come up to Jerusalem, those who were of the circumcision contended with him, + +saying, “You went in to uncircumcised men and ate with them!” + +

+

But Peter began, and explained to them in order, saying, + +I was in the city of Joppa praying, and in a trance I saw a vision: a certain container descending, like it was a great sheet let down from heaven by four corners. It came as far as me. + +When I had looked intently at it, I considered, and saw the four-footed animals of the earth, wild animals, creeping things, and birds of the sky. + +I also heard a voice saying to me, +‘Rise, Peter, kill and eat!’ + + +But I said, ‘Not so, Lord, for nothing unholy or unclean has ever entered into my mouth.’ + +But a voice answered me the second time out of heaven, +What God has cleansed, don’t you call unclean.’ + +This was done three times, and all were drawn up again into heaven. + +Behold, immediately three men stood before the house where I was, having been sent from Caesarea to me. + +The Spirit told me to go with them without discriminating. These six brothers also accompanied me, and we entered into the man’s house. + +He told us how he had seen the angel standing in his house and saying to him, ‘Send to Joppa and get Simon, who is called Peter, + +who will speak to you words by which you will be saved, you and all your house.’ + +As I began to speak, the Holy Spirit fell on them, even as on us at the beginning. + +I remembered the word of the Lord, how he said, +John indeed baptized in water, but you will be baptized in the Holy Spirit.’ + +If then God gave to them the same gift as us when we believed in the Lord Jesus Christ, who was I, that I could withstand God?” + +

+

When they heard these things, they held their peace and glorified God, saying, “Then God has also granted to the Gentiles repentance to life!” + +

+

They therefore who were scattered abroad by the oppression that arose about Stephen traveled as far as Phoenicia, Cyprus, and Antioch, speaking the word to no one except to Jews only. + +But there were some of them, men of Cyprus and Cyrene, who, when they had come to Antioch, spoke to the Hellenists,11:20 +A Hellenist is someone who keeps Greek customs and culture. preaching the Lord Jesus. + +The hand of the Lord was with them, and a great number believed and turned to the Lord. + +The report concerning them came to the ears of the assembly which was in Jerusalem. They sent out Barnabas to go as far as Antioch, + +who, when he had come, and had seen the grace of God, was glad. He exhorted them all, that with purpose of heart they should remain near to the Lord. + +For he was a good man, and full of the Holy Spirit and of faith, and many people were added to the Lord. + +

+

Barnabas went out to Tarsus to look for Saul. + +When he had found him, he brought him to Antioch. For a whole year they were gathered together with the assembly, and taught many people. The disciples were first called Christians in Antioch. + +

+

Now in these days, prophets came down from Jerusalem to Antioch. + +One of them named Agabus stood up and indicated by the Spirit that there should be a great famine all over the world, which also happened in the days of Claudius. + +As any of the disciples had plenty, each determined to send relief to the brothers who lived in Judea; + +which they also did, sending it to the elders by the hands of Barnabas and Saul. + +

+ + +

Now about that time, King Herod stretched out his hands to oppress some of the assembly. + +He killed James, the brother of John, with the sword. + +When he saw that it pleased the Jews, he proceeded to seize Peter also. This was during the days of unleavened bread. + +When he had arrested him, he put him in prison and delivered him to four squads of four soldiers each to guard him, intending to bring him out to the people after the Passover. + +Peter therefore was kept in the prison, but constant prayer was made by the assembly to God for him. + +The same night when Herod was about to bring him out, Peter was sleeping between two soldiers, bound with two chains. Guards in front of the door kept the prison. + +

+

And behold, an angel of the Lord stood by him, and a light shone in the cell. He struck Peter on the side and woke him up, saying, “Stand up quickly!” His chains fell off his hands. + +The angel said to him, “Get dressed and put on your sandals.” He did so. He said to him, “Put on your cloak and follow me.” + +And he went out and followed him. He didn’t know that what was being done by the angel was real, but thought he saw a vision. + +When they were past the first and the second guard, they came to the iron gate that leads into the city, which opened to them by itself. They went out and went down one street, and immediately the angel departed from him. + +

+

When Peter had come to himself, he said, “Now I truly know that the Lord has sent out his angel and delivered me out of the hand of Herod, and from everything the Jewish people were expecting.” + +Thinking about that, he came to the house of Mary, the mother of John who was called Mark, where many were gathered together and were praying. + +When Peter knocked at the door of the gate, a servant girl named Rhoda came to answer. + +When she recognized Peter’s voice, she didn’t open the gate for joy, but ran in and reported that Peter was standing in front of the gate. + +

+

They said to her, “You are crazy!” But she insisted that it was so. They said, “It is his angel.” + +But Peter continued knocking. When they had opened, they saw him and were amazed. + +But he, beckoning to them with his hand to be silent, declared to them how the Lord had brought him out of the prison. He said, “Tell these things to James and to the brothers.” Then he departed and went to another place. + +

+

Now as soon as it was day, there was no small stir among the soldiers about what had become of Peter. + +When Herod had sought for him and didn’t find him, he examined the guards, then commanded that they should be put to death. He went down from Judea to Caesarea, and stayed there. + +

+

Now Herod was very angry with the people of Tyre and Sidon. They came with one accord to him and, having made Blastus, the king’s personal aide, their friend, they asked for peace, because their country depended on the king’s country for food. + +On an appointed day, Herod dressed himself in royal clothing, sat on the throne, and gave a speech to them. + +The people shouted, “The voice of a god, and not of a man!” + +Immediately an angel of the Lord struck him, because he didn’t give God the glory. Then he was eaten by worms and died. + +

+

But the word of God grew and multiplied. + +Barnabas and Saul returned to12:25 +TR reads “from” instead of “to” Jerusalem when they had fulfilled their service, also taking with them John who was called Mark. + +

+ + +

Now in the assembly that was at Antioch there were some prophets and teachers: Barnabas, Simeon who was called Niger, Lucius of Cyrene, Manaen the foster brother of Herod the tetrarch, and Saul. + +As they served the Lord and fasted, the Holy Spirit said, “Separate Barnabas and Saul for me, for the work to which I have called them.” + +

+

Then, when they had fasted and prayed and laid their hands on them, they sent them away. + +So, being sent out by the Holy Spirit, they went down to Seleucia. From there they sailed to Cyprus. + +When they were at Salamis, they proclaimed Gods word in the Jewish synagogues. They also had John as their attendant. + +When they had gone through the island to Paphos, they found a certain sorcerer, a false prophet, a Jew whose name was Bar Jesus, + +who was with the proconsul, Sergius Paulus, a man of understanding. This man summoned Barnabas and Saul, and sought to hear the word of God. + +But Elymas the sorcerer (for so is his name by interpretation) withstood them, seeking to turn the proconsul away from the faith. + +But Saul, who is also called Paul, filled with the Holy Spirit, fastened his eyes on him + +and said, “You son of the devil, full of all deceit and all cunning, you enemy of all righteousness, will you not cease to pervert the right ways of the Lord? + +Now, behold, the hand of the Lord is on you, and you will be blind, not seeing the sun for a season!” +

+

Immediately a mist and darkness fell on him. He went around seeking someone to lead him by the hand. + +Then the proconsul, when he saw what was done, believed, being astonished at the teaching of the Lord. + +

+

Now Paul and his company set sail from Paphos and came to Perga in Pamphylia. John departed from them and returned to Jerusalem. + +But they, passing on from Perga, came to Antioch of Pisidia. They went into the synagogue on the Sabbath day and sat down. + +After the reading of the law and the prophets, the rulers of the synagogue sent to them, saying, “Brothers, if you have any word of exhortation for the people, speak.” + +

+

Paul stood up, and gesturing with his hand said, “Men of Israel, and you who fear God, listen. + +The God of this people13:17 +TR, NU add “Israel” chose our fathers, and exalted the people when they stayed as aliens in the land of Egypt, and with an uplifted arm, he led them out of it. + +For a period of about forty years he put up with them in the wilderness. + +When he had destroyed seven nations in the land of Canaan, he gave them their land for an inheritance for about four hundred fifty years. + +After these things, he gave them judges until Samuel the prophet. + +Afterward they asked for a king, and God gave to them Saul the son of Kish, a man of the tribe of Benjamin, for forty years. + +When he had removed him, he raised up David to be their king, to whom he also testified, ‘I have found David the son of Jesse, a man after my heart, who will do all my will.’ + +From this man’s offspring, God has brought salvation13:23 +TR, NU read “a Savior, Jesus” instead of “salvation” to Israel according to his promise, + +before his coming, when John had first preached the baptism of repentance to Israel.13:24 +TR, NU read “to all the people of Israel” instead of “to Israel” + +As John was fulfilling his course, he said, ‘What do you suppose that I am? I am not he. But behold, one comes after me, the sandals of whose feet I am not worthy to untie.’ + +

+

“Brothers, children of the stock of Abraham, and those among you who fear God, the word of this salvation is sent out to you. + +For those who dwell in Jerusalem, and their rulers, because they didn’t know him, nor the voices of the prophets which are read every Sabbath, fulfilled them by condemning him. + +Though they found no cause for death, they still asked Pilate to have him killed. + +When they had fulfilled all things that were written about him, they took him down from the tree and laid him in a tomb. + +But God raised him from the dead, + +and he was seen for many days by those who came up with him from Galilee to Jerusalem, who are his witnesses to the people. + +We bring you good news of the promise made to the fathers, + +that God has fulfilled this to us, their children, in that he raised up Jesus. As it is also written in the second psalm, +

+You are my Son. + +Today I have become your father.’13:33 +Psalms 2:7 + + +

Concerning that he raised him up from the dead, now no more to return to corruption, he has spoken thus: ‘I will give you the holy and sure blessings of David.’13:34 +Isaiah 55:3 + +Therefore he says also in another psalm, ‘You will not allow your Holy One to see decay.’13:35 +Psalms 16:10 + +For David, after he had in his own generation served the counsel of God, fell asleep, was laid with his fathers, and saw decay. + +But he whom God raised up saw no decay. + +Be it known to you therefore, brothers,13:38 +The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” that through this man is proclaimed to you remission of sins; + +and by him everyone who believes is justified from all things, from which you could not be justified by the law of Moses. + +Beware therefore, lest that come on you which is spoken in the prophets: + +

+Behold, you scoffers! + +Wonder and perish, + +for I work a work in your days, + +a work which you will in no way believe, if one declares it to you.’”13:41 +Habakkuk 1:5 + + +

So when the Jews went out of the synagogue, the Gentiles begged that these words might be preached to them the next Sabbath. + +Now when the synagogue broke up, many of the Jews and of the devout proselytes followed Paul and Barnabas; who, speaking to them, urged them to continue in the grace of God. + +

+

The next Sabbath, almost the whole city was gathered together to hear the word of God. + +But when the Jews saw the multitudes, they were filled with jealousy, and contradicted the things which were spoken by Paul, and blasphemed. + +

+

Paul and Barnabas spoke out boldly, and said, “It was necessary that God’s word should be spoken to you first. Since indeed you thrust it from yourselves, and judge yourselves unworthy of eternal life, behold, we turn to the Gentiles. + +For so has the Lord commanded us, saying, +

+I have set you as a light for the Gentiles, + +that you should bring salvation to the uttermost parts of the earth.’”13:47 +Isaiah 49:6 + + +

As the Gentiles heard this, they were glad and glorified the word of God. As many as were appointed to eternal life believed. + +The Lords word was spread abroad throughout all the region. + +But the Jews stirred up the devout and prominent women and the chief men of the city, and stirred up a persecution against Paul and Barnabas, and threw them out of their borders. + +But they shook off the dust of their feet against them, and came to Iconium. + +The disciples were filled with joy and with the Holy Spirit. + +

+ + +

In Iconium, they entered together into the synagogue of the Jews, and so spoke that a great multitude both of Jews and of Greeks believed. + +But the disbelieving14:2 +or, disobedient Jews stirred up and embittered the souls of the Gentiles against the brothers. + +Therefore they stayed there a long time, speaking boldly in the Lord, who testified to the word of his grace, granting signs and wonders to be done by their hands. + +But the multitude of the city was divided. Part sided with the Jews and part with the apostles. + +When some of both the Gentiles and the Jews, with their rulers, made a violent attempt to mistreat and stone them, + +they became aware of it and fled to the cities of Lycaonia, Lystra, Derbe, and the surrounding region. + +There they preached the Good News. + +

+

At Lystra a certain man sat, impotent in his feet, a cripple from his mother’s womb, who never had walked. + +He was listening to Paul speaking, who, fastening eyes on him and seeing that he had faith to be made whole, + +said with a loud voice, “Stand upright on your feet!” He leaped up and walked. + +When the multitude saw what Paul had done, they lifted up their voice, saying in the language of Lycaonia, “The gods have come down to us in the likeness of men!” + +They called Barnabas “Jupiter”, and Paul “Mercury”, because he was the chief speaker. + +The priest of Jupiter, whose temple was in front of their city, brought oxen and garlands to the gates, and would have made a sacrifice along with the multitudes. + +

+

But when the apostles, Barnabas and Paul, heard of it, they tore their clothes and sprang into the multitude, crying out, + +Men, why are you doing these things? We also are men of the same nature as you, and bring you good news, that you should turn from these vain things to the living God, who made the sky, the earth, the sea, and all that is in them; + +who in the generations gone by allowed all the nations to walk in their own ways. + +Yet he didn’t leave himself without witness, in that he did good and gave you14:17 +TR reads “us” instead of “you” rains from the sky and fruitful seasons, filling our hearts with food and gladness.” + +

+

Even saying these things, they hardly stopped the multitudes from making a sacrifice to them. + +But some Jews from Antioch and Iconium came there, and having persuaded the multitudes, they stoned Paul and dragged him out of the city, supposing that he was dead. + +

+

But as the disciples stood around him, he rose up, and entered into the city. On the next day he went out with Barnabas to Derbe. + +

+

When they had preached the Good News to that city and had made many disciples, they returned to Lystra, Iconium, and Antioch, + +strengthening the souls of the disciples, exhorting them to continue in the faith, and that through many afflictions we must enter into God’s Kingdom. + +When they had appointed elders for them in every assembly, and had prayed with fasting, they commended them to the Lord on whom they had believed. + +

+

They passed through Pisidia and came to Pamphylia. + +When they had spoken the word in Perga, they went down to Attalia. + +From there they sailed to Antioch, from where they had been committed to the grace of God for the work which they had fulfilled. + +When they had arrived and had gathered the assembly together, they reported all the things that God had done with them, and that he had opened a door of faith to the nations. + +They stayed there with the disciples for a long time. + +

+ + +

Some men came down from Judea and taught the brothers,15:1 +The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”Unless you are circumcised after the custom of Moses, you cant be saved.” + +Therefore when Paul and Barnabas had no small discord and discussion with them, they appointed Paul, Barnabas, and some others of them to go up to Jerusalem to the apostles and elders about this question. + +They, being sent on their way by the assembly, passed through both Phoenicia and Samaria, declaring the conversion of the Gentiles. They caused great joy to all the brothers. + +When they had come to Jerusalem, they were received by the assembly and the apostles and the elders, and they reported everything that God had done with them. + +

+

But some of the sect of the Pharisees who believed rose up, saying, “It is necessary to circumcise them, and to command them to keep the law of Moses.” + +

+

The apostles and the elders were gathered together to see about this matter. + +When there had been much discussion, Peter rose up and said to them, “Brothers, you know that a good while ago God made a choice among you that by my mouth the nations should hear the word of the Good News and believe. + +God, who knows the heart, testified about them, giving them the Holy Spirit, just like he did to us. + +He made no distinction between us and them, cleansing their hearts by faith. + +Now therefore why do you tempt God, that you should put a yoke on the neck of the disciples which neither our fathers nor we were able to bear? + +But we believe that we are saved through the grace of the Lord Jesus,15:11 +TR adds “Christ” just as they are.” + +

+

All the multitude kept silence, and they listened to Barnabas and Paul reporting what signs and wonders God had done among the nations through them. + +After they were silent, James answered, “Brothers, listen to me. + +Simeon has reported how God first visited the nations to take out of them a people for his name. + +This agrees with the words of the prophets. As it is written, + +

+After these things I will return. + +I will again build the tabernacle of David, which has fallen. + +I will again build its ruins. + +I will set it up + +that the rest of men may seek after the Lord: + +all the Gentiles who are called by my name, + +says the Lord, who does all these things.’15:17 +Amos 9:11-12 + + +

“All of God’s works are known to him from eternity. + +Therefore my judgment is that we don’t trouble those from among the Gentiles who turn to God, + +but that we write to them that they abstain from the pollution of idols, from sexual immorality, from what is strangled, and from blood. + +For Moses from generations of old has in every city those who preach him, being read in the synagogues every Sabbath.” + +

+

Then it seemed good to the apostles and the elders, with the whole assembly, to choose men out of their company, and send them to Antioch with Paul and Barnabas: Judas called Barsabbas, and Silas, chief men among the brothers.15:22 +The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” + +They wrote these things by their hand: +

+

The apostles, the elders, and the brothers, to the brothers who are of the Gentiles in Antioch, Syria, and Cilicia: greetings. + +Because we have heard that some who went out from us have troubled you with words, unsettling your souls, saying, ‘You must be circumcised and keep the law,’ to whom we gave no commandment; + +it seemed good to us, having come to one accord, to choose out men and send them to you with our beloved Barnabas and Paul, + +men who have risked their lives for the name of our Lord Jesus Christ. + +We have sent therefore Judas and Silas, who themselves will also tell you the same things by word of mouth. + +For it seemed good to the Holy Spirit, and to us, to lay no greater burden on you than these necessary things: + +that you abstain from things sacrificed to idols, from blood, from things strangled, and from sexual immorality, from which if you keep yourselves, it will be well with you. Farewell.” + +

+

So, when they were sent off, they came to Antioch. Having gathered the multitude together, they delivered the letter. + +When they had read it, they rejoiced over the encouragement. + +Judas and Silas, also being prophets themselves, encouraged the brothers with many words and strengthened them. + +After they had spent some time there, they were dismissed in peace from the brothers to the apostles. + +15:34 +Some manuscripts add: +But it seemed good to Silas to stay there. + + +But Paul and Barnabas stayed in Antioch, teaching and preaching the word of the Lord, with many others also. + +

+

After some days Paul said to Barnabas, “Lets return now and visit our brothers in every city in which we proclaimed the word of the Lord, to see how they are doing.” + +Barnabas planned to take John, who was called Mark, with them also. + +But Paul didn’t think that it was a good idea to take with them someone who had withdrawn from them in Pamphylia, and didn’t go with them to do the work. + +Then the contention grew so sharp that they separated from each other. Barnabas took Mark with him and sailed away to Cyprus, + +but Paul chose Silas and went out, being commended by the brothers to the grace of God. + +He went through Syria and Cilicia, strengthening the assemblies. + +

+ + +

He came to Derbe and Lystra; and behold, a certain disciple was there, named Timothy, the son of a Jewess who believed, but his father was a Greek. + +The brothers who were at Lystra and Iconium gave a good testimony about him. + +Paul wanted to have him go out with him, and he took and circumcised him because of the Jews who were in those parts, for they all knew that his father was a Greek. + +As they went on their way through the cities, they delivered the decrees to them to keep which had been ordained by the apostles and elders who were at Jerusalem. + +So the assemblies were strengthened in the faith, and increased in number daily. + +

+

When they had gone through the region of Phrygia and Galatia, they were forbidden by the Holy Spirit to speak the word in Asia. + +When they had come opposite Mysia, they tried to go into Bithynia, but the Spirit didn’t allow them. + +Passing by Mysia, they came down to Troas. + +A vision appeared to Paul in the night. There was a man of Macedonia standing, begging him and saying, “Come over into Macedonia and help us.” + +When he had seen the vision, immediately we sought to go out to Macedonia, concluding that the Lord had called us to preach the Good News to them. + +Setting sail therefore from Troas, we made a straight course to Samothrace, and the day following to Neapolis; + +and from there to Philippi, which is a city of Macedonia, the foremost of the district, a Roman colony. We were staying some days in this city. + +

+

On the Sabbath day we went outside of the city by a riverside, where we supposed there was a place of prayer, and we sat down and spoke to the women who had come together. + +A certain woman named Lydia, a seller of purple, of the city of Thyatira, one who worshiped God, heard us. The Lord opened her heart to listen to the things which were spoken by Paul. + +When she and her household were baptized, she begged us, saying, “If you have judged me to be faithful to the Lord, come into my house and stay.” So she persuaded us. + +

+

As we were going to prayer, a certain girl having a spirit of divination met us, who brought her masters much gain by fortune telling. + +Following Paul and us, she cried out, “These men are servants of the Most High God, who proclaim to us a way of salvation!” + +She was doing this for many days. +

+

But Paul, becoming greatly annoyed, turned and said to the spirit, “I command you in the name of Jesus Christ to come out of her!” It came out that very hour. + +But when her masters saw that the hope of their gain was gone, they seized Paul and Silas and dragged them into the marketplace before the rulers. + +When they had brought them to the magistrates, they said, “These men, being Jews, are agitating our city + +and advocate customs which it is not lawful for us to accept or to observe, being Romans.” + +

+

The multitude rose up together against them and the magistrates tore their clothes from them, then commanded them to be beaten with rods. + +When they had laid many stripes on them, they threw them into prison, charging the jailer to keep them safely. + +Having received such a command, he threw them into the inner prison and secured their feet in the stocks. + +

+

But about midnight Paul and Silas were praying and singing hymns to God, and the prisoners were listening to them. + +Suddenly there was a great earthquake, so that the foundations of the prison were shaken; and immediately all the doors were opened, and everyone’s bonds were loosened. + +The jailer, being roused out of sleep and seeing the prison doors open, drew his sword and was about to kill himself, supposing that the prisoners had escaped. + +But Paul cried with a loud voice, saying, “Don’t harm yourself, for we are all here!” + +

+

He called for lights, sprang in, fell down trembling before Paul and Silas, + +brought them out, and said, “Sirs, what must I do to be saved?” + +

+

They said, “Believe in the Lord Jesus Christ, and you will be saved, you and your household.” + +They spoke the word of the Lord to him, and to all who were in his house. + +

+

He took them the same hour of the night and washed their stripes, and was immediately baptized, he and all his household. + +He brought them up into his house and set food before them, and rejoiced greatly with all his household, having believed in God. + +

+

But when it was day, the magistrates sent the sergeants, saying, “Let those men go.” + +

+

The jailer reported these words to Paul, saying, “The magistrates have sent to let you go; now therefore come out and go in peace.” + +

+

But Paul said to them, “They have beaten us publicly without a trial, men who are Romans, and have cast us into prison! Do they now release us secretly? No, most certainly, but let them come themselves and bring us out!” + +

+

The sergeants reported these words to the magistrates, and they were afraid when they heard that they were Romans, + +and they came and begged them. When they had brought them out, they asked them to depart from the city. + +They went out of the prison and entered into Lydia’s house. When they had seen the brothers, they encouraged them, then departed. + +

+ + +

Now when they had passed through Amphipolis and Apollonia, they came to Thessalonica, where there was a Jewish synagogue. + +Paul, as was his custom, went in to them; and for three Sabbath days reasoned with them from the Scriptures, + +explaining and demonstrating that the Christ had to suffer and rise again from the dead, and saying, “This Jesus, whom I proclaim to you, is the Christ.” + +

+

Some of them were persuaded and joined Paul and Silas: of the devout Greeks a great multitude, and not a few of the chief women. + +But the unpersuaded Jews took along17:5 +TR reads “And the Jews who were unpersuaded, becoming envious and taking along” instead of “But the unpersuaded Jews took along” some wicked men from the marketplace and gathering a crowd, set the city in an uproar. Assaulting the house of Jason, they sought to bring them out to the people. + +When they didn’t find them, they dragged Jason and certain brothers17:6 +The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.” before the rulers of the city, crying, “These who have turned the world upside down have come here also, + +whom Jason has received. These all act contrary to the decrees of Caesar, saying that there is another king, Jesus!” + +The multitude and the rulers of the city were troubled when they heard these things. + +When they had taken security from Jason and the rest, they let them go. + +

+

The brothers immediately sent Paul and Silas away by night to Beroea. When they arrived, they went into the Jewish synagogue. + +

+

Now these were more noble than those in Thessalonica, in that they received the word with all readiness of mind, examining the Scriptures daily to see whether these things were so. + +Many of them therefore believed; also of the prominent Greek women, and not a few men. + +But when the Jews of Thessalonica had knowledge that the word of God was proclaimed by Paul at Beroea also, they came there likewise, agitating the multitudes. + +Then the brothers immediately sent out Paul to go as far as to the sea, and Silas and Timothy still stayed there. + +But those who escorted Paul brought him as far as Athens. Receiving a commandment to Silas and Timothy that they should come to him very quickly, they departed. + +

+

Now while Paul waited for them at Athens, his spirit was provoked within him as he saw the city full of idols. + +So he reasoned in the synagogue with the Jews and the devout persons, and in the marketplace every day with those who met him. + +Some of the Epicurean and Stoic philosophers also17:18 +TR omits “also” + were conversing with him. Some said, “What does this babbler want to say?” +

+

Others said, “He seems to be advocating foreign deities,” because he preached Jesus and the resurrection. + +

+

They took hold of him and brought him to the Areopagus, saying, “May we know what this new teaching is, which you are speaking about? + +For you bring certain strange things to our ears. We want to know therefore what these things mean.” + +Now all the Athenians and the strangers living there spent their time in nothing else, but either to tell or to hear some new thing. + +

+

Paul stood in the middle of the Areopagus and said, “You men of Athens, I perceive that you are very religious in all things. + +For as I passed along and observed the objects of your worship, I also found an altar with this inscription: ‘TO AN UNKNOWN GOD.’ What therefore you worship in ignorance, I announce to you. + +The God who made the world and all things in it, he, being Lord of heaven and earth, doesn’t dwell in temples made with hands. + +He isn’t served by men’s hands, as though he needed anything, seeing he himself gives to all life and breath and all things. + +He made from one blood every nation of men to dwell on all the surface of the earth, having determined appointed seasons and the boundaries of their dwellings, + +that they should seek the Lord, if perhaps they might reach out for him and find him, though he is not far from each one of us. + +For in him we live, move, and have our being.’ As some of your own poets have said, ‘For we are also his offspring.’ + +Being then the offspring of God, we ought not to think that the Divine Nature is like gold, or silver, or stone, engraved by art and design of man. + +The times of ignorance therefore God overlooked. But now he commands that all people everywhere should repent, + +because he has appointed a day in which he will judge the world in righteousness by the man whom he has ordained; of which he has given assurance to all men, in that he has raised him from the dead.” + +

+

Now when they heard of the resurrection of the dead, some mocked; but others said, “We want to hear you again concerning this.” + +

+

Thus Paul went out from among them. + +But certain men joined with him and believed, including Dionysius the Areopagite, and a woman named Damaris, and others with them. + +

+ + +

After these things Paul departed from Athens and came to Corinth. + +He found a certain Jew named Aquila, a man of Pontus by race, who had recently come from Italy with his wife Priscilla, because Claudius had commanded all the Jews to depart from Rome. He came to them, + +and because he practiced the same trade, he lived with them and worked, for by trade they were tent makers. + +He reasoned in the synagogue every Sabbath and persuaded Jews and Greeks. + +

+

When Silas and Timothy came down from Macedonia, Paul was compelled by the Spirit, testifying to the Jews that Jesus was the Christ. + +When they opposed him and blasphemed, he shook out his clothing and said to them, “Your blood be on your own heads! I am clean. From now on, I will go to the Gentiles!” + +

+

He departed there and went into the house of a certain man named Justus, one who worshiped God, whose house was next door to the synagogue. + +Crispus, the ruler of the synagogue, believed in the Lord with all his house. Many of the Corinthians, when they heard, believed and were baptized. + +The Lord said to Paul in the night by a vision, +“Don’t be afraid, but speak and don’t be silent; + + +for I am with you, and no one will attack you to harm you, for I have many people in this city.” + +

+

He lived there a year and six months, teaching the word of God among them. + +But when Gallio was proconsul of Achaia, the Jews with one accord rose up against Paul and brought him before the judgment seat, + +saying, “This man persuades men to worship God contrary to the law.” + +

+

But when Paul was about to open his mouth, Gallio said to the Jews, “If indeed it were a matter of wrong or of wicked crime, you Jews, it would be reasonable that I should bear with you; + +but if they are questions about words and names and your own law, look to it yourselves. For I don’t want to be a judge of these matters.” + +So he drove them from the judgment seat. + +

+

Then all the Greeks seized Sosthenes, the ruler of the synagogue, and beat him before the judgment seat. Gallio didn’t care about any of these things. + +

+

Paul, having stayed after this many more days, took his leave of the brothers,18:18 +The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” and sailed from there for Syria, together with Priscilla and Aquila. He shaved his head in Cenchreae, for he had a vow. + +He came to Ephesus, and he left them there; but he himself entered into the synagogue and reasoned with the Jews. + +When they asked him to stay with them a longer time, he declined; + +but taking his leave of them, he said, “I must by all means keep this coming feast in Jerusalem, but I will return again to you if God wills.” Then he set sail from Ephesus. + +

+

When he had landed at Caesarea, he went up and greeted the assembly, and went down to Antioch. + +Having spent some time there, he departed and went through the region of Galatia and Phrygia, in order, establishing all the disciples. + +Now a certain Jew named Apollos, an Alexandrian by race, an eloquent man, came to Ephesus. He was mighty in the Scriptures. + +This man had been instructed in the way of the Lord; and being fervent in spirit, he spoke and taught accurately the things concerning Jesus, although he knew only the baptism of John. + +He began to speak boldly in the synagogue. But when Priscilla and Aquila heard him, they took him aside, and explained to him the way of God more accurately. + +

+

When he had determined to pass over into Achaia, the brothers encouraged him; and wrote to the disciples to receive him. When he had come, he greatly helped those who had believed through grace; + +for he powerfully refuted the Jews, publicly showing by the Scriptures that Jesus was the Christ. + +

+ + +

While Apollos was at Corinth, Paul, having passed through the upper country, came to Ephesus and found certain disciples. + +He said to them, “Did you receive the Holy Spirit when you believed?” +

+

They said to him, “No, we haven’t even heard that there is a Holy Spirit.” + +

+

He said, “Into what then were you baptized?” +

+

They said, “Into John’s baptism.” + +

+

Paul said, “John indeed baptized with the baptism of repentance, saying to the people that they should believe in the one who would come after him, that is, in Christ Jesus.”19:4 +NU omits Christ. + +

+

When they heard this, they were baptized in the name of the Lord Jesus. + +When Paul had laid his hands on them, the Holy Spirit came on them and they spoke with other languages and prophesied. + +They were about twelve men in all. + +

+

He entered into the synagogue and spoke boldly for a period of three months, reasoning and persuading about the things concerning God’s Kingdom. + +

+

But when some were hardened and disobedient, speaking evil of the Way before the multitude, he departed from them and separated the disciples, reasoning daily in the school of Tyrannus. + +This continued for two years, so that all those who lived in Asia heard the word of the Lord Jesus, both Jews and Greeks. + +

+

God worked special miracles by the hands of Paul, + +so that even handkerchiefs or aprons were carried away from his body to the sick, and the diseases departed from them, and the evil spirits went out. + +But some of the itinerant Jews, exorcists, took on themselves to invoke over those who had the evil spirits the name of the Lord Jesus, saying, “We adjure you by Jesus whom Paul preaches.” + +There were seven sons of one Sceva, a Jewish chief priest, who did this. + +

+

The evil spirit answered, “Jesus I know, and Paul I know, but who are you?” + +The man in whom the evil spirit was leaped on them, overpowered them, and prevailed against them, so that they fled out of that house naked and wounded. + +This became known to all, both Jews and Greeks, who lived at Ephesus. Fear fell on them all, and the name of the Lord Jesus was magnified. + +Many also of those who had believed came, confessing and declaring their deeds. + +Many of those who practiced magical arts brought their books together and burned them in the sight of all. They counted their price, and found it to be fifty thousand pieces of silver.19:19 +The 50,000 pieces of silver here probably referred to 50,000 drachmas. If so, the value of the burned books was equivalent to about 160 man-years of wages for agricultural laborers + +So the word of the Lord was growing and becoming mighty. + +

+

Now after these things had ended, Paul determined 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.” + +

+

Having sent into Macedonia two of those who served him, Timothy and Erastus, he himself stayed in Asia for a while. + +About that time there arose no small disturbance concerning the Way. + +For a certain man named Demetrius, a silversmith who made silver shrines of Artemis, brought no little business to the craftsmen, + +whom he gathered together with the workmen of like occupation, and said, “Sirs, you know that by this business we have our wealth. + +You see and hear that not at Ephesus alone, but almost throughout all Asia, this Paul has persuaded and turned away many people, saying that they are no gods that are made with hands. + +Not only is there danger that this our trade come into disrepute, but also that the temple of the great goddess Artemis will be counted as nothing and her majesty destroyed, whom all Asia and the world worships.” + +

+

When they heard this they were filled with anger, and cried out, saying, “Great is Artemis of the Ephesians!” + +The whole city was filled with confusion, and they rushed with one accord into the theater, having seized Gaius and Aristarchus, men of Macedonia, Paul’s companions in travel. + +When Paul wanted to enter in to the people, the disciples didn’t allow him. + +Certain also of the Asiarchs, being his friends, sent to him and begged him not to venture into the theater. + +Some therefore cried one thing, and some another, for the assembly was in confusion. Most of them didn’t know why they had come together. + +They brought Alexander out of the multitude, the Jews putting him forward. Alexander beckoned with his hand, and would have made a defense to the people. + +But when they perceived that he was a Jew, all with one voice for a time of about two hours cried out, “Great is Artemis of the Ephesians!” + +

+

When the town clerk had quieted the multitude, he said, “You men of Ephesus, what man is there who doesn’t know that the city of the Ephesians is temple keeper of the great goddess Artemis, and of the image which fell down from Zeus? + +Seeing then that these things can’t be denied, you ought to be quiet and to do nothing rash. + +For you have brought these men here, who are neither robbers of temples nor blasphemers of your goddess. + +If therefore Demetrius and the craftsmen who are with him have a matter against anyone, the courts are open and there are proconsuls. Let them press charges against one another. + +But if you seek anything about other matters, it will be settled in the regular assembly. + +For indeed we are in danger of being accused concerning today’s riot, there being no cause. Concerning it, we wouldn’t be able to give an account of this commotion.” + +When he had thus spoken, he dismissed the assembly. + +

+ + +

After the uproar had ceased, Paul sent for the disciples, took leave of them, and departed to go into Macedonia. + +When he had gone through those parts and had encouraged them with many words, he came into Greece. + +When he had spent three months there, and a plot was made against him by Jews as he was about to set sail for Syria, he determined to return through Macedonia. + +These accompanied him as far as Asia: Sopater of Beroea, Aristarchus and Secundus of the Thessalonians, Gaius of Derbe, Timothy, and Tychicus and Trophimus of Asia. + +But these had gone ahead, and were waiting for us at Troas. + +We sailed away from Philippi after the days of Unleavened Bread, and came to them at Troas in five days, where we stayed seven days. + +

+

On the first day of the week, when the disciples were gathered together to break bread, Paul talked with them, intending to depart on the next day; and continued his speech until midnight. + +There were many lights in the upper room where we20:8 +TR reads “they” instead of “we” were gathered together. + +A certain young man named Eutychus sat in the window, weighed down with deep sleep. As Paul spoke still longer, being weighed down by his sleep, he fell down from the third floor and was taken up dead. + +Paul went down and fell upon him, and embracing him said, “Don’t be troubled, for his life is in him.” + +

+

When he had gone up, had broken bread and eaten, and had talked with them a long while, even until break of day, he departed. + +They brought the boy in alive, and were greatly comforted. + +

+

But we, going ahead to the ship, set sail for Assos, intending to take Paul aboard there; for he had so arranged, intending himself to go by land. + +When he met us at Assos, we took him aboard and came to Mitylene. + +Sailing from there, we came the following day opposite Chios. The next day we touched at Samos and stayed at Trogyllium, and the day after we came to Miletus. + +For Paul had determined to sail past Ephesus, that he might not have to spend time in Asia; for he was hastening, if it were possible for him, to be in Jerusalem on the day of Pentecost. + +

+

From Miletus he sent to Ephesus and called to himself the elders of the assembly. + +When they had come to him, he said to them, “You yourselves know, from the first day that I set foot in Asia, how I was with you all the time, + +serving the Lord with all humility, with many tears, and with trials which happened to me by the plots of the Jews; + +how I didn’t shrink from declaring to you anything that was profitable, teaching you publicly and from house to house, + +testifying both to Jews and to Greeks repentance toward God and faith toward our Lord Jesus.20:21 +TR adds “Christ” + +Now, behold, I go bound by the Spirit to Jerusalem, not knowing what will happen to me there; + +except that the Holy Spirit testifies in every city, saying that bonds and afflictions wait for me. + +But these things don’t count; nor do I hold my life dear to myself, so that I may finish my race with joy, and the ministry which I received from the Lord Jesus, to fully testify to the Good News of the grace of God. + +

+

Now, behold, I know that you all, among whom I went about preaching God’s Kingdom, will see my face no more. + +Therefore I testify to you today that I am clean from the blood of all men, + +for I didn’t shrink from declaring to you the whole counsel of God. + +Take heed, therefore, to yourselves and to all the flock, in which the Holy Spirit has made you overseers, to shepherd the assembly of the Lord and20:28 +TR, NU omit “the Lord and” God which he purchased with his own blood. + +For I know that after my departure, vicious wolves will enter in among you, not sparing the flock. + +Men will arise from among your own selves, speaking perverse things, to draw away the disciples after them. + +Therefore watch, remembering that for a period of three years I didn’t cease to admonish everyone night and day with tears. + +Now, brothers,20:32 +The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” + I entrust you to God and to the word of his grace, which is able to build up and to give you the inheritance among all those who are sanctified. + +I coveted no one’s silver, gold, or clothing. + +You yourselves know that these hands served my necessities, and those who were with me. + +In all things I gave you an example, that so laboring you ought to help the weak, and to remember the words of the Lord Jesus, that he himself said, +It is more blessed to give than to receive.’ ” + +

+

When he had spoken these things, he knelt down and prayed with them all. + +They all wept freely, and fell on Paul’s neck and kissed him, + +sorrowing most of all because of the word which he had spoken, that they should see his face no more. Then they accompanied him to the ship. + +

+ + +

When we had departed from them and had set sail, we came with a straight course to Cos, and the next day to Rhodes, and from there to Patara. + +Having found a ship crossing over to Phoenicia, we went aboard and set sail. + +When we had come in sight of Cyprus, leaving it on the left hand, we sailed to Syria and landed at Tyre, for the ship was there to unload her cargo. + +Having found disciples, we stayed there seven days. These said to Paul through the Spirit that he should not go up to Jerusalem. + +When those days were over, we departed and went on our journey. They all, with wives and children, brought us on our way until we were out of the city. Kneeling down on the beach, we prayed. + +After saying goodbye to each other, we went on board the ship, and they returned home again. + +

+

When we had finished the voyage from Tyre, we arrived at Ptolemais. We greeted the brothers and stayed with them one day. + +On the next day, we who were Paul’s companions departed and came to Caesarea. +

+

We entered into the house of Philip the evangelist, who was one of the seven, and stayed with him. + +Now this man had four virgin daughters who prophesied. + +As we stayed there some days, a certain prophet named Agabus came down from Judea. + +Coming to us and taking Paul’s belt, he bound his own feet and hands, and said, “The Holy Spirit says: ‘So the Jews at Jerusalem will bind the man who owns this belt, and will deliver him into the hands of the Gentiles.’” + +

+

When we heard these things, both we and the people of that place begged him not to go up to Jerusalem. + +Then Paul answered, “What are you doing, weeping and breaking my heart? For I am ready not only to be bound, but also to die at Jerusalem for the name of the Lord Jesus.” + +

+

When he would not be persuaded, we ceased, saying, “The Lords will be done.” + +

+

After these days we took up our baggage and went up to Jerusalem. + +Some of the disciples from Caesarea also went with us, bringing one Mnason of Cyprus, an early disciple, with whom we would stay. + +

+

When we had come to Jerusalem, the brothers received us gladly. + +The day following, Paul went in with us to James; and all the elders were present. + +When he had greeted them, he reported one by one the things which God had worked among the Gentiles through his ministry. + +They, when they heard it, glorified God. They said to him, “You see, brother, how many thousands there are among the Jews of those who have believed, and they are all zealous for the law. + +They have been informed about you, that you teach all the Jews who are among the Gentiles to forsake Moses, telling them not to circumcise their children and not to walk after the customs. + +What then? The assembly must certainly meet, for they will hear that you have come. + +Therefore do what we tell you. We have four men who have taken a vow. + +Take them and purify yourself with them, and pay their expenses for them, that they may shave their heads. Then all will know that there is no truth in the things that they have been informed about you, but that you yourself also walk keeping the law. + +But concerning the Gentiles who believe, we have written our decision that they should observe no such thing, except that they should keep themselves from food offered to idols, from blood, from strangled things, and from sexual immorality.” + +

+

Then Paul took the men, and the next day purified himself and went with them into the temple, declaring the fulfillment of the days of purification, until the offering was offered for every one of them. + +When the seven days were almost completed, the Jews from Asia, when they saw him in the temple, stirred up all the multitude and laid hands on him, + +crying out, “Men of Israel, help! This is the man who teaches all men everywhere against the people, and the law, and this place. Moreover, he also brought Greeks into the temple and has defiled this holy place!” + +For they had seen Trophimus the Ephesian with him in the city, and they supposed that Paul had brought him into the temple. + +

+

All the city was moved and the people ran together. They seized Paul and dragged him out of the temple. Immediately the doors were shut. + +As they were trying to kill him, news came up to the commanding officer of the regiment that all Jerusalem was in an uproar. + +Immediately he took soldiers and centurions and ran down to them. They, when they saw the chief captain and the soldiers, stopped beating Paul. + +Then the commanding officer came near, arrested him, commanded him to be bound with two chains, and inquired who he was and what he had done. + +Some shouted one thing and some another, among the crowd. When he couldn’t find out the truth because of the noise, he commanded him to be brought into the barracks. + +

+

When he came to the stairs, he was carried by the soldiers because of the violence of the crowd; + +for the multitude of the people followed after, crying out, “Away with him!” + +As Paul was about to be brought into the barracks, he asked the commanding officer, “May I speak to you?” +

+

He said, “Do you know Greek? + +Aren’t you then the Egyptian who before these days stirred up to sedition and led out into the wilderness the four thousand men of the Assassins?” + +

+

But Paul said, “I am a Jew from Tarsus in Cilicia, a citizen of no insignificant city. I beg you, allow me to speak to the people.” + +

+

When he had given him permission, Paul, standing on the stairs, beckoned with his hand to the people. When there was a great silence, he spoke to them in the Hebrew language, saying, + +

+ + +

“Brothers and fathers, listen to the defense which I now make to you.” + +

+

When they heard that he spoke to them in the Hebrew language, they were even more quiet. +

+

He said, + +I am indeed a Jew, born in Tarsus of Cilicia, but brought up in this city at the feet of Gamaliel, instructed according to the strict tradition of the law of our fathers, being zealous for God, even as you all are today. + +I persecuted this Way to the death, binding and delivering into prisons both men and women, + +as also the high priest and all the council of the elders testify, from whom also I received letters to the brothers, and traveled to Damascus to bring them also who were there to Jerusalem in bonds to be punished. + +

+

As I made my journey and came close to Damascus, about noon suddenly a great light shone around me from the sky. + +I fell to the ground and heard a voice saying to me, +Saul, Saul, why are you persecuting me?’ + +I answered, ‘Who are you, Lord?’ He said to me, +I am Jesus of Nazareth, whom you persecute.’ + +

+

Those who were with me indeed saw the light and were afraid, but they didn’t understand the voice of him who spoke to me. + +I said, ‘What shall I do, Lord?’ The Lord said to me, +‘Arise, and go into Damascus. There you will be told about all things which are appointed for you to do.’ + +When I couldn’t see for the glory of that light, being led by the hand of those who were with me, I came into Damascus. + +

+

One Ananias, a devout man according to the law, well reported of by all the Jews who lived in Damascus, + +came to me, and standing by me said to me, ‘Brother Saul, receive your sight!’ In that very hour I looked up at him. + +He said, ‘The God of our fathers has appointed you to know his will, and to see the Righteous One, and to hear a voice from his mouth. + +For you will be a witness for him to all men of what you have seen and heard. + +Now why do you wait? Arise, be baptized, and wash away your sins, calling on the name of the Lord.’ + +

+

When I had returned to Jerusalem and while I prayed in the temple, I fell into a trance + +and saw him saying to me, +Hurry and get out of Jerusalem quickly, because they will not receive testimony concerning me from you.’ + +I said, ‘Lord, they themselves know that I imprisoned and beat in every synagogue those who believed in you. + +When the blood of Stephen, your witness, was shed, I also was standing by, consenting to his death, and guarding the cloaks of those who killed him.’ + +

+

He said to me, +Depart, for I will send you out far from here to the Gentiles.’ ” + +

+

They listened to him until he said that; then they lifted up their voice and said, “Rid the earth of this fellow, for he isn’t fit to live!” + +

+

As they cried out, threw off their cloaks, and threw dust into the air, + +the commanding officer commanded him to be brought into the barracks, ordering him to be examined by scourging, that he might know for what crime they shouted against him like that. + +When they had tied him up with straps, Paul asked the centurion who stood by, “Is it lawful for you to scourge a man who is a Roman, and not found guilty?” + +

+

When the centurion heard it, he went to the commanding officer and told him, “Watch what you are about to do, for this man is a Roman!” + +

+

The commanding officer came and asked him, “Tell me, are you a Roman?” +

+

He said, “Yes.” + +

+

The commanding officer answered, “I bought my citizenship for a great price.” +

+

Paul said, “But I was born a Roman.” + +

+

Immediately those who were about to examine him departed from him, and the commanding officer also was afraid when he realized that he was a Roman, because he had bound him. + +But on the next day, desiring to know the truth about why he was accused by the Jews, he freed him from the bonds and commanded the chief priests and all the council to come together, and brought Paul down and set him before them. + +

+ + +

Paul, looking steadfastly at the council, said, “Brothers, I have lived before God in all good conscience until today.” + +

+

The high priest, Ananias, commanded those who stood by him to strike him on the mouth. + +

+

Then Paul said to him, “God will strike you, you whitewashed wall! Do you sit to judge me according to the law, and command me to be struck contrary to the law?” + +

+

Those who stood by said, “Do you malign God’s high priest?” + +

+

Paul said, “I didn’t know, brothers, that he was high priest. For it is written, ‘You shall not speak evil of a ruler of your people.’”23:5 +Exodus 22:28 + +

+

But when Paul perceived that the one part were Sadducees and the other Pharisees, he cried out in the council, “Men and brothers, I am a Pharisee, a son of Pharisees. Concerning the hope and resurrection of the dead I am being judged!” + +

+

When he had said this, an argument arose between the Pharisees and Sadducees, and the crowd was divided. + +For the Sadducees say that there is no resurrection, nor angel, nor spirit; but the Pharisees confess all of these. + +A great clamor arose, and some of the scribes of the Phariseespart stood up, and contended, saying, “We find no evil in this man. But if a spirit or angel has spoken to him, let’s not fight against God!” + +

+

When a great argument arose, the commanding officer, fearing that Paul would be torn in pieces by them, commanded the soldiers to go down and take him by force from among them and bring him into the barracks. + +

+

The following night, the Lord stood by him and said, +“Cheer up, Paul, for as you have testified about me at Jerusalem, so you must testify also at Rome.” + +

+

When it was day, some of the Jews banded together and bound themselves under a curse, saying that they would neither eat nor drink until they had killed Paul. + +There were more than forty people who had made this conspiracy. + +They came to the chief priests and the elders, and said, “We have bound ourselves under a great curse to taste nothing until we have killed Paul. + +Now therefore, you with the council inform the commanding officer that he should bring him down to you tomorrow, as though you were going to judge his case more exactly. We are ready to kill him before he comes near.” + +

+

But Paul’s sister’s son heard they were lying in wait, and he came and entered into the barracks and told Paul. + +Paul summoned one of the centurions and said, “Bring this young man to the commanding officer, for he has something to tell him.” + +

+

So he took him and brought him to the commanding officer and said, “Paul, the prisoner, summoned me and asked me to bring this young man to you. He has something to tell you.” + +

+

The commanding officer took him by the hand, and going aside, asked him privately, “What is it that you have to tell me?” + +

+

He said, “The Jews have agreed to ask you to bring Paul down to the council tomorrow, as though intending to inquire somewhat more accurately concerning him. + +Therefore don’t yield to them, for more than forty men lie in wait for him, who have bound themselves under a curse to neither eat nor drink until they have killed him. Now they are ready, looking for the promise from you.” + +

+

So the commanding officer let the young man go, charging him, “Tell no one that you have revealed these things to me.” + +

+

He called to himself two of the centurions, and said, “Prepare two hundred soldiers to go as far as Caesarea, with seventy horsemen and two hundred men armed with spears, at the third hour of the night.”23:23 +about 9:00 p.m. + +He asked them to provide mounts, that they might set Paul on one, and bring him safely to Felix the governor. + +He wrote a letter like this: + +

+

Claudius Lysias to the most excellent governor Felix: Greetings. + +

+

This man was seized by the Jews, and was about to be killed by them when I came with the soldiers and rescued him, having learned that he was a Roman. + +Desiring to know the cause why they accused him, I brought him down to their council. + +I found him to be accused about questions of their law, but not to be charged with anything worthy of death or of imprisonment. + +When I was told that the Jews lay in wait for the man, I sent him to you immediately, charging his accusers also to bring their accusations against him before you. Farewell.” + +

+

So the soldiers, carrying out their orders, took Paul and brought him by night to Antipatris. + +But on the next day they left the horsemen to go with him, and returned to the barracks. + +When they came to Caesarea and delivered the letter to the governor, they also presented Paul to him. + +When the governor had read it, he asked what province he was from. When he understood that he was from Cilicia, he said, + +I will hear you fully when your accusers also arrive.” He commanded that he be kept in Herod’s palace. + +

+ + +

After five days, the high priest, Ananias, came down with certain elders and an orator, one Tertullus. They informed the governor against Paul. + +When he was called, Tertullus began to accuse him, saying, “Seeing that by you we enjoy much peace, and that prosperity is coming to this nation by your foresight, + +we accept it in all ways and in all places, most excellent Felix, with all thankfulness. + +But that I don’t delay you, I entreat you to bear with us and hear a few words. + +For we have found this man to be a plague, an instigator of insurrections among all the Jews throughout the world, and a ringleader of the sect of the Nazarenes. + +He even tried to profane the temple, and we arrested him.24:6 +TR adds “We wanted to judge him according to our law,” + +24:7 +TR adds “but the commanding officer, Lysias, came by and with great violence took him out of our hands,” + +24:8 +TR adds “commanding his accusers to come to you.”By examining him yourself you may ascertain all these things of which we accuse him.” + +

+

The Jews also joined in the attack, affirming that these things were so. + +

+

When the governor had beckoned to him to speak, Paul answered, “Because I know that you have been a judge of this nation for many years, I cheerfully make my defense, + +seeing that you can verify that it is not more than twelve days since I went up to worship at Jerusalem. + +In the temple they didn’t find me disputing with anyone or stirring up a crowd, either in the synagogues or in the city. + +Nor can they prove to you the things of which they now accuse me. + +But this I confess to you, that according to the Way, which they call a sect, so I serve the God of our fathers, believing all things which are according to the law, and which are written in the prophets; + +having hope toward God, which these also themselves look for, that there will be a resurrection of the dead, both of the just and unjust. + +In this I also practice always having a conscience void of offense toward God and men. + +Now after some years, I came to bring gifts for the needy to my nation, and offerings; + +amid which certain Jews from Asia found me purified in the temple, not with a mob, nor with turmoil. + +They ought to have been here before you and to make accusation if they had anything against me. + +Or else let these men themselves say what injustice they found in me when I stood before the council, + +unless it is for this one thing that I cried standing among them, ‘Concerning the resurrection of the dead I am being judged before you today!’” + +

+

But Felix, having more exact knowledge concerning the Way, deferred them, saying, “When Lysias, the commanding officer, comes down, I will decide your case.” + +He ordered the centurion that Paul should be kept in custody and should have some privileges, and not to forbid any of his friends to serve him or to visit him. + +

+

After some days, Felix came with Drusilla his wife, who was a Jewess, and sent for Paul and heard him concerning the faith in Christ Jesus. + +As he reasoned about righteousness, self-control, and the judgment to come, Felix was terrified, and answered, “Go your way for this time, and when it is convenient for me, I will summon you.” + +Meanwhile, he also hoped that money would be given to him by Paul, that he might release him. Therefore also he sent for him more often and talked with him. + +

+

But when two years were fulfilled, Felix was succeeded by Porcius Festus, and desiring to gain favor with the Jews, Felix left Paul in bonds. + +

+ + +

Festus therefore, having come into the province, after three days went up to Jerusalem from Caesarea. + +Then the high priest and the principal men of the Jews informed him against Paul, and they begged him, + +asking a favor against him, that he would summon him to Jerusalem, plotting to kill him on the way. + +However Festus answered that Paul should be kept in custody at Caesarea, and that he himself was about to depart shortly. + +Let them therefore”, he said, “that are in power among you go down with me, and if there is anything wrong in the man, let them accuse him.” + +

+

When he had stayed among them more than ten days, he went down to Caesarea, and on the next day he sat on the judgment seat, and commanded Paul to be brought. + +When he had come, the Jews who had come down from Jerusalem stood around him, bringing against him many and grievous charges which they could not prove, + +while he said in his defense, “Neither against the law of the Jews, nor against the temple, nor against Caesar, have I sinned at all.” + +

+

But Festus, desiring to gain favor with the Jews, answered Paul and said, “Are you willing to go up to Jerusalem and be judged by me there concerning these things?” + +

+

But Paul said, “I am standing before Caesar’s judgment seat, where I ought to be tried. I have done no wrong to the Jews, as you also know very well. + +For if I have done wrong and have committed anything worthy of death, I don’t refuse to die; but if none of those things is true that they accuse me of, no one can give me up to them. I appeal to Caesar!” + +

+

Then Festus, when he had conferred with the council, answered, “You have appealed to Caesar. To Caesar you shall go.” + +

+

Now when some days had passed, King Agrippa and Bernice arrived at Caesarea and greeted Festus. + +As he stayed there many days, Festus laid Paul’s case before the king, saying, “There is a certain man left a prisoner by Felix; + +about whom, when I was at Jerusalem, the chief priests and the elders of the Jews informed me, asking for a sentence against him. + +I answered them that it is not the custom of the Romans to give up any man to destruction before the accused has met the accusers face to face and has had opportunity to make his defense concerning the matter laid against him. + +When therefore they had come together here, I didn’t delay, but on the next day sat on the judgment seat and commanded the man to be brought. + +When the accusers stood up, they brought no charges against him of such things as I supposed; + +but had certain questions against him about their own religion and about one Jesus, who was dead, whom Paul affirmed to be alive. + +Being perplexed how to inquire concerning these things, I asked whether he was willing to go to Jerusalem and there be judged concerning these matters. + +But when Paul had appealed to be kept for the decision of the emperor, I commanded him to be kept until I could send him to Caesar.” + +

+

Agrippa said to Festus, “I also would like to hear the man myself.” +

+

“Tomorrow,” he said, “you shall hear him.” + +

+

So on the next day, when Agrippa and Bernice had come with great pomp, and they had entered into the place of hearing with the commanding officers and the principal men of the city, at the command of Festus, Paul was brought in. + +Festus said, “King Agrippa, and all men who are here present with us, you see this man about whom all the multitude of the Jews petitioned me, both at Jerusalem and here, crying that he ought not to live any longer. + +But when I found that he had committed nothing worthy of death, and as he himself appealed to the emperor, I determined to send him, + +of whom I have no certain thing to write to my lord. Therefore I have brought him out before you, and especially before you, King Agrippa, that, after examination I may have something to write. + +For it seems to me unreasonable, in sending a prisoner, not to also specify the charges against him.” + +

+ + +

Agrippa said to Paul, “You may speak for yourself.” +

+

Then Paul stretched out his hand, and made his defense. + +I think myself happy, King Agrippa, that I am to make my defense before you today concerning all the things that I am accused by the Jews, + +especially because you are expert in all customs and questions which are among the Jews. Therefore I beg you to hear me patiently. + +

+

Indeed, all the Jews know my way of life from my youth up, which was from the beginning among my own nation and at Jerusalem; + +having known me from the first, if they are willing to testify, that after the strictest sect of our religion I lived a Pharisee. + +Now I stand here to be judged for the hope of the promise made by God to our fathers, + +which our twelve tribes, earnestly serving night and day, hope to attain. Concerning this hope I am accused by the Jews, King Agrippa! + +Why is it judged incredible with you if God does raise the dead? + +

+

I myself most certainly thought that I ought to do many things contrary to the name of Jesus of Nazareth. + +I also did this in Jerusalem. I both shut up many of the saints in prisons, having received authority from the chief priests; and when they were put to death I gave my vote against them. + +Punishing them often in all the synagogues, I tried to make them blaspheme. Being exceedingly enraged against them, I persecuted them even to foreign cities. + +

+

Whereupon as I traveled to Damascus with the authority and commission from the chief priests, + +at noon, O king, I saw on the way a light from the sky, brighter than the sun, shining around me and those who traveled with me. + +When we had all fallen to the earth, I heard a voice saying to me in the Hebrew language, +Saul, Saul, why are you persecuting me? It is hard for you to kick against the goads.’ + +

+

I said, ‘Who are you, Lord?’ +

+

He said, +I am Jesus, whom you are persecuting. + + +But arise, and stand on your feet, for I have appeared to you for this purpose: to appoint you a servant and a witness both of the things which you have seen and of the things which I will reveal to you; + + +delivering you from the people and from the Gentiles, to whom I send you, + + +to open their eyes, that they may turn from darkness to light and from the power of Satan to God, that they may receive remission of sins and an inheritance among those who are sanctified by faith in me.’ + +

+

Therefore, King Agrippa, I was not disobedient to the heavenly vision, + +but declared first to them of Damascus, at Jerusalem, and throughout all the country of Judea, and also to the Gentiles, that they should repent and turn to God, doing works worthy of repentance. + +For this reason the Jews seized me in the temple and tried to kill me. + +Having therefore obtained the help that is from God, I stand to this day testifying both to small and great, saying nothing but what the prophets and Moses said would happen, + +how the Christ must suffer, and how, by the resurrection of the dead, he would be first to proclaim light both to these people and to the Gentiles.” + +

+

As he thus made his defense, Festus said with a loud voice, “Paul, you are crazy! Your great learning is driving you insane!” + +

+

But he said, “I am not crazy, most excellent Festus, but boldly declare words of truth and reasonableness. + +For the king knows of these things, to whom also I speak freely. For I am persuaded that none of these things is hidden from him, for this has not been done in a corner. + +King Agrippa, do you believe the prophets? I know that you believe.” + +

+

Agrippa said to Paul, “With a little persuasion are you trying to make me a Christian?” + +

+

Paul said, “I pray to God, that whether with little or with much, not only you, but also all that hear me today, might become such as I am, except for these bonds.” + +

+

The king rose up with the governor and Bernice, and those who sat with them. + +When they had withdrawn, they spoke to one another, saying, “This man does nothing worthy of death or of bonds.” + +Agrippa said to Festus, “This man might have been set free if he had not appealed to Caesar.” + +

+ + +

When it was determined that we should sail for Italy, they delivered Paul and certain other prisoners to a centurion named Julius, of the Augustan band. + +Embarking in a ship of Adramyttium, which was about to sail to places on the coast of Asia, we put to sea, Aristarchus, a Macedonian of Thessalonica being with us. + +The next day, we touched at Sidon. Julius treated Paul kindly and gave him permission to go to his friends and refresh himself. + +Putting to sea from there, we sailed under the lee of Cyprus, because the winds were contrary. + +When we had sailed across the sea which is off Cilicia and Pamphylia, we came to Myra, a city of Lycia. + +There the centurion found a ship of Alexandria sailing for Italy, and he put us on board. + +When we had sailed slowly many days, and had come with difficulty opposite Cnidus, the wind not allowing us further, we sailed under the lee of Crete, opposite Salmone. + +With difficulty sailing along it we came to a certain place called Fair Havens, near the city of Lasea. + +

+

When much time had passed and the voyage was now dangerous because the Fast had now already gone by, Paul admonished them + +and said to them, “Sirs, I perceive that the voyage will be with injury and much loss, not only of the cargo and the ship, but also of our lives.” + +But the centurion gave more heed to the master and to the owner of the ship than to those things which were spoken by Paul. + +Because the haven was not suitable to winter in, the majority advised going to sea from there, if by any means they could reach Phoenix and winter there, which is a port of Crete, looking southwest and northwest. + +

+

When the south wind blew softly, supposing that they had obtained their purpose, they weighed anchor and sailed along Crete, close to shore. + +But before long, a stormy wind beat down from shore, which is called Euroclydon.27:14 +Or, “a northeaster”. + +When the ship was caught and couldn’t face the wind, we gave way to it and were driven along. + +Running under the lee of a small island called Clauda, we were able, with difficulty, to secure the boat. + +After they had hoisted it up, they used cables to help reinforce the ship. Fearing that they would run aground on the Syrtis sand bars, they lowered the sea anchor, and so were driven along. + +As we labored exceedingly with the storm, the next day they began to throw things overboard. + +On the third day, they threw out the ship’s tackle with their own hands. + +When neither sun nor stars shone on us for many days, and no small storm pressed on us, all hope that we would be saved was now taken away. + +

+

When they had been long without food, Paul stood up in the middle of them and said, “Sirs, you should have listened to me, and not have set sail from Crete and have gotten this injury and loss. + +Now I exhort you to cheer up, for there will be no loss of life among you, but only of the ship. + +For there stood by me this night an angel, belonging to the God whose I am and whom I serve, + +saying, ‘Don’t be afraid, Paul. You must stand before Caesar. Behold, God has granted you all those who sail with you.’ + +Therefore, sirs, cheer up! For I believe God, that it will be just as it has been spoken to me. + +But we must run aground on a certain island.” + +

+

But when the fourteenth night had come, as we were driven back and forth in the Adriatic Sea, about midnight the sailors surmised that they were drawing near to some land. + +They took soundings and found twenty fathoms.27:28 +20 fathoms = 120 feet = 36.6 meters After a little while, they took soundings again, and found fifteen fathoms.27:28 +15 fathoms = 90 feet = 27.4 meters + +Fearing that we would run aground on rocky ground, they let go four anchors from the stern, and wished for daylight. + +As the sailors were trying to flee out of the ship and had lowered the boat into the sea, pretending that they would lay out anchors from the bow, + +Paul said to the centurion and to the soldiers, “Unless these stay in the ship, you cant be saved.” + +Then the soldiers cut away the ropes of the boat and let it fall off. + +

+

While the day was coming on, Paul begged them all to take some food, saying, “Today is the fourteenth day that you wait and continue fasting, having taken nothing. + +Therefore I beg you to take some food, for this is for your safety; for not a hair will perish from any of your heads.” + +When he had said this and had taken bread, he gave thanks to God in the presence of all; then he broke it and began to eat. + +Then they all cheered up, and they also took food. + +In all, we were two hundred seventy-six souls on the ship. + +When they had eaten enough, they lightened the ship, throwing out the wheat into the sea. + +When it was day, they didn’t recognize the land, but they noticed a certain bay with a beach, and they decided to try to drive the ship onto it. + +Casting off the anchors, they left them in the sea, at the same time untying the rudder ropes. Hoisting up the foresail to the wind, they made for the beach. + +But coming to a place where two seas met, they ran the vessel aground. The bow struck and remained immovable, but the stern began to break up by the violence of the waves. + +

+

The soldierscounsel was to kill the prisoners, so that none of them would swim out and escape. + +But the centurion, desiring to save Paul, stopped them from their purpose, and commanded that those who could swim should throw themselves overboard first to go toward the land; + +and the rest should follow, some on planks and some on other things from the ship. So they all escaped safely to the land. + +

+ + +

When we had escaped, then they28:1 +NU reads “we” learned that the island was called Malta. + +The natives showed us uncommon kindness; for they kindled a fire and received us all, because of the present rain and because of the cold. + +But when Paul had gathered a bundle of sticks and laid them on the fire, a viper came out because of the heat and fastened on his hand. + +When the natives saw the creature hanging from his hand, they said to one another, “No doubt this man is a murderer, whom, though he has escaped from the sea, yet Justice has not allowed to live.” + +However he shook off the creature into the fire, and wasn’t harmed. + +But they expected that he would have swollen or fallen down dead suddenly, but when they watched for a long time and saw nothing bad happen to him, they changed their minds and said that he was a god. + +

+

Now in the neighborhood of that place were lands belonging to the chief man of the island, named Publius, who received us and courteously entertained us for three days. + +The father of Publius lay sick of fever and dysentery. Paul entered in to him, prayed, and laying his hands on him, healed him. + +Then when this was done, the rest also who had diseases in the island came and were cured. + +They also honored us with many honors; and when we sailed, they put on board the things that we needed. + +

+

After three months, we set sail in a ship of Alexandria which had wintered in the island, whose figurehead wasThe Twin Brothers.” + +Touching at Syracuse, we stayed there three days. + +From there we circled around and arrived at Rhegium. After one day, a south wind sprang up, and on the second day we came to Puteoli, + +where we found brothers,28:14 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” and were entreated to stay with them for seven days. So we came to Rome. + +From there the brothers, when they heard of us, came to meet us as far as The Market of Appius and The Three Taverns. When Paul saw them, he thanked God and took courage. + +When we entered into Rome, the centurion delivered the prisoners to the captain of the guard, but Paul was allowed to stay by himself with the soldier who guarded him. + +

+

After three days Paul called together those who were the leaders of the Jews. When they had come together, he said to them, “I, brothers, though I had done nothing against the people or the customs of our fathers, still was delivered prisoner from Jerusalem into the hands of the Romans, + +who, when they had examined me, desired to set me free, because there was no cause of death in me. + +But when the Jews spoke against it, I was constrained to appeal to Caesar, not that I had anything about which to accuse my nation. + +For this cause therefore I asked to see you and to speak with you. For because of the hope of Israel I am bound with this chain.” + +

+

They said to him, “We neither received letters from Judea concerning you, nor did any of the brothers come here and report or speak any evil of you. + +But we desire to hear from you what you think. For, as concerning this sect, it is known to us that everywhere it is spoken against.” + +

+

When they had appointed him a day, many people came to him at his lodging. He explained to them, testifying about God’s Kingdom, and persuading them concerning Jesus, both from the law of Moses and from the prophets, from morning until evening. + +Some believed the things which were spoken, and some disbelieved. + +When they didn’t agree among themselves, they departed after Paul had spoken one message: “The Holy Spirit spoke rightly through Isaiah the prophet to our fathers, + +saying, +

+Go to this people and say, + +in hearing, you will hear, + +but will in no way understand. + +In seeing, you will see, + +but will in no way perceive. + + +For this people’s heart has grown callous. + +Their ears are dull of hearing. + +Their eyes they have closed. + +Lest they should see with their eyes, + +hear with their ears, + +understand with their heart, + +and would turn again, + +then I would heal them.’28:27 +Isaiah 6:9-10 + + +

Be it known therefore to you that the salvation of God is sent to the nations, and they will listen.” + +

+

When he had said these words, the Jews departed, having a great dispute among themselves.28:29 +NU omits verse 29. + +

+

Paul stayed two whole years in his own rented house and received all who were coming to him, + +preaching Gods Kingdom and teaching the things concerning the Lord Jesus Christ with all boldness, without hindrance. + +

+
+45-ROM-web.sfm World English Bible (WEB) +Romans +Paul’s Letter to the Romans +Romans +Rom +

Paul’s Letter to the +

+

Romans +

+ + +

Paul, a servant of Jesus Christ,1:1 +“Christ” means “Anointed One”. called to be an apostle, set apart for the Good News of God, + +which he promised before through his prophets in the holy Scriptures, + +concerning his Son, who was born of the offspring1:3 +or, seed of David according to the flesh, + +who was declared to be the Son of God with power according to the Spirit of holiness, by the resurrection from the dead, Jesus Christ our Lord, + +through whom we received grace and apostleship for obedience of faith among all the nations for his name’s sake; + +among whom you are also called to belong to Jesus Christ; + +to all who are in Rome, beloved of God, called to be saints: Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

First, I thank my God through Jesus Christ for all of you, that your faith is proclaimed throughout the whole world. + +For God is my witness, whom I serve in my spirit in the Good News of his Son, how unceasingly I make mention of you always in my prayers, + +requesting, if by any means now at last I may be prospered by the will of God to come to you. + +For I long to see you, that I may impart to you some spiritual gift, to the end that you may be established; + +that is, that I with you may be encouraged in you, each of us by the other’s faith, both yours and mine. + +

+

Now I don’t desire to have you unaware, brothers, that I often planned to come to you (and was hindered so far), that I might have some fruit among you also, even as among the rest of the Gentiles. + +I am debtor both to Greeks and to foreigners, both to the wise and to the foolish. + +So as much as is in me, I am eager to preach the Good News to you also who are in Rome. + +

+

For I am not ashamed of the Good News of Christ, because it is the power of God for salvation for everyone who believes, for the Jew first, and also for the Greek. + +For in it is revealed God’s righteousness from faith to faith. As it is written, “But the righteous shall live by faith.”1:17 +Habakkuk 2:4 + +

+

For the wrath of God is revealed from heaven against all ungodliness and unrighteousness of men who suppress the truth in unrighteousness, + +because that which is known of God is revealed in them, for God revealed it to them. + +For the invisible things of him since the creation of the world are clearly seen, being perceived through the things that are made, even his everlasting power and divinity, that they may be without excuse. + +Because knowing God, they didn’t glorify him as God, and didn’t give thanks, but became vain in their reasoning, and their senseless heart was darkened. + +

+

Professing themselves to be wise, they became fools, + +and traded the glory of the incorruptible God for the likeness of an image of corruptible man, and of birds, four-footed animals, and creeping things. + +Therefore God also gave them up in the lusts of their hearts to uncleanness, that their bodies should be dishonored among themselves; + +who exchanged the truth of God for a lie, and worshiped and served the creature rather than the Creator, who is blessed forever. Amen. + +

+

For this reason, God gave them up to vile passions. For their women changed the natural function into that which is against nature. + +Likewise also the men, leaving the natural function of the woman, burned in their lust toward one another, men doing what is inappropriate with men, and receiving in themselves the due penalty of their error. + +Even as they refused to have God in their knowledge, God gave them up to a reprobate mind, to do those things which are not fitting; + +being filled with all unrighteousness, sexual immorality, wickedness, covetousness, malice; full of envy, murder, strife, deceit, evil habits, secret slanderers, + +backbiters, hateful to God, insolent, arrogant, boastful, inventors of evil things, disobedient to parents, + +without understanding, covenant breakers, without natural affection, unforgiving, unmerciful; + +who, knowing the ordinance of God, that those who practice such things are worthy of death, not only do the same, but also approve of those who practice them. + +

+ + +

Therefore you are without excuse, O man, whoever you are who judge. For in that which you judge another, you condemn yourself. For you who judge practice the same things. + +We know that the judgment of God is according to truth against those who practice such things. + +Do you think this, O man who judges those who practice such things, and do the same, that you will escape the judgment of God? + +Or do you despise the riches of his goodness, forbearance, and patience, not knowing that the goodness of God leads you to repentance? + +But according to your hardness and unrepentant heart you are treasuring up for yourself wrath in the day of wrath, revelation, and of the righteous judgment of God, + +whowill pay back to everyone according to their works:”2:6 +Psalms 62:12; Proverbs 24:12 + +to those who by perseverance in well-doing seek for glory, honor, and incorruptibility, eternal life; + +but to those who are self-seeking and don’t obey the truth, but obey unrighteousness, will be wrath, indignation, + +oppression, and anguish on every soul of man who does evil, to the Jew first, and also to the Greek. + +

+

But glory, honor, and peace go to every man who does good, to the Jew first, and also to the Greek. + +For there is no partiality with God. + +For as many as have sinned without the law will also perish without the law. As many as have sinned under the law will be judged by the law. + +For it isn’t the hearers of the law who are righteous before God, but the doers of the law will be justified + +(for when Gentiles who don’t have the law do by nature the things of the law, these, not having the law, are a law to themselves, + +in that they show the work of the law written in their hearts, their conscience testifying with them, and their thoughts among themselves accusing or else excusing them) + +in the day when God will judge the secrets of men, according to my Good News, by Jesus Christ. + +

+

Indeed you bear the name of a Jew, rest on the law, glory in God, + +know his will, and approve the things that are excellent, being instructed out of the law, + +and are confident that you yourself are a guide of the blind, a light to those who are in darkness, + +a corrector of the foolish, a teacher of babies, having in the law the form of knowledge and of the truth. + +You therefore who teach another, don’t you teach yourself? You who preach that a man shouldn’t steal, do you steal? + +You who say a man shouldn’t commit adultery, do you commit adultery? You who abhor idols, do you rob temples? + +You who glory in the law, do you dishonor God by disobeying the law? + +Forthe name of God is blasphemed among the Gentiles because of you,”2:24 +Isaiah 52:5; Ezekiel 36:22 just as it is written. + +For circumcision indeed profits, if you are a doer of the law, but if you are a transgressor of the law, your circumcision has become uncircumcision. + +If therefore the uncircumcised keep the ordinances of the law, won’t his uncircumcision be accounted as circumcision? + +Won’t those who are physically uncircumcised, but fulfill the law, judge you, who with the letter and circumcision are a transgressor of the law? + +For he is not a Jew who is one outwardly, neither is that circumcision which is outward in the flesh; + +but he is a Jew who is one inwardly, and circumcision is that of the heart, in the spirit, not in the letter; whose praise is not from men, but from God. + +

+ + +

Then what advantage does the Jew have? Or what is the profit of circumcision? + +Much in every way! Because first of all, they were entrusted with the revelations of God. + +For what if some were without faith? Will their lack of faith nullify the faithfulness of God? + +May it never be! Yes, let God be found true, but every man a liar. As it is written, +

+that you might be justified in your words, + +and might prevail when you come into judgment.”3:4 +Psalms 51:4 + + +

But if our unrighteousness commends the righteousness of God, what will we say? Is God unrighteous who inflicts wrath? I speak like men do. + +May it never be! For then how will God judge the world? + +For if the truth of God through my lie abounded to his glory, why am I also still judged as a sinner? + +Why not (as we are slanderously reported, and as some affirm that we say), “Let’s do evil, that good may come?” Those who say so are justly condemned. + +

+

What then? Are we better than they? No, in no way. For we previously warned both Jews and Greeks that they are all under sin. + +As it is written, +

+There is no one righteous; + +no, not one. + + +There is no one who understands. + +There is no one who seeks after God. + + +They have all turned away. + +They have together become unprofitable. + +There is no one who does good, + +no, not so much as one.”3:12 +Psalms 14:1-3; 53:1-3; Ecclesiastes 7:20 + + +Their throat is an open tomb. + +With their tongues they have used deceit.”3:13 +Psalms 5:9 + +The poison of vipers is under their lips.”3:13 +Psalms 140:3 + + +Their mouth is full of cursing and bitterness.”3:14 +Psalms 10:7 + + +Their feet are swift to shed blood. + + +Destruction and misery are in their ways. + + +The way of peace, they haven’t known.”3:17 +Isaiah 59:7-8 + + +There is no fear of God before their eyes.”3:18 +Psalms 36:1 + + +

Now we know that whatever things the law says, it speaks to those who are under the law, that every mouth may be closed, and all the world may be brought under the judgment of God. + +Because by the works of the law, no flesh will be justified in his sight; for through the law comes the knowledge of sin. + +

+

But now apart from the law, a righteousness of God has been revealed, being testified by the law and the prophets; + +even the righteousness of God through faith in Jesus Christ to all and on all those who believe. For there is no distinction, + +for all have sinned, and fall short of the glory of God; + +being justified freely by his grace through the redemption that is in Christ Jesus, + +whom God sent to be an atoning sacrifice3:25 +or, a propitiation through faith in his blood, for a demonstration of his righteousness through the passing over of prior sins, in God’s forbearance; + +to demonstrate his righteousness at this present time, that he might himself be just and the justifier of him who has faith in Jesus. + +

+

Where then is the boasting? It is excluded. By what kind of law? Of works? No, but by a law of faith. + +We maintain therefore that a man is justified by faith apart from the works of the law. + +Or is God the God of Jews only? Isn’t he the God of Gentiles also? Yes, of Gentiles also, + +since indeed there is one God who will justify the circumcised by faith and the uncircumcised through faith. + +

+

Do we then nullify the law through faith? May it never be! No, we establish the law. + +

+ + +

What then will we say that Abraham, our forefather, has found according to the flesh? + +For if Abraham was justified by works, he has something to boast about, but not toward God. + +For what does the Scripture say? “Abraham believed God, and it was accounted to him for righteousness.”4:3 +Genesis 15:6 + +Now to him who works, the reward is not counted as grace, but as something owed. + +But to him who doesn’t work, but believes in him who justifies the ungodly, his faith is accounted for righteousness. + +Even as David also pronounces blessing on the man to whom God counts righteousness apart from works: + +

+Blessed are they whose iniquities are forgiven, + +whose sins are covered. + + +Blessed is the man whom the Lord will by no means charge with sin.”4:8 +Psalms 32:1-2 + + +

Is this blessing then pronounced only on the circumcised, or on the uncircumcised also? For we say that faith was accounted to Abraham for righteousness. + +How then was it counted? When he was in circumcision, or in uncircumcision? Not in circumcision, but in uncircumcision. + +He received the sign of circumcision, a seal of the righteousness of the faith which he had while he was in uncircumcision, that he might be the father of all those who believe, though they might be in uncircumcision, that righteousness might also be accounted to them. + +He is the father of circumcision to those who not only are of the circumcision, but who also walk in the steps of that faith of our father Abraham, which he had in uncircumcision. + +

+

For the promise to Abraham and to his offspring that he would be heir of the world wasn’t through the law, but through the righteousness of faith. + +For if those who are of the law are heirs, faith is made void, and the promise is made of no effect. + +For the law produces wrath; for where there is no law, neither is there disobedience. + +

+

For this cause it is of faith, that it may be according to grace, to the end that the promise may be sure to all the offspring, 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. + +As it is written, “I have made you a father of many nations.”4:17 +Genesis 17:5 This is in the presence of him whom he believed: God, who gives life to the dead, and calls the things that are not, as though they were. + +Against hope, Abraham in hope believed, to the end that he might become a father of many nations, according to that which had been spoken, “So will your offspring be.”4:18 +Genesis 15:5 + +Without being weakened in faith, he didn’t consider his own body, already having been worn out, (he being about a hundred years old), and the deadness of Sarah’s womb. + +Yet, looking to the promise of God, he didn’t waver through unbelief, but grew strong through faith, giving glory to God, + +and being fully assured that what he had promised, he was also able to perform. + +Therefore it also wascredited to him for righteousness.”4:22 +Genesis 15:6 + +Now it was not written that it was accounted to him for his sake alone, + +but for our sake also, to whom it will be accounted, who believe in him who raised Jesus our Lord from the dead, + +who was delivered up for our trespasses, and was raised for our justification. + +

+ + +

Being therefore justified by faith, we have peace with God through our Lord Jesus Christ; + +through whom we also have our access by faith into this grace in which we stand. We rejoice in hope of the glory of God. + +Not only this, but we also rejoice in our sufferings, knowing that suffering produces perseverance; + +and perseverance, proven character; and proven character, hope; + +and hope doesn’t disappoint us, because God’s love has been poured into our hearts through the Holy Spirit who was given to us. + +

+

For while we were yet weak, at the right time Christ died for the ungodly. + +For one will hardly die for a righteous man. Yet perhaps for a good person someone would even dare to die. + +But God commends his own love toward us, in that while we were yet sinners, Christ died for us. + +

+

Much more then, being now justified by his blood, we will be saved from God’s wrath through him. + +For if while we were enemies, we were reconciled to God through the death of his Son, much more, being reconciled, we will be saved by his life. + +

+

Not only so, but we also rejoice in God through our Lord Jesus Christ, through whom we have now received the reconciliation. + +Therefore, as sin entered into the world through one man, and death through sin, so death passed to all men because all sinned. + +For until the law, sin was in the world; but sin is not charged when there is no law. + +Nevertheless death reigned from Adam until Moses, even over those whose sins weren’t like Adam’s disobedience, who is a foreshadowing of him who was to come. + +

+

But the free gift isn’t like the trespass. For if by the trespass of the one the many died, much more did the grace of God and the gift by the grace of the one man, Jesus Christ, abound to the many. + +The gift is not as through one who sinned; for the judgment came by one to condemnation, but the free gift followed many trespasses to justification. + +For if by the trespass of the one, death reigned through the one; so much more will those who receive the abundance of grace and of the gift of righteousness reign in life through the one, Jesus Christ. + +

+

So then as through one trespass, all men were condemned; even so through one act of righteousness, all men were justified to life. + +For as through the one man’s disobedience many were made sinners, even so through the obedience of the one, many will be made righteous. + +The law came in that the trespass might abound; but where sin abounded, grace abounded more exceedingly, + +that as sin reigned in death, even so grace might reign through righteousness to eternal life through Jesus Christ our Lord. + +

+ + +

What shall we say then? Shall we continue in sin, that grace may abound? + +May it never be! We who died to sin, how could we live in it any longer? + +Or don’t you know that all of us who were baptized into Christ Jesus were baptized into his death? + +We were buried therefore with him through baptism into death, that just as Christ was raised from the dead through the glory of the Father, so we also might walk in newness of life. + +

+

For if we have become united with him in the likeness of his death, we will also be part of his resurrection; + +knowing this, that our old man was crucified with him, that the body of sin might be done away with, so that we would no longer be in bondage to sin. + +For he who has died has been freed from sin. + +But if we died with Christ, we believe that we will also live with him, + +knowing that Christ, being raised from the dead, dies no more. Death no longer has dominion over him! + +For the death that he died, he died to sin one time; but the life that he lives, he lives to God. + +Thus consider yourselves also to be dead to sin, but alive to God in Christ Jesus our Lord. + +

+

Therefore don’t let sin reign in your mortal body, that you should obey it in its lusts. + +Also, do not present your members to sin as instruments of unrighteousness, but present yourselves to God as alive from the dead, and your members as instruments of righteousness to God. + +For sin will not have dominion over you, for you are not under law, but under grace. + +

+

What then? Shall we sin because we are not under law but under grace? May it never be! + +Don’t you know that when you present yourselves as servants and obey someone, you are the servants of whomever you obey, whether of sin to death, or of obedience to righteousness? + +But thanks be to God that, whereas you were bondservants of sin, you became obedient from the heart to that form of teaching to which you were delivered. + +Being made free from sin, you became bondservants of righteousness. + +

+

I speak in human terms because of the weakness of your flesh; for as you presented your members as servants to uncleanness and to wickedness upon wickedness, even so now present your members as servants to righteousness for sanctification. + +For when you were servants of sin, you were free from righteousness. + +What fruit then did you have at that time in the things of which you are now ashamed? For the end of those things is death. + +But now, being made free from sin and having become servants of God, you have your fruit of sanctification and the result of eternal life. + +For the wages of sin is death, but the free gift of God is eternal life in Christ Jesus our Lord. + +

+ + +

Or don’t you know, brothers7:1 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” (for I speak to men who know the law), that the law has dominion over a man for as long as he lives? + +For the woman that has a husband is bound by law to the husband while he lives, but if the husband dies, she is discharged from the law of the husband. + +So then if, while the husband lives, she is joined to another man, she would be called an adulteress. But if the husband dies, she is free from the law, so that she is no adulteress, though she is joined to another man. + +Therefore, my brothers, you also were made dead to the law through the body of Christ, that you would be joined to another, to him who was raised from the dead, that we might produce fruit to God. + +For when we were in the flesh, the sinful passions which were through the law worked in our members to bring out fruit to death. + +But now we have been discharged from the law, having died to that in which we were held; so that we serve in newness of the spirit, and not in oldness of the letter. + +

+

What shall we say then? Is the law sin? May it never be! However, I wouldn’t have known sin except through the law. For I wouldn’t have known coveting unless the law had said, “You shall not covet.”7:7 +Exodus 20:17; Deuteronomy 5:21 + +But sin, finding occasion through the commandment, produced in me all kinds of coveting. For apart from the law, sin is dead. + +I was alive apart from the law once, but when the commandment came, sin revived and I died. + +The commandment which was for life, this I found to be for death; + +for sin, finding occasion through the commandment, deceived me, and through it killed me. + +Therefore the law indeed is holy, and the commandment holy, righteous, and good. + +

+

Did then that which is good become death to me? May it never be! But sin, that it might be shown to be sin, was producing death in me through that which is good; that through the commandment sin might become exceedingly sinful. + +For we know that the law is spiritual, but I am fleshly, sold under sin. + +For I don’t understand what I am doing. For I don’t practice what I desire to do; but what I hate, that I do. + +But if what I don’t desire, that I do, I consent to the law that it is good. + +So now it is no more I that do it, but sin which dwells in me. + +For I know that in me, that is, in my flesh, dwells no good thing. For desire is present with me, but I don’t find it doing that which is good. + +For the good which I desire, I don’t do; but the evil which I don’t desire, that I practice. + +But if what I don’t desire, that I do, it is no more I that do it, but sin which dwells in me. + +I find then the law that, while I desire to do good, evil is present. + +For I delight in God’s law after the inward person, + +but I see a different law in my members, warring against the law of my mind, and bringing me into captivity under the law of sin which is in my members. + +What a wretched man I am! Who will deliver me out of the body of this death? + +I thank God through Jesus Christ, our Lord! So then with the mind, I myself serve Gods law, but with the flesh, sin’s law. + +

+ + +

There is therefore now no condemnation to those who are in Christ Jesus, who don’t walk according to the flesh, but according to the Spirit.8:1 +NU omits “who don’t walk according to the flesh, but according to the Spirit” + +For the law of the Spirit of life in Christ Jesus made me free from the law of sin and of death. + +For what the law couldn’t do, in that it was weak through the flesh, God did, sending his own Son in the likeness of sinful flesh and for sin, he condemned sin in the flesh, + +that the ordinance of the law might be fulfilled in us who don’t walk according to the flesh, but according to the Spirit. + +For those who live according to the flesh set their minds on the things of the flesh, but those who live according to the Spirit, the things of the Spirit. + +For the mind of the flesh is death, but the mind of the Spirit is life and peace; + +because the mind of the flesh is hostile toward God, for it is not subject to God’s law, neither indeed can it be. + +Those who are in the flesh cant please God. + +

+

But you are not in the flesh but in the Spirit, if it is so that the Spirit of God dwells in you. But if any man doesn’t have the Spirit of Christ, he is not his. + +If Christ is in you, the body is dead because of sin, but the spirit is alive because of righteousness. + +But if the Spirit of him who raised up Jesus from the dead dwells in you, he who raised up Christ Jesus from the dead will also give life to your mortal bodies through his Spirit who dwells in you. + +

+

So then, brothers, we are debtors, not to the flesh, to live after the flesh. + +For if you live after the flesh, you must die; but if by the Spirit you put to death the deeds of the body, you will live. + +For as many as are led by the Spirit of God, these are children of God. + +For you didn’t receive the spirit of bondage again to fear, but you received the Spirit of adoption, by whom we cry, “Abba!8:15 +Abba is an Aramaic word for “Father” or “Daddy”, which can be used affectionately and respectfully in prayer to our Father in heaven. Father!” + +

+

The Spirit himself testifies with our spirit that we are children of God; + +and if children, then heirsheirs of God and joint heirs with Christ, if indeed we suffer with him, that we may also be glorified with him. + +

+

For I consider that the sufferings of this present time are not worthy to be compared with the glory which will be revealed toward us. + +For the creation waits with eager expectation for the children of God to be revealed. + +For the creation was subjected to vanity, not of its own will, but because of him who subjected it, in hope + +that the creation itself also will be delivered from the bondage of decay into the liberty of the glory of the children of God. + +For we know that the whole creation groans and travails in pain together until now. + +Not only so, but ourselves also, who have the first fruits of the Spirit, even we ourselves groan within ourselves, waiting for adoption, the redemption of our body. + +For we were saved in hope, but hope that is seen is not hope. For who hopes for that which he sees? + +But if we hope for that which we don’t see, we wait for it with patience. + +

+

In the same way, the Spirit also helps our weaknesses, for we don’t know how to pray as we ought. But the Spirit himself makes intercession for us with groanings which cant be uttered. + +He who searches the hearts knows what is on the Spirit’s mind, because he makes intercession for the saints according to God. + +

+

We know that all things work together for good for those who love God, for those who are called according to his purpose. + +For whom he foreknew, he also predestined to be conformed to the image of his Son, that he might be the firstborn among many brothers.8:29 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” + +Whom he predestined, those he also called. Whom he called, those he also justified. Whom he justified, those he also glorified. + +

+

What then shall we say about these things? If God is for us, who can be against us? + +He who didn’t spare his own Son, but delivered him up for us all, how would he not also with him freely give us all things? + +Who could bring a charge against God’s chosen ones? It is God who justifies. + +Who is he who condemns? It is Christ who died, yes rather, who was raised from the dead, who is at the right hand of God, who also makes intercession for us. + +

+

Who shall separate us from the love of Christ? Could oppression, or anguish, or persecution, or famine, or nakedness, or peril, or sword? + +Even as it is written, +

+For your sake we are killed all day long. + +We were accounted as sheep for the slaughter.”8:36 +Psalms 44:22 + + +

No, in all these things we are more than conquerors through him who loved us. + +For I am persuaded that neither death, nor life, nor angels, nor principalities, nor things present, nor things to come, nor powers, + +nor height, nor depth, nor any other created thing will be able to separate us from Gods love which is in Christ Jesus our Lord. + +

+ + +

I tell the truth in Christ. I am not lying, my conscience testifying with me in the Holy Spirit + +that I have great sorrow and unceasing pain in my heart. + +For I could wish that I myself were accursed from Christ for my brothers’ sake, my relatives according to the flesh + +who are Israelites; whose is the adoption, the glory, the covenants, the giving of the law, the service, and the promises; + +of whom are the fathers, and from whom is Christ as concerning the flesh, who is over all, God, blessed forever. Amen. + +

+

But it is not as though the word of God has come to nothing. For they are not all Israel that are of Israel. + +Neither, because they are Abraham’s offspring, are they all children. But, “your offspring will be accounted as from Isaac.”9:7 +Genesis 21:12 + +That is, it is not the children of the flesh who are children of God, but the children of the promise are counted as heirs. + +For this is a word of promise: “At the appointed time I will come, and Sarah will have a son.”9:9 +Genesis 18:10,14 + +Not only so, but Rebekah also conceived by one, by our father Isaac. + +For being not yet born, neither having done anything good or bad, that the purpose of God according to election might stand, not of works, but of him who calls,9:11 +NU puts the phrase “not of works, but of him who calls” at the beginning of verse 12 instead of the end of verse 11. + +it was said to her, “The elder will serve the younger.”9:12 +Genesis 25:23 + +Even as it is written, “Jacob I loved, but Esau I hated.”9:13 +Malachi 1:2-3 + +

+

What shall we say then? Is there unrighteousness with God? May it never be! + +For he said to Moses, “I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.”9:15 +Exodus 33:19 + +So then it is not of him who wills, nor of him who runs, but of God who has mercy. + +For the Scripture says to Pharaoh, “For this very purpose I caused you to be raised up, that I might show in you my power, and that my name might be proclaimed in all the earth.”9:17 +Exodus 9:16 + +So then, he has mercy on whom he desires, and he hardens whom he desires. + +

+

You will say then to me, “Why does he still find fault? For who withstands his will?” + +But indeed, O man, who are you to reply against God? Will the thing formed ask him who formed it, “Why did you make me like this?”9:20 +Isaiah 29:16; 45:9 + +Or hasn’t the potter a right over the clay, from the same lump to make one part a vessel for honor, and another for dishonor? + +What if God, willing to show his wrath and to make his power known, endured with much patience vessels of wrath prepared for destruction, + +and that he might make known the riches of his glory on vessels of mercy, which he prepared beforehand for glory— + +us, whom he also called, not from the Jews only, but also from the Gentiles? + +As he says also in Hosea, +

+I will call themmy people,’ which were not my people; + +and her ‘beloved,’ who was not beloved.”9:25 +Hosea 2:23 + + +It will be that in the place where it was said to them, ‘You are not my people,’ + +there they will be calledchildren of the living God.’”9:26 +Hosea 1:10 + + + +

Isaiah cries concerning Israel, +

+If the number of the children of Israel are as the sand of the sea, + +it is the remnant who will be saved; + + +for he will finish the work and cut it short in righteousness, + +because the Lord will make a short work upon the earth.”9:28 +Isaiah 10:22-23 + + +

As Isaiah has said before, +

+Unless the Lord of Armies9:29 +Greek: Sabaoth (or Hebrew: Tze’va’ot) + had left us a seed, + +we would have become like Sodom, + +and would have been made like Gomorrah.”9:29 +Isaiah 1:9 + + +

What shall we say then? That the Gentiles, who didn’t follow after righteousness, attained to righteousness, even the righteousness which is of faith; + +but Israel, following after a law of righteousness, didn’t arrive at the law of righteousness. + +Why? Because they didn’t seek it by faith, but as it were by works of the law. They stumbled over the stumbling stone, + +even as it is written, +

+Behold,9:33 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I lay in Zion a stumbling stone and a rock of offense; + +and no one who believes in him will be disappointed.”9:33 +Isaiah 8:14; 28:16 + + + + +

Brothers, my heart’s desire and my prayer to God is for Israel, that they may be saved. + +For I testify about them that they have a zeal for God, but not according to knowledge. + +For being ignorant of God’s righteousness, and seeking to establish their own righteousness, they didn’t subject themselves to the righteousness of God. + +For Christ is the fulfillment10:4 +or, completion, or end of the law for righteousness to everyone who believes. + +

+

For Moses writes about the righteousness of the law, “The one who does them will live by them.”10:5 +Leviticus 18:5 + +But the righteousness which is of faith says this, “Don’t say in your heart, ‘Who will ascend into heaven?’10:6 +Deuteronomy 30:12 (that is, to bring Christ down); + +or, ‘Who will descend into the abyss?’10:7 +Deuteronomy 30:13 (that is, to bring Christ up from the dead.)” + +But what does it say? “The word is near you, in your mouth and in your heart;”10:8 +Deuteronomy 30:14 that is, the word of faith which we preach: + +that if you will confess with your mouth that Jesus is Lord and believe in your heart that God raised him from the dead, you will be saved. + +For with the heart one believes resulting in righteousness; and with the mouth confession is made resulting in salvation. + +For the Scripture says, “Whoever believes in him will not be disappointed.”10:11 +Isaiah 28:16 + +

+

For there is no distinction between Jew and Greek; for the same Lord is Lord of all, and is rich to all who call on him. + +For, “Whoever will call on the name of the Lord will be saved.”10:13 +Joel 2:32 + +How then will they call on him in whom they have not believed? How will they believe in him whom they have not heard? How will they hear without a preacher? + +And how will they preach unless they are sent? As it is written: +

+How beautiful are the feet of those who preach the Good News of peace, + +who bring glad tidings of good things!”10:15 +Isaiah 52:7 + + +

But they didn’t all listen to the glad news. For Isaiah says, “Lord, who has believed our report?”10:16 +Isaiah 53:1 + +So faith comes by hearing, and hearing by the word of God. + +But I say, didn’t they hear? Yes, most certainly, +

+Their sound went out into all the earth, + +their words to the ends of the world.”10:18 +Psalms 19:4 + + +

But I ask, didn’t Israel know? First Moses says, +

+I will provoke you to jealousy with that which is no nation. + +I will make you angry with a nation void of understanding.”10:19 +Deuteronomy 32:21 + + +

Isaiah is very bold and says, +

+I was found by those who didn’t seek me. + +I was revealed to those who didn’t ask for me.”10:20 +Isaiah 65:1 + + +

But about Israel he says, “All day long I stretched out my hands to a disobedient and contrary people.”10:21 +Isaiah 65:2 + +

+ + +

I ask then, did God reject his people? May it never be! For I also am an Israelite, a descendant of Abraham, of the tribe of Benjamin. + +God didn’t reject his people, whom he foreknew. Or don’t you know what the Scripture says about Elijah? How he pleads with God against Israel: + +Lord, they have killed your prophets. They have broken down your altars. I am left alone, and they seek my life.”11:3 +1 Kings 19:10,14 + +But how does God answer him? “I have reserved for myself seven thousand men who have not bowed the knee to Baal.”11:4 +1 Kings 19:18 + +Even so too at this present time also there is a remnant according to the election of grace. + +And if by grace, then it is no longer of works; otherwise grace is no longer grace. But if it is of works, it is no longer grace; otherwise work is no longer work. + +

+

What then? That which Israel seeks for, that he didn’t obtain, but the chosen ones obtained it, and the rest were hardened. + +According as it is written, “God gave them a spirit of stupor, eyes that they should not see, and ears that they should not hear, to this very day.”11:8 +Deuteronomy 29:4; Isaiah 29:10 + +

+

David says, +

+Let their table be made a snare, a trap, + +a stumbling block, and a retribution to them. + + +Let their eyes be darkened, that they may not see. + +Always keep their backs bent.”11:10 +Psalms 69:22,23 + + +

I ask then, did they stumble that they might fall? May it never be! But by their fall salvation has come to the Gentiles, to provoke them to jealousy. + +Now if their fall is the riches of the world, and their loss the riches of the Gentiles, how much more their fullness! + +

+

For I speak to you who are Gentiles. Since then as I am an apostle to Gentiles, I glorify my ministry, + +if by any means I may provoke to jealousy those who are my flesh, and may save some of them. + +For if the rejection of them is the reconciling of the world, what would their acceptance be, but life from the dead? + +

+

If the first fruit is holy, so is the lump. If the root is holy, so are the branches. + +But if some of the branches were broken off, and you, being a wild olive, were grafted in among them and became partaker with them of the root and of the richness of the olive tree, + +don’t boast over the branches. But if you boast, remember that it is not you who support the root, but the root supports you. + +You will say then, “Branches were broken off, that I might be grafted in.” + +True; by their unbelief they were broken off, and you stand by your faith. Don’t be conceited, but fear; + +for if God didn’t spare the natural branches, neither will he spare you. + +See then the goodness and severity of God. Toward those who fell, severity; but toward you, goodness, if you continue in his goodness; otherwise you also will be cut off. + +They also, if they don’t continue in their unbelief, will be grafted in, for God is able to graft them in again. + +For if you were cut out of that which is by nature a wild olive tree, and were grafted contrary to nature into a good olive tree, how much more will these, which are the natural branches, be grafted into their own olive tree? + +

+

For I don’t desire you to be ignorant, brothers,11:25 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” of this mystery, so that you won’t be wise in your own conceits, that a partial hardening has happened to Israel, until the fullness of the Gentiles has come in, + +and so all Israel will be saved. Even as it is written, +

+There will come out of Zion the Deliverer, + +and he will turn away ungodliness from Jacob. + + +This is my covenant with them, + +when I will take away their sins.”11:27 +Isaiah 59:20-21; 27:9; Jeremiah 31:33-34 + + +

Concerning the Good News, they are enemies for your sake. But concerning the election, they are beloved for the fatherssake. + +For the gifts and the calling of God are irrevocable. + +For as you in time past were disobedient to God, but now have obtained mercy by their disobedience, + +even so these also have now been disobedient, that by the mercy shown to you they may also obtain mercy. + +For God has bound all to disobedience, that he might have mercy on all. + +

+

Oh the depth of the riches both of the wisdom and the knowledge of God! How unsearchable are his judgments, and his ways past tracing out! + +

+For who has known the mind of the Lord? + +Or who has been his counselor?”11:34 +Isaiah 40:13 + + +Or who has first given to him, + +and it will be repaid to him again?”11:35 +Job 41:11 + + +

For of him and through him and to him are all things. To him be the glory for ever! Amen. + +

+ + +

Therefore I urge you, brothers, by the mercies of God, to present your bodies a living sacrifice, holy, acceptable to God, which is your spiritual service. + +Don’t be conformed to this world, but be transformed by the renewing of your mind, so that you may prove what is the good, well-pleasing, and perfect will of God. + +

+

For I say through the grace that was given me, to everyone who is among you, not to think of yourself more highly than you ought to think; but to think reasonably, as God has apportioned to each person a measure of faith. + +For even as we have many members in one body, and all the members don’t have the same function, + +so we, who are many, are one body in Christ, and individually members of one another, + +having gifts differing according to the grace that was given to us: if prophecy, lets prophesy according to the proportion of our faith; + +or service, let’s give ourselves to service; or he who teaches, to his teaching; + +or he who exhorts, to his exhorting; he who gives, let him do it with generosity; he who rules, with diligence; he who shows mercy, with cheerfulness. + +

+

Let love be without hypocrisy. Abhor that which is evil. Cling to that which is good. + +In love of the brothers be tenderly affectionate to one another; in honor prefer one another, + +not lagging in diligence, fervent in spirit, serving the Lord, + +rejoicing in hope, enduring in troubles, continuing steadfastly in prayer, + +contributing to the needs of the saints, and given to hospitality. + +

+

Bless those who persecute you; bless, and don’t curse. + +Rejoice with those who rejoice. Weep with those who weep. + +Be of the same mind one toward another. Don’t set your mind on high things, but associate with the humble. Don’t be wise in your own conceits. + +Repay no one evil for evil. Respect what is honorable in the sight of all men. + +If it is possible, as much as it is up to you, be at peace with all men. + +Don’t seek revenge yourselves, beloved, but give place to Gods wrath. For it is written, “Vengeance belongs to me; I will repay, says the Lord.”12:19 +Deuteronomy 32:35 + +Therefore +

+If your enemy is hungry, feed him. + +If he is thirsty, give him a drink; + +for in doing so, you will heap coals of fire on his head.”12:20 +Proverbs 25:21-22 + + +

Don’t be overcome by evil, but overcome evil with good. + +

+ + +

Let every soul be in subjection to the higher authorities, for there is no authority except from God, and those who exist are ordained by God. + +Therefore he who resists the authority withstands the ordinance of God; and those who withstand will receive to themselves judgment. + +For rulers are not a terror to the good work, but to the evil. Do you desire to have no fear of the authority? Do that which is good, and you will have praise from the authority, + +for he is a servant of God to you for good. But if you do that which is evil, be afraid, for he doesn’t bear the sword in vain; for he is a servant of God, an avenger for wrath to him who does evil. + +Therefore you need to be in subjection, not only because of the wrath, but also for consciencesake. + +For this reason you also pay taxes, for they are servants of God’s service, continually doing this very thing. + +Therefore give everyone what you owe: if you owe taxes, pay taxes; if customs, then customs; if respect, then respect; if honor, then honor. + +

+

Owe no one anything, except to love one another; for he who loves his neighbor has fulfilled the law. + +For the commandments, “You shall not commit adultery,” “You shall not murder,” “You shall not steal,”13:9 +TR adds “You shall not give false testimony,”You shall not covet,”13:9 +Exodus 20:13-15,17; Deuteronomy 5:17-19,21 and whatever other commandments there are, are all summed up in this saying, namely, “You shall love your neighbor as yourself.”13:9 +Leviticus 19:18 + +Love doesn’t harm a neighbor. Love therefore is the fulfillment of the law. + +

+

Do this, knowing the time, that it is already time for you to awaken out of sleep, for salvation is now nearer to us than when we first believed. + +The night is far gone, and the day is near. Let’s therefore throw off the deeds of darkness, and let’s put on the armor of light. + +Let’s walk properly, as in the day; not in reveling and drunkenness, not in sexual promiscuity and lustful acts, and not in strife and jealousy. + +But put on the Lord Jesus Christ, and make no provision for the flesh, for its lusts. + +

+ + +

Now accept one who is weak in faith, but not for disputes over opinions. + +One man has faith to eat all things, but he who is weak eats only vegetables. + +Don’t let him who eats despise him who doesn’t eat. Don’t let him who doesn’t eat judge him who eats, for God has accepted him. + +Who are you who judge anothers servant? To his own lord he stands or falls. Yes, he will be made to stand, for God has power to make him stand. + +

+

One man esteems one day as more important. Another esteems every day alike. Let each man be fully assured in his own mind. + +He who observes the day, observes it to the Lord; and he who does not observe the day, to the Lord he does not observe it. He who eats, eats to the Lord, for he gives God thanks. He who doesn’t eat, to the Lord he doesn’t eat, and gives God thanks. + +For none of us lives to himself, and none dies to himself. + +For if we live, we live to the Lord. Or if we die, we die to the Lord. If therefore we live or die, we are the Lords. + +For to this end Christ died, rose, and lived again, that he might be Lord of both the dead and the living. + +

+

But you, why do you judge your brother? Or you again, why do you despise your brother? For we will all stand before the judgment seat of Christ. + +For it is written, +

+“‘As I live,’ says the Lord, ‘to me every knee will bow. + +Every tongue will confess to God.’”14:11 +Isaiah 45:23 + + +

So then each one of us will give account of himself to God. + +

+

Therefore let’s not judge one another any more, but judge this rather, that no man put a stumbling block in his brother’s way, or an occasion for falling. + +I know and am persuaded in the Lord Jesus that nothing is unclean of itself; except that to him who considers anything to be unclean, to him it is unclean. + +Yet if because of food your brother is grieved, you walk no longer in love. Don’t destroy with your food him for whom Christ died. + +Then don’t let your good be slandered, + +for God’s Kingdom is not eating and drinking, but righteousness, peace, and joy in the Holy Spirit. + +For he who serves Christ in these things is acceptable to God and approved by men. + +So then, let’s follow after things which make for peace, and things by which we may build one another up. + +Don’t overthrow God’s work for food’s sake. All things indeed are clean, however it is evil for that man who creates a stumbling block by eating. + +It is good to not eat meat, drink wine, nor do anything by which your brother stumbles, is offended, or is made weak. + +

+

Do you have faith? Have it to yourself before God. Happy is he who doesn’t judge himself in that which he approves. + +But he who doubts is condemned if he eats, because it isn’t of faith; and whatever is not of faith is sin. + +

+

Now to him who is able to establish you according to my Good News and the preaching of Jesus Christ, according to the revelation of the mystery which has been kept secret through long ages, + +but now is revealed, and by the Scriptures of the prophets, according to the commandment of the eternal God, is made known for obedience of faith to all the nations; + +to the only wise God, through Jesus Christ, to whom be the glory forever! Amen.14:26 +TR places verses 24-26 after Romans 16:24 as verses 25-27. + + +

+ + +

Now we who are strong ought to bear the weaknesses of the weak, and not to please ourselves. + +Let each one of us please his neighbor for that which is good, to be building him up. + +For even Christ didn’t please himself. But, as it is written, “The reproaches of those who reproached you fell on me.”15:3 +Psalms 69:9 + +For whatever things were written before were written for our learning, that through perseverance and through encouragement of the Scriptures we might have hope. + +Now the God of perseverance and of encouragement grant you to be of the same mind with one another according to Christ Jesus, + +that with one accord you may with one mouth glorify the God and Father of our Lord Jesus Christ. + +

+

Therefore accept one another, even as Christ also accepted you,15:7 +TR reads “us” instead of “you” to the glory of God. + +Now I say that Christ has been made a servant of the circumcision for the truth of God, that he might confirm the promises given to the fathers, + +and that the Gentiles might glorify God for his mercy. As it is written, +

+Therefore I will give praise to you among the Gentiles + +and sing to your name.”15:9 +2 Samuel 22:50; Psalms 18:49 + + +

Again he says, +

+Rejoice, you Gentiles, with his people.”15:10 +Deuteronomy 32:43 + + +

Again, +

+Praise the Lord, all you Gentiles! + +Let all the peoples praise him.”15:11 +Psalms 117:1 + + +

Again, Isaiah says, +

+There will be the root of Jesse, + +he who arises to rule over the Gentiles; + +in him the Gentiles will hope.”15:12 +Isaiah 11:10 + + +

Now may the God of hope fill you with all joy and peace in believing, that you may abound in hope in the power of the Holy Spirit. + +

+

I myself am also persuaded about you, my brothers,15:14 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” that you yourselves are full of goodness, filled with all knowledge, able also to admonish others. + +But I write the more boldly to you in part as reminding you, because of the grace that was given to me by God, + +that I should be a servant of Christ Jesus to the Gentiles, serving as a priest of the Good News of God, that the offering up of the Gentiles might be made acceptable, sanctified by the Holy Spirit. + +I have therefore my boasting in Christ Jesus in things pertaining to God. + +For I will not dare to speak of any things except those which Christ worked through me for the obedience of the Gentiles, by word and deed, + +in the power of signs and wonders, in the power of God’s Spirit; so that from Jerusalem and around as far as to Illyricum, I have fully preached the Good News of Christ; + +yes, making it my aim to preach the Good News, not where Christ was already named, that I might not build on another’s foundation. + +But, as it is written, +

+They will see, to whom no news of him came. + +They who haven’t heard will understand.”15:21 +Isaiah 52:15 + + +

Therefore also I was hindered these many times from coming to you, + +but now, no longer having any place in these regions, and having these many years a longing to come to you, + +whenever I travel to Spain, I will come to you. For I hope to see you on my journey, and to be helped on my way there by you, if first I may enjoy your company for a while. + +But now, I say, I am going to Jerusalem, serving the saints. + +For it has been the good pleasure of Macedonia and Achaia to make a certain contribution for the poor among the saints who are at Jerusalem. + +Yes, it has been their good pleasure, and they are their debtors. For if the Gentiles have been made partakers of their spiritual things, they owe it to them also to serve them in material things. + +When therefore I have accomplished this, and have sealed to them this fruit, I will go on by way of you to Spain. + +I know that when I come to you, I will come in the fullness of the blessing of the Good News of Christ. + +

+

Now I beg you, brothers, by our Lord Jesus Christ and by the love of the Spirit, that you strive together with me in your prayers to God for me, + +that I may be delivered from those who are disobedient in Judea, and that my service which I have for Jerusalem may be acceptable to the saints, + +that I may come to you in joy through the will of God, and together with you, find rest. + +Now the God of peace be with you all. Amen. + +

+ + +

I commend to you Phoebe, our sister, who is a servant16:1 +or, deacon + of the assembly that is at Cenchreae, + +that you receive her in the Lord in a way worthy of the saints, and that you assist her in whatever matter she may need from you, for she herself also has been a helper of many, and of my own self. + +

+

Greet Prisca and Aquila, my fellow workers in Christ Jesus, + +who risked their own necks for my life, to whom not only I give thanks, but also all the assemblies of the Gentiles. + +Greet the assembly that is in their house. Greet Epaenetus, my beloved, who is the first fruits of Achaia to Christ. + +Greet Mary, who labored much for us. + +Greet Andronicus and Junia, my relatives and my fellow prisoners, who are notable among the apostles, who were also in Christ before me. + +Greet Amplias, my beloved in the Lord. + +Greet Urbanus, our fellow worker in Christ, and Stachys, my beloved. + +Greet Apelles, the approved in Christ. Greet those who are of the household of Aristobulus. + +Greet Herodion, my kinsman. Greet them of the household of Narcissus, who are in the Lord. + +Greet Tryphaena and Tryphosa, who labor in the Lord. Greet Persis, the beloved, who labored much in the Lord. + +Greet Rufus, the chosen in the Lord, and his mother and mine. + +Greet Asyncritus, Phlegon, Hermes, Patrobas, Hermas, and the brothers16:14 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” who are with them. + +Greet Philologus and Julia, Nereus and his sister, and Olympas, and all the saints who are with them. + +Greet one another with a holy kiss. The assemblies of Christ greet you. + +

+

Now I beg you, brothers, look out for those who are causing the divisions and occasions of stumbling, contrary to the doctrine which you learned, and turn away from them. + +For those who are such don’t serve our Lord Jesus Christ, but their own belly; and by their smooth and flattering speech they deceive the hearts of the innocent. + +For your obedience has become known to all. I rejoice therefore over you. But I desire to have you wise in that which is good, but innocent in that which is evil. + +And the God of peace will quickly crush Satan under your feet. +

+

The grace of our Lord Jesus Christ be with you. + +

+

Timothy, my fellow worker, greets you, as do Lucius, Jason, and Sosipater, my relatives. + +I, Tertius, who write the letter, greet you in the Lord. + +Gaius, my host and host of the whole assembly, greets you. Erastus, the treasurer of the city, greets you, as does Quartus, the brother. + +The grace of our Lord Jesus Christ be with you all! Amen. + +16:25 +TR places Romans 14:24-26 at the end of Romans instead of at the end of chapter 14, and numbers these verses 16:25-27. + +

+
+46-1CO-web.sfm World English Bible (WEB) +1 Corinthians +Paul’s First Letter to the Corinthians +1 Corinthians +1Co +

Paul’s First Letter to the Corinthians +

+ + +

Paul, called to be an apostle of Jesus Christ1:1 +“Christ” means “Anointed One”. through the will of God, and our brother Sosthenes, + +to the assembly of God which is at Corinththose who are sanctified in Christ Jesus, called saints, with all who call on the name of our Lord Jesus Christ in every place, both theirs and ours: + +Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

I always thank my God concerning you for the grace of God which was given you in Christ Jesus, + +that in everything you were enriched in him, in all speech and all knowledge— + +even as the testimony of Christ was confirmed in you— + +so that you come behind in no gift, waiting for the revelation of our Lord Jesus Christ, + +who will also confirm you until the end, blameless in the day of our Lord Jesus Christ. + +God is faithful, through whom you were called into the fellowship of his Son, Jesus Christ our Lord. + +

+

Now I beg you, brothers,1:10 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” through the name of our Lord, Jesus Christ, that you all speak the same thing, and that there be no divisions among you, but that you be perfected together in the same mind and in the same judgment. + +For it has been reported to me concerning you, my brothers, by those who are from Chloe’s household, that there are contentions among you. + +Now I mean this, that each one of you says, “I follow Paul,” “I follow Apollos,” “I follow Cephas,” and, “I follow Christ.” + +Is Christ divided? Was Paul crucified for you? Or were you baptized into the name of Paul? + +I thank God that I baptized none of you except Crispus and Gaius, + +so that no one should say that I had baptized you into my own name. + +(I also baptized the household of Stephanas; besides them, I don’t know whether I baptized any other.) + +For Christ sent me not to baptize, but to preach the Good Newsnot in wisdom of words, so that the cross of Christ wouldn’t be made void. + +For the word of the cross is foolishness to those who are dying, but to us who are being saved it is the power of God. + +For it is written, +

+I will destroy the wisdom of the wise. + +I will bring the discernment of the discerning to nothing.”1:19 +Isaiah 29:14 + + +

Where is the wise? Where is the scribe? Where is the debater of this age? Hasn’t God made foolish the wisdom of this world? + +For seeing that in the wisdom of God, the world through its wisdom didn’t know God, it was God’s good pleasure through the foolishness of the preaching to save those who believe. + +For Jews ask for signs, Greeks seek after wisdom, + +but we preach Christ crucified, a stumbling block to Jews and foolishness to Greeks, + +but to those who are called, both Jews and Greeks, Christ is the power of God and the wisdom of God; + +because the foolishness of God is wiser than men, and the weakness of God is stronger than men. + +

+

For you see your calling, brothers, that not many are wise according to the flesh, not many mighty, and not many noble; + +but God chose the foolish things of the world that he might put to shame those who are wise. God chose the weak things of the world that he might put to shame the things that are strong. + +God chose the lowly things of the world, and the things that are despised, and the things that don’t exist, that he might bring to nothing the things that exist, + +that no flesh should boast before God. + +Because of him, you are in Christ Jesus, who was made to us wisdom from God, and righteousness and sanctification, and redemption, + +that, as it is written, “He who boasts, let him boast in the Lord.”1:31 +Jeremiah 9:24 + +

+ + +

When I came to you, brothers, I didn’t come with excellence of speech or of wisdom, proclaiming to you the testimony of God. + +For I determined not to know anything among you except Jesus Christ and him crucified. + +I was with you in weakness, in fear, and in much trembling. + +My speech and my preaching were not in persuasive words of human wisdom, but in demonstration of the Spirit and of power, + +that your faith wouldn’t stand in the wisdom of men, but in the power of God. + +

+

We speak wisdom, however, among those who are full grown, yet a wisdom not of this world nor of the rulers of this world who are coming to nothing. + +But we speak God’s wisdom in a mystery, the wisdom that has been hidden, which God foreordained before the worlds for our glory, + +which none of the rulers of this world has known. For had they known it, they wouldn’t have crucified the Lord of glory. + +But as it is written, +

+Things which an eye didn’t see, and an ear didn’t hear, + +which didn’t enter into the heart of man, + +these God has prepared for those who love him.”2:9 +Isaiah 64:4 + + +

But to us, God revealed them through the Spirit. For the Spirit searches all things, yes, the deep things of God. + +For who among men knows the things of a man except the spirit of the man which is in him? Even so, no one knows the things of God except God’s Spirit. + +But we received not the spirit of the world, but the Spirit which is from God, that we might know the things that were freely given to us by God. + +We also speak these things, not in words which man’s wisdom teaches but which the Holy Spirit teaches, comparing spiritual things with spiritual things. + +Now the natural man doesn’t receive the things of God’s Spirit, for they are foolishness to him; and he cant know them, because they are spiritually discerned. + +But he who is spiritual discerns all things, and he himself is to be judged by no one. + +For who has known the mind of the Lord that he should instruct him?”2:16 +Isaiah 40:13 But we have Christs mind. + +

+ + +

Brothers, I couldn’t speak to you as to spiritual, but as to fleshly, as to babies in Christ. + +I fed you with milk, not with solid food, for you weren’t yet ready. Indeed, you aren’t ready even now, + +for you are still fleshly. For insofar as there is jealousy, strife, and factions among you, aren’t you fleshly, and don’t you walk in the ways of men? + +For when one says, “I follow Paul,” and another, “I follow Apollos,” aren’t you fleshly? + +

+

Who then is Apollos, and who is Paul, but servants through whom you believed, and each as the Lord gave to him? + +I planted. Apollos watered. But God gave the increase. + +So then neither he who plants is anything, nor he who waters, but God who gives the increase. + +Now he who plants and he who waters are the same, but each will receive his own reward according to his own labor. + +For we are God’s fellow workers. You are God’s farming, God’s building. + +

+

According to the grace of God which was given to me, as a wise master builder I laid a foundation, and another builds on it. But let each man be careful how he builds on it. + +For no one can lay any other foundation than that which has been laid, which is Jesus Christ. + +But if anyone builds on the foundation with gold, silver, costly stones, wood, hay, or straw, + +each man’s work will be revealed. For the Day will declare it, because it is revealed in fire; and the fire itself will test what sort of work each man’s work is. + +If any man’s work remains which he built on it, he will receive a reward. + +If any man’s work is burned, he will suffer loss, but he himself will be saved, but as through fire. + +

+

Don’t you know that you are God’s temple and that God’s Spirit lives in you? + +If anyone destroys God’s temple, God will destroy him; for God’s temple is holy, which you are. + +

+

Let no one deceive himself. If anyone thinks that he is wise among you in this world, let him become a fool that he may become wise. + +For the wisdom of this world is foolishness with God. For it is written, “He has taken the wise in their craftiness.”3:19 +Job 5:13 + +And again, “The Lord knows the reasoning of the wise, that it is worthless.”3:20 +Psalms 94:11 + +Therefore let no one boast in men. For all things are yours, + +whether Paul, or Apollos, or Cephas, or the world, or life, or death, or things present, or things to come. All are yours, + +and you are Christ’s, and Christ is God’s. + +

+ + +

So let a man think of us as Christ’s servants and stewards of God’s mysteries. + +Here, moreover, it is required of stewards that they be found faithful. + +But with me it is a very small thing that I should be judged by you, or by a human court. Yes, I don’t even judge my own self. + +For I know nothing against myself. Yet I am not justified by this, but he who judges me is the Lord. + +Therefore judge nothing before the time, until the Lord comes, who will both bring to light the hidden things of darkness and reveal the counsels of the hearts. Then each man will get his praise from God. + +

+

Now these things, brothers, I have in a figure transferred to myself and Apollos for your sakes, that in us you might learn not to think beyond the things which are written, that none of you be puffed up against one another. + +For who makes you different? And what do you have that you didn’t receive? But if you did receive it, why do you boast as if you had not received it? + +

+

You are already filled. You have already become rich. You have come to reign without us. Yes, and I wish that you did reign, that we also might reign with you! + +For I think that God has displayed us, the apostles, last of all, like men sentenced to death. For we are made a spectacle to the world, both to angels and men. + +We are fools for Christ’s sake, but you are wise in Christ. We are weak, but you are strong. You have honor, but we have dishonor. + +Even to this present hour we hunger, thirst, are naked, are beaten, and have no certain dwelling place. + +We toil, working with our own hands. When people curse us, we bless. Being persecuted, we endure. + +Being defamed, we entreat. We are made as the filth of the world, the dirt wiped off by all, even until now. + +

+

I don’t write these things to shame you, but to admonish you as my beloved children. + +For though you have ten thousand tutors in Christ, you don’t have many fathers. For in Christ Jesus, I became your father through the Good News. + +I beg you therefore, be imitators of me. + +Because of this I have sent Timothy to you, who is my beloved and faithful child in the Lord, who will remind you of my ways which are in Christ, even as I teach everywhere in every assembly. + +Now some are puffed up, as though I were not coming to you. + +But I will come to you shortly, if the Lord is willing. And I will know, not the word of those who are puffed up, but the power. + +For God’s Kingdom is not in word, but in power. + +What do you want? Shall I come to you with a rod, or in love and a spirit of gentleness? + +

+ + +

It is actually reported that there is sexual immorality among you, and such sexual immorality as is not even named among the Gentiles, that one has his fathers wife. + +You are arrogant, and didn’t mourn instead, that he who had done this deed might be removed from among you. + +For I most certainly, as being absent in body but present in spirit, have already, as though I were present, judged him who has done this thing. + +In the name of our Lord Jesus Christ, when you are gathered together with my spirit with the power of our Lord Jesus Christ, + +you are to deliver such a one to Satan for the destruction of the flesh, that the spirit may be saved in the day of the Lord Jesus. + +

+

Your boasting is not good. Don’t you know that a little yeast leavens the whole lump? + +Purge out the old yeast, that you may be a new lump, even as you are unleavened. For indeed Christ, our Passover, has been sacrificed in our place. + +Therefore let’s keep the feast, not with old yeast, neither with the yeast of malice and wickedness, but with the unleavened bread of sincerity and truth. + +

+

I wrote to you in my letter to have no company with sexual sinners; + +yet not at all meaning with the sexual sinners of this world, or with the covetous and extortionists, or with idolaters, for then you would have to leave the world. + +But as it is, I wrote to you not to associate with anyone who is called a brother who is a sexual sinner, or covetous, or an idolater, or a slanderer, or a drunkard, or an extortionist. Don’t even eat with such a person. + +For what do I have to do with also judging those who are outside? Don’t you judge those who are within? + +But those who are outside, God judges. “Put away the wicked man from among yourselves.”5:13 +Deuteronomy 17:7; 19:19; 21:21; 22:21; 24:7 + +

+ + +

Dare any of you, having a matter against his neighbor, go to law before the unrighteous, and not before the saints? + +Don’t you know that the saints will judge the world? And if the world is judged by you, are you unworthy to judge the smallest matters? + +Don’t you know that we will judge angels? How much more, things that pertain to this life? + +If then you have to judge things pertaining to this life, do you set them to judge who are of no account in the assembly? + +I say this to move you to shame. Isn’t there even one wise man among you who would be able to decide between his brothers? + +But brother goes to law with brother, and that before unbelievers! + +Therefore it is already altogether a defect in you that you have lawsuits one with another. Why not rather be wronged? Why not rather be defrauded? + +No, but you yourselves do wrong and defraud, and that against your brothers. + +

+

Or don’t you know that the unrighteous will not inherit God’s Kingdom? Don’t be deceived. Neither the sexually immoral, nor idolaters, nor adulterers, nor male prostitutes, nor homosexuals, + +nor thieves, nor covetous, nor drunkards, nor slanderers, nor extortionists, will inherit God’s Kingdom. + +Some of you were such, but you were washed. You were sanctified. You were justified in the name of the Lord Jesus, and in the Spirit of our God. + +

+

All things are lawful for me,” but not all things are expedient. “All things are lawful for me,” but I will not be brought under the power of anything. + +Foods for the belly, and the belly for foods,” but God will bring to nothing both it and them. But the body is not for sexual immorality, but for the Lord, and the Lord for the body. + +Now God raised up the Lord, and will also raise us up by his power. + +Don’t you know that your bodies are members of Christ? Shall I then take the members of Christ and make them members of a prostitute? May it never be! + +Or don’t you know that he who is joined to a prostitute is one body? For, “The two”, he says, “will become one flesh.”6:16 +Genesis 2:24 + +But he who is joined to the Lord is one spirit. + +Flee sexual immorality! “Every sin that a man does is outside the body,” but he who commits sexual immorality sins against his own body. + +Or don’t you know that your body is a temple of the Holy Spirit who is in you, whom you have from God? You are not your own, + +for you were bought with a price. Therefore glorify God in your body and in your spirit, which are God’s. + +

+ + +

Now concerning the things about which you wrote to me: it is good for a man not to touch a woman. + +But, because of sexual immoralities, let each man have his own wife, and let each woman have her own husband. + +Let the husband give his wife the affection owed her,7:3 +NU and TR have “what is owed her” instead of “the affection owed her”. and likewise also the wife her husband. + +The wife doesn’t have authority over her own body, but the husband does. Likewise also the husband doesn’t have authority over his own body, but the wife does. + +Don’t deprive one another, unless it is by consent for a season, that you may give yourselves to fasting and prayer, and may be together again, that Satan doesn’t tempt you because of your lack of self-control. + +

+

But this I say by way of concession, not of commandment. + +Yet I wish that all men were like me. However, each man has his own gift from God, one of this kind, and another of that kind. + +But I say to the unmarried and to widows, it is good for them if they remain even as I am. + +But if they don’t have self-control, let them marry. For it’s better to marry than to burn with passion. + +But to the married I commandnot I, but the Lordthat the wife not leave her husband + +(but if she departs, let her remain unmarried, or else be reconciled to her husband), and that the husband not leave his wife. + +

+

But to the rest Inot the Lordsay, if any brother has an unbelieving wife, and she is content to live with him, let him not leave her. + +The woman who has an unbelieving husband, and he is content to live with her, let her not leave her husband. + +For the unbelieving husband is sanctified in the wife, and the unbelieving wife is sanctified in the husband. Otherwise your children would be unclean, but now they are holy. + +Yet if the unbeliever departs, let there be separation. The brother or the sister is not under bondage in such cases, but God has called us in peace. + +For how do you know, wife, whether you will save your husband? Or how do you know, husband, whether you will save your wife? + +

+

Only, as the Lord has distributed to each man, as God has called each, so let him walk. So I command in all the assemblies. + +

+

Was anyone called having been circumcised? Let him not become uncircumcised. Has anyone been called in uncircumcision? Let him not be circumcised. + +Circumcision is nothing, and uncircumcision is nothing, but what matters is keeping God’s commandments. + +Let each man stay in that calling in which he was called. + +Were you called being a bondservant? Don’t let that bother you, but if you get an opportunity to become free, use it. + +For he who was called in the Lord being a bondservant is the Lords free man. Likewise he who was called being free is Christs bondservant. + +You were bought with a price. Don’t become bondservants of men. + +Brothers, let each man, in whatever condition he was called, stay in that condition with God. + +

+

Now concerning virgins, I have no commandment from the Lord, but I give my judgment as one who has obtained mercy from the Lord to be trustworthy. + +Therefore I think that because of the distress that is on us, it’s good for a man to remain as he is. + +Are you bound to a wife? Don’t seek to be freed. Are you free from a wife? Don’t seek a wife. + +But if you marry, you have not sinned. If a virgin marries, she has not sinned. Yet such will have oppression in the flesh, and I want to spare you. + +But I say this, brothers: the time is short. From now on, both those who have wives may be as though they had none; + +and those who weep, as though they didn’t weep; and those who rejoice, as though they didn’t rejoice; and those who buy, as though they didn’t possess; + +and those who use the world, as not using it to the fullest. For the mode of this world passes away. + +

+

But I desire to have you to be free from cares. He who is unmarried is concerned for the things of the Lord, how he may please the Lord; + +but he who is married is concerned about the things of the world, how he may please his wife. + +There is also a difference between a wife and a virgin. The unmarried woman cares about the things of the Lord, that she may be holy both in body and in spirit. But she who is married cares about the things of the worldhow she may please her husband. + +This I say for your own benefit, not that I may ensnare you, but for that which is appropriate, and that you may attend to the Lord without distraction. + +

+

But if any man thinks that he is behaving inappropriately toward his virgin, if she is past the flower of her age, and if need so requires, let him do what he desires. He doesn’t sin. Let them marry. + +But he who stands steadfast in his heart, having no urgency, but has power over his own will, and has determined in his own heart to keep his own virgin, does well. + +So then both he who gives his own virgin in marriage does well, and he who doesn’t give her in marriage does better. + +

+

A wife is bound by law for as long as her husband lives; but if the husband is dead, she is free to be married to whomever she desires, only in the Lord. + +But she is happier if she stays as she is, in my judgment, and I think that I also have Gods Spirit. + +

+ + +

Now concerning things sacrificed to idols: We know that we all have knowledge. Knowledge puffs up, but love builds up. + +But if anyone thinks that he knows anything, he doesn’t yet know as he ought to know. + +But anyone who loves God is known by him. + +

+

Therefore concerning the eating of things sacrificed to idols, we know that no idol is anything in the world, and that there is no other God but one. + +For though there are things that are calledgods”, whether in the heavens or on earthas there are manygodsand manylords”— + +yet to us there is one God, the Father, of whom are all things, and we for him; and one Lord, Jesus Christ, through whom are all things, and we live through him. + +

+

However, that knowledge isn’t in all men. But some, with consciousness of an idol until now, eat as of a thing sacrificed to an idol, and their conscience, being weak, is defiled. + +But food will not commend us to God. For neither, if we don’t eat are we the worse, nor if we eat are we the better. + +But be careful that by no means does this liberty of yours become a stumbling block to the weak. + +For if a man sees you who have knowledge sitting in an idols temple, won’t his conscience, if he is weak, be emboldened to eat things sacrificed to idols? + +And through your knowledge, he who is weak perishes, the brother for whose sake Christ died. + +Thus, sinning against the brothers, and wounding their conscience when it is weak, you sin against Christ. + +Therefore, if food causes my brother to stumble, I will eat no meat forever more, that I don’t cause my brother to stumble. + +

+ + +

Am I not free? Am I not an apostle? Haven’t I seen Jesus Christ, our Lord? Aren’t you my work in the Lord? + +If to others I am not an apostle, yet at least I am to you; for you are the seal of my apostleship in the Lord. + +

+

My defense to those who examine me is this: + +Have we no right to eat and to drink? + +Have we no right to take along a wife who is a believer, even as the rest of the apostles, and the brothers of the Lord, and Cephas? + +Or have only Barnabas and I no right to not work? + +What soldier ever serves at his own expense? Who plants a vineyard, and doesn’t eat of its fruit? Or who feeds a flock, and doesn’t drink from the flock’s milk? + +

+

Do I speak these things according to the ways of men? Or doesn’t the law also say the same thing? + +For it is written in the law of Moses, “You shall not muzzle an ox while it treads out the grain.”9:9 +Deuteronomy 25:4 Is it for the oxen that God cares, + +or does he say it assuredly for our sake? Yes, it was written for our sake, because he who plows ought to plow in hope, and he who threshes in hope should partake of his hope. + +If we sowed to you spiritual things, is it a great thing if we reap your fleshly things? + +If others partake of this right over you, don’t we yet more? +

+

Nevertheless we didn’t use this right, but we bear all things, that we may cause no hindrance to the Good News of Christ. + +Don’t you know that those who serve around sacred things eat from the things of the temple, and those who wait on the altar have their portion with the altar? + +Even so the Lord ordained that those who proclaim the Good News should live from the Good News. + +

+

But I have used none of these things, and I don’t write these things that it may be done so in my case; for I would rather die, than that anyone should make my boasting void. + +For if I preach the Good News, I have nothing to boast about, for necessity is laid on me; but woe is to me if I don’t preach the Good News. + +For if I do this of my own will, I have a reward. But if not of my own will, I have a stewardship entrusted to me. + +What then is my reward? That when I preach the Good News, I may present the Good News of Christ without charge, so as not to abuse my authority in the Good News. + +

+

For though I was free from all, I brought myself under bondage to all, that I might gain the more. + +To the Jews I became as a Jew, that I might gain Jews; to those who are under the law, as under the law,9:20 +NU adds: though I myself am not under the law that I might gain those who are under the law; + +to those who are without law, as without law (not being without law toward God, but under law toward Christ), that I might win those who are without law. + +To the weak I became as weak, that I might gain the weak. I have become all things to all men, that I may by all means save some. + +Now I do this for the sake of the Good News, that I may be a joint partaker of it. + +Don’t you know that those who run in a race all run, but one receives the prize? Run like that, so that you may win. + +Every man who strives in the games exercises self-control in all things. Now they do it to receive a corruptible crown, but we an incorruptible. + +I therefore run like that, not aimlessly. I fight like that, not beating the air, + +but I beat my body and bring it into submission, lest by any means, after I have preached to others, I myself should be disqualified. + +

+ + +

Now I would not have you ignorant, brothers, that our fathers were all under the cloud, and all passed through the sea; + +and were all baptized into Moses in the cloud and in the sea; + +and all ate the same spiritual food; + +and all drank the same spiritual drink. For they drank of a spiritual rock that followed them, and the rock was Christ. + +However with most of them, God was not well pleased, for they were overthrown in the wilderness. + +

+

Now these things were our examples, to the intent we should not lust after evil things as they also lusted. + +Don’t be idolaters, as some of them were. As it is written, “The people sat down to eat and drink, and rose up to play.”10:7 +Exodus 32:6 + +Let’s not commit sexual immorality, as some of them committed, and in one day twenty-three thousand fell. + +Lets not test Christ,10:9 +NU reads “the Lord” instead of “Christ”. as some of them tested, and perished by the serpents. + +Don’t grumble, as some of them also grumbled, and perished by the destroyer. + +Now all these things happened to them by way of example, and they were written for our admonition, on whom the ends of the ages have come. + +Therefore let him who thinks he stands be careful that he doesn’t fall. + +

+

No temptation has taken you except what is common to man. God is faithful, who will not allow you to be tempted above what you are able, but will with the temptation also make the way of escape, that you may be able to endure it. + +

+

Therefore, my beloved, flee from idolatry. + +I speak as to wise men. Judge what I say. + +The cup of blessing which we bless, isn’t it a sharing of the blood of Christ? The bread which we break, isn’t it a sharing of the body of Christ? + +Because there is one loaf of bread, we, who are many, are one body; for we all partake of the one loaf of bread. + +Consider Israel according to the flesh. Don’t those who eat the sacrifices participate in the altar? + +

+

What am I saying then? That a thing sacrificed to idols is anything, or that an idol is anything? + +But I say that the things which the Gentiles sacrifice, they sacrifice to demons and not to God, and I don’t desire that you would have fellowship with demons. + +You can’t both drink the cup of the Lord and the cup of demons. You can’t both partake of the table of the Lord and of the table of demons. + +Or do we provoke the Lord to jealousy? Are we stronger than he? + +

+

All things are lawful for me,” but not all things are profitable. “All things are lawful for me,” but not all things build up. + +Let no one seek his own, but each one his neighbor’s good. + +Whatever is sold in the butcher shop, eat, asking no question for the sake of conscience, + +forthe earth is the Lords, and its fullness.”10:26 +Psalms 24:1 + + +But if one of those who don’t believe invites you to a meal, and you are inclined to go, eat whatever is set before you, asking no questions for the sake of conscience. + +But if anyone says to you, “This was offered to idols,” don’t eat it for the sake of the one who told you, and for the sake of conscience. Forthe earth is the Lord’s, with all its fullness.” + +Conscience, I say, not your own, but the other’s conscience. For why is my liberty judged by another conscience? + +If I partake with thankfulness, why am I denounced for something I give thanks for? + +

+

Whether therefore you eat or drink, or whatever you do, do all to the glory of God. + +Give no occasion for stumbling, whether to Jews, to Greeks, or to the assembly of God; + +even as I also please all men in all things, not seeking my own profit, but the profit of the many, that they may be saved. + +

+ + +

Be imitators of me, even as I also am of Christ. + +

+

Now I praise you, brothers, that you remember me in all things, and hold firm the traditions, even as I delivered them to you. + +But I would have you know that the head11:3 +or, origin of every man is Christ, and the head11:3 +or, origin of the woman is man, and the head11:3 +or, origin of Christ is God. + +Every man praying or prophesying, having his head covered, dishonors his head. + +But every woman praying or prophesying with her head uncovered dishonors her head. For it is one and the same thing as if she were shaved. + +For if a woman is not covered, let her hair also be cut off. But if it is shameful for a woman to have her hair cut off or be shaved, let her be covered. + +For a man indeed ought not to have his head covered, because he is the image and glory of God, but the woman is the glory of the man. + +For man is not from woman, but woman from man; + +for man wasn’t created for the woman, but woman for the man. + +For this cause the woman ought to have authority over her own head, because of the angels. + +

+

Nevertheless, neither is the woman independent of the man, nor the man independent of the woman, in the Lord. + +For as woman came from man, so a man also comes through a woman; but all things are from God. + +Judge for yourselves. Is it appropriate that a woman pray to God unveiled? + +Doesn’t even nature itself teach you that if a man has long hair, it is a dishonor to him? + +But if a woman has long hair, it is a glory to her, for her hair is given to her for a covering. + +But if any man seems to be contentious, we have no such custom, neither do Gods assemblies. + +

+

But in giving you this command I don’t praise you, because you come together not for the better but for the worse. + +For first of all, when you come together in the assembly, I hear that divisions exist among you, and I partly believe it. + +For there also must be factions among you, that those who are approved may be revealed among you. + +When therefore you assemble yourselves together, it is not the Lord’s supper that you eat. + +For in your eating each one takes his own supper first. One is hungry, and another is drunken. + +What, don’t you have houses to eat and to drink in? Or do you despise Gods assembly and put them to shame who don’t have enough? What shall I tell you? Shall I praise you? In this I don’t praise you. + +

+

For I received from the Lord that which also I delivered to you, that the Lord Jesus on the night in which he was betrayed took bread. + +When he had given thanks, he broke it and said, +Take, eat. This is my body, which is broken for you. Do this in memory of me.” + +In the same way he also took the cup after supper, saying, +This cup is the new covenant in my blood. Do this, as often as you drink, in memory of me.” + +For as often as you eat this bread and drink this cup, you proclaim the Lords death until he comes. + +

+

Therefore whoever eats this bread or drinks the Lords cup in a way unworthy of the Lord will be guilty of the body and the blood of the Lord. + +But let a man examine himself, and so let him eat of the bread and drink of the cup. + +For he who eats and drinks in an unworthy way eats and drinks judgment to himself if he doesn’t discern the Lord’s body. + +For this cause many among you are weak and sickly, and not a few sleep. + +For if we discerned ourselves, we wouldn’t be judged. + +But when we are judged, we are disciplined by the Lord, that we may not be condemned with the world. + +Therefore, my brothers, when you come together to eat, wait for one another. + +But if anyone is hungry, let him eat at home, lest your coming together be for judgment. The rest I will set in order whenever I come. + +

+ + +

Now concerning spiritual things, brothers, I don’t want you to be ignorant. + +You know that when you were heathen,12:2 +or Gentiles you were led away to those mute idols, however you might be led. + +Therefore I make known to you that no man speaking by Gods Spirit says, “Jesus is accursed.” No one can say, “Jesus is Lord,” but by the Holy Spirit. + +

+

Now there are various kinds of gifts, but the same Spirit. + +There are various kinds of service, and the same Lord. + +There are various kinds of workings, but the same God who works all things in all. + +But to each one is given the manifestation of the Spirit for the profit of all. + +For to one is given through the Spirit the word of wisdom, and to another the word of knowledge according to the same Spirit, + +to another faith by the same Spirit, and to another gifts of healings by the same Spirit, + +and to another workings of miracles, and to another prophecy, and to another discerning of spirits, to another different kinds of languages, and to another the interpretation of languages. + +But the one and the same Spirit produces all of these, distributing to each one separately as he desires. + +

+

For as the body is one and has many members, and all the members of the body, being many, are one body; so also is Christ. + +For in one Spirit we were all baptized into one body, whether Jews or Greeks, whether bond or free; and were all given to drink into one Spirit. + +

+

For the body is not one member, but many. + +If the foot would say, “Because I’m not the hand, I’m not part of the body,” it is not therefore not part of the body. + +If the ear would say, “Because I’m not the eye, I’m not part of the body,” it’s not therefore not part of the body. + +If the whole body were an eye, where would the hearing be? If the whole were hearing, where would the smelling be? + +But now God has set the members, each one of them, in the body, just as he desired. + +If they were all one member, where would the body be? + +But now they are many members, but one body. + +The eye cant tell the hand, “I have no need for you,” or again the head to the feet, “I have no need for you.” + +No, much rather, those members of the body which seem to be weaker are necessary. + +Those parts of the body which we think to be less honorable, on those we bestow more abundant honor; and our unpresentable parts have more abundant modesty, + +while our presentable parts have no such need. But God composed the body together, giving more abundant honor to the inferior part, + +that there should be no division in the body, but that the members should have the same care for one another. + +When one member suffers, all the members suffer with it. When one member is honored, all the members rejoice with it. + +

+

Now you are the body of Christ, and members individually. + +God has set some in the assembly: first apostles, second prophets, third teachers, then miracle workers, then gifts of healings, helps, governments, and various kinds of languages. + +Are all apostles? Are all prophets? Are all teachers? Are all miracle workers? + +Do all have gifts of healings? Do all speak with various languages? Do all interpret? + +But earnestly desire the best gifts. Moreover, I show a most excellent way to you. + +

+ + +

If I speak with the languages of men and of angels, but don’t have love, I have become sounding brass or a clanging cymbal. + +If I have the gift of prophecy, and know all mysteries and all knowledge, and if I have all faith, so as to remove mountains, but don’t have love, I am nothing. + +If I give away all my goods to feed the poor, and if I give my body to be burned, but don’t have love, it profits me nothing. + +

+

Love is patient and is kind. Love doesn’t envy. Love doesn’t brag, is not proud, + +doesn’t behave itself inappropriately, doesn’t seek its own way, is not provoked, takes no account of evil; + +doesn’t rejoice in unrighteousness, but rejoices with the truth; + +bears all things, believes all things, hopes all things, and endures all things. + +

+

Love never fails. But where there are prophecies, they will be done away with. Where there are various languages, they will cease. Where there is knowledge, it will be done away with. + +For we know in part and we prophesy in part; + +but when that which is complete has come, then that which is partial will be done away with. + +When I was a child, I spoke as a child, I felt as a child, I thought as a child. Now that I have become a man, I have put away childish things. + +For now we see in a mirror, dimly, but then face to face. Now I know in part, but then I will know fully, even as I was also fully known. + +But now faith, hope, and love remainthese three. The greatest of these is love. + +

+ + +

Follow after love and earnestly desire spiritual gifts, but especially that you may prophesy. + +For he who speaks in another language speaks not to men, but to God, for no one understands, but in the Spirit he speaks mysteries. + +But he who prophesies speaks to men for their edification, exhortation, and consolation. + +He who speaks in another language edifies himself, but he who prophesies edifies the assembly. + +Now I desire to have you all speak with other languages, but even more that you would prophesy. For he is greater who prophesies than he who speaks with other languages, unless he interprets, that the assembly may be built up. + +

+

But now, brothers,14:6 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” + if I come to you speaking with other languages, what would I profit you unless I speak to you either by way of revelation, or of knowledge, or of prophesying, or of teaching? + +Even lifeless things that make a sound, whether pipe or harp, if they didn’t give a distinction in the sounds, how would it be known what is piped or harped? + +For if the trumpet gave an uncertain sound, who would prepare himself for war? + +So also you, unless you uttered by the tongue words easy to understand, how would it be known what is spoken? For you would be speaking into the air. + +There are, it may be, so many kinds of languages in the world, and none of them is without meaning. + +If then I don’t know the meaning of the language, I would be to him who speaks a foreigner, and he who speaks would be a foreigner to me. + +So also you, since you are zealous for spiritual gifts, seek that you may abound to the building up of the assembly. + +

+

Therefore let him who speaks in another language pray that he may interpret. + +For if I pray in another language, my spirit prays, but my understanding is unfruitful. + +

+

What should I do? 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. + +Otherwise, if you bless with the spirit, how will he who fills the place of the unlearned say the “Amen” at your giving of thanks, seeing he doesn’t know what you say? + +For you most certainly give thanks well, but the other person is not built up. + +I thank my God, I speak with other languages more than you all. + +However, in the assembly I would rather speak five words with my understanding, that I might instruct others also, than ten thousand words in another language. + +

+

Brothers, don’t be children in thoughts, yet in malice be babies, but in thoughts be mature. + +In the law it is written, “By men of strange languages and by the lips of strangers I will speak to this people. They won’t even listen to me that way, says the Lord.”14:21 +Isaiah 28:11-12 + +Therefore other languages are for a sign, not to those who believe, but to the unbelieving; but prophesying is for a sign, not to the unbelieving, but to those who believe. + +If therefore the whole assembly is assembled together and all speak with other languages, and unlearned or unbelieving people come in, won’t they say that you are crazy? + +But if all prophesy, and someone unbelieving or unlearned comes in, he is reproved by all, and he is judged by all. + +And thus the secrets of his heart are revealed. So he will fall down on his face and worship God, declaring that God is among you indeed. + +

+

What is it then, brothers? When you come together, each one of you has a psalm, has a teaching, has a revelation, has another language, or has an interpretation. Let all things be done to build each other up. + +If any man speaks in another language, let there be two, or at the most three, and in turn; and let one interpret. + +But if there is no interpreter, let him keep silent in the assembly, and let him speak to himself and to God. + +Let two or three of the prophets speak, and let the others discern. + +But if a revelation is made to another sitting by, let the first keep silent. + +For you all can prophesy one by one, that all may learn and all may be exhorted. + +The spirits of the prophets are subject to the prophets, + +for God is not a God of confusion but of peace, as in all the assemblies of the saints. + +Let the wives be quiet in the assemblies, for it has not been permitted for them to be talking except in submission, as the law also says,14:34 +Deuteronomy 27:9 + +if they desire to learn anything. “Let them ask their own husbands at home, for it is shameful for a wife to be talking in the assembly.” + +What!? Was it from you that the word of God went out? Or did it come to you alone? + +

+

If any man thinks himself to be a prophet or spiritual, let him recognize the things which I write to you, that they are the commandment of the Lord. + +But if anyone is ignorant, let him be ignorant. + +

+

Therefore, brothers, desire earnestly to prophesy, and don’t forbid speaking with other languages. + +Let all things be done decently and in order. + +

+ + +

Now I declare to you, brothers, the Good News which I preached to you, which also you received, in which you also stand, + +by which also you are saved, if you hold firmly the word which I preached to youunless you believed in vain. + +

+

For I delivered to you first of all that which I also received: that Christ died for our sins according to the Scriptures, + +that he was buried, that he was raised on the third day according to the Scriptures, + +and that he appeared to Cephas, then to the twelve. + +Then he appeared to over five hundred brothers at once, most of whom remain until now, but some have also fallen asleep. + +Then he appeared to James, then to all the apostles, + +and last of all, as to the child born at the wrong time, he appeared to me also. + +For I am the least of the apostles, who is not worthy to be called an apostle, because I persecuted the assembly of God. + +But by the grace of God I am what I am. His grace which was given to me was not futile, but I worked more than all of them; yet not I, but the grace of God which was with me. + +Whether then it is I or they, so we preach, and so you believed. + +

+

Now if Christ is preached, that he has been raised from the dead, how do some among you say that there is no resurrection of the dead? + +But if there is no resurrection of the dead, neither has Christ been raised. + +If Christ has not been raised, then our preaching is in vain and your faith also is in vain. + +Yes, we are also found false witnesses of God, because we testified about God that he raised up Christ, whom he didn’t raise up if it is true that the dead are not raised. + +For if the dead aren’t raised, neither has Christ been raised. + +If Christ has not been raised, your faith is vain; you are still in your sins. + +Then they also who are fallen asleep in Christ have perished. + +If we have only hoped in Christ in this life, we are of all men most pitiable. + +

+

But now Christ has been raised from the dead. He became the first fruit of those who are asleep. + +For since death came by man, the resurrection of the dead also came by man. + +For as in Adam all die, so also in Christ all will be made alive. + +But each in his own order: Christ the first fruits, then those who are Christ’s at his coming. + +Then the end comes, when he will deliver up the Kingdom to God the Father, when he will have abolished all rule and all authority and power. + +For he must reign until he has put all his enemies under his feet. + +The last enemy that will be abolished is death. + +For, “He put all things in subjection under his feet.”15:27 +Psalms 8:6 But when he says, “All things are put in subjection”, it is evident that he is excepted who subjected all things to him. + +When all things have been subjected to him, then the Son will also himself be subjected to him who subjected all things to him, that God may be all in all. + +

+

Or else what will they do who are baptized for the dead? If the dead aren’t raised at all, why then are they baptized for the dead? + +Why do we also stand in jeopardy every hour? + +I affirm, by the boasting in you which I have in Christ Jesus our Lord, I die daily. + +If I fought with animals at Ephesus for human purposes, what does it profit me? If the dead are not raised, thenlet’s eat and drink, for tomorrow we die.”15:32 +Isaiah 22:13 + +Don’t be deceived! “Evil companionships corrupt good morals.” + +Wake up righteously and don’t sin, for some have no knowledge of God. I say this to your shame. + +

+

But someone will say, “How are the dead raised?” and, “With what kind of body do they come?” + +You foolish one, that which you yourself sow is not made alive unless it dies. + +That which you sow, you don’t sow the body that will be, but a bare grain, maybe of wheat, or of some other kind. + +But God gives it a body even as it pleased him, and to each seed a body of its own. + +All flesh is not the same flesh, but there is one flesh of men, another flesh of animals, another of fish, and another of birds. + +There are also celestial bodies and terrestrial bodies; but the glory of the celestial differs from that of the terrestrial. + +There is one glory of the sun, another glory of the moon, and another glory of the stars; for one star differs from another star in glory. + +

+

So also is the resurrection of the dead. The body is sown perishable; it is raised imperishable. + +It is sown in dishonor; it is raised in glory. It is sown in weakness; it is raised in power. + +It is sown a natural body; it is raised a spiritual body. There is a natural body and there is also a spiritual body. + +

+

So also it is written, “The first man Adam became a living soul.”15:45 +Genesis 2:7 The last Adam became a life-giving spirit. + +However, that which is spiritual isn’t first, but that which is natural, then that which is spiritual. + +The first man is of the earth, made of dust. The second man is the Lord from heaven. + +As is the one made of dust, such are those who are also made of dust; and as is the heavenly, such are they also that are heavenly. + +As we have borne the image of those made of dust, let’s15:49 +NU, TR read “we will” instead of “let’s” also bear the image of the heavenly. + +Now I say this, brothers,15:50 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” that flesh and blood cant inherit God’s Kingdom; neither does the perishable inherit imperishable. + +

+

Behold,15:51 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I tell you a mystery. We will not all sleep, but we will all be changed, + +in a moment, in the twinkling of an eye, at the last trumpet. For the trumpet will sound and the dead will be raised incorruptible, and we will be changed. + +For this perishable body must become imperishable, and this mortal must put on immortality. + +But when this perishable body will have become imperishable, and this mortal will have put on immortality, then what is written will happen: “Death is swallowed up in victory.”15:54 +Isaiah 25:8 + +

+Death, where is your sting? + +Hades,15:55 +or, Hell where is your victory?”15:55 +See Hosea 13:14 + + +

The sting of death is sin, and the power of sin is the law. + +But thanks be to God, who gives us the victory through our Lord Jesus Christ. + +Therefore, my beloved brothers, be steadfast, immovable, always abounding in the Lords work, because you know that your labor is not in vain in the Lord. + +

+ + +

Now concerning the collection for the saints: as I commanded the assemblies of Galatia, you do likewise. + +On the first day of every week, let each one of you save as he may prosper, that no collections are made when I come. + +When I arrive, I will send whoever you approve with letters to carry your gracious gift to Jerusalem. + +If it is appropriate for me to go also, they will go with me. + +

+

I will come to you when I have passed through Macedonia, for I am passing through Macedonia. + +But with you it may be that I will stay with you, or even winter with you, that you may send me on my journey wherever I go. + +For I do not wish to see you now in passing, but I hope to stay a while with you, if the Lord permits. + +But I will stay at Ephesus until Pentecost, + +for a great and effective door has opened to me, and there are many adversaries. + +

+

Now if Timothy comes, see that he is with you without fear, for he does the work of the Lord, as I also do. + +Therefore let no one despise him. But set him forward on his journey in peace, that he may come to me; for I expect him with the brothers. + +

+

Now concerning Apollos the brother, I strongly urged him to come to you with the brothers, but it was not at all his desire to come now; but he will come when he has an opportunity. + +

+

Watch! Stand firm in the faith! Be courageous! Be strong! + +Let all that you do be done in love. + +

+

Now I beg you, brothers—you know the house of Stephanas, that it is the first fruits of Achaia, and that they have set themselves to serve the saints— + +that you also be in subjection to such, and to everyone who helps in the work and labors. + +I rejoice at the coming of Stephanas, Fortunatus, and Achaicus; for that which was lacking on your part, they supplied. + +For they refreshed my spirit and yours. Therefore acknowledge those who are like that. + +

+

The assemblies of Asia greet you. Aquila and Priscilla greet you warmly in the Lord, together with the assembly that is in their house. + +All the brothers greet you. Greet one another with a holy kiss. + +

+

This greeting is by me, Paul, with my own hand. + +If any man doesn’t love the Lord Jesus Christ, let him be cursed.16:22 +Greek: anathema. Come, Lord!16:22 +Aramaic: Maranatha! + +The grace of the Lord Jesus Christ be with you. + +My love to all of you in Christ Jesus. Amen. + +

+
+47-2CO-web.sfm World English Bible (WEB) +2 Corinthians +Paul’s Second Letter to the Corinthians +2 Corinthians +2Co +

Paul’s Second Letter to the Corinthians +

+ + +

Paul, an apostle of Christ1:1 +“Christ” means “Anointed One”. Jesus through the will of God, and Timothy our brother, to the assembly of God which is at Corinth, with all the saints who are in the whole of Achaia: + +Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

Blessed be the God and Father of our Lord Jesus Christ, the Father of mercies and God of all comfort, + +who comforts us in all our affliction, that we may be able to comfort those who are in any affliction, through the comfort with which we ourselves are comforted by God. + +For as the sufferings of Christ abound to us, even so our comfort also abounds through Christ. + +But if we are afflicted, it is for your comfort and salvation. If we are comforted, it is for your comfort, which produces in you the patient enduring of the same sufferings which we also suffer. + +Our hope for you is steadfast, knowing that, since you are partakers of the sufferings, so you are also of the comfort. + +

+

For we don’t desire to have you uninformed, brothers,1:8 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” concerning our affliction which happened to us in Asia: that we were weighed down exceedingly, beyond our power, so much that we despaired even of life. + +Yes, we ourselves have had the sentence of death within ourselves, that we should not trust in ourselves, but in God who raises the dead, + +who delivered us out of so great a death, and does deliver, on whom we have set our hope that he will also still deliver us, + +you also helping together on our behalf by your supplication; that, for the gift given to us by means of many, thanks may be given by many persons on your1:11 ++ +MT: your; TR and NU: our behalf. + +

+

For our boasting is this: the testimony of our conscience that in holiness and sincerity of God, not in fleshly wisdom but in the grace of God, we behaved ourselves in the world, and more abundantly toward you. + +For we write no other things to you than what you read or even acknowledge, and I hope you will acknowledge to the end— + +as also you acknowledged us in partthat we are your boasting, even as you also are ours, in the day of our Lord Jesus. + +

+

In this confidence, I was determined to come first to you, that you might have a second benefit, + +and by you to pass into Macedonia, and again from Macedonia to come to you, and to be sent forward by you on my journey to Judea. + +When I therefore planned this, did I show fickleness? Or the things that I plan, do I plan according to the flesh, that with me there should be theYes, yesand theNo, no?” + +But as God is faithful, our word toward you was notYes and no.” + +For the Son of God, Jesus Christ, who was preached among you by usby me, Silvanus, and Timothywas notYes and no,” but in him isYes.” + +For however many are the promises of God, in him is theYes.” Therefore also through him is the “Amen”, to the glory of God through us. + +

+

Now he who establishes us with you in Christ and anointed us is God, + +who also sealed us and gave us the down payment of the Spirit in our hearts. + +

+

But I call God for a witness to my soul, that to spare you, I didn’t come to Corinth. + +We don’t control your faith, but are fellow workers with you for your joy. For you stand firm in faith. + +

+ + +

But I determined this for myself, that I would not come to you again in sorrow. + +For if I make you grieve, then who will make me glad but he who is made to grieve by me? + +And I wrote this very thing to you, so that when I came, I wouldn’t have sorrow from them of whom I ought to rejoice; having confidence in you all that my joy would be shared by all of you. + +For out of much affliction and anguish of heart I wrote to you with many tears, not that you should be made to grieve, but that you might know the love that I have so abundantly for you. + +

+

But if any has caused sorrow, he has caused sorrow not to me, but in part (that I not press too heavily) to you all. + +This punishment which was inflicted by the many is sufficient for such a one; + +so that, on the contrary, you should rather forgive him and comfort him, lest by any means such a one should be swallowed up with his excessive sorrow. + +Therefore I beg you to confirm your love toward him. + +For to this end I also wrote, that I might know the proof of you, whether you are obedient in all things. + +Now I also forgive whomever you forgive anything. For if indeed I have forgiven anything, I have forgiven that one for your sakes in the presence of Christ, + +that no advantage may be gained over us by Satan, for we are not ignorant of his schemes. + +

+

Now when I came to Troas for the Good News of Christ, and when a door was opened to me in the Lord, + +I had no relief for my spirit, because I didn’t find Titus my brother, but taking my leave of them, I went out into Macedonia. + +

+

Now thanks be to God who always leads us in triumph in Christ, and reveals through us the sweet aroma of his knowledge in every place. + +For we are a sweet aroma of Christ to God in those who are being saved and in those who perish: + +to the one a stench from death to death, to the other a sweet aroma from life to life. Who is sufficient for these things? + +For we are not as so many, peddling the word of God. But as of sincerity, but as of God, in the sight of God, we speak in Christ. + +

+ + +

Are we beginning again to commend ourselves? Or do we need, as do some, letters of commendation to you or from you? + +You are our letter, written in our hearts, known and read by all men, + +being revealed that you are a letter of Christ, served by us, written not with ink, but with the Spirit of the living God; not in tablets of stone, but in tablets that are hearts of flesh. + +

+

Such confidence we have through Christ toward God, + +not that we are sufficient of ourselves to account anything as from ourselves; but our sufficiency is from God, + +who also made us sufficient as servants of a new covenant, not of the letter but of the Spirit. For the letter kills, but the Spirit gives life. + +

+

But if the service of death, written engraved on stones, came with glory, so that the children of Israel could not look steadfastly on the face of Moses for the glory of his face, which was passing away, + +won’t service of the Spirit be with much more glory? + +For if the service of condemnation has glory, the service of righteousness exceeds much more in glory. + +For most certainly that which has been made glorious has not been made glorious in this respect, by reason of the glory that surpasses. + +For if that which passes away was with glory, much more that which remains is in glory. + +

+

Having therefore such a hope, we use great boldness of speech, + +and not as Moses, who put a veil on his face so that the children of Israel wouldn’t look steadfastly on the end of that which was passing away. + +But their minds were hardened, for until this very day at the reading of the old covenant the same veil remains, because in Christ it passes away. + +But to this day, when Moses is read, a veil lies on their heart. + +But whenever someone turns to the Lord, the veil is taken away. + +Now the Lord is the Spirit; and where the Spirit of the Lord is, there is liberty. + +But we all, with unveiled face seeing the glory of the Lord as in a mirror, are transformed into the same image from glory to glory, even as from the Lord, the Spirit. + +

+ + +

Therefore, seeing we have this ministry, even as we obtained mercy, we don’t faint. + +But we have renounced the hidden things of shame, not walking in craftiness nor handling the word of God deceitfully, but by the manifestation of the truth commending ourselves to every man’s conscience in the sight of God. + +Even if our Good News is veiled, it is veiled in those who are dying, + +in whom the god of this world has blinded the minds of the unbelieving, that the light of the Good News of the glory of Christ, who is the image of God, should not dawn on them. + +For we don’t preach ourselves, but Christ Jesus as Lord, and ourselves as your servants for Jesussake, + +seeing it is God who said, “Light will shine out of darkness,”4:6 +Genesis 1:3 who has shone in our hearts to give the light of the knowledge of the glory of God in the face of Jesus Christ. + +

+

But we have this treasure in clay vessels, that the exceeding greatness of the power may be of God and not from ourselves. + +We are pressed on every side, yet not crushed; perplexed, yet not to despair; + +pursued, yet not forsaken; struck down, yet not destroyed; + +always carrying in the body the putting to death of the Lord Jesus, that the life of Jesus may also be revealed in our body. + +For we who live are always delivered to death for Jesussake, that the life also of Jesus may be revealed in our mortal flesh. + +So then death works in us, but life in you. + +

+

But having the same spirit of faith, according to that which is written, “I believed, and therefore I spoke.”4:13 +Psalms 116:10 We also believe, and therefore we also speak, + +knowing that he who raised the Lord Jesus will raise us also through4:14 +NU reads +with +instead of +through. Jesus, and will present us with you. + +For all things are for your sakes, that the grace, being multiplied through the many, may cause the thanksgiving to abound to the glory of God. + +

+

Therefore we don’t faint, but though our outward person is decaying, yet our inward person is renewed day by day. + +For our light affliction, which is for the moment, works for us more and more exceedingly an eternal weight of glory, + +while we don’t look 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. + +

+ + +

For we know that if the earthly house of our tent is dissolved, we have a building from God, a house not made with hands, eternal, in the heavens. + +For most certainly in this we groan, longing to be clothed with our habitation which is from heaven, + +if indeed being clothed, we will not be found naked. + +For indeed we who are in this tent do groan, being burdened, not that we desire to be unclothed, but that we desire to be clothed, that what is mortal may be swallowed up by life. + +Now he who made us for this very thing is God, who also gave to us the down payment of the Spirit. + +

+

Therefore we are always confident and know that while we are at home in the body, we are absent from the Lord; + +for we walk by faith, not by sight. + +We are courageous, I say, and are willing rather to be absent from the body and to be at home with the Lord. + +Therefore also we make it our aim, whether at home or absent, to be well pleasing to him. + +For we must all be revealed before the judgment seat of Christ that each one may receive the things in the body according to what he has done, whether good or bad. + +

+

Knowing therefore the fear of the Lord, we persuade men, but we are revealed to God, and I hope that we are revealed also in your consciences. + +For we are not commending ourselves to you again, but speak as giving you occasion of boasting on our behalf, that you may have something to answer those who boast in appearance and not in heart. + +For if we are beside ourselves, it is for God. Or if we are of sober mind, it is for you. + +For the love of Christ compels us; because we judge thus: that one died for all, therefore all died. + +He died for all, that those who live should no longer live to themselves, but to him who for their sakes died and rose again. + +

+

Therefore we know no one according to the flesh from now on. Even though we have known Christ according to the flesh, yet now we know him so no more. + +Therefore if anyone is in Christ, he is a new creation. The old things have passed away. Behold,5:17 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. all things have become new. + +But all things are of God, who reconciled us to himself through Jesus Christ, and gave to us the ministry of reconciliation; + +namely, that God was in Christ reconciling the world to himself, not reckoning to them their trespasses, and having committed to us the word of reconciliation. + +

+

We are therefore ambassadors on behalf of Christ, as though God were entreating by us: we beg you on behalf of Christ, be reconciled to God. + +For him who knew no sin he made to be sin on our behalf, so that in him we might become the righteousness of God. + +

+ + +

Working together, we entreat also that you do not receive the grace of God in vain. + +For he says, +

+At an acceptable time I listened to you. + +In a day of salvation I helped you.”6:2 +Isaiah 49:8 + +

Behold, now is the acceptable time. Behold, now is the day of salvation. + +We give no occasion of stumbling in anything, that our service may not be blamed, + +but in everything commending ourselves as servants of God: in great endurance, in afflictions, in hardships, in distresses, + +in beatings, in imprisonments, in riots, in labors, in watchings, in fastings, + +in pureness, in knowledge, in perseverance, in kindness, in the Holy Spirit, in sincere love, + +in the word of truth, in the power of God, by the armor of righteousness on the right hand and on the left, + +by glory and dishonor, by evil report and good report, as deceivers and yet true, + +as unknown and yet well known, as dying and beholdwe live, as punished and not killed, + +as sorrowful yet always rejoicing, as poor yet making many rich, as having nothing and yet possessing all things. + +

+

Our mouth is open to you, Corinthians. Our heart is enlarged. + +You are not restricted by us, but you are restricted by your own affections. + +Now in return—I speak as to my childrenyou also open your hearts. + +

+

Don’t be unequally yoked with unbelievers, for what fellowship do righteousness and iniquity have? Or what fellowship does light have with darkness? + +What agreement does Christ have with Belial? Or what portion does a believer have with an unbeliever? + +What agreement does a temple of God have with idols? For you are a temple of the living God. Even as God said, “I will dwell in them and walk in them. I will be their God and they will be my people.”6:16 +Leviticus 26:12; Jeremiah 32:38; Ezekiel 37:27 + +Therefore +

+“‘Come out from among them, + +and be separate,’ says the Lord. + +‘Touch no unclean thing. + +I will receive you.6:17 +Isaiah 52:11; Ezekiel 20:34,41 + + +I will be to you a Father. + +You will be to me sons and daughters,’ + +

says the Lord Almighty.”6:18 +2 Samuel 7:14; 7:8 + +

+ + +

Having therefore these promises, beloved, lets cleanse ourselves from all defilement of flesh and spirit, perfecting holiness in the fear of God. + +

+

Open your hearts to us. We wronged no one. We corrupted no one. We took advantage of no one. + +I say this not to condemn you, for I have said before that you are in our hearts to die together and live together. + +Great is my boldness of speech toward you. Great is my boasting on your behalf. I am filled with comfort. I overflow with joy in all our affliction. + +

+

For even when we had come into Macedonia, our flesh had no relief, but we were afflicted on every side. Fightings were outside. Fear was inside. + +Nevertheless, he who comforts the lowly, God, comforted us by the coming of Titus, + +and not by his coming only, but also by the comfort with which he was comforted in you while he told us of your longing, your mourning, and your zeal for me, so that I rejoiced still more. + +

+

For though I grieved you with my letter, I do not regret it, though I did regret it. For I see that my letter made you grieve, though just for a while. + +I now rejoice, not that you were grieved, but that you were grieved to repentance. For you were grieved in a godly way, that you might suffer loss by us in nothing. + +For godly sorrow produces repentance leading to salvation, which brings no regret. But the sorrow of the world produces death. + +For behold, this same thing, that you were grieved in a godly way, what earnest care it worked in you. Yes, what defense, indignation, fear, longing, zeal, and vindication! In everything you demonstrated yourselves to be pure in the matter. + +So although I wrote to you, I wrote not for his cause that did the wrong, nor for his cause that suffered the wrong, but that your earnest care for us might be revealed in you in the sight of God. + +Therefore we have been comforted. In our comfort we rejoiced the more exceedingly for the joy of Titus, because his spirit has been refreshed by you all. + +For if in anything I have boasted to him on your behalf, I was not disappointed. But as we spoke all things to you in truth, so our glorying also which I made before Titus was found to be truth. + +His affection is more abundantly toward you, while he remembers all of your obedience, how with fear and trembling you received him. + +I rejoice that in everything I am confident concerning you. + +

+ + +

Moreover, brothers, we make known to you the grace of God which has been given in the assemblies of Macedonia, + +how in a severe ordeal of affliction, the abundance of their joy and their deep poverty abounded to the riches of their generosity. + +For according to their power, I testify, yes and beyond their power, they gave of their own accord, + +begging us with much entreaty to receive this grace and the fellowship in the service to the saints. + +This was not as we had expected, but first they gave their own selves to the Lord, and to us through the will of God. + +So we urged Titus, that as he had made a beginning before, so he would also complete in you this grace. + +But as you abound in everythingin faith, utterance, knowledge, all earnestness, and in your love to us—see that you also abound in this grace. + +

+

I speak not by way of commandment, but as proving through the earnestness of others the sincerity also of your love. + +For you know the grace of our Lord Jesus Christ, that though he was rich, yet for your sakes he became poor, that you through his poverty might become rich. + +I give advice in this: it is expedient for you who were the first to start a year ago, not only to do, but also to be willing. + +But now complete the doing also, that as there was the readiness to be willing, so there may be the completion also out of your ability. + +For if the readiness is there, it is acceptable according to what you have, not according to what you don’t have. + +For this is not that others may be eased and you distressed, + +but for equality. Your abundance at this present time supplies their lack, that their abundance also may become a supply for your lack, that there may be equality. + +As it is written, “He who gathered much had nothing left over, and he who gathered little had no lack.”8:15 +Exodus 16:18 + +

+

But thanks be to God, who puts the same earnest care for you into the heart of Titus. + +For he indeed accepted our exhortation, but being himself very earnest, he went out to you of his own accord. + +We have sent together with him the brother whose praise in the Good News is known throughout all the assemblies. + +Not only so, but he was also appointed by the assemblies to travel with us in this grace, which is served by us to the glory of the Lord himself, and to show our readiness. + +We are avoiding this, that any man should blame us concerning this abundance which is administered by us. + +Having regard for honorable things, not only in the sight of the Lord, but also in the sight of men. + +We have sent with them our brother whom we have many times proved earnest in many things, but now much more earnest, by reason of the great confidence which he has in you. + +As for Titus, he is my partner and fellow worker for you. As for our brothers, they are the apostles of the assemblies, the glory of Christ. + +Therefore show the proof of your love to them before the assemblies, and of our boasting on your behalf. + +

+ + +

It is indeed unnecessary for me to write to you concerning the service to the saints, + +for I know your readiness, of which I boast on your behalf to those of Macedonia, that Achaia has been prepared for the past year. Your zeal has stirred up very many of them. + +But I have sent the brothers so that our boasting on your behalf may not be in vain in this respect, that, just as I said, you may be prepared, + +lest by any means, if anyone from Macedonia comes there with me and finds you unprepared, we (to say nothing of you) would be disappointed in this confident boasting. + +I thought it necessary therefore to entreat the brothers that they would go before to you and arrange ahead of time the generous gift that you promised before, that the same might be ready as a matter of generosity, and not of greediness. + +

+

Remember this: he who sows sparingly will also reap sparingly. He who sows bountifully will also reap bountifully. + +Let each man give according as he has determined in his heart, not grudgingly or under compulsion, for God loves a cheerful giver. + +And God is able to make all grace abound to you, that you, always having all sufficiency in everything, may abound to every good work. + +As it is written, +

+He has scattered abroad. He has given to the poor. + +His righteousness remains forever.”9:9 +Psalms 112:9 + + +

Now may he who supplies seed to the sower and bread for food, supply and multiply your seed for sowing, and increase the fruits of your righteousness, + +you being enriched in everything for all generosity, which produces thanksgiving to God through us. + +For this service of giving that you perform not only makes up for lack among the saints, but abounds also through much giving of thanks to God, + +seeing that through the proof given by this service, they glorify God for the obedience of your confession to the Good News of Christ and for the generosity of your contribution to them and to all, + +while they themselves also, with supplication on your behalf, yearn for you by reason of the exceeding grace of God in you. + +Now thanks be to God for his unspeakable gift! + +

+ + +

Now I Paul, myself, entreat you by the humility and gentleness of Christ, I who in your presence am lowly among you, but being absent am bold toward you. + +Yes, I beg you that I may not, when present, show courage with the confidence with which I intend to be bold against some, who consider us to be walking according to the flesh. + +For though we walk in the flesh, we don’t wage war according to the flesh; + +for the weapons of our warfare are not of the flesh, but mighty before God to the throwing down of strongholds, + +throwing down imaginations and every high thing that is exalted against the knowledge of God and bringing every thought into captivity to the obedience of Christ, + +and being in readiness to avenge all disobedience when your obedience is made full. + +

+

Do you look at things only as they appear in front of your face? If anyone trusts in himself that he is Christ’s, let him consider this again with himself, that even as he is Christ’s, so we also are Christ’s. + +For even if I boast somewhat abundantly concerning our authority, which the Lord gave for building you up and not for casting you down, I will not be ashamed, + +that I may not seem as if I desire to terrify you by my letters. + +For, “His letters”, they say, “are weighty and strong, but his bodily presence is weak, and his speech is despised.” + +Let such a person consider this, that what we are in word by letters when we are absent, such are we also in deed when we are present. + +

+

For we are not bold to number or compare ourselves with some of those who commend themselves. But they themselves, measuring themselves by themselves, and comparing themselves with themselves, are without understanding. + +But we will not boast beyond proper limits, but within the boundaries with which God appointed to us, which reach even to you. + +For we don’t stretch ourselves too much, as though we didn’t reach to you. For we came even as far as to you with the Good News of Christ, + +not boasting beyond proper limits in other mens labors, but having hope that as your faith grows, we will be abundantly enlarged by you in our sphere of influence, + +so as to preach the Good News even to the parts beyond you, not to boast in what someone else has already done. + +Buthe who boasts, let him boast in the Lord.”10:17 +Jeremiah 9:24 + + +For it isn’t he who commends himself who is approved, but whom the Lord commends. + +

+ + +

I wish that you would bear with me in a little foolishness, but indeed you do bear with me. + +For I am jealous over you with a godly jealousy. For I promised you in marriage to one husband, that I might present you as a pure virgin to Christ. + +But I am afraid that somehow, as the serpent deceived Eve in his craftiness, so your minds might be corrupted from the simplicity that is in Christ. + +For if he who comes preaches another Jesus whom we didn’t preach, or if you receive a different spirit which you didn’t receive, or a differentgood newswhich you didn’t accept, you put up with that well enough. + +For I reckon that I am not at all behind the very best apostles. + +But though I am unskilled in speech, yet I am not unskilled in knowledge. No, in every way we have been revealed to you in all things. + +

+

Or did I commit a sin in humbling myself that you might be exalted, because I preached to you God’s Good News free of charge? + +I robbed other assemblies, taking wages from them that I might serve you. + +When I was present with you and was in need, I wasn’t a burden on anyone, for the brothers, when they came from Macedonia, supplied the measure of my need. In everything I kept myself from being burdensome to you, and I will continue to do so. + +As the truth of Christ is in me, no one will stop me from this boasting in the regions of Achaia. + +Why? Because I don’t love you? God knows. + +

+

But what I do, that I will continue to do, that I may cut off opportunity from those who desire an opportunity, that in which they boast, they may be recognized just like us. + +For such men are false apostles, deceitful workers, masquerading as Christ’s apostles. + +And no wonder, for even Satan masquerades as an angel of light. + +It is no great thing therefore if his servants also masquerade as servants of righteousness, whose end will be according to their works. + +

+

I say again, let no one think me foolish. But if so, yet receive me as foolish, that I also may boast a little. + +That which I speak, I don’t speak according to the Lord, but as in foolishness, in this confidence of boasting. + +Seeing that many boast after the flesh, I will also boast. + +For you bear with the foolish gladly, being wise. + +For you bear with a man if he brings you into bondage, if he devours you, if he takes you captive, if he exalts himself, or if he strikes you on the face. + +To my shame, I speak as though we had been weak. Yet in whatever way anyone is bold (I speak in foolishness), I am bold also. + +Are they Hebrews? So am I. Are they Israelites? So am I. Are they the offspring11:22 +or, seed of Abraham? So am I. + +Are they servants of Christ? (I speak as one beside himself.) I am more so: in labors more abundantly, in prisons more abundantly, in stripes above measure, and in deaths often. + +Five times I received forty stripes minus one from the Jews. + +Three times I was beaten with rods. Once I was stoned. Three times I suffered shipwreck. I have been a night and a day in the deep. + +I have been in travels often, perils of rivers, perils of robbers, perils from my countrymen, perils from the Gentiles, perils in the city, perils in the wilderness, perils in the sea, perils among false brothers; + +in labor and travail, in watchings often, in hunger and thirst, in fastings often, and in cold and nakedness. + +

+

Besides those things that are outside, there is that which presses on me daily: anxiety for all the assemblies. + +Who is weak, and I am not weak? Who is caused to stumble, and I don’t burn with indignation? + +

+

If I must boast, I will boast of the things that concern my weakness. + +The God and Father of the Lord Jesus Christ, he who is blessed forever more, knows that I don’t lie. + +In Damascus the governor under King Aretas guarded the Damascenescity, desiring to arrest me. + +I was let down in a basket through a window by the wall, and escaped his hands. + +

+ + +

It is doubtless not profitable for me to boast, but I will come to visions and revelations of the Lord. + +I know a man in Christ who was caught up into the third heaven fourteen years agowhether in the body, I don’t know, or whether out of the body, I don’t know; God knows. + +I know such a man (whether in the body, or outside of the body, I don’t know; God knows), + +how he was caught up into Paradise and heard unspeakable words, which it is not lawful for a man to utter. + +On behalf of such a one I will boast, but on my own behalf I will not boast, except in my weaknesses. + +For if I would desire to boast, I will not be foolish; for I will speak the truth. But I refrain, so that no man may think more of me than that which he sees in me or hears from me. + +By reason of the exceeding greatness of the revelations, that I should not be exalted excessively, a thorn in the flesh was given to me: a messenger of Satan to torment me, that I should not be exalted excessively. + +Concerning this thing, I begged the Lord three times that it might depart from me. + +He has said to me, +My grace is sufficient for you, for my power is made perfect in weakness.” Most gladly therefore I will rather glory in my weaknesses, that the power of Christ may rest on me. + +

+

Therefore I take pleasure in weaknesses, in injuries, in necessities, in persecutions, and in distresses, for Christ’s sake. For when I am weak, then am I strong. + +I have become foolish in boasting. You compelled me, for I ought to have been commended by you, for I am in no way inferior to the very best apostles, though I am nothing. + +Truly the signs of an apostle were worked among you in all perseverance, in signs and wonders and mighty works. + +For what is there in which you were made inferior to the rest of the assemblies, unless it is that I myself was not a burden to you? Forgive me this wrong! + +

+

Behold, this is the third time I am ready to come to you, and I will not be a burden to you; for I seek not your possessions, but you. For the children ought not to save up for the parents, but the parents for the children. + +I will most gladly spend and be spent for your souls. If I love you more abundantly, am I loved the less? + +Even so, I myself didn’t burden you. But you might say that being crafty, I caught you with deception. + +Did I take advantage of you by anyone of those whom I have sent to you? + +I exhorted Titus, and I sent the brother with him. Did Titus take any advantage of you? Didn’t we walk in the same spirit? Didn’t we walk in the same steps? + +

+

Again, do you think that we are excusing ourselves to you? In the sight of God we speak in Christ. But all things, beloved, are for your edifying. + +For I am afraid that perhaps when I come, I might find you not the way I want to, and that I might be found by you as you don’t desire, that perhaps there would be strife, jealousy, outbursts of anger, factions, slander, whisperings, proud thoughts, or riots, + +that again when I come my God would humble me before you, and I would mourn for many of those who have sinned before now, and not repented of the uncleanness, sexual immorality, and lustfulness which they committed. + +

+ + +

This is the third time I am coming to you. “At the mouth of two or three witnesses shall every word be established.”13:1 +Deuteronomy 19:15 + +I have warned previously, and I warn again, as when I was present the second time, so now, being absent, I write to those who have sinned before now and to all the rest that if I come again, I will not spare, + +seeing that you seek a proof of Christ who speaks in me who is not weak, but is powerful in you. + +For he was crucified through weakness, yet he lives through the power of God. For we also are weak in him, but we will live with him through the power of God toward you. + +

+

Examine your own selves, whether you are in the faith. Test your own selves. Or don’t you know about your own selves, that Jesus Christ is in you?—unless indeed you are disqualified. + +But I hope that you will know that we aren’t disqualified. + +

+

Now I pray to God that you do no evil; not that we may appear approved, but that you may do that which is honorable, though we may seem to have failed. + +For we can do nothing against the truth, but for the truth. + +For we rejoice when we are weak and you are strong. We also pray for this: your becoming perfect. + +For this cause I write these things while absent, that I may not deal sharply when present, according to the authority which the Lord gave me for building up and not for tearing down. + +

+

Finally, brothers, rejoice! Be perfected. Be comforted. Be of the same mind. Live in peace, and the God of love and peace will be with you. + +Greet one another with a holy kiss. + +

+

All the saints greet you. + +

+

The grace of the Lord Jesus Christ, God’s love, and the fellowship of the Holy Spirit be with you all. Amen. + +

+
+48-GAL-web.sfm World English Bible (WEB) +Galatians +Paul’s Letter to the Galatians +Galatians +Gal +

Paul’s Letter to the Galatians +

+ + +

Paul, an apostle—not from men, nor through man, but through Jesus Christ,1:1 +“Christ” means “Anointed One”. and God the Father, who raised him from the dead— + +and all the brothers1:2 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” + who are with me, to the assemblies of Galatia: + +Grace to you and peace from God the Father and our Lord Jesus Christ, + +who gave himself for our sins, that he might deliver us out of this present evil age, according to the will of our God and Father— + +to whom be the glory forever and ever. Amen. + +

+

I marvel that you are so quickly deserting him who called you in the grace of Christ to a differentgood news”, + +but there isn’t anothergood news.” Only there are some who trouble you and want to pervert the Good News of Christ. + +But even though we, or an angel from heaven, should preach to you anygood newsother than that which we preached to you, let him be cursed. + +As we have said before, so I now say again: if any man preaches to you anygood newsother than that which you received, let him be cursed. + +

+

For am I now seeking the favor of men, or of God? Or am I striving to please men? For if I were still pleasing men, I wouldn’t be a servant of Christ. + +

+

But I make known to you, brothers, concerning the Good News which was preached by me, that it is not according to man. + +For I didn’t receive it from man, nor was I taught it, but it came to me through revelation of Jesus Christ. + +For you have heard of my way of living in time past in the Jews’ religion, how that beyond measure I persecuted the assembly of God and ravaged it. + +I advanced in the Jews’ religion beyond many of my own age among my countrymen, being more exceedingly zealous for the traditions of my fathers. + +But when it was the good pleasure of God, who separated me from my mother’s womb and called me through his grace, + +to reveal his Son in me, that I might preach him among the Gentiles, I didn’t immediately confer with flesh and blood, + +nor did I go up to Jerusalem to those who were apostles before me, but I went away into Arabia. Then I returned to Damascus. + +

+

Then after three years I went up to Jerusalem to visit Peter, and stayed with him fifteen days. + +But of the other apostles I saw no one except James, the Lords brother. + +Now about the things which I write to you, behold,1:20 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. before God, I’m not lying. + +Then I came to the regions of Syria and Cilicia. + +I was still unknown by face to the assemblies of Judea which were in Christ, + +but they only heard, “He who once persecuted us now preaches the faith that he once tried to destroy.” + +So they glorified God in me. + +

+ + +

Then after a period of fourteen years I went up again to Jerusalem with Barnabas, taking Titus also with me. + +I went up by revelation, and I laid before them the Good News which I preach among the Gentiles, but privately before those who were respected, for fear that I might be running, or had run, in vain. + +But not even Titus, who was with me, being a Greek, was compelled to be circumcised. + +This was because of the false brothers secretly brought in, who stole in to spy out our liberty which we have in Christ Jesus, that they might bring us into bondage, + +to whom we gave no place in the way of subjection, not for an hour, that the truth of the Good News might continue with you. + +But from those who were reputed to be important—whatever they were, it makes no difference to me; God doesn’t show partiality to manthey, I say, who were respected imparted nothing to me, + +but to the contrary, when they saw that I had been entrusted with the Good News for the uncircumcised, even as Peter with the Good News for the circumcised— + +for he who worked through Peter in the apostleship with the circumcised also worked through me with the Gentiles— + +and when they perceived the grace that was given to me, James and Cephas and John, those who were reputed to be pillars, gave to Barnabas and me the right hand of fellowship, that we should go to the Gentiles, and they to the circumcision. + +They only asked us to remember the poorwhich very thing I was also zealous to do. + +

+

But when Peter came to Antioch, I resisted him to his face, because he stood condemned. + +For before some people came from James, he ate with the Gentiles. But when they came, he drew back and separated himself, fearing those who were of the circumcision. + +And the rest of the Jews joined him in his hypocrisy, so that even Barnabas was carried away with their hypocrisy. + +But when I saw that they didn’t walk uprightly according to the truth of the Good News, I said to Peter before them all, “If you, being a Jew, live as the Gentiles do, and not as the Jews do, why do you compel the Gentiles to live as the Jews do? + +

+

We, being Jews by nature and not Gentile sinners, + +yet knowing that a man is not justified by the works of the law but through faith in Jesus Christ, even we believed in Christ Jesus, that we might be justified by faith in Christ and not by the works of the law, because no flesh will be justified by the works of the law. + +But if while we sought to be justified in Christ, we ourselves also were found sinners, is Christ a servant of sin? Certainly not! + +For if I build up again those things which I destroyed, I prove myself a law-breaker. + +For I through the law died to the law, that I might live to God. + +I have been crucified with Christ, and it is no longer I who live, but Christ lives in me. That life which I now live in the flesh, I live by faith in the Son of God, who loved me and gave himself up for me. + +I don’t reject the grace of God. For if righteousness is through the law, then Christ died for nothing!” + +

+ + +

Foolish Galatians, who has bewitched you not to obey the truth, before whose eyes Jesus Christ was openly portrayed among you as crucified? + +I just want to learn this from you: Did you receive the Spirit by the works of the law, or by hearing of faith? + +Are you so foolish? Having begun in the Spirit, are you now completed in the flesh? + +Did you suffer so many things in vain, if it is indeed in vain? + +He therefore who supplies the Spirit to you and does miracles among you, does he do it by the works of the law, or by hearing of faith? + +Even so, Abrahambelieved God, and it was counted to him for righteousness.”3:6 +Genesis 15:6 + +Know therefore that those who are of faith are children of Abraham. + +The Scripture, foreseeing that God would justify the Gentiles by faith, preached the Good News beforehand to Abraham, saying, “In you all the nations will be blessed.”3:8 +Genesis 12:3; 18:18; 22:18 + +So then, those who are of faith are blessed with the faithful Abraham. + +

+

For as many as are of the works of the law are under a curse. For it is written, “Cursed is everyone who doesn’t continue in all things that are written in the book of the law, to do them.”3:10 +Deuteronomy 27:26 + +Now that no man is justified by the law before God is evident, for, “The righteous will live by faith.”3:11 +Habakkuk 2:4 + +The law is not of faith, but, “The man who does them will live by them.”3:12 +Leviticus 18:5 + +

+

Christ redeemed us from the curse of the law, having become a curse for us. For it is written, “Cursed is everyone who hangs on a tree,”3:13 +Deuteronomy 21:23 + +that the blessing of Abraham might come on the Gentiles through Christ Jesus, that we might receive the promise of the Spirit through faith. + +

+

Brothers, speaking of human terms, though it is only a man’s covenant, yet when it has been confirmed, no one makes it void or adds to it. + +Now the promises were spoken to Abraham and to his offspring.3:16 +or, seed He doesn’t say, “To descendants3:16 +or, seeds”, as of many, but as of one, “To your offspring”,3:16 +Genesis 12:7; 13:15; 24:7 which is Christ. + +Now I say this: A covenant confirmed beforehand by God in Christ, the law, which came four hundred thirty years after, does not annul, so as to make the promise of no effect. + +For if the inheritance is of the law, it is no more of promise; but God has granted it to Abraham by promise. + +

+

Then why is there the law? It was added because of transgressions, until the offspring should come to whom the promise has been made. It was ordained through angels by the hand of a mediator. + +Now a mediator is not between one, but God is one. + +

+

Is the law then against the promises of God? Certainly not! For if there had been a law given which could make alive, most certainly righteousness would have been of the law. + +But the Scripture imprisoned all things under sin, that the promise by faith in Jesus Christ might be given to those who believe. + +

+

But before faith came, we were kept in custody under the law, confined for the faith which should afterwards be revealed. + +So that the law has become our tutor to bring us to Christ, that we might be justified by faith. + +But now that faith has come, we are no longer under a tutor. + +For you are all children of God, through faith in Christ Jesus. + +For as many of you as were baptized into Christ have put on Christ. + +There is neither Jew nor Greek, there is neither slave nor free man, there is neither male nor female; for you are all one in Christ Jesus. + +If you are Christ’s, then you are Abraham’s offspring and heirs according to promise. + +

+ + +

But I say that so long as the heir is a child, he is no different from a bondservant, though he is lord of all, + +but is under guardians and stewards until the day appointed by the father. + +So we also, when we were children, were held in bondage under the elemental principles of the world. + +But when the fullness of the time came, God sent out his Son, born to a woman, born under the law, + +that he might redeem those who were under the law, that we might receive the adoption as children. + +And because you are children, God sent out the Spirit of his Son into your hearts, crying, “Abba,4:6 +Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. + Father!” + +So you are no longer a bondservant, but a son; and if a son, then an heir of God through Christ. + +

+

However at that time, not knowing God, you were in bondage to those who by nature are not gods. + +But now that you have come to know God, or rather to be known by God, why do you turn back again to the weak and miserable elemental principles, to which you desire to be in bondage all over again? + +You observe days, months, seasons, and years. + +I am afraid for you, that I might have wasted my labor for you. + +

+

I beg you, brothers, become as I am, for I also have become as you are. You did me no wrong, + +but you know that because of weakness in the flesh I preached the Good News to you the first time. + +That which was a temptation to you in my flesh, you didn’t despise nor reject; but you received me as an angel of God, even as Christ Jesus. + +

+

What was the blessing you enjoyed? For I testify to you that, if possible, you would have plucked out your eyes and given them to me. + +So then, have I become your enemy by telling you the truth? + +They zealously seek you in no good way. No, they desire to alienate you, that you may seek them. + +But it is always good to be zealous in a good cause, and not only when I am present with you. + +

+

My little children, of whom I am again in travail until Christ is formed in you— + +but I could wish to be present with you now, and to change my tone, for I am perplexed about you. + +

+

Tell me, you that desire to be under the law, don’t you listen to the law? + +For it is written that Abraham had two sons, one by the servant, and one by the free woman. + +However, the son by the servant was born according to the flesh, but the son by the free woman was born through promise. + +These things contain an allegory, for these are two covenants. One is from Mount Sinai, bearing children to bondage, which is Hagar. + +For this Hagar is Mount Sinai in Arabia, and answers to the Jerusalem that exists now, for she is in bondage with her children. + +But the Jerusalem that is above is free, which is the mother of us all. + +For it is written, +

+Rejoice, you barren who don’t bear. + +Break out and shout, you who don’t travail. + +For the desolate women have more children than her who has a husband.”4:27 +Isaiah 54:1 + + +

Now we, brothers, as Isaac was, are children of promise. + +But as then, he who was born according to the flesh persecuted him who was born according to the Spirit, so also it is now. + +However, what does the Scripture say? “Throw out the servant and her son, for the son of the servant will not inherit with the son of the free woman.”4:30 +Genesis 21:10 + +So then, brothers, we are not children of a servant, but of the free woman. + +

+ + +

Stand firm therefore in the liberty by which Christ has made us free, and don’t be entangled again with a yoke of bondage. + +

+

Behold, I, Paul, tell you that if you receive circumcision, Christ will profit you nothing. + +Yes, I testify again to every man who receives circumcision that he is a debtor to do the whole law. + +You are alienated from Christ, you who desire to be justified by the law. You have fallen away from grace. + +For we through the Spirit, by faith wait for the hope of righteousness. + +For in Christ Jesus neither circumcision nor uncircumcision amounts to anything, but faith working through love. + +

+

You were running well! Who interfered with you that you should not obey the truth? + +This persuasion is not from him who calls you. + +A little yeast grows through the whole lump. + +I have confidence toward you in the Lord that you will think no other way. But he who troubles you will bear his judgment, whoever he is. + +

+

But I, brothers, if I still preach circumcision, why am I still persecuted? Then the stumbling block of the cross has been removed. + +I wish that those who disturb you would cut themselves off. + +

+

For you, brothers, were called for freedom. Only don’t use your freedom as an opportunity for the flesh, but through love be servants to one another. + +For the whole law is fulfilled in one word, in this: “You shall love your neighbor as yourself.”5:14 +Leviticus 19:18 + +But if you bite and devour one another, be careful that you don’t consume one another. + +

+

But I say, walk by the Spirit, and you won’t fulfill the lust of the flesh. + +For the flesh lusts against the Spirit, and the Spirit against the flesh; and these are contrary to one another, that you may not do the things that you desire. + +But if you are led by the Spirit, you are not under the law. + +Now the deeds of the flesh are obvious, which are: adultery, sexual immorality, uncleanness, lustfulness, + +idolatry, sorcery, hatred, strife, jealousies, outbursts of anger, rivalries, divisions, heresies, + +envy, murders, drunkenness, orgies, and things like these; of which I forewarn you, even as I also forewarned you, that those who practice such things will not inherit God’s Kingdom. + +

+

But the fruit of the Spirit is love, joy, peace, patience, kindness, goodness, faith,5:22 +or, faithfulness + +gentleness, and self-control. Against such things there is no law. + +Those who belong to Christ have crucified the flesh with its passions and lusts. + +

+

If we live by the Spirit, let’s also walk by the Spirit. + +Let’s not become conceited, provoking one another, and envying one another. + +

+ + +

Brothers, even if a man is caught in some fault, you who are spiritual must restore such a one in a spirit of gentleness, looking to yourself so that you also aren’t tempted. + +Bear one another’s burdens, and so fulfill the law of Christ. + +For if a man thinks himself to be something when he is nothing, he deceives himself. + +But let each man examine his own work, and then he will have reason to boast in himself, and not in someone else. + +For each man will bear his own burden. + +

+

But let him who is taught in the word share all good things with him who teaches. + +

+

Don’t be deceived. God is not mocked, for whatever a man sows, that he will also reap. + +For he who sows to his own flesh will from the flesh reap corruption. But he who sows to the Spirit will from the Spirit reap eternal life. + +Let’s not be weary in doing good, for we will reap in due season if we don’t give up. + +So then, as we have opportunity, lets do what is good toward all men, and especially toward those who are of the household of the faith. + +

+

See with what large letters I write to you with my own hand. + +As many as desire to make a good impression in the flesh compel you to be circumcised, just so they may not be persecuted for the cross of Christ. + +For even they who receive circumcision don’t keep the law themselves, but they desire to have you circumcised, so that they may boast in your flesh. + +But far be it from me to boast except in the cross of our Lord Jesus Christ, through which the world has been crucified to me, and I to the world. + +For in Christ Jesus neither is circumcision anything, nor uncircumcision, but a new creation. + +As many as walk by this rule, peace and mercy be on them, and on God’s Israel. + +

+

From now on, let no one cause me any trouble, for I bear the marks of the Lord Jesus branded on my body. + +

+

The grace of our Lord Jesus Christ be with your spirit, brothers. Amen. + +

+
+49-EPH-web.sfm World English Bible (WEB) +Ephesians +Paul’s Letter to the Ephesians +Ephesians +Eph +

Paul’s Letter to the Ephesians +

+ + +

Paul, an apostle of Christ1:1 +“Christ” means “Anointed One”. Jesus through the will of God, to the saints who are at Ephesus, and the faithful in Christ Jesus: + +Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

Blessed be the God and Father of our Lord Jesus Christ, who has blessed us with every spiritual blessing in the heavenly places in Christ, + +even as he chose us in him before the foundation of the world, that we would be holy and without defect before him in love, + +having predestined us for adoption as children through Jesus Christ to himself, according to the good pleasure of his desire, + +to the praise of the glory of his grace, by which he freely gave us favor in the Beloved. + +In him we have our redemption through his blood, the forgiveness of our trespasses, according to the riches of his grace + +which he made to abound toward us in all wisdom and prudence, + +making known to us the mystery of his will, according to his good pleasure which he purposed in him + +to an administration of the fullness of the times, to sum up all things in Christ, the things in the heavens and the things on the earth, in him. + +We were also assigned an inheritance in him, having been foreordained according to the purpose of him who does all things after the counsel of his will, + +to the end that we should be to the praise of his glory, we who had before hoped in Christ. + +In him you also, having heard the word of the truth, the Good News of your salvationin whom, having also believed, you were sealed with the promised Holy Spirit, + +who is a pledge of our inheritance, to the redemption of God’s own possession, to the praise of his glory. + +

+

For this cause I also, having heard of the faith in the Lord Jesus which is among you and the love which you have toward all the saints, + +don’t cease to give thanks for you, making mention of you in my prayers, + +that the God of our Lord Jesus Christ, the Father of glory, may give to you a spirit of wisdom and revelation in the knowledge of him, + +having the eyes of your hearts1:18 +TR reads “understanding” instead of “hearts” enlightened, that you may know what is the hope of his calling, and what are the riches of the glory of his inheritance in the saints, + +and what is the exceeding greatness of his power toward us who believe, according to that working of the strength of his might + +which he worked in Christ when he raised him from the dead and made him to sit at his right hand in the heavenly places, + +far above all rule, authority, power, dominion, and every name that is named, not only in this age, but also in that which is to come. + +He put all things in subjection under his feet, and gave him to be head over all things for the assembly, + +which is his body, the fullness of him who fills all in all. + +

+ + +

You were made alive when you were dead in transgressions and sins, + +in which you once walked according to the course of this world, according to the prince of the power of the air, the spirit who now works in the children of disobedience. + +We also all once lived among them in the lusts of our flesh, doing the desires of the flesh and of the mind, and were by nature children of wrath, even as the rest. + +But God, being rich in mercy, for his great love with which he loved us, + +even when we were dead through our trespasses, made us alive together with Christby grace you have been saved— + +and raised us up with him, and made us to sit with him in the heavenly places in Christ Jesus, + +that in the ages to come he might show the exceeding riches of his grace in kindness toward us in Christ Jesus; + +for by grace you have been saved through faith, and that not of yourselves; it is the gift of God, + +not of works, that no one would boast. + +For we are his workmanship, created in Christ Jesus for good works, which God prepared before that we would walk in them. + +

+

Therefore remember that once you, the Gentiles in the flesh, who are called “uncircumcision” by that which is calledcircumcision” (in the flesh, made by hands), + +that you were at that time separate from Christ, alienated from the commonwealth of Israel, and strangers from the covenants of the promise, having no hope and without God in the world. + +But now in Christ Jesus you who once were far off are made near in the blood of Christ. + +For he is our peace, who made both one, and broke down the middle wall of separation, + +having abolished in his flesh the hostility, the law of commandments contained in ordinances, that he might create in himself one new man of the two, making peace, + +and might reconcile them both in one body to God through the cross, having killed the hostility through it. + +He came and preached peace to you who were far off and to those who were near. + +For through him we both have our access in one Spirit to the Father. + +So then you are no longer strangers and foreigners, but you are fellow citizens with the saints and of the household of God, + +being built on the foundation of the apostles and prophets, Christ Jesus himself being the chief cornerstone; + +in whom the whole building, fitted together, grows into a holy temple in the Lord; + +in whom you also are built together for a habitation of God in the Spirit. + +

+ + +

For this cause I, Paul, am the prisoner of Christ Jesus on behalf of you Gentiles, + +if it is so that you have heard of the administration of that grace of God which was given me toward you, + +how that by revelation the mystery was made known to me, as I wrote before in few words, + +by which, when you read, you can perceive my understanding in the mystery of Christ, + +which in other generations was not made known to the children of men, as it has now been revealed to his holy apostles and prophets in the Spirit, + +that the Gentiles are fellow heirs and fellow members of the body, and fellow partakers of his promise in Christ Jesus through the Good News, + +of which I was made a servant according to the gift of that grace of God which was given me according to the working of his power. + +To me, the very least of all saints, was this grace given, to preach to the Gentiles the unsearchable riches of Christ, + +and to make all men see what is the administration3:9 +TR reads “fellowship” instead of “administration” of the mystery which for ages has been hidden in God, who created all things through Jesus Christ, + +to the intent that now through the assembly the manifold wisdom of God might be made known to the principalities and the powers in the heavenly places, + +according to the eternal purpose which he accomplished in Christ Jesus our Lord. + +In him we have boldness and access in confidence through our faith in him. + +Therefore I ask that you may not lose heart at my troubles for you, which are your glory. + +

+

For this cause, I bow my knees to the Father of our Lord Jesus Christ, + +from whom every family in heaven and on earth is named, + +that he would grant you, according to the riches of his glory, that you may be strengthened with power through his Spirit in the inner person, + +that Christ may dwell in your hearts through faith, to the end that you, being rooted and grounded in love, + +may be strengthened to comprehend with all the saints what is the width and length and height and depth, + +and to know Christ’s love which surpasses knowledge, that you may be filled with all the fullness of God. + +

+

Now to him who is able to do exceedingly abundantly above all that we ask or think, according to the power that works in us, + +to him be the glory in the assembly and in Christ Jesus to all generations, forever and ever. Amen. + +

+ + +

I therefore, the prisoner in the Lord, beg you to walk worthily of the calling with which you were called, + +with all lowliness and humility, with patience, bearing with one another in love, + +being eager to keep the unity of the Spirit in the bond of peace. + +There is one body and one Spirit, even as you also were called in one hope of your calling, + +one Lord, one faith, one baptism, + +one God and Father of all, who is over all and through all and in us all. + +But to each one of us, the grace was given according to the measure of the gift of Christ. + +Therefore he says, +

+When he ascended on high, + +he led captivity captive, + +and gave gifts to people.”4:8 +Psalms 68:18 + + +

Now this, “He ascended”, what is it but that he also first descended into the lower parts of the earth? + +He who descended is the one who also ascended far above all the heavens, that he might fill all things. + +

+

He gave some to be apostles; and some, prophets; and some, evangelists; and some, shepherds4:11 +or, pastors and teachers; + +for the perfecting of the saints, to the work of serving, to the building up of the body of Christ, + +until we all attain to the unity of the faith and of the knowledge of the Son of God, to a full grown man, to the measure of the stature of the fullness of Christ, + +that we may no longer be children, tossed back and forth and carried about with every wind of doctrine, by the trickery of men, in craftiness, after the wiles of error; + +but speaking truth in love, we may grow up in all things into him who is the head, Christ, + +from whom all the body, being fitted and knit together through that which every joint supplies, according to the working in measure of each individual part, makes the body increase to the building up of itself in love. + +

+

This I say therefore, and testify in the Lord, that you no longer walk as the rest of the Gentiles also walk, in the futility of their mind, + +being darkened in their understanding, alienated from the life of God because of the ignorance that is in them, because of the hardening of their hearts. + +They, having become callous, gave themselves up to lust, to work all uncleanness with greediness. + +But you didn’t learn Christ that way, + +if indeed you heard him and were taught in him, even as truth is in Jesus: + +that you put away, as concerning your former way of life, the old man that grows corrupt after the lusts of deceit, + +and that you be renewed in the spirit of your mind, + +and put on the new man, who in the likeness of God has been created in righteousness and holiness of truth. + +

+

Therefore, putting away falsehood, speak truth each one with his neighbor, for we are members of one another. + +Be angry, and don’t sin.”4:26 +Psalms 4:4 Don’t let the sun go down on your wrath, + +and don’t give place4:27 +or, opportunity to the devil. + +Let him who stole steal no more; but rather let him labor, producing with his hands something that is good, that he may have something to give to him who has need. + +Let no corrupt speech proceed out of your mouth, but only what is good for building others up as the need may be, that it may give grace to those who hear. + +Don’t grieve the Holy Spirit of God, in whom you were sealed for the day of redemption. + +Let all bitterness, wrath, anger, outcry, and slander be put away from you, with all malice. + +And be kind to one another, tender hearted, forgiving each other, just as God also in Christ forgave you. + +

+ + +

Be therefore imitators of God, as beloved children. + +Walk in love, even as Christ also loved us and gave himself up for us, an offering and a sacrifice to God for a sweet-smelling fragrance. + +

+

But sexual immorality, and all uncleanness or covetousness, let it not even be mentioned among you, as becomes saints; + +nor filthiness, nor foolish talking, nor jesting, which are not appropriate, but rather giving of thanks. + +

+

Know this for sure, that no sexually immoral person, nor unclean person, nor covetous man (who is an idolater), has any inheritance in the Kingdom of Christ and God. + +

+

Let no one deceive you with empty words, for because of these things the wrath of God comes on the children of disobedience. + +Therefore don’t be partakers with them. + +For you were once darkness, but are now light in the Lord. Walk as children of light, + +for the fruit of the Spirit is in all goodness and righteousness and truth, + +proving what is well pleasing to the Lord. + +Have no fellowship with the unfruitful deeds of darkness, but rather even reprove them. + +For it is a shame even to speak of the things which are done by them in secret. + +But all things, when they are reproved, are revealed by the light, for everything that reveals is light. + +Therefore he says, “Awake, you who sleep, and arise from the dead, and Christ will shine on you.” + +

+

Therefore watch carefully how you walk, not as unwise, but as wise, + +redeeming the time, because the days are evil. + +Therefore, don’t be foolish, but understand what the will of the Lord is. + +Don’t be drunken with wine, in which is dissipation, but be filled with the Spirit, + +speaking to one another in psalms, hymns, and spiritual songs; singing and making melody in your heart to the Lord; + +giving thanks always concerning all things in the name of our Lord Jesus Christ to God, even the Father; + +subjecting yourselves to one another in the fear of Christ. + +

+

Wives, be subject to your own husbands, as to the Lord. + +For the husband is the head of the wife, as Christ also is the head of the assembly, being himself the savior of the body. + +But as the assembly is subject to Christ, so let the wives also be to their own husbands in everything. + +

+

Husbands, love your wives, even as Christ also loved the assembly and gave himself up for her, + +that he might sanctify her, having cleansed her by the washing of water with the word, + +that he might present the assembly to himself gloriously, not having spot or wrinkle or any such thing, but that she should be holy and without defect. + +Even so husbands also ought to love their own wives as their own bodies. He who loves his own wife loves himself. + +For no man ever hated his own flesh, but nourishes and cherishes it, even as the Lord also does the assembly, + +because we are members of his body, of his flesh and bones. + +For this cause a man will leave his father and mother and will be joined to his wife. Then the two will become one flesh.”5:31 +Genesis 2:24 + +This mystery is great, but I speak concerning Christ and the assembly. + +Nevertheless each of you must also love his own wife even as himself; and let the wife see that she respects her husband. + +

+ + +

Children, obey your parents in the Lord, for this is right. + +Honor your father and mother,” which is the first commandment with a promise: + +that it may be well with you, and you may live long on the earth.”6:3 +Deuteronomy 5:16 + +

+

You fathers, don’t provoke your children to wrath, but nurture them in the discipline and instruction of the Lord. + +

+

Servants, be obedient to those who according to the flesh are your masters, with fear and trembling, in singleness of your heart, as to Christ, + +not in the way of service only when eyes are on you, as men pleasers, but as servants of Christ, doing the will of God from the heart, + +with good will doing service as to the Lord and not to men, + +knowing that whatever good thing each one does, he will receive the same good again from the Lord, whether he is bound or free. + +

+

You masters, do the same things to them, and give up threatening, knowing that he who is both their Master and yours is in heaven, and there is no partiality with him. + +

+

Finally, be strong in the Lord and in the strength of his might. + +Put on the whole armor of God, that you may be able to stand against the wiles of the devil. + +For our wrestling is not against flesh and blood, but against the principalities, against the powers, against the world’s rulers of the darkness of this age, and against the spiritual forces of wickedness in the heavenly places. + +Therefore put on the whole armor of God, that you may be able to withstand in the evil day, and having done all, to stand. + +Stand therefore, having the utility belt of truth buckled around your waist, and having put on the breastplate of righteousness, + +and having fitted your feet with the preparation of the Good News of peace, + +above all, taking up the shield of faith, with which you will be able to quench all the fiery darts of the evil one. + +And take the helmet of salvation, and the sword of the Spirit, which is the word6:17 +from the Greek “ῥῆμα” (rhema), which means “spoken word” of God; + +with all prayer and requests, praying at all times in the Spirit, and being watchful to this end in all perseverance and requests for all the saints. + +Pray for me, that utterance may be given to me in opening my mouth, to make known with boldness the mystery of the Good News, + +for which I am an ambassador in chains; that in it I may speak boldly, as I ought to speak. + +

+

But that you also may know my affairs, how I am doing, Tychicus, the beloved brother and faithful servant in the Lord, will make known to you all things. + +I have sent him to you for this very purpose, that you may know our state and that he may comfort your hearts. + +

+

Peace be to the brothers, and love with faith, from God the Father and the Lord Jesus Christ. + +Grace be with all those who love our Lord Jesus Christ with incorruptible love. Amen. + +

+
+50-PHP-web.sfm World English Bible (WEB) +Philippians +Paul’s Letter to the Philippians +Philippians +Php +

Paul’s Letter to the Philippians +

+ + +

Paul and Timothy, servants of Jesus Christ,1:1 +“Christ” means “Anointed One”. to all the saints in Christ Jesus who are at Philippi, with the overseers1:1 +or, superintendents, or bishops and servants:1:1 +Or, deacons + +Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

I thank my God whenever I remember you, + +always in every request of mine on behalf of you all, making my requests with joy, + +for your partnership1:5 +The word translated “partnership” (κοινωνίᾳ) also means “fellowship” and “sharing”. in furtherance of the Good News from the first day until now; + +being confident of this very thing, that he who began a good work in you will complete it until the day of Jesus Christ. + +It is even right for me to think this way on behalf of all of you, because I have you in my heart, because both in my bonds and in the defense and confirmation of the Good News, you all are partakers with me of grace. + +For God is my witness, how I long after all of you in the tender mercies of Christ Jesus. + +

+

This I pray, that your love may abound yet more and more in knowledge and all discernment, + +so that you may approve the things that are excellent, that you may be sincere and without offense to the day of Christ, + +being filled with the fruits of righteousness which are through Jesus Christ, to the glory and praise of God. + +

+

Now I desire to have you know, brothers,1:12 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” that the things which happened to me have turned out rather to the progress of the Good News, + +so that it became evident to the whole palace1:13 +or, praetorian + guard, and to all the rest, that my bonds are in Christ, + +and that most of the brothers in the Lord, being confident through my bonds, are more abundantly bold to speak the word of God without fear. + +Some indeed preach Christ even out of envy and strife, and some also out of good will. + +The former insincerely preach Christ from selfish ambition, thinking that they add affliction to my chains; + +but the latter out of love, knowing that I am appointed for the defense of the Good News. + +

+

What does it matter? Only that in every way, whether in pretense or in truth, Christ is proclaimed. I rejoice in this, yes, and will rejoice. + +For I know that this will turn out to my salvation through your prayers and the supply of the Spirit of Jesus Christ, + +according to my earnest expectation and hope, that I will in no way be disappointed, but with all boldness, as always, now also Christ will be magnified in my body, whether by life or by death. + +For to me to live is Christ, and to die is gain. + +But if I live on in the flesh, this will bring fruit from my work; yet I don’t know what I will choose. + +But I am hard pressed between the two, having the desire to depart and be with Christ, which is far better. + +Yet to remain in the flesh is more needful for your sake. + +Having this confidence, I know that I will remain, yes, and remain with you all for your progress and joy in the faith, + +that your boasting1:26 +or, rejoicing may abound in Christ Jesus in me through my presence with you again. + +

+

Only let your way of life be worthy of the Good News of Christ, that whether I come and see you or am absent, I may hear of your state, that you stand firm in one spirit, with one soul striving for the faith of the Good News; + +and in nothing frightened by the adversaries, which is for them a proof of destruction, but to you of salvation, and that from God. + +Because it has been granted to you on behalf of Christ, not only to believe in him, but also to suffer on his behalf, + +having the same conflict which you saw in me and now hear is in me. + +

+ + +

If therefore there is any exhortation in Christ, if any consolation of love, if any fellowship of the Spirit, if any tender mercies and compassion, + +make my joy full by being like-minded, having the same love, being of one accord, of one mind; + +doing nothing through rivalry or through conceit, but in humility, each counting others better than himself; + +each of you not just looking to his own things, but each of you also to the things of others. + +

+

Have this in your mind, which was also in Christ Jesus, + +who, existing in the form of God, didn’t consider equality with God a thing to be grasped, + +but emptied himself, taking the form of a servant, being made in the likeness of men. + +And being found in human form, he humbled himself, becoming obedient to the point of death, yes, the death of the cross. + +Therefore God also highly exalted him, and gave to him the name which is above every name, + +that at the name of Jesus every knee should bow, of those in heaven, those on earth, and those under the earth, + +and that every tongue should confess that Jesus Christ is Lord, to the glory of God the Father. + +

+

So then, my beloved, even as you have always obeyed, not only in my presence, but now much more in my absence, work out your own salvation with fear and trembling. + +For it is God who works in you both to will and to work for his good pleasure. + +

+

Do all things without complaining and arguing, + +that you may become blameless and harmless, children of God without defect in the middle of a crooked and perverse generation, among whom you are seen as lights in the world, + +holding up the word of life, that I may have something to boast in the day of Christ that I didn’t run in vain nor labor in vain. + +Yes, and if I am poured out on the sacrifice and service of your faith, I am glad and rejoice with you all. + +In the same way, you also should be glad and rejoice with me. + +

+

But I hope in the Lord Jesus to send Timothy to you soon, that I also may be cheered up when I know how you are doing. + +For I have no one else like-minded, who will truly care about you. + +For they all seek their own, not the things of Jesus Christ. + +But you know that he has proved himself. As a child serves a father, so he served with me in furtherance of the Good News. + +Therefore I hope to send him at once, as soon as I see how it will go with me. + +But I trust in the Lord that I myself also will come shortly. + +

+

But I thought it necessary to send to you Epaphroditus, my brother, fellow worker, fellow soldier, and your apostle and servant of my need, + +since he longed for you all, and was very troubled because you had heard that he was sick. + +For indeed he was sick nearly to death, but God had mercy on him, and not on him only, but on me also, that I might not have sorrow on sorrow. + +I have sent him therefore the more diligently, that when you see him again, you may rejoice, and that I may be the less sorrowful. + +Receive him therefore in the Lord with all joy, and hold such people in honor, + +because for the work of Christ he came near to death, risking his life to supply that which was lacking in your service toward me. + +

+ + +

Finally, my brothers, rejoice in the Lord! To write the same things to you, to me indeed is not tiresome, but for you it is safe. + +

+

Beware of the dogs; beware of the evil workers; beware of the false circumcision. + +For we are the circumcision, who worship God in the Spirit, and rejoice in Christ Jesus, and have no confidence in the flesh; + +though I myself might have confidence even in the flesh. If any other man thinks that he has confidence in the flesh, I yet more: + +circumcised the eighth day, of the stock of Israel, of the tribe of Benjamin, a Hebrew of Hebrews; concerning the law, a Pharisee; + +concerning zeal, persecuting the assembly; concerning the righteousness which is in the law, found blameless. + +

+

However, I consider those things that were gain to me as a loss for Christ. + +Yes most certainly, and I count all things to be a loss for the excellency of the knowledge of Christ Jesus, my Lord, for whom I suffered the loss of all things, and count them nothing but refuse, that I may gain Christ + +and be found in him, not having a righteousness of my own, that which is of the law, but that which is through faith in Christ, the righteousness which is from God by faith, + +that I may know him and the power of his resurrection, and the fellowship of his sufferings, becoming conformed to his death, + +if by any means I may attain to the resurrection from the dead. + +Not that I have already obtained, or am already made perfect; but I press on, that I may take hold of that for which also I was taken hold of by Christ Jesus. + +

+

Brothers, I don’t regard myself as yet having taken hold, but one thing I do: forgetting the things which are behind and stretching forward to the things which are before, + +I press on toward the goal for the prize of the high calling of God in Christ Jesus. + +Let us therefore, as many as are perfect, think this way. If in anything you think otherwise, God will also reveal that to you. + +Nevertheless, to the extent that we have already attained, let’s walk by the same rule. Let’s be of the same mind. + +

+

Brothers, be imitators together of me, and note those who walk this way, even as you have us for an example. + +For many walk, of whom I told you often, and now tell you even weeping, as the enemies of the cross of Christ, + +whose end is destruction, whose god is the belly, and whose glory is in their shame, who think about earthly things. + +For our citizenship is in heaven, from where we also wait for a Savior, the Lord Jesus Christ, + +who will change the body of our humiliation to be conformed to the body of his glory, according to the working by which he is able even to subject all things to himself. + +

+ + +

Therefore, my brothers, beloved and longed for, my joy and crown, stand firm in the Lord in this way, my beloved. + +

+

I exhort Euodia, and I exhort Syntyche, to think the same way in the Lord. + +Yes, I beg you also, true partner, help these women, for they labored with me in the Good News with Clement also, and the rest of my fellow workers, whose names are in the book of life. + +

+

Rejoice in the Lord always! Again I will say, “Rejoice!” + +Let your gentleness be known to all men. The Lord is at hand. + +In nothing be anxious, but in everything, by prayer and petition with thanksgiving, let your requests be made known to God. + +And the peace of God, which surpasses all understanding, will guard your hearts and your thoughts in Christ Jesus. + +

+

Finally, brothers, whatever things are true, whatever things are honorable, whatever things are just, whatever things are pure, whatever things are lovely, whatever things are of good report: if there is any virtue and if there is anything worthy of praise, think about these things. + +Do the things which you learned, received, heard, and saw in me, and the God of peace will be with you. + +

+

But I rejoice in the Lord greatly that now at length you have revived your thought for me; in which you did indeed take thought, but you lacked opportunity. + +Not that I speak because of lack, for I have learned in whatever state I am, to be content in it. + +I know how to be humbled, and I also know how to abound. In any and all circumstances I have learned the secret both to be filled and to be hungry, both to abound and to be in need. + +I can do all things through Christ who strengthens me. + +However you did well that you shared in my affliction. + +You yourselves also know, you Philippians, that in the beginning of the Good News, when I departed from Macedonia, no assembly shared with me in the matter of giving and receiving but you only. + +For even in Thessalonica you sent once and again to my need. + +Not that I seek for the gift, but I seek for the fruit that increases to your account. + +But I have all things and abound. I am filled, having received from Epaphroditus the things that came from you, a sweet-smelling fragrance, an acceptable and well-pleasing sacrifice to God. + +My God will supply every need of yours according to his riches in glory in Christ Jesus. + +Now to our God and Father be the glory forever and ever! Amen. + +

+

Greet every saint in Christ Jesus. The brothers who are with me greet you. + +All the saints greet you, especially those who are of Caesar’s household. + +

+

The grace of the Lord Jesus Christ be with you all. Amen. + +

+
+51-COL-web.sfm World English Bible (WEB) +Colossians +Paul’s Letter to the Colossians +Colossians +Col +

Paul’s Letter to the Colossians +

+ + +

Paul, an apostle of Christ1:1 +“Christ” means “Anointed One”. Jesus through the will of God, and Timothy our brother, + +to the saints and faithful brothers1:2 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” in Christ at Colossae: Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

We give thanks to God the Father of our Lord Jesus Christ, praying always for you, + +having heard of your faith in Christ Jesus and of the love which you have toward all the saints, + +because of the hope which is laid up for you in the heavens, of which you heard before in the word of the truth of the Good News + +which has come to you, even as it is in all the world and is bearing fruit and growing, as it does in you also, since the day you heard and knew the grace of God in truth, + +even as you learned from Epaphras our beloved fellow servant, who is a faithful servant of Christ on your1:7 +NU reads +our behalf, + +who also declared to us your love in the Spirit. + +

+

For this cause, we also, since the day we heard this, don’t cease praying and making requests for you, that you may be filled with the knowledge of his will in all spiritual wisdom and understanding, + +that you may walk worthily of the Lord, to please him in all respects, bearing fruit in every good work and increasing in the knowledge of God, + +strengthened with all power, according to the might of his glory, for all endurance and perseverance with joy, + +giving thanks to the Father, who made us fit to be partakers of the inheritance of the saints in light, + +who delivered us out of the power of darkness, and translated us into the Kingdom of the Son of his love, + +in whom we have our redemption,1:14 +TR adds “through his blood,” + the forgiveness of our sins. + +

+

He is the image of the invisible God, the firstborn of all creation. + +For by him all things were created in the heavens and on the earth, visible things and invisible things, whether thrones or dominions or principalities or powers. All things have been created through him and for him. + +He is before all things, and in him all things are held together. + +He is the head of the body, the assembly, who is the beginning, the firstborn from the dead, that in all things he might have the preeminence. + +For all the fullness was pleased to dwell in him, + +and through him to reconcile all things to himself by him, whether things on the earth or things in the heavens, having made peace through the blood of his cross. + +

+

You, being in past times alienated and enemies in your mind in your evil deeds, + +yet now he has reconciled in the body of his flesh through death, to present you holy and without defect and blameless before him, + +if it is so that you continue in the faith, grounded and steadfast, and not moved away from the hope of the Good News which you heard, which was proclaimed in all creation under heaven, of which I, Paul, was made a servant. + +

+

Now I rejoice in my sufferings for your sake, and fill up on my part that which is lacking of the afflictions of Christ in my flesh for his body’s sake, which is the assembly, + +of which I was made a servant according to the stewardship of God which was given me toward you to fulfill the word of God, + +the mystery which has been hidden for ages and generations. But now it has been revealed to his saints, + +to whom God was pleased to make known what are the riches of the glory of this mystery among the Gentiles, which is Christ in you, the hope of glory. + +We proclaim him, admonishing every man and teaching every man in all wisdom, that we may present every man perfect in Christ Jesus; + +for which I also labor, striving according to his working, which works in me mightily. + +

+ + +

For I desire to have you know how greatly I struggle for you and for those at Laodicea, and for as many as have not seen my face in the flesh; + +that their hearts may be comforted, they being knit together in love, and gaining all riches of the full assurance of understanding, that they may know the mystery of God, both of the Father and of Christ, + +in whom all the treasures of wisdom and knowledge are hidden. + +Now I say this that no one may delude you with persuasiveness of speech. + +For though I am absent in the flesh, yet I am with you in the spirit, rejoicing and seeing your order, and the steadfastness of your faith in Christ. + +

+

As therefore you received Christ Jesus the Lord, walk in him, + +rooted and built up in him and established in the faith, even as you were taught, abounding in it in thanksgiving. + +

+

Be careful that you don’t let anyone rob you through his philosophy and vain deceit, after the tradition of men, after the elemental spirits of the world, and not after Christ. + +For in him all the fullness of the Deity dwells bodily, + +and in him you are made full, who is the head of all principality and power. + +In him you were also circumcised with a circumcision not made with hands, in the putting off of the body of the sins of the flesh, in the circumcision of Christ, + +having been buried with him in baptism, in which you were also raised with him through faith in the working of God, who raised him from the dead. + +You were dead through your trespasses and the uncircumcision of your flesh. He made you alive together with him, having forgiven us all our trespasses, + +wiping out the handwriting in ordinances which was against us. He has taken it out of the way, nailing it to the cross. + +Having stripped the principalities and the powers, he made a show of them openly, triumphing over them in it. + +

+

Let no one therefore judge you in eating or drinking, or with respect to a feast day or a new moon or a Sabbath day, + +which are a shadow of the things to come; but the body is Christ’s. + +Let no one rob you of your prize by self-abasement and worshiping of the angels, dwelling in the things which he has not seen, vainly puffed up by his fleshly mind, + +and not holding firmly to the Head, from whom all the body, being supplied and knit together through the joints and ligaments, grows with God’s growth. + +

+

If you died with Christ from the elemental spirits of the world, why, as though living in the world, do you subject yourselves to ordinances, + +“Don’t handle, nor taste, nor touch” + +(all of which perish with use), according to the precepts and doctrines of men? + +These things indeed appear like wisdom in self-imposed worship, humility, and severity to the body, but aren’t of any value against the indulgence of the flesh. + +

+ + +

If then you were raised together with Christ, seek the things that are above, where Christ is, seated on the right hand of God. + +Set your mind on the things that are above, not on the things that are on the earth. + +For you died, and your life is hidden with Christ in God. + +When Christ, our life, is revealed, then you will also be revealed with him in glory. + +

+

Put to death therefore your members which are on the earth: sexual immorality, uncleanness, depraved passion, evil desire, and covetousness, which is idolatry. + +For these thingssake the wrath of God comes on the children of disobedience. + +You also once walked in those, when you lived in them, + +but now you must put them all away: anger, wrath, malice, slander, and shameful speaking out of your mouth. + +Don’t lie to one another, seeing that you have put off the old man with his doings, + +and have put on the new man, who is being renewed in knowledge after the image of his Creator, + +where there can’t be Greek and Jew, circumcision and uncircumcision, barbarian, Scythian, bondservant, or free person; but Christ is all, and in all. + +

+

Put on therefore, as God’s chosen ones, holy and beloved, a heart of compassion, kindness, lowliness, humility, and perseverance; + +bearing with one another, and forgiving each other, if any man has a complaint against any; even as Christ forgave you, so you also do. + +

+

Above all these things, walk in love, which is the bond of perfection. + +And let the peace of God rule in your hearts, to which also you were called in one body, and be thankful. + +Let the word of Christ dwell in you richly; in all wisdom teaching and admonishing one another with psalms, hymns, and spiritual songs, singing with grace in your heart to the Lord. + +

+

Whatever you do, in word or in deed, do all in the name of the Lord Jesus, giving thanks to God the Father through him. + +

+

Wives, be in subjection to your husbands, as is fitting in the Lord. + +

+

Husbands, love your wives, and don’t be bitter against them. + +

+

Children, obey your parents in all things, for this pleases the Lord. + +

+

Fathers, don’t provoke your children, so that they won’t be discouraged. + +

+

Servants, obey in all things those who are your masters according to the flesh, not just when they are looking, as men pleasers, but in singleness of heart, fearing God. + +And whatever you do, work heartily, as for the Lord and not for men, + +knowing that from the Lord you will receive the reward of the inheritance; for you serve the Lord Christ. + +But he who does wrong will receive again for the wrong that he has done, and there is no partiality. + +

+ + +

Masters, give to your servants that which is just and equal, knowing that you also have a Master in heaven. + +

+

Continue steadfastly in prayer, watching in it with thanksgiving, + +praying together for us also, that God may open to us a door for the word, to speak the mystery of Christ, for which I am also in bonds, + +that I may reveal it as I ought to speak. + +

+

Walk in wisdom toward those who are outside, redeeming the time. + +Let your speech always be with grace, seasoned with salt, that you may know how you ought to answer each one. + +

+

All my affairs will be made known to you by Tychicus, the beloved brother, faithful servant, and fellow bondservant in the Lord. + +I am sending him to you for this very purpose, that he may know your circumstances and comfort your hearts, + +together with Onesimus, the faithful and beloved brother, who is one of you. They will make known to you everything that is going on here. + +

+

Aristarchus, my fellow prisoner, greets you, and Mark the cousin of Barnabas (concerning whom you received instructions, “if he comes to you, receive him”), + +and Jesus who is called Justus. These are my only fellow workers for God’s Kingdom who are of the circumcision, men who have been a comfort to me. + +

+

Epaphras, who is one of you, a servant of Christ, salutes you, always striving for you in his prayers, that you may stand perfect and complete in all the will of God. + +For I testify about him that he has great zeal for you, and for those in Laodicea, and for those in Hierapolis. + +Luke the beloved physician and Demas greet you. + +Greet the brothers who are in Laodicea, with Nymphas and the assembly that is in his house. + +When this letter has been read among you, cause it to be read also in the assembly of the Laodiceans, and that you also read the letter from Laodicea. + +Tell Archippus, “Take heed to the ministry which you have received in the Lord, that you fulfill it.” + +

+

I, Paul, write this greeting with my own hand. Remember my chains. Grace be with you. Amen. + +

+
+52-1TH-web.sfm World English Bible (WEB) +1 Thessalonians +Paul’s First Letter to the Thessalonians +1 Thessalonians +1Th +

Paul’s First Letter to the Thessalonians +

+ + +

Paul, Silvanus, and Timothy, to the assembly of the Thessalonians in God the Father and the Lord Jesus Christ:1:1 +“Christ” means “Anointed One”. Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

We always give thanks to God for all of you, mentioning you in our prayers, + +remembering without ceasing your work of faith and labor of love and perseverance of hope in our Lord Jesus Christ, before our God and Father. + +We know, brothers1:4 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” + loved by God, that you are chosen, + +and that our Good News came to you not in word only, but also in power, and in the Holy Spirit and with much assurance. You know what kind of men we showed ourselves to be among you for your sake. + +You became imitators of us and of the Lord, having received the word in much affliction, with joy of the Holy Spirit, + +so that you became an example to all who believe in Macedonia and in Achaia. + +For from you the word of the Lord has been declared, not only in Macedonia and Achaia, but also in every place your faith toward God has gone out, so that we need not say anything. + +For they themselves report concerning us what kind of a reception we had from you, and how you turned to God from idols to serve a living and true God, + +and to wait for his Son from heaven, whom he raised from the dead: Jesus, who delivers us from the wrath to come. + +

+ + +

For you yourselves know, brothers, our visit to you wasn’t in vain, + +but having suffered before and been shamefully treated, as you know, at Philippi, we grew bold in our God to tell you the Good News of God in much conflict. + +For our exhortation is not of error, nor of uncleanness, nor in deception. + +But even as we have been approved by God to be entrusted with the Good News, so we speaknot as pleasing men, but God, who tests our hearts. + +For neither were we at any time found using words of flattery, as you know, nor a cloak of covetousness (God is witness), + +nor seeking glory from men (neither from you nor from others), when we might have claimed authority as apostles of Christ. + +But we were gentle among you, like a nursing mother cherishes her own children. + +

+

Even so, affectionately longing for you, we were well pleased to impart to you not the Good News of God only, but also our own souls, because you had become very dear to us. + +For you remember, brothers, our labor and travail; for working night and day, that we might not burden any of you, we preached to you the Good News of God. + +You are witnesses with God how holy, righteously, and blamelessly we behaved ourselves toward you who believe. + +As you know, we exhorted, comforted, and implored every one of you, as a father does his own children, + +to the end that you should walk worthily of God, who calls you into his own Kingdom and glory. + +

+

For this cause we also thank God without ceasing that when you received from us the word of the message of God, you accepted it not as the word of men, but as it is in truth, God’s word, which also works in you who believe. + +For you, brothers, became imitators of the assemblies of God which are in Judea in Christ Jesus; for you also suffered the same things from your own countrymen, even as they did from the Jews + +who killed both the Lord Jesus and their own prophets, and drove us out, and don’t please God, and are contrary to all men, + +forbidding us to speak to the Gentiles that they may be saved, to fill up their sins always. But wrath has come on them to the uttermost. + +

+

But we, brothers, being bereaved of you for a short season in presence, not in heart, tried even harder to see your face with great desire, + +because we wanted to come to youindeed, I, Paul, once and againbut Satan hindered us. + +For what is our hope, or joy, or crown of rejoicing? Isn’t it even you, before our Lord Jesus2:19 +TR adds “Christ” at his coming? + +For you are our glory and our joy. + +

+ + +

Therefore when we couldn’t stand it any longer, we thought it good to be left behind at Athens alone, + +and sent Timothy, our brother and God’s servant in the Good News of Christ, to establish you and to comfort you concerning your faith, + +that no one would be moved by these afflictions. For you know that we are appointed to this task. + +For most certainly, when we were with you, we told you beforehand that we are to suffer affliction, even as it happened, and you know. + +For this cause I also, when I couldn’t stand it any longer, sent that I might know your faith, for fear that by any means the tempter had tempted you, and our labor would have been in vain. + +

+

But Timothy has just now come to us from you, and brought us glad news of your faith and love, and that you have good memories of us always, longing to see us, even as we also long to see you. + +For this cause, brothers, we were comforted over you in all our distress and affliction through your faith. + +For now we live, if you stand fast in the Lord. + +For what thanksgiving can we give again to God for you, for all the joy with which we rejoice for your sakes before our God, + +night and day praying exceedingly that we may see your face and may perfect that which is lacking in your faith? + +

+

Now may our God and Father himself, and our Lord Jesus Christ, direct our way to you. + +May the Lord make you to increase and abound in love toward one another and toward all men, even as we also do toward you, + +to the end he may establish your hearts blameless in holiness before our God and Father at the coming of our Lord Jesus with all his saints. + +

+ + +

Finally then, brothers, we beg and exhort you in the Lord Jesus, that as you received from us how you ought to walk and to please God, that you abound more and more. + +For you know what instructions we gave you through the Lord Jesus. + +For this is the will of God: your sanctification, that you abstain from sexual immorality, + +that each one of you know how to control his own body4:4 +literally, possess his own vessel in sanctification and honor, + +not in the passion of lust, even as the Gentiles who don’t know God, + +that no one should take advantage of and wrong a brother or sister in this matter; because the Lord is an avenger in all these things, as also we forewarned you and testified. + +For God called us not for uncleanness, but in sanctification. + +Therefore he who rejects this doesn’t reject man, but God, who has also given his Holy Spirit to you. + +

+

But concerning brotherly love, you have no need that one write to you. For you yourselves are taught by God to love one another, + +for indeed you do it toward all the brothers who are in all Macedonia. But we exhort you, brothers, that you abound more and more; + +and that you make it your ambition to lead a quiet life, and to do your own business, and to work with your own hands, even as we instructed you, + +that you may walk properly toward those who are outside, and may have need of nothing. + +

+

But we don’t want you to be ignorant, brothers, concerning those who have fallen asleep, so that you don’t grieve like the rest, who have no hope. + +For if we believe that Jesus died and rose again, even so God will bring with him those who have fallen asleep in Jesus. + +For this we tell you by the word of the Lord, that we who are alive, who are left until the coming of the Lord, will in no way precede those who have fallen asleep. + +For the Lord himself will descend from heaven with a shout, with the voice of the archangel and with Gods trumpet. The dead in Christ will rise first, + +then we who are alive, who are left, will be caught up together with them in the clouds to meet the Lord in the air. So we will be with the Lord forever. + +Therefore comfort one another with these words. + +

+ + +

But concerning the times and the seasons, brothers, you have no need that anything be written to you. + +For you yourselves know well that the day of the Lord comes like a thief in the night. + +For when they are saying, “Peace and safety,” then sudden destruction will come on them, like birth pains on a pregnant woman. Then they will in no way escape. + +But you, brothers, aren’t in darkness, that the day should overtake you like a thief. + +You are all children of light and children of the day. We don’t belong to the night, nor to darkness, + +so then let’s not sleep, as the rest do, but let’s watch and be sober. + +For those who sleep, sleep in the night; and those who are drunk are drunk in the night. + +But since we belong to the day, let’s be sober, putting on the breastplate of faith and love, and for a helmet, the hope of salvation. + +For God didn’t appoint us to wrath, but to the obtaining of salvation through our Lord Jesus Christ, + +who died for us, that, whether we wake or sleep, we should live together with him. + +Therefore exhort one another, and build each other up, even as you also do. + +

+

But we beg you, brothers, to know those who labor among you, and are over you in the Lord and admonish you, + +and to respect and honor them in love for their work’s sake. +

+

Be at peace among yourselves. + +We exhort you, brothers: Admonish the disorderly; encourage the faint-hearted; support the weak; be patient toward all. + +See that no one returns evil for evil to anyone, but always follow after that which is good for one another and for all. + +

+

Always rejoice. + +Pray without ceasing. + +In everything give thanks, for this is the will of God in Christ Jesus toward you. + +Don’t quench the Spirit. + +Don’t despise prophecies. + +Test all things, and hold firmly that which is good. + +Abstain from every form of evil. + +

+

May the God of peace himself sanctify you completely. May your whole spirit, soul, and body be preserved blameless at the coming of our Lord Jesus Christ. + +

+

He who calls you is faithful, who will also do it. + +

+

Brothers, pray for us. + +

+

Greet all the brothers with a holy kiss. + +I solemnly command you by the Lord that this letter be read to all the holy brothers. + +

+

The grace of our Lord Jesus Christ be with you. Amen. + +

+
+53-2TH-web.sfm World English Bible (WEB) +2 Thessalonians +Paul’s Second Letter to the Thessalonians +2 Thessalonians +2Th +

Paul’s Second Letter to the Thessalonians +

+ + +

Paul, Silvanus, and Timothy, to the assembly of the Thessalonians in God our Father and the Lord Jesus Christ: + +Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

We are bound to always give thanks to God for you, brothers,1:3 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” even as it is appropriate, because your faith grows exceedingly, and the love of each and every one of you toward one another abounds, + +so that we ourselves boast about you in the assemblies of God for your perseverance and faith in all your persecutions and in the afflictions which you endure. + +This is an obvious sign of the righteous judgment of God, to the end that you may be counted worthy of God’s Kingdom, for which you also suffer. + +For it is a righteous thing with God to repay affliction to those who afflict you, + +and to give relief to you who are afflicted with us when the Lord Jesus is revealed from heaven with his mighty angels in flaming fire, + +punishing those who don’t know God, and to those who don’t obey the Good News of our Lord Jesus, + +who will pay the penalty: eternal destruction from the face of the Lord and from the glory of his might, + +when he comes in that day to be glorified in his saints and to be admired among all those who have believed, because our testimony to you was believed. + +

+

To this end we also pray always for you that our God may count you worthy of your calling, and fulfill every desire of goodness and work of faith with power, + +that the name of our Lord Jesus1:12 +TR adds “Christ” may be glorified in you, and you in him, according to the grace of our God and the Lord Jesus Christ. + +

+ + +

Now, brothers, concerning the coming of our Lord Jesus Christ and our gathering together to him, we ask you + +not to be quickly shaken in your mind or troubled, either by spirit or by word or by letter as if from us, saying that the day of Christ has already come. + +Let no one deceive you in any way. For it will not be unless the rebellion2:3 +or, +falling away, or, +defection comes first, and the man of sin is revealed, the son of destruction. + +He opposes and exalts himself against all that is called God or that is worshiped, so that he sits as God in the temple of God, setting himself up as God. + +Don’t you remember that when I was still with you, I told you these things? + +Now you know what is restraining him, to the end that he may be revealed in his own season. + +For the mystery of lawlessness already works. Only there is one who restrains now, until he is taken out of the way. + +Then the lawless one will be revealed, whom the Lord will kill with the breath of his mouth and destroy by the manifestation of his coming; + +even he whose coming is according to the working of Satan with all power and signs and lying wonders, + +and with all deception of wickedness for those who are being lost, because they didn’t receive the love of the truth, that they might be saved. + +Because of this, God sends them a powerful delusion, that they should believe a lie, + +that they all might be judged who didn’t believe the truth, but had pleasure in unrighteousness. + +

+

But we are bound to always give thanks to God for you, brothers loved by the Lord, because God chose you from the beginning for salvation through sanctification of the Spirit and belief in the truth, + +to which he called you through our Good News, for the obtaining of the glory of our Lord Jesus Christ. + +So then, brothers, stand firm and hold the traditions which you were taught by us, whether by word or by letter. + +

+

Now our Lord Jesus Christ himself, and God our Father, who loved us and gave us eternal comfort and good hope through grace, + +comfort your hearts and establish you in every good work and word. + +

+ + +

Finally, brothers, pray for us, that the word of the Lord may spread rapidly and be glorified, even as also with you, + +and that we may be delivered from unreasonable and evil men; for not all have faith. + +But the Lord is faithful, who will establish you and guard you from the evil one. + +We have confidence in the Lord concerning you, that you both do and will do the things we command. + +May the Lord direct your hearts into Gods love and into the perseverance of Christ. + +

+

Now we command you, brothers, in the name of our Lord Jesus Christ, that you withdraw yourselves from every brother who walks in rebellion and not after the tradition which they received from us. + +For you know how you ought to imitate us. For we didn’t behave ourselves rebelliously among you, + +neither did we eat bread from anyone’s hand without paying for it, but in labor and travail worked night and day, that we might not burden any of you. + +This was not because we don’t have the right, but to make ourselves an example to you, that you should imitate us. + +For even when we were with you, we commanded you this: “If anyone is not willing to work, don’t let him eat.” + +For we hear of some who walk among you in rebellion, who don’t work at all, but are busybodies. + +Now those who are that way, we command and exhort in the Lord Jesus Christ, that they work with quietness and eat their own bread. + +

+

But you, brothers, don’t be weary in doing what is right. + +If any man doesn’t obey our word in this letter, note that man and have no company with him, to the end that he may be ashamed. + +Don’t count him as an enemy, but admonish him as a brother. + +

+

Now may the Lord of peace himself give you peace at all times in all ways. The Lord be with you all. + +

+

I, Paul, write this greeting with my own hand, which is the sign in every letter. This is how I write. + +The grace of our Lord Jesus Christ be with you all. Amen. + +

+
+54-1TI-web.sfm World English Bible (WEB) +1 Timothy +Paul’s First Letter to Timothy +1 Timothy +1Ti +

Paul’s First Letter to Timothy +

+ + +

Paul, an apostle of Jesus Christ according to the commandment of God our Savior and the Lord Jesus Christ1:1 +NU reads +Christ Jesus +and omits +the Lord. + our hope, + +to Timothy, my true child in faith: Grace, mercy, and peace from God our Father and Christ Jesus our Lord. + +

+

As I urged you when I was going into Macedonia, stay at Ephesus that you might command certain men not to teach a different doctrine, + +and not to pay attention to myths and endless genealogies, which cause disputes rather than God’s stewardship, which is in faith. + +But the goal of this command is love from a pure heart, a good conscience, and sincere faith, + +from which things some, having missed the mark, have turned away to vain talking, + +desiring to be teachers of the law, though they understand neither what they say nor about what they strongly affirm. + +

+

But we know that the law is good if a person uses it lawfully, + +as knowing this, that law is not made for a righteous person, but for the lawless and insubordinate, for the ungodly and sinners, for the unholy and profane, for murderers of fathers and murderers of mothers, for manslayers, + +for the sexually immoral, for homosexuals, for slave-traders, for liars, for perjurers, and for any other thing contrary to the sound doctrine, + +according to the Good News of the glory of the blessed God, which was committed to my trust. + +

+

I thank him who enabled me, Christ Jesus our Lord, because he counted me faithful, appointing me to service, + +although I used to be a blasphemer, a persecutor, and insolent. However, I obtained mercy because I did it ignorantly in unbelief. + +The grace of our Lord abounded exceedingly with faith and love which is in Christ Jesus. + +The saying is faithful and worthy of all acceptance, that Christ Jesus came into the world to save sinners, of whom I am chief. + +However, for this cause I obtained mercy, that in me first, Jesus Christ might display all his patience for an example of those who were going to believe in him for eternal life. + +Now to the King eternal, immortal, invisible, to God who alone is wise, be honor and glory forever and ever. Amen. + +

+

I commit this instruction to you, my child Timothy, according to the prophecies which were given to you before, that by them you may wage the good warfare, + +holding faith and a good conscience, which some having thrust away made a shipwreck concerning the faith, + +of whom are Hymenaeus and Alexander, whom I delivered to Satan that they might be taught not to blaspheme. + +

+ + +

I exhort therefore, first of all, that petitions, prayers, intercessions, and givings of thanks be made for all men, + +for kings and all who are in high places, that we may lead a tranquil and quiet life in all godliness and reverence. + +For this is good and acceptable in the sight of God our Savior, + +who desires all people to be saved and come to full knowledge of the truth. + +For there is one God and one mediator between God and men, the man Christ Jesus, + +who gave himself as a ransom for all, the testimony at the proper time, + +to which I was appointed a preacher and an apostle—I am telling the truth in Christ, not lyinga teacher of the Gentiles in faith and truth. + +

+

I desire therefore that the men in every place pray, lifting up holy hands without anger and doubting. + +In the same way, that women also adorn themselves in decent clothing, with modesty and propriety, not2:9 +The word for “not” is the negative particle “μη” which denies an expected idea, as opposed to the usual word for “not” (ου) which denies a fact. Thus “μη” in this context is denying an expected idea (that women can be properly dressed without good works). with braided hair, gold, pearls, or expensive clothing, + +but with good works, which is appropriate for women professing godliness. + +Let a woman learn in quietness with full submission. + +But I don’t permit a woman to teach, nor to exercise authority over a man, but to be in quietness. + +For Adam was formed first, then Eve. + +Adam wasn’t deceived, but the woman, being deceived, has fallen into disobedience; + +but she will be saved through her childbearing, if they continue in faith, love, and holiness with sobriety. + +

+ + +

This is a faithful saying: someone who seeks to be an overseer3:1 +or, superintendent, or bishop desires a good work. + +The overseer therefore must be without reproach, the husband of one wife, temperate, sensible, modest, hospitable, good at teaching; + +not a drinker, not violent, not greedy for money, but gentle, not quarrelsome, not covetous; + +one who rules his own house well, having children in subjection with all reverence; + +(for how could someone who doesn’t know how to rule his own house take care of God’s assembly?) + +not a new convert, lest being puffed up he fall into the same condemnation as the devil. + +Moreover he must have good testimony from those who are outside, to avoid falling into reproach and the snare of the devil. + +

+

Servants,3:8 +or, Deacons. in the same way, must be reverent, not double-tongued, not addicted to much wine, not greedy for money, + +holding the mystery of the faith in a pure conscience. + +Let them also first be tested; then let them serve3:10 +or, serve as deacons if they are blameless. + +Their wives in the same way must be reverent, not slanderers, temperate, and faithful in all things. + +Let servants3:12 +or, deacons be husbands of one wife, ruling their children and their own houses well. + +For those who have served well3:13 +or, served well as deacons gain for themselves a good standing and great boldness in the faith which is in Christ Jesus. + +

+

These things I write to you, hoping to come to you shortly, + +but if I wait long, that you may know how men ought to behave themselves in God’s house, which is the assembly of the living God, the pillar and ground of the truth. + +Without controversy, the mystery of godliness is great: +

+God3:16 +NU replaces “God” with “who” was revealed in the flesh, + +justified in the spirit, + +seen by angels, + +preached among the nations, + +believed on in the world, + +and received up in glory. + + + + +

But the Spirit says expressly that in later times some will fall away from the faith, paying attention to seducing spirits and doctrines of demons, + +through the hypocrisy of men who speak lies, branded in their own conscience as with a hot iron, + +forbidding marriage and commanding to abstain from foods which God created to be received with thanksgiving by those who believe and know the truth. + +For every creature of God is good, and nothing is to be rejected if it is received with thanksgiving. + +For it is sanctified through the word of God and prayer. + +

+

If you instruct the brothers of these things, you will be a good servant of Christ Jesus, nourished in the words of the faith and of the good doctrine which you have followed. + +But refuse profane and old wives’ fables. Exercise yourself toward godliness. + +For bodily exercise has some value, but godliness has value in all things, having the promise of the life which is now and of that which is to come. + +This saying is faithful and worthy of all acceptance. + +For to this end we both labor and suffer reproach, because we have set our trust in the living God, who is the Savior of all men, especially of those who believe. + +Command and teach these things. + +

+

Let no man despise your youth; but be an example to those who believe, in word, in your way of life, in love, in spirit, in faith, and in purity. + +Until I come, pay attention to reading, to exhortation, and to teaching. + +Don’t neglect the gift that is in you, which was given to you by prophecy with the laying on of the hands of the elders. + +Be diligent in these things. Give yourself wholly to them, that your progress may be revealed to all. + +Pay attention to yourself and to your teaching. Continue in these things, for in doing this you will save both yourself and those who hear you. + +

+ + +

Don’t rebuke an older man, but exhort him as a father; the younger men as brothers; + +the elder women as mothers; the younger as sisters, in all purity. + +

+

Honor widows who are widows indeed. + +But if any widow has children or grandchildren, let them learn first to show piety toward their own family and to repay their parents, for this is5:4 +TR adds “good and” acceptable in the sight of God. + +Now she who is a widow indeed and desolate, has her hope set on God and continues in petitions and prayers night and day. + +But she who gives herself to pleasure is dead while she lives. + +Also command these things, that they may be without reproach. + +But if anyone doesn’t provide for his own, and especially his own household, he has denied the faith and is worse than an unbeliever. + +

+

Let no one be enrolled as a widow under sixty years old, having been the wife of one man, + +being approved by good works, if she has brought up children, if she has been hospitable to strangers, if she has washed the saints’ feet, if she has relieved the afflicted, and if she has diligently followed every good work. + +

+

But refuse younger widows, for when they have grown wanton against Christ, they desire to marry, + +having condemnation, because they have rejected their first pledge. + +Besides, they also learn to be idle, going about from house to house. Not only idle, but also gossips and busybodies, saying things which they ought not. + +I desire therefore that the younger widows marry, bear children, rule the household, and give no occasion to the adversary for insulting. + +For already some have turned away after Satan. + +If any man or woman who believes has widows, let them relieve them, and don’t let the assembly be burdened, that it might relieve those who are widows indeed. + +

+

Let the elders who rule well be counted worthy of double honor, especially those who labor in the word and in teaching. + +For the Scripture says, “You shall not muzzle the ox when it treads out the grain.”5:18 +Deuteronomy 25:4 And, +The laborer is worthy of his wages.”5:18 +Luke 10:7; Leviticus 19:13 + +

+

Don’t receive an accusation against an elder except at the word of two or three witnesses. + +Those who sin, reprove in the sight of all, that the rest also may be in fear. + +I command you in the sight of God, and the Lord Jesus Christ, and the chosen angels, that you observe these things without prejudice, doing nothing by partiality. + +Lay hands hastily on no one. Don’t be a participant in other people’s sins. Keep yourself pure. + +

+

Be no longer a drinker of water only, but use a little wine for your stomach’s sake and your frequent infirmities. + +

+

Some men’s sins are evident, preceding them to judgment, and some also follow later. + +In the same way also there are good works that are obvious, and those that are otherwise cant be hidden. + +

+ + +

Let as many as are bondservants under the yoke count their own masters worthy of all honor, that the name of God and the doctrine not be blasphemed. + +Those who have believing masters, let them not despise them because they are brothers, but rather let them serve them, because those who partake of the benefit are believing and beloved. Teach and exhort these things. + +

+

If anyone teaches a different doctrine and doesn’t consent to sound words, the words of our Lord Jesus Christ, and to the doctrine which is according to godliness, + +he is conceited, knowing nothing, but obsessed with arguments, disputes, and word battles, from which come envy, strife, insulting, evil suspicions, + +constant friction of people of corrupt minds and destitute of the truth, who suppose that godliness is a means of gain. Withdraw yourself from such.6:5 +NU omits “Withdraw yourself from such.” + +

+

But godliness with contentment is great gain. + +For we brought nothing into the world, and we certainly cant carry anything out. + +But having food and clothing, we will be content with that. + +But those who are determined to be rich fall into a temptation, a snare, and many foolish and harmful lusts, such as drown men in ruin and destruction. + +For the love of money is a root of all kinds of evil. Some have been led astray from the faith in their greed, and have pierced themselves through with many sorrows. + +

+

But you, man of God, flee these things, and follow after righteousness, godliness, faith, love, perseverance, and gentleness. + +Fight the good fight of faith. Take hold of the eternal life to which you were called, and you confessed the good confession in the sight of many witnesses. + +I command you before God who gives life to all things, and before Christ Jesus who before Pontius Pilate testified the good confession, + +that you keep the commandment without spot, blameless until the appearing of our Lord Jesus Christ, + +which at the right time he will show, who is the blessed and only Ruler, the King of kings and Lord of lords. + +He alone has immortality, dwelling in unapproachable light, whom no man has seen nor can see, to whom be honor and eternal power. Amen. + +

+

Charge those who are rich in this present age that they not be arrogant, nor have their hope set on the uncertainty of riches, but on the living God, who richly provides us with everything to enjoy; + +that they do good, that they be rich in good works, that they be ready to distribute, willing to share; + +laying up in store for themselves a good foundation against the time to come, that they may lay hold of eternal life. + +

+

Timothy, guard that which is committed to you, turning away from the empty chatter and oppositions of what is falsely called knowledge, + +which some profess, and thus have wandered from the faith. +

+

Grace be with you. Amen. + +

+
+55-2TI-web.sfm World English Bible (WEB) +2 Timothy +Paul’s Second Letter to Timothy +2 Timothy +2Ti +

Paul’s Second Letter to Timothy +

+ + +

Paul, an apostle of Jesus Christ1:1 +“Christ” means “Anointed One”. through the will of God, according to the promise of the life which is in Christ Jesus, + +to Timothy, my beloved child: Grace, mercy, and peace, from God the Father and Christ Jesus our Lord. + +

+

I thank God, whom I serve as my forefathers did, with a pure conscience. How unceasing is my memory of you in my petitions, night and day + +longing to see you, remembering your tears, that I may be filled with joy; + +having been reminded of the sincere faith that is in you, which lived first in your grandmother Lois and your mother Eunice and, I am persuaded, in you also. + +

+

For this cause, I remind you that you should stir up the gift of God which is in you through the laying on of my hands. + +For God didn’t give us a spirit of fear, but of power, love, and self-control. + +Therefore don’t be ashamed of the testimony of our Lord, nor of me his prisoner; but endure hardship for the Good News according to the power of God, + +who saved us and called us with a holy calling, not according to our works, but according to his own purpose and grace, which was given to us in Christ Jesus before times eternal, + +but has now been revealed by the appearing of our Savior, Christ Jesus, who abolished death, and brought life and immortality to light through the Good News. + +For this I was appointed as a preacher, an apostle, and a teacher of the Gentiles. + +For this cause I also suffer these things. +

+

Yet I am not ashamed, for I know him whom I have believed, and I am persuaded that he is able to guard that which I have committed to him against that day. + +

+

Hold the pattern of sound words which you have heard from me, in faith and love which is in Christ Jesus. + +That good thing which was committed to you, guard through the Holy Spirit who dwells in us. + +

+

This you know, that all who are in Asia turned away from me, of whom are Phygelus and Hermogenes. + +May the Lord grant mercy to the house of Onesiphorus, for he often refreshed me, and was not ashamed of my chain, + +but when he was in Rome, he sought me diligently and found me + +(the Lord grant to him to find the Lords mercy in that day); and in how many things he served at Ephesus, you know very well. + +

+ + +

You therefore, my child, be strengthened in the grace that is in Christ Jesus. + +The things which you have heard from me among many witnesses, commit the same things to faithful men who will be able to teach others also. + +You therefore must endure hardship as a good soldier of Christ Jesus. + +No soldier on duty entangles himself in the affairs of life, that he may please him who enrolled him as a soldier. + +Also, if anyone competes in athletics, he isn’t crowned unless he has competed by the rules. + +The farmer who labors must be the first to get a share of the crops. + +Consider what I say, and may the Lord give you understanding in all things. + +

+

Remember Jesus Christ, risen from the dead, of the offspring2:8 +or, seed of David, according to my Good News, + +in which I suffer hardship to the point of chains as a criminal. But God’s word isn’t chained. + +Therefore I endure all things for the chosen ones’ sake, that they also may obtain the salvation which is in Christ Jesus with eternal glory. + +This saying is trustworthy: +

+For if we died with him, + +we will also live with him. + + +If we endure, + +we will also reign with him. + +If we deny him, + +he also will deny us. + + +If we are faithless, + +he remains faithful; + +for he can’t deny himself.” + + +

Remind them of these things, charging them in the sight of the Lord that they don’t argue about words to no profit, to the subverting of those who hear. + +

+

Give diligence to present yourself approved by God, a workman who doesn’t need to be ashamed, properly handling the Word of Truth. + +But shun empty chatter, for it will go further in ungodliness, + +and those words will consume like gangrene, of whom is Hymenaeus and Philetus: + +men who have erred concerning the truth, saying that the resurrection is already past, and overthrowing the faith of some. + +However, Gods firm foundation stands, having this seal: “The Lord knows those who are his,”2:19 +Numbers 16:5 and, “Let every one who names the name of the Lord2:19 +TR reads “Christ” instead of “the Lord” depart from unrighteousness.” + +

+

Now in a large house there are not only vessels of gold and of silver, but also of wood and of clay. Some are for honor and some for dishonor. + +If anyone therefore purges himself from these, he will be a vessel for honor, sanctified, and suitable for the master’s use, prepared for every good work. + +

+

Flee from youthful lusts; but pursue righteousness, faith, love, and peace with those who call on the Lord out of a pure heart. + +But refuse foolish and ignorant questionings, knowing that they generate strife. + +The Lords servant must not quarrel, but be gentle toward all, able to teach, patient, + +in gentleness correcting those who oppose him. Perhaps God may give them repentance leading to a full knowledge of the truth, + +and they may recover themselves out of the devil’s snare, having been taken captive by him to do his will. + +

+ + +

But know this: that in the last days, grievous times will come. + +For men will be lovers of self, lovers of money, boastful, arrogant, blasphemers, disobedient to parents, unthankful, unholy, + +without natural affection, unforgiving, slanderers, without self-control, fierce, not lovers of good, + +traitors, headstrong, conceited, lovers of pleasure rather than lovers of God, + +holding a form of godliness but having denied its power. Turn away from these, also. + +For some of these are people who creep into houses and take captive gullible women loaded down with sins, led away by various lusts, + +always learning and never able to come to the knowledge of the truth. + +Even as Jannes and Jambres opposed Moses, so these also oppose the truth, men corrupted in mind, who concerning the faith are rejected. + +But they will proceed no further. For their folly will be evident to all men, as theirs also came to be. + +

+

But you followed my teaching, conduct, purpose, faith, patience, love, steadfastness, + +persecutions, and sufferingsthose things that happened to me at Antioch, Iconium, and Lystra. I endured those persecutions. The Lord delivered me out of them all. + +Yes, and all who desire to live godly in Christ Jesus will suffer persecution. + +But evil men and impostors will grow worse and worse, deceiving and being deceived. + +But you remain in the things which you have learned and have been assured of, knowing from whom you have learned them. + +From infancy, you have known the holy Scriptures which are able to make you wise for salvation through faith which is in Christ Jesus. + +Every Scripture is God-breathed and3:16 +or, Every writing inspired by God is profitable for teaching, for reproof, for correction, and for instruction in righteousness, + +that each person who belongs to God may be complete, thoroughly equipped for every good work. + +

+ + +

I command you therefore before God and the Lord Jesus Christ, who will judge the living and the dead at his appearing and his Kingdom: + +preach the word; be urgent in season and out of season; reprove, rebuke, and exhort with all patience and teaching. + +For the time will come when they will not listen to the sound doctrine, but having itching ears, will heap up for themselves teachers after their own lusts, + +and will turn away their ears from the truth, and turn away to fables. + +But you be sober in all things, suffer hardship, do the work of an evangelist, and fulfill your ministry. + +

+

For I am already being offered, and the time of my departure has come. + +I have fought the good fight. I have finished the course. I have kept the faith. + +From now on, the crown of righteousness is stored up for me, which the Lord, the righteous judge, will give to me on that day; and not to me only, but also to all those who have loved his appearing. + +

+

Be diligent to come to me soon, + +for Demas left me, having loved this present world, and went to Thessalonica; Crescens to Galatia; and Titus to Dalmatia. + +Only Luke is with me. Take Mark and bring him with you, for he is useful to me for service. + +But I sent Tychicus to Ephesus. + +Bring the cloak that I left at Troas with Carpus when you comeand the books, especially the parchments. + +Alexander the coppersmith did much evil to me. The Lord will repay him according to his deeds. + +Beware of him, for he greatly opposed our words. + +

+

At my first defense, no one came to help me, but all left me. May it not be held against them. + +But the Lord stood by me and strengthened me, that through me the message might be fully proclaimed, and that all the Gentiles might hear. So I was delivered out of the mouth of the lion. + +And the Lord will deliver me from every evil work and will preserve me for his heavenly Kingdom. To him be the glory forever and ever. Amen. + +

+

Greet Prisca and Aquila, and the house of Onesiphorus. + +Erastus remained at Corinth, but I left Trophimus at Miletus sick. + +Be diligent to come before winter. Eubulus salutes you, as do Pudens, Linus, Claudia, and all the brothers. + +

+

The Lord Jesus Christ be with your spirit. Grace be with you. Amen. + +

+
+56-TIT-web.sfm World English Bible (WEB) +Titus +Paul’s Letter to Titus +Titus +Tit +

Paul’s Letter to Titus +

+ + +

Paul, a servant of God and an apostle of Jesus Christ,1:1 +“Christ” means “Anointed One”. according to the faith of God’s chosen ones and the knowledge of the truth which is according to godliness, + +in hope of eternal life, which God, who can’t lie, promised before time began; + +but in his own time revealed his word in the message with which I was entrusted according to the commandment of God our Savior, + +to Titus, my true child according to a common faith: Grace, mercy, and peace from God the Father and the Lord Jesus Christ our Savior. + +

+

I left you in Crete for this reason, that you would set in order the things that were lacking and appoint elders in every city, as I directed you— + +if anyone is blameless, the husband of one wife, having children who believe, who are not accused of loose or unruly behavior. + +For the overseer must be blameless, as God’s steward, not self-pleasing, not easily angered, not given to wine, not violent, not greedy for dishonest gain; + +but given to hospitality, a lover of good, sober minded, fair, holy, self-controlled, + +holding to the faithful word which is according to the teaching, that he may be able to exhort in the sound doctrine, and to convict those who contradict him. + +

+

For there are also many unruly men, vain talkers and deceivers, especially those of the circumcision, + +whose mouths must be stopped: men who overthrow whole houses, teaching things which they ought not, for dishonest gain’s sake. + +One of them, a prophet of their own, said, “Cretans are always liars, evil beasts, and idle gluttons.” + +This testimony is true. For this cause, reprove them sharply, that they may be sound in the faith, + +not paying attention to Jewish fables and commandments of men who turn away from the truth. + +To the pure, all things are pure, but to those who are defiled and unbelieving, nothing is pure; but both their mind and their conscience are defiled. + +They profess that they know God, but by their deeds they deny him, being abominable, disobedient, and unfit for any good work. + +

+ + +

But say the things which fit sound doctrine, + +that older men should be temperate, sensible, sober minded, sound in faith, in love, and in perseverance, + +and that older women likewise be reverent in behavior, not slanderers nor enslaved to much wine, teachers of that which is good, + +that they may train the young wives to love their husbands, to love their children, + +to be sober minded, chaste, workers at home, kind, being in subjection to their own husbands, that God’s word may not be blasphemed. + +

+

Likewise, exhort the younger men to be sober minded. + +In all things show yourself an example of good works. In your teaching, show integrity, seriousness, incorruptibility, + +and soundness of speech that cant be condemned, that he who opposes you may be ashamed, having no evil thing to say about us. + +

+

Exhort servants to be in subjection to their own masters and to be well-pleasing in all things, not contradicting, + +not stealing, but showing all good fidelity, that they may adorn the doctrine of God, our Savior, in all things. + +For the grace of God has appeared, bringing salvation to all men, + +instructing us to the intent that, denying ungodliness and worldly lusts, we would live soberly, righteously, and godly in this present age; + +looking for the blessed hope and appearing of the glory of our great God and Savior, Jesus Christ, + +who gave himself for us, that he might redeem us from all iniquity and purify for himself a people for his own possession, zealous for good works. + +

+

Say these things and exhort and reprove with all authority. Let no one despise you. + +

+ + +

Remind them to be in subjection to rulers and to authorities, to be obedient, to be ready for every good work, + +to speak evil of no one, not to be contentious, to be gentle, showing all humility toward all men. + +For we were also once foolish, disobedient, deceived, serving various lusts and pleasures, living in malice and envy, hateful, and hating one another. + +But when the kindness of God our Savior and his love toward mankind appeared, + +not by works of righteousness which we did ourselves, but according to his mercy, he saved us through the washing of regeneration and renewing by the Holy Spirit, + +whom he poured out on us richly through Jesus Christ our Savior; + +that being justified by his grace, we might be made heirs according to the hope of eternal life. + +This saying is faithful, and concerning these things I desire that you insist confidently, so that those who have believed God may be careful to maintain good works. These things are good and profitable to men; + +but shun foolish questionings, genealogies, strife, and disputes about the law; for they are unprofitable and vain. + +Avoid a factious man after a first and second warning, + +knowing that such a one is perverted and sinful, being self-condemned. + +

+

When I send Artemas to you, or Tychicus, be diligent to come to me to Nicopolis, for I have determined to winter there. + +Send Zenas the lawyer and Apollos on their journey speedily, that nothing may be lacking for them. + +Let our people also learn to maintain good works to meet necessary needs, that they may not be unfruitful. + +

+

All who are with me greet you. Greet those who love us in faith. +

+

Grace be with you all. Amen. + +

+
+57-PHM-web.sfm World English Bible (WEB) +Philemon +Paul’s Letter to Philemon +Philemon +Phm +

Paul’s Letter to Philemon +

+ + +

Paul, a prisoner of Christ1:1 +“Christ” means “Anointed One”. Jesus, and Timothy our brother, to Philemon, our beloved fellow worker, + +to the beloved Apphia, to Archippus our fellow soldier, and to the assembly in your house: + +Grace to you and peace from God our Father and the Lord Jesus Christ. + +

+

I thank my God always, making mention of you in my prayers, + +hearing of your love and of the faith which you have toward the Lord Jesus and toward all the saints, + +that the fellowship of your faith may become effective in the knowledge of every good thing which is in us in Christ Jesus. + +For we have much joy and comfort in your love, because the hearts of the saints have been refreshed through you, brother. + +

+

Therefore though I have all boldness in Christ to command you that which is appropriate, + +yet for love’s sake I rather appeal to you, being such a one as Paul, the aged, but also a prisoner of Jesus Christ. + +I appeal to you for my child Onesimus, whom I have become the father of in my chains,1:10 +Onesimus means “useful”. + +who once was useless to you, but now is useful to you and to me. + +I am sending him back. Therefore receive him, that is, my own heart, + +whom I desired to keep with me, that on your behalf he might serve me in my chains for the Good News. + +But I was willing to do nothing without your consent, that your goodness would not be as of necessity, but of free will. + +For perhaps he was therefore separated from you for a while that you would have him forever, + +no longer as a slave, but more than a slave, a beloved brother—especially to me, but how much rather to you, both in the flesh and in the Lord. + +

+

If then you count me a partner, receive him as you would receive me. + +But if he has wronged you at all or owes you anything, put that to my account. + +I, Paul, write this with my own hand: I will repay it (not to mention to you that you owe to me even your own self besides). + +Yes, brother, let me have joy from you in the Lord. Refresh my heart in the Lord. + +

+

Having confidence in your obedience, I write to you, knowing that you will do even beyond what I say. + +

+

Also, prepare a guest room for me, for I hope that through your prayers I will be restored to you. + +

+

Epaphras, my fellow prisoner in Christ Jesus, greets you, + +as do Mark, Aristarchus, Demas, and Luke, my fellow workers. + +

+

The grace of our Lord Jesus Christ be with your spirit. Amen. + +

+
+58-HEB-web.sfm World English Bible (WEB) +Hebrews +The Letter to the Hebrews +Hebrews +Heb +

The Letter to the Hebrews +

+ + +

God, having in the past spoken to the fathers through the prophets at many times and in various ways, + +has at the end of these days spoken to us by his Son, whom he appointed heir of all things, through whom also he made the worlds. + +His Son is the radiance of his glory, the very image of his substance, and upholding all things by the word of his power, who, when he had by himself purified us of our sins, sat down on the right hand of the Majesty on high, + +having become as much better than the angels as the more excellent name he has inherited is better than theirs. + +For to which of the angels did he say at any time, +

+You are my Son. + +Today I have become your father?”1:5 +Psalms 2:7 + +

and again, +

+I will be to him a Father, + +and he will be to me a Son?”1:5 +2 Samuel 7:14; 1 Chronicles 17:13 + + +

When he again brings in the firstborn into the world he says, “Let all the angels of God worship him.”1:6 +Deuteronomy 32:43 LXX + +Of the angels he says, +

+He makes his angels winds, + +and his servants a flame of fire.”1:7 +Psalms 104:4 + + +

But of the Son he says, +

+Your throne, O God, is forever and ever. + +The scepter of uprightness is the scepter of your Kingdom. + + +You have loved righteousness and hated iniquity; + +therefore God, your God, has anointed you with the oil of gladness above your fellows.”1:9 +Psalms 45:6-7 + + +

And, +

+You, Lord, in the beginning, laid the foundation of the earth. + +The heavens are the works of your hands. + + +They will perish, but you continue. + +They all will grow old like a garment does. + + +You will roll them up like a mantle, + +and they will be changed; + +but you are the same. + +Your years won’t fail.”1:12 +Psalms 102:25-27 + + +

But which of the angels has he told at any time, +

+Sit at my right hand, + +until I make your enemies the footstool of your feet?”1:13 +Psalms 110:1 + + +

Aren’t they all serving spirits, sent out to do service for the sake of those who will inherit salvation? + +

+ + +

Therefore we ought to pay greater attention to the things that were heard, lest perhaps we drift away. + +For if the word spoken through angels proved steadfast, and every transgression and disobedience received a just penalty, + +how will we escape if we neglect so great a salvationwhich at the first having been spoken through the Lord, was confirmed to us by those who heard, + +God also testifying with them, both by signs and wonders, by various works of power, and by gifts of the Holy Spirit, according to his own will? + +

+

For he didn’t subject the world to come, of which we speak, to angels. + +But one has somewhere testified, saying, +

+What is man, that you think of him? + +Or the son of man, that you care for him? + + +You made him a little lower than the angels. + +You crowned him with glory and honor.2:7 +TR adds “and set him over the works of your hands” + + +You have put all things in subjection under his feet.”2:8 +Psalms 8:4-6 + + +

For in that he subjected all things to him, he left nothing that is not subject to him. But now we don’t yet see all things subjected to him. + +But we see him who has been made a little lower than the angels, Jesus, because of the suffering of death crowned with glory and honor, that by the grace of God he should taste of death for everyone. + +

+

For it became him, for whom are all things and through whom are all things, in bringing many children to glory, to make the author of their salvation perfect through sufferings. + +For both he who sanctifies and those who are sanctified are all from one, for which cause he is not ashamed to call them brothers,2:11 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” + +saying, +

+I will declare your name to my brothers. + +Among the congregation I will sing your praise.”2:12 +Psalms 22:22 + + +

Again, “I will put my trust in him.” Again, “Behold, here I am with the children whom God has given me.”2:13 +Isaiah 8:18 + +Since then the children have shared in flesh and blood, he also himself in the same way partook of the same, that through death he might bring to nothing him who had the power of death, that is, the devil, + +and might deliver all of them who through fear of death were all their lifetime subject to bondage. + +For most certainly, he doesn’t give help to angels, but he gives help to the offspring2:16 +or, seed of Abraham. + +Therefore he was obligated in all things to be made like his brothers, that he might become a merciful and faithful high priest in things pertaining to God, to make atonement for the sins of the people. + +For in that he himself has suffered being tempted, he is able to help those who are tempted. + +

+ + +

Therefore, holy brothers, partakers of a heavenly calling, consider the Apostle and High Priest of our confession: Jesus, + +who was faithful to him who appointed him, as also Moses was in all his house. + +For he has been counted worthy of more glory than Moses, because he who built the house has more honor than the house. + +For every house is built by someone; but he who built all things is God. + +Moses indeed was faithful in all his house as a servant, for a testimony of those things which were afterward to be spoken, + +but Christ3:6 +“Christ” means “Anointed One”. is faithful as a Son over his house. We are his house, if we hold fast our confidence and the glorying of our hope firm to the end. + +Therefore, even as the Holy Spirit says, +

+Today if you will hear his voice, + + +don’t harden your hearts as in the rebellion, + +in the day of the trial in the wilderness, + + +where your fathers tested me and tried me, + +and saw my deeds for forty years. + + +Therefore I was displeased with that generation, + +and said, ‘They always err in their heart, + +but they didn’t know my ways.’ + + +As I swore in my wrath, + +They will not enter into my rest.’”3:11 +Psalms 95:7-11 + + +

Beware, brothers, lest perhaps there might be in any one of you an evil heart of unbelief, in falling away from the living God; + +but exhort one another day by day, so long as it is calledtoday”, lest any one of you be hardened by the deceitfulness of sin. + +For we have become partakers of Christ, if we hold the beginning of our confidence firm to the end, + +while it is said, +

+Today if you will hear his voice, + +don’t harden your hearts, as in the rebellion.”3:15 +Psalms 95:7-8 + + +

For who, when they heard, rebelled? Wasn’t it all those who came out of Egypt led by Moses? + +With whom was he displeased forty years? Wasn’t it with those who sinned, whose bodies fell in the wilderness? + +To whom did he swear that they wouldn’t enter into his rest, but to those who were disobedient? + +We see that they weren’t able to enter in because of unbelief. + +

+ + +

Let’s fear therefore, lest perhaps anyone of you should seem to have come short of a promise of entering into his rest. + +For indeed we have had good news preached to us, even as they also did, but the word they heard didn’t profit them, because it wasn’t mixed with faith by those who heard. + +For we who have believed do enter into that rest, even as he has said, “As I swore in my wrath, they will not enter into my rest;”4:3 +Psalms 95:11 + although the works were finished from the foundation of the world. + +For he has said this somewhere about the seventh day, “God rested on the seventh day from all his works;”4:4 +Genesis 2:2 + +and in this place again, “They will not enter into my rest.”4:5 +Psalms 95:11 + +

+

Seeing therefore it remains that some should enter into it, and they to whom the good news was preached before failed to enter in because of disobedience, + +he again defines a certain day, “today”, saying through David so long a time afterward (just as has been said), +

+Today if you will hear his voice, + +don’t harden your hearts.”4:7 +Psalms 95:7-8 + + +

For if Joshua had given them rest, he would not have spoken afterward of another day. + +There remains therefore a Sabbath rest for the people of God. + +For he who has entered into his rest has himself also rested from his works, as God did from his. + +Let’s therefore give diligence to enter into that rest, lest anyone fall after the same example of disobedience. + +For the word of God is living and active, and sharper than any two-edged sword, piercing even to the dividing of soul and spirit, of both joints and marrow, and is able to discern the thoughts and intentions of the heart. + +There is no creature that is hidden from his sight, but all things are naked and laid open before the eyes of him to whom we must give an account. + +

+

Having then a great high priest who has passed through the heavens, Jesus, the Son of God, lets hold tightly to our confession. + +For we don’t have a high priest who cant be touched with the feeling of our infirmities, but one who has been in all points tempted like we are, yet without sin. + +Let’s therefore draw near with boldness to the throne of grace, that we may receive mercy and may find grace for help in time of need. + +

+ + +

For every high priest, being taken from among men, is appointed for men in things pertaining to God, that he may offer both gifts and sacrifices for sins. + +The high priest can deal gently with those who are ignorant and going astray, because he himself is also surrounded with weakness. + +Because of this, he must offer sacrifices for sins for the people, as well as for himself. + +Nobody takes this honor on himself, but he is called by God, just like Aaron was. + +So also Christ didn’t glorify himself to be made a high priest, but it was he who said to him, +

+You are my Son. + +Today I have become your father.”5:5 +Psalms 2:7 + + +

As he says also in another place, +

+You are a priest forever, + +after the order of Melchizedek.”5:6 +Psalms 110:4 + + +

He, in the days of his flesh, having offered up prayers and petitions with strong crying and tears to him who was able to save him from death, and having been heard for his godly fear, + +though he was a Son, yet learned obedience by the things which he suffered. + +Having been made perfect, he became to all of those who obey him the author of eternal salvation, + +named by God a high priest after the order of Melchizedek. + +

+

About him we have many words to say, and hard to interpret, seeing you have become dull of hearing. + +For although by this time you should be teachers, you again need to have someone teach you the rudiments of the first principles of the revelations of God. You have come to need milk, and not solid food. + +For everyone who lives on milk is not experienced in the word of righteousness, for he is a baby. + +But solid food is for those who are full grown, who by reason of use have their senses exercised to discern good and evil. + +

+ + +

Therefore leaving the teaching of the first principles of Christ, let’s press on to perfectionnot laying again a foundation of repentance from dead works, of faith toward God, + +of the teaching of baptisms, of laying on of hands, of resurrection of the dead, and of eternal judgment. + +This will we do, if God permits. + +For concerning those who were once enlightened and tasted of the heavenly gift, and were made partakers of the Holy Spirit, + +and tasted the good word of God and the powers of the age to come, + +and then fell away, it is impossible to renew them again to repentance; seeing they crucify the Son of God for themselves again, and put him to open shame. + +For the land which has drunk the rain that comes often on it and produces a crop suitable for them for whose sake it is also tilled, receives blessing from God; + +but if it bears thorns and thistles, it is rejected and near being cursed, whose end is to be burned. + +

+

But, beloved, we are persuaded of better things for you, and things that accompany salvation, even though we speak like this. + +For God is not unrighteous, so as to forget your work and the labor of love which you showed toward his name, in that you served the saints, and still do serve them. + +We desire that each one of you may show the same diligence to the fullness of hope even to the end, + +that you won’t be sluggish, but imitators of those who through faith and perseverance inherited the promises. + +

+

For when God made a promise to Abraham, since he could swear by no one greater, he swore by himself, + +saying, “Surely blessing I will bless you, and multiplying I will multiply you.”6:14 +Genesis 22:17 + +Thus, having patiently endured, he obtained the promise. + +For men indeed swear by a greater one, and in every dispute of theirs the oath is final for confirmation. + +In this way God, being determined to show more abundantly to the heirs of the promise the immutability of his counsel, interposed with an oath, + +that by two immutable things, in which it is impossible for God to lie, we may have a strong encouragement, who have fled for refuge to take hold of the hope set before us. + +This hope we have as an anchor of the soul, a hope both sure and steadfast and entering into that which is within the veil, + +where as a forerunner Jesus entered for us, having become a high priest forever after the order of Melchizedek. + +

+ + +

For this Melchizedek, king of Salem, priest of God Most High, who met Abraham returning from the slaughter of the kings and blessed him, + +to whom also Abraham divided a tenth part of all (being first, by interpretation, “king of righteousness”, and then also “king of Salem”, which means “king of peace”, + +without father, without mother, without genealogy, having neither beginning of days nor end of life, but made like the Son of God), remains a priest continually. + +

+

Now consider how great this man was, to whom even Abraham the patriarch gave a tenth out of the best plunder. + +They indeed of the sons of Levi who receive the priest’s office have a commandment to take tithes from the people according to the law, that is, of their brothers, though these have come out of the body of Abraham, + +but he whose genealogy is not counted from them has accepted tithes from Abraham, and has blessed him who has the promises. + +But without any dispute the lesser is blessed by the greater. + +Here people who die receive tithes, but there one receives tithes of whom it is testified that he lives. + +We can say that through Abraham even Levi, who receives tithes, has paid tithes, + +for he was yet in the body of his father when Melchizedek met him. + +

+

Now if perfection was through the Levitical priesthood (for under it the people have received the law), what further need was there for another priest to arise after the order of Melchizedek, and not be called after the order of Aaron? + +For the priesthood being changed, there is of necessity a change made also in the law. + +For he of whom these things are said belongs to another tribe, from which no one has officiated at the altar. + +For it is evident that our Lord has sprung out of Judah, about which tribe Moses spoke nothing concerning priesthood. + +This is yet more abundantly evident, if after the likeness of Melchizedek there arises another priest, + +who has been made, not after the law of a fleshly commandment, but after the power of an endless life; + +for it is testified, +

+You are a priest forever, + +according to the order of Melchizedek.”7:17 +Psalms 110:4 + + +

For there is an annulling of a foregoing commandment because of its weakness and uselessness + +(for the law made nothing perfect), and a bringing in of a better hope, through which we draw near to God. + +Inasmuch as he was not made priest without the taking of an oath + +(for they indeed have been made priests without an oath), but he with an oath by him that says of him, +

+The Lord swore and will not change his mind, + +You are a priest forever, + +according to the order of Melchizedek.’”7:21 +Psalms 110:4 + + +

By so much, Jesus has become the guarantee of a better covenant. + +

+

Many, indeed, have been made priests, because they are hindered from continuing by death. + +But he, because he lives forever, has his priesthood unchangeable. + +Therefore he is also able to save to the uttermost those who draw near to God through him, seeing that he lives forever to make intercession for them. + +

+

For such a high priest was fitting for us: holy, guiltless, undefiled, separated from sinners, and made higher than the heavens; + +who doesn’t need, like those high priests, to offer up sacrifices daily, first for his own sins, and then for the sins of the people. For he did this once for all, when he offered up himself. + +For the law appoints men as high priests who have weakness, but the word of the oath, which came after the law, appoints a Son forever who has been perfected. + +

+ + +

Now in the things which we are saying, the main point is this: we have such a high priest, who sat down on the right hand of the throne of the Majesty in the heavens, + +a servant of the sanctuary and of the true tabernacle which the Lord pitched, not man. + +For every high priest is appointed to offer both gifts and sacrifices. Therefore it is necessary that this high priest also have something to offer. + +For if he were on earth, he would not be a priest at all, seeing there are priests who offer the gifts according to the law, + +who serve a copy and shadow of the heavenly things, even as Moses was warned by God when he was about to make the tabernacle, for he said, “See, you shall make everything according to the pattern that was shown to you on the mountain.”8:5 +Exodus 25:40 + +But now he has obtained a more excellent ministry, by as much as he is also the mediator of a better covenant, which on better promises has been given as law. + +

+

For if that first covenant had been faultless, then no place would have been sought for a second. + +For finding fault with them, he said, +

+Behold,8:8 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. the days are coming”, says the Lord, + +that I will make a new covenant with the house of Israel and with the house of Judah; + + +not according to the covenant that I made with their fathers + +in the day that I took them by the hand to lead them out of the land of Egypt; + +for they didn’t continue in my covenant, + +and I disregarded them,” says the Lord. + + +For this is the covenant that I will make with the house of Israel + +after those days,” says the Lord: + +I will put my laws into their mind; + +I will also write them on their heart. + +I will be their God, + +and they will be my people. + + +They will not teach every man his fellow citizen8:11 +TR reads “neighbor” instead of “fellow citizen” + +and every man his brother, saying, ‘Know the Lord,’ + +for all will know me, + +from their least to their greatest. + + +For I will be merciful to their unrighteousness. + +I will remember their sins and lawless deeds no more.”8:12 +Jeremiah 31:31-34 + + +

In that he says, “A new covenant”, he has made the first obsolete. But that which is becoming obsolete and grows aged is near to vanishing away. + +

+ + +

Now indeed even the first9:1 +TR adds “tabernacle” covenant had ordinances of divine service and an earthly sanctuary. + +For a tabernacle was prepared. In the first part were the lamp stand, the table, and the show bread, which is called the Holy Place. + +After the second veil was the tabernacle which is called the Holy of Holies, + +having a golden altar of incense and the ark of the covenant overlaid on all sides with gold, in which was a golden pot holding the manna, Aaron’s rod that budded, and the tablets of the covenant; + +and above it cherubim of glory overshadowing the mercy seat, of which things we cant speak now in detail. + +

+

Now these things having been thus prepared, the priests go in continually into the first tabernacle, accomplishing the services, + +but into the second the high priest alone, once in the year, not without blood, which he offers for himself and for the errors of the people. + +The Holy Spirit is indicating this, that the way into the Holy Place wasn’t yet revealed while the first tabernacle was still standing. + +This is a symbol of the present age, where gifts and sacrifices are offered that are incapable, concerning the conscience, of making the worshiper perfect, + +being only (with foods and drinks and various washings) fleshly ordinances, imposed until a time of reformation. + +

+

But Christ having come as a high priest of the coming good things, through the greater and more perfect tabernacle, not made with hands, that is to say, not of this creation, + +nor yet through the blood of goats and calves, but through his own blood, entered in once for all into the Holy Place, having obtained eternal redemption. + +For if the blood of goats and bulls, and the ashes of a heifer sprinkling those who have been defiled, sanctify to the cleanness of the flesh, + +how much more will the blood of Christ, who through the eternal Spirit offered himself without defect to God, cleanse your conscience from dead works to serve the living God? + +For this reason he is the mediator of a new covenant, since a death has occurred for the redemption of the transgressions that were under the first covenant, that those who have been called may receive the promise of the eternal inheritance. + +For where a last will and testament is, there must of necessity be the death of him who made it. + +For a will is in force where there has been death, for it is never in force while he who made it lives. + +Therefore even the first covenant has not been dedicated without blood. + +For when every commandment had been spoken by Moses to all the people according to the law, he took the blood of the calves and the goats, with water and scarlet wool and hyssop, and sprinkled both the book itself and all the people, + +saying, “This is the blood of the covenant which God has commanded you.”9:20 +Exodus 24:8 + +

+

He sprinkled the tabernacle and all the vessels of the ministry in the same way with the blood. + +According to the law, nearly everything is cleansed with blood, and apart from shedding of blood there is no remission. + +

+

It was necessary therefore that the copies of the things in the heavens should be cleansed with these, but the heavenly things themselves with better sacrifices than these. + +For Christ hasn’t entered into holy places made with hands, which are representations of the true, but into heaven itself, now to appear in the presence of God for us; + +nor yet that he should offer himself often, as the high priest enters into the holy place year by year with blood not his own, + +or else he must have suffered often since the foundation of the world. But now once at the end of the ages, he has been revealed to put away sin by the sacrifice of himself. + +Inasmuch as it is appointed for men to die once, and after this, judgment, + +so Christ also, having been offered once to bear the sins of many, will appear a second time, not to deal with sin, but to save those who are eagerly waiting for him. + +

+ + +

For the law, having a shadow of the good to come, not the very image of the things, can never with the same sacrifices year by year, which they offer continually, make perfect those who draw near. + +Or else wouldn’t they have ceased to be offered, because the worshipers, having been once cleansed, would have had no more consciousness of sins? + +But in those sacrifices there is a yearly reminder of sins. + +For it is impossible that the blood of bulls and goats should take away sins. + +Therefore when he comes into the world, he says, +

+You didn’t desire sacrifice and offering, + +but you prepared a body for me. + + +You had no pleasure in whole burnt offerings and sacrifices for sin. + + +Then I said, ‘Behold, I have come (in the scroll of the book it is written of me) + +to do your will, O God.’”10:7 +Psalms 40:6-8 + + +

Previously saying, “Sacrifices and offerings and whole burnt offerings and sacrifices for sin you didn’t desire, neither had pleasure in them” (those which are offered according to the law), + +then he has said, “Behold, I have come to do your will.” He takes away the first, that he may establish the second, + +by which will we have been sanctified through the offering of the body of Jesus Christ once for all. + +

+

Every priest indeed stands day by day serving and offering often the same sacrifices, which can never take away sins, + +but he, when he had offered one sacrifice for sins forever, sat down on the right hand of God, + +from that time waiting until his enemies are made the footstool of his feet. + +For by one offering he has perfected forever those who are being sanctified. + +The Holy Spirit also testifies to us, for after saying, + +

+This is the covenant that I will make with them + +after those days,” says the Lord, + +I will put my laws on their heart, + +I will also write them on their mind;”10:16 +Jeremiah 31:33 + +

then he says, + +

+I will remember their sins and their iniquities no more.”10:17 +Jeremiah 31:34 + + +

Now where remission of these is, there is no more offering for sin. + +

+

Having therefore, brothers, boldness to enter into the holy place by the blood of Jesus, + +by the way which he dedicated for us, a new and living way, through the veil, that is to say, his flesh, + +and having a great priest over God’s house, + +let’s draw near with a true heart in fullness of faith, having our hearts sprinkled from an evil conscience and having our body washed with pure water, + +let’s hold fast the confession of our hope without wavering; for he who promised is faithful. + +

+

Let’s consider how to provoke one another to love and good works, + +not forsaking our own assembling together, as the custom of some is, but exhorting one another, and so much the more as you see the Day approaching. + +

+

For if we sin willfully after we have received the knowledge of the truth, there remains no more a sacrifice for sins, + +but a certain fearful expectation of judgment, and a fierceness of fire which will devour the adversaries. + +A man who disregards Moseslaw dies without compassion on the word of two or three witnesses. + +How much worse punishment do you think he will be judged worthy of who has trodden under foot the Son of God, and has counted the blood of the covenant with which he was sanctified an unholy thing, and has insulted the Spirit of grace? + +For we know him who said, “Vengeance belongs to me. I will repay,” says the Lord.10:30 +Deuteronomy 32:35 Again, “The Lord will judge his people.”10:30 +Deuteronomy 32:36; Psalms 135:14 + +It is a fearful thing to fall into the hands of the living God. + +

+

But remember the former days, in which, after you were enlightened, you endured a great struggle with sufferings: + +partly, being exposed to both reproaches and oppressions, and partly, becoming partakers with those who were treated so. + +For you both had compassion on me in my chains and joyfully accepted the plundering of your possessions, knowing that you have for yourselves a better possession and an enduring one in the heavens. + +Therefore don’t throw away your boldness, which has a great reward. + +For you need endurance so that, having done the will of God, you may receive the promise. + +

+In a very little while, + +he who comes will come and will not wait. + + +But the righteous one will live by faith. + +If he shrinks back, my soul has no pleasure in him.”10:38 +Habakkuk 2:3-4 + + +

But we are not of those who shrink back to destruction, but of those who have faith to the saving of the soul. + +

+ + +

Now faith is assurance of things hoped for, proof of things not seen. + +For by this, the elders obtained approval. + +By faith we understand that the universe has been framed by the word of God, so that what is seen has not been made out of things which are visible. + +

+

By faith Abel offered to God a more excellent sacrifice than Cain, through which he had testimony given to him that he was righteous, God testifying with respect to his gifts; and through it he, being dead, still speaks. + +

+

By faith Enoch was taken away, so that he wouldn’t see death, and he was not found, because God translated him. For he has had testimony given to him that before his translation he had been well pleasing to God. + +Without faith it is impossible to be well pleasing to him, for he who comes to God must believe that he exists, and that he is a rewarder of those who seek him. + +

+

By faith Noah, being warned about things not yet seen, moved with godly fear,11:7 +or, reverence prepared a ship for the saving of his house, through which he condemned the world and became heir of the righteousness which is according to faith. + +

+

By faith Abraham, when he was called, obeyed to go out to the place which he was to receive for an inheritance. He went out, not knowing where he went. + +By faith he lived as an alien in the land of promise, as in a land not his own, dwelling in tents with Isaac and Jacob, the heirs with him of the same promise. + +For he was looking for the city which has foundations, whose builder and maker is God. + +

+

By faith even Sarah herself received power to conceive, and she bore a child when she was past age, since she counted him faithful who had promised. + +Therefore as many as the stars of the sky in multitude, and as innumerable as the sand which is by the sea shore, were fathered by one man, and him as good as dead. + +

+

These all died in faith, not having received the promises, but having seen11:13 +TR adds “and being convinced of” them and embraced them from afar, and having confessed that they were strangers and pilgrims on the earth. + +For those who say such things make it clear that they are seeking a country of their own. + +If indeed they had been thinking of that country from which they went out, they would have had enough time to return. + +But now they desire a better country, that is, a heavenly one. Therefore God is not ashamed of them, to be called their God, for he has prepared a city for them. + +

+

By faith, Abraham, being tested, offered up Isaac. Yes, he who had gladly received the promises was offering up his only born11:17 +The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. son, + +to whom it was said, “Your offspring will be accounted as from Isaac,” +11:18 +Genesis 21:12 + +concluding that God is able to raise up even from the dead. Figuratively speaking, he also did receive him back from the dead. + +

+

By faith Isaac blessed Jacob and Esau, even concerning things to come. + +

+

By faith Jacob, when he was dying, blessed each of the sons of Joseph, and worshiped, leaning on the top of his staff. + +

+

By faith Joseph, when his end was near, made mention of the departure of the children of Israel, and gave instructions concerning his bones. + +

+

By faith Moses, when he was born, was hidden for three months by his parents, because they saw that he was a beautiful child; and they were not afraid of the king’s commandment. + +

+

By faith Moses, when he had grown up, refused to be called the son of Pharaoh’s daughter, + +choosing rather to share ill treatment with Gods people than to enjoy the pleasures of sin for a time, + +considering the reproach of Christ greater riches than the treasures of Egypt; for he looked to the reward. + +By faith he left Egypt, not fearing the wrath of the king; for he endured, as seeing him who is invisible. + +By faith he kept the Passover and the sprinkling of the blood, that the destroyer of the firstborn should not touch them. + +

+

By faith they passed through the Red Sea as on dry land. When the Egyptians tried to do so, they were swallowed up. + +

+

By faith the walls of Jericho fell down after they had been encircled for seven days. + +

+

By faith Rahab the prostitute didn’t perish with those who were disobedient, having received the spies in peace. + +

+

What more shall I say? For the time would fail me if I told of Gideon, Barak, Samson, Jephthah, David, Samuel, and the prophets— + +who through faith subdued kingdoms, worked out righteousness, obtained promises, stopped the mouths of lions,11:33 +Daniel 6:22-23 + +quenched the power of fire,11:34 +Daniel 3:1-30 escaped the edge of the sword,11:34 +1 Kings 19:1-3; 2 Kings 6:317:20 from weakness were made strong, grew mighty in war, and caused foreign armies to flee. + +Women received their dead by resurrection.11:35 +1 Kings 17:17-23; 2 Kings 4:32-37 Others were tortured, not accepting their deliverance, that they might obtain a better resurrection. + +Others were tried by mocking and scourging, yes, moreover by bonds and imprisonment. + +They were stoned.11:37 +2 Chronicles 24:20-21 They were sawn apart. They were tempted. They were slain with the sword.11:37 +Jeremiah 26:20-23; 1 Kings 19:10 They went around in sheep skins and in goat skins; being destitute, afflicted, ill-treated— + +of whom the world was not worthy—wandering in deserts, mountains, caves, and the holes of the earth. + +

+

These all, having been commended for their faith, didn’t receive the promise, + +God having provided some better thing concerning us, so that apart from us they should not be made perfect. + +

+ + +

Therefore lets also, seeing we are surrounded by so great a cloud of witnesses, lay aside every weight and the sin which so easily entangles us, and lets run with perseverance the race that is set before us, + +looking to Jesus, the author and perfecter of faith, who for the joy that was set before him endured the cross, despising its shame, and has sat down at the right hand of the throne of God. + +

+

For consider him who has endured such contradiction of sinners against himself, that you don’t grow weary, fainting in your souls. + +You have not yet resisted to blood, striving against sin. + +You have forgotten the exhortation which reasons with you as with children, +

+My son, don’t take lightly the chastening of the Lord, + +nor faint when you are reproved by him; + + +for whom the Lord loves, he disciplines, + +and chastises every son whom he receives.”12:6 +Proverbs 3:11-12 + + +

It is for discipline that you endure. God deals with you as with children, for what son is there whom his father doesn’t discipline? + +But if you are without discipline, of which all have been made partakers, then you are illegitimate, and not children. + +Furthermore, we had the fathers of our flesh to chasten us, and we paid them respect. Shall we not much rather be in subjection to the Father of spirits and live? + +For they indeed for a few days disciplined us as seemed good to them, but he for our profit, that we may be partakers of his holiness. + +All chastening seems for the present to be not joyous but grievous; yet afterward it yields the peaceful fruit of righteousness to those who have been trained by it. + +Therefore lift up the hands that hang down and the feeble knees,12:12 +Isaiah 35:3 + +and make straight paths for your feet,12:13 +Proverbs 4:26 so what is lame may not be dislocated, but rather be healed. + +

+

Follow after peace with all men, and the sanctification without which no man will see the Lord, + +looking carefully lest there be any man who falls short of the grace of God, lest any root of bitterness springing up trouble you and many be defiled by it, + +lest there be any sexually immoral person or profane person, like Esau, who sold his birthright for one meal. + +For you know that even when he afterward desired to inherit the blessing, he was rejected, for he found no place for a change of mind though he sought it diligently with tears. + +

+

For you have not come to a mountain that might be touched and that burned with fire, and to blackness, darkness, storm, + +the sound of a trumpet, and the voice of words; which those who heard it begged that not one more word should be spoken to them, + +for they could not stand that which was commanded, “If even an animal touches the mountain, it shall be stoned”.12:20 +TR adds “or shot with an arrow”12:20 +Exodus 19:12-13 + +So fearful was the appearance that Moses said, “I am terrified and trembling.”12:21 +Deuteronomy 9:19 + +

+

But you have come to Mount Zion and to the city of the living God, the heavenly Jerusalem, and to innumerable multitudes of angels, + +to the festal gathering and assembly of the firstborn who are enrolled in heaven, to God the Judge of all, to the spirits of just men made perfect, + +to Jesus, the mediator of a new covenant,12:24 +Jeremiah 31:31 and to the blood of sprinkling that speaks better than that of Abel. + +

+

See that you don’t refuse him who speaks. For if they didn’t escape when they refused him who warned on the earth, how much more will we not escape who turn away from him who warns from heaven, + +whose voice shook the earth then, but now he has promised, saying, “Yet once more I will shake not only the earth, but also the heavens.”12:26 +Haggai 2:6 + +This phrase, “Yet once more” signifies the removing of those things that are shaken, as of things that have been made, that those things which are not shaken may remain. + +Therefore, receiving a Kingdom that can’t be shaken, lets have grace, through which we serve God acceptably, with reverence and awe, + +for our God is a consuming fire.12:29 +Deuteronomy 4:24 + +

+ + +

Let brotherly love continue. + +Don’t forget to show hospitality to strangers, for in doing so, some have entertained angels without knowing it. + +Remember those who are in bonds, as bound with them, and those who are ill-treated, since you are also in the body. + +Let marriage be held in honor among all, and let the bed be undefiled; but God will judge the sexually immoral and adulterers. + +

+

Be free from the love of money, content with such things as you have, for he has said, “I will in no way leave you, neither will I in any way forsake you.”13:5 +Deuteronomy 31:6 + +So that with good courage we say, +

+The Lord is my helper. I will not fear. + +What can man do to me?”13:6 +Psalms 118:6-7 + + +

Remember your leaders, men who spoke to you the word of God, and considering the results of their conduct, imitate their faith. + +Jesus Christ is the same yesterday, today, and forever. + +Don’t be carried away by various and strange teachings, for it is good that the heart be established by grace, not by foods, through which those who were so occupied were not benefited. + +

+

We have an altar from which those who serve the holy tabernacle have no right to eat. + +For the bodies of those animals, whose blood is brought into the holy place by the high priest as an offering for sin, are burned outside of the camp.13:11 +Leviticus 16:27 + +Therefore Jesus also, that he might sanctify the people through his own blood, suffered outside of the gate. + +Let’s therefore go out to him outside of the camp, bearing his reproach. + +For we don’t have here an enduring city, but we seek that which is to come. + +Through him, then, let’s offer up a sacrifice of praise to God13:15 +Psalms 50:23 continually, that is, the fruit of lips which proclaim allegiance to his name. + +But don’t forget to be doing good and sharing, for with such sacrifices God is well pleased. + +

+

Obey your leaders and submit to them, for they watch on behalf of your souls, as those who will give account, that they may do this with joy and not with groaning, for that would be unprofitable for you. + +

+

Pray for us, for we are persuaded that we have a good conscience, desiring to live honorably in all things. + +I strongly urge you to do this, that I may be restored to you sooner. + +

+

Now may the God of peace, who brought again from the dead the great shepherd of the sheep with the blood of an eternal covenant, our Lord Jesus, + +make you complete in every good work to do his will, working in you that which is well pleasing in his sight, through Jesus Christ, to whom be the glory forever and ever. Amen. + +

+

But I exhort you, brothers, endure the word of exhortation, for I have written to you in few words. + +Know that our brother Timothy has been freed, with whom, if he comes shortly, I will see you. + +

+

Greet all of your leaders and all the saints. The Italians greet you. + +

+

Grace be with you all. Amen. + +

+
+59-JAS-web.sfm World English Bible (WEB) +James +The Letter from James +James +Jas +

The Letter from James +

+ + +

James, a servant of God and of the Lord Jesus Christ,1:1 +“Christ” means “Anointed One”. to the twelve tribes which are in the Dispersion: Greetings. + +

+

Count it all joy, my brothers,1:2 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” when you fall into various temptations, + +knowing that the testing of your faith produces endurance. + +Let endurance have its perfect work, that you may be perfect and complete, lacking in nothing. + +

+

But if any of you lacks wisdom, let him ask of God, who gives to all liberally and without reproach, and it will be given to him. + +But let him ask in faith, without any doubting, for he who doubts is like a wave of the sea, driven by the wind and tossed. + +For that man shouldn’t think that he will receive anything from the Lord. + +He is a double-minded man, unstable in all his ways. + +

+

Let the brother in humble circumstances glory in his high position; + +and the rich, in that he is made humble, because like the flower in the grass, he will pass away. + +For the sun arises with the scorching wind and withers the grass; and the flower in it falls, and the beauty of its appearance perishes. So the rich man will also fade away in his pursuits. + +

+

Blessed is a person who endures temptation, for when he has been approved, he will receive the crown of life which the Lord promised to those who love him. + +

+

Let no man say when he is tempted, “I am tempted by God,” for God cant be tempted by evil, and he himself tempts no one. + +But each one is tempted when he is drawn away by his own lust and enticed. + +Then the lust, when it has conceived, bears sin. The sin, when it is full grown, produces death. + +Don’t be deceived, my beloved brothers. + +Every good gift and every perfect gift is from above, coming down from the Father of lights, with whom can be no variation nor turning shadow. + +Of his own will he gave birth to us by the word of truth, that we should be a kind of first fruits of his creatures. + +

+

So, then, my beloved brothers, let every man be swift to hear, slow to speak, and slow to anger; + +for the anger of man doesn’t produce the righteousness of God. + +Therefore, putting away all filthiness and overflowing of wickedness, receive with humility the implanted word, which is able to save your souls.1:21 +or, preserve your life. + +

+

But be doers of the word, and not only hearers, deluding your own selves. + +For if anyone is a hearer of the word and not a doer, he is like a man looking at his natural face in a mirror; + +for he sees himself, and goes away, and immediately forgets what kind of man he was. + +But he who looks into the perfect law of freedom and continues, not being a hearer who forgets but a doer of the work, this man will be blessed in what he does. + +

+

If anyone among you thinks himself to be religious while he doesn’t bridle his tongue, but deceives his heart, this man’s religion is worthless. + +Pure religion and undefiled before our God and Father is this: to visit the fatherless and widows in their affliction, and to keep oneself unstained by the world. + +

+ + +

My brothers, don’t hold the faith of our glorious Lord Jesus Christ with partiality. + +For if a man with a gold ring, in fine clothing, comes into your synagogue,2:2 +or, meeting and a poor man in filthy clothing also comes in, + +and you pay special attention to him who wears the fine clothing and say, “Sit here in a good place;” and you tell the poor man, “Stand there,” orSit by my footstool” + +haven’t you shown partiality among yourselves, and become judges with evil thoughts? + +Listen, my beloved brothers. Didn’t God choose those who are poor in this world to be rich in faith and heirs of the Kingdom which he promised to those who love him? + +But you have dishonored the poor man. Don’t the rich oppress you and personally drag you before the courts? + +Don’t they blaspheme the honorable name by which you are called? + +

+

However, if you fulfill the royal law according to the Scripture, “You shall love your neighbor as yourself,”2:8 +Leviticus 19:18 you do well. + +But if you show partiality, you commit sin, being convicted by the law as transgressors. + +For whoever keeps the whole law, and yet stumbles in one point, he has become guilty of all. + +For he who said, “Do not commit adultery,”2:11 +Exodus 20:14; Deuteronomy 5:18 also said, “Do not commit murder.”2:11 +Exodus 20:13; Deuteronomy 5:17 + Now if you do not commit adultery but do murder, you have become a transgressor of the law. + +So speak and so do as men who are to be judged by the law of freedom. + +For judgment is without mercy to him who has shown no mercy. Mercy triumphs over judgment. + +

+

What good is it, my brothers, if a man says he has faith, but has no works? Can faith save him? + +And if a brother or sister is naked and in lack of daily food, + +and one of you tells them, “Go in peace. Be warmed and filled;” yet you didn’t give them the things the body needs, what good is it? + +Even so faith, if it has no works, is dead in itself. + +Yes, a man will say, “You have faith, and I have works.” Show me your faith without works, and I will show you my faith by my works. + +

+

You believe that God is one. You do well. The demons also believeand shudder. + +But do you want to know, vain man, that faith apart from works is dead? + +Wasn’t Abraham our father justified by works, in that he offered up Isaac his son on the altar? + +You see that faith worked with his works, and by works faith was perfected. + +So the Scripture was fulfilled which says, “Abraham believed God, and it was accounted to him as righteousness,”2:23 +Genesis 15:6 and he was called the friend of God. + +You see then that by works a man is justified, and not only by faith. + +In the same way, wasn’t Rahab the prostitute also justified by works when she received the messengers and sent them out another way? + +For as the body apart from the spirit is dead, even so faith apart from works is dead. + +

+ + +

Let not many of you be teachers, my brothers, knowing that we will receive heavier judgment. + +For we all stumble in many things. Anyone who doesn’t stumble in word is a perfect person, able to bridle the whole body also. + +Indeed, we put bits into the horsesmouths so that they may obey us, and we guide their whole body. + +Behold,3:4 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. the ships also, though they are so big and are driven by fierce winds, are yet guided by a very small rudder, wherever the pilot desires. + +So the tongue is also a little member, and boasts great things. See how a small fire can spread to a large forest! + +And the tongue is a fire. The world of iniquity among our members is the tongue, which defiles the whole body, and sets on fire the course of nature, and is set on fire by Gehenna.3:6 +or, Hell + +For every kind of animal, bird, creeping thing, and sea creature is tamed, and has been tamed by mankind; + +but nobody can tame the tongue. It is a restless evil, full of deadly poison. + +With it we bless our God and Father, and with it we curse men who are made in the image of God. + +Out of the same mouth comes blessing and cursing. My brothers, these things ought not to be so. + +Does a spring send out from the same opening fresh and bitter water? + +Can a fig tree, my brothers, yield olives, or a vine figs? Thus no spring yields both salt water and fresh water. + +

+

Who is wise and understanding among you? Let him show by his good conduct that his deeds are done in gentleness of wisdom. + +But if you have bitter jealousy and selfish ambition in your heart, don’t boast and don’t lie against the truth. + +This wisdom is not that which comes down from above, but is earthly, sensual, and demonic. + +For where jealousy and selfish ambition are, there is confusion and every evil deed. + +But the wisdom that is from above is first pure, then peaceful, gentle, reasonable, full of mercy and good fruits, without partiality, and without hypocrisy. + +Now the fruit of righteousness is sown in peace by those who make peace. + +

+ + +

Where do wars and fightings among you come from? Don’t they come from your pleasures that war in your members? + +You lust, and don’t have. You murder and covet, and cant obtain. You fight and make war. You don’t have, because you don’t ask. + +You ask, and don’t receive, because you ask with wrong motives, so that you may spend it on your pleasures. + +You adulterers and adulteresses, don’t you know that friendship with the world is hostility toward God? Whoever therefore wants to be a friend of the world makes himself an enemy of God. + +Or do you think that the Scripture says in vain, “The Spirit who lives in us yearns jealously”? + +But he gives more grace. Therefore it says, “God resists the proud, but gives grace to the humble.”4:6 +Proverbs 3:34 + +Be subject therefore to God. Resist the devil, and he will flee from you. + +Draw near to God, and he will draw near to you. Cleanse your hands, you sinners. Purify your hearts, you double-minded. + +Lament, mourn, and weep. Let your laughter be turned to mourning and your joy to gloom. + +Humble yourselves in the sight of the Lord, and he will exalt you. + +

+

Don’t speak against one another, brothers. He who speaks against a brother and judges his brother, speaks against the law and judges the law. But if you judge the law, you are not a doer of the law but a judge. + +Only one is the lawgiver, who is able to save and to destroy. But who are you to judge another? + +

+

Come now, you who say, “Today or tomorrow let’s go into this city and spend a year there, trade, and make a profit.” + +Yet you don’t know what your life will be like tomorrow. For what is your life? For you are a vapor that appears for a little time and then vanishes away. + +For you ought to say, “If the Lord wills, we will both live, and do this or that.” + +But now you glory in your boasting. All such boasting is evil. + +To him therefore who knows to do good and doesn’t do it, to him it is sin. + +

+ + +

Come now, you rich, weep and howl for your miseries that are coming on you. + +Your riches are corrupted and your garments are moth-eaten. + +Your gold and your silver are corroded, and their corrosion will be for a testimony against you and will eat your flesh like fire. You have laid up your treasure in the last days. + +Behold, the wages of the laborers who mowed your fields, which you have kept back by fraud, cry out; and the cries of those who reaped have entered into the ears of the Lord of Armies.5:4 +Greek: Sabaoth (or Hebrew: Tze’va’ot) + +You have lived in luxury on the earth, and taken your pleasure. You have nourished your hearts as in a day of slaughter. + +You have condemned and you have murdered the righteous one. He doesn’t resist you. + +

+

Be patient therefore, brothers, until the coming of the Lord. Behold, the farmer waits for the precious fruit of the earth, being patient over it, until it receives the early and late rain. + +You also be patient. Establish your hearts, for the coming of the Lord is at hand. + +

+

Don’t grumble, brothers, against one another, so that you won’t be judged. Behold, the judge stands at the door. + +Take, brothers, for an example of suffering and of perseverance, the prophets who spoke in the name of the Lord. + +Behold, we call them blessed who endured. You have heard of the perseverance of Job and have seen the Lord in the outcome, and how the Lord is full of compassion and mercy. + +

+

But above all things, my brothers, don’t swearnot by heaven, or by the earth, or by any other oath; but let youryesbeyes”, and yourno”, “no”, so that you don’t fall into hypocrisy.5:12 +TR reads “under judgment” instead of “into hypocrisy” + +

+

Is any among you suffering? Let him pray. Is any cheerful? Let him sing praises. + +Is any among you sick? Let him call for the elders of the assembly, and let them pray over him, anointing him with oil in the name of the Lord; + +and the prayer of faith will heal him who is sick, and the Lord will raise him up. If he has committed sins, he will be forgiven. + +Confess your sins to one another and pray for one another, that you may be healed. The insistent prayer of a righteous person is powerfully effective. + +Elijah was a man with a nature like ours, and he prayed earnestly that it might not rain, and it didn’t rain on the earth for three years and six months. + +He prayed again, and the sky gave rain, and the earth produced its fruit. + +

+

Brothers, if any among you wanders from the truth and someone turns him back, + +let him know that he who turns a sinner from the error of his way will save a soul from death and will cover a multitude of sins. + +

+
+60-1PE-web.sfm World English Bible (WEB) +1 Peter +Peter’s First Letter +1 Peter +1Pe +

Peter’s First Letter +

+ + +

Peter, an apostle of Jesus Christ,1:1 +“Christ” means “Anointed One”. to the chosen ones who are living as foreigners in the Dispersion in Pontus, Galatia, Cappadocia, Asia, and Bithynia, + +according to the foreknowledge of God the Father, in sanctification of the Spirit, that you may obey Jesus Christ and be sprinkled with his blood: Grace to you and peace be multiplied. + +

+

Blessed be the God and Father of our Lord Jesus Christ, who according to his great mercy caused us to be born again to a living hope through the resurrection of Jesus Christ from the dead, + +to an incorruptible and undefiled inheritance that doesn’t fade away, reserved in Heaven for you, + +who by the power of God are guarded through faith for a salvation ready to be revealed in the last time. + +In this you greatly rejoice, though now for a little while, if need be, you have been grieved in various trials, + +that the proof of your faith, which is more precious than gold that perishes, even though it is tested by fire, may be found to result in praise, glory, and honor at the revelation of Jesus Christ— + +whom, not having known, you love. In him, though now you don’t see him, yet believing, you rejoice greatly with joy that is unspeakable and full of glory, + +receiving the result of your faith, the salvation of your souls. + +

+

Concerning this salvation, the prophets sought and searched diligently. They prophesied of the grace that would come to you, + +searching for who or what kind of time the Spirit of Christ which was in them pointed to when he predicted the sufferings of Christ and the glories that would follow them. + +To them it was revealed that they served not themselves, but you, in these things, which now have been announced to you through those who preached the Good News to you by the Holy Spirit sent out from heaven; which things angels desire to look into. + +

+

Therefore prepare your minds for action.1:13 +literally, “gird up the waist of your mind” or “put on the belt of the waist of your mind” Be sober, and set your hope fully on the grace that will be brought to you at the revelation of Jesus Christ— + +as children of obedience, not conforming yourselves according to your former lusts as in your ignorance, + +but just as he who called you is holy, you yourselves also be holy in all of your behavior, + +because it is written, “You shall be holy, for I am holy.”1:16 +Leviticus 11:44-45 + +

+

If you call on him as Father, who without respect of persons judges according to each man’s work, pass the time of your living as foreigners here in reverent fear, + +knowing that you were redeemed, not with corruptible things like silver or gold, from the useless way of life handed down from your fathers, + +but with precious blood, as of a lamb without blemish or spot, the blood of Christ, + +who was foreknown indeed before the foundation of the world, but was revealed in this last age for your sake, + +who through him are believers in God, who raised him from the dead and gave him glory, so that your faith and hope might be in God. + +

+

Seeing you have purified your souls in your obedience to the truth through the Spirit in sincere brotherly affection, love one another from the heart fervently, + +having been born again, not of corruptible seed, but of incorruptible, through the word of God, which lives and remains forever. + +For, +

+All flesh is like grass, + +and all of man’s glory like the flower in the grass. + +The grass withers, and its flower falls; + + +but the Lords word endures forever.”1:25 +Isaiah 40:6-8 + +

This is the word of Good News which was preached to you. + +

+ + +

Putting away therefore all wickedness, all deceit, hypocrisies, envies, and all evil speaking, + +as newborn babies, long for the pure spiritual milk, that with it you may grow, + +if indeed you have tasted that the Lord is gracious. + +Come to him, a living stone, rejected indeed by men, but chosen by God, precious. + +You also as living stones are built up as a spiritual house, to be a holy priesthood, to offer up spiritual sacrifices, acceptable to God through Jesus Christ. + +Because it is contained in Scripture, +

+Behold,2:6 +“Behold”, from “הִנֵּה” or “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. I lay in Zion a chief cornerstone, chosen and precious. + +He who believes in him will not be disappointed.”2:6 +Isaiah 28:16 + + + +

For you who believe therefore is the honor, but for those who are disobedient, +

+The stone which the builders rejected + +has become the chief cornerstone,”2:7 +Psalms 118:22 + + +

and, +

+a stumbling stone and a rock of offense.”2:8 +Isaiah 8:14 + +

For they stumble at the word, being disobedient, to which also they were appointed. + +But you are a chosen race, a royal priesthood, a holy nation, a people for God’s own possession, that you may proclaim the excellence of him who called you out of darkness into his marvelous light. + +In the past, you were not a people, but now are God’s people, who had not obtained mercy, but now have obtained mercy. + +

+

Beloved, I beg you as foreigners and pilgrims to abstain from fleshly lusts which war against the soul, + +having good behavior among the nations, so in that of which they speak against you as evildoers, they may see your good works and glorify God in the day of visitation. + +

+

Therefore subject yourselves to every ordinance of man for the Lords sake: whether to the king, as supreme, + +or to governors, as sent by him for vengeance on evildoers and for praise to those who do well. + +For this is the will of God, that by well-doing you should put to silence the ignorance of foolish men. + +Live as free people, yet not using your freedom for a cloak of wickedness, but as bondservants of God. + +

+

Honor all men. Love the brotherhood. Fear God. Honor the king. + +

+

Servants, be in subjection to your masters with all respect, not only to the good and gentle, but also to the wicked. + +For it is commendable if someone endures pain, suffering unjustly, because of conscience toward God. + +For what glory is it if, when you sin, you patiently endure beating? But if when you do well, you patiently endure suffering, this is commendable with God. + +For you were called to this, because Christ also suffered for us, leaving you2:21 +TR reads “us” instead of “you” an example, that you should follow his steps, + +who didn’t sin, “neither was deceit found in his mouth.”2:22 +Isaiah 53:9 + +When he was cursed, he didn’t curse back. When he suffered, he didn’t threaten, but committed himself to him who judges righteously. + +He himself bore our sins in his body on the tree, that we, having died to sins, might live to righteousness. You were healed by his wounds.2:24 +or, stripes + +For you were going astray like sheep; but now you have returned to the Shepherd and Overseer2:25 +“Overseer” is from the Greek ἐπίσκοπον, which can mean overseer, curator, guardian, or superintendent. of your souls. + +

+ + +

In the same way, wives, be in subjection to your own husbands, so that, even if any don’t obey the Word, they may be won by the behavior of their wives without a word, + +seeing your pure behavior in fear. + +Let your beauty come not from the outward adorning of braiding your hair, and of wearing gold ornaments or of putting on fine clothing, + +but from the hidden person of the heart, in the incorruptible adornment of a gentle and quiet spirit, which is very precious in God’s sight. + +For this is how in the past the holy women who hoped in God also adorned themselves, being in subjection to their own husbands. + +So Sarah obeyed Abraham, calling him lord, whose children you now are if you do well and are not put in fear by any terror. + +

+

You husbands, in the same way, live with your wives according to knowledge, giving honor to the woman as to the weaker vessel, as also being joint heirs of the grace of life, that your prayers may not be hindered. + +

+

Finally, all of you be like-minded, compassionate, loving as brothers, tenderhearted, courteous, + +not rendering evil for evil or insult for insult; but instead blessing, knowing that you were called to this, that you may inherit a blessing. + +For, +

+He who would love life + +and see good days, + +let him keep his tongue from evil + +and his lips from speaking deceit. + + +Let him turn away from evil and do good. + +Let him seek peace and pursue it. + + +For the eyes of the Lord are on the righteous, + +and his ears open to their prayer; + +but the face of the Lord is against those who do evil.”3:12 +Psalms 34:12-16 + + +

Now who will harm you if you become imitators of that which is good? + +But even if you should suffer for righteousnesssake, you are blessed. “Don’t fear what they fear, neither be troubled.”3:14 +Isaiah 8:12 + +But sanctify the Lord God in your hearts. Always be ready to give an answer to everyone who asks you a reason concerning the hope that is in you, with humility and fear, + +having a good conscience. Thus, while you are spoken against as evildoers, they may be disappointed who curse your good way of life in Christ. + +For it is better, if it is God’s will, that you suffer for doing what is right than for doing evil. + +Because Christ also suffered for sins once, the righteous for the unrighteous, that he might bring you to God, being put to death in the flesh, but made alive in the Spirit, + +in whom he also went and preached to the spirits in prison, + +who before were disobedient when God waited patiently in the days of Noah while the ship was being built. In it, few, that is, eight souls, were saved through water. + +This is a symbol of baptism, which now saves younot the putting away of the filth of the flesh, but the answer of a good conscience toward Godthrough the resurrection of Jesus Christ, + +who is at the right hand of God, having gone into heaven, angels and authorities and powers being made subject to him. + +

+ + +

Therefore, since Christ suffered for us in the flesh, arm yourselves also with the same mind; for he who has suffered in the flesh has ceased from sin, + +that you no longer should live the rest of your time in the flesh for the lusts of men, but for the will of God. + +For we have spent enough of our past time doing the desire of the Gentiles, and having walked in lewdness, lusts, drunken binges, orgies, carousings, and abominable idolatries. + +They think it is strange that you don’t run with them into the same excess of riot, speaking evil of you. + +They will give account to him who is ready to judge the living and the dead. + +For to this end the Good News was preached even to the dead, that they might be judged indeed as men in the flesh, but live as to God in the spirit. + +

+

But the end of all things is near. Therefore be of sound mind, self-controlled, and sober in prayer. + +And above all things be earnest in your love among yourselves, for love covers a multitude of sins. + +Be hospitable to one another without grumbling. + +As each has received a gift, employ it in serving one another, as good managers of the grace of God in its various forms. + +If anyone speaks, let it be as it were the very words of God. If anyone serves, let it be as of the strength which God supplies, that in all things God may be glorified through Jesus Christ, to whom belong the glory and the dominion forever and ever. Amen. + +

+

Beloved, don’t be astonished at the fiery trial which has come upon you to test you, as though a strange thing happened to you. + +But because you are partakers of Christ’s sufferings, rejoice, that at the revelation of his glory you also may rejoice with exceeding joy. + +If you are insulted for the name of Christ, you are blessed, because the Spirit of glory and of God rests on you. On their part he is blasphemed, but on your part he is glorified. + +But let none of you suffer as a murderer, or a thief, or an evil doer, or a meddler in other men’s matters. + +But if one of you suffers for being a Christian, let him not be ashamed; but let him glorify God in this matter. + +For the time has come for judgment to begin with the household of God. If it begins first with us, what will happen to those who don’t obey the Good News of God? + +If it is hard for the righteous to be saved, what will happen to the ungodly and the sinner?”4:18 +Proverbs 11:31 + +Therefore let them also who suffer according to the will of God in doing good entrust their souls to him, as to a faithful Creator. + +

+ + +

Therefore I exhort the elders among you, as a fellow elder and a witness of the sufferings of Christ, and who will also share in the glory that will be revealed: + +shepherd the flock of God which is among you, exercising the oversight, not under compulsion, but voluntarily; not for dishonest gain, but willingly; + +not as lording it over those entrusted to you, but making yourselves examples to the flock. + +When the chief Shepherd is revealed, you will receive the crown of glory that doesn’t fade away. + +

+

Likewise, you younger ones, be subject to the elder. Yes, all of you clothe yourselves with humility and subject yourselves to one another; forGod resists the proud, but gives grace to the humble.”5:5 +Proverbs 3:34 + + +Humble yourselves therefore under the mighty hand of God, that he may exalt you in due time, + +casting all your worries on him, because he cares for you. + +

+

Be sober and self-controlled. Be watchful. Your adversary, the devil, walks around like a roaring lion, seeking whom he may devour. + +Withstand him steadfast in your faith, knowing that your brothers who are in the world are undergoing the same sufferings. + +But may the God of all grace, who called you to his eternal glory by Christ Jesus, after you have suffered a little while, perfect, establish, strengthen, and settle you. + +To him be the glory and the power forever and ever. Amen. + +

+

Through Silvanus, our faithful brother, as I consider him, I have written to you briefly, exhorting and testifying that this is the true grace of God in which you stand. + +She who is in Babylon, chosen together with you, greets you. So does Mark, my son. + +Greet one another with a kiss of love. +

+

Peace be to all of you who are in Christ Jesus. Amen. + +

+
+61-2PE-web.sfm World English Bible (WEB) +2 Peter +Peter’s Second Letter +2 Peter +2Pe +

Peter’s Second Letter +

+ + +

Simon Peter, a servant and apostle of Jesus Christ,1:1 +“Christ” means “Anointed One”. to those who have obtained a like precious faith with us in the righteousness of our God and Savior, Jesus Christ: + +Grace to you and peace be multiplied in the knowledge of God and of Jesus our Lord, + +seeing that his divine power has granted to us all things that pertain to life and godliness, through the knowledge of him who called us by his own glory and virtue, + +by which he has granted to us his precious and exceedingly great promises; that through these you may become partakers of the divine nature, having escaped from the corruption that is in the world by lust. + +Yes, and for this very cause adding on your part all diligence, in your faith supply moral excellence; and in moral excellence, knowledge; + +and in knowledge, self-control; and in self-control, perseverance; and in perseverance, godliness; + +and in godliness, brotherly affection; and in brotherly affection, love. + +For if these things are yours and abound, they make you to not be idle or unfruitful in the knowledge of our Lord Jesus Christ. + +For he who lacks these things is blind, seeing only what is near, having forgotten the cleansing from his old sins. + +Therefore, brothers,1:10 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” + be more diligent to make your calling and election sure. For if you do these things, you will never stumble. + +For thus you will be richly supplied with the entrance into the eternal Kingdom of our Lord and Savior, Jesus Christ. + +

+

Therefore I will not be negligent to remind you of these things, though you know them and are established in the present truth. + +I think it right, as long as I am in this tent, to stir you up by reminding you, + +knowing that the putting off of my tent comes swiftly, even as our Lord Jesus Christ made clear to me. + +Yes, I will make every effort that you may always be able to remember these things even after my departure. + +

+

For we didn’t follow cunningly devised fables when we made known to you the power and coming of our Lord Jesus Christ, but we were eyewitnesses of his majesty. + +For he received from God the Father honor and glory when the voice came to him from the Majestic Glory, “This is my beloved Son, in whom I am well pleased.”1:17 +Matthew 17:5; Mark 9:7; Luke 9:35 + +We heard this voice come out of heaven when we were with him on the holy mountain. + +

+

We have the more sure word of prophecy; and you do well that you heed it as to a lamp shining in a dark place, until the day dawns and the morning star arises in your hearts, + +knowing this first, that no prophecy of Scripture is of private interpretation. + +For no prophecy ever came by the will of man, but holy men of God spoke, being moved by the Holy Spirit. + +

+ + +

But false prophets also arose among the people, as false teachers will also be among you, who will secretly bring in destructive heresies, denying even the Master who bought them, bringing on themselves swift destruction. + +Many will follow their immoral2:2 +TR reads “destructive” instead of “immoral” ways, and as a result, the way of the truth will be maligned. + +In covetousness they will exploit you with deceptive words: whose sentence now from of old doesn’t linger, and their destruction will not slumber. + +

+

For if God didn’t spare angels when they sinned, but cast them down to Tartarus,2:4 +Tartarus is another name for Hell and committed them to pits of darkness to be reserved for judgment; + +and didn’t spare the ancient world, but preserved Noah with seven others, a preacher of righteousness, when he brought a flood on the world of the ungodly, + +and turning the cities of Sodom and Gomorrah into ashes, condemned them to destruction, having made them an example to those who would live in an ungodly way, + +and delivered righteous Lot, who was very distressed by the lustful life of the wicked + +(for that righteous man dwelling among them was tormented in his righteous soul from day to day with seeing and hearing lawless deeds), + +then the Lord knows how to deliver the godly out of temptation and to keep the unrighteous under punishment for the day of judgment, + +but chiefly those who walk after the flesh in the lust of defilement and despise authority. Daring, self-willed, they are not afraid to speak evil of dignitaries, + +whereas angels, though greater in might and power, don’t bring a slanderous judgment against them before the Lord. + +But these, as unreasoning creatures, born natural animals to be taken and destroyed, speaking evil in matters about which they are ignorant, will in their destroying surely be destroyed, + +receiving the wages of unrighteousness; people who count it pleasure to revel in the daytime, spots and defects, reveling in their deceit while they feast with you; + +having eyes full of adultery, and who can’t cease from sin, enticing unsettled souls, having a heart trained in greed, accursed children! + +Forsaking the right way, they went astray, having followed the way of Balaam the son of Beor, who loved the wages of wrongdoing; + +but he was rebuked for his own disobedience. A speechless donkey spoke with a man’s voice and stopped the madness of the prophet. + +

+

These are wells without water, clouds driven by a storm, for whom the blackness of darkness has been reserved forever. + +For, uttering great swelling words of emptiness, they entice in the lusts of the flesh, by licentiousness, those who are indeed escaping from those who live in error; + +promising them liberty, while they themselves are bondservants of corruption; for a man is brought into bondage by whoever overcomes him. + +

+

For if, after they have escaped the defilement of the world through the knowledge of the Lord and Savior Jesus Christ, they are again entangled in it and overcome, the last state has become worse for them than the first. + +For it would be better for them not to have known the way of righteousness, than after knowing it, to turn back from the holy commandment delivered to them. + +But it has happened to them according to the true proverb, “The dog turns to his own vomit again,”2:22 +Proverbs 26:11 andthe sow that has washed to wallowing in the mire.” + +

+ + +

This is now, beloved, the second letter that I have written to you; and in both of them I stir up your sincere mind by reminding you + +that you should remember the words which were spoken before by the holy prophets and the commandment of us, the apostles of the Lord and Savior, + +knowing this first, that in the last days mockers will come, walking after their own lusts + +and saying, “Where is the promise of his coming? For, from the day that the fathers fell asleep, all things continue as they were from the beginning of the creation.” + +For they willfully forget that there were heavens from of old, and an earth formed out of water and amid water by the word of God, + +by which means the world that existed then, being overflowed with water, perished. + +But the heavens that exist now and the earth, by the same word have been stored up for fire, being reserved against the day of judgment and destruction of ungodly men. + +

+

But don’t forget this one thing, beloved, that one day is with the Lord as a thousand years, and a thousand years as one day. + +The Lord is not slow concerning his promise, as some count slowness; but he is patient with us, not wishing that anyone should perish, but that all should come to repentance. + +But the day of the Lord will come as a thief in the night, in which the heavens will pass away with a great noise, and the elements will be dissolved with fervent heat; and the earth and the works that are in it will be burned up. + +Therefore, since all these things will be destroyed like this, what kind of people ought you to be in holy living and godliness, + +looking for and earnestly desiring the coming of the day of God, which will cause the burning heavens to be dissolved, and the elements will melt with fervent heat? + +But, according to his promise, we look for new heavens and a new earth, in which righteousness dwells. + +

+

Therefore, beloved, seeing that you look for these things, be diligent to be found in peace, without defect and blameless in his sight. + +Regard the patience of our Lord as salvation; even as our beloved brother Paul also, according to the wisdom given to him, wrote to you, + +as also in all of his letters, speaking in them of these things. In those, there are some things that are hard to understand, which the ignorant and unsettled twist, as they also do to the other Scriptures, to their own destruction. + +You therefore, beloved, knowing these things beforehand, beware, lest being carried away with the error of the wicked, you fall from your own steadfastness. + +But grow in the grace and knowledge of our Lord and Savior Jesus Christ. To him be the glory both now and forever. Amen. + +

+
+62-1JN-web.sfm World English Bible (WEB) +1 John +John’s First Letter +1 John +1Jn +

John’s First Letter +

+ + +

That which was from the beginning, that which we have heard, that which we have seen with our eyes, that which we saw, and our hands touched, concerning the Word of life + +(and the life was revealed, and we have seen, and testify, and declare to you the life, the eternal life, which was with the Father, and was revealed to us); + +that which we have seen and heard we declare to you, that you also may have fellowship with us. Yes, and our fellowship is with the Father and with his Son, Jesus Christ.1:3 +“Christ” means “Anointed One”. + +And we write these things to you, that our joy may be fulfilled. + +

+

This is the message which we have heard from him and announce to you, that God is light, and in him is no darkness at all. + +If we say that we have fellowship with him and walk in the darkness, we lie and don’t tell the truth. + +But if we walk in the light as he is in the light, we have fellowship with one another, and the blood of Jesus Christ his Son cleanses us from all sin. + +If we say that we have no sin, we deceive ourselves, and the truth is not in us. + +If we confess our sins, he is faithful and righteous to forgive us the sins and to cleanse us from all unrighteousness. + +If we say that we haven’t sinned, we make him a liar, and his word is not in us. + +

+ + +

My little children, I write these things to you so that you may not sin. If anyone sins, we have a Counselor2:1 +Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter. with the Father, Jesus Christ, the righteous. + +And he is the atoning sacrifice2:2 +“atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. + for our sins, and not for ours only, but also for the whole world. + +This is how we know that we know him: if we keep his commandments. + +One who says, “I know him,” and doesn’t keep his commandments, is a liar, and the truth isn’t in him. + +But God’s love has most certainly been perfected in whoever keeps his word. This is how we know that we are in him: + +he who says he remains in him ought himself also to walk just like he walked. + +

+

Brothers, I write no new commandment to you, but an old commandment which you had from the beginning. The old commandment is the word which you heard from the beginning. + +Again, I write a new commandment to you, which is true in him and in you, because the darkness is passing away and the true light already shines. + +He who says he is in the light and hates his brother is in the darkness even until now. + +He who loves his brother remains in the light, and there is no occasion for stumbling in him. + +But he who hates his brother is in the darkness, and walks in the darkness, and doesn’t know where he is going, because the darkness has blinded his eyes. + +

+

I write to you, little children, because your sins are forgiven you for his name’s sake. + +

+

I write to you, fathers, because you know him who is from the beginning. +

+

I write to you, young men, because you have overcome the evil one. +

+

I write to you, little children, because you know the Father. + +

+

I have written to you, fathers, because you know him who is from the beginning. +

+

I have written to you, young men, because you are strong, and the word of God remains in you, and you have overcome the evil one. + +

+

Don’t love the world or the things that are in the world. If anyone loves the world, the Father’s love isn’t in him. + +For all that is in the worldthe lust of the flesh, the lust of the eyes, and the pride of life—isn’t the Father’s, but is the world’s. + +The world is passing away with its lusts, but he who does God’s will remains forever. + +

+

Little children, these are the end times, and as you heard that the Antichrist is coming, even now many antichrists have arisen. By this we know that it is the final hour. + +They went out from us, but they didn’t belong to us; for if they had belonged to us, they would have continued with us. But they left, that they might be revealed that none of them belong to us. + +You have an anointing from the Holy One, and you all have knowledge.2:20 +Or, “know what is true”, or, “know all things” + +I have not written to you because you don’t know the truth, but because you know it, and because no lie is of the truth. + +Who is the liar but he who denies that Jesus is the Christ? This is the Antichrist, he who denies the Father and the Son. + +Whoever denies the Son doesn’t have the Father. He who confesses the Son has the Father also.2:23 +MT omits: He who confesses the Son has the Father also. + +

+

Therefore, as for you, let that remain in you which you heard from the beginning. If that which you heard from the beginning remains in you, you also will remain in the Son, and in the Father. + +This is the promise which he promised us, the eternal life. + +

+

These things I have written to you concerning those who would lead you astray. + +As for you, the anointing which you received from him remains in you, and you don’t need for anyone to teach you. But as his anointing teaches you concerning all things, and is true, and is no lie, and even as it taught you, you will remain in him. + +

+

Now, little children, remain in him, that when he appears, we may have boldness and not be ashamed before him at his coming. + +If you know that he is righteous, you know that everyone who practices righteousness has been born of him. + +

+ + +

See how great a love the Father has given to us, that we should be called children of God! For this cause the world doesn’t know us, because it didn’t know him. + +Beloved, now we are children of God. It is not yet revealed what we will be; but we know that when he is revealed, we will be like him, for we will see him just as he is. + +Everyone who has this hope set on him purifies himself, even as he is pure. + +

+

Everyone who sins also commits lawlessness. Sin is lawlessness. + +You know that he was revealed to take away our sins, and no sin is in him. + +Whoever remains in him doesn’t sin. Whoever sins hasn’t seen him and doesn’t know him. + +

+

Little children, let no one lead you astray. He who does righteousness is righteous, even as he is righteous. + +He who sins is of the devil, for the devil has been sinning from the beginning. To this end the Son of God was revealed: that he might destroy the works of the devil. + +Whoever is born of God doesn’t commit sin, because his seed remains in him, and he cant sin, because he is born of God. + +In this the children of God are revealed, and the children of the devil. Whoever doesn’t do righteousness is not of God, neither is he who doesn’t love his brother. + +For this is the message which you heard from the beginning, that we should love one another— + +unlike Cain, who was of the evil one and killed his brother. Why did he kill him? Because his deeds were evil, and his brother’s righteous. + +

+

Don’t be surprised, my brothers, if the world hates you. + +We know that we have passed out of death into life, because we love the brothers. He who doesn’t love his brother remains in death. + +Whoever hates his brother is a murderer, and you know that no murderer has eternal life remaining in him. + +

+

By this we know love, because he laid down his life for us. And we ought to lay down our lives for the brothers. + +But whoever has the worlds goods and sees his brother in need, then closes his heart of compassion against him, how does Gods love remain in him? + +

+

My little children, let’s not love in word only, or with the tongue only, but in deed and truth. + +And by this we know that we are of the truth and persuade our hearts before him, + +because if our heart condemns us, God is greater than our heart, and knows all things. + +Beloved, if our hearts don’t condemn us, we have boldness toward God; + +so whatever we ask, we receive from him, because we keep his commandments and do the things that are pleasing in his sight. + +This is his commandment, that we should believe in the name of his Son, Jesus Christ, and love one another, even as he commanded. + +He who keeps his commandments remains in him, and he in him. By this we know that he remains in us, by the Spirit which he gave us. + +

+ + +

Beloved, don’t believe every spirit, but test the spirits, whether they are of God, because many false prophets have gone out into the world. + +By this you know the Spirit of God: every spirit who confesses that Jesus Christ has come in the flesh is of God, + +and every spirit who doesn’t confess that Jesus Christ has come in the flesh is not of God; and this is the spirit of the Antichrist, of whom you have heard that it comes. Now it is in the world already. + +You are of God, little children, and have overcome them, because greater is he who is in you than he who is in the world. + +They are of the world. Therefore they speak of the world, and the world hears them. + +We are of God. He who knows God listens to us. He who is not of God doesn’t listen to us. By this we know the spirit of truth, and the spirit of error. + +

+

Beloved, let’s love one another, for love is of God; and everyone who loves has been born of God and knows God. + +He who doesn’t love doesn’t know God, for God is love. + +By this God’s love was revealed in us, that God has sent his only born4:9 +The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. Son into the world that we might live through him. + +In this is love, not that we loved God, but that he loved us, and sent his Son as the atoning sacrifice4:10 +“atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. + for our sins. + +Beloved, if God loved us in this way, we also ought to love one another. + +No one has seen God at any time. If we love one another, God remains in us, and his love has been perfected in us. + +

+

By this we know that we remain in him and he in us, because he has given us of his Spirit. + +We have seen and testify that the Father has sent the Son as the Savior of the world. + +Whoever confesses that Jesus is the Son of God, God remains in him, and he in God. + +We know and have believed the love which God has for us. God is love, and he who remains in love remains in God, and God remains in him. + +In this, love has been made perfect among us, that we may have boldness in the day of judgment, because as he is, even so we are in this world. + +There is no fear in love; but perfect love casts out fear, because fear has punishment. He who fears is not made perfect in love. + +We love him,4:19 +NU omits “him”. because he first loved us. + +If a man says, “I love God,” and hates his brother, he is a liar; for he who doesn’t love his brother whom he has seen, how can he love God whom he has not seen? + +This commandment we have from him, that he who loves God should also love his brother. + +

+ + +

Whoever believes that Jesus is the Christ has been born of God. Whoever loves the Father also loves the child who is born of him. + +By this we know that we love the children of God, when we love God and keep his commandments. + +For this is loving God, that we keep his commandments. His commandments are not grievous. + +For whatever is born of God overcomes the world. This is the victory that has overcome the world: your faith. + +Who is he who overcomes the world, but he who believes that Jesus is the Son of God? + +

+

This is he who came by water and blood, Jesus Christ; not with the water only, but with the water and the blood. It is the Spirit who testifies, because the Spirit is the truth. + +For there are three who testify:5:7 +Only a few recent manuscripts add “in heaven: the Father, the Word, and the Holy Spirit; and these three are one. And there are three that testify on earth:” + +the Spirit, the water, and the blood; and the three agree as one. + +If we receive the witness of men, the witness of God is greater; for this is God’s testimony which he has testified concerning his Son. + +He who believes in the Son of God has the testimony in himself. He who doesn’t believe God has made him a liar, because he has not believed in the testimony that God has given concerning his Son. + +The testimony is this: that God gave to us eternal life, and this life is in his Son. + +He who has the Son has the life. He who doesn’t have Gods Son doesn’t have the life. + +

+

These things I have written to you who believe in the name of the Son of God, that you may know that you have eternal life, and that you may continue to believe in the name of the Son of God. + +

+

This is the boldness which we have toward him, that if we ask anything according to his will, he listens to us. + +And if we know that he listens to us, whatever we ask, we know that we have the petitions which we have asked of him. + +

+

If anyone sees his brother sinning a sin not leading to death, he shall ask, and God will give him life for those who sin not leading to death. There is sin leading to death. I don’t say that he should make a request concerning this. + +All unrighteousness is sin, and there is sin not leading to death. + +

+

We know that whoever is born of God doesn’t sin, but he who was born of God keeps himself, and the evil one doesn’t touch him. + +We know that we are of God, and the whole world lies in the power of the evil one. + +We know that the Son of God has come and has given us an understanding, that we know him who is true; and we are in him who is true, in his Son Jesus Christ. This is the true God and eternal life. + +

+

Little children, keep yourselves from idols. + +

+
+63-2JN-web.sfm World English Bible (WEB) +2 John +John’s Second Letter +2 John +2Jn +

John’s Second Letter +

+ + +

The elder, to the chosen lady and her children, whom I love in truth, and not I only, but also all those who know the truth, + +for the truth’s sake, which remains in us, and it will be with us forever: + +Grace, mercy, and peace will be with us, from God the Father and from the Lord Jesus Christ,1:3 +“Christ” means “Anointed One”. the Son of the Father, in truth and love. + +

+

I rejoice greatly that I have found some of your children walking in truth, even as we have been commanded by the Father. + +Now I beg you, dear lady, not as though I wrote to you a new commandment, but that which we had from the beginning, that we love one another. + +This is love, that we should walk according to his commandments. This is the commandment, even as you heard from the beginning, that you should walk in it. + +

+

For many deceivers have gone out into the world, those who don’t confess that Jesus Christ came in the flesh. This is the deceiver and the Antichrist. + +Watch yourselves, that we don’t lose the things which we have accomplished, but that we receive a full reward. + +Whoever transgresses and doesn’t remain in the teaching of Christ doesn’t have God. He who remains in the teaching has both the Father and the Son. + +If anyone comes to you and doesn’t bring this teaching, don’t receive him into your house, and don’t welcome him, + +for he who welcomes him participates in his evil deeds. + +

+

Having many things to write to you, I don’t want to do so with paper and ink, but I hope to come to you and to speak face to face, that our joy may be made full. + +The children of your chosen sister greet you. Amen. + +

+
+64-3JN-web.sfm World English Bible (WEB) +3 John +John’s Third Letter +3 John +3Jn +

John’s Third Letter +

+ + +

The elder to Gaius the beloved, whom I love in truth. + +

+

Beloved, I pray that you may prosper in all things and be healthy, even as your soul prospers. + +For I rejoiced greatly when brothers came and testified about your truth, even as you walk in truth. + +I have no greater joy than this: to hear about my children walking in truth. + +

+

Beloved, you do a faithful work in whatever you accomplish for those who are brothers and strangers. + +They have testified about your love before the assembly. You will do well to send them forward on their journey in a way worthy of God, + +because for the sake of the Name they went out, taking nothing from the Gentiles. + +We therefore ought to receive such, that we may be fellow workers for the truth. + +

+

I wrote to the assembly, but Diotrephes, who loves to be first among them, doesn’t accept what we say. + +Therefore, if I come, I will call attention to his deeds which he does, unjustly accusing us with wicked words. Not content with this, he doesn’t receive the brothers himself, and those who would, he forbids and throws out of the assembly. + +

+

Beloved, don’t imitate that which is evil, but that which is good. He who does good is of God. He who does evil hasn’t seen God. + +Demetrius has the testimony of all, and of the truth itself; yes, we also testify, and you know that our testimony is true. + +

+

I had many things to write to you, but I am unwilling to write to you with ink and pen; + +but I hope to see you soon. Then we will speak face to face. +

+

Peace be to you. The friends greet you. Greet the friends by name. + +

+
+65-JUD-web.sfm World English Bible (WEB) +Jude +The Letter from Jude +Jude +Jud +

The Letter from Jude +

+ + +

Jude,1:1 +or, Judah a servant of Jesus Christ,1:1 +“Christ” means “Anointed One”. and brother of James, to those who are called, sanctified by God the Father, and kept for Jesus Christ: + +May mercy, peace, and love be multiplied to you. + +

+

Beloved, while I was very eager to write to you about our common salvation, I was constrained to write to you exhorting you to contend earnestly for the faith which was once for all delivered to the saints. + +For there are certain men who crept in secretly, even those who were long ago written about for this condemnation: ungodly men, turning the grace of our God into indecency, and denying our only Master, God, and Lord, Jesus Christ. + +

+

Now I desire to remind you, though you already know this, that the Lord, having saved a people out of the land of Egypt, afterward destroyed those who didn’t believe. + +Angels who didn’t keep their first domain, but deserted their own dwelling place, he has kept in everlasting bonds under darkness for the judgment of the great day. + +Even as Sodom and Gomorrah and the cities around them, having in the same way as these given themselves over to sexual immorality and gone after strange flesh, are shown as an example, suffering the punishment of eternal fire. + +Yet in the same way, these also in their dreaming defile the flesh, despise authority, and slander celestial beings. + +But Michael, the archangel, when contending with the devil and arguing about the body of Moses, dared not bring against him an abusive condemnation, but said, “May the Lord rebuke you!” + +But these speak evil of whatever things they don’t know. They are destroyed in these things that they understand naturally, like the creatures without reason. + +Woe to them! For they went in the way of Cain, and ran riotously in the error of Balaam for hire, and perished in Korah’s rebellion. + +These are hidden rocky reefs in your love feasts when they feast with you, shepherds who without fear feed themselves; clouds without water, carried along by winds; autumn trees without fruit, twice dead, plucked up by the roots; + +wild waves of the sea, foaming out their own shame; wandering stars, for whom the blackness of darkness has been reserved forever. + +About these also Enoch, the seventh from Adam, prophesied, saying, “Behold,1:14 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. the Lord came with ten thousands of his holy ones, + +to execute judgment on all, and to convict all the ungodly of all their works of ungodliness which they have done in an ungodly way, and of all the hard things which ungodly sinners have spoken against him.” + +These are murmurers and complainers, walking after their lustsand their mouth speaks proud things—showing respect of persons to gain advantage. + +

+

But you, beloved, remember the words which have been spoken before by the apostles of our Lord Jesus Christ. + +They said to you, “In the last time there will be mockers, walking after their own ungodly lusts.” + +These are those who cause divisions and are sensual, not having the Spirit. + +

+

But you, beloved, keep building up yourselves on your most holy faith, praying in the Holy Spirit. + +Keep yourselves in Gods love, looking for the mercy of our Lord Jesus Christ to eternal life. + +On some have compassion, making a distinction, + +and some save, snatching them out of the fire with fear, hating even the clothing stained by the flesh. + +

+

Now to him who is able to keep them1:24 +TR and NU read “you” from stumbling, and to present you faultless before the presence of his glory in great joy, + +to God our Savior, who alone is wise, be glory and majesty, dominion and power, both now and forever. Amen. + +

+
+66-REV-web.sfm World English Bible (WEB) +Revelation +The Revelation to John +Revelation +Rev +

The Revelation to John +

+ + +

This is the Revelation of Jesus Christ,1:1 +“Christ” means “Anointed One”. which God gave him to show to his servants the things which must happen soon, which he sent and made known by his angel1:1 +or, messenger (here and wherever angel is mentioned) to his servant, John, + +who testified to God’s word and of the testimony of Jesus Christ, about everything that he saw. + +

+

Blessed is he who reads and those who hear the words of the prophecy, and keep the things that are written in it, for the time is near. + +

+

John, to the seven assemblies that are in Asia: Grace to you and peace from God, who is and who was and who is to come; and from the seven Spirits who are before his throne; + +and from Jesus Christ, the faithful witness, the firstborn of the dead, and the ruler of the kings of the earth. To him who loves us, and washed us from our sins by his blood— + +and he made us to be a Kingdom, priests1:6 +Exodus 19:6; Isaiah 61:6 + to his God and Fatherto him be the glory and the dominion forever and ever. Amen. + +

+

Behold,1:7 +“Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection. he is coming with the clouds, and every eye will see him, including those who pierced him. All the tribes of the earth will mourn over him. Even so, Amen. + +

+

I am the Alpha and the Omega,1:8 +TR adds “the Beginning and the End” says the Lord God,1:8 +TR omits “God” +who is and who was and who is to come, the Almighty.” + +

+

I John, your brother and partner with you in the oppression, Kingdom, and perseverance in Christ Jesus, was on the isle that is called Patmos because of God’s Word and the testimony of Jesus Christ. + +I was in the Spirit on the Lord’s day, and I heard behind me a loud voice, like a trumpet + +saying,1:11 +TR adds “I am the Alpha and the Omega, the First and the Last.” +What you see, write in a book and send to the seven assemblies:1:11 +TR adds “which are in Asia” +to Ephesus, Smyrna, Pergamum, Thyatira, Sardis, Philadelphia, and to Laodicea.” + +

+

I turned to see the voice that spoke with me. Having turned, I saw seven golden lamp stands. + +And among the lamp stands was one like a son of man,1:13 +Daniel 7:13 + clothed with a robe reaching down to his feet, and with a golden sash around his chest. + +His head and his hair were white as white wool, like snow. His eyes were like a flame of fire. + +His feet were like burnished brass, as if it had been refined in a furnace. His voice was like the voice of many waters. + +He had seven stars in his right hand. Out of his mouth proceeded a sharp two-edged sword. His face was like the sun shining at its brightest. + +When I saw him, I fell at his feet like a dead man. +

+

He laid his right hand on me, saying, +“Don’t be afraid. I am the first and the last, + + +and the Living one. I was dead, and behold, I am alive forever and ever. Amen. I have the keys of Death and of Hades.1:18 +or, Hell + +Write therefore the things which you have seen, and the things which are, and the things which will happen hereafter. + + +The mystery of the seven stars which you saw in my right hand, and the seven golden lamp stands is this: The seven stars are the angels1:20 +or, messengers (here and wherever angels are mentioned) +of the seven assemblies. The seven lamp stands are seven assemblies. + +

+ + +

To the angel of the assembly in Ephesus write: +

+

He who holds the seven stars in his right hand, he who walks among the seven golden lamp stands says these things: + +

+

I know your works, and your toil and perseverance, and that you cant tolerate evil men, and have tested those who call themselves apostles, and they are not, and found them false. + + +You have perseverance and have endured for my names sake, and have +2:3 +TR adds “have labored and” +not grown weary. + + +But I have this against you, that you left your first love. + + +Remember therefore from where you have fallen, and repent and do the first works; or else I am coming to you swiftly, and will move your lamp stand out of its place, unless you repent. + + +But this you have, that you hate the works of the Nicolaitans, which I also hate. + + +He who has an ear, let him hear what the Spirit says to the assemblies. To him who overcomes I will give to eat from the tree of life, which is in the Paradise of my God. + +

+

To the angel of the assembly in Smyrna write: +

+

The first and the last, who was dead, and has come to life says these things: + +

+

I know your works, oppression, and your poverty (but you are rich), and the blasphemy of those who say they are Jews, and they are not, but are a synagogue of Satan. + + +Don’t be afraid of the things which you are about to suffer. Behold, the devil is about to throw some of you into prison, that you may be tested; and you will have oppression for ten days. Be faithful to death, and I will give you the crown of life. + + +He who has an ear, let him hear what the Spirit says to the assemblies. He who overcomes won’t be harmed by the second death. + +

+

To the angel of the assembly in Pergamum write: +

+

He who has the sharp two-edged sword says these things: + +

+

I know your works and where you dwell, where Satan’s throne is. You hold firmly to my name, and didn’t deny my faith in the days of Antipas my witness, my faithful one, who was killed among you, where Satan dwells. + + +But I have a few things against you, because you have there some who hold the teaching of Balaam, who taught Balak to throw a stumbling block before the children of Israel, to eat things sacrificed to idols, and to commit sexual immorality. + + +So also you likewise have some who hold to the teaching of the Nicolaitans.2:15 +TR reads “which I hate” instead of “likewise” + +Repent therefore, or else I am coming to you quickly and I will make war against them with the sword of my mouth. + + +He who has an ear, let him hear what the Spirit says to the assemblies. To him who overcomes, to him I will give of the hidden manna, +2:17 +Manna is supernatural food, named after the Hebrew for “What is it?”. See Exodus 11:7-9. +and I will give him a white stone, and on the stone a new name written which no one knows but he who receives it. + +

+

To the angel of the assembly in Thyatira write: +

+

The Son of God, who has his eyes like a flame of fire, and his feet are like burnished brass, says these things: + +

+

I know your works, your love, faith, service, patient endurance, and that your last works are more than the first. + + +But I have this against you, that you tolerate your2:20 +TR, NU read “that” instead of “your” +woman Jezebel, who calls herself a prophetess. She teaches and seduces my servants to commit sexual immorality and to eat things sacrificed to idols. + + +I gave her time to repent, but she refuses to repent of her sexual immorality. + + +Behold, I will throw her and those who commit adultery with her into a bed of great oppression, unless they repent of her works. + + +I will kill her children with Death, and all the assemblies will know that I am he who searches the minds and hearts. I will give to each one of you according to your deeds. + + +But to you I say, to the rest who are in Thyatiraas many as don’t have this teaching, who don’t know what some callthe deep things of Satan’—to you I say, I am not putting any other burden on you. + + +Nevertheless, hold that which you have firmly until I come. + + +He who overcomes, and he who keeps my works to the end, to him I will give authority over the nations. + + +He will rule them with a rod of iron, shattering them like clay pots,2:27 +Psalms 2:9 +as I also have received of my Father; + + +and I will give him the morning star. + + +He who has an ear, let him hear what the Spirit says to the assemblies. + +

+ + +

And to the angel of the assembly in Sardis write: +

+

He who has the seven Spirits of God and the seven stars says these things: +

+

I know your works, that you have a reputation of being alive, but you are dead. + + +Wake up and strengthen the things that remain, which you were about to throw away,3:2 +NU & TR read “which were about to die” instead of “which you were about to throw away”. +for I have found no works of yours perfected before my God. + + +Remember therefore how you have received and heard. Keep it and repent. If therefore you won’t watch, I will come as a thief, and you won’t know what hour I will come upon you. + + +Nevertheless you have a few names in Sardis that didn’t defile their garments. They will walk with me in white, for they are worthy. + + +He who overcomes will be arrayed in white garments, and I will in no way blot his name out of the book of life, and I will confess his name before my Father, and before his angels. + + +He who has an ear, let him hear what the Spirit says to the assemblies. + +

+

To the angel of the assembly in Philadelphia write: +

+

He who is holy, he who is true, he who has the key of David, he who opens and no one can shut, and who shuts and no one opens, says these things: + + +

+

I know your works (behold, I have set before you an open door, which no one can shut), that you have a little power, and kept my word, and didn’t deny my name. + + +Behold, I make some of the synagogue of Satan, of those who say they are Jews, and they are not, but liebehold, I will make them to come and worship before your feet, and to know that I have loved you. + + +Because you kept my command to endure, I also will keep you from the hour of testing which is to come on the whole world, to test those who dwell on the earth. + + +I am coming quickly! Hold firmly that which you have, so that no one takes your crown. + + +He who overcomes, I will make him a pillar in the temple of my God, and he will go out from there no more. I will write on him the name of my God and the name of the city of my God, the new Jerusalem, which comes down out of heaven from my God, and my own new name. + + +He who has an ear, let him hear what the Spirit says to the assemblies. + +

+

To the angel of the assembly in Laodicea write: +

+

The Amen, the Faithful and True Witness, the Beginning3:14 +or, Source, or Head +of God’s creation, says these things: + +

+

I know your works, that you are neither cold nor hot. I wish you were cold or hot. + + +So, because you are lukewarm, and neither hot nor cold, I will vomit you out of my mouth. + + +Because you say, ‘I am rich, and have gotten riches, and have need of nothing,’ and don’t know that you are the wretched one, miserable, poor, blind, and naked; + + +I counsel you to buy from me gold refined by fire, that you may become rich; and white garments, that you may clothe yourself, and that the shame of your nakedness may not be revealed; and eye salve to anoint your eyes, that you may see. + + +As many as I love, I reprove and chasten. Be zealous therefore, and repent. + + +Behold, I stand at the door and knock. If anyone hears my voice and opens the door, then I will come in to him and will dine with him, and he with me. + + +He who overcomes, I will give to him to sit down with me on my throne, as I also overcame and sat down with my Father on his throne. + + +He who has an ear, let him hear what the Spirit says to the assemblies.” + +

+ + +

After these things I looked and saw a door opened in heaven; and the first voice that I heard, like a trumpet speaking with me, was one saying, “Come up here, and I will show you the things which must happen after this.” + +

+

Immediately I was in the Spirit. Behold, there was a throne set in heaven, and one sitting on the throne + +that looked like a jasper stone and a sardius. There was a rainbow around the throne, like an emerald to look at. + +Around the throne were twenty-four thrones. On the thrones were twenty-four elders sitting, dressed in white garments, with crowns of gold on their heads. + +Out of the throne proceed lightnings, sounds, and thunders. There were seven lamps of fire burning before his throne, which are the seven Spirits of God. + +Before the throne was something like a sea of glass, similar to crystal. In the middle of the throne, and around the throne were four living creatures full of eyes before and behind. + +The first creature was like a lion, the second creature like a calf, the third creature had a face like a man, and the fourth was like a flying eagle. + +The four living creatures, each one of them having six wings, are full of eyes around and within. They have no rest day and night, saying, “Holy, holy, holy4:8 +Hodges/Farstad MT reads “holy” 9 times instead of 3. is the Lord God, the Almighty, who was and who is and who is to come!” + +

+

When the living creatures give glory, honor, and thanks to him who sits on the throne, to him who lives forever and ever, + +the twenty-four elders fall down before him who sits on the throne and worship him who lives forever and ever, and throw their crowns before the throne, saying, + +“Worthy are you, our Lord and God, the Holy One,4:11 +TR omits “and God, the Holy One,” to receive the glory, the honor, and the power, for you created all things, and because of your desire they existed and were created!” + +

+ + +

I saw, in the right hand of him who sat on the throne, a book written inside and outside, sealed shut with seven seals. + +I saw a mighty angel proclaiming with a loud voice, “Who is worthy to open the book, and to break its seals?” + +No one in heaven above, or on the earth, or under the earth, was able to open the book or to look in it. + +Then I wept much, because no one was found worthy to open the book or to look in it. + +One of the elders said to me, “Don’t weep. Behold, the Lion who is of the tribe of Judah, the Root of David, has overcome: he who opens the book and its seven seals.” + +

+

I saw in the middle of the throne and of the four living creatures, and in the middle of the elders, a Lamb standing, as though it had been slain, having seven horns and seven eyes, which are the seven Spirits of God, sent out into all the earth. + +Then he came, and he took it out of the right hand of him who sat on the throne. + +Now when he had taken the book, the four living creatures and the twenty-four elders fell down before the Lamb, each one having a harp, and golden bowls full of incense, which are the prayers of the saints. + +They sang a new song, saying, +

+You are worthy to take the book + +and to open its seals, + +for you were killed, + +and bought us for God with your blood + +out of every tribe, language, people, and nation, + + +and made us kings and priests to our God; + +and we will reign on the earth.” + + +

I looked, and I heard something like a voice of many angels around the throne, the living creatures, and the elders. The number of them was ten thousands of ten thousands, and thousands of thousands, + +saying with a loud voice, “Worthy is the Lamb who has been killed to receive the power, wealth, wisdom, strength, honor, glory, and blessing!” + +

+

I heard every created thing which is in heaven, on the earth, under the earth, on the sea, and everything in them, saying, “To him who sits on the throne and to the Lamb be the blessing, the honor, the glory, and the dominion, forever and ever! Amen!”5:13 +TR omits “Amen!” + +

+

The four living creatures said, “Amen!” Then the5:14 +TR adds “twenty-four” elders fell down and worshiped.5:14 +TR adds “the one living forever and ever” + +

+ + +

I saw that the Lamb opened one of the seven seals, and I heard one of the four living creatures saying, as with a voice of thunder, “Come and see!” + +Then a white horse appeared, and he who sat on it had a bow. A crown was given to him, and he came out conquering, and to conquer. + +

+

When he opened the second seal, I heard the second living creature saying, “Come!” + +Another came out, a red horse. To him who sat on it was given power to take peace from the earth, and that they should kill one another. There was given to him a great sword. + +

+

When he opened the third seal, I heard the third living creature saying, “Come and see!” And behold, a black horse, and he who sat on it had a balance in his hand. + +I heard a voice in the middle of the four living creatures saying, “A choenix6:6 +A choenix is a dry volume measure that is a little more than a liter (a little more than a quart). of wheat for a denarius, and three choenix of barley for a denarius! Don’t damage the oil and the wine!” + +

+

When he opened the fourth seal, I heard the fourth living creature saying, “Come and see!” + +And behold, a pale horse, and the name of he who sat on it was Death. Hades6:8 +or, Hell followed with him. Authority over one fourth of the earth, to kill with the sword, with famine, with death, and by the wild animals of the earth was given to him. + +

+

When he opened the fifth seal, I saw underneath the altar the souls of those who had been killed for the Word of God, and for the testimony of the Lamb which they had. + +They cried with a loud voice, saying, “How long, Master, the holy and true, until you judge and avenge our blood on those who dwell on the earth?” + +A long white robe was given to each of them. They were told that they should rest yet for a while, until their fellow servants and their brothers,6:11 +The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” who would also be killed even as they were, should complete their course. + +

+

I saw when he opened the sixth seal, and there was a great earthquake. The sun became black as sackcloth made of hair, and the whole moon became as blood. + +The stars of the sky fell to the earth, like a fig tree dropping its unripe figs when it is shaken by a great wind. + +The sky was removed like a scroll when it is rolled up. Every mountain and island was moved out of its place. + +The kings of the earth, the princes, the commanding officers, the rich, the strong, and every slave and free person, hid themselves in the caves and in the rocks of the mountains. + +They told the mountains and the rocks, “Fall on us, and hide us from the face of him who sits on the throne, and from the wrath of the Lamb, + +for the great day of his wrath has come, and who is able to stand?” + +

+ + +

After this, I saw four angels standing at the four corners of the earth, holding the four winds of the earth, so that no wind would blow on the earth, or on the sea, or on any tree. + +I saw another angel ascend from the sunrise, having the seal of the living God. He cried with a loud voice to the four angels to whom it was given to harm the earth and the sea, + +saying, “Don’t harm the earth, the sea, or the trees, until we have sealed the bondservants of our God on their foreheads!” + +I heard the number of those who were sealed, one hundred forty-four thousand, sealed out of every tribe of the children of Israel: + +

+of the tribe of Judah twelve thousand were sealed, + +of the tribe of Reuben twelve thousand, + +of the tribe of Gad twelve thousand, + + +of the tribe of Asher twelve thousand, + +of the tribe of Naphtali twelve thousand, + +of the tribe of Manasseh twelve thousand, + + +of the tribe of Simeon twelve thousand, + +of the tribe of Levi twelve thousand, + +of the tribe of Issachar twelve thousand, + + +of the tribe of Zebulun twelve thousand, + +of the tribe of Joseph twelve thousand, and + +of the tribe of Benjamin twelve thousand were sealed. + + +

After these things I looked, and behold, a great multitude which no man could count, out of every nation and of all tribes, peoples, and languages, standing before the throne and before the Lamb, dressed in white robes, with palm branches in their hands. + +They cried with a loud voice, saying, “Salvation be to our God, who sits on the throne, and to the Lamb!” + +

+

All the angels were standing around the throne, the elders, and the four living creatures; and they fell on their faces before his throne, and worshiped God, + +saying, “Amen! Blessing, glory, wisdom, thanksgiving, honor, power, and might, be to our God forever and ever! Amen.” + +

+

One of the elders answered, saying to me, “These who are arrayed in the white robes, who are they, and where did they come from?” + +

+

I told him, “My lord, you know.” +

+

He said to me, “These are those who came out of the great suffering.7:14 +or, oppression They washed their robes and made them white in the Lambs blood. + +Therefore they are before the throne of God, and they serve him day and night in his temple. He who sits on the throne will spread his tabernacle over them. + +They will never be hungry or thirsty any more. The sun won’t beat on them, nor any heat; + +for the Lamb who is in the middle of the throne shepherds them and leads them to springs of life-giving waters. And God will wipe away every tear from their eyes.” + +

+ + +

When he opened the seventh seal, there was silence in heaven for about half an hour. + +I saw the seven angels who stand before God, and seven trumpets were given to them. + +

+

Another angel came and stood over the altar, having a golden censer. Much incense was given to him, that he should add it to the prayers of all the saints on the golden altar which was before the throne. + +The smoke of the incense, with the prayers of the saints, went up before God out of the angel’s hand. + +The angel took the censer, and he filled it with the fire of the altar, then threw it on the earth. Thunders, sounds, lightnings, and an earthquake followed. + +

+

The seven angels who had the seven trumpets prepared themselves to sound. + +

+

The first sounded, and there followed hail and fire, mixed with blood, and they were thrown to the earth. One third of the earth was burned up,8:7 +TR omits “One third of the earth was burned up” and one third of the trees were burned up, and all green grass was burned up. + +

+

The second angel sounded, and something like a great burning mountain was thrown into the sea. One third of the sea became blood, + +and one third of the living creatures which were in the sea died. One third of the ships were destroyed. + +

+

The third angel sounded, and a great star fell from the sky, burning like a torch, and it fell on one third of the rivers, and on the springs of water. + +The name of the star isWormwood.” One third of the waters became wormwood. Many people died from the waters, because they were made bitter. + +

+

The fourth angel sounded, and one third of the sun was struck, and one third of the moon, and one third of the stars, so that one third of them would be darkened; and the day wouldn’t shine for one third of it, and the night in the same way. + +I saw, and I heard an eagle,8:13 +TR reads “angel” instead of “eagle” + flying in mid heaven, saying with a loud voice, “Woe! Woe! Woe to those who dwell on the earth, because of the other blasts of the trumpets of the three angels, who are yet to sound!” + +

+ + +

The fifth angel sounded, and I saw a star from the sky which had fallen to the earth. The key to the pit of the abyss was given to him. + +He opened the pit of the abyss, and smoke went up out of the pit, like the smoke from a9:2 +TR adds “great” burning furnace. The sun and the air were darkened because of the smoke from the pit. + +Then out of the smoke came locusts on the earth, and power was given to them, as the scorpions of the earth have power. + +They were told that they should not hurt the grass of the earth, neither any green thing, neither any tree, but only those people who don’t have Gods seal on their foreheads. + +They were given power, not to kill them, but to torment them for five months. Their torment was like the torment of a scorpion when it strikes a person. + +In those days people will seek death, and will in no way find it. They will desire to die, and death will flee from them. + +

+

The shapes of the locusts were like horses prepared for war. On their heads were something like golden crowns, and their faces were like people’s faces. + +They had hair like womens hair, and their teeth were like those of lions. + +They had breastplates like breastplates of iron. The sound of their wings was like the sound of many chariots and horses rushing to war. + +They have tails like those of scorpions, with stingers. In their tails they have power to harm men for five months. + +They have over them as king the angel of the abyss. His name in Hebrew is “Abaddon”,9:11 +“Abaddon” is a Hebrew word that means “ruin”, “destruction”, or “the place of destruction” but in Greek, he has the name “Apollyon”.9:11 +“Apollyon” means “Destroyer”. + +

+

The first woe is past. Behold, there are still two woes coming after this. + +

+

The sixth angel sounded. I heard a voice from the horns of the golden altar which is before God, + +saying to the sixth angel who had the trumpet, “Free the four angels who are bound at the great river Euphrates!” + +

+

The four angels were freed who had been prepared for that hour and day and month and year, so that they might kill one third of mankind. + +The number of the armies of the horsemen was two hundred million.9:16 +literally, “ten thousands of ten thousands” I heard the number of them. + +Thus I saw the horses in the vision and those who sat on them, having breastplates of fiery red, hyacinth blue, and sulfur yellow; and the horsesheads resembled lionsheads. Out of their mouths proceed fire, smoke, and sulfur. + +By these three plagues, one third of mankind was killed: by the fire, the smoke, and the sulfur, which proceeded out of their mouths. + +For the power of the horses is in their mouths and in their tails. For their tails are like serpents, and have heads; and with them they harm. + +

+

The rest of mankind, who were not killed with these plagues, didn’t repent of the works of their hands, that they wouldn’t worship demons, and the idols of gold, and of silver, and of brass, and of stone, and of wood, which cant see, hear, or walk. + +They didn’t repent of their murders, their sorceries,9:21 +The word for “sorceries” (pharmakeia) also implies the use of potions, poisons, and drugs their sexual immorality, or their thefts. + +

+ + +

I saw a mighty angel coming down out of the sky, clothed with a cloud. A rainbow was on his head. His face was like the sun, and his feet like pillars of fire. + +He had in his hand a little open book. He set his right foot on the sea, and his left on the land. + +He cried with a loud voice, as a lion roars. When he cried, the seven thunders uttered their voices. + +When the seven thunders sounded, I was about to write; but I heard a voice from the sky saying, “Seal up the things which the seven thunders said, and don’t write them.” + +

+

The angel whom I saw standing on the sea and on the land lifted up his right hand to the sky + +and swore by him who lives forever and ever, who created heaven and the things that are in it, the earth and the things that are in it, and the sea and the things that are in it, that there will no longer be delay, + +but in the days of the voice of the seventh angel, when he is about to sound, then the mystery of God is finished, as he declared to his servants the prophets. + +

+

The voice which I heard from heaven, again speaking with me, said, “Go, take the book which is open in the hand of the angel who stands on the sea and on the land.” + +

+

I went to the angel, telling him to give me the little book. +

+

He said to me, “Take it and eat it. It will make your stomach bitter, but in your mouth it will be as sweet as honey.” + +

+

I took the little book out of the angel’s hand, and ate it. It was as sweet as honey in my mouth. When I had eaten it, my stomach was made bitter. + +They10:11 +TR reads “He” instead of “They” told me, “You must prophesy again over many peoples, nations, languages, and kings.” + +

+ + +

A reed like a rod was given to me. Someone said, “Rise and measure God’s temple, and the altar, and those who worship in it. + +Leave out the court which is outside of the temple, and don’t measure it, for it has been given to the nations. They will tread the holy city under foot for forty-two months. + +I will give power to my two witnesses, and they will prophesy one thousand two hundred sixty days, clothed in sackcloth.” + +

+

These are the two olive trees and the two lamp stands, standing before the Lord of the earth. + +If anyone desires to harm them, fire proceeds out of their mouth and devours their enemies. If anyone desires to harm them, he must be killed in this way. + +These have the power to shut up the sky, that it may not rain during the days of their prophecy. They have power over the waters, to turn them into blood, and to strike the earth with every plague, as often as they desire. + +

+

When they have finished their testimony, the beast that comes up out of the abyss will make war with them, and overcome them, and kill them. + +Their dead bodies will be in the street of the great city, which spiritually is called Sodom and Egypt, where also their Lord was crucified. + +From among the peoples, tribes, languages, and nations, people will look at their dead bodies for three and a half days, and will not allow their dead bodies to be laid in a tomb. + +Those who dwell on the earth will rejoice over them, and they will be glad. They will give gifts to one another, because these two prophets tormented those who dwell on the earth. + +

+

After the three and a half days, the breath of life from God entered into them, and they stood on their feet. Great fear fell on those who saw them. + +I heard a loud voice from heaven saying to them, “Come up here!” They went up into heaven in a cloud, and their enemies saw them. + +In that day there was a great earthquake, and a tenth of the city fell. Seven thousand people were killed in the earthquake, and the rest were terrified and gave glory to the God of heaven. + +

+

The second woe is past. Behold, the third woe comes quickly. + +

+

The seventh angel sounded, and great voices in heaven followed, saying, “The kingdom of the world has become the Kingdom of our Lord and of his Christ. He will reign forever and ever!” + +

+

The twenty-four elders, who sit on their thrones before God’s throne, fell on their faces and worshiped God, + +saying: “We give you thanks, Lord God, the Almighty, the one who is and who was,11:17 +TR adds “and who is coming” because you have taken your great power and reigned. + +The nations were angry, and your wrath came, as did the time for the dead to be judged, and to give your bondservants the prophets, their reward, as well as to the saints and those who fear your name, to the small and the great, and to destroy those who destroy the earth.” + +

+

God’s temple that is in heaven was opened, and the ark of the Lord’s covenant was seen in his temple. Lightnings, sounds, thunders, an earthquake, and great hail followed. + +

+ + +

A great sign was seen in heaven: a woman clothed with the sun, and the moon under her feet, and on her head a crown of twelve stars. + +She was with child. She cried out in pain, laboring to give birth. + +

+

Another sign was seen in heaven. Behold, a great red dragon, having seven heads and ten horns, and on his heads seven crowns. + +His tail drew one third of the stars of the sky, and threw them to the earth. The dragon stood before the woman who was about to give birth, so that when she gave birth he might devour her child. + +She gave birth to a son, a male child, who is to rule all the nations with a rod of iron. Her child was caught up to God and to his throne. + +The woman fled into the wilderness, where she has a place prepared by God, that there they may nourish her one thousand two hundred sixty days. + +

+

There was war in the sky. Michael and his angels made war on the dragon. The dragon and his angels made war. + +They didn’t prevail. No place was found for them any more in heaven. + +The great dragon was thrown down, the old serpent, he who is called the devil and Satan, the deceiver of the whole world. He was thrown down to the earth, and his angels were thrown down with him. + +

+

I heard a loud voice in heaven, saying, “Now the salvation, the power, and the Kingdom of our God, and the authority of his Christ has come; for the accuser of our brothers has been thrown down, who accuses them before our God day and night. + +They overcame him because of the Lamb’s blood, and because of the word of their testimony. They didn’t love their life, even to death. + +Therefore rejoice, heavens, and you who dwell in them. Woe to the earth and to the sea, because the devil has gone down to you, having great wrath, knowing that he has but a short time.” + +

+

When the dragon saw that he was thrown down to the earth, he persecuted the woman who gave birth to the male child. + +Two wings of the great eagle were given to the woman, that she might fly into the wilderness to her place, so that she might be nourished for a time, times, and half a time, from the face of the serpent. + +The serpent spewed water out of his mouth after the woman like a river, that he might cause her to be carried away by the stream. + +The earth helped the woman, and the earth opened its mouth and swallowed up the river which the dragon spewed out of his mouth. + +The dragon grew angry with the woman, and went away to make war with the rest of her offspring,12:17 +or, seed who keep Gods commandments and hold Jesustestimony. + +

+ + +

Then I stood13:1 +NU reads +he stood on the sand of the sea. I saw a beast coming up out of the sea, having ten horns and seven heads. On his horns were ten crowns, and on his heads, blasphemous names. + +The beast which I saw was like a leopard, and his feet were like those of a bear, and his mouth like the mouth of a lion. The dragon gave him his power, his throne, and great authority. + +One of his heads looked like it had been wounded fatally. His fatal wound was healed, and the whole earth marveled at the beast. + +They worshiped the dragon because he gave his authority to the beast; and they worshiped the beast, saying, “Who is like the beast? Who is able to make war with him?” + +

+

A mouth speaking great things and blasphemy was given to him. Authority to make war for forty-two months was given to him. + +He opened his mouth for blasphemy against God, to blaspheme his name, his dwelling, and those who dwell in heaven. + +It was given to him to make war with the saints and to overcome them. Authority over every tribe, people, language, and nation was given to him. + +All who dwell on the earth will worship him, everyone whose name has not been written from the foundation of the world in the book of life of the Lamb who has been killed. + +If anyone has an ear, let him hear. + +If anyone is to go into captivity, he will go into captivity. If anyone is to be killed with the sword, he must be killed.13:10 +TR reads “If anyone leads into captivity, into captivity he goes. If anyone will kill with the sword, he must be killed with a sword.” instead of “If anyone is to go into captivity, he will go into captivity. If anyone is to be killed with the sword, he must be killed.” + Here is the endurance and the faith of the saints. + +

+

I saw another beast coming up out of the earth. He had two horns like a lamb and it spoke like a dragon. + +He exercises all the authority of the first beast in his presence. He makes the earth and those who dwell in it to worship the first beast, whose fatal wound was healed. + +He performs great signs, even making fire come down out of the sky to the earth in the sight of people. + +He deceives my own13:14 +NU omits “my own” people who dwell on the earth because of the signs he was granted to do in front of the beast, saying to those who dwell on the earth that they should make an image to the beast who had the sword wound and lived. + +It was given to him to give breath to the image of the beast, that the image of the beast should both speak, and cause as many as wouldn’t worship the image of the beast to be killed. + +He causes all, the small and the great, the rich and the poor, and the free and the slave, to be given marks on their right hands or on their foreheads; + +and that no one would be able to buy or to sell unless he has that mark, which is the name of the beast or the number of his name. + +Here is wisdom. He who has understanding, let him calculate the number of the beast, for it is the number of a man. His number is six hundred sixty-six. + +

+ + +

I saw, and behold, the Lamb standing on Mount Zion, and with him a number, one hundred forty-four thousand, having his name and the name of his Father written on their foreheads. + +I heard a sound from heaven like the sound of many waters and like the sound of a great thunder. The sound which I heard was like that of harpists playing on their harps. + +They sing a new song before the throne and before the four living creatures and the elders. No one could learn the song except the one hundred forty-four thousand, those who had been redeemed out of the earth. + +These are those who were not defiled with women, for they are virgins. These are those who follow the Lamb wherever he goes. These were redeemed by Jesus from among men, the first fruits to God and to the Lamb. + +In their mouth was found no lie, for they are blameless.14:5 +TR adds “before the throne of God” + +

+

I saw an angel flying in mid heaven, having an eternal Good News to proclaim to those who dwell on the earthto every nation, tribe, language, and people. + +He said with a loud voice, “Fear the Lord, and give him glory, for the hour of his judgment has come. Worship him who made the heaven, the earth, the sea, and the springs of waters!” + +

+

Another, a second angel, followed, saying, “Babylon the great has fallen, which has made all the nations to drink of the wine of the wrath of her sexual immorality.” + +

+

Another angel, a third, followed them, saying with a great voice, “If anyone worships the beast and his image, and receives a mark on his forehead or on his hand, + +he also will drink of the wine of the wrath of God, which is prepared unmixed in the cup of his anger. He will be tormented with fire and sulfur in the presence of the holy angels and in the presence of the Lamb. + +The smoke of their torment goes up forever and ever. They have no rest day and night, those who worship the beast and his image, and whoever receives the mark of his name. + +

+

Here is the perseverance of the saints, those who keep the commandments of God and the faith of Jesus.” + +

+

I heard a voice from heaven saying, “Write, ‘Blessed are the dead who die in the Lord from now on.’” +

+

Yes,” says the Spirit, “that they may rest from their labors, for their works follow with them.” + +

+

I looked, and saw a white cloud, and on the cloud one sitting like a son of man,14:14 +Daniel 7:13 having on his head a golden crown, and in his hand a sharp sickle. + +Another angel came out of the temple, crying with a loud voice to him who sat on the cloud, “Send your sickle and reap, for the hour to reap has come; for the harvest of the earth is ripe!” + +He who sat on the cloud thrust his sickle on the earth, and the earth was reaped. + +

+

Another angel came out of the temple which is in heaven. He also had a sharp sickle. + +Another angel came out from the altar, he who has power over fire, and he called with a great voice to him who had the sharp sickle, saying, “Send your sharp sickle and gather the clusters of the vine of the earth, for the earths grapes are fully ripe!” + +The angel thrust his sickle into the earth, and gathered the vintage of the earth and threw it into the great wine press of the wrath of God. + +The wine press was trodden outside of the city, and blood came out of the wine press, up to the bridles of the horses, as far as one thousand six hundred stadia.14:20 +1600 stadia = 296 kilometers or 184 miles + +

+ + +

I saw another great and marvelous sign in the sky: seven angels having the seven last plagues, for in them Gods wrath is finished. + +

+

I saw something like a sea of glass mixed with fire, and those who overcame the beast, his image,15:2 +TR adds “his mark,” and the number of his name, standing on the sea of glass, having harps of God. + +They sang the song of Moses, the servant of God, and the song of the Lamb, saying, +

+Great and marvelous are your works, Lord God, the Almighty! + +Righteous and true are your ways, you King of the nations. + + +Who wouldn’t fear you, Lord, + +and glorify your name? + +For you only are holy. + +For all the nations will come and worship before you. + +For your righteous acts have been revealed.” + + +

After these things I looked, and the temple of the tabernacle of the testimony in heaven was opened. + +The seven angels who had the seven plagues came out, clothed with pure, bright linen, and wearing golden sashes around their chests. + +

+

One of the four living creatures gave to the seven angels seven golden bowls full of the wrath of God, who lives forever and ever. + +The temple was filled with smoke from the glory of God and from his power. No one was able to enter into the temple until the seven plagues of the seven angels would be finished. + +

+ + +

I heard a loud voice out of the temple, saying to the seven angels, “Go and pour out the seven bowls of the wrath of God on the earth!” + +

+

The first went, and poured out his bowl into the earth, and it became a harmful and painful sore on the people who had the mark of the beast, and who worshiped his image. + +

+

The second angel poured out his bowl into the sea, and it became blood as of a dead man. Every living thing in the sea died. + +

+

The third poured out his bowl into the rivers and springs of water, and they became blood. + +I heard the angel of the waters saying, “You are righteous, who are and who were, O Holy One, because you have judged these things. + +For they poured out the blood of saints and prophets, and you have given them blood to drink. They deserve this.” + +

+

I heard the altar saying, “Yes, Lord God, the Almighty, true and righteous are your judgments.” + +

+

The fourth poured out his bowl on the sun, and it was given to him to scorch men with fire. + +People were scorched with great heat, and people blasphemed the name of God who has the power over these plagues. They didn’t repent and give him glory. + +

+

The fifth poured out his bowl on the throne of the beast, and his kingdom was darkened. They gnawed their tongues because of the pain, + +and they blasphemed the God of heaven because of their pains and their sores. They still didn’t repent of their works. + +

+

The sixth poured out his bowl on the great river, the Euphrates. Its water was dried up, that the way might be prepared for the kings that come from the sunrise.16:12 +or, east + +I saw coming out of the mouth of the dragon, and out of the mouth of the beast, and out of the mouth of the false prophet, three unclean spirits, something like frogs; + +for they are spirits of demons, performing signs, which go out to the kings of the whole inhabited earth, to gather them together for the war of that great day of God the Almighty. + +

+

Behold, I come like a thief. Blessed is he who watches, and keeps his clothes, so that he doesn’t walk naked, and they see his shame.” + + +He gathered them together into the place which is called in Hebrew, “Harmagedon”. + +

+

The seventh poured out his bowl into the air. A loud voice came out of the temple of heaven, from the throne, saying, “It is done!” + +There were lightnings, sounds, and thunders; and there was a great earthquake such as has not happened since there were men on the earthso great an earthquake and so mighty. + +The great city was divided into three parts, and the cities of the nations fell. Babylon the great was remembered in the sight of God, to give to her the cup of the wine of the fierceness of his wrath. + +Every island fled away, and the mountains were not found. + +Great hailstones, about the weight of a talent,16:21 +A talent is about 30 kilograms or 66 pounds. came down out of the sky on people. People blasphemed God because of the plague of the hail, for this plague was exceedingly severe. + +

+ + +

One of the seven angels who had the seven bowls came and spoke with me, saying, “Come here. I will show you the judgment of the great prostitute who sits on many waters, + +with whom the kings of the earth committed sexual immorality. Those who dwell on the earth were made drunken with the wine of her sexual immorality.” + +He carried me away in the Spirit into a wilderness. I saw a woman sitting on a scarlet-colored beast, full of blasphemous names, having seven heads and ten horns. + +The woman was dressed in purple and scarlet, and decked with gold and precious stones and pearls, having in her hand a golden cup full of abominations and the impurities of the sexual immorality of the earth. + +And on her forehead a name was written, “MYSTERY, BABYLON THE GREAT, THE MOTHER OF THE PROSTITUTES AND OF THE ABOMINATIONS OF THE EARTH.” + +I saw the woman drunken with the blood of the saints and with the blood of the martyrs of Jesus. When I saw her, I wondered with great amazement. + +

+

The angel said to me, “Why do you wonder? I will tell you the mystery of the woman and of the beast that carries her, which has the seven heads and the ten horns. + +The beast that you saw was, and is not; and is about to come up out of the abyss and to go into destruction. Those who dwell on the earth and whose names have not been written in the book of life from the foundation of the world will marvel when they see that the beast was, and is not, and shall be present.17:8 +TR reads “yet is” instead of “shall be present” + +

+

Here is the mind that has wisdom. The seven heads are seven mountains on which the woman sits. + +They are seven kings. Five have fallen, the one is, and the other has not yet come. When he comes, he must continue a little while. + +The beast that was, and is not, is himself also an eighth, and is of the seven; and he goes to destruction. + +The ten horns that you saw are ten kings who have received no kingdom as yet, but they receive authority as kings with the beast for one hour. + +These have one mind, and they give their power and authority to the beast. + +These will war against the Lamb, and the Lamb will overcome them, for he is Lord of lords and King of kings; and those who are with him are called, chosen, and faithful.” + +He said to me, “The waters which you saw, where the prostitute sits, are peoples, multitudes, nations, and languages. + +The ten horns which you saw, they and the beast will hate the prostitute, will make her desolate, will strip her naked, will eat her flesh, and will burn her utterly with fire. + +For God has put in their hearts to do what he has in mind, to be of one mind, and to give their kingdom to the beast, until the words of God should be accomplished. + +The woman whom you saw is the great city which reigns over the kings of the earth.” + +

+ + +

After these things, I saw another angel coming down out of the sky, having great authority. The earth was illuminated with his glory. + +He cried with a mighty voice, saying, “Fallen, fallen is Babylon the great, and she has become a habitation of demons, a prison of every unclean spirit, and a prison of every unclean and hated bird! + +For all the nations have drunk of the wine of the wrath of her sexual immorality, the kings of the earth committed sexual immorality with her, and the merchants of the earth grew rich from the abundance of her luxury.” + +

+

I heard another voice from heaven, saying, “Come out of her, my people, that you have no participation in her sins, and that you don’t receive of her plagues, + +for her sins have reached to the sky, and God has remembered her iniquities. + +Return to her just as she returned, and repay her double as she did, and according to her works. In the cup which she mixed, mix to her double. + +However much she glorified herself and grew wanton, so much give her of torment and mourning. For she says in her heart, ‘I sit a queen, and am no widow, and will in no way see mourning.’ + +Therefore in one day her plagues will come: death, mourning, and famine; and she will be utterly burned with fire, for the Lord God who has judged her is strong. + +

+

The kings of the earth who committed sexual immorality and lived wantonly with her will weep and wail over her, when they look at the smoke of her burning, + +standing far away for the fear of her torment, saying, ‘Woe, woe, the great city, Babylon, the strong city! For your judgment has come in one hour.’ + +The merchants of the earth weep and mourn over her, for no one buys their merchandise any more: + +merchandise of gold, silver, precious stones, pearls, fine linen, purple, silk, scarlet, all expensive wood, every vessel of ivory, every vessel made of most precious wood, and of brass, and iron, and marble; + +and cinnamon, incense, perfume, frankincense, wine, olive oil, fine flour, wheat, cattle, sheep, horses, chariots, and people’s bodies and souls. + +The fruits which your soul lusted after have been lost to you. All things that were dainty and sumptuous have perished from you, and you will find them no more at all. + +The merchants of these things, who were made rich by her, will stand far away for the fear of her torment, weeping and mourning, + +saying, ‘Woe, woe, the great city, she who was dressed in fine linen, purple, and scarlet, and decked with gold and precious stones and pearls! + +For in an hour such great riches are made desolate.’ Every ship master, and everyone who sails anywhere, and mariners, and as many as gain their living by sea, stood far away, + +and cried out as they looked at the smoke of her burning, saying, ‘What is like the great city?’ + +They cast dust on their heads, and cried, weeping and mourning, saying, ‘Woe, woe, the great city, in which all who had their ships in the sea were made rich by reason of her great wealth!’ For she is made desolate in one hour. + +

+

Rejoice over her, O heaven, you saints, apostles, and prophets, for God has judged your judgment on her.” + +

+

A mighty angel took up a stone like a great millstone and cast it into the sea, saying, “Thus with violence will Babylon, the great city, be thrown down, and will be found no more at all. + +The voice of harpists, minstrels, flute players, and trumpeters will be heard no more at all in you. No craftsman of whatever craft will be found any more at all in you. The sound of a mill will be heard no more at all in you. + +The light of a lamp will shine no more at all in you. The voice of the bridegroom and of the bride will be heard no more at all in you, for your merchants were the princes of the earth; for with your sorcery all the nations were deceived. + +In her was found the blood of prophets and of saints, and of all who have been slain on the earth.” + +

+ + +

After these things I heard something like a loud voice of a great multitude in heaven, saying, “Hallelujah! Salvation, power, and glory belong to our God; + +for his judgments are true and righteous. For he has judged the great prostitute who corrupted the earth with her sexual immorality, and he has avenged the blood of his servants at her hand.” + +

+

A second said, “Hallelujah! Her smoke goes up forever and ever.” + +The twenty-four elders and the four living creatures fell down and worshiped God who sits on the throne, saying, “Amen! Hallelujah!” + +

+

A voice came from the throne, saying, “Give praise to our God, all you his servants, you who fear him, the small and the great!” + +

+

I heard something like the voice of a great multitude, and like the voice of many waters, and like the voice of mighty thunders, saying, “Hallelujah! For the Lord our God, the Almighty, reigns! + +Let’s rejoice and be exceedingly glad, and let’s give the glory to him. For the wedding of the Lamb has come, and his wife has made herself ready.” + +It was given to her that she would array herself in bright, pure, fine linen, for the fine linen is the righteous acts of the saints. + +

+

He said to me, “Write, ‘Blessed are those who are invited to the wedding supper of the Lamb.’” He said to me, “These are true words of God.” + +

+

I fell down before his feet to worship him. He said to me, “Look! Don’t do it! I am a fellow bondservant with you and with your brothers who hold the testimony of Jesus. Worship God, for the testimony of Jesus is the Spirit of Prophecy.” + +

+

I saw heaven opened, and behold, a white horse, and he who sat on it is called Faithful and True. In righteousness he judges and makes war. + +His eyes are a flame of fire, and on his head are many crowns. He has names written and a name written which no one knows but he himself. + +He is clothed in a garment sprinkled with blood. His name is calledThe Word of God.” + +The armies which are in heaven, clothed in white, pure, fine linen, followed him on white horses. + +Out of his mouth proceeds a sharp, double-edged sword that with it he should strike the nations. He will rule them with an iron rod.19:15 +Psalms 2:9 + He treads the wine press of the fierceness of the wrath of God, the Almighty. + +He has on his garment and on his thigh a name written, “KING OF KINGS AND LORD OF LORDS.” + +

+

I saw an angel standing in the sun. He cried with a loud voice, saying to all the birds that fly in the sky, “Come! Be gathered together to the great supper of God,19:17 +TR reads “supper of the great God” instead of “great supper of God” + +that you may eat the flesh of kings, the flesh of captains, the flesh of mighty men, and the flesh of horses and of those who sit on them, and the flesh of all men, both free and slave, small and great.” + +I saw the beast, the kings of the earth, and their armies, gathered together to make war against him who sat on the horse and against his army. + +The beast was taken, and with him the false prophet who worked the signs in his sight, with which he deceived those who had received the mark of the beast and those who worshiped his image. These two were thrown alive into the lake of fire that burns with sulfur. + +The rest were killed with the sword of him who sat on the horse, the sword which came out of his mouth. So all the birds were filled with their flesh. + +

+ + +

I saw an angel coming down out of heaven, having the key of the abyss and a great chain in his hand. + +He seized the dragon, the old serpent, who is the devil and Satan, who deceives the whole inhabited earth,20:2 +TR and NU omit “who deceives the whole inhabited earth”. and bound him for a thousand years, + +and cast him into the abyss, and shut it and sealed it over him, that he should deceive the nations no more until the thousand years were finished. After this, he must be freed for a short time. + +

+

I saw thrones, and they sat on them, and judgment was given to them. I saw the souls of those who had been beheaded for the testimony of Jesus and for the word of God, and such as didn’t worship the beast nor his image, and didn’t receive the mark on their forehead and on their hand. They lived and reigned with Christ for a thousand years. + +The rest of the dead didn’t live until the thousand years were finished. This is the first resurrection. + +Blessed and holy is he who has part in the first resurrection. Over these, the second death has no power, but they will be priests of God and of Christ, and will reign with him one thousand years. + +

+

And after the thousand years, Satan will be released from his prison + +and he will come out to deceive the nations which are in the four corners of the earth, Gog and Magog, to gather them together to the war, whose number is as the sand of the sea. + +They went up over the width of the earth and surrounded the camp of the saints and the beloved city. Fire came down out of heaven from God and devoured them. + +The devil who deceived them was thrown into the lake of fire and sulfur, where the beast and the false prophet are also. They will be tormented day and night forever and ever. + +

+

I saw a great white throne and him who sat on it, from whose face the earth and the sky fled away. There was found no place for them. + +I saw the dead, the great and the small, standing before the throne, and they opened books. Another book was opened, which is the book of life. The dead were judged out of the things which were written in the books, according to their works. + +The sea gave up the dead who were in it. Death and Hades20:13 +or, Hell + gave up the dead who were in them. They were judged, each one according to his works. + +Death and Hades20:14 +or, Hell were thrown into the lake of fire. This is the second death, the lake of fire. + +If anyone was not found written in the book of life, he was cast into the lake of fire. + +

+ + +

I saw a new heaven and a new earth, for the first heaven and the first earth have passed away, and the sea is no more. + +I saw the holy city, New Jerusalem, coming down out of heaven from God, prepared like a bride adorned for her husband. + +I heard a loud voice out of heaven saying, “Behold, God’s dwelling is with people; and he will dwell with them, and they will be his people, and God himself will be with them as their God. + +He will wipe away every tear from their eyes. Death will be no more; neither will there be mourning, nor crying, nor pain any more. The first things have passed away.” + +

+

He who sits on the throne said, +Behold, I am making all things new.” He said, +Write, for these words of God are faithful and true.” + + +He said to me, +I am the Alpha and the Omega, the Beginning and the End. I will give freely to him who is thirsty from the spring of the water of life. + + +He who overcomes, I will give him these things. I will be his God, and he will be my son. + + +But for the cowardly, unbelieving, sinners,21:8 +TR and NU omit “sinners” +abominable, murderers, sexually immoral, sorcerers,21:8 +The word for “sorcerers” here also includes users of potions and drugs. +idolaters, and all liars, their part is in the lake that burns with fire and sulfur, which is the second death.” + +

+

One of the seven angels who had the seven bowls which were loaded with the seven last plagues came, and he spoke with me, saying, “Come here. I will show you the bride, the Lambs wife.” + +He carried me away in the Spirit to a great and high mountain, and showed me the holy city, Jerusalem, coming down out of heaven from God, + +having the glory of God. Her light was like a most precious stone, like a jasper stone, clear as crystal; + +having a great and high wall with twelve gates, and at the gates twelve angels, and names written on them, which are the names of the twelve tribes of the children of Israel. + +On the east were three gates, and on the north three gates, and on the south three gates, and on the west three gates. + +The wall of the city had twelve foundations, and on them twelve names of the twelve Apostles of the Lamb. + +

+

He who spoke with me had for a measure a golden reed to measure the city, its gates, and its walls. + +The city is square. Its length is as great as its width. He measured the city with the reed: twelve thousand twelve stadia.21:16 +12,012 stadia = 2,221 kilometers or 1,380 miles. TR reads 12,000 stadia instead of 12,012 stadia. Its length, width, and height are equal. + +Its wall is one hundred forty-four cubits,21:17 +144 cubits is about 65.8 meters or 216 feet by the measure of a man, that is, of an angel. + +The construction of its wall was jasper. The city was pure gold, like pure glass. + +The foundations of the city’s wall were adorned with all kinds of precious stones. The first foundation was jasper, the second sapphire,21:19 +or, lapis lazuli the third chalcedony, the fourth emerald, + +the fifth sardonyx, the sixth sardius, the seventh chrysolite, the eighth beryl, the ninth topaz, the tenth chrysoprase, the eleventh jacinth, and the twelfth amethyst. + +The twelve gates were twelve pearls. Each one of the gates was made of one pearl. The street of the city was pure gold, like transparent glass. + +

+

I saw no temple in it, for the Lord God the Almighty and the Lamb are its temple. + +The city has no need for the sun or moon to shine, for the very glory of God illuminated it and its lamp is the Lamb. + +The nations will walk in its light. The kings of the earth bring the glory and honor of the nations into it. + +Its gates will in no way be shut by day (for there will be no night there), + +and they shall bring the glory and the honor of the nations into it so that they may enter. + +There will in no way enter into it anything profane, or one who causes an abomination or a lie, but only those who are written in the Lamb’s book of life. + +

+ + +

He showed me a22:1 +TR adds “pure” river of water of life, clear as crystal, proceeding out of the throne of God and of the Lamb, + +in the middle of its street. On this side of the river and on that was the tree of life, bearing twelve kinds of fruits, yielding its fruit every month. The leaves of the tree were for the healing of the nations. + +There will be no curse any more. The throne of God and of the Lamb will be in it, and his servants will serve him. + +They will see his face, and his name will be on their foreheads. + +There will be no night, and they need no lamp light or sun light; for the Lord God will illuminate them. They will reign forever and ever. + +

+

He said to me, “These words are faithful and true. The Lord God of the spirits of the prophets sent his angel to show to his bondservants the things which must happen soon.” + +

+

Behold, I am coming soon! Blessed is he who keeps the words of the prophecy of this book.” + +

+

Now I, John, am the one who heard and saw these things. When I heard and saw, I fell down to worship before the feet of the angel who had shown me these things. + +He said to me, “You must not do that! I am a fellow bondservant with you and with your brothers, the prophets, and with those who keep the words of this book. Worship God.” + +He said to me, “Don’t seal up the words of the prophecy of this book, for the time is at hand. + +He who acts unjustly, let him act unjustly still. He who is filthy, let him be filthy still. He who is righteous, let him do righteousness still. He who is holy, let him be holy still.” + +

+

Behold, I am coming soon! My reward is with me, to repay to each man according to his work. + + +I am the Alpha and the Omega, the First and the Last, the Beginning and the End. + + +Blessed are those who do his commandments,22:14 +NU reads “wash their robes” instead of “do his commandments”. +that they may have the right to the tree of life, and may enter in by the gates into the city. + + +Outside are the dogs, the sorcerers, the sexually immoral, the murderers, the idolaters, and everyone who loves and practices falsehood. + + +I, Jesus, have sent my angel to testify these things to you for the assemblies. I am the root and the offspring of David, the Bright and Morning Star.” + +

+

The Spirit and the bride say, “Come!” He who hears, let him say, “Come!” He who is thirsty, let him come. He who desires, let him take the water of life freely. + +

+

I testify to everyone who hears the words of the prophecy of this book: if anyone adds to them, God will add to him the plagues which are written in this book. + +If anyone takes away from the words of the book of this prophecy, God will take away his part from the tree22:19 +TR reads “Book” instead of “tree” of life, and out of the holy city, which are written in this book. + +He who testifies these things says, +Yes, I am coming soon.” + +

+

Amen! Yes, come, Lord Jesus! + +

+

The grace of the Lord Jesus Christ be with all the saints. Amen. + +

+
+ +Glossary +World English Bible Glossary +Glossary +Glo +

World English Bible Glossary +

+

The following words used in the World English Bible (WEB) are not very common, either because they refer to ancient weights, measures, or money, or because they are in some way unique to the Bible. +

+

Abaddon Abaddon is Hebrew for destruction. +

+

Abba Abba is a Chaldee word for father, used in a respectful, affectionate, and familiar way, like papa, dad, or daddy. Often used in prayer to refer to our Father in Heaven. +

+

adultery Adultery is having sexual intercourse with someone besides your own husband or wife. In the Bible, the only legitimate sexual intercourse is between a man and a woman who are married to each other. +

+

alpha Alpha is the first letter of the Greek alphabet. It is sometimes used to mean the beginning or the first. +

+

amen Amen means “So be it” or “I believe it is certainly so.” +

+

angel “Angel” literally means “messenger” or “envoy,” and is usually used to refer to spiritual beings who normally are invisible to us, but can also appear as exceedingly strong creatures or as humans. +

+

Apollyon Apollyon is Greek for destroyer. +

+

apostle “Apostle” means a delegate, messenger, or one sent forth with orders. This term is applied in the New Testament in both a general sense connected with a ministry of establishing and strengthening church fellowships, as well as in a specific sense to “The 12 Apostles of the Lamb” (Revelation 21:14). The former category applies to a specific ministry that continues in the Church (Ephesians 4:11-13) and which includes many more than 12 people, while the latter refers to the apostles named in Matthew 10:2-4, except with Judas Iscariot replaced by Matthias (Acts 1:26). +

+

Armageddon See Har-magedon. +

+

assarion An assarion is a small Roman copper coin worth one tenth of a drachma, or about an hour’s wages for an agricultural laborer. +

+

aureus An aureus is a Roman gold coin, worth 25 silver denarii. An aureus weighed from 115 to 126.3 grains (7.45 to 8.18 grams). +

+

baptize Baptize means to immerse in, or wash with something, usually water. Baptism in the Holy Spirit, fire, the Body of Christ, and suffering are also mentioned in the New Testament, along with baptism in water. Baptism is not just to cleanse the body, but as an outward sign of an inward spiritual cleansing and commitment. Baptism is a sign of repentance, as practiced by John the Baptizer, and of faith in Jesus Christ, as practiced by Jesus’ disciples. +

+

bath A bath is a liquid measure of about 22 liters, 5.8 U. S. gallons, or 4.8 imperial gallons. +

+

batos A batos is a liquid measure of about 39.5 liters, 10.4 U. S. gallons, or 8.7 imperial gallons. +

+

Beelzebul literally, lord of the flies. A name used for the devil. +

+

Beersheba Beersheba is Hebrew for “well of the oath” or “well of the seven.” A city in Israel. +

+

behold Look! See! Wow! Notice this! Lo! +

+

cherub A cherub is a kind of angel with wings and hands that is associated with the throne room of God and guardian duty. See Ezekiel 10. +

+

cherubim Cherubim means more than one cherub or a mighty cherub. +

+

choenix A choenix is a dry volume measure that is a little more than a liter (which is a little more than a quart). A choenix was the daily ration of grain for a soldier in some armies. +

+

concubine a woman who is united to a man for the purpose of providing him with sexual pleasure and children, but not being honored as a full partner in marriage; a second-class wife. In Old Testament times (and in some places now), it was the custom of middle-eastern kings, chiefs, and wealthy men to marry multiple wives and concubines, but God commanded the Kings of Israel not to do so (Deuteronomy 17:17) and Jesus encouraged people to either remain single or marry as God originally intended: one man married to one woman (Matthew 19:3-12; 1 Corinthians 7:1-13). +

+

cor A cor is a dry measure of about 391 liters, 103 U. S. gallons, or 86 imperial gallons. +

+

corban Corban is a Hebrew word for an offering devoted to God. +

+

crucify Crucify means to execute someone by nailing them to a cross with metal spikes. Their hands are stretched out on the crossbeam with spikes driven through their wrists or hands. Their feet or ankles are attached to a cross with a metal spike. The weight of the victim’s body tends to force the air out of his lungs. To rise up to breathe, the victim has to put weight on the wounds, and use a lot of strength. The victim is nailed to the cross while the cross is on the ground, then the cross is raised up and dropped into a hole, thus jarring the wounds. Before crucifixion, the victim was usually whipped with a Roman cat of nine tails, which had bits of glass and metal tied to its ends. This caused chunks of flesh to be removed and open wounds to be placed against the raw wood of the cross. The victim was made to carry the heavy crossbeam of his cross from the place of judgment to the place of crucifixion, but often was physically unable after the scourging, so another person would be pressed into involuntary service to carry the cross for him. Roman crucifixion was generally done totally naked to maximize both shame and discomfort. Eventually, the pain, weakness, dehydration, and exhaustion of the muscles needed to breathe make breathing impossible, and the victim suffocates. +

+

cubit A cubit is a unit of linear measure, from the elbow to the tip of the longest finger of a man. This unit is commonly converted to 0.46 meters or 18 inches, although that varies with height of the man doing the measurement. There is also a “long” cubit that is longer than a regular cubit by a handbreadth. (Ezekiel 43:13) +

+

cummin Cummin is an aromatic seed from Cuminum cyminum, resembling caraway in flavor and appearance. It is used as a spice. +

+

darnel Darnel is a weed grass (probably bearded darnel or Lolium temulentum) that looks very much like wheat until it is mature, when the seeds reveal a great difference. Darnel seeds aren’t good for much except as chicken feed or to burn to prevent the spread of this weed. +

+

denarii denarii: plural form of denarius, a silver Roman coin worth about a day’s wages for a laborer. +

+

denarius A denarius is a silver Roman coin worth about a day’s wages for an agricultural laborer. A denarius was worth 1/25th of a Roman aureus. +

+

devil The word “devil” comes from the Greek “diabolos,” which means “one prone to slander; a liar.” “Devil” is used to refer to a fallen angel, also called “Satan,” who works to steal, kill, destroy, and do evil. The devil’s doom is certain, and it is only a matter of time before he is thrown into the Lake of Fire, never to escape. +

+

didrachma A didrachma is a Greek silver coin worth 2 drachmas, about as much as 2 Roman denarii, or about 2 days wages. It was commonly used to pay the half-shekel temple tax. +

+

disciple a student who follows a teacher to learn both by precept and example. +

+

distaff part of a spinning wheel used for twisting threads. +

+

drachma A drachma is a Greek silver coin worth about one Roman denarius, or about a day’s wages for an agricultural laborer. +

+

El-Elohe-Israel El-Elohe-Israel means “God, the God of Israel” or “The God of Israel is mighty.” +

+

ephah An ephah is a measure of volume of about 22 liters, 5.8 U. S. gallons, 4.8 imperial gallons, or a bit more than half a bushel. +

+

Gehenna Gehenna is one word used for Hell. It comes from the Hebrew Gey-Hinnom, literally “valley of Hinnom.” This word originated as the name for a place south of the old city of Jerusalem where the city’s rubbish was burned. At one time, live babies were thrown crying into the fire under the arms of the idol, Moloch, to die there. This place was so despised by the people after the righteous King Josiah abolished this hideous practice that it was made into a garbage heap. Bodies of diseased animals and executed criminals were thrown there and burned. +

+

gittith Gittith is a musical term possibly meaning “an instrument of Gath.” +

+

goad a sharp, pointed prodding device used to motivate reluctant animals (such as oxen and mules) to move in the right direction. +

+

gospel Gospel means “good news” or “glad tidings,” specifically the Good News of Jesus’ life, death, and resurrection for our salvation, healing, and provision; and the hope of eternal life that Jesus made available to us by God’s grace. +

+

Hades Hades: The nether realm of the disembodied spirits. Also known as “hell.” See also “Sheol”. +

+

Har-magedon Har-magedon, also called Armegeddon, is most likely a reference to hill (“har”) of Megiddo, near the Carmel Range in Israel. This area has a large valley plain with plenty of room for armies to maneuver. +

+

hin A hin is a measure of volume of about about 6.5 liters or 1.7 gallons. +

+

homer One homer is about 220 liters, 6.2 U. S. bushels, 6.1 imperial bushels, 58 U. S. gallons, or 48.4 imperial gallons. +

+

hypocrite a stage actor; someone who pretends to be someone other than who they really are; a pretender; a dissembler +

+

Ishmael Ishmael is the son of Abraham and Hagar. Ishmael literally means, “God hears.” +

+

Jehovah See “Yahweh.” +

+

Jesus “Jesus” is Greek for the Hebrew name “Yeshua,” which is a short version of “Yehoshua,” which comes from “Yoshia,” which means “He will save.” +

+

kodrantes A kodrantes is a small coin worth one half of an Attic chalcus or two lepta. It is worth less than 2% of a day’s wages for an agricultural laborer. +

+

lepta Lepta are very small, brass, Jewish coins worth half a Roman quadrans each, which is worth a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages. +

+

leviathan Leviathan is a poetic name for a large aquatic creature, possibly a crocodile or a dinosaur. +

+

mahalath Mahalath is the name of a tune or a musical term. +

+

manna Name for the food that God miraculously provided to the Israelites while they were wandering in the wilderness between Egypt and the promised land. From Hebrew man-hu (What is that?) or manan (to allot). See Exodus 16:14-35. +

+

marriage the union of a husband and a wife for the purpose of cohabitation, procreation, and to enjoy each other’s company. God’s plan for marriage is between one man and one woman (Mark 10:6-9; 1 Corinthians 7). Although there are many cases of a man marrying more than one woman in the Old Testament, being married to one wife is a requirement to serve in certain church leadership positions (1 Timothy 3:2,12; Titus 1:5-6). +

+

maschil Maschil is a musical and literary term for “contemplation” or “meditative psalm.” +

+

michtam A michtam is a poem. +

+

mina A mina is a Greek coin worth 100 Greek drachmas (or 100 Roman denarii), or about 100 day’s wages for an agricultural laborer. +

+

myrrh Myrrh is the fragrant substance that oozes out of the stems and branches of the low, shrubby tree commiphora myrrha or commiphora kataf native to the Arabian deserts and parts of Africa. The fragrant gum drops to the ground and hardens into an oily yellowish-brown resin. Myrrh was highly valued as a perfume, and as an ingredient in medicinal and ceremonial ointments. +

+

Nicolaitans Nicolaitans were most likely Gnostics who taught the detestable lie that the physical and spiritual realms were entirely separate and that immorality in the physical realm wouldn’t harm your spiritual health. +

+

omega Omega is the last letter of the Greek alphabet. It is sometimes used to mean the last or the end. +

+

Peniel Peniel is Hebrew for “face of God.” +

+

phylactery a leather container for holding a small scroll containing important Scripture passages that is worn on the arm or forehead in prayer. These phylacteries (tefillin in Hebrew) are still used by orthodox Jewish men. See Deuteronomy 6:8. +

+

Praetorium Praetorium: the Roman governor’s residence and office building, and those who work there. +

+

quadrans A quadrans is a Roman coin worth about 1/64 of a denarius. A denarius is about one day’s wages for an agricultural laborer. +

+

rabbi Rabbi is a transliteration of the Hebrew word for “my teacher,” used as a title of respect for Jewish teachers. +

+

Rahab Rahab is either (1) The prostitute who hid Joshua’s 2 spies in Jericho (Joshua 2,6) and later became an ancestor of Jesus (Matthew 1:5) and an example of faith (Hebrews 11:31; James 2:25); or (2) Literally, “pride” or “arrogance” —possibly a reference to a large aquatic creature (Job 9:13; 26:12; Isaiah 51:9) or symbolically referring to Egypt (Psalms 87:4; 89:10; Isaiah 30:7). +

+

repent to change one’s mind; turn away from sin and turn toward God; to abhor one’s past sins and determine to follow God. +

+

Rhabboni Rhabboni: a transliteration of the Hebrew word for “great teacher.” +

+

Sabbath The seventh day of the week, set aside by God for man to rest. +

+

saints The Greek word for “saints” literally means “holy ones.” Saints are people set apart for service to God as holy and separate, living in righteousness. Used in the Bible to refer to all Christians and to all of those who worship Yahweh in Old Testament times. +

+

Samaritan A Samaritan is a resident of Samaria. The Samaritans and the Jews generally detested each other during the time that Jesus walked among us. +

+

sanctify To declare or set apart something as holy. To purify and separate a person from sin. +

+

sata A sata is a dry measure of capacity approximately equal to 13 liters or 1.5 pecks. +

+

Satan Satan means “accuser.” This is one name for the devil, an enemy of God and God’s people. +

+

scribe A scribe is one who copies God’s law. They were often respected as teachers and authorities on God’s law. +

+

selah Selah is a musical term indicating a pause or instrumental interlude for reflection. +

+

seraphim Seraphim are 6-winged angels. See Isaiah 6:2-6. +

+

sexual immorality The term “sexual immorality” in the New Testament comes from the Greek “porneia,” which refers to any sexual activity besides that between a husband and his wife. In other words, prostitution (male or female), bestiality, homosexual activity, any sexual intercourse outside of marriage, and the production and consumption of pornography all are included in this term. +

+

shekel A measure of weight, and when referring to that weight in gold, silver, or brass, of money. A shekel is approximately 16 grams, about a half an ounce, or 20 gerahs (Ezekiel 45:12). +

+

Sheol Sheol is the place of the dead. See also “Hades”. +

+

Shibah Shibah is Hebrew for “oath” or “seven.” See Beersheba. +

+

shigionoth Victorious music. +

+

soul “Soul” refers to the emotions and intellect of a living person, as well as that person’s very life. It is distinguished in the Bible from a person’s spirit and body. (1 Thessalonians 5:23, Hebrews 4:12) +

+

span A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) +

+

spirit Spirit, breath, and wind all derive from the same Hebrew and Greek words. A person’s spirit is the very essence of that person’s life, which comes from God, who is a Spirit being (John 4:24, Genesis 1:2; 2:7). The Bible distinguishes between a person’s spirit, soul, and body (1 Thessalonians 5:23, Hebrews 4:12). Some beings may exist as spirits without necessarily having a visible body, such as angels and demons (Luke 9:39, 1 John 4:1-3). +

+

stadia Stadia is plural for “stadion,” a linear measure of about 184.9 meters or 606.6 feet (the length of the race course at Olympia). +

+

stater A stater is a Greek silver coin equivalent to four Attic or two Alexandrian drachmas, or a Jewish shekel: just exactly enough to cover the half-shekel Temple Tax for two people. +

+

tabernacle a dwelling place or place of worship, usually a tent. +

+

talent A measure of weight or mass of 3000 shekels. +

+

Tartarus Tartarus is the Greek name for an underworld for the wicked dead; another name for Gehenna or Hell. +

+

teraphim Teraphim are household idols that may have been associated with inheritance rights to the household property. +

+

Yah “Yah” is a shortened form of “Yahweh,” which is God’s proper name. This form is used occasionally in the Old Testament, mostly in the Psalms. See “Yahweh.” +

+

Yahweh “Yahweh” is God’s proper name. In Hebrew, the four consonants roughly equivalent to YHWH were considered too holy to pronounce, so the Hebrew word for “Lord” (Adonai) was substituted when reading it aloud. When vowel points were added to the Hebrew Old Testament, the vowel points for “Adonai” were mixed with the consonants for “Yahweh,” which if you pronounced it literally as written, would be pronounced “Yehovah” or “Jehovah.” When the Old Testament was translated to Greek, the tradition of substituting “Lord” for God’s proper name continued in the translation of God’s name to “Lord” (Kurios). Some English Bibles translate God’s proper name to “LORD” or “GOD” (usually with small capital letters), based on that same tradition. This can get really confusing, since two other words (“Adonai” and “Elohim”) translate to “Lord” and “God,” and they are sometimes used together. The ASV of 1901 (and some other translations) render YHWH as “Jehovah.” The most probable pronunciation of God’s proper name is “Yahweh.” In Hebrew, the name “Yahweh” is related to the active declaration “I AM.” See Exodus 3:13-14. Since Hebrew has no tenses, the declaration “I AM” can also be interpreted as “I WAS” and “I WILL BE.” Compare Revelation 1:8. +

+

Zion Zion is a name which originally referred one of the mountains of Jerusalem. It became a term synonymous with Jerusalem itself. The term “Heavenly Zion” is also used to refer the future dwelling place of God’s people. +

+
\ No newline at end of file diff --git a/fixtures/calendarium.json b/fixtures/calendarium.json index 011017a..5659ccb 100644 --- a/fixtures/calendarium.json +++ b/fixtures/calendarium.json @@ -37140,7 +37140,7 @@ "pericope": 783, "ordering": 822, "flag": 0, - "tradition": "common" + "tradition": "slavic" } }, { @@ -37155,7 +37155,7 @@ "pericope": 40, "ordering": 922, "flag": 0, - "tradition": "common" + "tradition": "slavic" } }, { @@ -38730,7 +38730,7 @@ "pericope": 768, "ordering": 821, "flag": 0, - "tradition": "common" + "tradition": "slavic" } }, { @@ -38745,7 +38745,7 @@ "pericope": 358, "ordering": 921, "flag": 0, - "tradition": "common" + "tradition": "slavic" } }, { @@ -38820,7 +38820,7 @@ "pericope": 768, "ordering": 821, "flag": 0, - "tradition": "common" + "tradition": "slavic" } }, { @@ -38835,7 +38835,7 @@ "pericope": 358, "ordering": 921, "flag": 0, - "tradition": "common" + "tradition": "slavic" } }, { diff --git a/orthocal/converters.py b/orthocal/converters.py index 5489103..fc158f8 100644 --- a/orthocal/converters.py +++ b/orthocal/converters.py @@ -1,6 +1,6 @@ from django.urls.converters import IntConverter -from calendarium.datetools import Calendar, Tradition +from calendarium.datetools import Calendar, Tradition, Translation CAL_RE = '(gregorian|julian|oca|rocor)' @@ -34,6 +34,18 @@ def to_url(self, value): return value +TRANSLATION_RE = '(kjv|lxx2012-web)' + +class TranslationConverter: + regex = TRANSLATION_RE + + def to_python(self, value): + return Translation(value) + + def to_url(self, value): + return value + + class YearConverter(IntConverter): def to_python(self, value): year = super().to_python(value) diff --git a/orthocal/decorators.py b/orthocal/decorators.py index ad87811..8a74c4c 100644 --- a/orthocal/decorators.py +++ b/orthocal/decorators.py @@ -10,7 +10,7 @@ from django.views.decorators.cache import cache_page from django.views.decorators.http import etag as etag_decorator -from calendarium.datetools import Calendar, Tradition, cal_session_key +from calendarium.datetools import Calendar, Tradition, Translation, cal_session_key, translation_session_key logger = logging.getLogger(__name__) @@ -42,6 +42,9 @@ def get_date_variable_etag(request, *args, **kwargs): cal = request.session.get(cal_session_key(tradition), Calendar.Gregorian) hash.update(cal.encode('utf8')) + translation = request.session.get(translation_session_key(request.LANGUAGE_CODE), Translation.KJV) + hash.update(translation.encode('utf8')) + for header in settings.ORTHOCAL_VARY_HEADERS: if value := request.headers.get(header): hash.update(f'{header}: {value}'.encode('utf8')) diff --git a/orthocal/static/main.css b/orthocal/static/main.css index c20741f..0e35027 100644 --- a/orthocal/static/main.css +++ b/orthocal/static/main.css @@ -140,6 +140,31 @@ section.readings h2 { text-indent: 0 !important; color: #a00; } +.translation-picker { + text-align: center; + text-indent: 0 !important; + font-size: 0.9em; + color: #555; +} +.translation-picker label { + display: inline-flex; + align-items: center; + gap: 0.4em; +} +.translation-picker select { + font-family: inherit; + font-size: 1.1em; + color: #333; + background-color: #fff; + border: 1px solid #bbb; + border-radius: 3px; + padding: 2px 6px; + cursor: pointer; + vertical-align: middle; +} +.translation-picker select:hover { + border-color: #888; +} .day { margin-top: 1em; padding-top: 1.5em; @@ -182,13 +207,26 @@ section.readings h2 { label { font-size: 0.75em; } +.tradition-label-with-badge { + display: inline-flex; + align-items: center; + gap: 0.3em; +} label input[type="radio"] { accent-color: #888; } -.beta-note { - font-size: 0.75em; - font-style: italic; - color: #888; +.status-badge { + display: inline-block; + font-size: 0.65em; + font-weight: bold; + text-transform: uppercase; + letter-spacing: 0.05em; + color: #fff; + background-color: #a00; + border-radius: 3px; + padding: 1px 5px; + margin-left: 2px; + vertical-align: middle; } .service-notes ul, .commemorations ul, .feasts ul { text-align: center; diff --git a/orthocal/templates/about.html b/orthocal/templates/about.html index be2fd06..c54ca3c 100644 --- a/orthocal/templates/about.html +++ b/orthocal/templates/about.html @@ -72,11 +72,26 @@

Technology & Data

Scriptures

Because this is open-source and free, the service must use a translation of the Bible that is either public domain or has agreeable - license terms. At this point I have chosen to stick with the King James - Version. While not ideal, many clergy consider this to be one of the + license terms. The default translation is the King James Version. + While not ideal, many clergy consider this to be one of the best options for Orthodox. Because the rubrics use Septuagint - versification, a handful of the Old Testament readings may be incorrect. - Some of the composite readings are taken from the translations of the + versification, a handful of the Old Testament readings may be incorrect.

+

For readers who want modern English, as well as an Old Testament + translated directly from the Septuagint, + LXX2012 + + WEB is available. + The Eastern Orthodox Bible (EOB) project began as a + revision of the WEB. Both LXX2012 and WEB come from Michael Paul + Johnson's public-domain modernization work, published through + eBible.org. LXX2012 updates Sir Lancelot Brenton's 1851 translation of + the Septuagint, so it follows the same versification and Old Testament + content—including the books outside the Protestant + canon—that the lectionary itself is based on. The WEB (World + English Bible) is an update of the 1901 American Standard Version, using + the Byzantine Majority Text for the New Testament. It is a well-respected, + easy-to-read translation without the interpretive biases of translations + like the NIV. Both are public domain.

+

Some of the composite readings are taken from the translations of the Archimandrite Ephrem (Lash). His translations can be accessed at Anastasis.

{% endblock %} diff --git a/orthocal/urls.py b/orthocal/urls.py index d5cf9a2..38e647b 100644 --- a/orthocal/urls.py +++ b/orthocal/urls.py @@ -21,6 +21,7 @@ register_converter(converters.CalendarConverter, 'cal') register_converter(converters.TraditionConverter, 'tradition') +register_converter(converters.TranslationConverter, 'translation') register_converter(converters.YearConverter, 'year') register_converter(converters.MonthConverter, 'month') register_converter(converters.DayConverter, 'day')